@charset "UTF-8";
/* ------------------------
    type selector
------------------------ */
html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-grid {
  display: grid;
}
.u-grid--col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 50px max(5%, 20px);
}

:root {
  --black: #504646;
  --white: #fff;
  --pink: #f1779b;
  --bg-pink: #f492af;
  --light-blue: #63bdea;
  --bg-light-blue: #e8f5fc;
  --light-green: #86cc58;
  --blue: #003e92;
  --red: #e33817;
  --transition: .3s;
  --baseFontSize: 17;
  --headerHeight: 115px;
  --border-radius: 30px;
}

@media (max-width: 1024px) {
  :root {
    --headerHeight: 75px;
  }
}
@media (max-width: 1024px) {
  :root {
    --baseFontSize: 16;
  }
}
@media (max-width: 767px) {
  :root {
    --baseFontSize: 16;
    --headerHeight: 64px;
    --border-radius: 15px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-size: calc(var(--baseFontSize) / 16 * 1rem);
  font-weight: 400;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  line-height: 1.8823529412;
  color: var(--black);
  background-color: var(--white);
}
@media (max-width: 767px) {
  body {
    line-height: 1.7333333333;
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 95%;
}
@media (max-width: 767px) {
  .inner {
    width: 92%;
  }
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .btn-group {
    gap: 15px 10px;
  }
}

.btn {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4444444444;
  text-align: center;
  color: var(--blue);
  background-color: var(--white);
  border: 1px solid var(--blue);
  border-radius: 9999px;
  min-width: 350px;
  min-height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em 3.9em;
  position: relative;
  transition: color var(--transition), background-color var(--transition);
}
@media (max-width: 1024px) {
  .btn {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 15px;
    line-height: 1.5;
    width: 90%;
    max-width: 320px;
    min-width: unset;
    min-height: 60px;
    padding: 0.6em 3em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    color: var(--white);
    background-color: var(--blue);
  }
}
@media (hover: none) {
  .btn:active {
    color: var(--white);
    background-color: var(--blue);
  }
}

.heading-wrap {
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1.1851851852;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .heading-wrap {
    font-size: 2.625rem;
  }
}
@media (max-width: 767px) {
  .heading-wrap {
    font-size: 2.125rem;
  }
}

.heading::before {
  content: attr(data-eng);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 0.5555555556em;
  letter-spacing: 0;
  display: block;
  color: var(--pink);
  margin-bottom: 0.3em;
}

@media (max-width: 767px) {
  .u-grid--col2 {
    grid-template-columns: 1fr;
  }
}

.top-btn {
  position: fixed;
  width: 60px;
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 50%;
  border: var(--pink) solid 2px;
  right: 1%;
  bottom: 1%;
  z-index: 10;
  transition: background-color var(--transition);
  display: none;
}
.top-btn::before {
  content: "";
  display: block;
  position: absolute;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--pink);
  mask-image: url("../images/icon_arrow-head_top-btn.svg");
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mask-size: 35%;
  mask-position: center;
}
@media (max-width: 1024px) {
  .top-btn {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .top-btn {
    bottom: 65px;
    width: 45px;
  }
}
.top-btn:hover {
  background-color: var(--pink);
  border-color: var(--white);
}
.top-btn:hover::before {
  background-color: var(--white);
}

.entry-btn-group {
  display: flex;
  gap: 15px;
  position: fixed;
  z-index: 51;
  top: 0;
  right: 40px;
  transition: transform var(--transition);
}
@media (max-width: 1024px) {
  .entry-btn-group {
    gap: 5px;
    justify-content: center;
    width: 100%;
    top: unset;
    bottom: 0;
    left: 0;
    z-index: 49;
    transform: translateY(100%);
    transition: transform var(--transition);
  }
  .entry-btn-group.js-active {
    transform: translateY(0);
  }
}

.entry-btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px 0.3em;
  padding-right: 1em;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background: url(../images/icon_entry-btn.svg) no-repeat calc(100% - 0.6em) center/1em;
  width: 11em;
  height: 56px;
  transition: opacity var(--transition);
}
.entry-btn[data-type=new] {
  background-color: var(--pink);
}
.entry-btn[data-type=mid] {
  background-color: #a7c662;
}
@media (max-width: 1024px) {
  .entry-btn {
    font-size: 15px;
    max-width: 170px;
    height: 58px;
    flex-direction: column;
    padding-right: 0;
    border: currentColor solid 2px;
    border-bottom-width: 0;
    border-radius: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-position: calc(100% - 0.8em) center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn:hover, .entry-btn:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .entry-btn:active {
    opacity: 0.75;
  }
}

/* ------------------------
    header
------------------------ */
.header {
  height: var(--headerHeight);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2.5%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transition: background-color var(--transition);
}
.header.js-bg {
  background: rgba(255, 255, 255, 0.9);
}
.header_logo {
  width: min(14vw, 181px);
  align-content: center;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .header_logo {
    width: 80px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.8;
  }
}

.site-name {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 767px) {
  .site-name {
    font-size: 0.9375rem;
  }
}

.header-nav {
  margin-top: 60px;
  transition: transform var(--transition);
}
.header-nav_list {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0 1.3em;
}
.header-nav_link {
  font-weight: 500;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .header-nav_link:active {
    opacity: 0.75;
  }
}
.header-nav_btn {
  position: relative;
  font-weight: 700;
  color: var(--white);
  min-height: 60px;
  padding: 0 20px;
  margin-top: 22px;
  align-content: center;
  background: url(../images/icon_entry-btn.svg) no-repeat calc(100% - 0.6em) center/1em;
  border-radius: 8px;
  transition: opacity var(--transition);
  display: none;
}
@media (max-width: 1024px) {
  .header-nav_btn {
    display: grid;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_btn:hover, .header-nav_btn:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .header-nav_btn:active {
    opacity: 0.75;
  }
}
.header-nav_btn[data-type=new] {
  background-color: var(--pink);
}
.header-nav_btn[data-type=mid] {
  background-color: #a7c662;
}

.hamburger {
  width: calc(var(--headerHeight) - 20px);
  height: calc(var(--headerHeight) - 20px);
  background: var(--pink);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  display: none;
}
.hamburger > span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 50%;
  height: 1px;
  background: var(--white);
  top: 50%;
  transition: ease 0.4s;
}
.hamburger > span:nth-of-type(1) {
  top: 37%;
}
.hamburger > span:nth-of-type(3) {
  top: 63%;
}
.hamburger.js-close > span {
  top: 50%;
}
.hamburger.js-close > span:nth-of-type(1) {
  transform: translateX(-50%) rotate(35deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-35deg);
}

@media (max-width: 1024px) {
  .header {
    position: relative;
    margin-bottom: calc(var(--headerHeight) * -1);
    padding-left: 5%;
  }
  .header_logo {
    width: 93px;
  }
  .header::before {
    content: "";
    position: fixed;
    width: 100vh;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
  }
  .header.js-active::before {
    display: block;
  }
  .header-nav {
    position: relative;
    width: 90%;
    height: 100vh;
    padding: calc(var(--headerHeight) - 1em) 1.6em 0 1.6em;
    margin-top: 0;
    background: var(--white);
    display: grid;
    align-content: center;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(110%);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    font-size: 1rem;
    flex-direction: column;
    margin-top: calc(var(--headerHeight) * -1);
  }
  .header-nav_item {
    width: 100%;
  }
  .header-nav_link {
    line-height: 1.8;
    border-bottom: 1px rgba(105, 81, 67, 0.5) solid;
    padding: 0.8em;
  }
  .hamburger {
    display: block;
  }
}
/* ------------------------
    footer
------------------------ */
.footer {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 60px 1em;
  color: var(--white);
  background-color: var(--pink);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer {
    font-size: 0.8125rem;
    padding: 30px 0 73px;
    border-radius: 0;
  }
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 0.4em 3em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
  }
}

.footer-nav a {
  position: relative;
}
.footer-nav a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0.9em;
  background: var(--white);
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .footer-nav a:not(:last-child):after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover, .footer-nav a:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:active {
    opacity: 0.75;
  }
}

.copyright {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 0.6875rem;
  }
}

/* ------------------------
    mv
------------------------ */
@media (min-width: 768px) {
  .mv {
    width: 108.2857142857%;
    margin-left: -2.9683377309%;
    margin-top: -4.0237467018vw;
  }
}

/* ------------------------
    message
------------------------ */
.message {
  max-width: 1800px;
  padding-top: 80px;
  padding-bottom: 160px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .message {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.message::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/image_deco_01.png) no-repeat center/contain;
  top: 0;
  left: 0;
  width: 47%;
  aspect-ratio: 659/563;
  transform: translate(-30%, -22%);
  z-index: -1;
}
@media (max-width: 767px) {
  .message::before {
    width: 90%;
    transform: translate(-30%, -44%);
  }
}
.message .heading-wrap {
  text-align: left;
}
@media (max-width: 767px) {
  .message .heading-wrap {
    margin-bottom: 0.7em;
  }
}
.message .u-grid {
  gap: 3em;
}
.message .u-grid[data-nun="01"] {
  grid-template-columns: auto 41.8571428571%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .message .u-grid[data-nun="01"] {
    grid-template-columns: 1fr;
  }
}
.message .u-grid[data-nun="01"] .message_main {
  padding-left: 25%;
}
@media (max-width: 1024px) {
  .message .u-grid[data-nun="01"] .message_main {
    padding-left: 14%;
  }
}
@media (max-width: 767px) {
  .message .u-grid[data-nun="01"] .message_main {
    padding: 0 5%;
  }
}
.message .u-grid[data-nun="02"] {
  grid-template-columns: 31.4285714286% auto;
  margin-bottom: 55px;
  background: url(../images/image_deco_04.png) no-repeat 102% 100%/28%;
}
@media (min-width: 1800px) {
  .message .u-grid[data-nun="02"] {
    background-position: 100% 100%;
  }
}
@media (max-width: 767px) {
  .message .u-grid[data-nun="02"] {
    grid-template-columns: 1fr;
    background-size: 200px;
    background-position: 87% 100%;
    margin-bottom: -10px;
  }
}
.message .u-grid[data-nun="02"] .message_main {
  max-width: 600px;
  padding-right: 13%;
}
@media (max-width: 767px) {
  .message .u-grid[data-nun="02"] .message_main {
    padding: 0 5% 190px;
  }
}
.message .u-grid[data-nun="02"] .message_txt {
  text-shadow: 1px 1px 5px var(--white), -1px -1px 5px var(--white), 0 0 5px var(--white);
}
@media (max-width: 767px) {
  .message .u-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.message_txt {
  font-size: 1.0588235294em;
  line-height: 2;
}
@media (max-width: 767px) {
  .message_txt {
    font-size: 1em;
    line-height: 1.8;
  }
}
.message_txt + .message_txt {
  margin-top: 1.5em;
}
.message_img-group {
  position: relative;
  order: -1;
}
@media (max-width: 767px) {
  .message_img-group {
    margin-right: 5%;
  }
}
.message_img-group::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/image_deco_03.png) no-repeat center/contain;
  width: 110%;
  aspect-ratio: 487/344;
  top: 50%;
  right: 16%;
  transform: translateY(-48%);
  z-index: -1;
}
.message_img > img {
  border-radius: var(--border-radius);
}
.message_img[data-nun="01"] {
  align-self: center;
  position: relative;
}
@media (max-width: 1800px) {
  .message_img[data-nun="01"] > img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 767px) {
  .message_img[data-nun="01"] {
    margin-left: 5%;
  }
}
.message_img[data-nun="01"]::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/image_deco_02.png) no-repeat center/contain;
  width: 44%;
  aspect-ratio: 131/67;
  bottom: 0;
  left: 43%;
  transform: translateY(71%);
  z-index: 1;
}
@media (max-width: 767px) {
  .message_img[data-nun="01"]::before {
    width: 38%;
    transform: translateY(65%);
  }
}
@media (max-width: 1800px) {
  .message_img[data-nun="02"] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 767px) {
  .message_img[data-nun="02"] {
    width: 95%;
  }
}
.message_img[data-nun="03"] {
  display: block;
  width: 69%;
  margin-top: 22px;
  margin-inline-start: auto;
}

.banner {
  width: 90%;
  max-width: 1075px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .banner {
    width: 96%;
  }
}
.banner::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/image_deco_05.png) no-repeat center/contain;
  width: 51%;
  aspect-ratio: 553/552;
  top: 50%;
  right: 0;
  transform: translate(40%, -30%);
  z-index: -1;
}
@media (max-width: 767px) {
  .banner::before {
    width: 61%;
    top: 82%;
  }
}

/* ------------------------
    environment
------------------------ */
.environment {
  position: relative;
  padding-top: 220px;
  padding-bottom: 160px;
  z-index: 1;
}
@media (max-width: 767px) {
  .environment {
    padding-top: 100px;
    padding-bottom: 110px;
  }
}
.environment::before {
  content: "";
  display: block;
  position: absolute;
  width: 132.8571428571%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/image_deco_07.png) no-repeat 88% 290px/14%, url(../images/image_deco_08.png) no-repeat -3% 63%/26%, url(../images/bg_environment.jpg) no-repeat center -100px/243%;
  border-top-left-radius: 66% 750px;
  border-top-right-radius: 66% 750px;
  z-index: -1;
}
@media (min-width: 1600px) {
  .environment::before {
    background: url(../images/image_deco_07.png) no-repeat 88% 290px/14%, url(../images/image_deco_08.png) no-repeat -3% 63%/26%, url(../images/bg_environment.jpg) no-repeat center -130px/243%;
  }
}
@media (max-width: 1024px) {
  .environment::before {
    background: url(../images/image_deco_07.png) no-repeat 88% 290px/14%, url(../images/image_deco_08.png) no-repeat -3% 63%/26%, url(../images/bg_environment.jpg) no-repeat center -100px/500%;
    border-top-left-radius: 66% 550px;
    border-top-right-radius: 66% 550px;
  }
}
@media (max-width: 767px) {
  .environment::before {
    background: url(../images/image_deco_08.png) no-repeat -44% 49%/58%, url(../images/bg_environment.jpg) no-repeat center -100px/500% 110%;
    border-top-left-radius: 66% 200px;
    border-top-right-radius: 66% 200px;
  }
}
.environment::after {
  content: "";
  display: block;
  position: absolute;
  width: 24%;
  aspect-ratio: 338/395;
  background: url(../images/image_deco_09.png) no-repeat center/contain;
  bottom: 0;
  right: 0;
  transform: translate(24%, 20%);
  z-index: 2;
}
@media (max-width: 767px) {
  .environment::after {
    width: 170px;
  }
}
.environment .inner {
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .environment .inner {
    z-index: 2;
  }
}
.environment .heading-wrap {
  position: relative;
}
@media (max-width: 767px) {
  .environment .heading-wrap {
    margin-bottom: 1.8em;
  }
}
.environment .heading-wrap::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/image_deco_06.png) no-repeat center/contain;
  width: 27%;
  aspect-ratio: 145/141;
  top: 0;
  left: 0;
  transform: translate(-30%, -87%);
  z-index: -1;
}
@media (max-width: 767px) {
  .environment .heading-wrap::before {
    width: 120px;
    transform: translate(-30%, -120%);
  }
}

.environment-list {
  display: grid;
  grid-template-areas: "item01 item01" "item02 item03" "item04 item05";
  gap: 52px 30px;
}
@media (max-width: 767px) {
  .environment-list {
    grid-template-areas: "item01" "item02" "item03" "item04" "item05";
  }
}

.environment-item {
  --item-border-radius: 20px;
  display: grid;
  grid-template-rows: 4.7em 1fr;
  position: relative;
}
@media (max-width: 767px) {
  .environment-item {
    --item-border-radius: 15px;
    grid-template-rows: auto 1fr;
  }
}
.environment-item[data-nun="01"] {
  grid-area: item01;
}
@media (min-width: 768px) {
  .environment-item[data-nun="01"] .environment-item_ttl {
    padding-top: 0.5em;
    padding-left: 2.5em;
    text-align: left;
  }
}
.environment-item[data-nun="01"] .environment-item_body {
  grid-template-columns: auto 43.2954545455%;
}
@media (max-width: 767px) {
  .environment-item[data-nun="01"] .environment-item_body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.environment-item[data-nun="01"] .environment-item_img {
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  .environment-item[data-nun="01"] .environment-item_img {
    margin-top: -21%;
  }
}
@media (max-width: 767px) {
  .environment-item[data-nun="01"] .environment-item_img {
    order: -1;
  }
}
.environment-item[data-nun="02"] {
  grid-area: item02;
}
.environment-item[data-nun="03"] {
  grid-area: item03;
}
.environment-item[data-nun="04"] {
  grid-area: item04;
}
.environment-item[data-nun="05"] {
  grid-area: item05;
}
.environment-item::before {
  content: attr(data-nun);
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  color: #ffd058;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0.2em, -60%);
}
@media (max-width: 767px) {
  .environment-item::before {
    font-size: 40px;
    transform: translate(0.5em, -60%);
  }
}
.environment-item_ttl {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2727272727;
  text-align: center;
  color: var(--white);
  background-color: var(--bg-pink);
  border-top-right-radius: var(--item-border-radius);
  border-top-left-radius: var(--item-border-radius);
  display: grid;
  align-items: center;
}
@media (max-width: 767px) {
  .environment-item_ttl {
    font-size: 1.25rem;
    padding: 0.8em;
  }
}
.environment-item_body {
  background-color: var(--white);
  border-bottom-right-radius: var(--item-border-radius);
  border-bottom-left-radius: var(--item-border-radius);
  padding: 3em;
}
@media (max-width: 767px) {
  .environment-item_body {
    padding: 1.4em;
  }
}
.environment-item:not([data-nun="01"]) .environment-item_img {
  max-height: 102px;
  margin-bottom: 0.8em;
}
@media (max-width: 767px) {
  .environment-item:not([data-nun="01"]) .environment-item_img {
    max-height: 95px;
  }
}

/* ------------------------
    gallery
------------------------ */
.gallery-swiper {
  position: relative;
  z-index: 2;
}
.gallery-swiper:not(.swiper-initialized) img {
  max-width: 358px;
}

.gallery {
  padding: 60px 0;
  transition-timing-function: linear;
}
@media (max-width: 767px) {
  .gallery {
    padding: 30px 0;
  }
}
.gallery img {
  border-radius: var(--border-radius);
}

/* ------------------------
    voice
------------------------ */
.voice {
  padding-top: 170px;
  padding-bottom: 160px;
  background: url(../images/image_deco_10.png) no-repeat -15% -53%/45%, url(../images/image_deco_11.png) no-repeat 110% 115%/37%;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 90px;
    padding-bottom: 120px;
    background-position: -23% -19%, 164% 121%;
    background-size: 68%, 70%;
  }
}
.voice .heading-wrap {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .voice .heading-wrap {
    margin-bottom: 1.1em;
  }
}

.voice-swiper {
  overflow: visible;
  /* スライダー非活性時 */
}
@media (max-width: 767px) {
  .voice-swiper {
    padding: 0 4%;
  }
}
@media (max-width: 767px) {
  .voice-swiper .swiper-wrapper {
    margin-bottom: 10px;
  }
}
.voice-swiper:not(.swiper-initialized) img {
  max-width: 358px;
}

.voice-item {
  cursor: pointer;
}
@media (max-width: 767px) {
  .voice-item {
    min-height: 21.5em;
  }
}
@media (min-width: 768px) {
  .voice-item[data-remodal-target=modal02], .voice-item[data-remodal-target=modal04], .voice-item[data-remodal-target=modal06] {
    margin-top: 50px;
  }
}
.voice-item_img {
  border-radius: var(--border-radius);
}
.voice-item_info {
  font-weight: 700;
  line-height: 1.5294117647;
  background-color: var(--white);
  border-top-left-radius: var(--border-radius);
  width: 86.1111111111%;
  padding: 1em 1.5em 1.5em;
  margin-left: auto;
  margin-top: -6em;
  position: relative;
}
@media (max-width: 767px) {
  .voice-item_info {
    border-top-left-radius: 10px;
    padding: 0.8em 0.5em 0.8em 1em;
  }
}
.voice-item_name {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25em;
}
@media (max-width: 767px) {
  .voice-item_name {
    font-size: 0.625rem;
  }
}
.voice-item_name .emphasis {
  font-size: 2em;
}
@media (max-width: 767px) {
  .voice-item_name .emphasis {
    font-size: 1.8em;
  }
}
.voice-item_detail {
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 3px;
  color: var(--pink);
}
@media (max-width: 767px) {
  .voice-item_detail {
    font-size: 0.75rem;
  }
}
.voice-item_detail + .voice-item_detail {
  margin-top: 0.2em;
}
.voice-item_detail::before {
  content: "●";
  font-size: 0.7em;
  color: var(--black);
  flex-shrink: 0;
  transform: translateY(0.3em);
}
.voice-item_age {
  display: block;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .voice-item_age {
    font-size: 0.75rem;
  }
}
.voice-item_more {
  font-size: 0.8235294118em;
  font-weight: 500;
  display: block;
  width: fit-content;
  padding-right: 4em;
  margin-left: auto;
  margin-top: 1.5em;
  position: relative;
}
@media (max-width: 767px) {
  .voice-item_more {
    font-size: 0.625rem;
  }
}
.voice-item_more::before, .voice-item_more::after {
  content: "";
  display: block;
  position: absolute;
  display: block;
  width: 2.7em;
  aspect-ratio: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.voice-item_more::before {
  border: var(--pink) solid 2px;
  border-radius: 50%;
  background-color: var(--pink);
}
.voice-item_more::after {
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--white);
  mask-image: url("../images/icon_arrow-head_search.svg");
  mask-size: 0.72em;
  mask-position: 54% center;
  padding-left: 0.2em;
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .voice-item:hover .voice-item_more::before, .voice-item:focus .voice-item_more::before {
    background-color: var(--white);
  }
  .voice-item:hover .voice-item_more::after, .voice-item:focus .voice-item_more::after {
    background-color: var(--pink);
  }
}
@media (hover: none) {
  .voice-item:active .voice-item_more::before {
    background-color: var(--white);
  }
  .voice-item:active .voice-item_more::after {
    background-color: var(--pink);
  }
}

.swiper-options {
  position: relative;
  display: flex;
  gap: 40px;
  transform: translateY(100%);
  padding-left: 10%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .swiper-options {
    gap: 30px;
    justify-content: center;
    padding-left: 0;
  }
}

.swiper-button-prev {
  transform: rotate(-180deg);
}

.swiper-button-next,
.swiper-button-prev {
  background-color: var(--white);
  border-radius: 50%;
  border: var(--pink) solid 2px;
  width: 64px;
  height: 64px;
  position: static;
  flex-shrink: 0;
  position: relative;
  transition: background-color var(--transition);
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  display: block;
  position: absolute;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: var(--pink);
  mask-image: url("../images/icon_arrow-head_search.svg");
  aspect-ratio: 9/5;
  width: 50%;
  transition: background-color var(--transition);
}
@media (max-width: 767px) {
  .swiper-button-next::before,
  .swiper-button-prev::before {
    width: 55%;
  }
}
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}
@media (hover: hover) and (pointer: fine) {
  .swiper-button-next:hover, .swiper-button-next:focus,
  .swiper-button-prev:hover,
  .swiper-button-prev:focus {
    background-color: var(--pink);
  }
  .swiper-button-next:hover::before, .swiper-button-next:focus::before,
  .swiper-button-prev:hover::before,
  .swiper-button-prev:focus::before {
    background-color: var(--white);
  }
}
@media (hover: none) {
  .swiper-button-next:active,
  .swiper-button-prev:active {
    background-color: var(--pink);
  }
  .swiper-button-next:active::before,
  .swiper-button-prev:active::before {
    background-color: var(--white);
  }
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.remodal {
  padding-top: 130px;
  padding-bottom: 350px;
  margin-bottom: 0;
  overflow-x: clip;
}
@media (max-width: 767px) {
  .remodal {
    padding-top: 80px;
  }
}

.modal {
  position: relative;
  text-align: left;
  background: var(--white);
  border-radius: 20px;
  padding: 90px 5%;
}
@media (max-width: 767px) {
  .modal {
    padding: 35px 5% 60px;
  }
}
.modal.inner {
  max-width: 1200px;
}
.modal-top {
  position: relative;
  margin-bottom: 40px;
}
.modal_img {
  border-top-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  overflow: hidden;
}
@media (max-width: 767px) {
  .modal_img {
    border-radius: 15px;
  }
}
.modal_ttl {
  font-weight: 700;
  font-size: 1.125rem;
  background: var(--white);
  border-bottom-right-radius: var(--border-radius);
  padding: 0.5em 2em 0.5em 1em;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .modal_ttl {
    position: static;
    font-size: 0.9375rem;
    display: block;
    padding-left: 0;
    margin-bottom: 0.6em;
  }
}
.modal_ttl::before {
  content: "●";
  font-size: 0.55em;
  vertical-align: 0.3em;
  color: var(--pink);
  margin-right: 8px;
}
@media (max-width: 767px) {
  .modal_ttl::before {
    font-size: 0.8em;
    vertical-align: 0;
    margin-right: 4px;
  }
}
.modal .voice-item_info {
  width: 440px;
  margin-top: -8em;
}
@media (max-width: 767px) {
  .modal .voice-item_info {
    width: 60%;
    padding-right: 0;
    margin-top: -7em;
  }
}
.modal-question {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.2173913043;
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .modal-question {
    font-size: 1.0625rem;
  }
}
.modal-question::before {
  content: "Q";
  display: block;
  position: absolute;
  font-size: 1.0434782609em;
  line-height: 1;
  text-align: center;
  display: grid;
  align-items: center;
  color: var(--white);
  background-color: var(--pink);
  border-radius: 50%;
  padding-bottom: 0.1em;
  width: 1.73em;
  aspect-ratio: 1;
  top: -0.25em;
  left: 0;
}
.modal-answer {
  background-color: #f5f0e4;
  border-radius: 10px;
  padding: 0.5em 1em;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .modal-answer {
    font-size: 0.9375rem;
    padding: 1em 1.2em;
    margin-bottom: 40px;
  }
}

.close-btn {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  background: url(../images/icon_close.svg) no-repeat calc(100% - 20px) center/0.9em, var(--pink);
  min-width: 13em;
  padding: 0.5em;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .close-btn {
    font-size: 1.0625rem;
    background-size: 1em;
    padding: 0.8em;
  }
}

.close-btn-02 {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../images/icon_close.svg) no-repeat center/18px, var(--pink);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width: 767px) {
  .close-btn-02 {
    width: 40px;
    transform: translate(-50%, 50%);
  }
}

/* ------------------------
   faq
------------------------ */
.faq {
  background: url(../images/image_deco_12.png) no-repeat 101% 27px/29%, url(../images/image_deco_13.png) no-repeat -4% 100%/29%, #fefdec;
  padding-top: 110px;
  padding-bottom: 90px;
  position: relative;
  --pl: 90px;
  --pr: 70px;
  --top: 1em;
  --left: 22px;
}
@media (min-width: 1800px) {
  .faq {
    background-size: 500px, 25%;
  }
}
@media (max-width: 767px) {
  .faq {
    padding-top: 75px;
    background-position: 145% 27px, -40% 99%;
    background-size: 50%, 58%;
    --top: 50%;
    --pl: 75px;
    --pr: 55px;
  }
}
.faq::before {
  content: "";
  display: block;
  position: absolute;
  display: block;
  width: 100%;
  aspect-ratio: 100/7;
  background: url(../images/bg_faq_01.svg) no-repeat center top/100%;
  bottom: 100%;
  left: 0;
}
.faq::after {
  content: "";
  display: block;
  position: absolute;
  display: block;
  width: 100%;
  aspect-ratio: 100/7;
  background: url(../images/bg_faq_02.svg) no-repeat center top/100%;
  top: 100%;
  left: 0;
}
.faq .heading::before {
  color: var(--light-blue);
}

.faq-box {
  border-radius: 20px;
  overflow: hidden;
}

.question {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.2380952381;
  min-height: 4.5em;
  display: grid;
  align-content: center;
  background-repeat: no-repeat;
  background-size: 1em, 0;
  background-image: url(../images/icon_plus.svg), url(../images/icon_minus.svg);
  background-position: calc(100% - 35px) 50%;
  background-color: var(--white);
  padding: 1em var(--pr) 1em var(--pl);
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .question {
    font-size: 1.0625rem;
    background-position: calc(100% - 18px) 50%;
  }
}
.question.js-active {
  background-size: 0, 1em;
}
.question:not(:nth-last-child(2)) {
  border-bottom: #dcdada 1px solid;
}
.question::before {
  content: "Q";
  display: block;
  position: absolute;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
  text-align: center;
  display: grid;
  align-items: center;
  color: var(--white);
  background-color: var(--light-blue);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 2.15em;
  top: var(--top);
  left: var(--left);
}
@media (max-width: 767px) {
  .question::before {
    font-size: 1.0625rem;
    width: 1.88em;
    padding-bottom: 0.15em;
    transform: translateY(-50%);
  }
}

.answer {
  font-weight: 500;
  line-height: 1.6470588235;
  background-color: var(--bg-light-blue);
}
@media (max-width: 767px) {
  .answer {
    font-size: 0.9375rem;
  }
}
.answer:not(:last-child) {
  border-bottom: #dcdada 1px solid;
}
.answer_inner {
  display: grid;
  align-content: center;
  min-height: 5.25em;
  padding: 1em var(--pr) 1em var(--pl);
  position: relative;
}
.answer_inner::before {
  content: "A";
  display: block;
  position: absolute;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: grid;
  align-items: center;
  color: var(--light-blue);
  background-color: var(--white);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 2.15em;
  top: var(--top);
  left: var(--left);
}
@media (max-width: 767px) {
  .answer_inner::before {
    font-size: 1.0625rem;
    width: 1.88em;
    padding-bottom: 0.1em;
    transform: translateY(-50%);
  }
}

/* ------------------------
    search
------------------------ */
.search {
  padding-top: 200px;
  padding-bottom: 180px;
  background: url(../images/image_deco_14.png) no-repeat 105% 140px/35%, url(../images/image_deco_15.png) no-repeat -5% 400px/15%, url(../images/image_deco_16.png) no-repeat 95% 750px/20%, url(../images/bg_search.jpg) no-repeat center -15px/cover;
}
@media (max-width: 767px) {
  .search {
    padding-top: 100px;
    padding-bottom: 110px;
    background-size: 55%, 30%, 150px, cover;
    background-position: 130% 20px, -7% 50px, 110% calc(100% - 30px), center -15px;
  }
}
.search .heading::before {
  color: var(--light-green);
}
.search .u-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .search .u-grid {
    grid-template-columns: 1fr;
  }
}

