@charset "UTF-8";

/* ========================================
   Reset CSS
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* スマホ14px → PC 16px に画面幅に応じて拡大縮小 */
  /* 1240pxで16px、767pxで14pxになるように計算 */
  font-size: clamp(14px, calc(0.423vw + 10.76px), 16px);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  background: var(--theme-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ========================================
   Base
======================================== */
:root {
  --theme-color: #135FB7;
  --bg-color: #AECDEF;
  --black-color: #3C3C3C;
  --pink-color: #FFC3BD;
  --content-width: 1240px;
  --content-width--2: 1160px;
  --content-width--3: 1120px;
  --content-width--3__in: 1000px;

}

.inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.inner--2 {
  max-width: var(--content-width--2);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.inner--3 {
  max-width: var(--content-width--3);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.inner--3__in {
  max-width: var(--content-width--3__in);
  width: 100%;
}

.ff-zen {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.ff-num {
  font-family: 'Montserrat', sans-serif;
  /* max-width: 107px; */
}

.cmnblock {
  position: relative;
  background: #ECEFF0;
  padding: 54px 0 40px;
}

.cmnblock__label {
  position: absolute;
  top: -4px;
  left: -30px;
  z-index: 2;
}

.cmnblock__right {
  position: absolute;
  top: 10px;
  right: -20px;
  z-index: 2;
  writing-mode: vertical-rl;
  text-align: left;
  font-size: 2.25rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  opacity: .6;
  letter-spacing: -2px;
}

.cmnblock__title {
  font-size: 3.125rem;
  font-weight: 900;
  text-align: center;
  color: var(--theme-color);
}

.cmnblock__head {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--theme-color);
}

.cmnblock__head .regular {
  font-weight: 400;
}

.cmnblock__head::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  /* left: -40px; */
  left: calc(-20px - ((1160px - 100%) / 2));
  width: 10px;
  height: 26px;
  margin: auto;
  background-color: var(--theme-color);
}

.cmnblock__subhead {
  position: relative;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--theme-color);
}

.cmnblock__subhead .num {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  font-size: .875rem;
  font-weight: 600;
}

.cmnblock__subhead__note {
  margin-top: 4px;
  font-size: .8125rem;
  color: var(--theme-color);
}

.cmnblock__phase {
  margin-top: 13px;
}

.cmnblock__labelhead {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--theme-color);
  border-bottom: solid 1px var(--bg-color);
  padding-right: 30px;
}

.cmnblock__labelhead .label {
  padding: 6px 40px 6px 25px;
  font-size: 1rem;
  background: var(--bg-color);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 100% 100%, 0 100%);
}

.cmnblock__tbl {
  margin-top: 16px;
}

.cmnblock__tbl table {
  background: #fff;
  padding: 12px 17px;
  border-radius: 30px;
  box-shadow: 20px 20px 0 #D8E7ED;
  width: calc(100% - 20px);
  margin-left: 23px;
}

.cmnblock__tbl table th,
.cmnblock__tbl table td {
  padding: 5px 8px;
  border-right: solid 1px #D8E7ED;
  border-bottom: solid 1px #D8E7ED;
}

.cmnblock__tbl table tr:first-of-type th,
.cmnblock__tbl table tr:last-of-type th,
.cmnblock__tbl table tr:last-of-type td {
  border-bottom: none;
}

.cmnblock__tbl table tr th:last-of-type,
.cmnblock__tbl table tr th:first-of-type,
.cmnblock__tbl table tr td:last-of-type {
  border-right: none;
}

.cmnblock__tbl table tr th:first-of-type {
  width: 106px;
}

.cmnblock__tbl .eat__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 8px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}

.cmnblock__tbl .vertical__label {
  padding: 5px 8px;
  font-size: 1.25rem;
  font-weight: 400;
}

.cmnblock__tbl .orange {
  background: #F6A04B;
}

.cmnblock__tbl .red {
  background: #ED847E;
}

.cmnblock__tbl .blue {
  background: #92B4E2;
}

.cmnblock__tbl .blue2 {
  background: #D8E7ED;
}

.cmnblock__tbl .blue3 {
  background: #A0C3E2;
}

.cmnblock__tbl .blue4 {
  background: #B0CDFF;
}

.cmnblock__tbl .blue5 {
  background: #AECDEF;
}

.cmnblock__tbl .mark {
  position: relative;
  padding-block: 3px;
  text-align: center;
  font-size: 1.875rem;
  color: var(--theme-color);
}

.cmnblock__tbl .time {
  position: relative;
  text-align: center;
  color: var(--theme-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.cmnblock__tbl .time .note {
  color: #3c3c3c;
  font-size: 1rem;
  font-weight: 500;
}

.cmnblock__tbl .mark .sup,
.cmnblock__tbl .time .sup {
  position: absolute;
  top: -3px;
  right: 8px;
  font-size: .8125rem;
  font-weight: 400;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.cmnblock__def {
  display: flex;
  align-items: center;
  gap: 20px;
  background: url(../img/border01.svg) repeat-x bottom left;
  padding-bottom: 10px;
  margin-top: 0px;
  color: var(--theme-color);
}

.cmnblock__def .head {
  text-align: center;
}

.cmnblock__def .head .note {
  display: block;
  font-size: .75rem;
  color: var(--black-color);
}

.cmnblock__def .def .em {
  font-size: 2.125rem;
  font-weight: 600;
  margin-right: 2px;
}

.cmnbtn {
  margin-top: 15px;
}

.cmnbtn a {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0 auto;
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-color);
}

.cmnbtn__arrow {
  position: relative;
  z-index: -1;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #92B4E2;
}

/* ========================================
   Fade In Animation
======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Header
======================================== */
.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  border-radius: 60px;
}

.header__inner {
  margin: 0 auto;
  padding: 0 0 0 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 103px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 0 48px;
}

.header__spin {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 30px;
}

.header__nav-item a {
  font-size: .875rem;
  font-weight: 500;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 7px;
  width: 30px;
  height: 24px;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #263238;
  border-radius: 2px;
  transition: all 0.3s;
}

.header__contact-btn {
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
  padding: 28px 30px;
  border-radius: 60px;
  font-size: .875rem;
  font-weight: 700;
}

.header__contact-btn span {
  display: block;
  margin-top: 5px;
  font-size: .75rem;
  font-weight: 400;
}

/* ========================================
   Hero
======================================== */
.hero {
  text-align: center;
  height: 60vw;
  /* max-height: 820px; */
  background-image: url(../img/main-img_bg.png);
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom ;

  h1 {
    display: flex;
    justify-content: center;

    picture {
          width: 8.2vw;
          margin-top: 170px;
          min-width: 112px;
    }
  }

}


@media (max-width: 1289px) {

  .hero {
    background-image: url(../img/main-img_20251121.jpg);
    h1 {
      picture {
        display: none;
      }
    }
  }


}

@media (max-width: 767px) {

  .hero {
    background-image: url(../img/main-img__sp.jpg);
    height: 187vw;
    h1 {
      picture {
        display: none;
      }
    }
  }


}



.hero__bg {
  position: relative;
}

.hero__bg img {
  width: 100%;
  height: auto;
}


.hero__title {
  position: absolute;
  left: 0;
  right: 0;
  top: 172px;
  width: fit-content;
  margin: auto;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .2rem;
}

.hero__title span {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: .5rem;
}

.hero__text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__btn {
  background-color: #fff;
  color: var(--theme-color);
}

/* ========================================
   Smooth
======================================== */
.smooth {
  padding: 103px 0 22px;
  background: #fff;
  color: #000;
}

.smooth__content {
  display: flex;
  gap: 17px;
  align-items: start;
  flex-wrap: wrap;
  justify-content: center;
}

.smooth__text-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.smooth__info {
  padding-left: 36px;
}

.smooth__title {
  margin-top: 19px;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.43;
  color: var(--black-color);
}

.smooth__text {
  margin-top: 21px;
  font-size: 1.25rem;
  line-height: 1.7;
}

.smooth__img-area {
  width: 62.16%;
}

.smooth__img-area img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


/* ========================================
   cta
======================================== */
.cta {
  padding: 55px 0 38px;
  color: #fff;
}

.cta__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.cta__btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 840px;
  margin: 92px auto 0;
}

