@charset "UTF-8";
/* Variables
------------------------------ */
/*!
    Mixins
------------------------------ */
/*!
    Functions
------------------------------ */
/*!
    Normalize

    Copyright 2019 Elad Shechter

    Reference:
    https://medium.com/@elad/normalize-css-or-css-reset-9d75175c5d1e
------------------------------ */
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/*!
    Reboot
------------------------------ */
body p, body span, body dl, h1, h2, h3, h4, h5, h6 {
  transform: rotate(0.03deg);
  -moz-transform: rotate(0.03deg);
  -ms-transform: rotate(0.03deg);
  -o-transform: rotate(0.03deg);
  -webkit-transform: rotate(0.03deg);
}

body p, body span, body dl, h1, h2, h3, h4, h5, h6 {
  word-break: break-all;
}

html,
body,
nav {
  margin: 0;
  padding: 0;
}

html,
body {
  position: relative;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 991px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 1200px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}

img,
svg,
use {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a {
  color: #fff;
}

a:visited {
  color: #fff;
}

a:hover {
  color: #fff;
}

a:active {
  color: #fff;
}

a:focus {
  outline: 0;
}

button {
  outline: 0;
}

span,
span:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

::-moz-selection {
  color: #000;
  background-color: rgba(100, 154, 227, 0.1);
}

::selection {
  color: #000;
  background-color: rgba(100, 154, 227, 0.1);
}

/*!
    Utilities
------------------------------ */
.d-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .d-sm-none {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .d-md-none {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .d-lg-none {
    display: none;
  }
}

@media screen and (min-width: 1550px) {
  .d-xl-none {
    display: none;
  }
}

.d-block {
  display: block;
}

@media screen and (max-width: 768px) {
  .d-sm-block {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .d-md-block {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .d-lg-block {
    display: block;
  }
}

@media screen and (min-width: 1550px) {
  .d-xl-block {
    display: block;
  }
}

.text-l {
  text-align: left;
}

.text-c {
  text-align: center;
}

.text-r {
  text-align: right;
}

.mt-1 {
  margin-top: 1rem;
}
@media screen and (max-width: 991px) {
  .mt-1 {
    margin-top: 0.5rem;
  }
}

.mt-2 {
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  .mt-2 {
    margin-top: 1rem;
  }
}

.mt-3 {
  margin-top: 3rem;
}
@media screen and (max-width: 991px) {
  .mt-3 {
    margin-top: 1.5rem;
  }
}

.mt-4 {
  margin-top: 4rem;
}
@media screen and (max-width: 991px) {
  .mt-4 {
    margin-top: 2rem;
  }
}

.mt-5 {
  margin-top: 5rem;
}
@media screen and (max-width: 991px) {
  .mt-5 {
    margin-top: 2.5rem;
  }
}

.mt-6 {
  margin-top: 6rem;
}
@media screen and (max-width: 991px) {
  .mt-6 {
    margin-top: 3rem;
  }
}

.mt-7 {
  margin-top: 7rem;
}
@media screen and (max-width: 991px) {
  .mt-7 {
    margin-top: 3.5rem;
  }
}

.mt-8 {
  margin-top: 8rem;
}
@media screen and (max-width: 991px) {
  .mt-8 {
    margin-top: 4rem;
  }
}

.mt-9 {
  margin-top: 9rem;
}
@media screen and (max-width: 991px) {
  .mt-9 {
    margin-top: 4.5rem;
  }
}

.mt-10 {
  margin-top: 10rem;
}
@media screen and (max-width: 991px) {
  .mt-10 {
    margin-top: 5rem;
  }
}

.mt-none,
.container .row .col .mt-none {
  margin-top: 0 !important;
}
@media screen and (max-width: 991px) {
  .mt-none,
  .container .row .col .mt-none {
    margin-top: 0 !important;
  }
}

.mb-1 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .mb-1 {
    margin-bottom: 0.5rem;
  }
}

.mb-2 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .mb-2 {
    margin-bottom: 1rem;
  }
}

.mb-3 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .mb-3 {
    margin-bottom: 1.5rem;
  }
}

.mb-4 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 991px) {
  .mb-4 {
    margin-bottom: 2rem;
  }
}

.mb-5 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 991px) {
  .mb-5 {
    margin-bottom: 2.5rem;
  }
}

.mb-6 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 991px) {
  .mb-6 {
    margin-bottom: 3rem;
  }
}

.mb-7 {
  margin-bottom: 7rem;
}
@media screen and (max-width: 991px) {
  .mb-7 {
    margin-bottom: 3.5rem;
  }
}

.mb-8 {
  margin-bottom: 8rem;
}
@media screen and (max-width: 991px) {
  .mb-8 {
    margin-bottom: 4rem;
  }
}

.mb-9 {
  margin-bottom: 9rem;
}
@media screen and (max-width: 991px) {
  .mb-9 {
    margin-bottom: 4.5rem;
  }
}

.mb-10 {
  margin-bottom: 10rem;
}
@media screen and (max-width: 991px) {
  .mb-10 {
    margin-bottom: 5rem;
  }
}

.mb-none,
.container .row .col .mb-none {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .mb-none,
  .container .row .col .mb-none {
    margin-top: 0 !important;
  }
}

.pt-1 {
  padding-top: 1rem;
}
@media screen and (max-width: 991px) {
  .pt-1 {
    padding-top: 0.5rem;
  }
}

.pt-2 {
  padding-top: 2rem;
}
@media screen and (max-width: 991px) {
  .pt-2 {
    padding-top: 1rem;
  }
}

.pt-3 {
  padding-top: 3rem;
}
@media screen and (max-width: 991px) {
  .pt-3 {
    padding-top: 1.5rem;
  }
}

.pt-4 {
  padding-top: 4rem;
}
@media screen and (max-width: 991px) {
  .pt-4 {
    padding-top: 2rem;
  }
}

.pt-5 {
  padding-top: 5rem;
}
@media screen and (max-width: 991px) {
  .pt-5 {
    padding-top: 2.5rem;
  }
}

.pt-6 {
  padding-top: 6rem;
}
@media screen and (max-width: 991px) {
  .pt-6 {
    padding-top: 3rem;
  }
}

.pt-7 {
  padding-top: 7rem;
}
@media screen and (max-width: 991px) {
  .pt-7 {
    padding-top: 3.5rem;
  }
}

.pt-8 {
  padding-top: 8rem;
}
@media screen and (max-width: 991px) {
  .pt-8 {
    padding-top: 4rem;
  }
}

.pt-9 {
  padding-top: 9rem;
}
@media screen and (max-width: 991px) {
  .pt-9 {
    padding-top: 4.5rem;
  }
}

.pt-10 {
  padding-top: 10rem;
}
@media screen and (max-width: 991px) {
  .pt-10 {
    padding-top: 5rem;
  }
}

.pb-1 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .pb-1 {
    padding-bottom: 0.5rem;
  }
}

.pb-2 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .pb-2 {
    padding-bottom: 1rem;
  }
}

.pb-3 {
  padding-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .pb-3 {
    padding-bottom: 1.5rem;
  }
}

.pb-4 {
  padding-bottom: 4rem;
}
@media screen and (max-width: 991px) {
  .pb-4 {
    padding-bottom: 2rem;
  }
}

.pb-5 {
  padding-bottom: 5rem;
}
@media screen and (max-width: 991px) {
  .pb-5 {
    padding-bottom: 2.5rem;
  }
}

.pb-6 {
  padding-bottom: 6rem;
}
@media screen and (max-width: 991px) {
  .pb-6 {
    padding-bottom: 3rem;
  }
}

.pb-7 {
  padding-bottom: 7rem;
}
@media screen and (max-width: 991px) {
  .pb-7 {
    padding-bottom: 3.5rem;
  }
}

.pb-8 {
  padding-bottom: 8rem;
}
@media screen and (max-width: 991px) {
  .pb-8 {
    padding-bottom: 4rem;
  }
}

.pb-9 {
  padding-bottom: 9rem;
}
@media screen and (max-width: 991px) {
  .pb-9 {
    padding-bottom: 4.5rem;
  }
}

.pb-10 {
  padding-bottom: 10rem;
}
@media screen and (max-width: 991px) {
  .pb-10 {
    padding-bottom: 5rem;
  }
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.img-radius img {
  border-radius: 5px;
}

.img-circle img {
  border-radius: 100%;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
}

/*!
    for SVG
------------------------------ */
#symbols {
  display: none;
}

use {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}

.wc-block-components-product-price {
  display: none !important;
}

.is-style-without-price button {
  border: solid;
  font-size: 1rem;
  background-color: #D00018;
  color: #fff;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.is-style-without-price button:hover {
  opacity: 0.65;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.woocommerce nav[class$=navigation] ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem;
}

form.variations_form {
  position: relative;
}
form.variations_form table.variations {
  width: 100%;
}
form.variations_form th.label {
  display: none;
}
form.variations_form td.value {
  position: relative;
}
form.variations_form td.value select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 20px;
  width: 100%;
  border: solid 1px #484848;
}
form.variations_form td.value::after {
  position: absolute;
  top: 23px;
  right: 20px;
  width: 12px;
  height: 10px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
form.variations_form td.value .reset_variations {
  display: none !important;
}
form.variations_form .single_variation_wrap .woocommerce-variation.single_variation {
  padding-top: 10px;
}
form.variations_form .single_variation_wrap .single_variation * {
  display: inline-block;
  vertical-align: top;
}
form.variations_form .single_variation_wrap .single_variation div:last-child {
  padding-top: 5px;
}
form.variations_form .single_variation_wrap .single_variation div:last-child::before {
  content: "/";
  padding: 0 1rem;
}
form.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart button {
  font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif;
  background-color: #D00018;
  border-radius: 2rem;
  color: #fff;
  padding: 0.5rem 2rem;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 475px) {
  .wc-block-components-address-card__edit {
    width: 2rem;
  }
}
.quantity {
  display: inline-block;
  vertical-align: super;
}
.quantity input {
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  width: 100px;
  border: none;
  border-radius: 20px;
}
.quantity input::before {
  content: "申し込み人数：";
}

form.cart .price {
  font: bold 2.3rem/2.3rem "Outfit", sans-serif;
  display: inline-block;
}
form.cart button {
  font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif;
  background-color: #D00018;
  border-radius: 2rem;
  color: #fff;
  display: block;
  padding: 0.5rem 2rem;
  margin: 1rem 0;
  text-align: center;
}
form.cart button.reserve-summary-end {
  background-color: #000;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
  display: none;
}

.wc-blocks-components-select select.wc-blocks-components-select__select {
  width: 99.8%;
  margin: 0px 0px;
  background-color: #fff;
  height: 2.05rem;
  text-indent: 0.5rem;
  padding: 1em 0 0;
}

.woocommerce-order,
.woocommerce .woocommerce-customer-details, .woocommerce .woocommerce-order-details, .woocommerce section.woocommerce-order-downloads {
  margin-bottom: 0 !important;
  padding: 1rem 0;
}

@media screen and (max-width: 475px) {
  .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    padding-top: 0 !important;
    margin: 0;
  }
}
.woocommerce-button button pay {
  display: none !important;
}

.smf-form p {
  margin: 1.5rem 0;
}

.smf-placeholder,
.smf-button-control {
  position: relative;
}
.smf-placeholder .smf-select-control__control,
.smf-button-control .smf-select-control__control {
  padding: 20px 50px 20px 30px;
  border: none;
}
.smf-placeholder span.smf-select-control__toggle,
.smf-button-control span.smf-select-control__toggle {
  border-radius: 10px;
}

.smf-form--letter .smf-item__col--label {
  padding-bottom: 10px;
}

.smf-form--letter .smf-text-control__control,
.smf-form .smf-textarea-control__control {
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
}

.smf-action .smf-button-control__control {
  background-image: none;
  font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif !important;
  padding: 1rem !important;
  width: 40% !important;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 475px) {
  .smf-action .smf-button-control__control {
    width: 100% !important;
  }
}
.smf-action .smf-button-control__control:hover {
  opacity: 0.65;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
/*!
    PC Layout
    768px -
------------------------------ */
* {
  min-height: 0;
  min-width: 0;
}

html {
  font-size: 125% !important;
}
@media screen and (max-width: 475px) {
  html {
    font-size: 100% !important;
  }
}

html body {
  width: 100%;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #000;
  background-color: #F4F4F2;
  overflow-y: scroll;
  position: relative;
  top: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  display: none;
}
@media screen and (max-width: 475px) {
  body.index-overfrow {
    width: 100vw;
    overflow-x: hidden;
  }
}
h2, h3, time, p {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

div[class$=box]:has(select) {
  position: relative;
}
div[class$=box]:has(select) select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  width: 100%;
}
@media screen and (max-width: 475px) {
  div[class$=box]:has(select) select {
    font-size: 0.8rem;
    padding: 10px;
  }
}
div[class$=box]:has(select)::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 12px;
  height: 10px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

#splash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: white;
}

