@import "./reset.css";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

:root {
  --black-font: #333;
  --black-bg: #262626;
  --darkgray: #ACACAC;
  --lightgray: #F9F9F9;
  --blue: #0085FF;
  --lightblue: #F9FCFF;
  --red: #F74949;
  --purple: #6919CF;
  --yellow: #FFC745;
}
* {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-weight: 400;
  font-style: normal;
}

strong {
  font-weight: 700 !important;
}

.font-color-white { color: #fff; }
.font-color-black { color: var(--black-font); }
.font-color-darkgray { color: var(--darkgray); }
.font-color-lightgray { color: var(--lightgray); }
.font-color-blue { color: var(--blue); }
.font-color-red { color: var(--red); }
.font-color-purple { color: var(--purple); }
.font-color-yellow { color: var(--yellow);}

.bg-color-white { background-color: #fff; }
.bg-color-black { background-color: var(--black-bg); }
.bg-color-darkgray { background-color: var(--darkgray); }
.bg-color-lightgray { background-color: var(--lightgray); }
.bg-color-blue { background-color: var(--blue); }
.bg-color-lightblue { background-color: var(--lightblue); }
.bg-color-red { background-color: var(--red); }
.bg-color-purple { background-color: var(--purple); }

header {
  position: fixed;
  width: 100%;
  height: 83px;
  z-index: 9999;
}

header.scrolled {
  height: 68px;
}

header .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,.2);
  z-index: -1;
}

header .container {
  display: flex;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
  justify-content: space-between;
  align-items: center;
}

h1 {
  width: 250px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
}

header.scrolled h1 {
  width: 175px;
  height: 35px;
}

h1 a {
  display: block;
  width: 100%;
  height: 100%;
}

nav ul {
  display: flex;
  gap: 5px;
}

nav ul li a {
  padding: 0 25px;
  /* font-family: 'Noto Sans KR', sans-serif; */
  font-size: 19px;
  /* font-weight: 400; */
}

nav ul li:hover a {
  color: #01aed0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

html.show-menu .overlay {
  display: block;
}

#btn-nav {
  display: none;
  padding: 5px 7px;
  cursor: pointer;
}

#btn-nav span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 1px;
  background: #222;
}

#btn-nav span + span {
  margin-top: 5px;
}

section:not(#visual) {
  padding: 104px 0 80px;
}

section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

section .title-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

section h3.title {
  margin-bottom: 48px;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: -0.05em;
  text-align: center;
  word-break: keep-all;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; 
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  mask-image: radial-gradient(#fff, #000);
}

#visual {
  height: 100vh;
  background: url('../img/visual_bg.jpg') center;
  background-size: cover;
}

@supports (-webkit-touch-callout: none) {
  .selector {
    background-attachment: scroll;
  }
}
  
@supports not (-webkit-touch-callout: none) {
  .selector {
    background-attachment: fixed;
  }
}

#visual .container {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  text-align: inherit;
}

#visual .title {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

#visual .contents {
  font-size: 24px;
  line-height: 32px;
  word-break: keep-all;
}

#visual .contents span {
  display: block;
}

#problem .contents {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}

#problem .contents li {
  display: grid;
  align-content: end;
  padding: 30px 24px;
  aspect-ratio: 680 / 487;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: initial;
}

#problem .contents li:nth-child(1) {
  background-image: url('../img/problem_img_01.jpg');
}

#problem .contents li:nth-child(2) {
  background-image: url('../img/problem_img_02.jpg');
}

#problem .contents li dl dt {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

#problem .contents li dl dd {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

#warning .contents {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}

#warning .contents li {
  position: relative;
  display: grid;
  aspect-ratio: 448 / 851.5;
  max-width: 448px;
  border-radius: 20px;
  text-align: initial;
  overflow: hidden;
}

#warning .contents li:nth-child(1) {
  margin: 0 0 0 auto;
}

#warning .contents li:nth-child(2) {
  margin: 0 auto 0 0;
}

#warning .contents li dl {
  display: grid;
  align-content: center;
  height: 96px;
  padding: 0 14px;
  background: #515151;
  z-index: 1;
}

#warning .contents li dl dt {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

#warning .contents li dl dd {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.1em;
  word-break: keep-all;
}

#warning .contents li .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

#warning .contents li:nth-child(1) .img {
  background-image: url('../img/warning_img_01.jpg');
}

#warning .contents li:nth-child(2) .img {
  background-image: url('../img/warning_img_02.jpg');
  background-position: 0 30px;
}

#merit .container {
  max-width: 912px;
}

#merit .contents {
  list-style: none;
  counter-reset: item;
  padding: 0 32px;
  border-radius: 20px;
  text-align: initial;
  overflow: hidden;
}

#merit .contents li {
  position: relative;
  counter-increment: item;
  padding: 32px 0 32px 36px;
  border-bottom: 1px dashed #333;
}


#merit .contents li:last-child {
  border: 0;
}

#merit .contents li:before {
  content: counter(item);
  display: inline-block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  margin: 2px;
  padding: 4px 0;
  font-size: 16px;
  line-height: 16px;
  color: white;
  text-align: center;
  background: var(--blue);
  border-radius: 100%;
}

#merit .contents li .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

#merit .contents li .desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

#merit .contents li .desc span {
  display: block;
}

#youtube .contents {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1136px;
  margin: 0 auto;
}

#btn-youtube {
  display: block;
  max-width: 448px;
  margin: 60px auto 0;
  padding: 12px 24px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.025em;
}

#btn-youtube span {
  padding-right: 32px;
  background-image: url('../img/icon_arrow_01.svg');
  background-position: right center;
  background-repeat: no-repeat;
}

#faq .container {
  max-width: 912px;
}

#faq .contents li {
  position: relative;
  margin-bottom: 16px;
  border-radius: 20px;
  box-shadow: 2px 2px 8px 0px #0000001A;
  text-align: initial;
}

#faq .contents li:last-child {
  margin-bottom: 0;
}

#faq .contents li {
  position: relative;
}

#faq .contents li input {
  position: absolute;
}

#faq .contents li label {
  position: relative;
  display: block;
  padding: 32px;
  cursor: pointer;
  z-index: 1;
}

#faq .contents li label span.title {
  max-width: calc(100% - 47px);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.025em;
  color: var(--black-font);
}

#faq .contents li label + input {
  display: none;
}

#faq .contents li .answer {
  position: relative;
  max-height: 0;
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.025em;
  color: var(--black-font);
  overflow: hidden;
  z-index: 2;
}

#faq .contents li input:checked ~ .answer {
  max-height: none;
  margin-top: -16px;
  padding: 0 32px 32px;
}

#faq .contents li input ~ label span.arrow {
  position: absolute;
  display: block;
  top: 32px;
  right: 32px;
  width: 24px;
  height: 24px;
  background-image: url('../img/icon_arrow_02.svg');
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}

#faq .contents li input:checked ~ label span.arrow {
  transform: rotate(180deg);
}

#faq .video-container {
  margin-top: 48px;
}

#branch .container {
  display: flex;
  overflow: hidden;
}

#branch .left {
  text-align: initial;
}

#branch .title {
  margin-bottom: 32px;
  text-align: initial;
}

#branch .desc {
  min-width: 349px;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

#branch .desc span {
  display: block;
}

#branch .right {
  width: 100%;
  margin-left: 8.5%;
}

#branch .contents {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

#branch .contents li {
  position: relative;
  padding: 32px;
  border-radius: 20px;
  background-color: var(--lightgray);
  cursor: pointer;
}

#branch .contents li.preparing {
  padding: 51px 32px;
  cursor: auto;
}

#branch .contents li:before { 
  content: ' ';
  display: block;
  position: absolute;
  top: 38px;
  right: 32px;
  width: 24px;
  height: 24px;
}

#branch .contents li:not(.preparing):before {
  background-color: #333;
  mask-image: url('../img/icon_arrow_02.svg');
  mask-size: cover;
  transform: rotate(-90deg);
}

#branch .contents li:not(.preparing):hover,
#branch .contents li:not(.preparing):focus,
#branch .contents li:not(.preparing):hover:before,
#branch .contents li:not(.preparing):focus:before {
  background-color: #fff;
}

#branch .contents li.seoul:hover,
#branch .contents li.seoul:focus {
  background: var(--blue);
}

#branch .contents li.gyonggi:hover,
#branch .contents li.gyonggi:focus {
  background: var(--purple);
}

#branch .contents li p {
  display: flex;
  align-items: center;
  text-align: initial;
}

#branch .contents li p.name label {
  display: inline-block;
  margin-right: 4px;
  padding: 8px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.025em;
  border-radius: 5px;
  word-break: keep-all;
}

#branch .contents li.seoul p.name label {
  background: #0085FF0D;
  color: var(--blue);
}

#branch .contents li.gyonggi p.name label {
  background: #6919CF0D;
  color: var(--purple);
}

#branch .contents li.preparing p.name label {
  border: 1px solid var(--red);
  color: var(--red);
}

#branch .contents li:not(.preparing):hover p.name label,
#branch .contents li:not(.preparing):focus p.name label {
  background: #FFFFFFF2;
}

#branch .contents li p.name strong {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.025em;
  color: var(--black-font);
  word-break: keep-all;
}

#branch .contents li.preparing p.name strong {
  color: var(--darkgray);
}

#branch .contents li:not(.preparing):hover p.name strong,
#branch .contents li:not(.preparing):hover p.address,
#branch .contents li:not(.preparing):focus p.name strong,
#branch .contents li:not(.preparing):focus p.address {
  color: #fff;
}

#branch .contents li p.address {
  margin-top: 16px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.025em;
  color: var(--darkgray);
}

#cost .title {
  margin-bottom: 67px;
}

#cost .contents {
  position: relative;
  max-width: 912px;
  display: grid;
  grid-template-columns: 232px 1fr 1fr;
  margin: 0 auto;
  gap: 16px;
  border-bottom: 1px dashed #333;
}

#cost .contents:before,
#cost .contents:after {
  content: ' ';
  position: absolute;
  left: 0;
  top: 185px;
  width: 100%;
  height: 96px;
  border: 3px solid var(--blue);
}

#cost .contents:before {
  top: 186.5px;
}

#cost .contents:after {
  top: 279.5px;
}

#cost .contents.no-corporation {
  grid-template-columns: 215px 1fr;
}

#cost .contents dl {
  border-radius: 20px 20px 0 0;
  color: var(--black-font);
  height: 100%;
}

#cost .contents dl.individual { 
  background-color: #EDF6FF;
}

#cost .contents dl.corporation {
  background-color: #F2F1FD;
}

#cost .contents dl dt {
  padding: 32px 0 27px;
  font-size: 24px;
  font-weight: 700 !important;
  line-height: 30px;
  letter-spacing: -0.025em;
}

#cost .contents dl.period dt {
  text-indent: -9999px;
  overflow: hidden;
}

#cost .contents dl.individual dt {
  color: var(--blue);
}

#cost .contents dl.corporation dt {
  color: var(--purple);
}

#cost .contents dl dd li {
  padding: 32px 0;
}

#cost .contents .period-list li {
  position: relative;
  padding-left: 17px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.025em;
  text-align: initial;
}

#cost .contents .period-list li .recommend {
  position: absolute;
  display: block;
  top: -27px;
  left: -44px;
  width: 72px;
  height: 72px;
  text-indent: -9999px;
  background: url('../img/cost_img_recommend_individual.png') no-repeat;
  background-size: cover;
  z-index: 1;
}

#cost .contents .price-list li p.period {
  display: none;
}

#cost .contents .price-list li p.price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

#cost .contents .price-list li p.price .amount {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.025em;
}

#cost .contents .price-list li p.price .note {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.025em;
  color: var(--darkgray);
}

#contact .container {
  max-width: 912px;
}

#contact .title {
  margin-bottom: 32px;
}

#contact .desc {
  font-size: 24px;
  
  line-height: 32px;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}

#contact .contents {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1136px;
  margin: 0 auto;
  text-align: initial;
}

#contact .contents li {
  padding: 32px;
  border: 2px solid #333;
  border-radius: 20px;
  cursor: pointer;
  background-size: 48px;
  background-position: 32px 32px;
  background-repeat: no-repeat;
}

#contact .contents li:nth-child(1) {
  background-image: url('../img/contact_img_01.png');
}

#contact .contents li:nth-child(2) {
  background-image: url('../img/contact_img_02.png');
}

#contact .contents li:nth-child(3) {
  background-image: url('../img/contact_img_03.png');
}

#contact .contents li:nth-child(4) {
  background-image: url('../img/contact_img_04.png');
}

#contact .contents li:nth-child(1):hover,
#contact .contents li:nth-child(1):focus {
  background-image: url('../img/contact_img_01_hover.png');
}

#contact .contents li:nth-child(2):hover,
#contact .contents li:nth-child(2):focus {
  background-image: url('../img/contact_img_02_hover.png');
}

#contact .contents li:nth-child(3):hover,
#contact .contents li:nth-child(3):focus {
  background-image: url('../img/contact_img_03_hover.png');
}

#contact .contents li:nth-child(4):hover,
#contact .contents li:nth-child(4):focus {
  background-image: url('../img/contact_img_04_hover.png');
}

#contact .contents li:hover,
#contact .contents li:focus {
  background-color: var(--blue);
  color: #fff;
}

#contact .contents li p {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.025em;
}

#contact .contents li p.point {
  margin: 64px 0 8px;
}

footer {
  background: #222;
}

footer .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 50px 15px;
  text-align: center;
}

footer h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1.8px;
  color: #666;
}

footer ul.info {
  display: grid;
  justify-content: center;
  margin: 36px 0 22px;
  text-align: center;
  overflow: hidden;
}

footer .info > li {
  display: grid;
  justify-content: center;
}

footer .info > li + li {
  margin-top: 15px;
}


footer .info > li > ul {
  display: flex;
}

footer .info > li > ul li + li {
  margin-left: 15px;
}

footer .info dl {
  display: flex;
}

footer .info dl * {
  font-size: 12px;
  color: #999;
}

footer .info dl dd {
  margin-left: 4px;
}

footer .copyright {
  font-size: 13px;
  color: #999;
}

footer .sns {
  display: inline-flex;
  margin-top: 10px;
}

footer .sns li {
  height: 23px;
}

footer .sns li + li {
  margin-left: 5px;
}

footer .sns li.blog {
  width: 37px;
}

footer .sns li.youtube {
  width: 27px;
}

footer .sns li.instagram {
  width: 23px;
}

footer .sns li a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  overflow: hidden;
}

@media(max-width: 1199px) {
  html.show-menu header {
    height: 100%;
    background: none;
  }

  header,
  header .bg,
  header .logo-wrap {
    height: 75px;
  }

  header.scrolled,
  header.scrolled .bg,
  header.scrolled .logo-wrap {
    height: 65px;
  }

  header .logo-wrap { 
    display: grid;
    align-items: center;
  }

  html.show-menu header .logo-wrap {
    position: absolute;
    top: 0;
  }

  h1 {
    width: 224px;
    height: 45px;
  }

  nav {
    position: absolute;
    right: -260px;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #f1f1f1;
    z-index: 1002;
    transition: all ease 0.2s;
  }

  html.show-menu nav {
    right: 0;
    overflow-y: auto;
  }
  
  nav ul {
    display: grid;
    gap: 0;
  }

  nav ul li {
    border-bottom: 1px solid #ddd;
  }

  nav ul li a {
    display: block;
    padding: 10px 40px 10px 20px;
    font-size: 17px;
    line-height: 25px;
    color: #000;
  }

  nav ul li:hover a {
    color: #000;
  }

  #btn-nav {
    display: block;
  }

  html.show-menu #btn-nav {
    display: none;
  }
}

@media(max-width: 1023px) {
  #branch .container {
    display: block;
  }

  #branch .left {
    text-align: center;
  }
  
  #branch .title {
    text-align: center;
  }
  
  #branch .desc {
    margin-bottom: 48px;
    letter-spacing: -0.025em;
  }

  #branch .right {
    margin: 0;
  }

  #cost h3.title {
    margin-bottom: 0;
  }

  #cost .contents {
    max-width: 100%;
    display: block;
    border: none;
  }

  #cost .contents:before,
  #cost .contents:after {
    display: none;
  }

  #cost .contents dl {
    background: none !important;
  }

  #cost .contents dl.period {
    display: none;
  }

  #cost .contents dl dt {
    padding: 0;
    font-weight: 400 !important;
  }

  #cost .contents dl.individual dt {
    color: var(--black-font);
  }

  #cost .contents dl.corporation dt {
    color: var(--black-font);
  }

  #cost .contents > li {
    height: fit-content;
    margin-top: 32px;
  }

  #cost .contents > li dt {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.025em;
  }

  #cost .contents .price-list li {
    margin-top: 8px;
    padding: 14px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: 72px 72px;
    background-position: top 4px right 8px;
  }

  #cost .contents .individual .price-list li {
    background-color: #EDF6FF;
  }
  
  #cost .contents .corporation .price-list li {
    background-color: #F2F1FD;
  }

  #cost .contents .individual .price-list li.recommend {
    background-image: url('../img/cost_img_recommend_individual.png');
  }


  #cost .contents .corporation .price-list li.recommend {
    background-image: url('../img/cost_img_recommend_corporation.png');
    
  }

  #cost .contents .price-list li.not-exist {
    display: none;
  }

  #cost .contents .price-list li p {
    text-align: initial;
  }

  #cost .contents .price-list li p.period {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.025em;
  }

  #cost .contents .price-list li p.price {
    display: block;
  }

  #cost .contents .price-list li p.price .amount {
    font-size: 24px;
    line-height: 24px;
    color: var(--blue);
  }

  #cost .contents .price-list li p.price.contact .amount {
    color: var(--darkgray);
  }

  #cost .contents .price-list li p.price .note {
    font-size: 12px;
    line-height: 16px;
    color: var(--darkgray);
  }

  footer .info > li > ul {
    display: block;
  }

  footer .info > li > ul li {
    display: block;
  }

  footer .info > li > ul li + li {
    margin-left: 0;
  }

  footer .info dl {
    display: inline-flex;
  }
}

@media(max-width: 767px) {
  section:not(#visual) {
    padding: 40px 0;
  }
  
  section .container {
    max-width: 100%;
    padding: 0 16px;
  }

  section .title-label {
    margin-bottom: 8px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 16px;
  }

  section h3.title {
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 26px;
  }

  section h3.title span {
    display: block;
  }
  
  #visual .container {
    padding-right: 18%;
  }

  #visual .title {
    font-size: 24px;
    line-height: 30px;
  }

  #visual .contents {
    font-size: 16px;
    line-height: 20px;
  }

  #visual .contents span:not(.newline) {
    display: inline;
  }

  #problem .contents {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  #problem .contents li {
    padding: 16px;
    aspect-ratio: 328 / 206;
  }

  #problem .contents li dl dt {
    font-size: 18px;
    line-height: 22px;
  }
  
  #problem .contents li dl dd {
    font-size: 12px;
    line-height: 16px;
  }

  #warning .contents li dl dt {
    font-size: 12px;
    line-height: 16px;
  }
  
  #warning .contents li {
    width: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }
  
  #warning .contents li dl {
    height: auto;
    align-content: baseline;
    margin-bottom: 16px;
    padding: 0;
    background: none;
  }
  
  #warning .contents li dl dd {
    font-size: 12px;
    line-height: 16px;
  }

  #warning .contents li .img {
    position: initial;
    border-radius: 20px;
    aspect-ratio: 448 / 851.5;
    background-position: 0 !important;
  }

  #merit .contents {
    padding: 8px 16px;
  }

  #merit .contents li {
    padding: 60px 0 24px;
  }

  #merit .contents li:before {
    top: 24px;
    left: 0;
  }

  #merit .contents li .title {
    font-size: 16px;
    line-height: 22px;
  }

  #merit .contents li .desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  #youtube .contents {
    grid-template-columns: 1fr;
  }

  #btn-youtube {
    max-width: auto;
    margin: 32px auto 0;
    padding: 17.5px 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.025em;
  }

  #faq .contents li label {
    padding: 16px;
  }

  #faq .contents li label span.title {
    display: block;
    width: 100%;
    max-width: calc(100% - 40px);
    font-size: 16px;
    line-height: 22px;
  }

  #faq .contents li .answer {
    font-size: 14px;
    line-height: 20px;
  }

  #faq .contents li input:checked ~ .answer {
    max-height: none;
    margin-top: 0;
    padding: 0 16px 16px;
  }

  #faq .contents li input ~ label span.arrow {
    top: 0;
    right: 16px;
    width: 18px;
    height: 100%;
    background-size: 18px;
    background-position: center;
  }

  #faq .video-container {
    margin-top: 24px;
  }
  
  #branch .title {
    margin-bottom: 16px;
  } 
  
  #branch .desc {
    margin-bottom: 32px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.025em;
  }

  #branch .desc span {
    display: inline;
  }

  #branch .contents li {
    padding: 14px;
  }

  #branch .contents li:before {
    display: none;
    top: 50%;
    right: 14px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }

  #branch .contents li.preparing {
    padding: 26px 14px;
  }

  #branch .contents li p.name label {
    padding: 4px;
    font-size: 12px;
    line-height: 14px;
  }

  #branch .contents li p.name strong {
    font-size: 16px;
    line-height: 22px;
  }

  #branch .contents li p.address {
    margin-top: 8px;
    font-size: 12px;
    line-height: 16px;
  }

  #contact .title {
    margin-bottom: 16px;
  }

  #contact .desc {
    font-size: 12px;
    line-height: 16px;
  }

  #contact .contents {
    grid-template-columns: 1fr;
  }

  #contact .contents li {
    padding: 16px;
    background-size: 24px;
    background-position: calc(50% - 228px/2 + 12px) center;
  }

  #contact .contents li p {
    max-width: 228px;
    margin: 0 auto;
    padding-left: 36px;
    font-size: 14px;
    line-height: 16px;
  }

  #contact .contents li p.point {
    margin: 0 auto 8px;
  }
}