@charset "UTF-8";
:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

.reveal-text,
.reveal-text::after {
  -webkit-animation-duration: var(--duration, 800ms);
          animation-duration: var(--duration, 800ms);
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  -webkit-animation-delay: var(--animation-delay, 2s);
          animation-delay: var(--animation-delay, 2s);
  -webkit-animation-iteration-count: var(--iterations, 1);
          animation-iteration-count: var(--iterations, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.reveal-text {
  position: relative;
  color: var(--text-color, #000);
  white-space: nowrap;
  --animation-duration: var(--duration, 800ms);
  --animation-delay: var(--delay, 0);
  --animation-iterations: var(--iterations, 1);
}
.reveal-text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  background-color: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}
.reveal-text.is-animated {
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
}
.reveal-text.is-animated::after {
  -webkit-animation-name: text-revealer;
          animation-name: text-revealer;
}

@-webkit-keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.anime_wrap {
  position: relative;
  overflow: hidden;
}

.anime_wrap p {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 40px;
  font-weight: bold;
}

.pattern6:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.pattern6:hover img {
  opacity: 1;
}
.pattern6:hover p {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.pattern6:hover p::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.pattern6::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pattern6.show::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.pattern6 img {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pattern6.show img {
  opacity: 1;
}

.pattern6 p {
  z-index: 1;
  overflow: hidden;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.pattern6.show p {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.pattern6 p::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.pattern6.show p::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.headline-01 {
  margin-bottom: 8rem;
}
.headline-01 > span {
  display: block;
}
.headline-01 .en {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-size: 6.8rem;
  line-height: 1;
}
.headline-01 .ja {
  margin-top: 0.6em;
  font-size: 1.8rem;
}
.headline-01.sm {
  margin-bottom: 5rem;
}
.headline-01.sm .en {
  font-size: 5rem;
}
.headline-01.sm .ja {
  font-size: 1.6rem;
}
.headline-02 {
  margin-bottom: 5rem;
  font-weight: 900;
  font-size: 3.6rem;
}

.btn {
  width: var(--button-width, -webkit-fit-content);
  width: var(--button-width, -moz-fit-content);
  width: var(--button-width, fit-content);
  display: block;
}
.btn-01 {
  margin-top: var(--button-margin, 3rem);
  padding: 1em 1em;
  border-radius: 0.5rem;
  background-color: var(--primary-color, #000);
  color: #fff;
  text-align: center;
  letter-spacing: 0.07em;
  font-size: 1.4rem;
  line-height: 1.4;
}
.btn-center {
  margin-right: auto;
  margin-left: auto;
}

ul {
  list-style-type: none;
}
ul.dot li {
  margin-left: 1.2em;
  text-indent: -1em;
}
ul.dot li:before {
  content: "・";
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
ul.dot li + li {
  margin-top: 0.5em;
}
ul.circle li {
  margin-left: 1.2em;
  text-indent: -1em;
}
ul.circle li:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.2em;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--primary-color, #000);
}
ul.circle li + li {
  margin-top: 0.5em;
}
ul.note li {
  margin-left: 1.2em;
  text-indent: -1.1em;
}
ul.note li:before {
  content: "※";
  margin-right: 0.2em;
  font-family: initial;
}
ul.note li + li {
  margin-top: 0.5em;
}

.pager-number {
  margin-top: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager-number .page-numbers {
  width: 4rem;
  height: 4rem;
  margin: 0 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-weight: 400;
  font-size: 1.4rem;
}
.pager-number .page-numbers.current {
  background-color: var(--primary-color, #000);
  color: #fff;
}
.pager-number .prev, .pager-number .next {
  white-space: nowrap;
}

*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

.form-select {
  width: 100%;
  padding: 0.8em 1.2em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22select_arr%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2011.4%206.2%22%20style%3D%22enable-background%3Anew%200%200%2011.4%206.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23BFBFBF%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22path01%22%20class%3D%22st0%22%20d%3D%22M10.7%2C0.6l-5%2C5l-5-5%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1.6rem;
}
.form-select::-ms-expand {
  display: none;
}

.radio-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.radio-wrap.horizon .radio {
  margin-bottom: 2rem;
}
.radio-wrap.horizon .radio:not(:last-of-type) {
  margin-right: 2rem;
}
.radio-wrap.vertical .radio + .radio {
  margin-top: 1.2rem;
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  border-radius: 100%;
  border: 1px solid #CCC;
  background-color: #FFF;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  top: 0;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--primary-color, #000);
  -webkit-box-shadow: inset 0 0 0 4px #FFF;
          box-shadow: inset 0 0 0 4px #FFF;
  border-color: var(--primary-color, #000);
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--primary-color, #000);
}
.radio input[type=radio]:disabled + .radio-label:before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.checkbox-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.checkbox-wrap.horizon .checkbox {
  margin-bottom: 2rem;
}
.checkbox-wrap.horizon .checkbox:not(:last-of-type) {
  margin-right: 2rem;
}
.checkbox-wrap.vertical .checkbox + .checkbox {
  margin-top: 1.2rem;
}

.checkbox {
  line-height: 1;
}

.checkbox-input {
  display: none;
}
.checkbox-input:checked + .checkbox-parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 0.8rem;
  height: 1.2rem;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 3px solid var(--primary-color, #000);
  border-right: 3px solid var(--primary-color, #000);
  margin-top: -0.8rem;
}

.checkbox-parts {
  padding-left: 2.5rem;
  position: relative;
}
.checkbox-parts:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #CCC;
  background-color: #FFF;
  border-radius: 0.5rem;
  margin-top: -0.9rem;
}

.form-box + .form-box {
  margin-top: 3.6rem;
}
.form-box dt {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1;
}
.form-box .required {
  display: inline-block;
  padding: 0.2em 0.5em;
  margin-left: 0.8rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #b33f4c;
}
.form-box .required::before {
  content: "必須";
}
.form-box .form-error {
  display: none;
  margin-top: 0.5em;
  font-size: 1.3rem;
  color: #b33f4c;
}

.form-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.form-column .inner {
  width: 100%;
}
.form-column .inner + .inner {
  margin-left: 1em;
}

.form-control {
  width: 100%;
  padding: 0.8em 1.2em;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #fff;
}

textarea.form-control {
  height: 20rem;
  padding: 1.2em;
}

.form-submit {
  --button-width: 20.0rem;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color, #fff);
  color: var(--base-font-color, #000);
  word-break: break-all;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.6;
}
body.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  overflow: hidden;
}

.section-block {
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
.section-block .content + .content {
  margin-top: 10rem;
}

.page-width {
  width: calc(var(--main-width) + 10rem);
  max-width: 100%;
  margin: 0 auto;
  padding-right: 5rem;
  padding-left: 5rem;
}

.w-md {
  width: 100rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.w-sm {
  width: 75rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pd-x_none {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.pd-y_none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pd-t_none {
  padding-top: 0 !important;
}
.pd-b_none {
  padding-bottom: 0 !important;
}

.round {
  border-radius: 1rem;
}

.bg-01 {
  background: url(../../images/common/bg.jpg) repeat left top/50rem;
}

a {
  color: rgba(var(--primary-color), 0.75);
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.link-underline {
  text-decoration: underline;
}
.link-block {
  display: block;
}
.link-image {
  display: block;
}
.link-image img {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.link-image:hover img {
  opacity: 0.7;
}
.link-color {
  color: #2175cb;
}

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

svg {
  vertical-align: bottom;
}

.variableBox {
  position: relative;
}
.variableBox > .inner {
  width: 100%;
  padding-bottom: var(--vertical-percent, 62.5%);
}
.variableBox .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

p {
  line-height: 2;
}
p:not(:last-of-type) {
  margin-bottom: 1em;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-serif {
  font-family: "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
.text-bold {
  font-weight: 700;
}
.text-cf01 {
  font-family: "futura-pt", sans-serif;
}
.text-xl {
  font-size: 3.2rem;
}
.text-lg {
  font-size: 2.4rem;
}
.text-md {
  font-size: 1.8rem;
}
.text-sm {
  font-size: 1.2rem;
}
.text-red {
  color: #b33f4c;
}
.text-blue {
  color: #1d348b;
}

@media screen and (max-width: 833px) {
  .pcOnly {
    display: none;
  }
}
@media screen and (min-width: 834px) {
  .tabOnly {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .spOnly {
    display: none;
  }
}
.site-header {
  width: 100%;
  padding: 2.6rem 4rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.8);
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
}

.header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-title {
  width: 18rem;
  height: 18rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 2rem 0;
  background-color: #fff;
  font-size: 1rem;
}
.header-title a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
.header-title .logo {
  width: 68%;
  max-width: 12rem;
}

.header-navi {
  width: 100%;
  letter-spacing: 0;
}
.header-navi ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.header-navi li:not(:last-child) {
  margin-right: 2em;
}
.header-navi a {
  color: #fff;
}

.link-contact {
  width: 20rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #168352;
  font-weight: 700;
}
.link-contact .icon {
  margin-right: 1rem;
}

#hamburgerMenu {
  width: 4.4rem;
  height: 4.4rem;
  position: fixed;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 9;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
}
#hamburgerMenu > div {
  width: 2rem;
  height: 1.4rem;
  margin: 1.5rem auto;
  position: relative;
}
#hamburgerMenu span {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  display: block;
  background: #fff;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
#hamburgerMenu span:nth-child(1) {
  top: 0;
}
#hamburgerMenu span:nth-child(2) {
  top: calc(50% - 1px);
}
#hamburgerMenu span:nth-child(3) {
  top: calc(100% - 2px);
}
#hamburgerMenu.is-open span:nth-child(1) {
  top: 0.7rem;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
#hamburgerMenu.is-open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
#hamburgerMenu.is-open span:nth-child(3) {
  top: 0.7rem;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}

.site-footer {
  padding: 6rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
}
.site-footer a {
  color: #fff;
}

.footer-title a {
  display: inline-block;
}

.footer-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-navi {
  margin: 5rem auto;
}
.footer-navi ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
}
.footer-navi li:not(:last-child) {
  margin-right: 2em;
}
.footer-navi .sns-list {
  margin-top: 4rem;
}

.copy-right {
  font-size: 1.4rem;
  line-height: 1;
}

.breakThrough-right {
  margin-right: calc(50% - 50vw);
}
.breakThrough-right.keep-child {
  padding-right: calc(50vw - 50%);
}
.breakThrough-left {
  margin-left: calc(50% - 50vw);
}
.breakThrough-left.keep-child {
  padding-left: calc(50vw - 50%);
}

.l-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.l-column.col-2 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-column.col-2 > * {
  width: var(--col-width, 48.5%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-3 {
  margin-bottom: calc(var(--col-margin, 2%) * -1);
}
.l-column.col-3 > * {
  width: var(--col-width, 32%);
  margin-right: var(--col-margin, 2%);
  margin-bottom: var(--col-margin, 2%);
}
.l-column.col-3 > *:last-child, .l-column.col-3 > *:nth-child(3n) {
  margin-right: 0;
}
.l-column.col-4 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
}
.l-column.col-4 > * {
  width: var(--col-width, 22.75%);
  margin-right: var(--col-margin, 3%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-4 > *:last-child, .l-column.col-4 > *:nth-child(4n) {
  margin-right: 0;
}
.l-column.x-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-column.y-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.l-column.x-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-column.y-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 833px) {
  .l-column.col-1-tab > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-tab {
    margin-bottom: calc(var(--col-tab-margin, 3%) * -1);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col-2-tab > * {
    width: var(--col-tab-width, 48.5%);
    margin-right: 0;
    margin-bottom: var(--col-tab-margin, 3%);
  }
}
@media screen and (max-width: 575px) {
  .l-column.col-1-sp {
    --col-margin: 2.0rem;
  }
  .l-column.col-1-sp > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-sp {
    margin-bottom: calc(var(--col-sp-margin, 3%) * -1);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col-2-sp > * {
    width: var(--col-sp-width, 48.5%);
    margin-right: 0;
    margin-bottom: var(--col-sp-margin, 3%);
  }
}
.card {
  overflow: hidden;
}
.card .c-image {
  position: relative;
}
.card .c-image figcaption {
  position: absolute;
  right: 1.2em;
  bottom: 1em;
  color: #fff;
  font-size: 1.2rem;
}
.card .c-body {
  padding: 2rem;
  background-color: #fff;
}
.card .c-title {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
}
.card .c-date {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
}
.card .c-date + * {
  margin-top: 0.5rem;
}
.card p {
  text-align: justify;
  font-size: 1.4rem;
}

.fixed-entry-button {
  width: 30rem;
  height: 6rem;
  position: fixed;
  bottom: 0;
  left: calc(50% - 15rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1d348b;
  color: #fff;
}

#hero-visual {
  width: 100%;
  height: 80rem;
  position: relative;
}

.hero-slider {
  height: 100%;
}
.hero-slider .swiper-slide, .hero-slider .slide-image {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-catch {
  padding: 0 5rem;
  position: absolute;
  bottom: 4rem;
  left: 0;
  z-index: 2;
  color: #fff;
  -webkit-filter: drop-shadow(0 0 1.6rem rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 1.6rem rgba(0, 0, 0, 0.5));
}
.hero-catch h2 {
  margin-bottom: 1em;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.6;
}
.hero-catch .pic {
  width: 100rem;
}

.about-block {
  position: relative;
}
.about-block .pic {
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0 3rem 3rem 0;
}
.about-block .pic img {
  width: 100%;
}
.about-block .text {
  padding-top: 2rem;
}
.about-block .ttl {
  margin-bottom: 4rem;
  color: #168352;
  font-size: 3.2rem;
  line-height: 1.5;
}
.about-block .point {
  padding: 6rem 0;
  position: relative;
}
.about-block .point::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: -100%;
  z-index: -1;
  border-radius: 0 0 3rem 3rem;
  background: url(../../images/common/bg.jpg) repeat left top/50rem;
}
.about-block ul {
  font-weight: 700;
}

.headline-strength {
  margin-bottom: 6rem;
}
.headline-strength .ttl {
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.4285714286;
}
.headline-strength .ttl span {
  color: #f53c08;
}
.headline-strength .pic {
  margin-bottom: 3.6rem;
}

.strength-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.strength-list li {
  width: 18%;
  text-align: center;
}
.strength-list figure > span {
  display: block;
  overflow: hidden;
  border-radius: 2rem;
}
.strength-list .caption {
  margin-top: 0.75em;
  font-weight: 700;
}

.strength-copy {
  width: 100%;
  max-width: 70.8rem;
  margin: 4.4rem auto 0;
  padding: 1.4rem 1em;
  border-radius: 3rem;
  background-color: #168352;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

.plan-box {
  padding: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3rem;
  background: url(../../images/common/bg.jpg) repeat left top/50rem;
}
.plan-box:not(:last-child) {
  margin-bottom: 5rem;
}
.plan-box p {
  margin-bottom: 0;
}
.plan-box .text01 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
}
.plan-box .text02 {
  color: #168352;
  font-weight: 900;
  font-size: 3.4rem;
}
.plan-box .price {
  margin-top: 0.5em;
  text-align: right;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}
.plan-box .price span {
  margin: 0 0.1em;
  color: #f53c08;
  letter-spacing: 0;
  font-family: "futura-pt", sans-serif;
  font-size: 4.8rem;
}
.plan-box .detail-area {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.plan-box .detail-area dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.plan-box .detail-area dl + dl {
  margin-top: 2rem;
}
.plan-box .detail-area dt {
  width: 6rem;
  height: 6rem;
  margin-right: 1.5rem;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 6rem;
}
.plan-box .detail-area dd {
  font-weight: 500;
}
.plan-box .point {
  margin-top: 2rem;
}
.plan-box .point dt {
  font-weight: 700;
}
.plan-box .point dt::before {
  content: "●";
  color: #168352;
}
.plan-box .point ul:not(.note) {
  margin-right: -1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.plan-box .point ul:not(.note) li {
  margin-top: 1rem;
  margin-right: 1rem;
  padding: 0.7em 1.4em 0.9em;
  border-radius: 1.8rem;
  background-color: #168352;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}
.plan-box .point .note {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
}

.plan-slider {
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 2rem;
}
.plan-slider .swiper-slide {
  padding-top: 70%;
  position: relative;
}
.plan-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.option-box-main {
  margin-bottom: 2%;
  padding: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2rem;
  background: url(../../images/common/bg.jpg) repeat left top/50rem;
}
.option-box-main .visual-area {
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 1.2rem;
}
.option-box-main .ttl {
  color: #168352;
}
.option-box-main .detail-area {
  margin: 2rem 0;
}
.option-box-main .detail-area dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.option-box-main .detail-area dl + dl {
  margin-top: 2rem;
}
.option-box-main .detail-area dt {
  width: 6rem;
  height: 6rem;
  margin-right: 1.5rem;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 6rem;
}
.option-box-main .detail-area dd {
  font-weight: 500;
}
.option-box-main .note {
  font-weight: 500;
  font-size: 1.4rem;
}

.option-box {
  padding: 3rem 2rem;
  border-radius: 2rem;
  background: url(../../images/common/bg.jpg) repeat left top/50rem;
}
.option-box .ttl {
  font-size: 2rem;
}
.option-box .comment {
  font-size: 1.4rem;
}
.option-box .price {
  margin-top: 0.5em;
  text-align: right;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}
.option-box .price span {
  margin: 0 0.2em;
  color: #f53c08;
  letter-spacing: 0;
  font-family: "futura-pt", sans-serif;
  font-size: 2.4rem;
}

.caution-box {
  padding: 5rem;
  border-radius: 2rem;
  background-color: #fff;
}

.faq-list dl {
  padding: 3rem 0;
  border-bottom: 1px solid #d2d2d2;
}
.faq-list dl:first-child {
  border-top: 1px solid #d2d2d2;
}
.faq-list dt, .faq-list dd {
  padding-left: 6rem;
  position: relative;
}
.faq-list dt::before, .faq-list dd::before {
  content: "";
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
}
.faq-list dt {
  padding-top: 0.2em;
  padding-right: 3em;
  padding-bottom: 0.2em;
  font-weight: 700;
  font-size: 2rem;
}
.faq-list dt::before {
  background-color: #168352;
  background-image: url(../../images/common/icon_question.svg);
  background-size: 1.5rem 1.4rem;
}
.faq-list dt::after {
  content: "";
  width: 2rem;
  height: 1.2rem;
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  background: url(../../images/common/arrow01.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.faq-list dt:hover {
  cursor: pointer;
}
.faq-list dt.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-list dd {
  margin-top: 3rem;
  padding-top: 0.2em;
  display: none;
}
.faq-list dd::before {
  background-image: url(../../images/common/icon_answer.svg);
  background-size: 1.4rem 1.5rem;
}

.lower {
  background: url(../../images/common/bg.jpg) repeat left top/50rem;
}
.lower .site-container {
  margin-top: 7.8rem;
}

.start_booking_package {
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
}

#booking-package .title {
  text-align: left !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
}
#booking-package .title::before {
  content: "●";
  margin-right: 0.2em;
  color: #168352;
}
#booking-package #booking-package_servicePage {
  width: 100%;
  float: none;
}
#booking-package #booking-package_servicePage .selectPanel {
  padding: 2rem 1em;
}
#booking-package #booking-package_servicePage .selectPanel > div span > span {
  font-weight: 700;
  font-size: 1.8rem;
}
#booking-package #booking-package_servicePage .courseCostPanel {
  color: #f53c08;
  letter-spacing: 0;
  font-family: "futura-pt", sans-serif;
  font-size: 2rem;
}
#booking-package #booking-package_servicePage .descriptionOfService {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 2;
}
#booking-package #booking-package_serviceDetails {
  width: 100%;
  margin-top: 4rem;
  padding-left: 0;
  float: none;
}
#booking-package .bookingButton, #booking-package .goToCalendarButton {
  max-width: 30rem;
  margin: 4rem auto 0 !important;
  padding: 1em;
  display: block;
  background-color: #168352;
  color: #fff;
}

#booking-package_schedulePage .descriptionOfService, #booking-package_servicePage .descriptionOfService {
  margin-top: 0.5em;
  font-size: 1.4rem;
}

.start_booking_package #booking-package_calendarPage .calendar {
  margin: 0;
  padding: 0;
}
.start_booking_package #booking-package_calendarPage .calendarPanel {
  padding: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #168352;
  color: #fff;
  font-weight: 500;
}
.start_booking_package #booking-package_calendarPage .calendarChangeButton label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.start_booking_package #booking-package_calendarPage .calendarData {
  font-size: 2rem;
}
.start_booking_package #booking-package_calendarPage .dayPanel:not(.dayPanelHeight) {
  padding: 0.6em 0;
  font-size: 1.4rem;
}
.start_booking_package #booking-package_calendarPage .dayPanelHeight {
  height: 8rem;
}
.start_booking_package #booking-package_calendarPage .dayPostion {
  padding-top: 1.4rem;
}
.start_booking_package #booking-package_schedulePage .topPanel {
  height: 6.4rem;
  padding: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #168352;
  color: #fff;
  font-weight: 500;
}
.start_booking_package #booking-package_schedulePage .selectedDate {
  background: none;
  font-weight: 500;
  font-size: 2rem;
}
.start_booking_package #booking-package_schedulePage .selectPanelError {
  color: #ccc;
}
.start_booking_package #booking-package_schedulePage .courseListPanel {
  top: 6.4rem;
}

#courseMainPanel .selectPanel > div {
  padding: 0.8em 1em;
}
#courseMainPanel .selectPanel > div span > span {
  font-weight: 500;
  font-size: 1.8rem;
}
#courseMainPanel .selectPanel .courseCostPanel {
  color: #f53c08;
  letter-spacing: 0;
  font-family: "futura-pt", sans-serif;
  font-size: 2rem;
}

.amelia-v2-booking #amelia-container.am-fs__wrapper {
  margin: 0 auto !important;
}

.amelia-v2-booking #amelia-container .am-fs-sb__step-checker-selected {
  --am-c-primary: #fff001;
}

.amelia-v2-booking #amelia-container .am-fs-sb__step-checker .am-icon-check {
  --am-c-success: #fff001;
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (min-width: 834px) {
  #hamburgerMenu {
    display: none;
  }
  .about-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-block .pic {
    width: 50vw;
    margin-right: 5rem;
  }
  .about-block .text {
    width: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
  .strength-list li:not(:last-child) {
    margin-right: 2.25%;
  }
  .plan-box .visual-area {
    width: 50%;
    padding-right: 3rem;
  }
  .plan-box .text-area {
    width: 50%;
    padding: 0 3rem;
  }
  .option-box-main .visual-area {
    width: 35%;
    margin-right: 3%;
  }
  .option-box-main .text-area {
    width: 62%;
  }
}
@media screen and (max-width: 833px) {
  html {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.4rem;
  }
  .section-block {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .page-width {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .site-header {
    background: none;
  }
  .header-title {
    width: 8rem;
    height: 8rem;
  }
  #naviMenu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background-color: white;
  }
  #naviMenu ul {
    padding: 15rem 2rem 2rem;
    display: block;
    text-align: center;
    font-size: 2rem;
  }
  #naviMenu li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2em;
  }
  #naviMenu a {
    color: #333;
  }
  .link-contact {
    width: 12.4rem;
    height: 4.4rem;
    position: fixed;
    top: 1.5rem;
    right: 7rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
  }
  .link-contact .icon {
    width: 1.5rem;
    margin-right: 0.6rem;
  }
  .footer-title .logo {
    width: 8rem;
  }
  .footer-navi ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer-navi li {
    width: 50%;
    margin: 1em 0;
  }
  .footer-navi li:not(:last-child) {
    margin-right: 0;
  }
  .footer-navi .sns-list {
    margin-top: 2rem;
  }
  .footer-navi .sns-list li {
    width: auto;
  }
  .footer-navi .sns-list li + li {
    margin-left: 2em;
  }
  .copy-right {
    font-weight: 400;
    font-size: 1.2rem;
  }
  .headline-01 {
    margin-bottom: 4rem;
  }
  .headline-01 .en {
    font-size: 4.2rem;
  }
  .headline-01 .ja {
    font-size: 1.6rem;
  }
  .headline-01.sm {
    margin-bottom: 3rem;
  }
  .headline-01.sm .en {
    font-size: 3.6rem;
  }
  .headline-01.sm .ja {
    font-size: 1.4rem;
  }
  .headline-02 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
  #hero-visual {
    height: 100vh;
  }
  .hero-catch {
    padding: 0 2rem;
    position: absolute;
    bottom: 8%;
    -webkit-filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.5));
            filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.5));
  }
  .hero-catch h2 {
    margin-bottom: 1em;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.6;
  }
  .hero-catch .pic {
    width: 100%;
  }
  .about-block .pic {
    border-radius: 0 2rem 2rem 0;
  }
  .about-block .text {
    padding-top: 3rem;
  }
  .about-block .ttl {
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }
  .about-block .point {
    padding: 3rem 0;
  }
  .headline-strength {
    margin-bottom: 3rem;
  }
  .headline-strength .ttl {
    font-size: 2.8rem;
  }
  .headline-strength .pic {
    width: 16rem;
    margin-bottom: 2.4rem;
  }
  .strength-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .strength-list li {
    width: 47%;
    margin-bottom: 6%;
  }
  .strength-copy {
    margin-top: 3rem;
    padding: 1em 1em;
    border-radius: 1.5rem;
    font-size: 1.6rem;
  }
  .plan-box {
    padding: 2rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border-radius: 2rem;
  }
  .plan-box .visual-area {
    margin-top: 3rem;
  }
  .plan-box .visual-area {
    width: 100%;
  }
  .plan-box .text01 {
    margin-bottom: 0.3em;
    font-size: 1.4rem;
  }
  .plan-box .text02 {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  .plan-box .price {
    font-size: 1.6rem;
  }
  .plan-box .price span {
    margin: 0 0.4rem;
    font-size: 4.2rem;
  }
  .plan-box .point ul {
    margin-right: -0.8rem;
  }
  .plan-box .point li {
    margin-top: 0.8rem;
    margin-right: 0.8rem;
    padding: 0.7em 1em 0.9em;
    font-size: 1.2rem;
  }
  .option-box-main {
    margin-bottom: 2rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .option-box-main .visual-area {
    margin-top: 2rem;
  }
  .option-box-main .note {
    font-size: 1.2rem;
  }
  .option-box-main .price {
    margin-top: 1em;
  }
  .option-box {
    padding: 2rem 2rem;
  }
  .caution-box {
    padding: 2.4rem 2rem;
    border-radius: 1.5rem;
  }
  .faq-list dl {
    padding: 2rem 0;
  }
  .faq-list dt, .faq-list dd {
    padding-left: 4.4rem;
    position: relative;
  }
  .faq-list dt::before, .faq-list dd::before {
    content: "";
    width: 3.2rem;
    height: 3.2rem;
  }
  .faq-list dt {
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    font-size: 1.6rem;
  }
  .faq-list dt::before {
    background-size: 1.3rem 1.2rem;
  }
  .faq-list dt::after {
    content: "";
    width: 1.6rem;
    height: 1rem;
  }
  .faq-list dd {
    margin-top: 3rem;
    padding-top: 0.2em;
  }
  .faq-list dd::before {
    background-size: 1.3rem 1.2rem;
  }
  .start_booking_package #booking-package_calendarPage .calendarPanel {
    padding: 0.6em;
  }
  .start_booking_package #booking-package_calendarPage .calendarData {
    font-size: 1.8rem;
  }
  .start_booking_package #booking-package_calendarPage .dayPanel {
    font-size: 1.4rem;
  }
  .start_booking_package #booking-package_calendarPage .dayPanelHeight {
    height: 6rem;
  }
  .start_booking_package #booking-package_calendarPage .dayPostion {
    padding-top: 1rem;
  }
}
@supports (-webkit-touch-callout: none) {
  #hero-visual {
    max-height: -webkit-fill-available;
  }
}