.cta__link {
  position: relative;
  display: block;
  border-radius: 100px;
  padding: 30px;
  background: #fff;
  color: var(--theme-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}

a.cta__link:hover {
  opacity: 1;
  filter: brightness(1.05);
}

.cta__contact .cta__link {
  background: #F6DF5A;
}

.cta__apply .img {
  position: absolute;
  top: -77px;
  left: 35px;
  z-index: -1;
}

.cta__apply .note {
  margin-top: 14px;
  font-size: .75rem;
}

.cta__contact .img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  margin: auto;
  width: 65px;
  height: 65px;
}

.cta__time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  width: fit-content;
  margin: 24px auto 0;
  padding: 0 55px 11px 0;
  background: url(../img/cta_border01.svg) repeat-x bottom left;
}

.cta__time__head {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B0CDFF;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.4;
}

.cta__time__text {
  font-size: 1.875rem;
}

.cta__time__text span {
  font-size: 2.5rem;
  font-weight: 600;
}

.cta__mail {
  width: fit-content;
  margin: 16px auto 0;
  font-size: 1.125rem;
  line-height: 2;
}

.cta__mail a {
  display: block;
  padding-left: 30px;
  background: url(../img/cta_mail.svg) no-repeat left center/22px auto;
}

.cta__add {
  background: #fff;
  max-width: 904px;
  margin: 24px auto;
  padding: 28px 15px 19px;
  color: var(--black-color);
}

.cta__add__head {
  font-size: 1.25rem;
  text-align: center;
}

.cta__add__text {
  width: fit-content;
  margin: 18px auto 0;
  padding-left: 2.5rem;
  text-indent: -2.5rem;
  font-size: 1.125rem;
}

.cta__mov {
  position: relative;
  max-width: 914px;
  margin: 40px auto 0;
}

.cta__mov iframe {
  aspect-ratio: 914/513;
}

.cta__copyright {
  border-top: solid 1px #fff;
  padding: 11px 0 15px;
  margin-top: 38px;
  text-align: center;
  font-size: .875rem;
}


/* ========================================
   package
======================================== */
.package {
  padding-bottom: 80px;
}

.package__inner {
  position: relative;
}

.package__basic {
  margin-top: 36px;
}

.package__basic .plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.package__basic .plan .img {
  width: 50%;
}

.package__basic .plan .txt {
  flex: 1;
}

.package__basic .plan .txt ul {
  margin-top: 0px;
}

.package__basic .plan .txt ul li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
}

.package__basic .plan .txt ul li:before {
  content: "▪";
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.package__basic .plan .txt ul li .note {
  font-size: .8125rem;
  font-weight: 400;
}

.package__food {
  border-top: solid 1px #D7D7D7;
  margin-top: 48px;
  padding-top: 71px;
}

.package__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 22px;
}

.package__info .info {
  width: 48.3%;
  min-width: 480px;
}

.package__info .txt {
  flex: 1;
  font-size: .875rem;
}

.package__info .txt a {
  text-decoration: underline;
}

.package__info .txt a:hover {
  text-decoration: none;
}

.package__info .txt ul li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
}

.package__pool {
  margin-top: 93px;
}

.package__pool__info {
  display: flex;
  align-items: center;
  gap: 132px;
  margin-top: 15px;
}

.package__pool__exam {
  flex: 1;
  max-width: 526px;
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 16px 38px;
}

.package__pool__exam .circle {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 52px;
  height: 52px;
  background: var(--bg-color);
  border-radius: 50%;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
}

.package__pool__exam .exam__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 3px 20px;
}

.package__pool__exam .exam__in li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package__pool__exam .exam__in li::before {
  content: "▪";
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.package__pool__exam .exam__in li .head {
  min-width: 60px;
}

.package__pool__exam .exam__in li .border {
  display: flex;
  align-items: center;
  justify-content: center;
}

.package__pool__phase {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 25px;
}

.package__pool__phase .head {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-color);
}

.package__part {
  margin-top: 74px;
}

.package__part__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}

.package__part__block .box {
  border: solid 2px #fff;
  padding: 30px 31px 20px;
  width: 48%;
}

.package__part__tblwrap {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.package__part__tblwrap dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 9px 0;
  width: 48.5%;
}

.package__part__tblwrap dl dt,
.package__part__tblwrap dl dd {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  background: #fff;
  border-radius: 6px;
  text-align: center;
}

.package__part__tblwrap dl.alt dt,
.package__part__tblwrap dl.alt dd {
  background: #D8E7ED;
}

.package__part__tblwrap dl dt {
  width: 41.66%;
}

.package__part__tblwrap dl dt span,
.package__part__note li .no {
  padding-left: 5px;
  font-size: 1.25rem;
  color: var(--theme-color);
  font-weight: 700;
}

.package__part__tblwrap dl dd {
  width: 55.55%;
  font-weight: 400;
}

.package__part__note {
  margin-top: 22px;
}

.package__part__note li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.package__part__block .altbox .cmnblock__labelhead {
  position: relative;
  border-bottom-color: var(--pink-color);
  color: var(--black-color);
}

.package__part__block .altbox .cmnblock__labelhead .label {
  background-color: var(--pink-color);
}

.package__part__block .altbox .cmnblock__labelhead .desc {
  font-size: .75rem;
}

.package__part__block .altbox .cmnblock__labelhead .absolute {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ED847E;
}

.package__part__block .altbox .package__part__tblwrap dl dt span,
.package__part__block .altbox .package__part__note li .no {
  color: #ED847E;
}

.package__infomation {
  margin-top: 45px;
}

.package__infomation__on {
  position: relative;
  bottom: -5px;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.package__infomation__box {
  background: #fff;
  border-radius: 0 140px 0 0;
  padding: 58px 60px;
}

.package__infomation__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 35px;
}

.package__infomation__head .txt {
  flex: 1;
}

.package__infomation__box h4 {
  position: relative;
  margin-bottom: -1.5em;
  font-size: 1.75rem;
  color: var(--theme-color);
  font-weight: 700;
  text-align: center;
}

.package__infomation__head .txt .phase {
  font-size: 1.125rem;
  line-height: 1.44;
}

.package__infomation__block {
  margin-top: 20px;
}

.package__infomation__block h5 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-color);
}

.package__infomation__in {
  display: flex;
  justify-content: space-between;
}

.package__infomation__block .box {
  background: #D8E7ED;
  border-radius: 0 80px 0 0;
  padding: 12px 24px 20px;
  width: 47%;
}

.package__infomation__block .box.full {
  width: 100%;
}

.package__infomation__block .box .day {
  font-size: 1.375rem;
  font-weight: 700;
}

.package__infomation__block .box .desc {
  margin-top: 13px;
  padding-left: 1.125em;
  font-size: 1.125rem;
}

.package__inn {
  margin-top: 70px;
}

.package__inn__block {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-top: 28px;
}

.package__inn__block .txt {
  flex: 1;
}

.package__inn__block .txt ul {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 4px 50px;
}

.package__inn__block .txt ul li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package__inn__block .txt ul li::before {
  content: "▪";
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.package__inn__limited {
  margin-top: 38px;
}

.package__inn__limited .label {
  display: inline-block;
  padding: 12px 22px;
  font-size: 1.25rem;
  font-weight: 700;
  background: #ED847E;
  color: #fff;
  border-radius: 6px;
}

.package__inn__limited h5 {
  margin-top: 10px;
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--theme-color);
}

.package__inn__limited h5 span {
  font-size: 1.375rem;
}

.package__inn__limited .block {
  display: flex;
  gap: 28px;
  margin-top: 22px;
}

.package__inn__limited .txt {
  flex: 1;
}

.package__inn__limited .txt .note {
  margin-top: 15px;
  font-size: .8125rem;
  font-weight: 400;
}

/* ========================================
   Apply
======================================== */
.apply {
  padding-bottom: 70px;
}

.apply .cmnblock {
  padding-bottom: 112px;
}

.apply__phase {
  margin-top: 30px;
  text-align: center;
  color: var(--theme-color);
  font-size: 1.25rem;
}

.apply__basic {
  margin-top: 18px;
}

.apply__case+.apply__case {
  margin-top: 112px;
}

.apply__label {
  display: inline-block;
  padding: 3px 34px;
  margin-bottom: 7px;
  background: #92B4E2;
  border-radius: 2px;
  font-size: 1.125rem;
  color: var(--theme-color);
}

.apply__info {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.apply__info .info {
  width: 48%;
  display: flex;
  flex-direction: column;
}

.apply__info__head {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 444px;
}

.apply__info__head .cmnblock__labelhead {
  flex: 1;
}

.apply__list {
  margin: 15px 0 32px;
}

.apply__list li {
  display: flex;
  gap: 7px;
}

.apply__list li+li {
  margin-top: 5px;
}

.apply__list li p {
  padding: 8px 18px;
  border-radius: 6px;
}

.apply__list li .head {
  background: #D8E7ED;
  text-align: center;
  width: 120px;
  color: var(--theme-color);
}

.apply__list li .desc {
  background: #fff;
  flex: 1;
  font-weight: 400;
}

.apply__info .cmnblock__tbl {
  margin-top: auto;
}

.apply__opt {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  max-width: 1000px;
}

.apply__opt ul {
  flex: 1;
}

.apply__opt ul li {
  display: flex;
  gap: 20px;
  line-height: 2;
}

.apply__opt ul li .head {
  min-width: 11em;
}

/* ========================================
   Option
======================================== */
.option {
  padding-bottom: 70px;
}

.option__inner {
  position: relative;
}

.option .cmnblock {
  padding-bottom: 65px;
  padding-top: 92px;
}

.option .cmnblock__title span {
  font-weight: 400;
}

.option__phase {
  margin: 53px auto 0;
  max-width: 800px;
  color: var(--theme-color);
  font-size: 1.25rem;
  text-align: center;
}

.option__box {
  background: #D8E7ED;
  border-radius: 0 70px 0 0;
  padding: 16px 45px 25px 25px;
  margin: 35px auto 0;
  max-width: 838px;
  line-height: 2;
  font-weight: 400;
}

.option__box .add {
  margin-top: 15px;
}

.option__box .add .head {
  font-weight: 700;
}

.option__block {
  margin-top: 56px;
}

.option__tbl__head {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--theme-color);
}

.option__block .cmnblock__head span {
  padding-left: 21px;
  font-size: 1.125rem;
  font-weight: 500;
}

.option__block__phase {
  margin-top: 11px;
}

.option__tbl {
  max-width: 970px;
  margin-top: 20px;
}

.option__tbl tr:nth-of-type(1) th,
.option__tbl tr:nth-of-type(2) th {
  color: #fff;
  font-weight: 500;
}

.option__tbl table tr:nth-of-type(2) th:nth-of-type(1),
.option__tbl table tr:nth-of-type(2) th:nth-of-type(2),
.option__tbl table tr:nth-of-type(2) th:nth-of-type(3),
.option__tbl table tr:nth-of-type(2) th:nth-of-type(4) {
  width: 117px;
}

.option__tbl table tr:nth-of-type(3) th:first-of-type {
  width: 97px;
}

.option__tbl table tr:nth-of-type(3) th:nth-of-type(2) {
  width: 90px;
}

.option__tbl th span,
.option__tbl td span {
  display: flex;
  /* padding: 5px 8px; */
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.option__tbl .vertical__label {
  font-size: 1.125rem;
}

.option__tbl__note {
  max-width: 970px;
  margin-top: 35px;
  text-align: right;
  font-size: .875rem;
}

.option__tbl .time strong {
  font-weight: 500;
}

.option__tbl--2,
.option__tbl--3,
.option__tbl--4 {
  max-width: 1025px;
}

.option__tbl--2 table tr th:first-of-type {
  width: auto;
}

.option__tbl--2 table tr:nth-of-type(3) th:first-of-type {
  width: 92px;
}

.option__tbl--2 table tr:nth-of-type(3) th:nth-of-type(2) {
  width: 100px;
}

.option__tbl--2 table tr:nth-of-type(3) th:nth-of-type(3) {
  width: 69px;
}

.option__tbl--2 .blue5 .vertical__label {
  padding: 0;
  color: #fff;
}

.option__tbl--2 .blue2 .vertical__label {
  font-size: 1rem;
  padding: 0;
}

.option__tbl--2 table tr:nth-of-type(4) td:last-of-type {
  border-right: solid 1px #D8E7ED;
}

.option__tbl__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 62px;
  max-width: 1025px;
  margin-top: 39px;
}

.option__label {
  display: flex;
  width: 300px;
  max-width: 100%;
  background: #fff;
  font-weight: 700;
  color: #ED847E;
  margin-top: 25px;
  margin-left: 20px;
}

.option__label .head {
  color: var(--theme-color);
  background: var(--bg-color);
  padding: 6px 39px 6px 25px;
  font-weight: 500;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.option__label .txt {
  padding: 6px 44px 6px;
}

.option__label .txt span {
  font-size: .875rem;
}

.option__tbl--3 tr:nth-of-type(1) th:first-of-type {
  color: #3C3C3C;
}

.option__use+.option__use {
  margin-top: 67px;
}

.option__block .option__use:nth-of-type(2) .option__label {
  width: 330px;
}

.option__block .option__use:nth-of-type(2) .option__label .txt {
  padding-left: 20px;
  padding-right: 30px;
}

.option__tbl--4 tr:nth-of-type(1) th:first-of-type,
.option__tbl--4 tr:nth-of-type(2) th:first-of-type {
  color: #3C3C3C;
}

.option__tbl--4 tr:nth-of-type(2) th {
  color: #3C3C3C;
}

.option__tbl--4 table tr:first-of-type th:nth-of-type(2),
.option__tbl--4 table tr:first-of-type th:nth-of-type(3) {
  width: 264px;
}

.option__block .cmnblock__head span.normal {
  padding-left: 0;
  font-size: 1em;
  font-weight: 400;
}

.option__radius {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 0 140px 0 0;
  padding: 42px 55px 33px 44px;
  margin-top: 30px;
}

.option__radius .left {
  display: flex;
  flex-direction: column;
  width: 40.6%;
}

.option__radius .left .txt {
  margin-bottom: 30px;
}

.option__radius .left .cmnblock__def {
  margin-top: auto;
}

.option__radius .left .cmnblock__def .head {
  text-align: left;
}

.option__radius .right {
  width: 54.8%;
}

.option__radius .right .head {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-color);
}

.option__radius .right .box {
  border-radius: 0 80px 0 0;
  background: #D8E7ED;
  padding: 30px 40px 30px 20px;
  margin-top: 10px;
}

.option__radius .right .box ul li {
  position: relative;
  padding-left: 20px;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.option__radius .right .box ul li::before {
  content: "▪";
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.option__btm {
  margin-top: 109px;
}

.option__btm .cmnblock__title+.option__block {
  margin-top: 52px;
}

.option__whitebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
  padding: 35px 46px;
  margin-top: 20px;
  border: solid 2px #fff;
}

.option__whitebox .left {
  flex: 1;
}

.option__whitebox .right {
  width: 313px;
}

.option__whitebox .right .cmnblock__def {
  margin-top: 0;
}

.option__whitebox .right .cmnblock__def .head {
  text-align: left;
}



/* ========================================
   Introduction
======================================== */
.intro {
  padding-bottom: 36px;
}

.intro .cmnblock {
  padding-bottom: 126px;
  padding-top: 64px;
}

.intro__basic {
  margin-top: 37px;
}

.intro__phase {
  margin-top: 11px;
}

.intro__link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 29px;
  margin-top: 32px;
}

.intro__link li a {
  position: relative;
  display: block;
  border-radius: 11px;
  background: var(--bg-color);
  padding: 21px 35px 21px 15px;
  text-align: center;
  font-size: 1.25rem;
  color: var(--theme-color);
}

.intro__link li a::after {
  content: '';
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #135FB7;
}

.intro__inn {
  margin-top: 42px;
}

.intro__inn .box {
  background: #fff;
  border-radius: 0 160px 0 0;
  padding: 29px 76px 14px 40px;
}

.intro__inn .box+.box {
  margin-top: 65px;
}

.intro__inn__info {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.intro__inn__info .label ul {
  display: flex;
  gap: 17px;
}

.intro__inn__info .label ul li {
  border: solid 1px var(--theme-color);
  padding: 8px 17px;
  color: var(--theme-color);
}

.intro__inn__info .bus {
  display: block;
  width: fit-content;
  padding: 2px;
  border-radius: 3px;
  background: #D4E3FF;
  margin: 13px 0 0 auto;
  color: var(--theme-color);
  letter-spacing: .3em;
}

.intro__inn__info .bus .inner {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 12px;
  border: solid 1px #fff;
  border-radius: 3px;
}

.intro__inn__detail {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}

.intro__inn__detail .left {
  width: 46.68%;
}

.intro__inn__detail .left .check {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
}

.intro__inn__detail .left .check li {
  display: flex;
  flex-direction: column;
  border-right: solid 1px #D8E7ED;
  padding: 0 4px;
  background: #F5F5F5;
}

.intro__inn__detail .left .check li:first-of-type {
  padding-left: 0;
}

.intro__inn__detail .left .check li:last-of-type {
  padding-right: 0;
}

.intro__inn__detail .left .check .head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  background: var(--theme-color);
  padding: 5px;
  text-align: center;
  color: #fff;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.14;
  min-height: 3em;
  max-height: 38px;
}

.intro__inn__detail .left .check .mark {
  text-align: center;
  font-size: 1.875rem;
  color: var(--theme-color);
}

.intro__inn__detail .left .check .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4em;
  text-align: center;
  color: var(--theme-color);
  font-weight: 700;
}

.intro__inn__detail .right {
  width: 48.1%;
}

.intro__inn__detail .right .map iframe {
  aspect-ratio: 464/450;
}

.intro__inn__detail .right .map .btn {
  margin-top: 15px;
  text-align: right;
}

.intro__inn__detail .right .map .btn a {
  position: relative;
  display: inline-block;
  border: solid 1px var(--theme-color);
  border-radius: 30px;
  padding: 4px 37px 3px 18px;
  color: var(--theme-color);
  font-size: 14px;
  margin-right: 6px;
  letter-spacing: -1px;
}

.intro__inn__detail .right .map .btn a::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 18px;
  background: url(../img/icon_map.svg) no-repeat left top/cover;
}

.intro__inn__detail .right .address {
  margin-top: 5px;
  line-height: 1.625;
}

.intro__inn__detail .right .address .add li {
  display: flex;
}

.intro__inn__detail .right .address .add li .desc {
  flex: 1;
}

.intro__inn__detail .right .access {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  padding-bottom: 0;
}

.intro__inn__detail .right .access .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background: #A0C3E2;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
 /* flex: 0 0 80px; */
}

.intro__inn__detail .right .access .desc {
  color: var(--theme-color);
}

.intro__inn .note {
  position: relative;
  left: -20px;
  margin-top: 30px;
  font-size: .875rem;
}

/* ========================================
   Guide
======================================== */
.guide {
  padding-bottom: 67px;
}

.guide__wrap {
  max-width: 1000px;
  margin: 52px auto 0;
}

.guide__phase {
  font-size: 1.125rem;
  color: var(--theme-color);
}

.guide__phase span {
  font-size: 1rem;
  font-weight: 400;
}

.guide__wrap table {
  width: 100%;
  margin-top: 17px;
  border-collapse: collapse;
}

.guide__wrap table th,
.guide__wrap table td {
  border: solid 1px #fff;
  padding: 5px 12px;
  text-align: center;
}

.guide__wrap table th {
  background: #5B9BD4;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 500;
}

.guide__wrap table tr th:first-of-type {
  width: 206px;
}

.guide__wrap table tr th:nth-of-type(2) {
  width: 110px;
}

.guide__wrap table tbody tr td:last-of-type {
  text-align: left;
}

.guide__wrap table tbody tr:nth-of-type(odd) td {
  background: #D2DEEE;
}

.guide__wrap table tbody tr:nth-of-type(even) td {
  background: #EAEEF7;
}

.guide .cmnblock {
  padding-bottom: 90px;
  padding-top: 32px;
}

/* ========================================
   Voice
======================================== */
.voice {
  padding-bottom: 70px;
}

.voice .cmnblock {
  padding-bottom: 98px;
}

.voice__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 0;
  margin: 50px auto 0;
  max-width: 900px;
}

.voice__list .box {
  background: #fff;
  border-radius: 0 60px 0 0;
  padding: 36px 40px;
  width: 46.66%;
}

.voice__list .box .img {
  text-align: center;
}

.voice__list .box .head {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 42px;
  font-size: 1.125rem;
}

.voice__list .box .head span {
  font-size: .75rem;
  font-weight: 400;
  color: #98A6B5;
}

.voice__list .box .desc {
  margin-top: 17px;
  font-size: .75rem;
  line-height: 2;
  color: #3B4043;
}

/* ========================================
   Flow
======================================== */
.flow {
  padding-bottom: 70px;
}

.flow .cmnblock {
  padding-bottom: 73px;
  padding-top: 77px;
}

.flow__chat {
  margin-top: 98px;
}

.flow__chat .block {
  display: flex;
  gap: 16px;
  max-width: 836px;
  width: 100%;
}

.flow__chat .block.fit {
  width: fit-content;
}

.flow__chat .block+.block {
  margin-top: 50px;
}

.flow__chat .block:nth-of-type(even) {
  flex-direction: row-reverse;
  max-width: 852px;
  margin-left: auto;
}

.flow__chat .block .img {
  width: 70px;
  text-align: center;
}

.flow__chat .block .img .name {
  margin-top: 10px;
}

.flow__chat .block .txt {
  flex: 1;
}

.flow__chat .block .head {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--theme-color);
}

.flow__chat .block:nth-of-type(even) .head {
  text-align: right;
}

.flow__chat .block .txt .bal {
  margin-top: 14px;
  background: #fff;
  border-radius: 0 20px 20px 20px;
  border: solid 1px var(--theme-color);
  box-shadow: 16px 16px 0 #D8E7ED;
  padding: 21px 30px;
}

.flow__chat .block:nth-of-type(even) .txt .bal {
  border-radius: 20px 0 20px 20px;
}

.flow__chat .block .txt .bal .desc {
  font-weight: 400;
  line-height: 2;
}

.flow__chat .block .txt .bal .desc .note {
  color: var(--theme-color);
  font-size: .875rem;
}

.flow__chat .block .txt .bal .desc .note strong {
  color: #ED847E;
  text-decoration: underline;
  font-weight: 700;
}

.flow__chat .block .txt .bal .mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 25px auto 0;
}

.flow__chat .block .txt .bal .mail .info {
  flex: 1;
}

.flow__chat .block .txt .bal .address {
  font-weight: 400;
}

/* ========================================
   Step
======================================== */
.step {
  padding-bottom: 70px;
}

.step .cmnblock {
  padding-bottom: 90px;
  padding-top: 40px;
}