#splash-logo img {
  visibility: hidden;
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  #splash-logo img {
    max-width: 40vw;
  }
}

.fadeup {
  -webkit-animation-name: fadeupAnime;
          animation-name: fadeupAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeupAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeupAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.logo {
  width: 20rem;
  fill: #fff;
}

.wrap {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem;
  height: 100%;
  height: 100svh;
}

@media screen and (min-width: 992px) {
  .pc-header {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font: 400 0.9rem/1.08rem "Noto Sans JP", sans-serif;
    font-weight: 600;
    height: 80px;
    padding: 8.5px 25px;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    z-index: 1;
  }
  .pc-header .head_logo {
    height: 100%;
  }
  .pc-header .head_logo a {
    display: block;
    height: 100%;
  }
  .pc-header .head_logo a img {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 100%;
  }
  .pc-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1rem;
  }
  .pc-header ul a {
    color: #000;
    display: block;
    padding: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .pc-header ul a.head-sns {
    border-radius: 50%;
    padding: 12px;
    background-color: #484848;
  }
  .pc-header ul a.head-sns img {
    height: 30px;
    width: 30px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp-header {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .pc-header {
    display: none;
  }
  .sp-header {
    background-color: #fff;
    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;
    padding: 10px 1em;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1;
  }
  .sp-header-logo {
    height: 40px;
  }
  .sp-header-logo img {
    height: 100%;
    width: auto;
  }
  .sp-header-logo.view-logo {
    display: block;
  }
  .sp-header-icon {
    position: relative;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    grid-gap: 0.5rem;
    z-index: 11;
  }
  .sp-header-icon-item {
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding: 5px 0;
    height: 30px;
    width: 30px;
    vertical-align: sub;
  }
  .sp-header-icon-item::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
  }
  .sp-header-icon-item.item-cart::before {
    content: url(../img/icon-cart_red.svg);
  }
  .sp-header-icon-item.item-bars::before {
    content: url(../img/icon-bars_bk.svg);
  }
  .sp-header-icon-item.active::before {
    content: url(../img/icon-xmark.svg);
  }
  .sp-header ul {
    display: none;
    background: #fff;
    height: 150svh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .sp-header ul .head_logo {
    display: inline-block;
    padding: 0.5rem 1rem;
    width: calc((100vw - 2rem) / 16 * 5 + 0.5rem);
    margin-top: calc(47px - 0.5rem);
    margin-left: -2.5rem;
    width: auto;
  }
  .sp-header ul .head_logo img {
    position: relative;
    width: calc((100vw - 2rem) / 16 * 4 + 1px);
    min-width: 80px;
    max-width: 200px;
    padding: 0.5rem;
  }
  .sp-header ul li {
    padding: 0.5rem;
    margin-left: 2rem;
  }
  .sp-header ul li a {
    color: #000;
    font: 700 1.2rem/2rem "Noto Sans JP", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp-header ul li a span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    opacity: 0.45;
    padding-left: 1rem;
  }
}
main {
  width: 100%;
}
main.page {
  padding-top: 80px !important;
}
main.index {
  width: 100vw;
  overflow-x: hidden;
}
main section {
  margin: 0 auto;
  padding: 127px 1em;
  width: 100%;
  max-width: 1280px;
}
@media screen and (max-width: 991px) {
  main section {
    padding: 3rem 1rem;
  }
  main section[id^=policy] {
    padding: 0 1rem;
  }
}
main section .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  position: relative;
  z-index: 0;
}
main section .heading h1 {
  font: bold 3.6rem/3.6rem "Outfit", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  main section .heading h1 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 475px) {
  main section .heading h1 {
    font: bold 2.3rem/2.3rem "Outfit", sans-serif;
  }
}
@media screen and (max-width: 475px) {
  main section .heading {
    display: block;
    margin-bottom: 0.5rem;
  }
  main section .heading * {
    display: block;
  }
}
main section[id^=policy] .heading {
  display: block;
}
main section[id^=policy] .heading h1 {
  font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width: 475px) {
  main section[id^=policy] .heading h1 {
    font: 700 1.2rem/2rem "Noto Sans JP", sans-serif;
  }
}
main section a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
main section a:hover {
  color: #000;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media screen and (max-width: 475px) {
  main section a:hover:hover {
    -webkit-transform: none;
            transform: none;
  }
}
main section a:visited {
  color: #000;
}

footer {
  margin: 0 auto !important;
  padding: 3rem 0;
  width: 100%;
  background: #fff;
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 2rem;
}
@media screen and (max-width: 768px) {
  footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    grid-gap: 1rem;
    padding: 1rem;
    text-align: center;
  }
}
footer ul a, footer ul a:visited, footer ul a:hover {
  color: #000;
}
footer ul a:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (max-width: 475px) {
  footer ul a:hover {
    -webkit-transform: none;
            transform: none;
  }
}
footer ul.footer-policy {
  font-size: 0.8rem;
}
footer .footer-sns {
  text-align: center;
  margin: 1rem 0;
}
@media screen and (max-width: 991px) {
  footer .footer-sns {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 475px) {
  footer .footer-sns {
    padding-top: 2rem;
  }
}
footer .footer-sns a {
  margin: 0 15px;
}
footer .footer-sns a img {
  border-radius: 50%;
  padding: 12px;
  height: 35px;
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
footer .footer-sns-bk > img {
  background-color: #000;
}
footer .footer-sns-wh > img {
  background-color: #F4F4F2;
}
footer .footer-sns-wh > img:hover {
  background-color: #484848;
}
footer .footer-caution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem auto 0;
  max-width: 1280px;
  width: 80%;
}
@media screen and (max-width: 475px) {
  footer .footer-caution {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    margin: 3rem auto 0;
  }
  footer .footer-caution img {
    height: 100px;
    margin-top: 1rem;
  }
}
footer .footer-caution * {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
footer .footer-caution h1 {
  margin-bottom: 0;
}
footer .footer-caution p {
  text-align: left;
}

.btn {
  display: inline-block;
  padding: 0.5rem 2rem;
  text-align: center;
  font-size: 1rem;
  background-color: #D00018;
  border-radius: 1rem;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
}
.btn.btn-blue {
  background-color: #649AE3;
  font-size: 1rem;
}
.btn.btn-red-line {
  color: #D00018;
  background-color: white;
  border: 1rem solid #D00018;
  font-size: 1rem;
}
.btn.btn-blue-line {
  color: #649AE3;
  background-color: white;
  border: 1rem solid #649AE3;
  font-size: 1rem;
}
.btn.btn-gray {
  background-color: #484848;
  border-radius: 2rem;
  font-size: 1rem;
}
.btn:hover {
  color: #fff;
}
.btn:visited {
  color: #fff;
}

a {
  color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  opacity: 0.75;
  color: #000;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media screen and (max-width: 475px) {
  a:hover {
    -webkit-transform: none;
            transform: none;
  }
}
a:visited {
  color: inherit;
}

.box-radius, .reserve-cat-item, .reserve-title-txt-flag span, .cases-list-detail-subtitle, .lesson-lists-bundle .lesson-list-info-category-item, .smf-action .smf-button-control__control {
  border-radius: 3rem;
  color: #fff;
  font-size: 0.8em;
  padding: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.box-radius.black, .black.reserve-cat-item, .reserve-title-txt-flag span.black, .black.cases-list-detail-subtitle, .lesson-lists-bundle .black.lesson-list-info-category-item, .smf-action .black.smf-button-control__control {
  background-color: #000;
  color: #fff;
}
.box-radius.gray, .gray.reserve-cat-item, .reserve-title-txt-flag span.gray, .gray.cases-list-detail-subtitle, .lesson-lists-bundle .gray.lesson-list-info-category-item, .smf-action .gray.smf-button-control__control {
  background-color: #F4F4F2;
  color: #fff;
}
.box-radius.light-gray, .light-gray.reserve-cat-item, .reserve-title-txt-flag span.light-gray, .light-gray.cases-list-detail-subtitle, .lesson-lists-bundle .light-gray.lesson-list-info-category-item, .smf-action .light-gray.smf-button-control__control {
  background-color: #D9D9D9;
  color: #fff;
}
.box-radius.dark-gray, .dark-gray.reserve-cat-item, .reserve-title-txt-flag span.dark-gray, .dark-gray.cases-list-detail-subtitle, .lesson-lists-bundle .dark-gray.lesson-list-info-category-item, .smf-action .dark-gray.smf-button-control__control, .smf-action .smf-button-control__control[data-action=back] {
  background-color: #484848;
  color: #fff;
}
.box-radius.red, .red.reserve-cat-item, .reserve-title-txt-flag span.red, .red.cases-list-detail-subtitle, .lesson-lists-bundle .red.lesson-list-info-category-item, .smf-action .smf-button-control__control {
  background-color: #D00018;
  color: #fff;
}
.box-radius.blue, .blue.reserve-cat-item, .reserve-title-txt-flag span.blue, .blue.cases-list-detail-subtitle, .lesson-lists-bundle .blue.lesson-list-info-category-item, .smf-action .blue.smf-button-control__control {
  background-color: #649AE3;
  color: #fff;
}
.box-radius.light-blue, .light-blue.reserve-cat-item, .reserve-title-txt-flag span.light-blue, .light-blue.cases-list-detail-subtitle, .lesson-lists-bundle .light-blue.lesson-list-info-category-item, .smf-action .light-blue.smf-button-control__control {
  background-color: #0F62AA;
  color: #fff;
}
.box-radius.blue-green, .blue-green.reserve-cat-item, .reserve-title-txt-flag span.blue-green, .blue-green.cases-list-detail-subtitle, .lesson-lists-bundle .blue-green.lesson-list-info-category-item, .smf-action .blue-green.smf-button-control__control {
  background-color: #32AB9F;
  color: #fff;
}
.box-radius.green, .green.reserve-cat-item, .reserve-title-txt-flag span.green, .green.cases-list-detail-subtitle, .lesson-lists-bundle .green.lesson-list-info-category-item, .smf-action .green.smf-button-control__control {
  background-color: #0D9158;
  color: #fff;
}
.box-radius.light-green, .light-green.reserve-cat-item, .reserve-title-txt-flag span.light-green, .light-green.cases-list-detail-subtitle, .lesson-lists-bundle .light-green.lesson-list-info-category-item, .smf-action .light-green.smf-button-control__control {
  background-color: #0FAA68;
  color: #fff;
}
.box-radius.pink, .pink.reserve-cat-item, .reserve-title-txt-flag span.pink, .pink.cases-list-detail-subtitle, .lesson-lists-bundle .pink.lesson-list-info-category-item, .smf-action .pink.smf-button-control__control {
  background-color: #E364A4;
  color: #fff;
}
.box-radius.light-orange, .light-orange.reserve-cat-item, .reserve-title-txt-flag span.light-orange, .light-orange.cases-list-detail-subtitle, .lesson-lists-bundle .light-orange.lesson-list-info-category-item, .smf-action .light-orange.smf-button-control__control {
  background-color: #DE8B6D;
  color: #fff;
}
.box-radius.orange, .orange.reserve-cat-item, .reserve-title-txt-flag span.orange, .orange.cases-list-detail-subtitle, .lesson-lists-bundle .orange.lesson-list-info-category-item, .smf-action .orange.smf-button-control__control {
  background-color: #FFAE3B;
  color: #fff;
}
.box-radius.yellow, .yellow.reserve-cat-item, .reserve-title-txt-flag span.yellow, .yellow.cases-list-detail-subtitle, .lesson-lists-bundle .yellow.lesson-list-info-category-item, .smf-action .yellow.smf-button-control__control {
  background-color: #DE8014;
  color: #fff;
}
.box-radius.purple, .purple.reserve-cat-item, .reserve-title-txt-flag span.purple, .purple.cases-list-detail-subtitle, .lesson-lists-bundle .purple.lesson-list-info-category-item, .smf-action .purple.smf-button-control__control {
  background-color: #A164E3;
  color: #fff;
}
.list-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 15vh 10vw;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  height: auto;
  max-height: 70vh;
  width: 80vw;
  background: #fff;
  border-radius: 20px;
  padding: 40px 100px;
}
@media screen and (max-width: 991px) {
  .list-modal {
    padding: 2rem;
  }
}
@media screen and (max-width: 475px) {
  .list-modal {
    padding: 1rem 2rem 2rem;
    max-height: 90vh;
  }
}
.list-modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 60px;
  height: auto;
  padding: 40px 0;
}
@media screen and (max-width: 991px) {
  .list-modal-container {
    -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;
  }
}
@media screen and (max-width: 475px) {
  .list-modal-container {
    grid-gap: 0.5rem;
    padding-bottom: 0;
  }
}
.list-modal-container img {
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: auto;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
@media screen and (max-width: 991px) {
  .list-modal-container img {
    width: 55%;
  }
}
@media screen and (max-width: 475px) {
  .list-modal-container img {
    width: auto;
    height: 240px;
    min-height: 30vh;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.list-modal-container-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 30px;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 475px) {
  .list-modal-container-detail {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    grid-gap: 0;
  }
}
.list-modal-container-detail h2 {
  font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 475px) {
  .list-modal-container-detail h2 {
    font: 700 1.2rem/2rem "Noto Sans JP", sans-serif;
  }
}
.list-modal-container-detail h2 span {
  font-family: Outfit, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  text-transform: capitalize;
  padding-left: 1rem;
}
@media screen and (max-width: 475px) {
  .list-modal-container-detail h2 span {
    padding-left: 0.5rem;
    display: block;
  }
}
.list-modal-container-detail p {
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 475px) {
  .list-modal-container-detail p {
    font: 700 0.8rem/1.28rem "Noto Sans JP", sans-serif;
    text-align: left;
  }
}
.list-modal-container-detail p span {
  font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif;
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 475px) {
  .list-modal-container-detail p span {
    font: 700 0.8rem/1.28rem "Noto Sans JP", sans-serif;
    text-align: center;
  }
}
.list-modal-container-detail a {
  color: inherit;
  font-family: Outfit, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 475px) {
  .list-modal-container-detail a {
    background-color: #000;
    border-radius: 2rem;
    color: #fff;
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.list-modal-container-detail a::before {
  content: url(../img/icon-x_bk.svg);
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 2rem;
  width: 2rem;
  padding-right: 0.5rem;
  vertical-align: text-top;
}
@media screen and (max-width: 475px) {
  .list-modal-container-detail a::before {
    content: url(../img/icon-x_wh.svg);
    height: 1.5rem;
    vertical-align: middle;
  }
}

.modal-close {
  border-radius: 50%;
  height: 65px;
  width: 65px;
  background: url(../img/icon-xmark.svg) center/45% no-repeat #F4F4F2;
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.modal-close:hover {
  opacity: 0.65;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
@media screen and (max-width: 475px) {
  .modal-close:hover {
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 475px) {
  .modal-close {
    height: 65px;
    width: 65px;
    top: 0.5rem;
    right: 0.5rem;
  }
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  max-width: 1280px;
  margin: 175px auto 0;
  grid-gap: 60px;
}
@media screen and (max-width: 1116px) {
  .hero {
    margin: 6rem auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.hero-slider {
  width: 56.25vw;
  max-width: 900px;
  position: relative;
}
@media screen and (max-width: 1116px) {
  .hero-slider {
    width: 90vw;
    max-width: 90vw;
  }
}
.hero-slider .slick-arrow {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  height: 40px;
  width: 40px;
  background: url(../img/icon-arrow.svg) center/contain no-repeat;
  margin: 10px;
  z-index: 1;
}
.hero-slider .slick-arrow.slick-next {
  left: auto;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hero-slider a {
  cursor: pointer;
}
.hero-slider img {
  border-radius: 20px;
  width: 56.25vw;
  max-width: 900px;
  height: 31.640625vw;
  max-height: 506.25px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1116px) {
  .hero-slider img {
    width: 90vw;
    max-width: 90vw;
    height: 50.625vw;
    max-height: 50.625vw;
  }
}
.hero-thumbnail {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 12px;
}
@media screen and (max-width: 475px) {
  .hero-thumbnail {
    margin-top: 8px;
    grid-gap: 8px;
  }
}
.hero-thumbnail img {
  border-radius: 10px;
  width: 13.125vw;
  max-width: 210px;
  height: 7.3828125vw;
  max-height: 118.125px;
}
@media screen and (max-width: 475px) {
  .hero-thumbnail img {
    width: 21vw;
    max-width: 336px;
    height: 11.8125vw;
    max-height: 189px;
  }
}
.hero-lesson {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero-lesson-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1116px) {
  .hero-lesson-heading {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.hero-lesson-heading h1 {
  font: bold 2.3rem/2.3rem "Outfit", sans-serif;
  float: left;
  padding-right: 10px;
}
.hero-lesson-heading a.box-radius, .hero-lesson-heading a.reserve-cat-item, .hero-lesson-heading a.cases-list-detail-subtitle, .hero-lesson-heading .lesson-lists-bundle a.lesson-list-info-category-item, .lesson-lists-bundle .hero-lesson-heading a.lesson-list-info-category-item, .hero-lesson-heading .smf-action a.smf-button-control__control, .smf-action .hero-lesson-heading a.smf-button-control__control {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  text-align: center;
}
@media screen and (max-width: 1116px) {
  .hero-lesson-heading a.box-radius, .hero-lesson-heading a.reserve-cat-item, .hero-lesson-heading a.cases-list-detail-subtitle, .hero-lesson-heading .lesson-lists-bundle a.lesson-list-info-category-item, .lesson-lists-bundle .hero-lesson-heading a.lesson-list-info-category-item, .hero-lesson-heading .smf-action a.smf-button-control__control, .smf-action .hero-lesson-heading a.smf-button-control__control {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.hero-lesson-heading h2 {
  font: 400 0.9rem/1.08rem "Noto Sans JP", sans-serif;
  clear: both;
}
@media screen and (max-width: 1116px) {
  .hero-lesson-heading h2 {
    width: 100%;
  }
}
.hero-lesson-lists {
  clear: both;
}
.hero-lesson .lesson-lists-bundle .lesson-list {
  padding: 25px 15px;
  grid-gap: 12px;
}
@media screen and (max-width: 475px) {
  .hero-lesson .lesson-lists-bundle .lesson-list {
    -ms-flex-flow: nowrap;
        flex-flow: nowrap;
  }
}
.hero-lesson .lesson-lists-bundle .lesson-list-date {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  text-align: center;
}
.hero-lesson .lesson-lists-bundle .lesson-list-date span {
  font-size: 1.2rem;
}
.hero-lesson .lesson-lists-bundle .lesson-list-info {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.hero-lesson .lesson-lists-bundle .lesson-list-info-category-item {
  font-size: 12px;
  padding: 6px 20px 7px;
}
.hero-lesson .lesson-lists-bundle .lesson-list-info-title {
  font-size: 16px;
}

.front-concept {
  margin: 150px auto 0;
  padding: 0;
  position: relative;
  width: 80vw;
}
.front-concept-container {
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0;
  width: 65%;
}
@media screen and (max-width: 475px) {
  .front-concept-container {
    padding: 200px 0 2rem;
    width: 100%;
  }
}
.front-concept-container::before {
  content: "";
  border-radius: 20px;
  background-color: #fff;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 5vw;
}
@media screen and (max-width: 475px) {
  .front-concept-container::before {
    width: 100vw;
    right: -5vw;
  }
}
.front-concept-container::after {
  content: "";
  background: url(../img/img-frontconcept-01.png) right top/contain no-repeat;
  display: block;
  height: calc(100% + 110px);
  width: 35vw;
  position: absolute;
  top: -110px;
  right: -5vw;
}
@media screen and (max-width: 1117px) {
  .front-concept-container::after {
    width: 50vw;
    top: -120px;
    right: -10vw;
  }
}
@media screen and (max-width: 475px) {
  .front-concept-container::after {
    height: 350px;
    width: 90vw;
    top: -120px;
    right: -15vw;
  }
}
.front-concept-container h1 {
  font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 991px) {
  .front-concept-container h1 {
    text-align: right;
  }
}
.front-concept-container h1 img {
  min-width: 250px;
  width: 40%;
  margin: -6px 12px 0 0;
}
@media screen and (max-width: 991px) {
  .front-concept-container h1 img {
    float: left;
    width: 95%;
    max-width: 460px;
  }
}
.front-concept-container p {
  margin: 30px 0 45px;
}
.front-concept-container a {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 8px 3rem;
  z-index: 1;
}

.front-column {
  background-color: #0D9158;
  max-width: none;
  position: relative;
  z-index: -1;
  margin-top: -300px;
  padding-top: 240px;
}
@media screen and (max-width: 991px) {
  .front-column {
    padding-top: 340px;
  }
}
.front-column-container {
  width: 80vw;
  max-width: 1280px;
  margin: auto;
}
.front-column-container .heading {
  color: #fff;
}

.lesson {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 40px;
}
@media screen and (max-width: 475px) {
  .lesson {
    grid-gap: 15px;
  }
}
.lesson-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 12px;
  width: 100%;
}
.lesson-select_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.lesson-lists {
  width: 100%;
}
.lesson-lists h2 {
  font-family: Outfit, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: -1rem;
}
@media screen and (max-width: 475px) {
  .lesson-lists h2 {
    font-size: 1.5rem;
    margin: -0.5rem 0;
  }
}
.lesson-lists-bundle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 1rem;
}
.lesson-lists-bundle li {
  width: 100%;
}
@media screen and (max-width: 475px) {
  .lesson-lists-bundle li {
    padding: 3px 10px !important;
    font-size: 10px !important;
  }
}
.lesson-lists-bundle .lesson-list {
  background-color: #fff;
  border-radius: 20px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  width: 100%;
}
@media screen and (max-width: 475px) {
  .lesson-lists-bundle .lesson-list {
    padding: 8px 15px;
    grid-gap: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.lesson-lists-bundle .lesson-list-date {
  font-family: Outfit, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  width: 15%;
}
@media screen and (max-width: 475px) {
  .lesson-lists-bundle .lesson-list-date {
    font-size: 24px;
    letter-spacing: 3px;
    width: 100%;
    text-align: left;
  }
}
.lesson-lists-bundle .lesson-list-date span {
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 475px) {
  .lesson-lists-bundle .lesson-list-date span {
    font-size: 20px;
    display: inline-block;
  }
}
.lesson-lists-bundle .lesson-list-img {
  width: 384px;
  height: 216px;
}
@media screen and (max-width: 991px) {
  .lesson-lists-bundle .lesson-list-img {
    width: 256px;
    height: 144px;
  }
}
@media screen and (max-width: 475px) {
  .lesson-lists-bundle .lesson-list-img {
    width: 40vw;
    height: 22.5vw;
  }
}
.lesson-lists-bundle .lesson-list-img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
.lesson-lists-bundle .lesson-list-info {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 12px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 991px) {
  .lesson-lists-bundle .lesson-list-info {
    width: auto;
    grid-gap: 3px;
  }
}
.lesson-lists-bundle .lesson-list-info-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 8px;
}
.lesson-lists-bundle .lesson-list-info-teacher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 12px;
}
@media screen and (max-width: 991px) {
  .lesson-lists-bundle .lesson-list-info-teacher {
    grid-gap: 0;
  }
}
.lesson-lists-bundle .lesson-list-info-teacher li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 991px) {
  .lesson-lists-bundle .lesson-list-info-teacher li {
    padding: 3px !important;
  }
}
.lesson-lists-bundle .lesson-list-info-teacher img {
  border-radius: 50%;
  width: 106.6666666667px;
}
@media screen and (max-width: 991px) {
  .lesson-lists-bundle .lesson-list-info-teacher img {
    width: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.lesson-more {
  margin: 20px auto 0;
}

.concept {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 127px 10vw 0;
  position: relative;
  width: 80vw;
  max-width: none;
}
@media screen and (max-width: 991px) {
  .concept {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .concept {
    padding: calc(50.625vw - 20px) 0 0;
    width: 100%;
  }
}
.concept::before {
  content: "";
  background: url(../img/img-concept-01.png) left top/contain no-repeat;
  height: calc(80% - 127px);
  max-width: 1200px;
  width: 50vw;
  position: absolute;
  top: 127px;
  left: 55vw;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .concept::before {
    height: 100%;
    width: 100vw;
    top: 0;
    left: 5vw;
  }
}
.concept-title {
  font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  grid-gap: 5px;
}
@media screen and (max-width: 750px) {
  .concept-title {
    font-size: 1.4rem;
  }
}
.concept-title span {
  background-color: #D00018;
  color: #fff;
  margin-left: -80px;
  padding: 8px 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 750px) {
  .concept-title span {
    margin-left: 0;
  }
}
.concept-title span:first-child {
  padding: 3px 40px 3px 80px;
}
@media screen and (max-width: 750px) {
  .concept-title span:first-child {
    padding: 3px 10px;
  }
}
.concept-title span:last-child {
  padding: 3px 20px 3px 80px;
}
@media screen and (max-width: 750px) {
  .concept-title span:last-child {
    padding: 3px 0;
  }
}
.concept-box {
  width: 80vw;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 10%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .concept-box {
    width: 90%;
    padding-bottom: 70vw;
  }
}
.concept-box::before {
  content: "";
  background: url(../img/img-concept-02.png) right top/contain no-repeat;
  height: 100%;
  max-width: 1200px;
  width: 50%;
  position: absolute;
  top: 130px;
  right: -10vw;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .concept-box::before {
    background: url(../img/img-concept-03.png) bottom/contain no-repeat;
    height: 100vw;
    max-height: 500px;
    width: 100%;
    top: auto;
    right: -10vw;
    bottom: 40px;
  }
}
.concept-box h2 {
  font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.3rem;
  margin: 45px 0;
}
.concept-box h2 img {
  width: 35%;
  margin-right: 1rem;
}
@media screen and (max-width: 750px) {
  .concept-box h2 img {
    width: calc(100% - 7rem);
    margin: -5px 0.5rem 0 0;
  }
}
.concept-box-txt {
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  grid-gap: 1rem;
}
.concept-box-txt p {
  padding-bottom: 0.3rem;
  width: 55%;
}
@media screen and (max-width: 750px) {
  .concept-box-txt p {
    width: 100%;
  }
}

.curriculum {
  background-color: #0FAA68;
  max-width: none;
  position: relative;
}
@media screen and (max-width: 991px) {
  .curriculum {
    padding: 4rem 1rem;
  }
}
.curriculum .heading {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .curriculum .heading {
    margin-bottom: 2rem;
  }
}
.curriculum-container {
  width: 80vw;
  max-width: 1280px;
  margin: auto;
}
@media screen and (max-width: 991px) {
  .curriculum-container {
    width: 100%;
  }
}
.curriculum-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
  grid-gap: 32px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .curriculum-list {
    display: inline-table;
    margin: 0 -10px;
  }
}
.curriculum-list-detail {
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media screen and (max-width: 991px) {
  .curriculum-list-detail {
    width: calc(49% - 20px);
    display: inline-table;
    margin: 10px;
  }
}
.curriculum-list-detail img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.curriculum-list-detail h3 {
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
}
.curriculum-list-modal {
  display: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 100px;
  position: fixed;
  z-index: 9999;
  top: 15vh;
  left: 10vw;
  right: 10vw;
  bottom: 15vh;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(1);
          transform: translateZ(1);
  max-height: 80vh;
  width: 80vw;
}
@media screen and (max-width: 991px) {
  .curriculum-list-modal {
    padding: 2rem;
  }
}
@media screen and (max-width: 475px) {
  .curriculum-list-modal {
    padding: 1rem;
  }
}
.curriculum-list-modal .slick-slider {
  position: initial;
}
.curriculum-list-modal .slide {
  height: calc(80vh - 120px);
  overflow-y: scroll;
}
.curriculum-list-modal span[class^=arrow] {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  left: -70px;
  height: 40px;
  width: 40px;
  background: url(../img/icon-arrow.svg) center/contain no-repeat;
  margin: 10px;
  z-index: 1;
}
@media screen and (max-width: 475px) {
  .curriculum-list-modal span[class^=arrow] {
    top: 25vh;
    left: -30px;
  }
}
.curriculum-list-modal span[class^=arrow].arrow-next {
  left: auto;
  right: -30px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.curriculum-list-modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .curriculum-list-modal-container {
    height: auto;
    padding: 2rem 0 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.curriculum-list-modal-img {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
.curriculum-list-modal-img img {
  border-radius: 10px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .curriculum-list-modal-img img {
    height: 25vh;
  }
}
.curriculum-list-modal-txt {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
}
@media screen and (max-width: 475px) {
  .curriculum-list-modal-txt h3 {
    font-size: 14px;
    text-align: center;
  }
}
.curriculum-list-modal-txt h2 {
  font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
  margin: 10px 0 30px;
}
.curriculum-list-modal-txt h2.beginner {
  color: #DE8B6D;
}
.curriculum-list-modal-txt h2.daily {
  color: #32AB9F;
}
.curriculum-list-modal-txt h2.intermediate {
  color: #FFAE3B;
}
.curriculum-list-modal-txt h2.group {
  color: #649AE3;
}
.curriculum-list-modal-txt h2.online {
  color: #A164E3;
}
.curriculum-list-modal-txt h2.applied {
  color: #0D9158;
}
.curriculum-list-modal-txt h2.tournament {
  color: #DE8014;
}
.curriculum-list-modal-txt h2.ladies {
  color: #E364A4;
}
.curriculum-list-modal-txt h2.specialty {
  color: #0F62AA;
}
@media screen and (max-width: 475px) {
  .curriculum-list-modal-txt h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4em;
    margin: 10px 0;
    text-align: center;
  }
}
@media screen and (max-width: 475px) {
  .curriculum-list-modal-txt p {
    font-size: 16px;
  }
}

.teacher {
  position: relative;
}
.teacher-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 475px) {
  .teacher-list {
    display: block;
    text-align: center;
  }
}
.teacher-list-detail {
  text-align: center;
  width: calc(26% - 40px);
}
@media screen and (max-width: 1116px) {
  .teacher-list-detail {
    width: calc(30% - 40px);
  }
}
@media screen and (max-width: 475px) {
  .teacher-list-detail {
    width: 45%;
    display: inline-block;
  }
}
.teacher-list-detail img {
  border-radius: 50%;
  height: auto;
  width: 100%;
}
.teacher-list-detail h2 {
  color: #000;
}

.cases {
  background-color: rgba(208, 0, 24, 0.05);
  max-width: none;
  position: relative;
}
@media screen and (max-width: 991px) {
  .cases {
    padding-bottom: 3rem;
  }
}
.cases-container {
  width: 80vw;
  max-width: 1280px;
  margin: auto;
}
.cases-readtxt {
  margin: 30px 0;
}
@media screen and (max-width: 475px) {
  .cases-readtxt {
    font: 400 0.8rem/1.28rem "Noto Sans JP", sans-serif;
  }
}
.cases-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 991px) {
  .cases-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.cases-list-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  grid-gap: 10px;
}
.cases-list-detail-subtitle {
  margin: 0 auto -1.6rem;
}
@media screen and (max-width: 991px) {
  .cases-list-detail-subtitle {
    font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
  }
}
.cases-list-detail img {
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .cases-list-detail img {
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.cases-list-detail_use {
  position: relative;
}
.cases-list-detail_use img {
  height: 260px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cases-list-detail_use img.cases-list-detail_use_img01 {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  background-color: #fff;
}
.cases-list-detail_use .cases-list-detail-subtitle {
  position: absolute;
  right: 30px;
  top: calc(130px - 3rem);
}
@media screen and (max-width: 991px) {
  .cases-list-detail_use .cases-list-detail-subtitle {
    font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
    top: calc(110px - 3rem);
  }
}
.cases-list-detail_use h2 {
  font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif;
  text-align: right;
  position: absolute;
  right: 30px;
  top: 130px;
}
@media screen and (max-width: 991px) {
  .cases-list-detail_use h2 {
    font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
    top: 110px;
  }
}
.cases-list-detail_use .white {
  color: #fff;
}
.cases-list .list-modal img {
  border-radius: 20px;
}
.cases-intro {
  margin: auto;
  text-align: center;
}
.cases-intro p {
  margin: 90px 0 30px;
  font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6em;
}
@media screen and (max-width: 991px) {
  .cases-intro p {
    text-align: left;
  }
}
.cases-intro a {
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
  border-radius: 30px;
  padding: 10px 110px;
}
@media screen and (max-width: 991px) {
  .cases-intro a {
    font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif;
    padding: 10px;
  }
}
@media screen and (max-width: 475px) {
  .cases-intro a {
    width: 100%;
    display: block;
  }
}

.reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  grid-gap: 40px;
}
.reserve-back {
  color: #000;
  display: inline-block;
}
.reserve-back img {
  margin-top: -4px;
}
.reserve-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .reserve-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
@media screen and (max-width: 475px) {
  .reserve-title {
    grid-gap: 0.5rem;
  }
}
.reserve-title-txt {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 20px;
}
@media screen and (max-width: 991px) {
  .reserve-title-txt {
    grid-gap: 10px;
    width: 100%;
  }
}
.reserve-title-txt h1 {
  font: 700 1.6rem/2.61rem "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 475px) {
  .reserve-title-txt h1 {
    font: 700 1.2rem/2rem "Noto Sans JP", sans-serif;
  }
}
.reserve-title-txt .reserve-status {
  color: #fff;
  margin-bottom: 20px;
  padding: 5px 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.reserve-title-txt .reserve-status.status-open {
  background-color: #D00018;
}
.reserve-title-txt .reserve-status.status-closed {
  background-color: #000;
}
.reserve-title-txt-flag span {
  display: inline-block;
  margin-right: 0.5rem;
}
@media screen and (max-width: 475px) {
  .reserve-title-txt {
    grid-gap: 0;
  }
}
.reserve-title img {
  border-radius: 20px;
  width: 768px;
  height: 432px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .reserve-title img {
    width: 64vw;
    height: 36vw;
  }
}
@media screen and (max-width: 475px) {
  .reserve-title img {
    height: calc((100vw - 2rem) / 16 * 9);
    width: calc(100vw - 2rem);
  }
}
.reserve-cat-item {
  margin: 0.5em 0.5em 0.5em 0;
}
.reserve-teachers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 991px) {
  .reserve-teachers {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 475px) {
  .reserve-teachers {
    grid-gap: 10px;
  }
}
.reserve-teachers-item {
  position: relative;
}
@media screen and (max-width: 991px) {
  .reserve-teachers-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 75px;
  }
}
.reserve-teachers-item img {
  border-radius: 50%;
  max-height: 100px;
  width: 100px;
}
@media screen and (max-width: 475px) {
  .reserve-teachers-item img {
    height: 80px;
  }
}
.reserve-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 40px;
}
@media screen and (max-width: 991px) {
  .reserve-container {
    display: block;
  }
}
.reserve-container-content {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
}
.reserve-summary {
  background: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 20px;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  margin: 0;
  padding: 30px;
  position: sticky;
  top: 120px;
}
@media screen and (max-width: 991px) {
  .reserve-summary {
    margin-top: 40px;
  }
}
.reserve-summary h2 {
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
}
.reserve-summary-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reserve-summary-detail-select_box {
  width: 50%;
}
.reserve-summary-detail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reserve-summary-detail ul li span {
  font: bold 2.3rem/2.3rem "Outfit", sans-serif;
  padding: 0 5px;
  vertical-align: sub;
}
@media screen and (max-width: 475px) {
  .reserve-summary-detail ul li span {
    font: bold 1.8rem/1.8rem "Outfit", sans-serif;
  }
}
.reserve-summary-detail ul li:first-child::after {
  content: "　/";
}
.reserve-summary a.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
}
.reserve-attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 20px;
}
.reserve-attention a {
  color: #649AE3;
  text-decoration: underline;
  position: relative;
}
.reserve-attention a::after {
  content: "";
  height: 25px;
  width: 25px;
  display: inline-block;
  position: absolute;
  top: 3px;
}
.reserve-attention a:first-child::after {
  content: url(../img/icon-link.svg);
}
.reserve-attention a:last-child::after {
  content: url(../img/icon-plus.svg);
}
.reserve-attention a:hover, .reserve-attention a:visited {
  color: #649AE3;
}

[id^=policy] .policy-content {
  font: 400 0.9rem/1.08rem "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 20px;
}
@media screen and (max-width: 475px) {
  [id^=policy] .policy-content {
    font: 400 0.8rem/1.28rem "Noto Sans JP", sans-serif;
  }
}
[id^=policy] .policy-content h2 {
  font: 700 1.2rem/1.56rem "Noto Sans JP", sans-serif;
  padding-left: 1rem;
}
@media screen and (max-width: 475px) {
  [id^=policy] .policy-content h2 {
    font: 700 1rem/1.4rem "Noto Sans JP", sans-serif;
  }
}
[id^=policy] .policy-content p {
  padding-left: 2rem;
  text-align: justify;
}
[id^=policy] .policy-content p:first-child {
  padding-left: 0;
}
[id^=policy] .policy-content p a {
  color: #649AE3;
}
[id^=policy] .policy-content li {
  padding-bottom: 10px;
}
[id^=policy] .policy-content > ul li {
  list-style: disc;
  margin-left: 3rem;
}
[id^=policy] .policy-content > ol li {
  list-style: decimal;
  margin-left: 3rem;
}
[id^=policy] .policy-content > ol li > ul {
  padding-top: 10px;
}
[id^=policy] .policy-content > ol li > ul li {
  margin-left: 1rem;
  list-style: circle;
}
[id^=policy] .policy-content table tr td {
  border: none;
  border-bottom: solid 1px #484848;
  padding: 20px 15px;
}
[id^=policy] .policy-content table tr td a {
  color: #649AE3;
}
[id^=policy] .policy-content table tr td:first-child {
  width: 37%;
}
[id^=policy] .policy-content table tr:last-child td {
  border-bottom: none;
}

.notfound-content a {
  display: block;
  border-radius: 2rem;
  font: 500 1rem/1.6rem "Noto Sans JP", sans-serif;
  margin: 2rem 0;
}
@media screen and (max-width: 475px) {
  .notfound-content a {
    padding: 1rem 3rem;
  }
}
.notfound-content a:hover {
  color: #fff;
}

.pc-view {
  display: inline-block;
}

.sp-view {
  display: none;
  opacity: 0;
}

@media screen and (max-width: 475px) {
  .pc-view {
    display: none;
    opacity: 0;
  }
  .sp-view {
    display: inline-block;
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */