@charset "UTF-8";
/*全体と基本的なjsはコチラに書く。中谷*/
:root {
  --black: #161515;
  --pink: #78a0d5;
  --mu: "Mulish", sans-serif;
  --noto: "Noto Sans JP", sans-serif;
}

.en {
  font-family: var(--mu);
}

.swiper-slide img {
  width: 100.2%;
  max-width: 100.2%;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  line-height: 1.8;
}

body {
  font-family: var(--noto);
  color: var(--black);
  font-weight: 400;
  opacity: 0;
  animation-name: fadeAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  width: 100%;
  margin: 0 auto;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition-duration: 1s;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  opacity: 1;
  visibility: visible;
  z-index: 99;
  transition-duration: 1s;
}

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

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.8rem;
}

.under-834only {
  display: none;
}

.under-834none {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.logo {
  width: 196px;
}

.inner {
  width: 1300px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

header {
  position: fixed;
  width: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  padding: 0 30px 0 40px;
  align-items: center;
  height: 120px;
  animation-name: fadeAnime;
  animation-duration: 1s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}

.header__nav {
  display: flex;
  gap: 35px;
  background-color: rgba(245, 245, 245, 0.7843137255);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 15px 40px;
  border-radius: 70px;
}
.header__nav li a {
  font-size: 1.2rem;
  color: var(--black);
  font-family: var(--hel_r);
}
.header__nav li a.header__nav-contact {
  background-color: var(--orange);
  border-radius: 50px;
  padding: 2px 10px;
  color: #fff;
}

/* --------------------フェードアップ------------------------ */
.js-fadeup.in {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.js-load-fadeup.in {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
}

/* --------------------フェードイン------------------------ */
.js-fadein.in {
  animation-name: fadeAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.js-load-fadein.in {
  animation-name: fadeAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-fadein {
  opacity: 0;
}

/* ロードで */
.js-load-fadein {
  opacity: 0;
}

.js-load-fadeup {
  opacity: 0;
}

.delay600 {
  animation-delay: 0.6s;
}

.delay1200 {
  animation-delay: 1.2s;
}

.delay1800 {
  animation-delay: 1.8s;
}

.mb0 {
  margin-bottom: 0 !important;
}

.under1350-none {
  display: inline-block;
}

#ham {
  display: block;
  width: 82px;
  height: 82px;
  cursor: pointer;
}

.ham {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  background-color: #fff;
}
.ham span {
  width: 30%;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  left: 35%;
  transition-duration: 1s;
}
.ham span:first-of-type {
  top: 38px;
  animation: ham1re 1s forwards;
}
.ham span:last-of-type {
  top: 48px;
  animation: ham2re 1s forwards;
}
.ham.active span:first-of-type {
  transform: rotate(405deg);
  top: 50%;
  transition-duration: 1s;
  animation: ham1 1s forwards;
}
.ham.active span:last-of-type {
  transform: rotate(315deg);
  top: 50%;
  transition-duration: 1s;
  animation: ham2 1s forwards;
}

@keyframes ham1 {
  0% {
    transform: rotate(0deg);
    top: 38px;
  }
  10% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(405deg);
    top: 50%;
  }
}
@keyframes ham2 {
  0% {
    transform: rotate(0deg);
    top: 48px;
  }
  10% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(315deg);
    top: 50%;
  }
}
@keyframes ham1re {
  0% {
    transform: rotate(405deg);
    top: 50%;
  }
  90% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
    top: 38px;
  }
}
@keyframes ham2re {
  0% {
    transform: rotate(315deg);
    top: 50%;
  }
  90% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
    top: 48px;
  }
}
.sp-menu {
  position: fixed;
  top: 0;
  right: -120%;
  width: 913px;
  max-width: 100%;
  height: auto;
  max-height: 100vh;
  z-index: 1000;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  transition-duration: 1s;
}
.sp-menu.active {
  right: 0;
  transition-duration: 1s;
}

.sp-menu__wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: #e7f3ff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 100px 70px 100px;
  position: relative;
  border-radius: 60px 0 0 60px;
}

/*Google Chrome、Safariへの対応*/
.sp-menu::-webkit-scrollbar {
  display: none;
}

.sp-menu__nav {
  display: flex;
  flex-wrap: wrap;
}
.sp-menu__nav li {
  width: 50%;
  padding-right: 20px;
  margin-bottom: 30px;
  position: relative;
}
.sp-menu__nav li a {
  color: var(--black);
  font-size: 3.6rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  line-height: 1;
}
.sp-menu__nav li a .ja {
  font-size: 1.4rem;
  display: block;
  margin-top: 5px;
}

.pink-txt {
  color: var(--pink);
}

.sp-menu__sns-nav-bl {
  display: flex;
  margin-top: 250px;
  justify-content: space-between;
}

.sp-menu__sns-nav {
  display: flex;
  gap: 50px;
}
.sp-menu__sns-nav li .sns-icon {
  width: 32px;
  display: block;
}
.sp-menu__sns-nav li a {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-menu__off-link {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sp-menu__off-link .arrow {
  display: block;
  width: 12px;
  height: 12px;
  transform: translate(0, -15px);
}

.wave-anim-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.wave-anim {
  position: relative;
  width: 200%;
  display: flex;
}
.wave-anim .item {
  width: 50%;
}
.wave-anim .item img {
  width: 100%;
  animation: waveAnim 20s linear infinite;
}
.wave-anim .item2 {
  width: 50%;
}
.wave-anim .item2 img {
  width: 100%;
  animation: waveAnim 20s linear infinite;
}

@keyframes waveAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes waveAnim2 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 1200px) {
  p {
    font-size: 1.7rem;
  }
}
@media (max-width: 834px) {
  .under-834only {
    display: inline-block;
  }
  .js-fadeup-sp.in {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
  }
  .js-fadeup-sp {
    opacity: 0;
    transform: translateY(20px);
  }
  .under-834none {
    display: none;
  }
  @keyframes ham1 {
    0% {
      transform: rotate(0deg);
      top: 26px;
    }
    10% {
      top: 50%;
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(405deg);
      top: 50%;
    }
  }
  @keyframes ham2 {
    0% {
      transform: rotate(0deg);
      top: 36px;
    }
    10% {
      top: 50%;
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(315deg);
      top: 50%;
    }
  }
  @keyframes ham1re {
    0% {
      transform: rotate(405deg);
      top: 50%;
    }
    90% {
      top: 50%;
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
      top: 26px;
    }
  }
  @keyframes ham2re {
    0% {
      transform: rotate(315deg);
      top: 50%;
    }
    90% {
      top: 50%;
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
      top: 36px;
    }
  }
  header {
    padding: 0 15px 0 22px;
    height: 80px;
  }
  #ham {
    width: 60px;
    height: 60px;
  }
  .sp-menu__wrapper {
    padding: 100px 25px 100px;
    border-radius: 35px 0 0 35px;
  }
  .sp-menu__nav li {
    width: 100%;
  }
  .sp-menu__nav li a {
    font-size: 2.4rem;
  }
  .sp-menu__sns-nav {
    display: block;
  }
  .sp-menu__sns-nav-bl {
    display: block;
    margin-top: 20px;
  }
  .sp-menu__sns-nav-bl li {
    margin-bottom: 20px;
  }
  p {
    font-size: 1.5rem;
  }
}
#mv {
  height: 3500px;
}

.mv__img-bl {
  background-image: url(../img/mv-bg.webp);
  background-size: cover;
  background-position: center center;
  position: sticky;
  left: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 50;
}
.mv__img-bl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #b7cfee;
  opacity: 0;
  top: 0;
  left: 0;
  transition-duration: 1s;
}
.mv__img-bl.op05 #mv__main-svg {
  opacity: 0.5;
  transition-duration: 1s;
}
.mv__img-bl.op05 #mv__main-svg .cls-1 {
  stroke: #fff !important;
  transition-duration: 1s;
  opacity: 0.5;
}
.mv__img-bl.op05 #mv__main-svg .cls-3 {
  fill: #fff !important;
  transition-duration: 1s;
  opacity: 0.5;
}
.mv__img-bl.op05 #mv-logo-circle,
.mv__img-bl.op05 #mv-deco01,
.mv__img-bl.op05 #mv-deco02,
.mv__img-bl.op05 #mv-deco03,
.mv__img-bl.op05 #mv-deco04,
.mv__img-bl.op05 #mv-deco05 {
  opacity: 0.5 !important;
  transition-duration: 1s;
}
.mv__img-bl.op05 #mv-content {
  opacity: 1;
  transition-duration: 1s;
  visibility: visible;
}
.mv__img-bl.op05::before {
  z-index: 51;
  opacity: 0.5;
  transition-duration: 1s;
}
.mv__img-bl.op0 #mv__main-svg {
  opacity: 0;
  transition-duration: 1s;
}
.mv__img-bl.op0 #mv__main-svg .cls-1 {
  stroke: #fff !important;
  transition-duration: 1s;
  opacity: 0;
}
.mv__img-bl.op0 #mv__main-svg .cls-3 {
  fill: #fff !important;
  transition-duration: 1s;
  opacity: 0;
}
.mv__img-bl.op0 #mv-logo-circle,
.mv__img-bl.op0 #mv-deco01,
.mv__img-bl.op0 #mv-deco02,
.mv__img-bl.op0 #mv-deco03,
.mv__img-bl.op0 #mv-deco04,
.mv__img-bl.op0 #mv-deco05 {
  opacity: 0 !important;
  transition-duration: 1s;
}
.mv__img-bl.op0 #mv-content {
  opacity: 0;
  transition-duration: 1s;
  visibility: visible;
}
.mv__img-bl.op0 + .mv-swiper-wrapper {
  opacity: 0;
  transition-duration: 1s;
  visibility: hidden;
}

#mv__main-svg {
  width: 800px;
  opacity: 0;
  animation-name: mvMainSvg;
  animation-timing-function: ease-in-out;
  animation-duration: 0.7s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes mvMainSvg {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  75% {
    transform: scale(1.2) rotate(360deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}
.mv__img-wrapper {
  position: relative;
  z-index: 52;
}

#mv-logo-circle,
#mv-deco01,
#mv-deco02,
#mv-deco03,
#mv-deco04,
#mv-deco05,
#mv-content {
  position: absolute;
}

#mv-deco01,
#mv-deco02,
#mv-deco03,
#mv-deco04,
#mv-deco05 {
  display: none;
}

#mv-logo-circle {
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: -1;
  animation-name: fadeAnime;
  animation-duration: 0.5s;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes floating1 {
  0% {
    transform: translate(-5%, -10%) rotate(3deg);
  }
  100% {
    transform: translate(5%, 10%) rotate(-7deg);
  }
}
@keyframes floating2 {
  0% {
    transform: translate(-3%, -5%);
  }
  100% {
    transform: translate(2%, 5%);
  }
}
@keyframes floating3 {
  0% {
    transform: translate(-3%, -3%) rotate(1deg);
  }
  100% {
    transform: translate(3%, 3%) rotate(-4deg);
  }
}
@keyframes floating4 {
  0% {
    transform: translate(-6%, -7%) rotate(5deg);
  }
  100% {
    transform: translate(6%, 7%) rotate(-5deg);
  }
}
@keyframes floating5 {
  0% {
    transform: translate(-5%, -6%) rotate(-2deg);
  }
  100% {
    transform: translate(5%, 6%) rotate(4deg);
  }
}
#mv-deco01 {
  width: 128px;
  top: -120px;
  right: -230px;
  animation: floating1 2.8s ease-in-out infinite alternate-reverse;
}

#mv-deco02 {
  width: 63px;
  top: 45px;
  right: -103px;
  animation: floating2 1.8s ease-in-out infinite alternate-reverse;
}

#mv-deco03 {
  width: 89px;
  bottom: 0;
  right: -250px;
  animation: floating3 5s ease-in-out infinite alternate-reverse;
}

#mv-deco04 {
  width: 88px;
  top: 65px;
  left: -240px;
  animation: floating4 3s ease-in-out infinite alternate-reverse;
}

#mv-deco05 {
  width: 150px;
  bottom: 30px;
  left: -270px;
  animation: floating5 4s ease-in-out infinite alternate-reverse;
}

#mv-content {
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}

.mv__cont-ttl {
  font-family: var(--mu);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
  font-size: 15rem;
}

.mv__cont-ttl-small {
  font-family: var(--mu);
  font-weight: bold;
  line-height: 1;
  font-size: 10rem;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}

