@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #FFFEF2;
}
body.sub {
  background-color: #FFFFFA;
}

.ani.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

/* JSでこのクラスがついた瞬間にアニメーションが動く */
.ani.fadeIn.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

img {
  display: block;
  width: 100%;
}

.txt {
  font-size: 17px;
  line-height: 2;
}
@media print, screen and (max-width: 992px) {
  .txt {
    font-size: 16px;
  }
}

.bold {
  font-weight: 700;
}

.orange {
  color: #FF9200;
}

.txt-s {
  font-size: 15px;
}

.txt-22 {
  font-size: clamp(18px, 1.375vw, 22px);
}

.txt-26 {
  font-size: clamp(22px, 1.625vw, 26px);
}
@media only screen and (max-width: 640px) {
  .txt-26 {
    font-size: 20px;
  }
}

.txt-30 {
  font-size: clamp(24px, 1.875vw, 30px);
}
@media only screen and (max-width: 640px) {
  .txt-30 {
    font-size: 21px;
  }
}

.txt-32 {
  font-size: clamp(25px, 2vw, 32px);
}

.h4-ttl-wrap {
  margin-top: 70px;
}
.h4-ttl-wrap h4 {
  font-size: clamp(25px, 2vw, 32px);
  font-weight: bold;
  text-align: center;
}
.h4-ttl-wrap .bar {
  width: 90px;
  height: 5px;
  background-color: #FF9200;
  margin: auto;
  margin-top: 20px;
}

@media only screen and (max-width: 640px) {
  .sp-hide {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

a {
  display: block;
}
a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.7;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.top-heading .ttl-en {
  font-size: clamp(40px, 4.1538461538vw, 54px);
}
.top-heading .ttl-jp {
  font-size: clamp(22px, 2.1538461538vw, 28px);
}
.top-heading .bar {
  width: 30px;
  height: 6px;
  background-color: #FF9200;
}
.top-heading .bar2 {
  width: 1px;
  height: 20px;
  background-color: #333333;
}

.btn-wrap a {
  padding: 10px 0;
  width: 100%;
  max-width: 333px;
  border: 1px solid #707070;
  text-align: center;
  font-size: 17px;
}
.btn-wrap a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #707070;
  color: #FFFFFF;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
}
.header.is-scrolled {
  background: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header-container {
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-logo a {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  color: #555555;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.header-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.header-menu li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header-menu li a:hover {
  color: #FF8F8F;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(9.5px) rotate(45deg);
          transform: translateY(9.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-9.5px) rotate(-45deg);
          transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: 0;
  width: 300px;
  height: calc(100vh - 80px);
  background: #ffffff;
  -webkit-box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 1;
  visibility: visible;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-menu nav ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.mobile-menu nav ul li {
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu nav ul li a {
  display: block;
  padding: 20px 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  color: #555555;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.mobile-menu nav ul li a:hover {
  background: #f9f9f9;
  color: #FF8F8F;
}

.mobile-menu-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1024px) {
  .header-menu li a {
    font-size: 13px;
  }
  .header-menu {
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  .header {
    height: 60px;
  }
  .header-container {
    padding: 0 20px;
  }
  .header-logo a {
    font-size: 24px;
  }
  .header-nav {
    display: none;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .mobile-menu-overlay {
    top: 60px;
  }
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 992px) {
  footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .inner .abst {
  width: 40%;
  padding: 20px 20px 20px 10vw;
  background-color: #6B583D;
  color: #FFFFFF;
  font-size: 17px;
}
@media print, screen and (max-width: 992px) {
  footer .inner .abst {
    width: 100%;
    font-size: 16px;
  }
}
footer .inner .abst a {
  max-width: 250px;
}
footer .inner .footer-menu {
  width: 60%;
  background-color: #FFFFFF;
  padding-bottom: 30px;
}
@media print, screen and (max-width: 992px) {
  footer .inner .footer-menu {
    background-color: #6B583D;
    text-align: center;
    width: 100%;
    color: #FFFFFF;
  }
}
footer .inner .footer-menu ul {
  padding: 20px 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
  max-width: 750px;
}
@media print, screen and (max-width: 992px) {
  footer .inner .footer-menu ul {
    display: none;
    width: 100%;
  }
}
footer .inner .footer-menu ul li {
  margin-top: 15px;
  font-size: 16px;
}
footer .inner .footer-menu ul li.col1 {
  width: 100%;
}
footer .inner .footer-menu small {
  padding-left: 20px;
}

.line-content {
  background-color: #FFFFFF;
  padding: 30px 0 100px;
}
.line-content .container {
  max-width: 1000px;
  margin: 0px auto;
  color: #333333;
}
.line-content .container h3 {
  font-size: clamp(25px, 2.25vw, 36px);
}
.line-content .container .sub-txt {
  font-size: clamp(17px, 1.25vw, 20px);
}
.line-content .container .bar {
  width: 100px;
  height: 2px;
  background-color: #333333;
}
.line-content .container .txt {
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
}
.line-content .container .line-btn-wrap {
  max-width: 800px;
  margin: 40px auto;
  border-radius: 100px;
  border: 2px solid #333333;
  padding: 20px 0 10px;
  text-align: center;
}
.line-content .container .line-btn-wrap .desc {
  display: block;
  max-width: 280px;
  margin: auto;
  text-align: left;
  padding: 3px 15px;
  border-left: 6px solid #00B900;
  font-size: 15px;
  font-weight: bold;
}
.line-content .container .line-btn-wrap a {
  border: 1px solid #333333;
  font-size: 15px;
  max-width: 280px;
  padding: 10px 0;
  margin: 10px auto;
}

.faq-container .faq-answer {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.faq-container .faq-item.active .faq-answer {
  /* ここで大きさを指定。autoだとアニメーションしないため数値指定が必要 */
  max-height: unset;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-container .faq-question {
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.faq-container .faq-item {
  margin-bottom: 10px;
}
.faq-container .faq-item .faq-question {
  padding: 20px 40px 20px 60px;
  font-size: 20px;
  color: #FFFFFF;
  background-color: #6B583D;
  position: relative;
}
@media print, screen and (max-width: 992px) {
  .faq-container .faq-item .faq-question {
    padding: 15px 30px 15px 45px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  .faq-container .faq-item .faq-question {
    font-size: 16px;
  }
}
.faq-container .faq-item .faq-question span {
  width: 100%;
  display: inline-block;
}
.faq-container .faq-item .faq-question::before {
  position: absolute;
  content: "Q";
  margin-right: 15px;
  font-size: 22px;
  left: 25px;
  margin-top: 2px;
}
.faq-container .faq-item .faq-question::after {
  position: absolute;
  content: "";
  right: 20px;
  margin-top: 4px;
  width: 13px;
  height: 13px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  font-size: 22px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media only screen and (max-width: 640px) {
  .faq-container .faq-item .faq-question::after {
    right: 10px;
  }
}
.faq-container .faq-item.active .faq-answer {
  padding: 20px 20px 20px 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media print, screen and (max-width: 992px) {
  .faq-container .faq-item.active .faq-answer {
    padding: 15px 15px 15px 50px;
  }
}
.faq-container .faq-item.active .faq-question:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-container .faq-item .faq-answer {
  padding: 0px 20px 0px 60px;
  font-size: 17px;
  color: #333333;
  position: relative;
}
@media print, screen and (max-width: 992px) {
  .faq-container .faq-item .faq-answer {
    padding: 0px 15px 0px 50px;
    font-size: 16px;
  }
}
.faq-container .faq-item .faq-answer::before {
  position: absolute;
  content: "A";
  margin-right: 15px;
  font-size: 20px;
  left: 25px;
  margin-top: 0px;
}

.top .mv {
  aspect-ratio: 7/4;
  background-image: url(../img/top/mv-img.png);
  background-size: cover;
  background-position: center;
  max-height: 100vh;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .top .mv {
    aspect-ratio: 1/1;
  }
}
.top .mv .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-bottom: 30px;
  position: relative;
}
.top .mv .inner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 640px) {
  .top .mv .inner .content {
    width: 90%;
    text-align: center;
  }
}
.top .mv .inner .lead {
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(22px, 2.1538461538vw, 28px);
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.568627451);
}
.top .mv .inner .arrow {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top .mv .scroll {
  position: absolute;
  right: 15px;
  bottom: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 640px) {
  .top .mv .scroll {
    right: 5px;
  }
}
.top .mv .scroll-txt {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(22px, 2.1538461538vw, 28px);
}
.top .mv .scroll .bar {
  width: 1px;
  height: 100px;
  background-color: #fff;
}
.top .info-sec .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.top .info-sec .txt-wrap {
  width: 70%;
  padding-left: 5vw;
}
@media print, screen and (max-width: 992px) {
  .top .info-sec .txt-wrap {
    width: 90%;
  }
}
@media only screen and (max-width: 640px) {
  .top .info-sec .txt-wrap {
    width: 100%;
  }
}
.top .info-sec .txt-wrap > div {
  width: 37vw;
}
@media print, screen and (max-width: 1300px) {
  .top .info-sec .txt-wrap > div {
    width: 48vw;
  }
}
@media print, screen and (max-width: 992px) {
  .top .info-sec .txt-wrap > div {
    width: 100%;
  }
}
.top .info-sec .txt-wrap .txt {
  margin-top: 30px;
}
@media print, screen and (max-width: 1300px) {
  .top .info-sec .txt-wrap .txt br {
    display: none;
  }
}
.top .info-sec .txt-wrap .btn-wrap {
  margin-top: 20px;
}
.top .info-sec .img-wrap {
  position: absolute;
  height: 100%;
  right: 0;
}
@media print, screen and (max-width: 992px) {
  .top .info-sec .img-wrap {
    position: relative;
    width: 95%;
    margin-left: 5%;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
@media only screen and (max-width: 640px) {
  .top .info-sec .img-wrap {
    width: 90%;
  }
}
.top .info-sec .img-wrap img {
  height: 115%;
  width: 55vw;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 1300px) {
  .top .info-sec .img-wrap img {
    width: 45vw;
  }
}
@media print, screen and (max-width: 992px) {
  .top .info-sec .img-wrap img {
    height: auto;
    width: 60%;
  }
}
@media only screen and (max-width: 640px) {
  .top .info-sec .img-wrap img {
    width: 100%;
  }
}
.top .top-h3-wrap {
  font-size: clamp(22px, 1.625vw, 26px);
  padding-left: 15px;
  border-left: 1px solid #FFFFFF;
}
.top .top-h2-wrap {
  font-size: clamp(22px, 1.625vw, 26px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.top .top-h2-wrap h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top .top-h2-wrap .bar {
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #FF9200;
}
.top #sec01 {
  padding-top: 40px;
}
@media only screen and (max-width: 640px) {
  .top #sec01 .txt-wrap {
    width: 95%;
  }
}
.top #sec01 .deco-bar {
  width: 100%;
  height: 1px;
  background-color: #FF9200;
  width: 35vw;
  margin-top: 30px;
}
@media print, screen and (max-width: 992px) {
  .top #sec01 .deco-bar {
    width: 100%;
  }
}
.top #sec02 {
  margin-top: 50px;
}
@media print, screen and (max-width: 992px) {
  .top #sec02 {
    margin-top: -50px;
  }
}
.top #sec02 .txt-wrap {
  background-color: #6B583D;
  padding-top: 150px;
  padding-bottom: 50px;
  color: #FFFFFF;
}
@media print, screen and (max-width: 992px) {
  .top #sec02 .txt-wrap {
    padding-right: 5vw;
  }
}
.top #sec02 .txt-wrap .txt {
  padding-left: 15px;
}
@media print, screen and (max-width: 992px) {
  .top #sec02 .img-wrap {
    margin-top: -30px;
  }
}
.top #sec02 .img-wrap img {
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  height: 95%;
}
@media print, screen and (max-width: 992px) {
  .top #sec02 .img-wrap img {
    -webkit-transform: unset;
            transform: unset;
  }
}
.top #sec02 .btn-wrap a {
  border-color: #FFFFFF;
}
.top #sec02 .btn-wrap a:hover {
  background-color: #FFFFFF;
  color: #6B583D;
}
.top #sec03 {
  margin-left: 4vw;
  background-color: #FFFFFF;
  padding: 15px 0 15px 15px;
}
@media print, screen and (max-width: 992px) {
  .top #sec03 {
    margin-top: -30px;
    margin-left: 6vw;
  }
}
@media only screen and (max-width: 640px) {
  .top #sec03 {
    margin-left: 0;
    padding-left: 0;
  }
}
.top #sec03 .deco-txt {
  position: absolute;
  left: 0;
  z-index: -1;
}
.top #sec03 .txt-wrap {
  padding-top: 150px;
  padding-left: 0;
}
@media only screen and (max-width: 640px) {
  .top #sec03 .txt-wrap {
    padding-top: 80px;
  }
}
.top #sec03 .txt-wrap .top-h3-wrap {
  border-color: #333333;
}
@media only screen and (max-width: 640px) {
  .top #sec03 .img-wrap {
    margin-left: 0;
  }
}
.top #sec03 .img-wrap img {
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  height: 95%;
}
@media print, screen and (max-width: 992px) {
  .top #sec03 .img-wrap img {
    -webkit-transform: unset;
            transform: unset;
  }
}
.top #sec03 .info-sec .txt-wrap {
  padding-left: 1vw;
}
.top .reason-wrap {
  max-width: 1500px;
  width: 90%;
  margin: 130px auto 50px;
}
.top .reason-wrap .reason-content {
  margin-top: 40px;
}
.top .reason-wrap .item {
  width: 25%;
  padding: 15px;
}
@media print, screen and (max-width: 992px) {
  .top .reason-wrap .item {
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .top .reason-wrap .item {
    width: 100%;
  }
}
.top .reason-wrap .item:nth-child(1), .top .reason-wrap .item:nth-child(3) {
  background-color: #FFFEF2;
  color: #333333;
  border-color: #333333;
}
@media print, screen and (max-width: 992px) {
  .top .reason-wrap .item:nth-child(3) {
    background-color: #6B583D;
    color: #FFFFFF;
    border-color: #FFFFFF;
  }
}
@media only screen and (max-width: 640px) {
  .top .reason-wrap .item:nth-child(3) {
    background-color: #FFFEF2;
    color: #333333;
    border-color: #333333;
  }
}
.top .reason-wrap .item:nth-child(2), .top .reason-wrap .item:nth-child(4) {
  background-color: #6B583D;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
@media print, screen and (max-width: 992px) {
  .top .reason-wrap .item:nth-child(4) {
    background-color: #FFFEF2;
    color: #333333;
    border-color: #333333;
  }
}
@media only screen and (max-width: 640px) {
  .top .reason-wrap .item:nth-child(4) {
    background-color: #6B583D;
    color: #FFFFFF;
    border-color: #FFFFFF;
  }
}
.top .reason-wrap .item .point-ttl {
  padding: 5px 10px;
  border-left: 1px solid;
}
.top .reason-wrap .item .point-ttl .point {
  font-size: clamp(22px, 1.625vw, 26px);
  letter-spacing: 0.1em;
  line-height: 1;
}
.top .reason-wrap .item .point-ttl .point span {
  font-size: clamp(35px, 2.6875vw, 43px);
  display: inline-block;
  margin-left: 5px;
}
.top .reason-wrap .item .point-ttl .sub-txt {
  font-size: clamp(17px, 1.25vw, 20px);
  margin-top: 15px;
}
.top .reason-wrap .item .txt {
  padding-left: 10px;
  margin-top: 25px;
}
.top #faq {
  padding: 50px 0;
  background-color: #FFFFFF;
}
.top #faq .inner {
  gap: 50px;
}
@media print, screen and (max-width: 1300px) {
  .top #faq .inner {
    gap: 20px;
  }
}
@media print, screen and (max-width: 992px) {
  .top #faq .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top #faq .top-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 30%;
}
@media print, screen and (max-width: 992px) {
  .top #faq .top-heading {
    max-width: 400px;
    width: 100%;
  }
}
.top #faq .faq-container {
  width: 65%;
}
@media print, screen and (max-width: 992px) {
  .top #faq .faq-container {
    width: 100%;
  }
}

.subpage .txt {
  font-size: 17px;
}
@media only screen and (max-width: 640px) {
  .subpage .txt {
    font-size: 16px;
  }
}
.subpage .txt a {
  display: inline-block;
  text-decoration: underline;
  margin-left: 5px;
  margin-right: 5px;
}
.subpage .subpage-mv {
  background-image: url(../img/common/sub-mv.png);
  background-size: cover;
  background-position: center;
  min-height: 350px;
  width: 100%;
  height: 40vh;
}
@media only screen and (max-width: 640px) {
  .subpage .subpage-mv {
    height: 200px;
    min-height: unset;
  }
}
.subpage .subpage-mv .inner {
  padding-top: 50px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subpage .subpage-mv .inner .flex {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.subpage .subpage-mv .inner .flex h1 {
  font-size: clamp(28px, 2.3125vw, 37px);
  color: #FFFFFF;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5019607843);
}
.subpage .subpage-mv .inner .flex .deco {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 30%;
}
@media only screen and (max-width: 640px) {
  .subpage .subpage-mv .inner .flex .deco {
    display: none;
  }
}
.subpage .subpage-mv .inner .flex .deco svg {
  width: 100%;
}
.subpage .bread-wrap {
  margin: 30px 0;
}
.subpage .bread-wrap .bread a, .subpage .bread-wrap .bread span {
  display: inline-block;
  font-size: 16px;
}
.subpage .bread-wrap .bread span {
  margin: 0 0 0 10px;
}
.subpage #subpage-lead {
  margin: 100px auto;
}
@media print, screen and (max-width: 992px) {
  .subpage #subpage-lead {
    margin: 50px auto;
  }
}
.subpage #subpage-lead .content {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.subpage #subpage-lead .content .inner {
  padding: 40px 10%;
  border-radius: 20px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 17px rgba(0, 0, 0, 0.2117647059);
          box-shadow: 0 3px 17px rgba(0, 0, 0, 0.2117647059);
  z-index: 0;
}
@media print, screen and (max-width: 992px) {
  .subpage #subpage-lead .content .inner {
    padding: 20px 40px;
  }
}
.subpage #subpage-lead .content h3 {
  border-left: 11px solid #FF9200;
  font-size: clamp(22px, 1.625vw, 26px);
  padding: 5px 0 5px 15px;
  font-weight: 500;
}
.subpage #subpage-lead .content .txt {
  margin-top: 20px;
  font-size: 14px;
}
.subpage #subpage-lead .content::before {
  content: "";
  position: absolute;
  width: 13%;
  aspect-ratio: 10/8.5;
  background-color: #6B583D;
  z-index: -1;
  margin-left: -8%;
  margin-top: -30px;
}
@media only screen and (max-width: 640px) {
  .subpage #subpage-lead .content::before {
    width: 150px;
  }
}
.subpage #subpage-lead .content::after {
  content: "";
  position: absolute;
  width: 20%;
  aspect-ratio: 10/7;
  background-color: #6B583D;
  z-index: -1;
  right: 0;
  bottom: 0;
  margin-right: -8%;
  margin-bottom: -40px;
}
@media only screen and (max-width: 640px) {
  .subpage #subpage-lead .content::after {
    width: 170px;
  }
}
.subpage section {
  padding: 50px 0;
}
.subpage .h2-wrap {
  font-weight: 700;
  margin-bottom: 20px;
}
.subpage .h2-wrap .jp-ttl, .subpage .h2-wrap .en-ttl {
  padding-left: 10%;
}
.subpage .h2-wrap .jp-ttl {
  font-size: 15px;
}
.subpage .h2-wrap .en-ttl {
  font-size: clamp(28px, 2.3125vw, 37px);
}
.subpage .h2-wrap .bar {
  margin-top: 10px;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#FF9200), color-stop(25%, #FF9200), color-stop(25%, #6B583D), to(#6B583D));
  background: linear-gradient(to right, #FF9200 0%, #FF9200 25%, #6B583D 25%, #6B583D 100%);
  background-repeat: no-repeat;
}
.subpage .h3-wrap {
  padding-bottom: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 650px;
  border-bottom: 1px solid #333333;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 992px) {
  .subpage .h3-wrap {
    min-width: unset;
  }
}
.subpage .h3-wrap h3 {
  padding-left: 20px;
  border-left: 6px solid #FF9200;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: bold;
}
@media print, screen and (max-width: 992px) {
  .subpage .h3-wrap h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 640px) {
  .subpage .h3-wrap h3 {
    font-size: 20px;
  }
}
.subpage .label-content .item {
  background-color: #FFFFFF;
  border: 5px solid #FFEBB9;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  margin-bottom: 30px;
}
.subpage .label-content .item .item-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 640px) {
  .subpage .label-content .item .item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.subpage .label-content .item .item-inner .bold {
  display: block;
  height: 100%;
  font-size: clamp(22px, 1.625vw, 26px);
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 992px) {
  .subpage .label-content .item .item-inner .bold {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .subpage .label-content .item .item-inner .bold {
    text-align: center;
    width: 100%;
  }
}
.subpage .label-content .item .item-inner .bold, .subpage .label-content .item .item-inner .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.subpage .label-content .item .item-inner span {
  display: block;
  padding: 20px 30px;
}
@media print, screen and (max-width: 992px) {
  .subpage .label-content .item .item-inner span {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 640px) {
  .subpage .label-content .item .item-inner span {
    width: 100%;
  }
}
.subpage .label-content .item .item-inner .txt {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 2;
  border-left: 5px solid #FFEBB9;
}
@media only screen and (max-width: 640px) {
  .subpage .label-content .item .item-inner .txt {
    border-left: none;
    border-top: 5px solid #FFEBB9;
  }
}
.subpage .label-content .item .item-inner .bar {
  display: block;
  background-color: #FFEBB9;
  width: 5px;
  height: 100%;
}
.subpage .col3 {
  gap: 2%;
}
@media print, screen and (max-width: 992px) {
  .subpage .col3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin: auto;
  }
}
.subpage .col3 li {
  width: 32%;
  margin-bottom: 2%;
}
@media print, screen and (max-width: 992px) {
  .subpage .col3 li {
    width: 100%;
  }
}
.subpage .col4 {
  gap: 1%;
}
@media print, screen and (max-width: 992px) {
  .subpage .col4 {
    max-width: 700px;
    margin: auto;
  }
}
@media only screen and (max-width: 640px) {
  .subpage .col4 {
    max-width: 400px;
  }
}
.subpage .col4 .item {
  width: 24%;
}
@media print, screen and (max-width: 992px) {
  .subpage .col4 .item {
    width: 49%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .subpage .col4 .item {
    width: 100%;
  }
}
.subpage .col2 {
  gap: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 992px) {
  .subpage .col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.subpage .col2 .txt-wrap {
  width: 35%;
}
@media print, screen and (max-width: 992px) {
  .subpage .col2 .txt-wrap {
    width: 100%;
    max-width: 500px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.subpage .col2 .img-wrap {
  width: 60%;
}
@media print, screen and (max-width: 992px) {
  .subpage .col2 .img-wrap {
    width: 100%;
    max-width: 500px;
  }
}
.subpage .w-bg-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1843137255);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1843137255);
  padding: 30px 50px;
  margin-top: 20px;
}
@media print, screen and (max-width: 992px) {
  .subpage .w-bg-content {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 640px) {
  .subpage .w-bg-content {
    padding: 20px 15px;
  }
}
.subpage .w-bg-content .txt-32 {
  margin-bottom: 20px;
  font-weight: bold;
}
.subpage .w-bg-content .icon-txt .icon-wrap {
  width: 80px;
}
@media print, screen and (max-width: 992px) {
  .subpage .w-bg-content .icon-txt .icon-wrap {
    width: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .subpage .w-bg-content .icon-txt .icon-wrap {
    width: 40px;
  }
}
.subpage .w-bg-content .icon-txt .txt, .subpage .w-bg-content .icon-txt .txt-wrap {
  width: calc(100% - 100px);
}
@media print, screen and (max-width: 992px) {
  .subpage .w-bg-content .icon-txt .txt, .subpage .w-bg-content .icon-txt .txt-wrap {
    width: calc(100% - 55px);
  }
}
.subpage .w-bg-content .icon-txt.svg {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.subpage .w-bg-content .icon-txt.svg .icon-wrap {
  width: 100px;
}
.subpage .w-bg-content .icon-txt.svg .txt, .subpage .w-bg-content .icon-txt.svg .txt-wrap {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 640px) {
  .subpage .w-bg-content .icon-txt.svg.licon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.subpage .w-bg-content .icon-txt.svg.licon .txt {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .subpage .w-bg-content .icon-txt.svg.licon .txt-wrap, .subpage .w-bg-content .icon-txt.svg.licon .icon-wrap {
    width: 100%;
  }
}
.subpage .w-bg-content .icon-txt .txt-wrap .heading {
  color: #FF9200;
  font-size: clamp(22px, 1.625vw, 26px);
}
.subpage .w-bg-content .dotted-bar {
  margin: 15px 0;
}
.subpage .w-bg-content .dotted-bar svg {
  width: 100%;
}
.subpage .detail-item {
  margin-top: 40px;
}
.subpage .detail-item > .txt {
  padding-left: 30px;
}
@media only screen and (max-width: 640px) {
  .subpage .detail-item > .txt {
    padding-left: 0;
  }
}

.about .stem-sec1 {
  padding-top: 50px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, transparent), color-stop(15%, #FFECBE), to(#FFECBE));
  background: linear-gradient(to right, transparent 0%, transparent 15%, #FFECBE 15%, #FFECBE 100%);
}
.about .stem-sec1 .ttl {
  padding-left: 5%;
}
.about .stem-sec1 .ttl h5 {
  font-size: clamp(40px, 4.0625vw, 65px);
  font-weight: 700;
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .about .stem-sec1 .ttl h5 {
    font-size: 30px;
  }
}
.about .stem-sec1 .content-wrap .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 992px) {
  .about .stem-sec1 .content-wrap .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.about .stem-sec1 .content-wrap .txt {
  font-size: 15px;
  line-height: 2.5;
}
@media print, screen and (max-width: 992px) {
  .about .stem-sec1 .content-wrap .txt {
    line-height: 2;
  }
}
.about .stem-sec1 .content-wrap .txt-wrap {
  width: 55vw;
  padding: 100px 7% 150px 5%;
  position: relative;
  margin-top: 70px;
  background-color: rgba(254, 178, 0, 0.2196078431);
}
@media print, screen and (max-width: 992px) {
  .about .stem-sec1 .content-wrap .txt-wrap {
    width: 100%;
    padding: 60px 5% 80px;
  }
}
.about .stem-sec1 .content-wrap .txt-wrap .ttl {
  font-size: clamp(22px, 1.625vw, 26px);
  padding-left: 0;
  font-weight: 700;
  margin-bottom: 40px;
}
.about .stem-sec1 .content-wrap .img-wrap {
  width: 42vw;
}
@media print, screen and (max-width: 992px) {
  .about .stem-sec1 .content-wrap .img-wrap {
    width: 100%;
    max-width: 700px;
  }
}
.about .stem-sec1 .content-wrap .img-wrap img {
  position: relative;
  width: 110%;
  margin-left: -10%;
}
@media print, screen and (max-width: 992px) {
  .about .stem-sec1 .content-wrap .img-wrap img {
    width: 100%;
    margin: auto;
    margin-top: -50px;
  }
}
.about .stem-sec1 .space-content {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
@media print, screen and (max-width: 1300px) {
  .about .stem-sec1 .space-content {
    margin-top: -60px;
  }
}
.about .stem-sec1 .space-content .label-content {
  width: 50vw;
  padding-left: 5%;
}
@media print, screen and (max-width: 1300px) {
  .about .stem-sec1 .space-content .label-content {
    width: 100%;
    max-width: 800px;
  }
}
.about .stem-sec1 .space-content .label-content .item {
  width: 90%;
}
.about .stem-sec1 .space-content .label-content .item:nth-child(2) {
  margin-left: 10%;
}
.about .stem-sec1 .space-content > .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}
@media print, screen and (max-width: 1300px) {
  .about .stem-sec1 .space-content > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about .stem-sec1 .space-content > .flex > .txt {
  width: 40%;
}
@media print, screen and (max-width: 1300px) {
  .about .stem-sec1 .space-content > .flex > .txt {
    width: 100%;
    max-width: 600px;
  }
}
.about .stem-sec2 {
  background-image: url(../img/about/bg-img01.png);
  background-size: cover;
  background-position: center;
  padding: 50px 30px;
}
@media only screen and (max-width: 640px) {
  .about .stem-sec2 {
    padding: 20px;
  }
}
.about .stem-sec2 .inner {
  border: 4px solid #FFFFFF;
  padding: 30px;
}
@media only screen and (max-width: 640px) {
  .about .stem-sec2 .inner {
    padding: 20px;
  }
}
.about .stem-sec2 .inner .label-content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 1300px) {
  .about .stem-sec2 .inner .label-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.about .stem-sec2 .inner .label-content .item {
  width: 49%;
}
@media print, screen and (max-width: 1300px) {
  .about .stem-sec2 .inner .label-content .item {
    width: 100%;
    max-width: 930px;
  }
}
.about .stem-sec2 .desc-wrap .desc {
  text-align: center;
  font-size: clamp(22px, 1.625vw, 26px);
}
@media only screen and (max-width: 640px) {
  .about .stem-sec2 .desc-wrap .desc {
    font-size: 20px;
  }
}
.about .stem-sec2 .desc-wrap .desc span {
  font-weight: 700;
  display: inline-block;
  margin-right: 10px;
}
.about .stem-sec2 .desc-wrap svg {
  max-width: 340px;
  min-width: 280px;
  width: 30%;
  margin-left: 15%;
}
@media only screen and (max-width: 640px) {
  .about .stem-sec2 .desc-wrap svg {
    margin-left: 0;
    min-width: unset;
    width: 100%;
  }
}
.about #effect {
  padding: 40px 0;
}
.about #effect .effect-content .item {
  margin-bottom: 60px;
}
.about #effect .effect-content .img-wrap img {
  width: 100%;
}
.about #effect .effect-content .ttl-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.about #effect .effect-content .ttl-wrap .ttl-jp {
  font-size: clamp(26px, 2.3125vw, 37px);
}
.about #effect .effect-content .ttl-wrap .ttl-en {
  font-size: 17px;
}
.about #effect .effect-content .ttl-wrap .bar {
  width: 80px;
  height: 1px;
  background-color: #333333;
}
.about #effect .effect-content .inner {
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about #effect .effect-content .txt-wrap {
  margin-top: 40px;
  padding-left: 5%;
}
.about #effect .effect-content .txt-wrap ul li {
  padding-left: 30px;
  font-size: 17px;
  margin-bottom: 10px;
}
.about #effect .effect-content .txt-wrap ul li::before {
  content: "ー";
  margin-right: 10px;
}
.about #effect .effect-detail > .txt {
  margin-top: 50px;
  font-size: 17px;
}
.about #effect .effect-detail ul {
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 800px;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .about #effect .effect-detail ul {
    gap: 15px;
  }
}
.about #effect .effect-detail ul li {
  width: 30%;
  margin-top: 30px;
}
@media only screen and (max-width: 640px) {
  .about #effect .effect-detail ul li {
    margin-top: 15px;
    width: 40%;
  }
}
.about #effect .effect-detail ul li .icon-wrap img {
  max-width: 141px;
  margin: auto;
  display: block;
}
.about #effect .effect-detail ul li .txt-22 {
  font-size: 22px;
  text-align: center;
  font-weight: 400;
  margin-top: 10px;
}
@media only screen and (max-width: 640px) {
  .about #effect .effect-detail ul li .txt-22 {
    font-size: 18px;
  }
}
.about #type .type-detail {
  margin-top: 40px;
}
.about #type .type-detail .txt {
  padding-left: 20px;
}
.about #infusion .content {
  margin-top: 50px;
}
.about #infusion .content .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20;
}
@media print, screen and (max-width: 992px) {
  .about #infusion .content .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about #infusion .content .txt-wrap {
  width: 37%;
  padding-top: 20px;
}
@media print, screen and (max-width: 992px) {
  .about #infusion .content .txt-wrap {
    width: 100%;
    max-width: 500px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: auto;
  }
}
.about #infusion .content .txt-wrap .txt {
  line-height: 2.5;
}
.about #infusion .content .txt-wrap .btn-wrap {
  margin-top: 30px;
}
.about #infusion .content .img-wrap {
  width: 58%;
}
@media print, screen and (max-width: 992px) {
  .about #infusion .content .img-wrap {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.about #infusion .content .img-wrap img {
  width: 100%;
}
@media print, screen and (max-width: 992px) {
  .about #infusion .content .img-wrap img {
    max-width: 500px;
    margin: auto;
  }
}

.resept #about .about-content {
  margin-top: 40px;
}
.resept #about .about-content li .txt {
  padding: 10px 0px;
  max-width: 350px;
  margin: auto;
}
.resept #culture .detail-item {
  margin-top: 50px;
}
.resept #culture .culture-content .txt-wrap {
  font-size: 17px;
}
.resept #drip .drip-content {
  padding: 20px;
}
.resept #drip .drip-content .bg-content {
  background-image: url(../img/resept/img-05.png);
  padding: 50px 80px 100px;
  margin-top: 40px;
}
@media print, screen and (max-width: 992px) {
  .resept #drip .drip-content .bg-content {
    padding: 35px;
  }
}
@media only screen and (max-width: 640px) {
  .resept #drip .drip-content .bg-content {
    width: 100vw;
    -webkit-transform: translateX(-8vw);
            transform: translateX(-8vw);
  }
}
.resept #drip .drip-content .bg-content .inner {
  background-color: rgba(255, 255, 255, 0.8352941176);
  padding: 60px 0;
  border-radius: 20px;
}
@media print, screen and (max-width: 992px) {
  .resept #drip .drip-content .bg-content .inner {
    padding: 35px;
  }
}
.resept #drip .drip-content .bg-content .inner div {
  max-width: 950px;
  margin: auto;
}
.resept #drip .drip-content .bg-content .inner .orange {
  text-align: center;
}
.resept #drip .drip-content .bg-content .inner .txt-s {
  margin-top: 40px;
  line-height: 2;
}
.resept #drip .step-items {
  margin-top: 40px;
}
.resept #drip .step-items .txt-s {
  font-size: 15px;
  margin-top: 15px;
}
.resept #drip .step-items .txt-s span {
  font-weight: 700;
  display: inline-block;
  margin-right: 15px;
}
.resept #drip .osusume-detail {
  margin-top: 30px;
}
.resept #drip .osusume-detail ul {
  gap: 2%;
}
@media print, screen and (max-width: 992px) {
  .resept #drip .osusume-detail ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.resept #drip .osusume-detail li {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
}
@media print, screen and (max-width: 992px) {
  .resept #drip .osusume-detail li {
    width: 100%;
    gap: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .resept #drip .osusume-detail li {
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media print, screen and (max-width: 992px) {
  .resept #drip .osusume-detail li svg {
    width: 50px;
    height: 60px;
  }
}
@media only screen and (max-width: 640px) {
  .resept #drip .osusume-detail li svg {
    width: 35px;
    height: 60px;
  }
}
.resept #drip .osusume-detail li span {
  display: block;
}
.resept #drip .osusume-detail li .txt-26 {
  padding-top: 10px;
  font-weight: bold;
  line-height: 2;
}
.resept #safety .about-content .col3 {
  margin-bottom: 50px;
}
@media print, screen and (max-width: 992px) {
  .resept #safety .about-content li {
    margin-bottom: 20px;
  }
}
.resept #safety .about-content li:nth-child(1) .txt-s, .resept #safety .about-content li:nth-child(2) .txt-s {
  padding-bottom: 23px;
}
@media print, screen and (max-width: 992px) {
  .resept #safety .about-content li:nth-child(1) .txt-s, .resept #safety .about-content li:nth-child(2) .txt-s {
    padding-bottom: 0;
  }
}
.resept #safety .about-content li .inner .txt-s {
  text-align: center;
  margin: 20px 0;
}
.resept #safety .about-content li .inner .item-inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.resept #safety .about-content li .inner .item-inn .bar {
  width: 3px;
  min-height: 250px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#6B583D), color-stop(70%, #6B583D), color-stop(70%, #CEA062), to(#CEA062));
  background: linear-gradient(to bottom, #6B583D 0%, #6B583D 70%, #CEA062 70%, #CEA062 100%);
}
@media print, screen and (max-width: 992px) {
  .resept #safety .about-content li .inner .item-inn .bar {
    min-height: unset;
  }
}
.resept #safety .about-content li .inner .item-inn .txt {
  width: calc(100% - 30px);
}
.resept #safety .risk-list .item {
  margin-top: 35px;
}
@media only screen and (max-width: 640px) {
  .resept #safety .risk-list .item .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.resept #safety .risk-list .item .pad {
  padding-left: 70px;
  margin-top: 10px;
}
@media only screen and (max-width: 640px) {
  .resept #safety .risk-list .item .pad {
    padding-left: 0px;
  }
}
.resept #safety .risk-list .item .ttl-wrap .num {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 40px;
  text-align: center;
  background-color: #FF9200;
  color: #FFFFFF;
}
.resept #safety .risk-list .item .ttl-wrap .ttl {
  font-size: 17px;
  line-height: 47px;
  padding-left: 20px;
  border-bottom: 3px solid #6B583D;
}
@media only screen and (max-width: 640px) {
  .resept #safety .risk-list .item .ttl-wrap .ttl {
    padding-left: 0;
    line-height: 1.7;
  }
}
.resept #safety .point-wrap {
  background-color: #F6F6F6;
  margin-top: 50px;
}
.resept #safety .point-wrap .point-ttl {
  background-color: #F1BA70;
  padding: 20px;
  text-align: center;
  font-weight: bold;
}
.resept #safety .point-wrap .point-list {
  padding: 50px 50px 0px 50px;
}
@media only screen and (max-width: 640px) {
  .resept #safety .point-wrap .point-list {
    padding: 15px;
  }
}
.resept #safety .point-wrap .point-list .item {
  margin-bottom: 30px;
}
.resept #safety .point-wrap .point-list .item .ttl-wrap {
  min-width: 405px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px solid #6B583D;
}
@media only screen and (max-width: 640px) {
  .resept #safety .point-wrap .point-list .item .ttl-wrap {
    min-width: unset;
  }
}
@media only screen and (max-width: 640px) {
  .resept #safety .point-wrap .point-list .item .ttl-wrap .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.resept #safety .point-wrap .point-list .item .ttl-wrap .icon-wrap {
  margin-right: 10px;
}
@media only screen and (max-width: 640px) {
  .resept #safety .point-wrap .point-list .item .ttl-wrap .icon-wrap svg {
    width: 21px;
  }
}
.resept #safety .point-wrap .point-list .item > .txt {
  padding-left: 30px;
  margin-top: 5px;
}
@media only screen and (max-width: 640px) {
  .resept #safety .point-wrap .point-list .item > .txt {
    padding-left: 0;
  }
}
.resept #safety .point-wrap .point-img {
  max-width: 800px;
  width: 90%;
  margin: auto;
}
@media print, screen and (max-width: 992px) {
  .resept #reason .col3 {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
@media print, screen and (max-width: 992px) {
  .resept #reason .col3 li {
    width: 48%;
  }
}
.resept #experience .detail-item .icon-txt.svg {
  padding: 30px 0;
  border-bottom: 2px dotted #6B583D;
}
.resept #experience .detail-item .icon-txt.svg .heading {
  margin-top: 20px;
  font-weight: 700;
}
.resept #experience .detail-item .icon-txt.svg .txt {
  margin-top: 10px;
  padding-left: 15px;
}
.resept #experience .detail-item .btn-wrap {
  margin-top: 20px;
}

.plan .w-bg-content .txt-wrap .heading {
  font-size: 22px;
  color: #FF9200;
  margin-top: 20px;
  margin-bottom: 10px;
}

.flow .h2-wrap .in {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  padding-left: 30px;
}
.flow .h2-wrap .num-wrap {
  font-size: clamp(40px, 4.5625vw, 73px);
  font-weight: bold;
  position: relative;
}
.flow .h2-wrap .num-wrap::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 70px;
  background-color: #FF9200;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  right: -17px;
  margin-top: 0px;
}
.flow .h2-wrap .num-wrap span {
  margin-top: -30px;
  position: relative;
  display: block;
}
.flow .h2-wrap .ttl-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.flow .h2-wrap .ttl-wrap .en-ttl, .flow .h2-wrap .ttl-wrap .jp-ttl {
  padding-left: 0;
}
.flow .h2-wrap .bar {
  margin-top: 10px;
}
.flow .detail-item .txt-wrap {
  margin-top: 20px;
}
.flow .w-bg-content .check-content {
  padding: 20px 0;
}
.flow .check-content {
  padding: 20px 30px;
}
@media print, screen and (max-width: 992px) {
  .flow .check-content {
    padding: 20px 10px;
  }
}
.flow .check-content .flex {
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media print, screen and (max-width: 992px) {
  .flow .check-content .flex {
    gap: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .flow .check-content .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow .check-content .icon-wrap {
  width: 50px;
}
@media print, screen and (max-width: 992px) {
  .flow .check-content .icon-wrap {
    width: 40px;
  }
}
.flow .check-content .txt-wrap {
  width: calc(100% - 150px);
}
@media print, screen and (max-width: 992px) {
  .flow .check-content .txt-wrap {
    width: calc(100% - 60px);
  }
}
.flow .check-content .txt-wrap {
  padding-left: 20px;
  border-left: 4px solid #6B583D;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 640px) {
  .flow .check-content .txt-wrap {
    border-left: unset;
    border-top: 4px solid #6B583D;
    width: 100%;
    padding-left: 0;
  }
}
.flow .check-content .txt-wrap.yellow {
  border-color: #FF9200;
}
.flow .clinic-menu {
  margin-top: 30px;
}
.flow .clinic-menu .faq-container .faq-item .faq-question::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 37px;
  background-image: url(../img/flow/clinic.svg);
  background-size: cover;
  margin-left: -15px;
  margin-top: -2px;
}
@media print, screen and (max-width: 992px) {
  .flow .clinic-menu .faq-container .faq-item .faq-question::before {
    width: 25px;
    height: 25px;
    margin-top: 2px;
  }
}
.flow .clinic-menu .faq-container .faq-item .faq-answer {
  background-color: #FFFFFF;
  padding: 0 30px;
}
@media only screen and (max-width: 640px) {
  .flow .clinic-menu .faq-container .faq-item .faq-answer {
    padding: 0 15px;
  }
}
.flow .clinic-menu .faq-container .faq-item .faq-answer::before {
  display: none;
}
@media only screen and (max-width: 640px) {
  .flow .clinic-menu .faq-container .faq-item .faq-answer .caution svg {
    max-width: 100%;
  }
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .heading {
  padding: 0 20px;
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .heading .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .inner > .txt {
  padding: 20px;
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap {
  padding: 40px;
}
@media only screen and (max-width: 640px) {
  .flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap {
    padding: 0;
  }
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex {
  gap: 5%;
}
@media print, screen and (max-width: 992px) {
  .flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex .img-wrap {
  width: 35%;
}
@media print, screen and (max-width: 992px) {
  .flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex .img-wrap {
    width: 100%;
    max-width: 300px;
  }
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex .img-wrap .name {
  font-size: 12px;
  text-align: center;
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex .txt-wrap {
  width: 58%;
}
@media print, screen and (max-width: 992px) {
  .flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex .txt-wrap {
    width: 100%;
    max-width: 600px;
  }
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex .txt-wrap .name {
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: bold;
}
.flow .clinic-menu .faq-container .faq-item .faq-answer .people-wrap .flex .txt-wrap .txt {
  font-size: 13px;
}
.flow .clinic-menu .faq-container .faq-item.active .faq-answer {
  padding: 30px;
  border: 1px solid #6B583D;
}
@media only screen and (max-width: 640px) {
  .flow .clinic-menu .faq-container .faq-item.active .faq-answer {
    padding: 15px;
  }
}
@media only screen and (max-width: 640px) {
  .flow .clinic-menu .faq-container .faq-item.active .faq-answer .txt {
    padding: 0;
  }
}
.flow .bar-txt {
  margin: 25px 0;
  padding-left: 30px;
  border-left: 2px solid #707070;
}
.flow .payment-content {
  margin-top: 50px;
}
.flow .payment-content .flex {
  gap: 5%;
  max-width: 700px;
  margin: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 640px) {
  .flow .payment-content .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flow .payment-content .flex .img-wrap {
  width: 25%;
}
@media only screen and (max-width: 640px) {
  .flow .payment-content .flex .img-wrap {
    width: 70%;
  }
}
.flow .payment-content .flex .txt-wrap .btn-wrap {
  margin-top: 30px;
}
.flow .spot-wrap {
  margin-top: 50px;
}
.flow .spot-wrap .ttl-sub {
  position: relative;
  display: block;
  padding: 15px 20px;
  font-size: 22px;
  border-radius: 30px;
  background-color: #FF9200;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: -50px;
  font-weight: 700;
  color: #FFFFFF;
  margin-left: 30px;
}/*# sourceMappingURL=style.css.map */