.search-element {
  border-radius: 10px;
  overflow: clip;
}

.search-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  background-color: var(--light-green);
  width: 100%;
  padding: 0.5em 45px;
  position: relative;
}
.search-ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.4em;
  aspect-ratio: 1;
  background: url(../images/icon_arrow-head_search-title.svg) no-repeat center/contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(180deg);
}
.search-ttl.js-active::before {
  transform: translateY(-50%);
}

.search-list {
  background-color: var(--white);
}

.search-item {
  font-weight: 500;
  background: url(../images/icon_arrow-head_search.svg) no-repeat calc(100% - 20px) center/0.5em;
}
.search-item + .search-item {
  border-top: 1px #dcdada solid;
}
.search-item a {
  padding: 1em 45px 1em 1em;
  transition: color var(--transition);
}
@media (max-width: 767px) {
  .search-item a {
    font-size: 1.0625rem;
    padding: 0.7em 45px 0.7em 1em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .search-item a:hover, .search-item a:focus {
    color: var(--light-green);
  }
}
@media (hover: none) {
  .search-item a:active {
    color: var(--light-green);
  }
}

/* ------------------------
    outline history
------------------------ */
.outline {
  padding-top: 50px;
  padding-bottom: 130px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .outline {
    padding-top: 20px;
    padding-bottom: 0px;
  }
}
.outline::before {
  content: "";
  display: block;
  position: absolute;
  width: 138%;
  aspect-ratio: 1;
  background: url(../images/image_deco_10.png) no-repeat center/contain;
  top: 0;
  right: 0;
  transform: translate(-30%, -57%);
  z-index: -1;
}
@media (max-width: 767px) {
  .outline::before {
    width: 68%;
    transform: translate(-84%, -65%);
  }
}
.outline .heading-wrap {
  font-size: 3rem;
  margin-bottom: 1.5em;
}
.outline .heading-wrap::before {
  font-size: 0.625em;
}
@media (max-width: 1024px) {
  .outline .heading-wrap {
    font-size: 2.375rem;
  }
}
@media (max-width: 767px) {
  .outline .heading-wrap {
    font-size: 2.125rem;
    margin-bottom: 0.55em;
  }
}

.history {
  padding-top: 50px;
  padding-bottom: 130px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .history {
    padding-top: 0;
    padding-bottom: 80px;
  }
}
.history::before {
  content: "";
  display: block;
  position: absolute;
  width: 280%;
  aspect-ratio: 2/1;
  background: url(../images/image_deco_11.png) no-repeat left top/100%;
  bottom: 0;
  right: 0;
  transform: translate(50%, 8%);
  z-index: -1;
}
@media (max-width: 767px) {
  .history::before {
    width: 66%;
    aspect-ratio: 1.5/1;
    transform: translate(30%, 0%);
  }
}
.history .heading-wrap {
  font-size: 3rem;
  margin-bottom: 1.5em;
}
.history .heading-wrap::before {
  font-size: 0.625em;
}
@media (max-width: 1024px) {
  .history .heading-wrap {
    font-size: 2.375rem;
  }
}
@media (max-width: 767px) {
  .history .heading-wrap {
    font-size: 2.125rem;
    margin-bottom: 0.55em;
  }
}
@media (max-width: 1024px) {
  .history br.u-pc {
    display: none;
  }
}

.table {
  background-color: var(--white);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .table {
    font-size: 0.9375rem;
  }
}
.table th,
.table td {
  font-weight: 500;
  line-height: 1.4117647059;
  vertical-align: middle;
  padding: 1em 0;
}
.table tr > :first-child {
  color: var(--pink);
  min-width: 6.5em;
  border-top: 1px var(--pink) solid;
  min-height: 5.6em;
  display: grid;
  align-content: center;
}
.table tr > :last-child {
  border-top: 1px #dcdada solid;
  padding-left: 1em;
  padding-right: 1em;
}
.table tr:last-of-type > :first-child {
  border-bottom: 1px var(--pink) solid;
}
.table tr:last-of-type > :last-child {
  border-bottom: 1px #dcdada solid;
}/*# sourceMappingURL=style.css.map */