.step__flow {
  max-width: 900px;
  margin: 27px auto 0;
}

.step__flow__list {
  margin-top: 20px;
}

.step__flow__list li {
  position: relative;
  padding: 13px 30px;
  background: #fff;
  border-radius: 6px;
}

.step__flow__list li::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #135FB7;
  opacity: .6;
}

.step__flow__list li:last-of-type:after {
  border: none;
}

.step__flow__list li+li {
  margin-top: 22px;
}

.step__flow__list li:nth-of-type(even) {
  background: #D8E7ED;
}

.step__flow__list li .note {
  display: inline-block;
  color: #ED847E;
  font-size: .875rem;
}

.step__flow__list li .att {
  color: #ED847E;
}

.step__flow .lunch {
  margin-top: 37px;
}

.step__flow .lunch .cmnblock__subhead span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
}

.step__lunch__list {
  margin-top: 18px;
}

.step__lunch__list li+li {
  margin-top: 10px;
}

.step__lunch__list li::after {
  border: none;
}

.step__map {
  margin-top: 60px;
}

.step__map .img {
  margin-top: 62px;
  text-align: center;
}

/* ========================================
   Faq
======================================== */
.faq {
  padding-bottom: 70px;
}

.faq__block {
  margin-top: 60px;
}

.faq__child+.faq__child {
  margin-top: 50px;
}

.faq__def {
  margin-top: 40px;
}

.faq__def dt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 6px;
  padding: 25px 61px 25px 18px;
  cursor: pointer;
}

.faq__def dt .ico {
  font-weight: 400;
  font-size: 2.285rem;
  color: var(--theme-color);
  line-height: 1;
}

/* .faq__def dt::before {
  content: 'Q.';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 2.285rem;
  color: var(--theme-color);
  line-height: 1;
} */

.faq__def dd {
  position: relative;
  display: none;
  /* max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; */
  padding: 14px 61px 0 18px;
  font-weight: 400;
  line-height: 1.75;
}

.faq__def dd .ico {
  font-weight: 400;
  font-size: 1.857rem;
  color: #AECDEF;
  line-height: 1.1;
}

/* .faq__def dd::before {
  content: 'A.';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.857rem;
  color: #AECDEF;
  line-height: 1;
} */

.faq__def dd.active {
  max-height: 500px;
  opacity: 1;
}

.faq__def dd .in {
  display: flex;
  gap: 9px;
}

.faq__def dd a {
  text-decoration: underline;
}

.faq__def dd a:hover {
  text-decoration: none;
}

.faq__def dd+dt {
  margin-top: 20px;
}

.faq__def .plus {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.faq__def .plus::before,
.faq__def .plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--theme-color);
  transition: all 0.3s;
}

.faq__def .plus::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__def .plus::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

/* マイナス表示（activeクラスを付与した場合） */
.faq__def .plus.active::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ========================================
   Access
======================================== */
.access {
  padding-bottom: 0px;
}

.access__map {
  margin-top: 85px;
}

.access__in {
  max-width: 960px;
  margin: 0 auto;
}

.access__in .above {
  display: flex;
  justify-content: space-between;
}

.access__in .above .info {
  width: 49.27%;
}

.access__in .above .info .accessinfo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
}

.access__in .above .info .accessinfo .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background: #A0C3E2;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
 /* flex-shrink: 0; */
}

.access__in .above .info .accessinfo .desc {
  font-weight: 400;
}

.access__in .above .info .accessinfo .desc span {
  color: var(--theme-color);
  font-weight: 500;
  font-size: 1.25rem;
}

.access__in .above .map {
  width: 46.14%;
}

.access__in .above .map iframe {
  aspect-ratio: 443 / 450;
}

.access__in .above .map .btn {
  margin-top: 15px;
  text-align: right;
}

.access__in .above .map .btn a {
  position: relative;
  display: inline-block;
  border: solid 1px var(--theme-color);
  border-radius: 30px;
  padding: 6px 38px 6px 24px;
  background: #fff;
  color: var(--theme-color);
}

.access__in .above .map .btn a::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 18px;
  background: url(../img/icon_map.svg) no-repeat left top / cover;
}

.access__in .btm {
  display: flex;
  gap: 67px;
  margin-top: 26px;
}

.access__in .btm .left {
  width: 49.375%;
}

.access__in .btm .right {
  width: 39.583%;
}

.access__in .btm .right .cmnbtn {
  margin-top: 44px;
}

.access__parking {
  margin-top: 92px;
}

.access__parking__phase {
  margin-top: 20px;
  font-size: 1.625rem;
  color: var(--theme-color);
}

.access__parking__phase span {
  font-size: 1.125rem;
  color: #ED847E;
}

.access__parking .cmnblock__tbl td strong {
  font-size: 1.5rem;
  font-weight: 500;
}

.access__parking .cmnblock__tbl table tr th:first-of-type {
  width: 150px;
}

.access__parking .note {
  margin-top: 22px;
  font-weight: 400;
  font-size: .875rem;
  font-size: 14px;
}

.access__parking .detailmap {
  margin-top: 60px;
  text-align: center;
}

/* ========================================
   Footer
======================================== */
footer.cta {
  padding-bottom: 0;
}

footer.cta .cta__title {
  font-size: 1.875rem;
}

footer.cta .cta__title span {
  font-size: 2.25rem;
  letter-spacing: .3em;
}

.sp {
  display: none;
}

@media (max-width: 1299px) {
  .header__right {
    gap: 0 24px;
  }

  .header__nav-list {
    gap: 15px;
  }

  .cmnblock__right {
    position: static;
    writing-mode: horizontal-tb;
    text-align: right;
  }
}


/* @media (max-width: 1254px) {
  .cmnblock__head::before {
    left: -20px;
  }
} */

@media (max-width: 1199px) {
  body.no-scroll {
    overflow: hidden;
  }

  .header {
    background: transparent;
    box-shadow: none;
    margin-top: 10px;
  }

  .header__inner {
    height: 48px;
  }

  header.is-active {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  header.is-active.is-open {
    background-color: var(--theme-color);
    box-shadow: none;
    padding-top: 10px;
    margin-top: 0;
    border-radius: 0;
  }

  .header__inner {
    padding: 0 11px 0 20px;
  }

  .header__logo {
    position: relative;
    z-index: 101;
    filter: brightness(0) invert(1);
    flex: 0 0 48%;
  }

  header.is-active .header__logo {
    filter: none;
  }

  header.is-open .header__logo {
    filter: brightness(0) invert(1);
  }

  .header__nav {
    display: none;
  }


  .header__spin {
    display: block;
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: -100%;
    z-index: 99;
    width: 100%;
    height: 100vh;
    background-color: var(--theme-color);
    padding: 80px 20px 20px;
    transition: right 0.3s;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    color: #fff;
  }

  .header__spin.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 20px;
    width: 76%;
    margin: 0 auto;
  }

  .header__nav-item a {
    display: block;
    border-bottom: dashed 1px #fff;
    padding-bottom: 15px;
    font-size: 1.25rem;
    color: #fff;
  }


  .header__menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 101;
    width: 41px;
    height: 41px;
    background: #fff;
    border-radius: 50%;
  }

  .header__menu-btn span {
    width: 24px;
  }

  .header__menu-btn.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  /* .header__menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  } */

  .header__menu-btn.is-open span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .header__contact-btn {
    display: none;
  }

  .smooth__info {
    padding-left: 0;
  }

  .smooth__title {
    font-size: 2.5rem;
  }

  .smooth__img-area {
    width: 99%;
  }

  .package__pool__info {
    justify-content: space-between;
    gap: 60px;
  }

  .package__part__block .box {
    width: 49%;
  }
}



@media (max-width: 991px) {
  .package__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .package__info .info {
    width: 100%;
    max-width: none;
  }

  .package__pool__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .package__pool__exam {
    max-width: none;
    width: 100%;
  }

  .package__part__block {
    flex-direction: column;
    gap: 17px;
  }

  .package__part__block .box {
    width: 100%;
  }

  .package__infomation__box {
    padding: 45px 15px 20px;
  }

  .package__inn__limited .block {
    flex-direction: column;
    gap: 30px;
  }

  .package__inn__limited .block .img {
    text-align: center;
  }

  .apply__info {
    flex-direction: column;
    gap: 50px;
  }

  .apply__info .info {
    width: 100%;
  }

  .option__tbl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cmnblock__tbl.option__tbl table {
    width: 700px;
  }

  .cmnblock__tbl.option__tbl table tr:nth-of-type(3) th:first-of-type {
    width: 70px;
  }

  .cmnblock__tbl.option__tbl table tr:nth-of-type(3) th:nth-of-type(2) {
    width: 70px;
  }

  .cmnblock__tbl.option__tbl table tr:nth-of-type(2) th:nth-of-type(1),
  .cmnblock__tbl.option__tbl table tr:nth-of-type(2) th:nth-of-type(2),
  .cmnblock__tbl.option__tbl table tr:nth-of-type(2) th:nth-of-type(3),
  .cmnblock__tbl.option__tbl table tr:nth-of-type(2) th:nth-of-type(4) {
    width: 90px;
  }

  .cmnblock__tbl.option__tbl--2 table tr:nth-of-type(3) th:nth-of-type(2) {
    width: 80px;
  }

  .cmnblock__tbl.option__tbl--2 table,
  .cmnblock__tbl.option__tbl--3 table {
    width: 800px;
  }

  .cmnblock__tbl.option__tbl--4 table {
    width: 600px;
  }

  .cmnblock__tbl.option__tbl__btn .cmnbtn {
    margin-top: 0;
  }

  .cmnblock__tbl.option__tbl--4 table tr:first-of-type th:nth-of-type(2),
  .cmnblock__tbl.option__tbl--4 table tr:first-of-type th:nth-of-type(3) {
    width: 135px;
  }

  .option__radius {
    border-radius: 0 40px 0 0;
    padding: 32px 15px 24px;
  }

  .intro__link {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .intro__inn__info {
    flex-direction: column;
    gap: 24px;
    .label {
      display: flex;
      flex-wrap: wrap;
      .bus {
        margin: 10px 0 3px;
        .inner {
          padding: 0px 10px;
          border: none;
          font-size: 12px;
          img {
            max-width: 25px;
          }
        }
      }
    }
  }

  .intro__inn .box {
    padding-inline: 40px;
  }

  .intro__inn__detail {
    flex-direction: column;
    gap: 30px;
  }

  .intro__inn__detail>.left,
  .intro__inn__detail>.right {
    width: 100%;
  }

  .intro__inn__detail .right .address {
    margin-top: 24px;
  }

  .access__parking .cmnblock__tbl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .access__parking .cmnblock__tbl table {
    width: 1000px;
  }
}

/* ========================================
   Responsive: 767px以下（スマホ）
======================================== */
@media (max-width: 767px) {

  .inner {
    padding: 0 15px;
  }

  .inner--2 {
    padding: 0 15px;
  }

  .inner--3 {
    padding: 0 15px;
  }

  .inner--2 .inner--3 {
    padding: 0;
  }

  .cmnblock {
    padding: 50px 0 30px;
  }

  .cmnblock__phase {
    margin-top: 10px;
  }

  .cmnblock__label {
    width: 46.3%;
    top: -4px;
    left: -15px;
  }

  .cmnblock__title {
    font-size: 1.714rem;
  }

  .cmnblock__right {
    font-size: 1.42rem;
  }

  .cmnblock__head {
    font-size: 1.28rem;
  }

  .cmnblock__head::before {
    left: -15px;
    width: 6px;
    height: 15px;
  }

  .cmnblock__subhead {
    padding-left: 1.28rem;
    font-size: 1.28rem;
  }

  .cmnblock__subhead__note {
    font-size: .928rem;
    margin-top: -1px;
  }

  .cmnblock__subhead .num {
    left: 0;
  }

  .cmnblock__labelhead {
    gap: 6px;
    padding-right: 0;
  }

  .cmnblock__labelhead .label {
    padding: 4px 30px 4px 12px;
  }

  .cmnblock__head .regular {
    display: inline-block;
  }

  .cmnblock__tbl table {
    box-shadow: 10px 10px 0 #D8E7ED;
    width: calc(100% - 10px);
    padding: 12px 8px;
    margin-left: 0;
  }

  .cmnblock__tbl table th,
  .cmnblock__tbl table td {
    padding: 0px 2px 0 0;
    /* border-spacing: 0; */
  }

  .cmnblock__tbl table tr th:first-of-type {
    width: 70px;
  }

  .cmnblock__tbl .vertical__label {
    font-size: 1rem;
  }

  .cmnblock__tbl .eat__label {
    gap: 2px;
    padding: 4px 6px;
    font-size: 1rem;
  }

  .cmnblock__tbl .orange img {
    width: 21px;
  }

  .cmnblock__tbl .red img {
    width: 18px;
  }

  .cmnblock__tbl .blue img {
    width: 16px;
  }

  .cmnblock__tbl .mark {
    font-size: 1.57rem;
    padding-block: 0;
  }

  .cmnblock__tbl .time {
    font-size: 1rem;
  }

  .cmnblock__def {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .cmnbtn__arrow {
    width: 80px;
    height: 80px;
  }

  /* Header */


  /* Hero */

  /* Section Title */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  /* Smooth */
  .smooth {
    padding: 32px 0 36px;
  }

  .smooth__content {
    flex-direction: column;
    gap: 30px;
  }

  .smoth__label {
    width: 68.53%;
    margin: 0 auto;
  }

  .smooth__title {
    font-size: 2rem;
    text-align: center;
  }

  .smooth__text {
    font-size: 1.14rem;
    text-align: center;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

  .about__text {
    font-size: 1rem;
  }

  /* cta */
  .cta {
    padding: 25px 0 38px;
  }

  .cta__title {
    font-size: 1.42rem;
  }

  .cta__btn {
    grid-template-columns: 1fr;
    gap: 3px;
    width: 80%;
    margin-top: 67px;
  }

  .cta__link {
    padding: 20px;
  }

  .cta__apply .img {
    width: 37.85%;
    top: -9.5vw;
  }

  .cta__apply .note {
    margin-top: 7px;
    font-size: .857rem;
    margin-bottom: 7px;
  }

  .cta__contact .img {
    width: 46px;
    height: 46px;
  }

  .cta__time {
    padding-right: 0;
    margin-bottom: 0px;
  }

  .cta__time__head {
    width: 50px;
    height: 50px;
    font-size: .928rem;
  }

  .cta__time__text {
    font-size: 1.285rem;
  }

  .cta__time__text span {
    font-size: 2.285rem;
    font-weight: 700;
  }

  .cta__mail {
    font-size: 1rem;
    margin-top: 9px;
  }

  .cta__mail__note {
    font-size: .928rem;
  }

  .cta__add__head {
    font-size: 1.14rem;
    line-height: 1.5;
  }

  .cta__add__text {
    padding-left: 2.3rem;
    text-indent: -2.3rem;
    font-size: 1rem;
  }

  .cta__mov {
    aspect-ratio: 345/194;
    width: 100%;
  }

  .cta__mov iframe {
    height: 100%;
    width: 100%;
  }

  /* package */
  .package {
    padding-bottom: 40px;
  }

  .package__basic .plan {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .package__basic .plan .img {
    width: 100%;
    text-align: center;
  }

  .package__food {
    margin-top: 20px;
    padding-top: 30px;
  }

  .package__info {
    margin-top: 22px;
  }

  .package__info .info {
    min-width: auto;
  }

  .package__pool {
    margin-top: 32px;
  }

  .package__pool__exam {
    width: calc(100% - 30px);
    margin-inline: auto;
    padding: 10px 38px;
  }

  .package__pool__exam .exam__in {
    display: block;
  }

  .package__pool__phase {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin: 30px 0 20px;
  }

  .package__part {
    margin-top: 30px;
  }

  .package__part__tblwrap {
    flex-direction: column;
    gap: 9px;
  }

  .package__part__tblwrap dl {
    width: 100%;
  }

  .package__part__block .box {
    padding: 16px 15px;
  }

  .package__part__block .absolute {
    margin-bottom: 10px;
    text-align: center;
    color: #ED847E;
    font-size: 16px;
  }

  .package__infomation {
    margin-top: 36px;
  }

  .package__infomation__on {
    font-size: 2.14rem;
    letter-spacing: -3px;
    font-weight: 600;
  }

  .package__infomation__box {
    border-radius: 0 40px 0 0;
  }

  .package__infomation__box h4 {
    font-size: 1.42rem;
    margin-bottom: 27px;
  }

  .package__infomation__head {
    align-items: flex-start;
    gap: 14px;
  }

  .package__infomation__head .img {
    width: 75px;
  }

  .package__infomation__head .txt .phase {
    font-size: 1rem;
  }

  .package__infomation__in {
    flex-direction: column;
    gap: 20px;
  }

  .package__infomation__block .box {
    width: 100%;
    padding-bottom: 13px;
  }

  .package__infomation__block .box .desc {
    margin-top: 5px;
    padding-left: 0;
  }

  .package__infomation__block .box .day {
    font-size: 1.25rem;
  }

  .package__inn {
    margin-top: 32px;
  }

  .package__inn__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .package__inn__block .img {
    width: 125px;
    margin: 0 auto;
  }

  .package__inn__block .txt ul {
    display: block;
  }

  .package__inn__limited {
    margin-top: 27px;
  }

  .package__inn__limited .label {
    padding: 6px 15px;
    font-size: 1.14rem;
  }

  .package__inn__limited h5 {
    font-size: 1.28rem;
  }

  .package__inn__limited h5 span {
    display: block;
    font-size: 1.14rem;
  }

  /*apply*/
  .apply {
    padding-bottom: 40px;
  }

  .apply .cmnblock {
    padding-bottom: 30px;
  }

  .apply__phase {
    padding-inline: 15px;
    margin-top: 14px;
    font-size: 1.14rem;
  }

  .apply__label {
    padding: 3px 20px;
  }

  .apply__info {
    margin-top: 20px;
    gap: 40px;
  }

  .apply__info__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .apply__info__head .cmnblock__labelhead {
    width: 100%;
  }

  .apply__list li .head {
    width: 100px;
  }

  .apply__case+.apply__case {
    margin-top: 61px;
  }

  .apply__opt {
    margin-top: 15px;
  }

  .apply__opt ul li {
    flex-direction: column;
    gap: 0;
  }

  .apply__opt ul li .desc {
    padding-left: 1em;
    line-height: 1.6;
  }

  .apply__opt .img {
    display: none;
  }

  .apply__spimg {
    margin-top: 36px;
    text-align: center;
  }

  /* option */
  .option {
    padding-bottom: 40px;
  }

  .option .cmnblock {
    padding-bottom: 30px;
    padding-top: 54px;
  }

  .option__phase {
    margin-top: 14px;
    font-size: 1.14rem;
  }

  .option__box {
    border-radius: 0 50px 0 0;
    padding: 18px 15px;
    line-height: 1.6;
    margin-top: 13px;
  }

  .option__box .list {
    display: inline-block;
    padding-left: 1em;
    margin-top: 6px;
  }

  .option__box .add {
    margin-top: 13px;
  }

  .option__box .add .line {
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
  }

  .option__block {
    margin-top: 32px;
  }

  .option__block__phase {
    margin-top: 11px;
  }

  .option__tbl__note {
    margin-top: 8px;
  }

  .option__tbl__btn {
    flex-direction: column;
    align-items: flex-end;
    gap: 23px;
    margin-top: 23px;
  }

  .option__radius {
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
  }

  .option__radius .left,
  .option__radius .right {
    width: 100%;
  }

  .option__radius .left .txt {
    margin-bottom: 15px;
  }

  .option__radius .right .box {
    border-radius: 0 40px 0 0;
    padding: 16px 10px;
  }

  .option__btm {
    margin-top: 30px;
  }

  .option__btm .cmnblock__title+.option__block {
    margin-top: 23px;
  }

  .option__whitebox {
    flex-direction: column;
    gap: 25px;
    padding: 12px 15px 26px;
  }

  .option__whitebox .right {
    width: 100%;
  }

  /* intro */
  .intro__basic {
    margin-top: 28px;
  }

  .intro__phase {
    margin-top: 14px;
  }

  .intro__link {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 24px;
    padding-inline: 15px;
  }

  .intro__link li a {
    padding-block: 7px;
    font-size: .92rem;
    border-radius: 6px;
    width: 91%;
    margin: 0 auto;
  }

  .intro__link li a::after {
    right: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #135FB7;
  }

  .intro__inn {
    margin-top: 30px;
  }

  .intro__inn .box {
    border-radius: 0 40px 0 0;
    padding: 17px 15px;
  }

  .intro__inn .box+.box {
    margin-top: 24px;
  }

  .intro__inn__info .label ul {
    gap: 8px;
  }

  .intro__inn__info .label ul li {
    padding: 2px 9px;
    font-size: .857rem;
  }

  .intro__inn__detail {
    gap: 15px;
    margin-top: 7px;
  }

  .intro__inn__detail .left .check {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px 0;
    margin-top: 17px;
  }

  .intro__inn__detail .left .check li:first-of-type {
    padding-left: 4px;
  }

  .intro__inn__detail .left .check li:last-of-type {
    padding-right: 4px;
  }

  .intro__inn__detail .left .check li:nth-of-type(3n+1) {
    padding-left: 0;
  }

  .intro__inn__detail .left .check li:nth-of-type(3n) {
    padding-right: 0;
  }

  .intro__inn__detail .right .access .circle {
    width: 80px;
    height: 80px;
    font-size: 1.14rem;
  }

  .intro__inn .note {
    margin-top: 6px;
    left: 0;
  }

  /* guide */
  .guide {
    padding-bottom: 36px;
    margin-top: 30px;
  }

  .guide .cmnblock {
    padding-bottom: 24px;
  }

  .guide__wrap {
    margin-top: 18px;
  }

  .guide__phase {
    font-size: 1rem;
  }

  .guide__phase span {
    font-size: .857rem;
  }

  .guide__tablewrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .guide__wrap table {
    width: 700px;
  }

  .guide__wrap table th, .guide__wrap table td {
    padding: 4px 8px;
  }

  .guide__wrap table th {
    font-size: 1rem;
  }

  .guide__wrap table td {
    font-size: .857rem;
  }

  .guide__wrap table tr th:first-of-type {
    width: 180px;
  }

  .guide__wrap table tr th:nth-of-type(2) {
    width: 80px;
  }

  /* voice */
  .voice {
    padding-bottom: 40px;
  }

  .voice .cmnblock {
    padding-bottom: 40px;
  }

  .voice__list {
    margin-top: 24px;
    gap: 28px;
  }

  .voice__list .box {
    width: 100%;
    padding: 24px 15px;
  }

  .voice__list .box .img img {
    width: 135px;
  }

  .voice__list .box .head {
    margin-top: 27px;
    font-size: 1.28rem;
  }

  .voice__list .box .head span {
    font-size: .857rem;
  }

  .voice__list .box .desc {
    font-size: .857rem;
    margin-top: 12px;
  }

  /* flow */
  .flow {
    padding-bottom: 40px;
  }

  .flow__chat {
    margin-top: 46px;
  }

  .flow .cmnblock {
    padding-bottom: 36px;
  }

  .flow__chat .block {
    flex-direction: column;
    gap: 10px;
    padding-right: 15px;
  }

  .flow__chat .block.fit {
    flex-direction: row;
  }

  .flow__chat .block+.block {
    margin-top: 45px;
  }

  .flow__chat .block:nth-of-type(even) {
    flex-direction: column;
    padding-right: 0;
    padding-left: 15px;
  }

  .flow__chat .block .img {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    order: 1;
  }

  .flow__chat .block:nth-of-type(even) .img {
    flex-direction: row-reverse;
  }

  .flow__chat .block.fit .img {
    width: 50px;
  }

  .flow__chat .block .txt {
    order: 2;
  }

  .flow__chat .block:nth-of-type(even) .txt .bal {
    text-align: left;
  }

  .flow__chat .block .img .person {
    width: 50px;
  }

  .flow__chat .block .img .name {
    margin-top: 3px;
    font-size: .857rem;
  }

  .flow__chat .block .head {
    font-size: 1.14rem;
    text-align: left;
  }

  .flow__chat .block .txt .bal {
    margin-top: 0;
    padding: 12px 15px;
    box-shadow: 10px 10px 0 #D8E7ED;
  }

  .flow__chat .block .txt .bal .mail {
    width: 100%;
    gap: 9px;
  }

  .flow__chat .block .txt .bal .mail .ico {
    width: 35px;
  }

  .flow__chat .block .txt .bal .address {
    margin-top: 8px;
  }

  /* step */
  .step {
    padding-bottom: 40px;
  }

  .step .cmnblock {
    padding-bottom: 30px;
  }

  .step .cmnblock__subhead {
    padding-left: 0;
  }

  .step__flow__list {
    margin-top: 14px;
  }

  .step__flow__list li {
    padding: 8px 10px;
    font-weight: 400;
  }

  .step__map {
    margin-top: 50px;
  }

  .step__map .img {
    margin-top: 18px;
  }

  /* faq */
  .faq {
    padding-bottom: 40px;
  }

  .faq__block {
    margin-top: 30px;
  }

  .faq__child+.faq__child {
    margin-top: 40px;
  }

  .faq__def {
    margin-top: 28px;
  }

  .faq__def dt {
    padding: 15px 50px 15px 15px;
    font-size: 1.14rem;
  }

  .faq__def dd {
    padding: 12px 15px 0;
  }

  .faq__def dd.active {
    padding: 15px;
  }

  .faq__def dt .ico {
    font-size: 2rem;
  }

  .faq__def dd .ico {
    font-size: 1.57rem;
  }

  .faq__def .plus {
    width: 25px;
    height: 25px;
    right: 15px;
  }

  .faq__def .plus::before {
    width: 12px;
  }

  .faq__def .plus::after {
    height: 12px;
  }

  /* access */
  .access {
    padding-bottom: 40px;
  }

  .access__map {
    margin-top: 26px;
  }

  .access__in .above {
    flex-direction: column;
    gap: 22px;
  }

  .access__in .above .info,
  .access__in .above .map {
    width: 100%;
  }

  .access__in .above .info .accessinfo {
    margin-top: 40px;
  }

  .access__in .btm {
    flex-direction: column;
    gap: 18px;
    margin-top: 22px;
  }

  .access__in .btm .left,
  .access__in .btm .right {
    width: 100%;
  }

  .access__parking {
    margin-top: 38px;
  }

  .access__parking__phase {
    margin-top: 10px;
    font-size: 1rem;
  }

  .access__parking .note {
    margin-top: 15px;
    font-size: 1rem;
  }

  .access__parking .cmnblock__tbl table {
    width: 700px;
  }

  .access__parking .detailmap {
    margin-top: 15px;
  }


  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  footer.cta .cta__title {
    font-size: 1.14rem;
  }

  footer.cta .cta__title span {
    display: block;
    font-size: 1.42rem;
  }

  .cmnblock__tbl .mark .sup, .cmnblock__tbl .time .sup {
    top: -5px;
  }
}




.option__tbl__head {
  color: #135FB7!important;
  font-size: 24px!important;
}

.option__tbl tr:nth-of-type(1) th, .option__tbl tr:nth-of-type(2) th {
  font-size: 18px;
}

.option__tbl .time strong {
    font-weight: 500;
    font-size: 24px;
}


#option {
      .option__tbl--4 {
      .time {
        text-align: center;
      }
      .ff-num {
          margin: 0 auto;
          display: flex;
          justify-content: center;
          gap: 10px;
      }
    }
}


#apply {
  .notefss {
    font-weight: normal;
  }
}

#intro {
  .intro__inn {
    .cmnbtn {
      margin-top: -10px;
    }
    .btn {
      margin-top: 10px;
    }
  }
}


#access {
  .cmnblock__tbl {
    .notered {
      display: block;
      color: #ED847E;
      font-size: 13px;
      font-weight: 500;
    }
    .fwn {
      font-weight: normal;
      margin-left: 3px;
    }
    strong {
      margin-left: 5px;
    }
    .lhs {
      line-height: 1.2;
    }
    table {
      /* padding-bottom: 20px; */
      .spannote {
        font-size: 14px;
        font-weight: 400;
      }
    }
  }

  th {
    position: relative;
  }
  .sup {
    position: absolute;
    top: 0px;
    right: 8px;
    font-size: .8125rem;
    font-weight: 400;
    font-family: 'Zen Kaku Gothic New', sans-serif;
  }
}





/* ========================================
   Responsive: 767px以下（スマホ）
======================================== */
@media (max-width: 767px) {


  .cta__add {
    padding-top: 17px;
  }
  .package__basic {
    margin-top: 12px;
  }
  .package__basic .plan .txt ul li {
    line-height: 1.6;
  }

  .cmnblock__tbl table {
    border-radius: 14px;
    width: calc(100% - 0px);
  }

  .package__info .txt a {
    white-space: nowrap;
  }
  .cmnblock__def .head {
    font-size: 16px;
  }
  .cmnblock__def .def .em {
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -1px;
  }
  .package__pool__exam .exam__in li {
    line-height: 2.1;
    font-size: 16px;
    padding-left: 19px;
  }
  .package__part__tblwrap dl dd {
    font-weight: 600;
    font-size: 16px;
    padding: 6px 12px;
  }

  .package__part__note {
      margin-top: 12px;
  }

  .package__part__note {
      margin-top: 10px;
      font-weight: 600;
  }


  .apply__basic {
    margin-top: 39px;
  }
  .apply__info__head {
    .ico {
      img {
        max-width: 12vw;
      }
    }
  }
  .apply__list {
    margin-bottom: 10px;
  }

  #apply {
    .cmnblock__tbl .time {
      font-size: 18px;
      font-weight: 500;
    }
    .cmnblock__tbl .vertical__label {
      font-size: 16px;
    }
    .cmnblock__tbl table {
      th {
        /* min-height: 50px; */
      }
      span.fss {
        font-size: 11px;
      }
      span.notefss {
        font-size: 14px;
      }
    }
    .vertical__label {
        padding-right: 7px;
    }
    .cmnblock__tbl table tr th:first-of-type {
        width: 58px;
    }
  }

  #option {
    .cmnblock__tbl table tr th.option__tbl__head {
      font-size: 16px!important;
    }
    .cmnblock__tbl table tr th {
      font-size: 14px!important;
    }
    .option__tbl .time strong {
      font-size: 16px;
    }
    .option__label {
      margin-left: 0;
      margin-top: 20px;
    }
    .option__label .head {
      padding: 4px 19px 3px 25px;
    }


  }


  #intro {
    .intro__inn__detail .left .check .mark {
      font-size: 35px;
    }
    .cmnblock {
    padding-bottom: 40px;
    }

    padding-bottom: 30px;
  }

  footer.cta {
    padding-top: 0;
    .cta__btn {
      margin-top: 40px;
    }
  }

}