.mv__cont-txt {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.mv__cont-tag {
  width: 613px;
  margin: 0 auto;
}

.mv-swiper-wrapper {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 51;
  animation-name: fadeAnime;
  animation-duration: 2s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.mv-swiper-wrapper .position-relative {
  width: 100%;
  position: relative;
}

.mv-swiper {
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(180deg, #fbd9ed 12%, #decaf0 91%);
  color: transparent;
  font-size: 6.6vw;
  font-weight: bold;
  line-height: 1;
  font-family: var(--mu);
}
.mv-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.scroll-move {
  border-radius: 50% 50% 0 0;
  padding: 300px 0 600px;
  background-color: #fff;
}

.under450-only {
  display: none;
}

@media (max-width: 1500px) {
  #mv__main-svg {
    width: 600px;
  }
  #mv-deco01 {
    width: 91px;
    top: -78px;
    right: -167px;
  }
  #mv-deco02 {
    width: 41px;
    top: 47px;
    right: -85px;
  }
  #mv-deco03 {
    width: 71px;
    bottom: 0;
    right: -185px;
  }
  #mv-deco04 {
    width: 71px;
    top: 44px;
    left: -163px;
  }
  #mv-deco05 {
    width: 110px;
    bottom: 61px;
    left: -202px;
  }
  .mv__cont-ttl {
    font-size: 12rem;
  }
  .mv__cont-ttl-small {
    font-size: 8rem;
    margin-bottom: 30px;
  }
  .mv__cont-txt {
    font-size: 1.8rem;
  }
  .mv__cont-tag {
    width: 500px;
  }
}
@media (max-width: 1200px) {
  #mv__main-svg {
    width: 500px;
  }
  #mv-deco01 {
    right: -139px;
  }
  #mv-deco02 {
    right: -66px;
  }
  #mv-deco03 {
    right: -140px;
  }
  #mv-deco04 {
    left: -96px;
  }
  #mv-deco05 {
    left: -137px;
  }
  .mv__cont-ttl {
    font-size: 10rem;
  }
  .mv__cont-ttl-small {
    font-size: 6rem;
    margin-bottom: 20px;
  }
  .mv__cont-tag {
    width: 450px;
  }
}
@media (max-width: 834px) {
  #mv__main-svg {
    width: 80vw;
    max-width: 500px;
  }
  #mv-deco01 {
    right: 0;
    width: 15vw;
    top: -28vw;
  }
  #mv-deco02 {
    right: 17vw;
    width: 6vw;
    top: -15vw;
  }
  #mv-deco03 {
    right: -7vw;
    width: 11vw;
    bottom: -14vw;
  }
  #mv-deco04 {
    left: -5vw;
    width: 9vw;
    top: -9vw;
  }
  #mv-deco05 {
    left: 0;
    width: 11vw;
    bottom: -24vw;
  }
  .mv__cont-ttl {
    font-size: 12vw;
  }
  .mv__cont-ttl-small {
    font-size: 8vw;
  }
  .mv__cont-txt {
    font-size: 1.5rem;
  }
  .mv__cont-tag {
    width: 80vw;
    max-width: 450px;
  }
}
@media (max-width: 450px) {
  .under450-only {
    display: inline-block;
  }
}
#intr {
  margin-top: -50vw;
  z-index: 100;
  position: relative;
  overflow: hidden;
}
#intr .scroll-move {
  background-color: #f6faff;
}

.scroll-move {
  border-radius: 50vw 50vw 0 0;
  position: relative;
  padding: 20vw 0 56vw;
}

.intr__circle-bl {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.intr__circle-bl::before {
  content: "";
  display: block;
  position: absolute;
  top: 14vw;
  left: 50%;
  transform: translateX(-50%);
  /* background: #fdf7f9; */
  background: rgb(246, 250, 255);
  background: linear-gradient(0deg, rgb(246, 250, 255) 0%, rgb(246, 250, 255) 74%, rgba(253, 247, 249, 0) 100%);
  z-index: 101;
  width: 100%;
  height: 70vw;
}
.intr__circle-bl img {
  width: 100%;
  display: block;
  animation: kurukuru 50s linear infinite;
  position: absolute;
  top: -14vw;
}

@keyframes kurukuru {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.intr__cont {
  position: relative;
  z-index: 102;
}
.intr__cont p {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 25px;
}

.intr__ttl {
  width: 860px;
  max-width: 90%;
  margin: 0 auto 50px;
}

.intr__ttl-small {
  font-size: 3rem !important;
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 1500px) {
  .intr__ttl {
    width: 700px;
  }
  .intr__ttl-small {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 1200px) {
  .intr__ttl {
    width: 560px;
    margin-bottom: 35px;
  }
  .intr__ttl-small {
    font-size: 2.1rem !important;
  }
}
@media (max-width: 834px) {
  .intr__ttl {
    padding-top: 10vw;
    margin-bottom: 30px;
  }
  .intr__ttl-small {
    font-size: 1.7rem !important;
  }
  .intr__cont p {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  .intr__cont p {
    text-align: left;
  }
}
#about {
  margin-top: -50vw;
  z-index: 100;
  position: relative;
}
#about .scroll-move {
  background-color: #d7e6fa;
  padding-bottom: 200px;
}
#about .txt-bl {
  margin-bottom: 70px;
}
#about .txt-bl p {
  text-align: center;
}

.about__cont-top {
  position: relative;
}

#about__hello {
  position: absolute;
  width: 387px;
  left: 27%;
  top: -80px;
}
#about__hello img {
  width: 100%;
}

#about__mahalo {
  width: 800px;
  padding-right: 100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

#about__ttl {
  display: block;
  position: absolute;
  width: 203px;
  top: -148px;
  right: calc(50% - 446px);
}
#about__ttl img {
  width: 100%;
}

#about__woman1 {
  position: absolute;
  width: 158px;
  top: 40px;
  left: 80px;
}
#about__woman1 img {
  width: 100%;
}

#about__woman2 {
  width: 327px;
  right: 90px;
  top: 60px;
  position: absolute;
}
#about__woman2 img {
  width: 100%;
}

.about__ttl-middle {
  font-weight: bold;
  text-align: center;
  font-size: 4.8rem;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 20px;
}
.about__ttl-middle .small {
  display: block;
  text-align: center;
  font-size: 2.7rem;
}

.about__care {
  margin-bottom: 40px;
}

.about__care-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.about__care-list > li {
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
  position: relative;
}
.about__care-list > li .cont {
  padding-top: 125px;
  position: relative;
  z-index: 103;
}
.about__care-list > li::before {
  content: "";
  display: block;
  width: 90%;
  aspect-ratio: 1/1;
  background-image: url(../img/care-circle01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 102;
  position: absolute;
}
.about__care-list > li:last-of-type::before {
  background-image: url(../img/care-circle02.webp);
}
.about__care-list .about__care-list-ttl {
  font-family: var(--mu);
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 70px;
  justify-content: center;
}
.about__care-list .about__care-list-ttl::before {
  width: 125px;
  height: 24px;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  background-image: url(../img/under-gizagiza.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  content: "";
}
.about__care-list .care-img {
  display: inline-block;
  width: 80px;
}
.about__care-list .care-img img {
  width: 100%;
  transform: translateY(-10px);
}

.float-img {
  width: 94px;
  position: absolute;
  top: 182px;
  left: 72px;
}

.about__care-list-txt {
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about__care-list-small {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 380px;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
}
.about__care-list-small li {
  background-color: #b1ccef;
  color: #fff;
  font-family: var(--mu);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 5px 15px;
}

.about__care-img {
  width: 276px;
  margin: 0 auto;
}
.about__care-img img {
  width: 100%;
}

.wave-swiper-ab {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 104;
  width: 100%;
  overflow: hidden;
}

.wave-swiper01 {
  position: relative;
}
.wave-swiper01 .swiper-wrapper {
  transition-timing-function: linear;
}

@media (max-width: 1500px) {
  #about__woman1 {
    width: 13vw;
    top: 40px;
    left: 3%;
  }
  #about__mahalo {
    width: 59vw;
    padding-right: 5vw;
  }
  #about__hello {
    width: 39vw;
    left: 22%;
    top: -8vw;
  }
  #about__ttl {
    width: 13vw;
    top: -8vw;
    right: 12vw;
  }
  #about__woman2 {
    width: 22vw;
    right: 4%;
    top: 5vw;
  }
  .about__ttl-middle .small {
    font-size: 2.4rem;
  }
  .about__ttl-middle {
    font-size: 4rem;
  }
}
@media (max-width: 1300px) {
  .about__care-list > li .cont {
    padding-top: 110px;
  }
  .about__care-list .about__care-list-ttl {
    font-size: 2.4rem;
    margin-bottom: 47px;
  }
  .about__care-list .about__care-list-ttl::before {
    bottom: -33px;
  }
  .about__care-list-txt {
    font-size: 2.4rem;
  }
  .float-img {
    width: 77px;
    top: 146px;
    left: 61px;
  }
  .about__care-list-small li {
    font-size: 2rem;
  }
  .about__care-img {
    width: 230px;
  }
}
@media (max-width: 1130px) {
  #about .txt-bl {
    margin-bottom: 40px;
  }
  .about__care-list .about__care-list-ttl {
    font-size: 2.5vw;
    margin-bottom: 34px;
  }
  .about__care-list .care-img {
    width: 7vw;
  }
  .about__care-list .about__care-list-ttl::before {
    bottom: -24px;
    width: 96px;
  }
  .float-img {
    width: 5vw;
    top: 14vw;
    left: 10%;
  }
  .about__care-list-txt {
    font-size: 2.5vw;
    line-height: 1.5;
  }
  .about__care-img {
    width: 157px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -89px;
  }
  .about__care-list-small {
    width: 300px;
    gap: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
  .about__care-list-small li {
    font-size: 1.6rem;
  }
  .about__care-list > li .cont {
    padding-top: 10vw;
  }
  #about .scroll-move {
    padding-bottom: 120px;
  }
}
@media (max-width: 834px) {
  .about__ttl-middle .small {
    font-size: 1.8rem;
  }
  .about__ttl-middle {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
  .about__care-list {
    grid-template-columns: 1fr;
    width: 400px;
    margin: 0 auto;
  }
  .float-img {
    width: 50px;
    top: 140px;
    left: 8%;
  }
  .about__care-list > li .cont {
    padding-top: 82px;
  }
  .about__care-list .about__care-list-ttl {
    font-size: 2.6rem;
  }
  .about__care-list-txt {
    font-size: 2.4rem;
  }
  .about__care-list .care-img {
    width: 70px;
  }
}
@media (max-width: 640px) {
  .about__care-list {
    gap: 20px;
    width: 300px;
  }
  .about__care-list > li .cont {
    padding-top: 54px;
  }
  .about__care-list .about__care-list-ttl {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
  .about__care-list .care-img {
    width: 40px;
  }
  .float-img {
    width: 41px;
    top: 84px;
    left: 8%;
  }
  .about__care-list-txt {
    font-size: 2rem;
  }
  .about__care-list-small li {
    font-size: 1.2rem;
  }
  #about .scroll-move {
    padding-bottom: 80px;
  }
}
@media (max-width: 400px) {
  .about__ttl-middle .small {
    font-size: 1.6rem;
  }
}
#faq {
  background-color: #c6dcf9;
  padding: 200px 0 56vw;
}

.faq__ttl-bl {
  margin-bottom: 50px;
}
.faq__ttl-bl .txt {
  text-align: center;
}

.faq__ttl-en {
  color: #fff;
  width: 100%;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}

.faq__fukidashi-ttl {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.7rem;
  font-weight: bold;
  margin: 0 auto 30px;
  position: relative;
}
.faq__fukidashi-ttl::before {
  position: absolute;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/faq-ttl-under-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  content: "";
  left: 0;
  bottom: -70px;
}

.faq__ttl {
  color: var(--pink);
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}
.faq__ttl .en {
  font-family: var(--mu);
  font-size: 6rem;
  display: inline-block;
  margin-right: 5px;
}

.faq__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-template-rows: repeat(6, 1fr);
}
.faq__list > li {
  border-radius: 30px;
  padding: 30px 22px;
}
.faq__list > li .txt {
  font-size: 1.6rem;
}

.faq__q {
  font-size: 1.7rem;
  font-weight: bold;
  position: relative;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.faq__q::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/q.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 34px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateY(5px);
}

.faq__a {
  font-size: 2.1rem;
  color: #78a0d5;
  font-weight: bold;
  display: flex;
  gap: 10px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.faq__a::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/a.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 36px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateY(9px);
}
.faq__a::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/marker.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(100% - 46px);
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 43px;
  bottom: 0;
  line-height: 1.2;
}

#faq01 {
  grid-row: 1/3;
  grid-column: 1/3;
  background-color: #f7f1ff;
  position: relative;
}
#faq01 .txt {
  width: 47%;
  margin-top: 20px;
  margin-bottom: 20px;
}
#faq01 .img {
  width: 37%;
  position: absolute;
  right: 38px;
  bottom: 30px;
}
#faq01 .img img {
  width: 100%;
}

#faq02 {
  grid-row: 3/7;
  grid-column: 1/2;
  background-color: #fffbef;
  position: relative;
}
#faq02 .txt {
  margin-top: 20px;
}
#faq02 .faq__a {
  font-size: 3.6rem;
  line-height: 1;
  z-index: 1;
  position: relative;
  font-family: var(--mu);
}
#faq02 .faq__a::after {
  bottom: -8px;
}
#faq02 .faq__a .small {
  font-size: 2.1rem;
  line-height: 1;
  transform: translate(-6px, 13px);
}
#faq02 .hitori-img {
  width: 80%;
  margin: 20px auto 0;
}
#faq02 .faq__salon-open {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  position: relative;
}
#faq02 .faq__salon-open::before {
  content: "";
  display: block;
  width: 100%;
  background-image: url(../img/faq02-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
#faq02 .faq__salon-open .img {
  width: calc(50% - 10px);
}
#faq02 .faq__salon-open .img img {
  width: 100%;
}
#faq02 .faq__salon-open .open-txt {
  width: calc(50% - 10px);
  color: var(--pink);
  font-weight: bold;
  font-family: var(--mu);
  font-size: 2.1rem;
  text-align: center;
  position: relative;
}
#faq02 .faq__salon-open .open-txt .small {
  font-size: 1.8rem;
}

#faq03 {
  grid-row: 3/5;
  grid-column: 2/3;
  background-color: #fff3fd;
  position: relative;
}
#faq03 .no-a img {
  margin-left: 20px;
  width: 100px;
}
#faq03 .no-a::after {
  display: none;
}
#faq03 .txt {
  font-size: 1.6rem;
  margin-top: 20px;
}
#faq03 .img {
  width: 114px;
}
#faq03 .img img {
  width: 100%;
}

#faq04 {
  grid-row: 5/7;
  grid-column: 2/3;
  background-color: #f7f1ff;
  position: relative;
}
#faq04 .txt {
  font-size: 1.6rem;
  margin-top: 20px;
}
#faq04 .img {
  width: 30%;
  margin: 20px auto 0;
}
#faq04 .img img {
  width: 100%;
}

#faq05 {
  grid-row: 1/4;
  grid-column: 3/4;
  background-color: #fffbef;
  position: relative;
}
#faq05 .txt {
  margin-top: 20px;
}
#faq05 .img {
  width: 70%;
  margin: 40px auto 0;
}
#faq05 .img img {
  width: 100%;
}

#faq06 {
  grid-row: 4/7;
  grid-column: 3/4;
  background-color: #fff1f2;
  position: relative;
}
#faq06 .txt {
  margin-top: 20px;
}
#faq06 .img {
  width: 70%;
  margin: 20px auto 0;
}
#faq06 .img img {
  width: 100%;
}

#faq07 {
  grid-row: 1/3;
  grid-column: 4/5;
  background-color: #fff1f2;
  position: relative;
}
#faq07 .wear-flex {
  display: flex;
  gap: 5%;
  margin-top: 20px;
}
#faq07 .wear-flex .txt {
  width: 60%;
}
#faq07 .wear-flex .img {
  width: 35%;
  transform: translateY(53px);
}

#faq08 {
  grid-row: 3/7;
  grid-column: 4/5;
  background-color: #fff1f2;
  position: relative;
}
#faq08 .txt {
  margin-top: 20px;
}
#faq08 .img {
  width: 70%;
  margin: 35px auto 0;
}
#faq08 .img img {
  width: 100%;
}

#faq09 {
  grid-row: 7/9;
  grid-column: 1/3;
  background-color: #fff1f2;
  position: relative;
}

.faq09__flex {
  display: flex;
}
.faq09__flex .faq__a {
  width: 40%;
}
.faq09__flex .faq__a::after {
  display: none;
}
.faq09__flex .faq__a img {
  width: 134px;
  padding-left: 20px;
}

.faq09__cont {
  width: 60%;
}
.faq09__cont .txt {
  font-size: 1.6rem;
}

.faq09__cont-ttl {
  color: #78a0d5;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.faq09__cont-ttl::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/marker.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 102%;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.2;
}

#faq10 {
  grid-row: 7/9;
  grid-column: 3/4;
  background-color: #f7f1ff;
  position: relative;
}

.faq10__flex {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.faq10__flex .txt {
  width: calc(100% - 15px - 32%);
}
.faq10__flex img {
  width: 32%;
}

#faq11 {
  grid-row: 7/9;
  grid-column: 4/5;
  background-color: #fffbef;
  position: relative;
}
#faq11 .faq__a {
  width: 166px;
}
#faq11 .faq__a::after {
  display: none;
}
#faq11 .faq__a img {
  width: 123px;
}
#faq11 .txt {
  font-size: 1.6rem;
  margin-top: 20px;
}

.faq__list-small {
  margin-top: 20px;
}
.faq__list-small > li > p {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--pink);
  font-family: var(--mu);
}

.faq__list-small-ttl {
  font-size: 1.6rem;
}
.faq__list-small-ttl .big {
  font-size: 3rem;
  font-weight: bold;
  font-family: var(--mu);
  line-height: 1;
  display: inline-block;
  margin-left: 10px;
}

.faq10-under {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  top: -1em;
  left: 43px;
  margin-bottom: -1em;
}
.faq10-under:first-of-type {
  margin-bottom: 0;
}
.faq10-under::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/marker.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 110%;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: -7px;
  bottom: 0;
  line-height: 1.2;
  z-index: -1;
}
.faq10-under:last-of-type::after {
  background-image: url(../img/faq10-under2.webp);
}

.faq__a.faq10-under-none {
  position: relative;
  z-index: 1;
  display: block;
}
.faq__a.faq10-under-none::after {
  display: none;
}

@media (max-width: 1500px) {
  .faq__list > li {
    padding: 30px 22px;
  }
  .faq__q {
    font-size: 1.5rem;
    gap: 4px;
    margin-bottom: 8px;
  }
  .faq__q::before {
    width: 24px;
    height: 18px;
  }
  .faq__a {
    font-size: 1.8rem;
    gap: 5px;
    position: relative;
    z-index: 1;
  }
  .faq__a::after {
    width: calc(100% - 24px);
    left: 24px;
    line-height: 1.2;
    z-index: -1;
  }
  .faq__list > li .txt {
    font-size: 1.4rem;
  }
  #faq01 .txt {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .faq__a.no-a img {
    width: 100px;
  }
  #faq03 .txt {
    font-size: 1.4rem;
    margin-top: 15px;
  }
  #faq04 .txt {
    font-size: 1.4rem;
    margin-top: 15px;
  }
  #faq05 .txt {
    margin-top: 15px;
  }
  #faq06 .txt {
    margin-top: 15px;
  }
  #faq06 .img {
    width: 55%;
    margin: 7px auto 0;
  }
  #faq08 .img {
    width: 80%;
  }
  .faq__list {
    gap: 10px;
  }
  .faq__a::before {
    width: 24px;
    height: 18px;
  }
}
@media (max-width: 1200px) {
  #faq {
    padding: 120px 0 56vw;
  }
  .faq__fukidashi-ttl::before {
    bottom: -60px;
  }
  .faq__fukidashi-ttl {
    font-size: 2.2rem;
  }
  .faq__ttl {
    font-size: 3.6rem;
  }
  .faq__ttl .en {
    font-size: 4.5rem;
  }
  .faq__list {
    width: 1200px;
  }
  .faq-slide {
    overflow-x: scroll;
    padding-bottom: 20px;
  }
  .slide-txt.faq-slide-txt {
    display: block;
    text-align: right;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
  .slide-txt.faq-slide-txt .scroll-icon {
    width: 30px;
    display: inline-block;
    margin-right: 10px;
  }
}
@media (max-width: 834px) {
  #faq {
    padding: 60px 0 56vw;
  }
  .faq__ttl {
    font-size: 3rem;
    line-height: 1.3;
  }
  .faq__ttl .en {
    font-size: 4rem;
  }
}
@media (max-width: 640px) {
  .faq__ttl-en {
    margin: 0 auto 20px;
    max-width: 400px;
  }
  .faq__list {
    width: 100%;
    max-width: 400px;
  }
  .faq__list {
    display: block;
    margin: 0 auto;
  }
  .faq__list li {
    margin-bottom: 20px;
  }
  .faq-slide {
    overflow-x: auto;
    padding-bottom: 0;
  }
  .slide-txt.faq-slide-txt {
    display: none;
  }
  #faq01 .img {
    right: 33px;
    bottom: 51px;
  }
  #faq04 .img {
    width: 30%;
    position: absolute;
    margin: 20px auto 0;
    right: 8vw;
    top: 93px;
  }
  #faq04 .txt {
    width: 55%;
  }
  #faq07 .wear-flex .img {
    transform: translate(15px, -1px);
  }
  #faq02 .faq__a {
    font-size: 2.6rem;
  }
  #faq02 .faq__a .small {
    font-size: 1.6rem;
    transform: translate(-2px, 8px);
  }
  #faq02 .hitori-img {
    width: 200px;
    max-width: 80%;
  }
  .faq09__flex {
    flex-direction: column;
  }
  .faq09__flex .faq__a img {
    width: 100px;
    padding-left: 0;
    margin: 10px auto 10px 10px;
  }
  .faq09__flex .faq__a {
    width: 100%;
  }
  .faq09__cont {
    width: 100%;
  }
  .faq09__cont-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .faq10__flex {
    margin-top: 15px;
  }
  #faq11 .txt {
    font-size: 1.4rem;
    margin-top: 12px;
  }
}
@media (max-width: 400px) {
  .env04__ttl-bl .env04__ttl .ttl {
    font-size: 2rem;
  }
}
#env {
  margin-top: -50vw;
}
#env .scroll-move {
  background-color: #92b3df;
  padding: 15vw 0 30px;
}

.env__intr {
  margin-bottom: 80px;
  position: relative;
}
.env__intr .txt {
  color: #fff;
  text-align: center;
}
.env__intr .img {
  width: 460px;
  margin: 0 auto;
}
.env__intr .img img {
  width: 100%;
}
.env__intr .deco01 {
  width: 120px;
  position: absolute;
  left: 180px;
  top: -30px;
  animation: kurukuru 9s linear infinite;
}
.env__intr .deco02 {
  width: 91px;
  position: absolute;
  top: -30px;
  right: 280px;
  animation: kurukuru 8s linear infinite;
}
.env__intr .deco03 {
  width: 47px;
  position: absolute;
  top: 20px;
  right: 200px;
  animation: kurukuru 5s linear infinite;
}
.env__intr .deco04 {
  width: 40px;
  position: absolute;
  left: 340px;
  top: -10px;
  animation: kurukuru 5s linear infinite;
}

.env__intr-ttl-small {
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  border-bottom: 1px solid #fff;
  margin: 0 auto 30px;
  width: -moz-fit-content;
  width: fit-content;
}

.env__intr-ttl {
  width: 640px;
  margin: 0 auto 40px;
  max-width: 100%;
}

.env__list > li {
  background-color: #fff;
  border-radius: 120px;
  padding: 0 100px 100px;
  position: relative;
  margin-bottom: 100px;
}
.env__list > li#env02 {
  padding: 0 0 100px;
}
.env__list > li#env02 .env__list-ttl-bl {
  padding: 100px 100px 0;
}

.env__list-ttl-bl {
  position: relative;
  padding: 100px 0 0;
  margin-bottom: 140px;
}
.env__list-ttl-bl::before {
  width: 193px;
  height: 36px;
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  background-image: url(../img/under-gizagiza.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  content: "";
}

.env__list-float-num {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 144px;
  top: 0;
}

.env__list-ttl {
  width: 169px;
  margin: 0 auto 5px;
}

.env__list-ttl-en {
  width: 500px;
  margin: 0 auto 20px;
}

.env__list-txt-big {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}
.env__list-txt-big .marker {
  font-size: 3rem;
  position: relative;
}
.env__list-txt-big .marker::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/marker.svg);
  background-size: contain;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.2;
  z-index: -1;
}

.env__list-cal {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  position: relative;
  margin: 0 auto 15px;
  font-size: 2.4rem;
}
.env__list-cal .float-tag {
  position: absolute;
  width: 118px;
  left: -130px;
  bottom: 0;
}

.env__main-txt {
  margin-bottom: 30px;
}

.slide-bl {
  margin-bottom: 50px;
}
.slide-bl img {
  width: 100%;
}

.slide-txt {
  display: none;
}

.env__list-point-bl {
  border-radius: 45px;
  background-color: #fff9e6;
  padding: 50px 40px;
}
.env__list-point-bl .ttl-bl {
  display: flex;
  margin-bottom: 60px;
}
.env__list-point-bl .cont-bl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.env__list-point-bl .cont-bl .item {
  border-radius: 30px;
  background-color: #fff;
  position: relative;
}
.env__list-point-bl .cont-bl .item .bold-txt {
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  margin-bottom: 10px;
  padding: 0 30px;
}
.env__list-point-bl .cont-bl .item .txt {
  font-size: 1.6rem;
  margin-bottom: 25px;
  padding: 0 30px;
}
.env__list-point-bl .cont-bl .item.item01::after {
  width: 72px;
  height: 59px;
  background-image: url(../img/point-heart.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  top: 0;
}
.env__list-point-bl .cont-bl .item.item02::after {
  width: 66px;
  height: 184px;
  background-image: url(../img/point-girl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -50px;
  right: -20px;
  content: "";
  display: block;
}
.env__list-point-bl .cont-bl .item.item02 .img {
  width: 100%;
  padding: 0 30px;
}
.env__list-point-bl .cont-bl .item.item02 .img img {
  width: 100%;
}

.pink-bg-txt {
  padding: 20px 30px 30px;
  background-color: #e0ebf7;
  color: var(--pink);
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  border-radius: 0 0 30px 30px;
}
.pink-bg-txt .small {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
}

.env__list-point-ttl {
  width: 50%;
  padding-right: 20px;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
}
.env__list-point-ttl .float {
  width: 113px;
  position: absolute;
  left: -137px;
  top: 10px;
}
.env__list-point-ttl .float img {
  width: 100%;
}
.env__list-point-ttl .small {
  font-size: 2.1rem;
  display: block;
}

.env__list-point-txt {
  width: 50%;
}

.env__list-item-ttl-en {
  font-family: var(--mu);
  color: var(--pink);
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  padding: 30px 30px 0;
}

.env__list-item-tag {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--pink);
  color: #fff;
  border-radius: 50px;
  line-height: 1;
  padding: 5px 10px;
  margin: 0 auto 5px;
}

.env__list-item-ttl-ja {
  font-weight: bold;
  color: var(--pink);
  font-size: 3rem;
  text-align: center;
  padding: 30px 30px 0;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.map-bl {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.map-bl__wrapper {
  position: relative;
  padding-bottom: 180px;
}

.map-swiper01 {
  margin-bottom: 920px;
}

.map-flex {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 5%;
  width: 90%;
}
.map-flex .img {
  width: 50%;
}
.map-flex .img img {
  width: 100%;
}
.map-flex .cont {
  width: 50%;
  padding-left: 50px;
}
.map-flex .cont .map-ttl {
  color: 78a0d5;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 25px;
}
.map-flex .cont .map-ttl .small {
  font-size: 2.4rem;
  color: var(--black);
  display: block;
}

.kansai-img {
  width: 480px;
  position: absolute;
  right: 11%;
  bottom: 335px;
  z-index: 1;
}
.kansai-img img {
  width: 100%;
}

.kyushu-img {
  width: 480px;
  position: absolute;
  left: 11%;
  bottom: 72px;
  z-index: 1;
}
.kyushu-img img {
  width: 100%;
}

.shop-list {
  display: grid;
  gap: 30px;
  padding: 0 100px;
  margin: 120px 0 60px;
  grid-template-columns: repeat(3, 1fr);
}
.shop-list li {
  position: relative;
}
.shop-list li .shop-ttl {
  width: 83px;
  position: absolute;
  z-index: 1;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
.shop-list li .shop-ttl.p2 {
  width: 169px;
  top: 15px;
}
.shop-list li .shop-ttl.p3 {
  width: 98px;
  top: -18px;
}
.shop-list li .shop-ttl.p4 {
  width: 92px;
}
.shop-list li .shop-ttl.p5 {
  width: 88px;
}
.shop-list li .shop-ttl.p6 {
  width: 113px;
  top: 15px;
}
.shop-list li .shop-ttl.p7 {
  width: 95px;
  top: 5px;
}
.shop-list li .img {
  margin-bottom: 15px;
}
.shop-list li .img img {
  width: 100%;
}
.shop-list li .txt {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.shop-insta-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.4rem;
  color: var(--black);
}
.shop-insta-link .insta-icon {
  display: block;
  width: 27px;
}

.workspace-open-bl {
  border-radius: 45px;
  background-image: url(../img/pink-bg.webp);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px 50px;
  width: calc(100% - 200px);
  margin-left: 100px;
}
.workspace-open-bl .txt {
  font-weight: bold;
  text-align: center;
}

.workspace-open-ttl {
  font-family: var(--mu);
  font-weight: bold;
  color: var(--pink);
  font-size: 4.8rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}

.benefit-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.benefit-flex > .img {
  position: sticky;
  top: 50px;
  padding-right: 70px;
  height: -moz-fit-content;
  height: fit-content;
}
.benefit-flex > .img img {
  width: 100%;
}
.benefit-flex .cont > .item {
  border-radius: 30px;
  background-color: #fff9e6;
  padding: 30px;
}
.benefit-flex .cont > .item.item02 {
  background-color: #ede9fa;
  margin-top: 30px;
  padding: 30px 0 50px;
}
.benefit-flex .cont > .item.item02 .bene-txt {
  padding: 0 30px;
}
.benefit-flex .cont > .item.item03 {
  margin-top: 30px;
  background-color: #fce9e7;
}

.moti-bl {
  background-color: #faf8ff;
  padding: 25px 50px 30px 160px;
  border-radius: 0 100px 100px 0;
  position: relative;
  width: 95%;
  margin: 30px 5% 0 0;
}
.moti-bl .txt {
  font-size: 1.4rem;
}
.moti-bl .img02 {
  position: absolute;
  width: 84px;
  top: 0;
  right: 20px;
}
.moti-bl .img02 img {
  width: 100%;
}
.moti-bl .img01 {
  width: 115px;
  position: absolute;
  top: -25px;
  left: 30px;
}
.moti-bl .img01 img {
  width: 100%;
}

.moti-ttl {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 400;
}
.moti-ttl .marker {
  font-weight: bold;
  display: block;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.moti-ttl .marker::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/perple-marker.svg);
  background-size: contain;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.2;
  z-index: -1;
}

.bene-tag {
  background-color: var(--pink);
  line-height: 1;
  padding: 5px 15px 8px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}

.bene-ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 18px;
}
.bene-ttl::after {
  width: 100%;
  aspect-ratio: 10/1;
  background-image: url(../img/dot-under.webp);
  background-size: contain;
  background-repeat: repeat-x;
  display: block;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
}

.bene-txt {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.shift {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 75px;
  border-radius: 50px;
  border: 1px solid var(--black);
  align-items: center;
  margin-bottom: 40px;
  background-color: #fff;
}
.shift .circle {
  background-color: var(--black);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shift .shift-pink {
  color: var(--pink);
  font-weight: bold;
  font-size: 2.4rem;
}
.shift .shift-pink .big {
  font-size: 3rem;
}
.shift .shift-black {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 3px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
}
.check-list li .check-ttl {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 12px;
  gap: 7px;
}
.check-list li .check-ttl::before {
  width: 25px;
  height: 22px;
  display: block;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
}
.check-list li .txt {
  font-size: 1.4rem;
}

.stage-tag-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid var(--black);
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
  border-radius: 50px;
  margin: 0 auto 20px;
}
.stage-tag-ttl .txt {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 20px 8px;
  background-color: #fff;
  border: 1px solid var(--black);
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
  border-radius: 50px;
  margin: 0 auto 20px;
}
.stage-tag-ttl::before {
  content: "";
  display: block;
  width: 490px;
  height: 1px;
  background-color: var(--black);
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.stage-tag-ttl::after {
  background-color: #fce9e7;
  height: 50px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: calc(100% + 20px);
  content: "";
}

.stage-flex01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.stage-flex01 > .item .txt {
  font-size: 1.4rem;
}
.stage-flex01 > .item .txt .small {
  display: block;
  font-size: 1.2rem;
}

.stage-icont-ttl-bl {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.stage-icont-ttl-bl .img {
  width: 40%;
}
.stage-icont-ttl-bl .img img {
  width: 100%;
}
.stage-icont-ttl-bl .stage-icont-ttl {
  width: 50%;
  font-size: 1.6rem;
  font-weight: bold;
}

.stage-flex02 {
  display: flex;
}
.stage-flex02 .cont {
  width: 50%;
}
.stage-flex02 .cont .txt {
  font-size: 1.4rem;
}
.stage-flex02 .img {
  width: 50%;
  padding-left: 30px;
}

.stage-flex03 {
  display: flex;
}
.stage-flex03 .img {
  width: 40%;
  padding-right: 20px;
}
.stage-flex03 .img img {
  width: 100%;
}
.stage-flex03 .cont {
  width: 60%;
}
.stage-flex03 .cont .txt {
  font-size: 1.4rem;
}

.stage-bl {
  padding-bottom: 30px;
}

.fukuri {
  position: relative;
  width: 100%;
  padding: 40px 0 0;
  margin-top: 100px;
}
.fukuri::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-image: url(../img/fukuri-line.webp);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.fukuri-ttl {
  width: 152px;
  position: absolute;
  left: 30px;
  top: -40px;
}

.fukuri-list {
  width: calc(100% - 200px);
  display: flex;
  justify-content: space-around;
  padding-right: 70px;
  margin-left: auto;
}
.fukuri-list li {
  align-items: center;
  display: flex;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: bold;
}

.fukuri-icon {
  width: 75px;
  display: block;
}

.under450-only {
  display: none;
}

#env04 {
  background-color: #fdf7f9;
}

.env04__ttl-bl {
  padding-top: 100px;
  position: relative;
}
.env04__ttl-bl .img {
  width: 270px;
  position: absolute;
  left: 50%;
  transform: translateX(-445px);
  top: 65px;
}
.env04__ttl-bl .img img {
  width: 100%;
}
.env04__ttl-bl .env04__ttl .obi {
  width: 221px;
  margin: 0 auto 25px;
  max-width: 100%;
  display: block;
}
.env04__ttl-bl .env04__ttl .ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 40px;
}
.env04__ttl-bl .env04__ttl .ttl .pink-txt {
  color: #78a0d5;
}
.env04__ttl-bl .env04__ttl .ttl .marker {
  position: relative;
}
.env04__ttl-bl .env04__ttl .ttl .marker::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 5/1;
  background-image: url(../img/marker.svg);
  background-size: contain;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1.2;
  z-index: -1;
}

.env04__txt {
  width: 750px;
  max-width: 100%;
  font-size: 1.6rem;
  margin: 0 auto 30px;
}

.env04__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.env04__list > li {
  border-radius: 15px;
  padding: 30px;
}
.env04__list > li .env04__list-ttl {
  color: #78a0d5;
  font-weight: bold;
  font-size: 2.4rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.env04__list > li .env04__list-ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background-image: url(../img/env04_ttl_dot01.webp);
  background-size: contain;
  background-position: center center;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.env04__list > li.p1 {
  background-color: #ede9fa;
}
.env04__list > li.p2 {
  background-color: #fff6d9;
}
.env04__list > li.p2 .env04__list-ttl::before {
  background-image: url(../img/env04_ttl_dot02.webp);
}
.env04__list > li.p3 {
  background-color: #fce9e7;
}
.env04__list > li.p3 .env04__list-ttl::before {
  background-image: url(../img/env04_ttl_dot03.webp);
}
.env04__list > li.p4 {
  background-color: #ffe9fb;
}
.env04__list > li.p4 .env04__list-ttl::before {
  background-image: url(../img/env04_ttl_dot04.webp);
  width: 86%;
}
.env04__list > li .txt {
  font-size: 1.6rem;
}

.env04__star01 {
  position: absolute;
  width: 83px;
  left: 88px;
  top: 210px;
  animation: kurukuru 9s linear infinite;
}

.env04__star02 {
  position: absolute;
  width: 56px;
  top: 112px;
  right: 137px;
  animation: kurukuru 8s linear infinite;
}

.env04__star03 {
  position: absolute;
  width: 86px;
  top: 200px;
  right: 83px;
  animation: kurukuru 5s linear infinite;
}

@media (max-width: 1500px) {
  .env__intr .deco02 {
    width: 73px;
  }
  .env__intr .deco03 {
    right: 225px;
  }
  .env__intr .deco01 {
    width: 93px;
    left: 241px;
  }
  .env__intr .deco04 {
    left: 355px;
  }
  .env__intr-ttl {
    width: 590px;
    margin: 0 auto 30px;
  }
  .env__intr .img {
    width: 400px;
  }
  .env__list-item-ttl-ja {
    font-size: 2.3rem;
  }
  .env__list-point-bl .cont-bl .item .bold-txt {
    font-size: 1.8rem;
  }
  .moti-bl .img02 {
    width: 68px;
  }
  .stage-tag-ttl::before {
    width: 31vw;
  }
  .stage-flex01 {
    gap: 10px;
  }
  .stage-icont-ttl-bl .stage-icont-ttl {
    font-size: 1.5rem;
  }
  .stage-flex02 .img {
    padding-left: 15px;
  }
  .stage-flex03 .img {
    width: 50%;
    padding-right: 15px;
  }
  .stage-flex03 .cont {
    width: 50%;
  }
  .stage-tag-ttl .txt {
    font-size: 1.7rem;
  }
  .shop-list {
    margin: 40px 0 60px;
  }
}
@media (max-width: 1350px) {
  .map-swiper01 {
    margin-bottom: 57vw;
  }
  .env04__star01 {
    left: 51px;
    top: 235px;
  }
  .kansai-img {
    width: 350px;
    bottom: 24vw;
  }
  .kyushu-img {
    width: 350px;
    bottom: 115px;
  }
}
@media (max-width: 1200px) {
  .env__intr .deco01 {
    width: 8vw;
    left: 17vw;
  }
  .env__intr .deco02 {
    width: 7vw;
    top: -46px;
    right: 24vw;
  }
  .env__intr .deco03 {
    right: 20vw;
    width: 4vw;
    top: 2.5vw;
  }
  .env__intr .deco04 {
    left: 27vw;
    width: 3vw;
    top: -32px;
  }
  .env__intr-ttl {
    max-width: 70vw;
  }
  .env__list > li#env02 .env__list-ttl-bl {
    padding: 100px 50px 0;
  }
  .env__list > li {
    padding: 0 50px 100px;
  }
  .env__list-txt-big {
    font-size: 2.2rem;
  }
  .shop-list {
    padding: 0 50px;
  }
  .workspace-open-bl {
    width: calc(100% - 100px);
    margin-left: 50px;
    padding: 70px 25px;
  }
  .env__list-point-bl .cont-bl {
    grid-template-columns: 1fr;
  }
  .env__list-point-bl .cont-bl .item.item02::after {
    top: -21px;
  }
  .env__list-txt-big .marker {
    display: block;
  }
  .workspace-open-ttl {
    font-size: 4.2rem;
  }
  .workspace-open-bl .txt {
    font-size: 1.6rem;
  }
  .env__list > li {
    border-radius: 50px;
  }
  .benefit-flex {
    display: flex;
  }
  .benefit-flex > .img {
    width: 200px;
    padding-right: 40px;
  }
  .benefit-flex > .cont {
    width: calc(100% - 200px);
  }
  .fukuri-ttl {
    width: 123px;
    left: 1px;
    top: -17px;
  }
  .fukuri-list {
    width: calc(100% - 134px);
    padding-right: 10px;
  }
  .fukuri-list li {
    gap: 6px;
    font-size: 1.6rem;
  }
  .fukuri-icon {
    width: 48px;
  }
  .env__list-ttl-en {
    width: 420px;
  }
  .env__list-float-num {
    width: 110px;
  }
  .env__list-point-ttl .float {
    width: 92px;
    left: -107px;
  }
  .env__list-point-bl .ttl-bl {
    flex-direction: column;
  }
  .env__list-point-ttl {
    width: 100%;
    padding-right: 0;
  }
  .env__list-point-txt {
    width: 100%;
  }
  .slide-bl {
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .slide-bl img {
    width: 1200px;
    max-width: 1200px;
  }
  .slide-txt {
    display: block;
    text-align: right;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .scroll-icon {
    width: 30px;
    display: inline-block;
    margin-right: 10px;
  }
  .env04__star01 {
    position: absolute;
    width: 55px;
    left: 34px;
    top: 183px;
  }
  .env04__star02 {
    position: absolute;
    width: 37px;
    top: 92px;
    right: 94px;
  }
  .env04__star03 {
    position: absolute;
    width: 56px;
    top: 140px;
    right: 45px;
  }
  .env04__ttl-bl .img {
    width: 175px;
    transform: translateX(-247px);
    top: 34px;
  }
  .kansai-img {
    width: 300px;
    right: 9%;
    bottom: 24vw;
  }
  .kyushu-img {
    width: 300px;
    bottom: 115px;
  }
}
@media (max-width: 1000px) {
  .kansai-img {
    bottom: 19vw;
    right: 7%;
  }
  .kyushu-img {
    left: 8%;
  }
}
@media (max-width: 834px) {
  .env__intr .deco01 {
    width: 8vw;
    left: 15vw;
    top: -4vw;
  }
  .env__intr .deco04 {
    left: 26vw;
    width: 3vw;
    top: -5vw;
  }
  .env__intr .deco02 {
    width: 7vw;
    top: -8vw;
    right: 24vw;
  }
  .env__intr .deco03 {
    right: 19vw;
    width: 4vw;
    top: -2.5vw;
  }
  .env__intr .img {
    max-width: 80%;
  }
  .env__list > li {
    border-radius: 30px;
    padding: 0 25px 40px;
  }
  .env__list-ttl-bl {
    padding: 50px 0 0;
    margin-bottom: 140px;
  }
  .env__list-float-num {
    width: 80px;
  }
  .env__list-ttl-en {
    max-width: 100%;
  }
  .env__list-txt-big {
    font-size: 1.9rem;
  }
  .env__list-txt-big .marker {
    font-size: 2.4rem;
  }
  .env__list-txt-big .marker::after {
    width: 335px;
    left: 50%;
    transform: translateX(-50%);
  }
  .env__list-ttl-bl::before {
    width: 128px;
    height: 25px;
    bottom: -50px;
  }
  .env__list-ttl-bl {
    margin-bottom: 80px;
  }
  .env__list-cal .float-tag {
    position: absolute;
    width: 93px;
    left: -8vw;
    bottom: 39px;
  }
  .env__list-cal {
    font-size: 2rem;
  }
  .env__list-point-bl {
    border-radius: 30px;
    padding: 40px 20px;
  }
  .env__list-point-bl .cont-bl .item.item02::after {
    top: -44px;
    width: 44px;
  }
  .env__list-point-ttl {
    padding-right: 0;
    font-size: 2rem;
    text-align: center;
  }
  .env__list-item-ttl-en {
    font-size: 2rem;
    line-height: 1.4;
  }
  .env__list-point-ttl .small {
    font-size: 1.6rem;
  }
  .env__list-point-bl .cont-bl .item.item01::after {
    width: 40px;
  }
  .env__list-point-bl .cont-bl .item .bold-txt {
    font-size: 1.6rem;
    padding: 0 15px;
  }
  .pink-bg-txt {
    padding: 20px 15px 30px;
    font-size: 1.4rem;
    border-radius: 0 0 30px 30px;
  }
  .pink-bg-txt .small {
    font-size: 1.4rem;
  }
  .env__list-point-ttl .float {
    width: 61px;
    left: calc(50% - 168px);
    top: 10px;
  }
  .env__list-point-bl .cont-bl {
    gap: 20px;
  }
  .env__list-item-ttl-ja {
    font-size: 1.9rem;
    padding: 30px 15px 0;
  }
  .env__list-point-bl .cont-bl .item.item02 .img {
    padding: 0 15px 30px;
  }
  .env__list > li#env02 .env__list-ttl-bl {
    padding: 50px 25px 0;
  }
  .map-flex .cont .map-ttl {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .map-flex .cont .map-ttl .small {
    font-size: 1.8rem;
  }
  .shop-list {
    display: grid;
    gap: 100px;
    padding: 0;
    grid-template-columns: 1fr;
    width: 400px;
    max-width: 90%;
    margin: 90px auto 40px;
  }
  .workspace-open-ttl {
    font-size: 5.2vw;
    margin-bottom: 20px;
  }
  .workspace-open-bl {
    width: calc(100% - 50px);
    margin-left: 25px;
    padding: 40px 25px;
    border-radius: 30px;
  }
  .benefit-flex {
    flex-direction: column;
  }
  .benefit-flex > .img {
    width: 300px;
    max-width: 100%;
    margin: 0 auto 30px;
    padding-right: 0;
    position: relative;
    top: 0;
  }
  .benefit-flex > .cont {
    width: 100%;
  }
  .bene-ttl {
    font-size: 2.1rem;
  }
  .env04__ttl-bl .env04__ttl .obi {
    width: 170px;
    margin: 0 auto 15px;
  }
  .env04__ttl-bl .img {
    width: 130px;
    transform: translateX(-147px);
    top: 15px;
  }
  .env04__star01 {
    width: 34px;
    left: 15px;
    top: 110px;
  }
  .env04__star02 {
    width: 27px;
    top: 28px;
    right: 49px;
  }
  .env04__star03 {
    position: absolute;
    width: 40px;
    top: 62px;
    right: 21px;
  }
  .env04__ttl-bl .env04__ttl .ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .env04__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .env04__list > li {
    border-radius: 10px;
    padding: 20px;
  }
  .env04__list > li .env04__list-ttl {
    font-size: 1.8rem;
    margin: 0px auto 23px;
  }
  .env04__list > li .txt {
    font-size: 1.5rem;
  }
  .env04__txt {
    font-size: 1.5rem;
  }
  .kansai-img {
    width: 42%;
    bottom: 1vw;
    right: 5%;
  }
  .kyushu-img {
    width: 42%;
    bottom: -6vw;
    left: 6%;
  }
  .map-swiper01 {
    margin-bottom: 64vw;
  }
  .map-bl__wrapper {
    padding-bottom: 0px;
  }
}
@media (max-width: 640px) {
  .env__list-txt-big {
    font-size: 1.7rem;
  }
  .env__list-txt-big .marker {
    font-size: 1.9rem;
  }
  .env__list-txt-big .marker::after {
    width: 279px;
    left: 50%;
    transform: translateX(-50%);
  }
  .slide-bl img {
    width: 700px;
    max-width: 700px;
  }
  .shop-list li .shop-ttl {
    width: 85px;
    top: -70px;
  }
  .shop-list li .shop-ttl.p2 {
    top: -42px;
  }
  .shop-list li .shop-ttl.p3 {
    width: 72px;
    top: -70px;
  }
  .shop-list li .shop-ttl.p4 {
    width: 75px;
    top: -54px;
  }
  .shop-list li .shop-ttl.p5 {
    width: 76px;
    top: -54px;
  }
  .shop-list li .shop-ttl.p6 {
    width: 102px;
    top: -44px;
  }
  .shop-list li .shop-ttl.p7 {
    width: 92px;
    top: -59px;
  }
  .shop-list {
    gap: 95px;
  }
  .shop-list li .txt {
    font-size: 1.4rem;
  }
  .map-swiper01 {
    margin-bottom: 1000px;
  }
  .map-bl__wrapper {
    padding-bottom: 0;
  }
  .map-flex .img {
    width: 260px;
    margin-bottom: 580px;
  }
  .kansai-img {
    width: 260px;
    right: auto;
    left: calc(50% - 130px);
    bottom: auto;
    top: 282px;
  }
  .kyushu-img {
    width: 260px;
    right: auto;
    left: calc(50% - 130px);
    bottom: auto;
    top: 562px;
  }
  .map-flex .cont {
    width: 100%;
    padding-left: 0;
  }
  .map-flex {
    flex-direction: column;
  }
  .env__list > li#env02 {
    padding: 0 0 40px;
  }
  .env__list > li {
    margin-bottom: 60px;
  }
  .benefit-flex .cont > .item {
    border-radius: 30px;
    padding: 30px 20px 10px;
  }
  .benefit-flex .cont > .item.item01 {
    padding: 30px 20px;
  }
  .bene-ttl {
    font-size: 1.7rem;
    padding-bottom: 18px;
    margin-bottom: 12px;
  }
  .bene-txt {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .shift {
    height: 60px;
    margin-bottom: 20px;
  }
  .shift .shift-pink {
    font-size: 1.4rem;
  }
  .shift .shift-pink .big {
    font-size: 2rem;
  }
  .shift .shift-black {
    font-size: 1.1rem;
  }
  .check-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .check-list li .check-ttl {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .check-list li .check-ttl::before {
    width: 20px;
    height: 18px;
  }
  .shift .circle {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .moti-bl {
    padding: 25px 20px;
    border-radius: 0 30px 30px 0;
  }
  .moti-bl .img01 {
    width: 59px;
    left: -34px;
  }
  .moti-ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .moti-bl .img02 {
    width: 53px;
  }
  .stage-flex01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stage-icont-ttl-bl .stage-icont-ttl br {
    display: none;
  }
  .stage-icont-ttl-bl .img {
    width: 30%;
  }
  .stage-tag-ttl .txt {
    font-size: min(3.6vw, 1.6rem);
  }
  .stage-flex02 .img {
    padding-left: 0;
    width: 200px;
    margin: 0 auto 15px;
  }
  .stage-flex02 {
    flex-direction: column-reverse;
  }
  .smaluna-ttl {
    width: 200px;
    margin: 0 auto 10px;
  }
  .stage-flex03 {
    flex-direction: column;
  }
  .stage-flex03 .img {
    width: 200px;
    padding-right: 0;
    margin: 0 auto 15px;
  }
  .stage-flex03 .cont {
    width: 100%;
  }
  .stage-bl {
    padding-bottom: 20px;
  }
  .stage-flex02 .cont {
    width: 100%;
  }
  .fukuri {
    position: relative;
    width: 100%;
    padding: 30px 0 0;
    margin-top: 30px;
  }
  .fukuri-ttl {
    width: 110px;
    left: -17px;
    top: -17px;
  }
  .fukuri-list {
    width: calc(100% - 100px);
    padding-right: 0;
    flex-direction: column;
    gap: 10px;
  }
  .fukuri-list li {
    font-size: 1.4rem;
  }
}
@media (max-width: 500px) {
  .map-swiper01 {
    margin-bottom: 1030px;
  }
}
@media (max-width: 450px) {
  .under450-only {
    display: inline-block;
  }
  .env__list-cal .float-tag {
    position: absolute;
    width: 93px;
    left: -17vw;
    bottom: 72px;
  }
  .env__list-cal .float-tag {
    position: absolute;
    width: 93px;
    left: -17vw;
    bottom: 72px;
  }
  .env__list-cal {
    text-align: center;
  }
}
@media (max-width: 385px) {
  .map-swiper01 {
    margin-bottom: 1050px;
  }
}
#team {
  position: relative;
}

#team__main-img {
  width: 100%;
  height: 100%;
}
#team__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

#team__deco01 {
  position: absolute;
  width: 5%;
  left: 15%;
  top: 5vw;
  animation: floating1 2.8s ease-in-out infinite alternate-reverse;
}

#team__deco02 {
  position: absolute;
  width: 4%;
  right: 20%;
  top: 10vw;
  animation: floating5 4.8s ease-in-out infinite alternate-reverse;
}

#team__deco03 {
  position: absolute;
  width: 11%;
  left: 12%;
  top: 53vw;
  animation: floating1 3.2s ease-in-out infinite alternate-reverse;
}

#team__deco05 {
  position: absolute;
  width: 5%;
  right: 6%;
  top: 29vw;
  animation: floating2 5s ease-in-out infinite alternate-reverse;
}

#team__deco06 {
  position: absolute;
  width: 4%;
  right: 20%;
  top: 30vw;
  animation: floating3 4s ease-in-out infinite alternate-reverse;
}

#team__deco04 {
  position: absolute;
  top: 27vw;
  width: 4%;
  right: 23%;
  animation: floating1 3.6s ease-in-out infinite alternate-reverse;
}

#team__txt {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 46%;
}

.team__top-bl {
  position: relative;
  aspect-ratio: 3/2;
  background-image: url(../img/team-bg.webp);
}

.team-wave-swiper-wrapper {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.team-wave-swiper {
  position: relative;
}

.team__content {
  padding: 120px 0 56vw;
  background-color: #f6faff;
}

.team__what-bl {
  display: flex;
  gap: 3%;
  align-items: center;
  padding-left: 10%;
}
.team__what-bl .cont {
  width: 30%;
}

.team__what-tag {
  width: 35%;
}

.team__what-ttl {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 20px;
}
.team__what-ttl .small {
  font-size: 2.4rem;
  display: block;
}

.team__what-girl {
  width: 19%;
}

.team__map {
  padding: 50px 5% 0;
  margin-bottom: 250px;
  position: relative;
}
.team__map img {
  width: 100%;
}

.team__map-shop-list > li {
  position: absolute;
  white-space: nowrap;
}
.team__map-shop-list > li.hokkaido {
  top: 230px;
  right: 200px;
}
.team__map-shop-list > li.yamagata {
  top: 50px;
  right: 400px;
}
.team__map-shop-list > li.niigata {
  top: 137px;
  right: 544px;
}
.team__map-shop-list > li.miyagi {
  top: 240px;
  right: 405px;
}
.team__map-shop-list > li.kanagawa {
  top: 300px;
  left: 50%;
}
.team__map-shop-list > li.ishikawa {
  top: 144px;
  left: 40%;
}
.team__map-shop-list > li.tokyo {
  top: 339px;
  left: 44%;
}
.team__map-shop-list > li.shizuoka {
  top: 327px;
  left: 34%;
}
.team__map-shop-list > li.fukuoka {
  top: 107px;
  left: 15%;
}
.team__map-shop-list > li.kagoshima {
  top: 185px;
  left: 3%;
}
.team__map-shop-list > li.oita {
  top: 263px;
  left: 18%;
}
.team__map-shop-list > li .pref {
  color: var(--pink);
  font-size: 1.8rem;
  font-weight: bold;
  font-family: var(--mu);
  cursor: pointer;
}
.team__map-shop-list > li .pref-list {
  display: none;
  position: absolute;
}
.team__map-shop-list > li .pref-list li {
  font-size: 1.2rem;
}

#pref-modal {
  position: absolute;
  top: -30px;
  left: -30px;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  display: none;
  z-index: 1;
}

.pref-modal-list {
  margin-top: 10px;
  display: flex;
  gap: 5px 20px;
  flex-wrap: wrap;
  width: 400px;
}
.pref-modal-list li {
  width: calc(50% - 10px);
}

.map__check {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  padding: 8px 15px 8px;
  font-size: 1.4rem;
  margin: 0 0 0 auto;
  color: #666666;
  background-color: #ece1f3;
  border-radius: 40px;
}

.team__staff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team__staff-list > li {
  border-radius: 30px;
  padding: 170px 30px 30px;
  position: relative;
  background-color: #ffedf1;
}
.team__staff-list > li .img {
  width: 250px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.team__staff-list > li .img img {
  width: 100%;
}
.team__staff-list > li:nth-of-type(2) {
  background-color: #faf3dc;
}
.team__staff-list > li:nth-of-type(3) {
  background-color: #ede9fa;
}

.team__staff {
  border-radius: 30px;
  padding: 170px 30px 30px;
  position: relative;
  background-color: #ffedf1;
}
.team__staff .img {
  width: 250px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.team__staff .img img {
  width: 100%;
}
.team__staff.p2 {
  background-color: #faf3dc;
}
.team__staff.p3 {
  background-color: #ede9fa;
}

.team__staff-list-name-bl {
  margin-bottom: 20px;
}

.team__staff-list-name {
  position: relative;
  z-index: 1;
}
.team__staff-list-name .obi {
  background-color: var(--pink);
  padding: 8px 15px;
  color: #fff;
  font-size: 1.8rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1px;
  font-family: var(--mu);
  font-weight: bold;
}
.team__staff-list-name .obi .small {
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 7px;
}

.team__staff-list-from {
  color: var(--pink);
  font-size: 1.6rem;
  margin-top: 10px;
}

.staff-faq-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.staff-q {
  font-weight: bold;
  color: var(--pink);
  font-family: var(--mu);
  font-size: 2rem;
}

.staff-faq-a {
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.staff-faq-a:last-of-type {
  margin-bottom: 0;
}

.staff-faq-list {
  height: 250px;
  overflow-y: auto;
}

.team__staff-list li:first-of-type .staff-faq-list {
  overflow-y: initial;
}

@media (max-width: 1500px) {
  .team__what-bl .cont {
    width: 35%;
  }
  .team__what-tag {
    width: 30%;
  }
  .team__map-shop-list > li.hokkaido {
    top: 16vw;
    right: 14vw;
  }
  .team__map-shop-list > li.yamagata {
    top: 6vw;
    right: 33vw;
  }
  .team__map-shop-list > li.miyagi {
    top: 19vw;
    right: 29vw;
  }
  .team__map-shop-list > li.niigata {
    top: 10.5vw;
    right: 40vw;
  }
  .team__map-shop-list > li.kanagawa {
    top: 21vw;
    left: 50%;
  }
  .team__map-shop-list > li.ishikawa {
    top: 10vw;
    left: 39%;
  }
  .team__map-shop-list > li.tokyo {
    top: 23vw;
    left: 44%;
  }
  .team__map-shop-list > li.shizuoka {
    top: 21vw;
    left: 32%;
  }
  .team__map-shop-list > li.fukuoka {
    top: 8vw;
    left: 15%;
  }
  .team__map-shop-list > li.oita {
    top: 18vw;
    left: 18%;
  }
  .team__map-shop-list > li.kagoshima {
    top: 13vw;
    left: 3%;
  }
  .staff-faq-list {
    height: 290px;
  }
  #omoide__deco01 {
    top: 203px;
  }
  #omoide__deco02 {
    top: 225px;
  }
  #omoide__deco05 {
    top: 704px;
  }
  #omoide__deco04 {
    width: 221px;
    top: 610px;
  }
  .brand-flex.p2 .right .img {
    width: 111px;
    position: absolute;
    right: 84px;
    top: 27px;
  }
  .tea-ttl-bl .tea-ttl {
    width: 100%;
  }
}
@media (max-width: 1300px) {
  .omoide__gallery-bl {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .team__what-bl .cont {
    width: 100%;
    padding-top: 30vw;
  }
  .team__what-tag {
    width: 50%;
    position: absolute;
    top: 0vw;
    left: 10%;
  }
  .team__what-tag img {
    width: 100%;
  }
  .team__what-girl {
    width: 22vw;
    position: absolute;
    top: 0;
    left: 65%;
  }
  .team__map-shop-list > li.hokkaido,
  .team__map-shop-list > li.yamagata,
  .team__map-shop-list > li.niigata,
  .team__map-shop-list > li.miyagi,
  .team__map-shop-list > li.kanagawa,
  .team__map-shop-list > li.ishikawa,
  .team__map-shop-list > li.tokyo,
  .team__map-shop-list > li.shizuoka,
  .team__map-shop-list > li.fukuoka,
  .team__map-shop-list > li.kagoshima,
  .team__map-shop-list > li.oita {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
  }
  .map__check {
    position: absolute;
    top: 28vw;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .team__map-shop-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 400px;
    max-width: 100%;
    margin: 10vw auto 0;
  }
  .team__map-shop-list > li .pref-list {
    position: relative;
    margin-bottom: 10px;
  }
  #pref-modal {
    position: relative;
    width: 400px;
    max-width: 90vw;
  }
  .pref-modal-list {
    width: 100%;
  }
  .pref-modal-list li {
    width: 100%;
  }
  .team__map-shop-list > li.tokyo {
    order: 1;
  }
  .team__map-shop-list > li.kanagawa {
    order: 2;
  }
  .team__map-shop-list > li.shizuoka {
    order: 3;
  }
  .team__map-shop-list > li.ishikawa {
    order: 4;
  }
  .team__map-shop-list > li.hokkaido {
    order: 5;
  }
  .team__map-shop-list > li.niigata {
    order: 6;
  }
  .team__map-shop-list > li.miyagi {
    order: 7;
  }
  .team__map-shop-list > li.yamagata {
    order: 8;
  }
  .team__map-shop-list > li.fukuoka {
    order: 9;
  }
  .team__map-shop-list > li.kagoshima {
    order: 10;
  }
  .team__map-shop-list > li.oita {
    order: 11;
  }
  .team__map {
    margin-bottom: 150px;
  }
  .omoide__ttl {
    font-size: 7rem;
  }
  .team__content {
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .team__content {
    padding: 60px 0 56vw;
  }
  .team__what-ttl .small {
    font-size: 1.8rem;
  }
  .team__what-ttl {
    font-size: 2.4rem;
    margin-bottom: 12px;
  }
  .team__map {
    padding: 30px 5% 0;
  }
  .map__check {
    top: 31vw;
  }
  .team__map-shop-list {
    margin: 15vw auto 0;
  }
  .team__staff-list-name .obi .small {
    font-size: 1.1rem;
  }
  .team__staff-list-name .obi {
    padding: 3px 7px;
    font-size: 1.3rem;
  }
  .team__staff-list-from {
    font-size: 1.4rem;
  }
  .team__staff {
    padding: 24px 20px 30px;
  }
  .team__staff .img {
    width: 120px;
  }
  .staff-faq-a {
    font-size: 1.4rem;
  }
  .team__map {
    margin-bottom: 80px;
  }
}
#omoide {
  margin-top: -50vw;
}
#omoide .scroll-move {
  background-color: #92b3df;
  padding: 15vw 0 150px;
}

.omoide__ttl {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-family: var(--mu);
  font-size: 10rem;
  margin-bottom: 20px;
}

.omoide__gallery-bl {
  position: relative;
}

#omoide__main {
  width: 57%;
  top: 35%;
  left: 49%;
  transform: translate(-50%, -43%);
  position: absolute;
  z-index: 2;
}

#omoide__bg2 {
  width: 71%;
  margin-top: -15vw;
  position: relative;
  z-index: 1;
}

#omoide__deco01 {
  position: absolute;
  width: 124px;
  left: 14%;
  top: 15vw;
  animation: floating1 2.8s ease-in-out infinite alternate-reverse;
}

#omoide__deco02 {
  position: absolute;
  width: 119px;
  left: 36%;
  top: 170px;
  animation: floating2 4.8s ease-in-out infinite alternate-reverse;
  z-index: 3;
}

#omoide__deco03 {
  position: absolute;
  width: 96px;
  right: 4%;
  top: 440px;
  animation: floating3 3.5s ease-in-out infinite alternate-reverse;
}

#omoide__deco04 {
  position: absolute;
  width: 289px;
  left: 19%;
  top: 1000px;
  z-index: 2;
  animation: floating1 2.5s ease-in-out infinite alternate-reverse;
}

#omoide__deco05 {
  position: absolute;
  width: 36px;
  right: 32%;
  top: 900px;
  animation: floating5 5.8s ease-in-out infinite alternate-reverse;
}

.omoide__txt {
  width: 322px;
  position: absolute;
  bottom: 48px;
  right: 0;
}

.product-wave-swiper-wrapper {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.product-wave-swiper {
  position: relative;
}

@media (max-width: 2700px) {
  #omoide__deco04 {
    top: 1030px;
  }
}
@media (min-width: 2600px) {
  #omoide__bg2 {
    margin-top: -8vw;
  }
}
@media (max-width: 2350px) {
  #omoide__deco04 {
    top: 1080px;
  }
}
@media (min-width: 2200px) {
  #omoide__bg2 {
    margin-top: -10vw;
  }
}
@media (max-width: 2000px) {
  #omoide__deco04 {
    top: 1100px;
  }
}
@media (min-width: 1700px) {
  #omoide__main {
    transform: translate(-50%, -40%);
  }
  #omoide__bg2 {
    margin-top: -12vw;
  }
}
@media (max-width: 1700px) {
  #omoide__deco04 {
    top: 1130px;
  }
}
@media (max-width: 1500px) {
  #omoide__deco04 {
    top: 72vw;
  }
}
@media (max-width: 1300px) {
  .omoide__txt {
    width: 223px;
    position: absolute;
    bottom: 20px;
    right: 0;
    font-size: 1.6rem;
  }
  #omoide__deco01 {
    width: 9vw;
  }
  #omoide__deco02 {
    width: 8vw;
    left: 38%;
    top: 19vw;
  }
  #omoide__deco03 {
    width: 8vw;
    right: 4%;
    top: 25vw;
  }
  #omoide__deco04 {
    width: 17vw;
    left: 22%;
    top: 66vw;
  }
  #omoide__deco05 {
    width: 3vw;
    right: 29%;
    top: 48vw;
  }
  .omoide__ttl {
    font-size: 7rem;
    line-height: 1.2;
  }
}
@media (max-width: 1000px) {
  .omoide__txt {
    bottom: -3vw;
    right: -5vw;
  }
}
@media (max-width: 834px) {
  .omoide__txt {
    bottom: -198px;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .omoide__txt {
    bottom: -198px;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
  }
  .omoide__gallery-bl {
    margin-bottom: 140px;
  }
  .omoide__ttl {
    font-size: min(12vw, 7rem);
  }
  #omoide__deco04 {
    top: 61vw;
  }
}
#product {
  background-color: #d7e6fa;
  padding: 200px 0 56vw;
}

.product__ttl {
  margin-top: 80px;
  margin-bottom: 20px;
  font-size: 4.8rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

.product__main-txt {
  text-align: center;
  margin-bottom: 150px;
}

.brand-flex {
  border-radius: 60px;
  padding: 50px 100px;
  display: flex;
  position: relative;
  background-color: #fff;
}
.brand-flex .left {
  width: 50%;
  position: relative;
}
.brand-flex .left .txt {
  padding-right: 30px;
  font-size: 1.6rem;
}
.brand-flex .right {
  width: 50%;
  border-radius: 30px;
  padding: 20px 40px 30px;
  background-color: #ede9fa;
}
.brand-flex .right .img {
  width: 325px;
  margin: 0 auto 10px;
}
.brand-flex .right .txt {
  font-size: 1.6rem;
}
.brand-flex.p2 {
  margin-top: 30px;
}
.brand-flex.p2 .right {
  background-color: #fce9e7;
}
.brand-flex.p2 .right .img {
  width: 111px;
}

.sanrio-copy {
  width: 201px;
  margin-right: 0;
  margin-left: auto;
}

.sanrio-logo {
  margin: 15px 0 15px;
}

.brand-flex-ttl-bl {
  display: flex;
  margin-bottom: 15px;
}
.brand-flex-ttl-bl .img {
  width: 50%;
}
.brand-flex-ttl-bl .img img {
  width: 110%;
  max-width: 110%;
}
.brand-flex-ttl-bl .txt {
  font-size: 1.6rem;
}

.brand-flex-ttl {
  width: 50%;
  margin-top: 20px;
}
.brand-flex-ttl .obi {
  padding: 8px 15px;
  background-color: #B1CDED;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.brand-flex-ttl .ymme-logo {
  width: 202px;
  margin-top: 20px;
  display: block;
}
.brand-flex-ttl .ymme-logo img {
  width: 100%;
}
.brand-flex-ttl .mycy-logo {
  width: 222px;
  margin-top: 20px;
  display: block;
}
.brand-flex-ttl .mycy-logo img {
  width: 100%;
}

.brand-float-ttl {
  position: absolute;
  width: 250px;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
}

.tea-ttl-bl {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.tea-ttl-bl .img {
  width: 111px;
}
.tea-ttl-bl .img img {
  width: 100%;
}
.tea-ttl-bl .tea-ttl {
  width: calc(100% - 131px);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.tea-ttl-bl .tea-ttl .small {
  font-size: 1.6rem;
  display: block;
}

.product-swiper {
  overflow: hidden;
}

@media (max-width: 1500px) {
  .brand-flex-ttl .obi {
    padding: 8px 13px;
    font-size: 1.7rem;
  }
}
@media (max-width: 1300px) {
  .brand-flex.p2 .right .img {
    width: 100px;
  }
  .tea-ttl-bl .tea-ttl {
    width: 100%;
  }
  .brand-flex {
    align-items: center;
  }
  .brand-flex.p2 .right {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 1200px) {
  #product {
    padding: 120px 0 56vw;
  }
  .product__ttl {
    margin-top: 60px;
    font-size: 4rem;
  }
  .brand-flex {
    border-radius: 50px;
    padding: 50px 50px;
  }
  .brand-flex-ttl .obi {
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .brand-flex-ttl {
    width: 57%;
  }
  .brand-flex-ttl-bl .img {
    width: 43%;
  }
  .brand-flex .right .img {
    max-width: 100%;
  }
  .brand-flex.p2 .right .img {
    width: 9vw;
    right: 3vw;
    top: 1vw;
  }
  .tea-ttl-bl .tea-ttl {
    width: 100%;
  }
}
@media (max-width: 834px) {
  #product {
    padding: 60px 0 56vw;
  }
  .product__ttl {
    margin-top: 30px;
    font-size: min(5.5vw, 3rem);
  }
  .brand-float-ttl {
    width: 190px;
    top: -97px;
  }
  .product__main-txt {
    max-width: 90%;
    margin: 0 auto 120px;
  }
  .brand-flex {
    border-radius: 30px;
    padding: 30px 20px;
    flex-direction: column;
  }
  .brand-flex .left {
    width: 100%;
  }
  .brand-flex-ttl-bl {
    margin-bottom: 15px;
  }
  .brand-flex .left .txt {
    padding-right: 0;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .brand-flex .right {
    width: 100%;
    padding: 20px 22px 30px;
  }
  .brand-flex-ttl .ymme-logo {
    width: 170px;
  }
  .brand-flex-ttl .mycy-logo {
    width: 180px;
  }
  .brand-flex-ttl-bl .img {
    position: relative;
    z-index: -1;
  }
  .tea-ttl-bl .tea-ttl .small {
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .tea-ttl-bl .tea-ttl {
    font-size: 2rem;
  }
  .brand-flex.p2 .right .img {
    width: 15vw;
    right: -1vw;
    top: auto;
    bottom: -6vw;
    max-width: 110px;
  }
  .tea-ttl-bl {
    margin-bottom: 10px;
  }
}
#greeting {
  margin-top: -50vw;
}
#greeting .scroll-move {
  background-color: #c6dcf9;
}

.greeting-flex {
  display: flex;
}
.greeting-flex .img-bl {
  padding-top: 200px;
  width: 50%;
  padding-right: 60px;
  position: relative;
}
.greeting-flex .img-bl img {
  width: 100%;
}
.greeting-flex .cont {
  width: 50%;
  padding-top: 40px;
}
.greeting-flex .cont p {
  margin-bottom: 30px;
}

.greeting-middle-ttl {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.greeting-ttl {
  position: absolute;
  width: calc(100% - 60px);
  top: 0;
  z-index: 3;
}

.greeting-ttl2 {
  position: absolute;
  width: calc(100% - 60px);
  top: 78px;
  z-index: 2;
}

.greeting-ttl3 {
  position: absolute;
  width: calc(100% - 60px);
  top: 156px;
  z-index: 1;
}

.greeting__name-bl {
  margin-top: 50px;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
}
.greeting__name-bl .img-name {
  width: 309px;
  max-width: calc(100% - 240px);
}
.greeting__name-bl .greeting__name {
  font-size: 2.1rem;
}
.greeting__name-bl .greeting__name .add {
  font-size: 1.6rem;
  display: block;
}

#greeting-txt,
#greeting-txt2,
#greeting-txt3 {
  opacity: 0;
  transform: translateY(30px);
}

.greeting-target.in #greeting-txt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  transition-duration: 1s;
}
.greeting-target.in #greeting-txt2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
  transition-duration: 1s;
}
.greeting-target.in #greeting-txt3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
  transition-duration: 1s;
}

@media (max-width: 1700px) {
  #greeting .scroll-move {
    padding: 30vw 0 56vw;
  }
}
@media (max-width: 1200px) {
  .greeting-middle-ttl {
    font-size: 3rem;
  }
  .greeting-ttl2 {
    top: 5vw;
  }
  .greeting-ttl3 {
    top: 10vw;
  }
}
@media (max-width: 834px) {
  .greeting-flex .img-bl {
    padding-top: 120px;
    width: 400px;
    padding-right: 0;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
  }
  #greeting .scroll-move {
    padding: 20vw 0 56vw;
  }
  .greeting-ttl {
    width: 100%;
  }
  .greeting-ttl2 {
    top: 50px;
    width: 100%;
  }
  .greeting-ttl3 {
    top: 100px;
    width: 100%;
  }
  .greeting-middle-ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .greeting-flex .cont {
    width: 100%;
    padding-top: 30px;
  }
  .greeting-flex {
    flex-direction: column;
  }
  .greeting__name-bl .img-name {
    width: 250px;
    max-width: 70%;
  }
  .greeting__name-bl {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-direction: column;
  }
}
@media (max-width: 640x) {
  .greeting-flex .img-bl {
    padding-top: 30vw;
    width: 90%;
    padding-right: 0;
    position: relative;
    margin: 0 auto;
  }
  .greeting-ttl {
    width: 100%;
  }
  .greeting-ttl2 {
    top: 11vw;
  }
  .greeting-ttl3 {
    top: 21vw;
  }
  .greeting__name-bl {
    margin-top: 30px;
    gap: 17px;
    align-items: flex-start;
    flex-direction: column;
  }
  .greeting__name-bl .greeting__name {
    font-size: 1.7rem;
  }
  .greeting__name-bl .greeting__name .add {
    font-size: 1.4rem;
  }
  .greeting-middle-ttl {
    font-size: 2.3rem;
  }
}
#join {
  margin-top: -50vw;
}
#join .scroll-move {
  background-color: #fbfbff;
  padding: 15vw 0 150px;
  position: relative;
}

.join__ttl-bl {
  margin-bottom: 40px;
}

.join__tag {
  margin-bottom: 20px;
}

.join__comeon {
  width: 223px;
  margin: 0 auto;
  display: block;
}
.join__comeon img {
  width: 100%;
}

.join__join {
  width: 400px;
  margin: 0 auto 20px;
  display: block;
}

.join__ttl {
  color: var(--pink);
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.join__txt {
  text-align: center;
}

.join__flow-ttl {
  padding: 8px 20px 8px;
  line-height: 1;
  border: 1px solid var(--black);
  font-weight: bold;
  font-size: 1.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  border-radius: 30px;
  background-color: #fff;
}

.join__flow-list {
  display: flex;
  gap: 80px;
  margin-bottom: 40px;
  list-style: none;
}
.join__flow-list li {
  width: calc((100% - 320px) / 5);
}
.join__flow-list li .img {
  width: 100%;
  margin-bottom: 7px;
  position: relative;
}
.join__flow-list li .img img {
  width: 100%;
}
.join__flow-list li .img::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 17.5px solid transparent;
  border-bottom: 17.5px solid transparent;
  border-left: 25px solid #e8e8e8;
  border-right: 0;
  right: -55.5px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.join__flow-list li p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.join__flow-list li .link {
  width: 142px;
  height: 41px;
  border-radius: 40px;
  color: #fff;
  background: rgb(228, 190, 225);
  background: linear-gradient(90deg, rgb(228, 190, 225) 0%, rgb(242, 188, 210) 100%);
  font-family: var(--mu);
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.join__flow-list li:last-of-type .img::after {
  display: none;
}
.join__flow-list li:last-of-type .img {
  margin-top: -35px;
}

.join__flow-list-ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 7px;
  color: var(--pink);
}

.docx-bl {
  background-color: #fff;
  border-radius: 60px;
  padding: 60px 100px;
  display: flex;
}

.docx-ttl {
  width: 250px;
  padding-right: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.docx-cont {
  width: calc(100% - 250px);
}

.docx-conttxt {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.docx-conttxt .list {
  display: inline-block;
  margin-right: 7px;
}

.docx-link {
  width: 400px;
  height: 90px;
  border-radius: 50px;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition-duration: 0.3s;
  background: rgb(228, 190, 225);
  background: linear-gradient(90deg, rgb(228, 190, 225) 0%, rgb(242, 188, 210) 100%);
}
.docx-link:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
.docx-link .icon {
  width: 20px;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.docx-address-flex {
  display: flex;
  align-items: center;
}

.docx-address-ttl {
  font-weight: bold;
  font-size: 1.8rem;
}

.docx-address-txt {
  font-size: 1.6rem;
  border-left: 1px solid #ccc;
  padding-left: 25px;
  margin-left: 25px;
}
.docx-address-txt .small {
  font-size: 1.2rem;
  display: block;
}

.recruit-swiper-wrapper {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: 1;
  overflow: hidden;
}

.recruit-swiper {
  position: relative;
}

@media (max-width: 1200px) {
  .join__ttl {
    font-size: 4rem;
  }
  .join__flow-list li {
    width: calc((100% - 200px) / 5);
  }
  .join__flow-list {
    gap: 50px;
  }
  .join__flow-list li .img::after {
    border-top: 10.5px solid transparent;
    border-bottom: 10.5px solid transparent;
    border-left: 15px solid #e8e8e8;
    right: -33.5px;
  }
  .join__flow-list li p {
    font-size: 1.4rem;
  }
  .join__flow-list li .link {
    width: 100px;
  }
  .docx-bl {
    border-radius: 50px;
    padding: 60px 50px;
  }
  .docx-ttl {
    width: 200px;
    font-size: 1.7rem;
  }
  .docx-cont {
    width: calc(100% - 200px);
  }
  .docx-address-ttl {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
@media (max-width: 834px) {
  .join__join {
    width: 280px;
    max-width: 70%;
    margin: 0 auto;
  }
  .join__comeon {
    width: 150px;
    margin: 0 auto;
  }
  .join__tag {
    margin-bottom: 0;
  }
  .join__ttl {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  .join__flow-list li .img::after {
    display: none;
  }
  .join__flow-list {
    flex-direction: column;
    gap: 0;
  }
  .join__flow-list li {
    display: flex;
    padding: 30px 20px;
    gap: 20px;
    width: 430px;
    border-radius: 30px;
    background-color: #fff;
    max-width: 100%;
    margin: 0 auto 40px;
    position: relative;
  }
  .join__flow-list li .link {
    height: 35px;
    font-size: 1.6rem;
  }
  .join__flow-list li .img {
    width: 120px;
  }
  .join__flow-list li .cont {
    width: calc(100% - 140px);
  }
  .join__flow-list li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10.5px solid transparent;
    border-bottom: 10.5px solid transparent;
    border-left: 15px solid #e8e8e8;
    border-right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    right: auto;
    top: auto;
    transform: translateX(-50%) rotate(90deg);
    bottom: -32px;
    left: 50%;
  }
  .join__flow-list-ttl {
    text-align: left;
  }
  .join__flow-list li:last-of-type:after {
    display: none;
  }
  .docx-bl {
    border-radius: 30px;
    padding: 40px 20px;
    flex-direction: column;
  }
  .docx-ttl {
    width: 100%;
    font-size: 1.7rem;
    padding-right: 0;
  }
  .docx-conttxt .list {
    display: block;
  }
  .docx-conttxt {
    font-size: 1.5rem;
  }
  .docx-cont {
    width: 100%;
    margin-top: 10px;
  }
  .docx-link {
    text-align: center;
    max-width: 100%;
  }
  .docx-address-flex {
    flex-direction: column;
  }
  .docx-address-ttl {
    font-size: 1.5rem;
    padding-bottom: 10px;
    text-align: left;
    width: 100%;
  }
  .docx-address-txt {
    padding-top: 12px;
    font-size: 1.5rem;
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    border-top: 1px solid #ccc;
  }
  #join .scroll-move {
    padding: 15vw 0 60px;
  }
}
#recruit {
  padding: 120px 0;
  background-color: #d7e6fa;
}

.recruit__ttl {
  padding: 8px 20px 8px;
  line-height: 1;
  border: 1px solid var(--black);
  font-weight: bold;
  font-size: 1.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  border-radius: 30px;
  background-color: #fff;
}

.tab {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 60px;
}

/* タブメニュー */
.tab__menu {
  display: flex;
  align-items: flex-end;
  /* メニューを下揃え */
  justify-content: center;
  min-height: 50px;
  /* メニュー切替時にタブがズレないように */
  padding: 0;
  margin: 0;
}

.tab__menu-item {
  list-style: none;
  width: 167px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c6dcf9;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
  /* アニメーション */
  font-size: 1.8rem;
}

.tab__menu-item:last-of-type {
  margin-right: 0px;
}

/* is-activeがついている時のスタイル */
.tab__menu-item.is-active {
  background-color: #92b3df;
  color: #ffffff;
}

/* タブパネル */
.tab__panel {
  width: 100%;
}

.tab__panel-box001 {
  display: none;
}

.tab__panel-box002 {
  display: none;
}

/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
  display: block;
}

.recruit-table {
  border-top: 1px solid #92b3df;
  display: flex;
  flex-wrap: wrap;
}
.recruit-table dt {
  padding: 20px 10px 20px 0;
  border-bottom: 1px solid #92b3df;
  width: 20%;
  font-size: 1.8rem;
}
.recruit-table dd {
  padding: 20px 10px 20px 0;
  border-bottom: 1px solid #92b3df;
  width: 80%;
  font-size: 1.6rem;
}
.recruit-table dd .small {
  font-size: 1.2rem;
  display: block;
}
.recruit-table dd p {
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.recruit-table dd p:last-of-type {
  margin-bottom: 0;
}

.recruit__contact-bl {
  padding: 60px 50px 40px;
  border-radius: 60px;
  background-color: #fff;
  margin-top: 100px;
  position: relative;
}
.recruit__contact-bl .img {
  width: 156px;
  position: absolute;
  right: 50px;
  bottom: 50px;
}
.recruit__contact-bl .img img {
  width: 100%;
}

.recruit__contact-tag {
  font-size: 2.4rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
  padding-bottom: 18px;
}
.recruit__contact-tag::after {
  width: 100%;
  aspect-ratio: 10/1;
  background-image: url(../img/dot-under.webp);
  background-size: contain;
  background-repeat: repeat-x;
  display: block;
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
}

.recruit__contact-ttl {
  font-size: 3rem;
  color: var(--pink);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.recruit__contact-txt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
}

.recruit-contact-link {
  width: 400px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background: rgb(228, 190, 225);
  background: linear-gradient(90deg, rgb(228, 190, 225) 0%, rgb(242, 188, 210) 100%);
}

.recruit-contact-link-icon {
  width: 43px;
}

.recruit-contact-swiper-bl {
  position: absolute;
  top: 0;
  left: 50px;
  min-height: 463px;
  overflow: hidden;
}

.recruit-contact-swiper {
  position: relative;
  min-height: 463px;
  height: 463px;
  width: 66px;
}

.new-txt {
  color: #78a1d5;
}

@media (max-width: 1200px) {
  .recruit__contact-bl .img {
    width: 14vw;
    right: 2.5vw;
  }
}
@media (max-width: 834px) {
  #recruit {
    padding: 60px 0;
  }
  .tab {
    margin-top: 30px;
  }
  .tab__menu-item {
    width: 120px;
    height: 45px;
    font-size: 1.6rem;
  }
  .recruit-table dt {
    padding: 20px 10px 20px 0;
    width: 85px;
    font-size: 1.4rem;
  }
  .recruit-table dd {
    padding: 20px 0px 20px 0;
    width: calc(100% - 85px);
    font-size: 1.4rem;
  }
  .recruit__contact-bl {
    overflow: hidden;
    padding: 12vw 30px 40px;
    border-radius: 30px;
    margin-top: 50px;
  }
  .recruit-contact-swiper {
    min-height: auto;
    height: auto;
    width: auto;
  }
  .recruit-contact-swiper-bl {
    top: 20px;
    left: 0;
    min-height: auto;
    overflow: hidden;
    width: 100vw;
  }
  .recruit__contact-tag {
    font-size: min(4.2vw, 2rem);
    margin: 0 auto 10px;
  }
  .recruit__contact-tag {
    margin: 0 auto 10px;
  }
  .recruit__contact-ttl {
    font-size: min(5.5vw, 3rem);
    margin-bottom: 15px;
  }
  .recruit__contact-txt {
    font-size: 1.5rem;
    text-align: left;
  }
  .recruit-contact-link {
    width: 250px;
    height: 65px;
    border-radius: 50px;
    font-size: 1.6rem;
    gap: 9px;
    margin-bottom: 20px;
  }
  .recruit-contact-link-icon {
    width: 30px;
  }
  .recruit__contact-bl .img {
    width: 16vw;
    right: 1.5vw;
    bottom: -1vw;
  }
  .recruit-table dd p {
    font-size: 1.4rem;
  }
}
#instagram {
  background-color: #92b3df;
  padding: 100px 0;
  overflow: hidden;
}

.instagram__ttl {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.instagram__tag {
  width: 230px;
  margin: 0 auto 20px;
}

.instagram__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--mu);
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 60px;
}
.instagram__link .icon {
  width: 35px;
  display: block;
}
.instagram__link .icon img {
  width: 100%;
}

.instagram-swiper .swiper-slide {
  aspect-ratio: 1/1;
  background-color: #eee;
}
.instagram-swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.instagram-swiper {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .instagram__ttl {
    font-size: 3rem;
  }
}
@media (max-width: 835px) {
  #instagram {
    padding: 60px 0;
  }
  .instagram__ttl {
    font-size: min(6vw, 2.4rem);
  }
  .instagram__tag {
    width: 180px;
  }
  .instagram__link {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .instagram__link .icon {
    width: 30px;
  }
}/*# sourceMappingURL=style.css.map */