@charset "UTF-8";
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto !important;
}

body {
  overflow: hidden;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  font-optical-sizing: auto;
}

@media (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
.mx-sm {
  width: 40rem !important;
}
.mx-md {
  max-width: 100rem;
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 0.5em;
}
.mt-10 {
  margin-top: 1em;
}
.mt-15 {
  margin-top: 1.5em;
}
.mt-20 {
  margin-top: 2em;
}
.mt-sm {
  margin-top: 3rem;
}
.mt-md {
  margin-top: 5rem;
}
.mt-lg {
  margin-top: 10rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 0.5em;
}
.mb-10 {
  margin-bottom: 1em;
}
.mb-15 {
  margin-bottom: 1.5em;
}
.mb-20 {
  margin-bottom: 2em;
}
.mb-sm {
  margin-bottom: 3rem;
}
.mb-md {
  margin-bottom: 5rem;
}
.mb-lg {
  margin-bottom: 10rem;
}

.ms-auto {
  margin-left: auto;
}

.bg-01 {
  background: linear-gradient(135deg, #efe6f2 0%, #f8e7eb 50%, #f5f7e4 100%);
}
.bg-primary {
  background-color: #F39D00;
  --text-color: white;
}
.bg-red {
  background-color: #ff3131;
  --text-color: white;
}
.bg-orange {
  background-color: #FF9233;
  --text-color: white;
}
.bg-orange01 {
  background-color: #ff6b33;
  --text-color: white;
}
.bg-pink {
  background-color: #ff3371;
  --text-color: white;
}
.bg-cream {
  background-color: #f8efe0;
}
.bg-img02 {
  margin-top: -30rem;
  padding-top: 30rem !important;
  position: relative;
}
.bg-img02::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background-image: url("../../images/bg-img02.jpg");
  background-position: center top;
  background-size: cover;
}
.bg-gray {
  background-color: #f5f5f5;
}
.bg-dark {
  background-color: #333;
}
.bg-white {
  background-color: #fff;
}

.w-100 {
  width: 100%;
}
.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.w-auto {
  width: auto;
}
.w-sm {
  max-width: 64rem;
}
.w-md {
  max-width: 90rem;
}

.hr-01 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border: none;
  border-top: 1px solid #ccc;
}

* {
  color: var(--text-color, #000);
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p {
  line-height: 1.75;
}

em, address {
  font-style: normal;
}

.text-rockn-roll {
  font-family: "RocknRoll One", sans-serif;
}
.text-serif {
  font-family: "Noto Serif JP", serif;
}
.text-en {
  font-family: "Poppins", sans-serif;
}
.text-en2 {
  font-family: "pirulen", sans-serif;
}
.text-unset {
  font-family: initial;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-primary {
  color: #F39D00;
}
.text-red {
  color: #ff3131;
}
.text-orange {
  color: #ff6b33;
}
.text-pink {
  color: #ff3371;
}
.text-white {
  --text-color: #fff;
}
.text-sm {
  font-size: 1.2rem;
}
.text-md {
  font-size: 1.4rem;
}
.text-lg {
  font-size: 2rem;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.ls-0 {
  letter-spacing: 0;
}
.ls-sm {
  letter-spacing: 0.025em;
}
.ls-md {
  letter-spacing: 0.1em;
}
.ls-lg {
  letter-spacing: 0.2em;
}

.is-diamond::before {
  content: "◆";
  margin-right: 0.5rem;
  color: #e14f63;
}

figure, picture {
  margin-bottom: 0;
  display: block;
}

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

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-border {
  border: 1px solid #ccc;
}
.img-fluid {
  width: var(--width-pc) !important;
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
}
.video video {
  width: 100%;
  height: 100%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

a {
  color: var(--text-color, #333);
  text-decoration: none;
}
a * {
  color: var(--text-color, #333);
}
a:not([class]) {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:not([class]):hover {
  opacity: 0.75;
}

[data-link=image] {
  display: block;
  overflow: hidden;
}
[data-link=image] .image {
  display: block;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
}
[data-link=image] img, [data-link=image] svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
[data-link=image]:hover {
  opacity: 1 !important;
}
[data-link=image]:hover img, [data-link=image]:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.link-underline {
  text-decoration: underline;
}
.link-external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 0.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link-external::after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 12"><path d="M2 0h12v10H2Zm11 1H3v8h10Z"/><path d="M9.5 12H0V4.5h1V11h8.5Z"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

ul, ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

dl, dt, dd {
  margin-bottom: 0;
}

.list-dot li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-dot li::before {
  content: "・";
}
.list-circle li {
  margin-left: 1.25em;
  text-indent: -1.25em;
  line-height: 1.875;
}
.list-circle li::before {
  content: "●";
  margin-right: 0.25em;
}
.list-note {
  list-style-type: none;
}
.list-note li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-note li::before {
  content: "※";
}
.list-number {
  padding-left: 1.5em;
  list-style-type: decimal;
}
.list-number li {
  line-height: 1.875;
}
.list-numzero {
  counter-reset: count;
}
.list-numzero li {
  margin-left: 1.75em;
  text-indent: -1.75em;
  line-height: 1.875;
}
.list-numzero li::before {
  content: counter(count, decimal-leading-zero) ".";
  margin-right: 0.25em;
  counter-increment: count;
}

.d-grid {
  display: grid;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.d-block {
  display: block;
}

.gap-sm {
  gap: 1.2rem;
}
.gap-md {
  gap: 1.6rem;
}
.gap-lg {
  gap: 2rem;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .tabOnly {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .text-md-center {
    text-align: center;
  }
  .mx-pc-auto {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.8rem;
  }
  p {
    line-height: 1.54;
  }
  .img-fluid {
    width: var(--width-sp) !important;
  }
  .list-sp-space li + li {
    margin-top: 1rem;
  }
  .mt-lg {
    margin-top: 6rem !important;
  }
  .mt-md {
    margin-top: 4rem !important;
  }
  .mt-sm {
    margin-top: 3rem !important;
  }
  .mb-lg {
    margin-bottom: 6rem !important;
  }
  .mb-md {
    margin-bottom: 4rem !important;
  }
  .mb-sm {
    margin-bottom: 3rem !important;
  }
  .mx-sp-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .text-sp-center {
    text-align: center;
  }
  .mx-sm {
    width: 80% !important;
  }
  .mx-md {
    max-width: 100%;
  }
}
.bg_gradation {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), to(#fff));
  background: linear-gradient(to bottom, transparent 0%, transparent 90%, #fff 100%);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
}
.header__inner {
  height: 5.6rem;
  padding: 0 4rem;
}
.header__title--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__title--inner .logo-img {
  width: 14rem;
}
.header__button {
  width: 20rem;
  height: 8rem;
  position: absolute;
  top: -0.3rem;
  right: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid white;
  border-radius: 0 0 1.3rem 1.3rem;
  background-color: #9bdc00;
  font-weight: bold;
  font-size: 2.1rem;
  --text-color: white;
}
.header__button span::after {
  content: "▶";
  margin-left: 0.3rem;
}
.header__button::before {
  content: "";
  width: 21rem;
  height: 8.5rem;
  position: absolute;
  top: -0.3rem;
  z-index: -1;
  display: block;
  border-radius: 0 0 1.3rem 1.3rem;
  background-color: #9bdc00;
}
.header__button::after {
  content: "";
  width: 21rem;
  height: 8.8rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 0 0 1.3rem 1.3rem;
  background-color: #4e881b;
}
.header__scroll {
  position: absolute;
  bottom: 8px;
  left: calc(50% - 2rem);
}

@media screen and (max-width: 768px) {
  .header__inner {
    height: auto;
    display: none;
  }
}
.footer {
  margin: 0 auto;
  padding: 4rem 0;
  background-color: black;
  font-weight: 500;
  font-size: 1.8rem;
  --text-color: white;
}
.footer .mx-full {
  padding-right: 0;
  padding-left: 0;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 2rem 0 6rem 0;
  }
  .footer__inner {
    width: 15rem;
    margin: 0 auto;
  }
}
.main {
  margin: 0 auto;
  position: relative;
}
.main__block {
  margin-bottom: 10rem;
}
.main__block[class*=bg-] {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.main__block:last-of-type {
  margin-bottom: 0rem;
  padding-bottom: 10rem !important;
}
.main__block:last-of-type[class*=bg-] {
  padding-bottom: 0;
}
.main__container {
  max-width: 110rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5rem;
  padding-left: 5rem;
}
.main__container + .main__container {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .main__container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .main__block {
    margin-bottom: 6rem;
  }
  .main__block[class*=bg-] {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.heading__01 {
  position: relative;
  font-size: 4.2rem;
  margin-bottom: 10rem;
}
.heading__01 .text-primary {
  font-size: 6.6rem;
  color: #F39D00;
}
.heading__01::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  border-bottom: 5px solid #F39D00;
  width: 15rem;
}
.heading__02 {
  position: relative;
  font-size: 4.2rem;
  margin-bottom: 10rem;
}
.heading__02::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  border-bottom: 5px solid #433625;
  width: 15rem;
}

@media screen and (max-width: 768px) {
  .heading__01 {
    font-size: 2.6rem;
    margin-bottom: 6rem;
  }
  .heading__01 .text-primary {
    font-size: 4rem;
  }
  .heading__01::after {
    width: 10rem;
  }
  .heading__02 {
    margin-bottom: 6rem;
    font-size: 2.6rem;
  }
  .heading__02::after {
    width: 10rem;
  }
}
.btn__01 {
  width: 26rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 5.5rem;
  margin-top: 5rem;
  padding: 0 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #F39D00;
  border-radius: 5rem;
  color: var(--btn-text, #F39D00);
  font-weight: bold;
}
.btn__01 * {
  color: var(--btn-text, #fff);
}
.btn__01.bg-primary {
  background-color: var(--btn-bg, #F39D00);
  color: var(--btn-text, #fff);
}
.btn__01.next {
  position: relative;
}
.btn__01.next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 1.8rem;
  border-right: 2px solid var(--btn-text-color, #F39D00);
  border-bottom: 2px solid var(--btn-text-color, #F39D00);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn__01.pdf {
  position: relative;
}
.btn__01.pdf::after {
  content: "";
  width: 1.3em;
  position: absolute;
  top: 50%;
  right: 1em;
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'>  <g id='グループ_189' data-name='グループ 189' transform='translate(0)'>    <path id='パス_358' data-name='パス 358' d='M63.583,0h-8.8l-.447.437L48.153,6.473l-.447.437V19.973A4.08,4.08,0,0,0,51.83,24H63.583a4.08,4.08,0,0,0,4.123-4.026V4.026A4.08,4.08,0,0,0,63.583,0Zm2.6,19.973a2.566,2.566,0,0,1-2.6,2.535H51.83a2.567,2.567,0,0,1-2.6-2.535V7.528h4.019a2.139,2.139,0,0,0,2.164-2.113V1.491h8.167a2.566,2.566,0,0,1,2.6,2.536Z' transform='translate(-47.706)' fill='%23fff'/>    <path id='パス_359' data-name='パス 359' d='M136.476,252.785h-1.337a.383.383,0,0,0-.407.414v3.457a.469.469,0,1,0,.935,0v-1.05a.034.034,0,0,1,.039-.038h.77a1.4,1.4,0,1,0,0-2.782Zm-.058,1.974h-.713a.034.034,0,0,1-.039-.038v-1.089a.034.034,0,0,1,.039-.038h.713a.584.584,0,1,1,0,1.165Z' transform='translate(-130.534 -240.936)' fill='%23fff'/>    <path id='パス_360' data-name='パス 360' d='M221.069,252.785h-1.025a.383.383,0,0,0-.407.414v3.508a.378.378,0,0,0,.407.407h1.025c.923,0,1.5-.293,1.725-1a5.382,5.382,0,0,0,0-2.33C222.566,253.078,221.992,252.785,221.069,252.785Zm.828,3.005c-.109.344-.42.49-.854.49h-.433a.034.034,0,0,1-.039-.038v-2.585a.034.034,0,0,1,.039-.038h.433c.433,0,.745.147.854.49a4.69,4.69,0,0,1,0,1.681Z' transform='translate(-211.343 -240.936)' fill='%23fff'/>    <path id='パス_361' data-name='パス 361' d='M310.163,252.785h-2.1a.383.383,0,0,0-.408.414v3.457a.469.469,0,1,0,.936,0v-1.235a.033.033,0,0,1,.038-.038h1.223a.4.4,0,1,0,0-.8h-1.223a.034.034,0,0,1-.038-.038v-.911a.034.034,0,0,1,.038-.038h1.534a.405.405,0,1,0,0-.808Z' transform='translate(-295.123 -240.936)' fill='%23fff'/></g></svg>");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 1;
}
.btn__01.arrow {
  padding-right: 2.75em;
  position: relative;
}
.btn__01.arrow::after {
  content: "";
  width: 0.75em;
  position: absolute;
  top: 50%;
  right: 1em;
  background-image: url("data: image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.5 7.36'><path fill='%23fff' d='M7.35 3.33h0L4.17.15c-.2-.2-.51-.2-.71 0s-.2.51 0 .71l2.33 2.33H0v1h5.79L3.46 6.52c-.2.2-.2.51 0 .71.2.2.51.2.71 0l3.18-3.18c.2-.2.2-.51 0-.71Z'/></svg>");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 1;
}

.icon-plus {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}
.icon-plus::before, .icon-plus::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: black;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.icon-plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.icon-cross {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}
.icon-cross::before, .icon-cross::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.icon-cross::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.arrow-01 {
  width: 1.5em;
  height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #F39D00;
}
.arrow-01::after {
  content: "";
  width: 30%;
  height: 30%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.arrow-01.top::after {
  margin-bottom: -10%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.arrow-01.right::after {
  margin-left: -10%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.arrow-01.left::after {
  margin-right: -10%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.arrow-01.bottom::after {
  margin-top: -10%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap-size, 2rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column.col2 > * {
  width: calc((100% - var(--gap-size, 2rem)) / 2);
}
.column.col3 {
  gap: var(--gap-size, 4rem);
}
.column.col3 > * {
  width: calc((100% - var(--gap-size, 4rem) * 2) / 3);
}
.column.col4 > * {
  width: calc((100% - var(--gap-size, 2rem) * 3) / 4);
}

.grid {
  display: grid;
  gap: var(--gap-size, 2rem);
}
.grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.col5 {
  grid-template-columns: repeat(5, 1fr);
}

.breadcrumbs {
  margin-top: 2.4rem;
  margin-bottom: 4.8rem;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25em 0.5em;
}
.breadcrumbs__inner > span {
  white-space: nowrap;
}
.breadcrumbs__inner > span:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumbs a {
  text-decoration: underline;
}

.pager__archive--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager__archive .page-numbers {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.2rem;
  color: #F39D00;
  font-size: 1.8rem;
}
.pager__archive .page-numbers.dots {
  margin: 0 -0.5rem;
}
.pager__archive .page-numbers.current {
  background-color: var(--theme-color, #F39D00);
  color: #fff;
  font-weight: 700;
}
.pager__archive .page-numbers.prev, .pager__archive .page-numbers.next {
  background: url("data: image/svg+xml,<svg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 1.31625L1.34583 0L8 6.5L1.34583 13L0 11.6838L5.30417 6.5L0 1.31625Z' fill='%23261F88'/></svg>") no-repeat center/contain;
  background-size: 1rem auto;
}
.pager__archive .page-numbers.prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.slider__01 {
  position: relative;
}
.slider__01 .swiper-slide {
  width: 30rem;
}
.slider__01--image {
  display: block;
  aspect-ratio: 1;
}
.slider__01--image * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-content {
  margin-bottom: -3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.swiper-pagination.type {
  bottom: 0.5rem !important;
  --swiper-pagination-color: #c00000;
}
.swiper-pagination.type01 {
  margin-top: 3.2rem;
  position: relative;
  bottom: auto !important;
  line-height: 0;
  --swiper-pagination-bullet-height: 1.2rem;
  --swiper-pagination-bullet-horizontal-gap: .6rem;
  --swiper-pagination-bullet-inactive-color: #e2e2e2;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: 1.2rem;
  --swiper-pagination-color: #a878f4;
}

@media screen and (max-width: 768px) {
  .swiper-pagination.type01 {
    margin-top: 2rem;
    --swiper-pagination-bullet-height: 1.0rem;
    --swiper-pagination-bullet-width: 1.0rem;
  }
}
.table__01 {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.table__01 th, .table__01 td {
  padding: 1em 1.25em;
  border: 1px solid #dde1e6;
}
.table__01 thead th {
  background-color: #F39D00;
  --text-color: #fff;
}
.table__01 tbody th {
  background-color: #f5f6f9;
  font-weight: 500;
}
.table__dl01 {
  display: grid;
  grid-template-columns: 20rem 1fr;
  font-weight: 400;
  font-size: 2rem;
}
.table__dl01 > dt {
  border-top: 2px solid #F39D00;
  text-align: center;
}
.table__dl01 > dd {
  padding: 0 10rem;
  border-top: 2px solid #ff8b8b;
}
.table__dl01 > dt, .table__dl01 > dd {
  margin-top: 3.2rem;
  padding-top: 3.2rem;
}
.table__dl01--02 {
  display: grid;
  grid-template-columns: 20rem 1fr;
}
.table__dl02 {
  font-weight: 400;
}
.table__dl02 dt {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
.table__dl02 dd {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .table__scroll {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    overflow-x: scroll;
  }
  .table__scroll table {
    width: 100rem;
  }
  .table__dl01 {
    grid-template-columns: 10rem 1fr;
  }
  .table__dl01.l-md {
    grid-template-columns: 8rem 1fr;
  }
  .table__dl01 > dt, .table__dl01 > dd {
    margin-top: 1rem;
    padding: 0;
    padding-top: 1rem;
  }
  .table__dl01 > dd {
    padding-left: 2rem;
  }
  .table__dl01--02 {
    grid-template-columns: 1fr;
  }
  .table__dl01--02 > dd {
    margin-bottom: 1rems;
  }
  .table__dl01--02 > dt {
    font-size: 1.6rem;
  }
}
*:focus {
  outline: none;
}

input {
  width: 100%;
}
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 0 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 0 1000px #fff inset;
}

.p-country-name {
  display: none;
}

.form {
  --form-border: #ccc;
}
.form__box + .form__box {
  margin-top: 4rem;
}
.form__row .form__box {
  display: grid;
  gap: 0 3.2rem;
  grid-template-columns: 24rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.form__row .form__label {
  padding-top: 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form__column .form__label {
  margin-bottom: 1em;
}
.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__required::after {
  content: "必須";
  padding: 0.25em 1em;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: #b70000;
  color: #fff;
  font-size: 87.5%;
}
.form__optional::after {
  content: "任意";
  padding: 0.25em 1em;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: #ccc;
  color: #fff;
  font-size: 87.5%;
}
.form__control {
  width: 100%;
  padding: 1.125em 1.25em;
  border: 1px solid var(--form-border, #ccc);
  background-color: #fff;
  font-size: max(1.6rem, 16px);
  line-height: 1.5;
}
.form__group {
  display: grid;
  gap: 1em;
}
.form__group + .form__group {
  margin-top: 2rem;
}
.form__group.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.form__group.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.form__group.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.form__content--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__content--unit {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.form .error {
  margin-top: 0.5em;
}
.form__textarea {
  height: 24rem;
}
.form__select {
  background-image: url("data: image/svg+xml,<svg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M8 1.09131L6.87779 0L4.00008 2.79808L1.12225 0L4.1008e-05 1.09131L4.00008 4.98061L8 1.09131Z' fill='%2329318A'/></svg>");
  background-position: right 1.5rem center;
  background-size: 0.8rem auto;
  background-repeat: no-repeat;
}
.form__checkbox {
  --form-size: 1.6rem;
}
.form__checkbox--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form__checkbox--row .mwform-checkbox-field {
  margin-top: 0 !important;
}
.form__checkbox--row .error {
  width: 100%;
  margin-top: -0.5em;
}
.form__checkbox--column .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 0.75em !important;
}
.form__checkbox--column .error {
  margin-top: 0.75em;
}
.form__checkbox [type=checkbox] {
  display: none;
}
.form__checkbox .mwform-checkbox-field {
  line-height: 1;
}
.form__checkbox .mwform-checkbox-field-text {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__checkbox .mwform-checkbox-field-text::before {
  content: "";
  width: calc(var(--form-size) * 1.25);
  display: block;
  border: 1px solid var(--form-border, #ccc);
  background-color: #fff;
  aspect-ratio: 1;
}
.form__checkbox .mwform-checkbox-field-text::after {
  content: "";
  width: calc(var(--form-size) * 0.6);
  height: calc(var(--form-size) * 0.8);
  position: absolute;
  top: calc(50% - var(--form-size) * 0.1);
  left: calc(var(--form-size) * 0.3);
  display: block;
  border-right: 3px solid #F39D00;
  border-bottom: 3px solid #F39D00;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
}
.form__checkbox .mwform-checkbox-field [type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
  visibility: visible;
}
.form__radio {
  --form-size: 1.6rem;
}
.form__radio--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form__radio--row .mwform-radio-field {
  margin-top: 0 !important;
}
.form__radio--row .error {
  width: 100%;
  margin-top: -0.5em;
}
.form__radio--column .mwform-radio-field + .mwform-radio-field {
  margin-top: 0.75em !important;
}
.form__radio--column .error {
  margin-top: 0.75em;
}
.form__radio [type=radio] {
  display: none;
}
.form__radio .mwform-radio-field {
  line-height: 1;
}
.form__radio .mwform-radio-field-text {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__radio .mwform-radio-field-text::before {
  content: "";
  width: calc(var(--form-size) * 1.5);
  display: block;
  overflow: hidden;
  border: 1px solid var(--form-border, #ccc);
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
}
.form__radio .mwform-radio-field [type=radio]:checked + .mwform-radio-field-text::before {
  outline: calc(var(--form-size) * 0.4 - 1px) solid #fff;
  outline-offset: calc(var(--form-size) * -0.4);
  border-color: #F39D00;
  background-color: #F39D00;
}
.form__policy {
  padding-top: 5rem;
}
.form__policy p {
  margin-bottom: 1rem;
}
.form__policy .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__policy .item {
  position: relative;
}
.form__policy .item::after {
  content: "";
  width: 1.5rem;
  height: 2rem;
  position: absolute;
  top: 1px;
  right: -3rem;
  background-image: url("data: image/svg+xml,<svg width='12' height='12' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M13.3 19.0016H2.85C1.235 19.0016 0 17.7666 0 16.1516V5.70156C0 4.08656 1.235 2.85156 2.85 2.85156H8.55C9.12 2.85156 9.5 3.23156 9.5 3.80156C9.5 4.37156 9.12 4.75156 8.55 4.75156H2.85C2.28 4.75156 1.9 5.13156 1.9 5.70156V16.1516C1.9 16.7216 2.28 17.1016 2.85 17.1016H13.3C13.87 17.1016 14.25 16.7216 14.25 16.1516V10.4516C14.25 9.88156 14.63 9.50156 15.2 9.50156C15.77 9.50156 16.15 9.88156 16.15 10.4516V16.1516C16.15 17.7666 14.915 19.0016 13.3 19.0016Z' fill='%23333333'/><path d='M18.0504 7.6C17.4804 7.6 17.1004 7.22 17.1004 6.65V1.9H12.3504C11.7804 1.9 11.4004 1.52 11.4004 0.95C11.4004 0.38 11.7804 0 12.3504 0H18.0504C18.6204 0 19.0004 0.38 19.0004 0.95V6.65C19.0004 7.22 18.6204 7.6 18.0504 7.6Z' fill='%23333333'/><path d='M7.60039 12.35C7.31539 12.35 7.12539 12.255 6.93539 12.065C6.55539 11.685 6.55539 11.115 6.93539 10.735L17.3854 0.285C17.7654 -0.095 18.3354 -0.095 18.7154 0.285C19.0954 0.665 19.0954 1.235 18.7154 1.615L8.26539 12.065C8.07539 12.255 7.88539 12.35 7.60039 12.35Z' fill='%23333333'/></svg>");
  background-position: center;
}
.form__policy label {
  font-weight: 600;
}
.form__policy label a {
  text-decoration: underline;
}
.form__button {
  margin-top: 5.5rem;
}
.form__button.btn__grid {
  gap: 5rem;
}

#bgLayer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
}
#bgLayer.is-show {
  display: block;
}

.modal {
  margin-bottom: 3rem;
}
.modal__content {
  width: 90rem;
  max-width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: none;
  background-color: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.modal__content .border__x-y {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  pointer-events: none;
}
.modal__content .border__x::before, .modal__content .border__x::after, .modal__content .border__y::before, .modal__content .border__y::after {
  content: "";
  width: 100%;
  height: 1.3rem;
  position: absolute;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#dc000c), color-stop(33.3%, #dc000c), color-stop(33.3%, #00a9eb), color-stop(66.6%, #00a9eb), color-stop(66.6%, #ffda00), to(#ffda00));
  background: linear-gradient(90deg, #dc000c 0%, #dc000c 33.3%, #00a9eb 33.3%, #00a9eb 66.6%, #ffda00 66.6%, #ffda00 100%);
  background-size: 20rem 100%;
  background-repeat: repeat-x;
}
.modal__content .border__x::before {
  top: 0;
  left: 0;
}
.modal__content .border__x::after {
  bottom: 0;
  left: 0;
}
.modal__content .border__y::before, .modal__content .border__y::after {
  width: 1.3rem;
  height: calc(100% - 2.6rem);
  background: -webkit-gradient(linear, left bottom, left top, from(#dc000c), color-stop(33.3%, #dc000c), color-stop(33.3%, #00a9eb), color-stop(66.6%, #00a9eb), color-stop(66.6%, #ffda00), to(#ffda00));
  background: linear-gradient(0deg, #dc000c 0%, #dc000c 33.3%, #00a9eb 33.3%, #00a9eb 66.6%, #ffda00 66.6%, #ffda00 100%);
  background-size: 100% 19.5rem;
  background-repeat: repeat-y;
}
.modal__content .border__y::before {
  top: 1.3rem;
  right: 0;
}
.modal__content .border__y::after {
  bottom: 1.3rem;
  left: 0;
}
.modal__content--inner {
  max-height: calc(100vh - 10rem);
  padding: 7rem 6rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.modal__content--img {
  width: 28rem;
  -webkit-box-shadow: 0rem 0.2rem 0.6rem #b9b9b9;
          box-shadow: 0rem 0.2rem 0.6rem #b9b9b9;
}
.modal__content--description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.modal__content--description .title {
  margin-bottom: 1.8rem;
}
.modal__content--description .title__01 {
  margin-bottom: 0.8rem;
  font-size: 3.2rem;
  line-height: 1;
}
.modal__content--description .title__sub {
  font-size: 2.3rem;
}
.modal__content--description .title__link {
  color: var(--text-color, #F39D00);
  font-weight: 500;
}
.modal__content--youtube {
  width: 20rem;
  height: 12.5rem;
  margin-left: auto;
  display: block;
}
.modal__content--sentence {
  margin-bottom: 3.5rem;
  display: grid;
  gap: 1.4rem 2.7rem;
  grid-template-columns: 6rem 1fr;
  font-size: 1.8rem;
}
.modal__content--sentence dd {
  font-weight: 400;
}
.modal__content--sentence span {
  display: block;
  font-size: 1.6rem;
}
.modal__content--sentence .names {
  display: grid;
  grid-template-columns: 3em 1fr;
}
.modal__close {
  width: 3.7rem;
  height: 3.7rem;
  padding: 1rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  border-radius: 50%;
  background-color: black;
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 2px;
  height: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: white;
}
.modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.js-modal__trigger:hover {
  cursor: pointer;
}
.js-bg__layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-bg__layer.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .modal__content {
    padding: 1.5rem 0;
    top: 55%;
  }
  .modal__content--inner {
    max-height: calc(100dvh - 16rem);
    padding: 3rem 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal__content--description .title__01 {
    font-size: 2.2rem;
  }
  .modal__content--description .title__sub {
    font-size: 1.8rem;
  }
  .modal__content--sentence {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal__content--youtube {
    margin-right: auto;
  }
  .modal__close {
    width: 3rem;
    height: 3rem;
    top: -1rem;
    right: -1rem;
  }
}
.lightbox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90%;
  height: 80dvh;
  position: relative;
}
.lightbox-image-wrapper {
  width: 100%;
  height: 100%;
}
.lightbox-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox-close {
  width: 4rem;
  height: 4rem;
  padding: 0;
  position: absolute;
  top: -40px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.lightbox-close:hover {
  opacity: 0.7;
}
.lightbox-close::before, .lightbox-close::after {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  background-color: white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.lightbox-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.lightbox-trigger {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lightbox-trigger:hover {
  opacity: 0.8;
}

[data-lightbox] {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .lightbox-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: scroll;
  }
  .lightbox-image {
    width: 200%;
    max-width: none;
  }
}
.module__01 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.module__01--sentence {
  width: 46rem;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  font-size: 1.8rem;
}
.module__01--sentence p + p {
  margin-top: 2.3rem;
}
.module__01--sentence .texts span {
  margin-bottom: 1rem;
  display: block;
}
.module__01--sentence .texts__01 {
  line-height: 1.6;
}
.module__01--sentence .texts__02 {
  line-height: 1.1;
}
.module__01--visual {
  height: 50rem;
  margin-left: -10rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.module__01.is-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.module__01.is-row-reverse .module__01--sentence {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.module__01.is-row-reverse .module__01--visual {
  margin-right: -10rem;
  margin-left: 0;
}
.module__01 + .module__01 {
  margin-top: 9rem;
}

@media screen and (max-width: 768px) {
  .module__01 {
    gap: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module__01--visual {
    margin-left: -2rem;
  }
  .module__01--sentence {
    width: 100%;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .module__01.is-row-reverse .module__01--sentence {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .module__01.is-row-reverse .heading__02 {
    margin-right: -2rem;
    margin-left: 0;
  }
  .module__01 + .module__01 {
    margin-top: 5rem;
  }
}
.loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(155deg, rgb(23, 28, 97) 0%, rgb(35, 25, 100) 4%, rgb(82, 17, 113) 18%, rgb(116, 11, 122) 28%, rgb(137, 8, 127) 43%, rgb(145, 7, 130) 50%, rgb(137, 8, 127) 57%, rgb(116, 11, 122) 71%, rgb(82, 17, 113) 82%, rgb(35, 25, 100) 96%, rgb(23, 28, 97) 100%);
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loading__text {
  width: 40rem;
}

.bgLayer {
  position: relative;
}
.bgLayer::before, .bgLayer::after {
  content: "";
  width: 25rem;
  height: 100rem;
  position: absolute;
  z-index: -1;
  background-image: url("../../images/bg01.png");
  background-size: cover;
}
.bgLayer::before {
  top: 0;
  left: 0;
}
.bgLayer::after {
  right: 0;
  bottom: 0;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.home__hero {
  width: 100%;
  height: 73rem;
  margin-top: 5.6rem;
  margin-bottom: 16rem;
  padding-top: 8rem;
  padding-bottom: 7.4rem;
  position: relative;
}
.home__hero--img-text {
  width: 68rem;
  position: absolute;
  top: 50%;
  left: 10rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.home__hero--img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.home__hero--img-scroll {
  width: 3.2rem;
  position: absolute;
  top: 78rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home__merit--list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
.home__merit--list li + li {
  margin-top: 5rem;
}
.home__merit--list li.is-rowReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.home__merit--visual {
  width: 40rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.home__merit--contents {
  z-index: 1;
}
.home__merit--sentence {
  letter-spacing: 0;
}
.home__merit-title.is-line {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #F39D00;
}
.home__merit-title--visual {
  width: 24rem;
}
.home__merit-title--text {
  font-weight: bold;
  font-size: 3.2rem;
}
.home__merit-title--text span {
  color: #F39D00;
}
.home__outline .main__container {
  position: relative;
  z-index: 1;
}
.home__outline.bg-notebook {
  width: 120rem;
  margin: 0 auto;
  position: relative;
  background-color: #ab9a87;
}
.home__outline.bg-notebook::before {
  content: "";
  width: calc(100% - 8rem);
  height: 8rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  z-index: 1;
  background-image: url("../../images/ring.png");
  background-size: 100% auto;
  background-repeat: repeat-x;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home__outline.bg-notebook::after {
  content: "";
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  background-color: #f5f1df;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.home__outline--catch {
  font-size: 2.3rem;
}
.home__outline--contents {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home__outline--visual {
  width: 35rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.home__outline--sentence p + p {
  margin-top: 3rem;
}
.home__outline--sentence span {
  font-weight: bold;
  font-size: 2.5rem;
}
.home__outline--sentence span + span {
  margin-left: 1rem;
}
.home__outline--list {
  margin-top: 5rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home__outline--list.is-logo {
  position: relative;
}
.home__outline--list.is-logo::before, .home__outline--list.is-logo::after {
  content: "";
  position: absolute;
  display: block;
}
.home__outline--list.is-logo::before {
  width: 12rem;
  height: 12rem;
  top: calc(50% - 6rem);
  left: calc(50% - 6rem);
  border-radius: 50%;
  background-color: white;
}
.home__outline--list.is-logo::after {
  width: 7rem;
  height: 7.2rem;
  top: calc(50% - 3rem);
  left: calc(50% - 3.5rem);
  background-image: url("../../images/logo03.svg");
  background-size: contain;
}
.home__outline--list li {
  border-radius: 1rem;
}
.home__outline--list li:nth-child(even) {
  padding: 2rem 3rem 2rem 4rem;
}
.home__outline--list li:nth-child(odd) {
  padding: 2rem 4rem 2rem 3rem;
}
.home__outline--list h3 {
  margin-bottom: 1rem;
}
.home__banner--button-link {
  width: 35rem;
  min-width: 35rem;
  margin: 2rem auto 0 auto;
  padding: 2rem 0;
  position: relative;
  display: block;
  border-radius: 5rem;
  background-color: #9bdc00;
  font-weight: bold;
  font-size: 2.7rem;
  --text-color: white;
}
.home__banner--button-link::before {
  content: "";
  width: 35rem;
  min-width: 35rem;
  height: 100%;
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
  z-index: -1;
  display: block;
  border-radius: 5rem;
  background-color: #4e881b;
}
.home__banner--catch {
  margin-top: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  --text-color: white;
}
.home__banner--catch span {
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #F39D00;
  font-size: 1.6rem;
}
.home__banner--catch::before, .home__banner--catch::after {
  content: "";
  width: 2em;
  height: 2em;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36.631' height='45.287' viewBox='0 0 36.631 45.287'%3E%3Cg id='グループ_1677' data-name='グループ 1677' transform='translate(-687.493 -5265.939)'%3E%3Cline id='線_285' data-name='線 285' x2='18.29' y2='39.043' transform='translate(703.57 5267)' fill='none' stroke='%23fff' stroke-width='5'/%3E%3Cline id='線_286' data-name='線 286' x2='17.235' y2='23.215' transform='translate(689.5 5286.521)' fill='none' stroke='%23fff' stroke-width='5'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.home__banner--catch::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.home__banner.bg-img {
  margin-top: 10rem;
  position: relative;
  background-image: url("../../images/banner-bg.png");
  background-size: cover;
}
.home__point--img-title {
  width: 15rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
}
.home__point li {
  padding: 2.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home__point--catch {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 2.2rem;
}
.home__point--list {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home__point--list li:first-child {
  padding-left: 3rem;
}
.home__point--list li:last-child {
  padding-right: 3rem;
}
.home__point--list li + li {
  padding-left: 3rem;
  border-left: 2px solid #ab9a87;
}
.home__point--sentence {
  margin-bottom: 3rem;
}
.home__point--visual {
  width: 100%;
}
.home__other--visual {
  width: 60%;
  margin: 0 auto;
}
.home__started-reason--title {
  width: 58rem;
  margin: 0 auto 6rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.5rem;
}
.home__started-reason--title::before, .home__started-reason--title::after {
  content: "";
  width: 100%;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 2px solid #433625;
}
.home__started-reason--sentence {
  margin-bottom: 10rem;
}
.home__started-reason--contents {
  margin-bottom: 10rem;
  padding: 0 3rem;
}
.home__started-reason--contents-inner + .home__started-reason--contents-inner {
  margin-top: 5rem;
}
.home__started-reason--contents-inner p + p {
  margin-top: 2.5rem;
}
.home__started-reason--contents .item01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home__started-reason--visual {
  width: 25rem;
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.home__started-reason--sommelier .title {
  margin-bottom: 2rem;
  margin-left: -6rem;
  padding-bottom: 1rem;
  padding-left: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 5px solid #433625;
  font-size: 2.2rem;
}
.home__started-reason--sommelier .title__visual {
  width: 32rem;
}
.home__started-reason--sommelier .title .lg {
  margin-left: 1.5rem;
  display: inline-block;
  font-size: 3.6rem;
}
.home__started-reason--item + .home__started-reason--item {
  margin-top: 10rem;
}
.home__started-reason--item.media-contents ul {
  width: 67.5rem;
  margin: 0 auto;
}
.home__started-reason--item.media-contents ul li {
  letter-spacing: 0;
}
.home__started-reason--books {
  width: 67.5rem;
  margin: 0 auto;
  display: grid;
  gap: 5rem;
  gap: 7rem 10rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home__started-reason--books .book-title {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
}
.home__started-reason--books .book-name {
  font-size: 1.4rem;
}
.home__started-reason--book {
  width: 20rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .bgLayer::before, .bgLayer::after {
    content: "";
    width: 15rem;
    height: 50rem;
  }
  .bgLayer::before {
    top: 15rem;
    left: 0;
  }
  .bgLayer::after {
    right: 0;
    bottom: 15rem;
    -webkit-transform: scale(-1);
            transform: scale(-1);
  }
  .bgLayer__img {
    width: 15rem;
    height: 50rem;
    position: absolute;
  }
  .bgLayer__img.img-01 {
    top: 130rem;
    right: 0;
    -webkit-transform: scale(-1);
            transform: scale(-1);
  }
  .bgLayer__img.img-02 {
    bottom: 135rem;
    left: 0;
  }
  .home__button-sp {
    width: calc(100% - 6rem);
    height: 4rem;
    padding-top: 1rem;
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 2;
    display: block;
    border-radius: 0.6rem 0.6rem 0 0;
    background-color: #9bdc00;
    text-align: center;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    --text-color: white;
  }
  .home__button-sp::after {
    content: "";
    width: calc(100% - 2rem);
    height: 3.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    display: block;
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-left: 2px solid white;
    border-radius: 0.6rem 0.6rem 0 0;
    background-color: #9bdc00;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home__hero {
    height: 65rem;
    margin-top: 0;
    margin-bottom: 8rem;
    padding-top: 7.4rem;
    padding-bottom: 5.8rem;
  }
  .home__hero--img-text {
    width: 90%;
    position: absolute;
    top: 3rem;
    left: 50%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home__hero--img-scroll {
    top: 59rem;
  }
  .home__merit--list li {
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .home__merit--list li + li {
    margin-top: 2rem;
  }
  .home__merit--list li.is-rowReverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .home__merit--visual {
    width: 100%;
  }
  .home__merit-title--visual {
    width: 20rem;
  }
  .home__merit-title--text {
    font-size: 2.6rem;
  }
  .home__outline.bg-notebook {
    width: 100%;
    padding-top: 10rem;
  }
  .home__outline.bg-notebook::before {
    width: calc(100% - 4rem);
    top: -1rem;
    background-image: url("../../images/ring-sp.png");
  }
  .home__outline.bg-notebook::after {
    width: 100%;
  }
  .home__outline--catch {
    margin-bottom: 4.5rem;
    font-size: 1.8rem;
  }
  .home__outline--contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home__outline--visual {
    width: 100%;
  }
  .home__outline--list {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .home__outline--list h3 {
    font-size: 2.5rem;
  }
  .home__outline--list.is-logo::before, .home__outline--list.is-logo::after {
    content: none;
  }
  .home__point--list {
    grid-template-columns: 1fr;
  }
  .home__point--list li {
    padding: 0 0;
  }
  .home__point--list li:first-child {
    padding-left: 0;
  }
  .home__point--list li:last-child {
    padding-right: 0;
  }
  .home__point--img-title {
    margin-bottom: 1.5rem;
  }
  .home__point--visual {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .home__point--list {
    gap: 5rem;
  }
  .home__point--list li + li {
    padding-left: 0;
    border-left: none;
  }
  .home__other--visual {
    width: 100%;
  }
  .home__started-reason--title {
    width: 100%;
  }
  .home__started-reason--item.media-contents ul {
    width: 100%;
  }
  .home__started-reason--sommelier .title {
    margin: 0 0 3.5rem 0;
    padding-bottom: 0;
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 0;
    text-align: center;
  }
  .home__started-reason--sommelier .title__visual {
    width: 100%;
  }
  .home__started-reason--sommelier .title span {
    margin: 0;
    margin-left: 2rem;
  }
  .home__started-reason--sentence {
    margin-bottom: 5rem;
  }
  .home__started-reason--contents {
    padding: 0;
  }
  .home__started-reason--contents-inner + .home__started-reason--contents-inner {
    margin-top: 3.3rem;
  }
  .home__started-reason--contents .item01 {
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home__started-reason--books-contents .title {
    margin-bottom: 3rem;
    gap: 3.5rem;
    font-size: 2.5rem;
  }
  .home__started-reason--books-contents .title::before, .home__started-reason--books-contents .title::after {
    content: "";
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .home__started-reason--books {
    width: 100%;
    gap: 6rem;
    grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home__started-reason--books .book-title {
    margin-bottom: 1rem;
  }
  .home__started-reason--book {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .home__banner.bg-img {
    margin-top: 5rem;
    background-image: url("../../images/banner-bg-sp.png");
  }
  .home__banner--catch {
    text-align: left;
  }
  .home__banner--catch span {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .home__banner--button-link {
    width: calc(100% - 1rem);
    min-width: calc(100% - 1rem);
    padding: 1rem 0;
  }
  .home__banner--button-link::before {
    width: calc(100% - 1rem);
    min-width: calc(100% - 1rem);
    top: 0.5rem;
    left: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */