@charset "UTF-8";
/* CSS Document */
.section-top {
  width: 100%;
  height: auto;
}
.top-wrapper {
  padding-top: 5.25vw;
}
.top__text {
  width: 50%;
  height: auto;
}
.top__title {
  display: flex;
  align-items: center;
  margin-bottom: 6.25vw;
}
.top__title img {
  width: 3.47vw;
  height: 3.47vw;
  margin-left: 3.81vw;
}
.top__title h2 {
  position: relative;
  font-size: 2.08vw;
  font-weight: 300;
  color: #00489d;
  letter-spacing: 0.5vw;
  margin-left: 1.5vw;
  text-align: left;
  line-height: 1.7vw;
}
.top__title h2 span {
  font-size: 1.11vw;
  letter-spacing: 0.8vw;
  margin-left: 0.3vw;
}
.top__title h2::before {
  content: "";
  width: 17.36vw;
  height: 0.07vw;
  background-color: #00489d;
  position: absolute;
  top: 4.8vw;
  left: -8.8vw;
}
.top__title h2::after {
  content: "";
  width: 0.07vw;
  height: 4.16vw;
  background-color: #00489d;
  position: absolute;
  top: 2.0vw;
  left: -6.8vw;
}
.top__lead {
  margin: 0 0 14.6vw 5.20vw;
  width: 24.3vw;
  height: auto;
  color: #00498D;
  position: relative;
}
.top__lead::before {
  content: "";
  width: 17.36vw;
  height: 0.07vw;
  background-color: #00489d;
  position: absolute;
  top: 26.8vw;
  left: 12.8vw;
}
.top__lead::after {
  content: "";
  width: 0.07vw;
  height: 4.16vw;
  background-color: #00489d;
  position: absolute;
  top: 24.0vw;
  left: 28.16vw;
}
.top__lead h3 {
  display: flex;
  justify-content: center;
  font-size: 1.38vw;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.2vw;
  line-height: 2vw;
  margin-bottom: 2.3vw;
}
.top__lead h3 img {
  width: 1.66vw;
  height: auto;
}
.top__lead-ashirai01 {
  margin-right: 2vw;
}
.top__lead-ashirai02 {
  margin-left: 2vw;
}
.top__lead p {
  font-size: 1.11vw;
  text-align: justify;
  line-height: 2.3vw;
  font-weight: 300;
  display: flex;
  justify-content: center;
  margin: 0 0 2.3vw 0.8vw;
}
.section-top__photo-wrapper {
/*
    width: 100%;
    height:auto;
    margin-bottom: 30px;
    position: relative;
*/
  }
.section-top__photo-base {
  width: 56%;
  height: auto;
  position: absolute;
  margin-left: 1.81vw;
  left: 15vw;
  top: 3vw;
  }
.section-top__photo-base img {
   position: absolute;
  width: 100%;
  }
.section-top__photo {
  width: 56%;
  height: auto;
  position: absolute;
  margin-left: 1.81vw;
  left: 15vw;
  top: 3vw;
  opacity: 0;
  animation: img-change 45s infinite;
}
.section-top__photo img {
  position: absolute;
  width: 100%;
}
.section-top__photo:nth-child(2) {
  animation-delay: 0s;
}
.section-top__photo:nth-child(3) {
  animation-delay: 7s;
}
.section-top__photo:nth-child(4) {
  animation-delay: 14s;
}
.section-top__photo:nth-child(5) {
  animation-delay: 21s;
}
.section-top__photo:nth-child(6) {
  animation-delay: 28s;
}
.section-top__photo:nth-child(7) {
  animation-delay: 35s;
}

@keyframes img-change {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media(max-width:960px) {
  .section-top {
    margin-bottom: 60px;
  }
  .top-wrapper {
    padding-top: 50px;
    max-width: 500px;
    margin: 0 auto;
  }
  .top__text {
    width: 100%;
    height: auto;
  }
  .top__title {
    margin-bottom: 50px;
  }
  .top__title img {
    width: 46px;
    height: 46px;
    margin-left: 50px;
  }
  .top__title h2 {
    position: relative;
    font-size: 3.0rem;
    letter-spacing: 0.3em;
    margin-left: 15px;
    line-height: 1.8rem;
  }
  .top__title h2 span {
    font-size: 1.6rem;
    letter-spacing: 0.8em;
    margin-left: 1.8px;
  }
  .top__title h2::before {
    content: "";
    width: 320px;
    height: 0.8px;
    position: absolute;
    top: 50px;
    left: -120px;
  }
  .top__title h2::after {
    content: "";
    width: 0.8px;
    height: 60px;
    position: absolute;
    top: 5px;
    left: -90px;
  }
  .section-top__photo-wrapper {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
  }
  .section-top__photo-base {
    width: 100%;
    margin: 0 auto;
    position: static;
  }
  .section-top__photo-base img {
    width: 90%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    position: static;
  }
  .section-top__photo {
    width: 100%;
    margin: 0 auto;
    position: static;
  }
  .section-top__photo img {
    width: 90%;
    max-width: 500px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .top__lead {
    margin: 0 auto;
    width: 100%;
    height: auto;
    position: relative;
  }
  .top__lead::before {
    display: none;
  }
  .top__lead::after {
    display: none;
  }
  .top__lead h3 {
    display: flex;
    justify-content: center;
    font-size: 2.0rem;
    letter-spacing: 0.2em;
    line-height: 3.0rem;
    margin-bottom: 20px;
  }
  .top__lead h3 img {
    width: 20px;
    height: auto;
  }
  .top__lead-ashirai01 {
    margin-right: 20px;
  }
  .top__lead-ashirai02 {
    margin-left: 20px;
  }
  .top__lead p {
    font-size: 1.6rem;
    line-height: 3.0rem;
    display: flex;
    justify-content: center;
    margin: 0 0 30px 20px;
  }
}
/*top*/
/*tips*/
.section-tips h4 {
  font-size: 1.11vw;
  font-weight: 300;
  color: #00489d;
  margin: 0 auto 2vw;
  text-align: center;
}
.section-tips h4 span {
  position: relative;
  font-size: 1.66vw;
}
.section-tips h4 span img {
  position: absolute;
  top: -1.6vw;
  left: -1.5vw;
  width: 2.8vw;
  height: auto;
}
.tips__problem-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto 6.94vw;
}
.tips__problem-container img.tips__problem-vege {
  width: 20vw;
  height: 20vw;
}
.tips__problem-container ul {
  display: flex;
  margin-left: 3.5vw;
  list-style: none;
}
.tips__problem-container ul li {
  margin-left: 3vw;
  position: relative;
}
.tips__problem-container ul li.tips__problem-text01, .tips__problem-text02 {
  margin-bottom: 1.5vw;
  margin-left: 0;
}
.tips__problem-container ul img {
  width: 10vw;
}
.tips__problem-text-wrapper p {
  display: block;
  font-size: 0.97vw;
  line-height: 1.8vw;
  text-align: left;
  letter-spacing: 0.12vw;
}
.tips__problem-container ul li.tips__problem-text01 p {
  position: absolute;
  top: 2vw;
  left: 2vw;
}
.tips__problem-container ul li.tips__problem-text02 p {
  position: absolute;
  top: 1.9vw;
  left: 1.5vw;
  line-height: 1.5vw;
}
.tips__problem-container ul li.tips__problem-text03 p {
  position: absolute;
  top: 1.9vw;
  left: 0.8vw;
  letter-spacing: 0.08vw;
}
.tips__problem-container ul li.tips__problem-text04 p {
  position: absolute;
  top: 2vw;
  left: 2vw;
}
@media(max-width:960px) {
  .section-tips h4 {
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0 auto 40px;
  }
  .section-tips h4 span {
    position: relative;
    font-size: 2.0rem;
  }
  .section-tips h4 span img {
    position: absolute;
    top: -25px;
    left: -20px;
    width: 45px;
    height: auto;
  }
  .tips__problem-container {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 60px;
  }
  .tips__problem-container img.tips__problem-vege {
    width: 80%;
    max-width: 400px;
    height: auto;
  }
  .tips__problem-text {
    display: flex;
    justify-content: center;
  }
  .tips__problem-container ul {
    display: block;
    margin-left: 0;
  }
  .tips__problem-container ul li {
    margin: 0 20px;
    position: relative;
  }
  .tips__problem-container ul img {
    width: 130px;
    margin: 30px 0 0 0;
  }
  .tips__problem-container ul li.tips__problem-text01 img, .tips__problem-text02 img {
    transform: scale(-1, 1);
  }
  .tips__problem-container ul li.tips__problem-text03 img {
    margin-top: 80px;
  }
  .tips__problem-text-wrapper p {
    display: block;
    font-size: 1.3rem;
    line-height: 2.4rem;
    letter-spacing: 0.05em;
  }
  .tips__problem-container ul li.tips__problem-text01 p {
    position: absolute;
    top: 55px;
    left: 35px;
  }
  .tips__problem-container ul li.tips__problem-text02 p {
    position: absolute;
    top: 53px;
    left: 23px;
    line-height: 2.0rem;
  }
  .tips__problem-container ul li.tips__problem-text03 p {
    position: absolute;
    top: 105px;
    left: 12px;
    letter-spacing: 0;
  }
  .tips__problem-container ul li.tips__problem-text04 p {
    position: absolute;
    top: 55px;
    left: 25px;
  }
}
/*tips problem*/
/*tips dish*/
.tips__dish {
  margin: 0 auto 6.94vw;
}
.tips__dish p {
  font-size: 1.11vw;
  line-height: 2.5vw;
  margin-bottom: 2.5vw;
}
.dish__photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: auto;
}
.dish__photo img {
  width: 24%;
  margin-left: 0.5vw;
}
.dish__photo img:first-child {
  margin-left: 0vw;
  border-radius: 3vw 0 0 3vw;
  ;
}
.dish__photo img:last-child {
  border-radius: 0 3vw 3vw 0;
}
@media(max-width:960px) {
  .tips__dish {
    margin: 0 auto 60px;
    padding: 0 20px;
    max-width: 500px;
  }
  .tips__dish p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 30px;
    display: inline-block;
    text-align: justify;
  }
  .tips__dish p br {
    display: none;
  }
  .dish__photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .dish__photo img {
    width: 49%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    margin: 0 0 5px 5px;
  }
  .dish__photo img:first-child {
    margin-left: 0;
    border-radius: 30px 0 0 0;
  }
  .dish__photo img:nth-child(2) {
    border-radius: 0 30px 0 0;
  }
  .dish__photo img:nth-child(3) {
    margin-left: 0;
    border-radius: 0 0 0 30px;
  }
  .dish__photo img:last-child {
    border-radius: 0 0 30px 0;
  }
}
/*tips dish*/
/*tips example*/
.tips__examle {
  margin: 0 auto 6.94vw;
}
.tips__examle-wrapper ol {
  list-style: none;
  margin: 0 auto;
}
.tips__examle-wrapper ol li {
  position: relative;
  width: auto;
  margin: 0 auto 2.5vw;
}
.ex-container {
  text-align: left;
  background-color: #FFF;
  margin: 0 auto;
  width: 48.1vw;
  padding: 0 0 4.2vw 4.2vw;
  position: relative;
}
.ex-container h5 {
  font-size: 1.11vw;
  margin-bottom: 2.5vw;
  font-weight: 300;
  text-align: left;
  padding: 1.0vw 0 1.5vw 1.8vw;
}
.ex-container h5::before {
  content: "";
  width: 11.8vw;
  height: 0.07vw;
  background-color: #333;
  position: absolute;
  top: 3.4vw;
  left: 7vw;
}
.ex-container h5::after {
  content: "";
  width: 0.07vw;
  height: 2.0vw;
  background-color: #333;
  position: absolute;
  top: 1.9vw;
  left: 18vw;
}
.ex-container h5 span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.7vw 1.3vw 1.1vw 0.8vw;
  font-weight: 600;
  font-size: 1.11vw;
  border-right: solid #333 0.07vw;
  border-bottom: solid #333 0.07vw;
}
.ex-container h5 span::before {
  content: "";
  position: absolute;
  top: -0.30vw;
  left: -0.30vw;
  padding: 1.7vw;
  font-weight: 600;
  font-size: 1.11vw;
  border: solid #333 0.07vw;
}
.ex-wrapper {
  display: flex;
  font-size: 1.11vw;
  width: auto;
  height: auto;
}
.ex__01 {
  padding-right: 1vw;
}
.ex__image01 {
  width: 15.2vw;
  height: 12.5vw;
  border-radius: 3vw 0;
  object-fit: cover;
}
.ex__text01 {
  font-size: 1.00vw;
}
.ex__arrow01 {
  margin: 0.5vw 0 0.2vw 3.4vw;
  width: 11.8vw;
}
.ex__image02 {
  width: 11.8vw;
  border-radius: 3vw 0;
  display: block;
}
.ex__text02 {
  writing-mode: vertical-rl;
  line-height: 2.0vw;
  position: absolute;
  top: 22.2vw;
}
.ex__02 {
  padding-right: 3vw;
  width: 8.3vw;
}
.ex__arrow02 {
  position: absolute;
  top: -4vw;
  left: 6vw;
  width: 3.47vw;
}

#toggle01 {
  opacity: 0;
}
.label01 {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
#toggle01 + .label01::before {
  content: url("../image/lesson_trimming/dish_aspala_cover.png");
  transition-duration: .4s;
}
#toggle01 + .label01:hover::before {
  transform: scale(1.1);
}
#toggle01:checked + .label01::before {
  content:  url("../image/lesson_trimming/dish_aspala.png");
}
#toggle02 {
  opacity: 0;
}
.label02 {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
#toggle02 + .label02::before {
  content: url("../image/lesson_trimming/dish_shungiku_cover.png");
  transition-duration: .4s;
}
#toggle02 + .label02:hover::before {
  transform: scale(1.1);
}
#toggle02:checked + .label02::before {
  content:  url("../image/lesson_trimming/dish_salad.png");
}

@media(max-width:960px) {
  .tips__examle {
    margin: 0 auto 100px;
    padding: 0 20px;
  }
  .tips__examle-wrapper ol li {
    margin: 0 auto 30px;
    max-width: 500px;
  }
  .ex-container {
    text-align: left;
    background-color: #FFF;
    margin: 0 auto;
    width: 100%;
    padding: 0 0 60px;
    position: static;
  }
  .ex-container h5 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: left;
    padding: 10px 0 12px 60px;
  }
  .ex-container h5::before {
    content: "";
    width: 170px;
    height: 0.8px;
    position: absolute;
    top: 40px;
    left: 80px;
  }
  .ex-container h5::after {
    content: "";
    width: 0.8px;
    height: 30px;
    position: absolute;
    top: 15px;
    left: 240px;
  }
  .ex-container h5 span {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 6px 16px 11px 11px;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: solid #333 0.8px;
    border-bottom: solid #333 0.8px;
  }
  .ex-container h5 span::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    border: solid #333 0.8px;
  }
  .ex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    font-size: 1.6rem;
    width: 100%;
    height: auto;
    padding-left: 10px;
  }
  .ex__01 {
    padding: 0;
    width: 60%;
  }
  .ex__image01 {
    width: 100%;
    aspect-ratio: 11 / 9;
    height: auto;
    border-radius: 30px 0;
    object-fit: cover;
  }
  .ex__text01 {
    font-size: 1.4rem;
  }
  .ex__arrow01 {
    margin: 5px 0 5px 20px;
    width: 80%;
    height: 16px;
  }
  .ex__image02 {
    width: 70%;
    height: auto;
    border-radius: 30px 0;
    display: block;
  }
  .ex__02 {
    width: 25%;
    padding: 0 25px 0 0;
    display: flex;
  }
  .ex__text02 {
    writing-mode: vertical-rl;
    line-height: 30px;
    position: relative;
    top: auto;
  }
  .ex__arrow02 {
    width: 58px;
    margin: 0;
    transform: rotate(160deg);
    position: absolute;
    top: auto;
    left: auto;
    bottom: -70px;
    right: 50px
  }
  .label01 {
    margin-top: 90px;
  }
  .label02 {
    margin-top: 90px;
  }

}
/*tips example*/
/*lesson course*/
.lesson__course {
  display: flex;
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5vw;
}
.lesson__course-wrapper {
  margin-right: 2.5vw;
  width: 35%;
}
.lesson__course h4 {
  font-size: 1.38vw;
  font-weight: 300;
  color: #00489d;
  position: relative;
  margin-bottom: 3vw;
}
.lesson__course h4::before {
  content: "";
  width: 13.8vw;
  height: 0.07vw;
  background-color: #00489d;
  position: absolute;
  top: 2.5vw;
  left: -2vw;
}
.lesson__course h4::after {
  content: "";
  width: 0.07vw;
  height: 2.5vw;
  background-color: #00489d;
  position: absolute;
  top: 1.0vw;
  left: -1vw;
}
.lesson__course dl dt {
  font-size: 1.11vw;
  color: #00489d;
  margin-bottom: 2vw;
}
.lesson__course dl dd {
  font-size: 1.11vw;
  line-height: 1.5vw;
  margin-left: 1.0vw;
  text-align: justify;
}
.lesson__course-photo {
  width: 40%;
  text-align: center;
}
.lesson__course-photo img {
  width: 22.56vw;
  margin: 0 auto;
}
@media(max-width:960px) {
  .lesson__course {
    display: flex;
    flex-wrap: wrap-reverse;
    text-align: center;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
    max-width: 500px;
  }
  .lesson__course-wrapper {
    margin: 0 auto;
    width: 100%;
  }
  .lesson__course-name {
    width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .lesson__course h4 {
    position: relative;
    font-size: 1.8rem;
  }
  .lesson__course h4::before {
    content: "";
    width: 250px;
    height: 0.8px;
    position: absolute;
    top: 30px;
    left: -10px;
  }
  .lesson__course h4::after {
    content: "";
    width: 0.8px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 0px;
  }
  .lesson__course dl {
    text-align: center;
  }
  .lesson__course dl dt {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .lesson__course dl dd {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin: 0 auto;
    text-align: justify;
    width: 85%;
  }
  .lesson__course-photo {
    width: 100%;
    text-align: center;
    margin-top: 60px;
  }
  .lesson__course-photo img {
    width: 70%;
    margin: 0 auto 30px;
  }
}
/*lesson course*/
/*lesson option*/
.section-lesson ul {
  margin-bottom: 8.33vw;
}
.section-lesson li.lesson__option {
  display: flex;
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.0vw;
  list-style: none;
}
.option__text-wrapper {
  margin-right: 2.5vw;
  width: 35%;
}
.lesson__option h4 {
  font-size: 1.11vw;
  font-weight: 300;
  color: #333;
  position: relative;
  margin-bottom: 2vw;
}
.lesson__option h4::before {
  content: "";
  width: 13.8vw;
  height: 0.07vw;
  background-color: #333;
  position: absolute;
  top: 2.5vw;
  left: -2vw;
}
.lesson__option h4::after {
  content: "";
  width: 0.07vw;
  height: 2.5vw;
  background-color: #333;
  position: absolute;
  top: 1.0vw;
  left: -1vw;
}
.lesson__option p {
  font-size: 1.11vw;
  margin-left: 1.0vw;
  line-height: 1.8vw;
}
.option__photo {
  width: 40%;
  display: flex;
  justify-content: center;
}
.option__photo img {
  width: 13vw;
  height: 14.5vw;
  object-fit: cover;
}
.option__photo01 {
  border-radius: 3.47vw 0 0;
}
.option__photo02 {
  border-radius: 0 3.47vw 0 0;
  margin-left: 0.5vw;
}
.option__photo03 {
  border-radius: 0 0 0 3.47vw;
}
.option__photo04 {
  border-radius: 0 0 3.47vw 0;
  margin-left: 0.5vw;
}
@media(max-width:960px) {
  .section-lesson ul {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto  100px;
  }
  .section-lesson li.lesson__option {
    display: block;
    text-align: left;
    margin-bottom: 40px;
  }
  .option__text-wrapper {
    margin: 0 auto 20px;
    width: 100%;
    text-align: center;
  }
  .lesson__option h4 {
    font-size: 1.6rem;
    margin: 0 0 30px 30px;
    letter-spacing: 0.1em;
    text-align: left;
  }
  .lesson__option h4::before {
    content: "";
    width: 250px;
    height: 0.8px;
    position: absolute;
    top: 30px;
    left: -30px;
  }
  .lesson__option h4::after {
    content: "";
    width: 0.8px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: -20px;
  }
  .lesson__option p {
    width: 85%;
    font-size: 1.4rem;
    margin: auto 0;
    line-height: 2.4rem;
    display: inline-block;
    text-align: justify;
  }
  .option__photo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .option__photo img {
    width: 49%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
  }
  .option__photo01 {
    border-radius: 30px 0 0;
  }
  .option__photo02 {
    border-radius: 0 30px 0 0;
    margin-left: auto;
  }
  .option__photo03 {
    border-radius: 0 0 0 30px;
  }
  .option__photo04 {
    border-radius: 0 0 30px 0;
    margin-left: auto;
  }
}
/*service option*/
/*info*/
.section-info {
  width: 100%;
  height: auto;
}
.section-info table {
  margin: 0 auto 4.16vw;
}
.section-info table tr {
  height: 6.94vw;
  border-top: dashed 0.09vw #333;
}
.section-info table tr:last-child {
  border-bottom: dashed 0.09vw #333;
}
.section-info table tr th {
  font-size: 1.11vw;
  font-weight: 300;
  text-align: center;
  vertical-align: middle;
  padding: 0 2.5vw;
}
.section-info table tr td {
  font-size: 1.11vw;
  font-weight: 300;
  text-align: left;
  line-height: 1.8vw;
  vertical-align: middle;
  padding: 0 1.5vw;
}
.section-info table tr td span {
  font-size: 0.97vw;
}
.detail-btn__typeC {
  margin: 0;
}
.detail-btn__typeC a {
  margin: 0 auto;
}
@media(max-width:960px) {
  .section-info {
    width: 100%;
    height: auto;
    margin-bottom: 100px;
  }
  .info-wrapper {
    padding: 0 20px;
  }
  .section-info table {
    margin: 0 auto 60px;
  }
  .section-info table tr {
    height: 105px;
    border-top: dashed 0.8px #333;
  }
  .section-info table tr:last-child {
    border-bottom: dashed 0.8px #333;
  }
  .section-info table tr th {
    font-size: 1.6rem;
    padding: 0 20px;
    width: 33%;
  }
  .section-info table tr td {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: 0 15px;
  }
  .section-info table tr td span {
    font-size: 1.4rem;
  }
  .detail-btn__typeC {
    margin: 0;
  }
  .detail-btn__typeC a {
    margin: 0 auto;
  }
}