@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button{
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
}
img {
  max-width: 100%;
}

:root{
    --color-main  : #00ba5d;
    --color-sub   : #fffff6;
    --color-accent: #ffc249;
    --color-pink  : #ff5b6b;

    --color-bg : #ffffff;
    --color-txt: #343434;

    --color-hoketu : #00b570;

    --font-gpthic    : "Zen Kaku Gothic New", sans-serif;
    --font-gpthic2   : "Zen Maru Gothic", sans-serif;
    --font-sans-serif: "Lexend Exa", sans-serif;
}

/*--------------------
base
--------------------*/
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body{
  background-color: var(--color-sub);
  font-family: var(--font-gpthic);
}

.loading{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000000000000;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}
 /* ロードが終わったとき */
.loading.is-load{
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  transition: 1000ms ease;
  transition-property: opacity,visibility;
  transition-delay: 1000ms; /* 遅らせる */
}

.loading__logo{
  width: 150px;
  margin: 0 auto 1rem;
}
.loading__text{
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--color-main);
  text-align: center;
  font-family: var(--font-sans-serif);
}
.loading__text span{
  animation: dots 1.4s infinite both;
}
.loading__text span:nth-child(1){ animation-delay: 0s; }
.loading__text span:nth-child(2){ animation-delay: .2s; }
.loading__text span:nth-child(3){ animation-delay: .4s; }

@keyframes dots{
  0%{ opacity: 0; }
  20%{ opacity: 1; }
  100%{ opacity: 0; }
}

/*-----------------------------------------------------
header
------------------------------------------------------*/
.header__nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 3.5rem 4rem;
  border-radius: 0 0 100px 100px;
  background-color: var(--color-bg);
  z-index: 1000000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.header__nav a {
  display: flex;
  align-items: center;
}

.header__nav a img {
  width: auto;
  max-width: 200px;
  height: auto;
  padding: 2rem;
  flex-shrink: 1;
}

.header__nav__list {
  display: flex;
  gap: 5rem;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-main);

  white-space: nowrap;
  flex-shrink: 1;
  overflow: hidden;
}

.header__nav__list li a {
  flex-shrink: 1;
  text-overflow: ellipsis;

  padding-bottom: 5px;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
  letter-spacing: 0.08em;
}
.header__nav__list li a:hover{
  opacity: 0.7;
}
.header__nav__list li a::before {
  background: var(--color-main);
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
  opacity: 0.7;
}
.header__nav__list li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
/* ------------------------------------------------------- */
.top__logo {
  width: 7rem;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;

  opacity: 0;
  visibility: hidden;
}

.top__logo img {
  max-width: 100%;
  height: auto;
}

.circle {
  width: 140px;
  height: 140px;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-sub);
  border-radius: 50%;
  z-index: 15;
  box-shadow: 0 0 10px #cecece;

  opacity: 0;
  visibility: hidden;
}

/* ----------------------------- Respon ----------------------------- */
@media (max-width: 1150px) {
  .header__nav__list {
    gap: 2rem;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    padding: 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .top__logo {
    opacity: 1;
    visibility: visible;
  }
  .circle {
    opacity: 1;
    visibility: visible;
  }
}

/* ------------------------------------------------------------------ */

/*------------------------------------------------ 
header__button
------------------------------------------------*/
.header__btn{
  width: 90px;
  height: 90px;
  z-index: 100000000000;
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  margin-left: auto;
  background-color: var(--color-hoketu);
  border-radius: 0 0 0 30px;

  opacity: 0;
  visibility: hidden;
}
.header__btn__icon{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.header__btn__icon span{
  text-align: center;
  display: block;
  width: 35px;
  height: 2px;
  background-color: var(--color-sub);

  transition: 500ms ease;
  transition-property: opacity,transform;
}
.header__btn__txt{
  display: block;
  padding-top: 0.5rem;
  font-family: var(--font-sans-serif);
  color: var(--color-sub);
}

.header__btn.is-open .header__btn__icon span:nth-of-type(2){
  opacity: 0;
}
.header__btn.is-open .header__btn__icon span:nth-of-type(1){
  transform: translateY(8px) rotate(45deg);
}
.header__btn.is-open .header__btn__icon span:nth-of-type(3){
  transform: translateY(-8px) rotate(-45deg);
}
/*------------------------------------------------------
sitemap
-------------------------------------------------------*/
.sitemap{
  position: fixed;
  z-index: 1000000000;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  padding: 3rem;
  box-sizing: border-box;
  
  opacity: 0;
  visibility: hidden;

  clip-path: circle(0% at 100% 0%);
  -webkit-clip-path: circle(0% at 100% 0%);
}
.sitemap.is-open{
  opacity: 1;
  visibility: visible;
  animation: sitemap-in 0.6s ease-in-out both;
}

.sitemap.is-close{
  opacity: 1;
  visibility: visible;
  animation: sitemap-out 0.5s ease-in-out both;
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
	.header__btn{
		opacity: 1;
		visibility: visible;
	}
}
/* ------------------------------------------------------------------ */
@keyframes sitemap-in {
  from {
    clip-path: circle(0% at 100% 0%);
    -webkit-clip-path: circle(0% at 100% 0%);
  }
  to {
    clip-path: circle(150% at 100% 0%);
    -webkit-clip-path: circle(150% at 100% 0%);
  }
}
@keyframes sitemap-out {
  from {
    clip-path: circle(150% at 100% 0%);
    -webkit-clip-path: circle(150% at 100% 0%);
  }
  to {
    clip-path: circle(0% at 100% 0%);
    -webkit-clip-path: circle(0% at 100% 0%);
  }
}
.sitemap__list{
  height: 100%;
  background-color: var(--color-sub);
  border-radius: 40px;
  text-align: center;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  color: var(--color-main);
  font-family: var(--font-gpthic);
  font-weight: 500;
}

.sitemap__list li{
  margin: 0.5rem 0.5rem 0.5rem 0.5rem; 
  border-bottom: solid var(--color-main) 1px;
  letter-spacing: 0.1em;
}
.sitemap__list li a{
  display: flex;
  padding: 2rem;
  width: 100%;
  height: 100%;
}
.sitemap__list li a p{
    padding-left: 4rem;
}
.sitemap__logo{
  width: 200px;
  height: auto;
}
.sitemap__logo img{
  padding: 1rem 1rem 1rem 2rem;
  width: 200px;
  height: auto;
}


/*------------------------------------------------------
main
-------------------------------------------------------*/
.fix-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background-color: var(--color-pink);
  color: #fff;
  border-radius: 100%;
  text-align: center;
  display: flex; 
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 0;
  z-index: 9999;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.3s ease,background-color 0.5s ease;
}

.fix-btn.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.fix-btn:hover {
  transform: scale(1.03);
  background-color: #ff3e58;
}
@media (max-width: 768px){
  .fix-btn{
    right: 0;
    bottom: 10px;
    border-radius: 30px 0 0 30px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: 60px;
    height: 130px;
    transform: translateX(40px); /* 右に隠す */
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .fix-btn.show{
    transform: translateX(0); /* 右からポコッ */
    opacity: 1;
  }
}
.mainvisual{
  position: relative;

  z-index: 10;
  height: 100vh;
  padding-top: 6rem;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background-color: var(--color-sub);

  overflow: hidden;
}

.catchcopy{
  position: absolute;
  left: 2%;
  bottom: 3%;
  z-index: 20;

  display: flex;
  flex-direction: column;

  font-family: var(--font-gpthic2);
  font-weight: 400;
  color: var(--color-sub);
  line-height: 1.2;

  font-size: 80px;
}

.catchcopy > span{
  display: block;
}

.line1 { margin-left: 0; }
.line2 { margin-left: 0.5em; }
.line3 { margin-left: 2.6em; }
.small{
  font-size: 0.9em;
}
.orange{
  position: relative;
  display: inline-block;
  z-index: 1;
}
.orange::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 70%;
  /* background-color: var(--color-main); */
  background: radial-gradient(
    circle at 100% 0%,
    var(--color-main) 0%,
    var(--color-main) 60%,
    var(--color-hoketu) 60%,
    var(--color-hoketu) 100%
  );
  border-radius: 5px;
  z-index: -2;
  opacity: 1.5;
}
/* .orange::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.3em;
  background-color: var(--color-main);
  border-radius: 5px;
  z-index: -1;
} */
.catchcopy span span{
  display: inline;
}
@media (max-width: 768px){
  .catchcopy{
    font-size: 56px;
    bottom: 3%;
  }
}

.slider1{
  z-index: 10;
  width: 67%;
}
.slider1 img{
  width: 100%;
  height: auto;
  border-radius: 10px 10px 10px 90%;
  object-fit: cover;
}

.flex__2{
  z-index: 10;
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: space-between;
}
.top__logo2{
  width: auto;
  height: 40%;
  aspect-ratio: auto;
  padding: 5rem;
}
.top__logo2 img{
  width: 100%;
  height: 100%;
}
.slider2{
  width: 100%;
}
.slider2 img{
  width: 100%;
  height: 100%;
  border-radius: 10px;

  object-fit: cover;
  display: block;
}
.slider1,
.slider1 .slick-list,
.slider1 .slick-track,
.slider1 .slick-slide {
  height: 100%;
}
.slider1,
.slider1 .slick-list,
.slider1 .slick-track,
.slider1 .slick-slide {
  height: 100%;       /* 画面いっぱいにする */
  display: flex;
}

.slider1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider2,
.slider2 .slick-list,
.slider2 .slick-track,
.slider2 .slick-slide {
  height: 100%;
  display: flex;
  max-height: 100%;
}
/* パソコンでみたとき */
.pc { display: block !important; }
.smh { display: none !important; }

/* ------------------------------sumaho------------------------------ */
@media only screen and (max-width: 768px) {
  .pc { display: none !important; }
  .smh { display: block !important; }
}
@media (max-width: 768px){
  .mainvisual{
    padding-top: 0;
  }
  .slider1{
    width: 100%;
  }
  .slider1 img{
    border-radius: 0 0 0 100%;
  }
	.flex__2{
		transform: translateX('-9999px');
	}
}
/* ------------------------------------------------------------------ */
.carb{
  z-index: 1;
  position: absolute;
  bottom: -15rem;
  width: 100%;
  height: 38.5%;
  clip-path: ellipse(70% 30% at 50% 50%);
  background-color: var(--color-sub);
}
.carb div{
  width: 120%;
}

/*----------------------------------
about
-----------------------------------*/
#about{
  padding-top: 10rem;
  padding-bottom: 10rem;
  /* background-color: var(--color-main); */
  background: radial-gradient(
    circle at 100% 0%,
    var(--color-main) 0%,
    var(--color-main) 60%,
    var(--color-hoketu) 60%,
    var(--color-hoketu) 100%
  );
  color: var(--color-sub);
  display: flex;
  flex-direction: column;
  justify-content: center;

  border-radius: 0 0 0 500px;
}
.about__ko{
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1500px;
  margin: 2rem auto auto auto;
}
.about__visual{
  width: 60%;
}
.abouttxt__oya{
  width: 100%;
}
.about__toptxt{
  width: 80%;
  max-width: 1500px;
  margin: 10rem 0 0 5rem;

  width: 25%;
  min-width: 300px;
  padding: 0 1rem 1rem 1rem;
  display: inline-block;
  color: var(--color-hoketu);
  background-color: var(--color-sub);
  border-radius: 30px 30px 1000px 30px;
  box-shadow: 7px 7px var(--color-accent);
  transform: translate(0px,-40px);
}
.about__toptxt h2{
  position: relative;
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-gpthic2);
  z-index: 1;
}
.border{
  border-bottom: dashed var(--color-accent) 2px;
}
.kankaku{
  letter-spacing: 0.1em;
}
.about__toptxt p{
  padding-top: 0.5rem;
  color: var(--color-accent);
  font-size: 18px;
  letter-spacing: 0.8;
  font-family: var(--font-sans-serif);
}
.about__oya{
  margin-top: 2rem;

  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: end;
}
.about__big{
  width: 100%;
  transform: translate(-30px,-35px);
  z-index: 5;
}
.about__big img{
  width: 100%;
  border-radius: 40px 40px 40px 1000px;
  border: dashed 5px var(--color-main);
}
.about__small{
  width: 70%;
  transform: translate(20px,-30px)
}
.about__small img{
  width: 100%;
  border-radius: 10px;
}
.about__txt{
  width: 50%;
  font-family: var(--font-gpthic);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.about__catch{
  width: 100%;
  padding-bottom: 2rem;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.about__p{
  width: 100%;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.08em;
}

/* 下からフェードイン */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade.active {
  opacity: 1;
  transform: translateY(0);
}

/* 新しい早いフェードイン */
.scroll-fade-fast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-fade-fast.active {
  opacity: 1;
  transform: translateY(0);
}
/* 遅いフェードイン */
.scroll-fade-slow {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out; /* 遅め */
}
.scroll-fade-slow.active {
  opacity: 1;
  transform: translateY(0);
}
.scroll-zoom-pop {
  opacity: 0;
  transform: scale(0.95);
  animation: none;
}

.scroll-zoom-pop.active {
  opacity: 1;
  animation: popZoom 0.6s ease-out forwards;
}

@keyframes popZoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  70% {
    transform: scale(1.03); /* 少し大きく */
    opacity: 1;
  }
  100% {
    transform: scale(1); 
    opacity: 1;
  }
}



/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  #about{
    padding-bottom: 8rem;
    border-radius: 0 0 0 150px;
  }
  .carb{
    bottom: -12rem;
  }
  .about__toptxt{
    margin: 3rem 0 0 1rem;
  }
  .about__ko{
    flex-direction: column;
    width: 90%;
  }
  .about__visual{
    width: 100%;
  }
  .about__txt{
    width: 95%;
    padding-left: 3em;
  }
  .about__p{
    line-height: 30px;
  }
}
/* ------------------------------------------------------------------ */
/*----------------------------------
activities
-----------------------------------*/
#activities{
  padding-top: 5rem;
  padding-bottom: 15rem;
  position: relative;
}
.activ__sita{
  width: 80%;
  max-width: 1500px;
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.activ__visual{
  text-align: right;
  width: 60%;
}
.activtxt__oya{
  width: 100%;
  text-align: right;
}
.activ__toptxt{
  width: 25%;
  max-width: 1500px;
  margin: 10rem 4rem 0 0;
  text-align: right;

  min-width: 200px;
  padding: 0rem 1rem 1rem 1rem;
  display: inline-block;
  color: var(--color-sub);
  background-color: var(--color-hoketu);
  border-radius: 30px 30px 30px 1000px;
  box-shadow: -7px 7px var(--color-accent);
}
.activ__toptxt h2{
  position: relative;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: var(--font-gpthic2);
  z-index: 1;
}
.activ__toptxt p{
  padding-top: 1rem;
  color: var(--color-accent);
  font-size: 18px;
  letter-spacing: 0.8;
  font-family: var(--font-sans-serif);
}
.activimg__flex{
  padding-top: 4rem;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
}
.activ__circle{
  width: 130%;
  z-index: 10;
  transform: translate(30px,0px);
}
.activ__circle img{
  width: 100%;
  border-radius: 40px 40px 1000px 40px;
  border: dashed 5px var(--color-sub);
}
.activ__big{
  width: 120%;
  transform: translate(-50px,-20px);
}
.activ__big img{
  width: 100%;
  border-radius: 10px;
}
.activ__txt{
  width: 50%;
  margin: auto;
  padding-top: 8rem;
  font-family: var(--font-gpthic);
  color: var(--color-hoketu);
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.activ__catch{
  padding-bottom: 2rem;
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 40px;
}
.activ__catch span{
  font-size: 26px;
}
.activ__p{
  width: 100%;
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.08em;
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  #activities{
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
  .activ__toptxt{
    margin: 3rem 1rem 0 0;
    width: 300px;
  }
  .activ__sita{
    flex-direction: column;
    width: 90%;
  }
  .activ__visual{
    width: 100%;
    text-align: center;
  }
  .activ__big{
    transform: translate(-20px,-20px);
  }
  .activ__txt{
    padding-top: 3rem;
    width: 90%;
  }
  .activ__catch{
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .activ__catch span{
    font-size: 22px;
  }
  .activ__p{
    line-height: 30px;
  }
}
/* ------------------------------------------------------------------ */
/*----------------------------------
member
-----------------------------------*/
#member{
  padding-top: 13rem;
  /* background-color: var(--color-main); */
  background: radial-gradient(
    circle at 50% 0%,
    var(--color-main) 0%,
    var(--color-main) 60%,
    var(--color-hoketu) 60%,
    var(--color-hoketu) 100%
  );
  border-radius: 0 500px 0 0;
}
.carb2{
  z-index: 1;
  position: absolute;
  bottom: -30rem;
  width: 100%;
  height: 38.5%;
  clip-path: ellipse(70% 30% at 50% 50%);
  background-color: var(--color-accent);
}
.carb2 div{
  width: 120%;
}
.member__ko{
  width: 100%;
  margin: auto;
}
.member__txt{
  text-align: center;
  width: 35%;
  min-width: 300px;
  padding: 0.5rem 1rem 2rem 1rem;
  margin: auto auto 7rem auto;
  background-color: var(--color-sub);
  border-radius: 30px 30px 1000px 30px;
  font-family: var(--font-gpthic2);
  box-shadow: 7px 7px var(--color-accent);
}
.member__txt h2{
  font-size: 28px;
  color: var(--color-hoketu);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.member__txt p{
  padding-top: 0.5rem;
  color: var(--color-accent);
  font-size: 18px;
  letter-spacing: 0.08em;
  font-family: var(--font-sans-serif);
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  #member{
    padding-top: 8rem;
    border-radius: 0 150px 0 0;
  }
}
/* ------------------------------------------------------------------ */
/*-------------------------カルーセル---------------------------*/
.karu__seru {
  position: relative;
  overflow: visible;
}
.karu__seru .slick-slide {
  opacity: 0.9;
  transform: scale(0.85);
  transition: all 0.3s;
}

.karu__seru .slick-center {
  opacity: 1;
  transform: scale(1); 
  z-index: 2;
}
.member__box {
  width: 200px;
  margin: 0;
  flex-shrink: 0;
}
.member__box{
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  max-height: 450px;
  aspect-ratio: 7 / 10;
  background-color: var(--color-sub);
  /* border: var(--color-accent) solid 5px; */
  border-radius: 20px;

  display: flex;
  flex-direction: column;
}

.karu__seru .slick-slide p {
  font-size: 14px;
  word-wrap: break-word;
}
.zyosi{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.memberimg{
  display: flex;
  margin: auto;
  padding: 0.5rem 0 0 0;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.memberimg img{
  aspect-ratio: 1 / 1;
  clip-path: circle(50% at 50% 50%);
}
.syousai{
  width: 90%;
  margin: auto;

  display: flex;
  flex-direction: column;
  height: 100%;
}
.syousai p{
  font-size: 14px;
  font-family: var(--font-gpthic);

}
.zyosi__name{
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-hoketu);
  font-family: var(--font-gpthic2);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-bottom: dashed var(--color-accent) 2px;
}
.member__box .material-symbols-outlined{
  color: var(--color-accent);
}
.s__btn .material-symbols-outlined{
  color: var(--color-sub);
  margin: auto 0;
  transition: transform 0.3s ease;
}
.syousai__txt,
.syousai__nouen,
.syousai__sakumotu,
.more__btn{
  display: flex;
  align-content: center;
  padding: 0.5rem 0;
  gap: 1rem;
  color: var(--color-txt);
  letter-spacing: 0.1em;
  line-height: 23px;
  border-bottom: dashed var(--color-accent) 1px;
}
.more__btn{
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  border: none;
}
.s__btn{
  width: 100%;
  margin-top: auto;
  text-align: right;

  background-color: var(--color-accent);
  border-radius: 30px;
  padding: 0 1rem;
  transition: opacity 0.4s ease;
}
.s__btn:hover{
  opacity: 0.8;
}
.s__btn:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.karu__seru .slick-prev,
.karu__seru .slick-next {
  position: absolute;
  top: -50px;
  width: 60px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.karu__seru .slick-prev {
  right: 200px;

  transition: background-color 0.3s ease;
}
.karu__seru .slick-next {
  right: 100px;

  transition: background-color 0.3s ease;
}
.karu__seru .slick-prev::before,
.karu__seru .slick-next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: center;
}
/* ← */
.karu__seru .slick-prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

/* → */
.karu__seru .slick-next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}
.karu__seru .slick-prev:hover,
.karu__seru .slick-next:hover {
  background-color: var(--color-pink);
}

@media (max-width: 768px) {
  .karu__seru .slick-prev {
  left: 15px;
}
.karu__seru .slick-next {
  left: 70px;
}
  .karu__seru .slick-prev,
  .karu__seru .slick-next {
    top: -50px;
    width: 36px;
    height: 36px;
  }
}

.decodots button {
  display: none;
}
.decodots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.decodots li {
  width: 10px;
  height: 10px;
  background-color: var(--color-sub);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
}

.decodots li.slick-active {
  background-color: var(--color-accent);
}

.decodots li:hover {
  background-color: #ffd7b6;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .decodots {
  gap: 20px;
}
  .decodots li {
    width: 12px;
    height: 12px;
  }
}

/* ------------------------------respon------------------------------ */
@media (max-width: 1400px) and (min-width: 769px) {
  /* スライドの高さを調整 */
  .karu__seru .slick-slide {
    height: auto !important;
  }
  .member__box {
    min-height: 450px;
    max-height: none;
    padding: 0.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

}
@media (max-width: 768px) {

  /* 全スライド同じ大きさ */
  .karu__seru .slick-slide {
    opacity: 1;
    display: flex !important;
    justify-content: center;
  }

  /* メンバーボックス */
  .member__box {
    margin: 0 auto;

    width: 100%;
    max-width: 200px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
    box-sizing: border-box;
  }

  /* ボタン下固定 */
  .s__btn {
    margin-top: auto;
    text-align: right;
  }

  /* テキスト */
  .karu__seru .slick-slide p {
    font-size: 12px;
    line-height: 1.3em;
    word-wrap: break-word;
  }
}

/* ------------------------------------------------------------------ */
.h-slider .slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
  display: flex !important;
}
.member__box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*----------------------------------
member__all (Accordion)
-----------------------------------*/
.accordion__flex .member__box {
  width: 23%;
  max-width: 280px;
  max-height: 400px;
  margin: 0 1rem 2rem 1rem;
}

@media screen and (max-width: 1024px) {
  .accordion__flex .member__box {
    width: 30%;
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .member__all{
    display: none;
  }
}

.member__all{
  padding-top: 2rem;
  background-color: var(--color-hoketu);
}
.accordion{
  width: 90%;
  max-width: 1500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.accordion__btn{
  width: 25%;
  min-width: 300px;
  margin: 3rem auto 4rem auto;
  background-color: var(--color-accent);
  color: var(--color-sub);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: background-color 0.4s ease;
}
.accordion__btn:hover{
  background-color: var(--color-pink);
}
.accordion__btn:not(.is-open):hover .accordion__icon{
  transform: rotate(0deg);
}
.accordion__btn p{
  font-family: var(--font-gpthic2);
  font-size: 18px;
  font-weight: 500;
  padding: 1rem 0;
  letter-spacing: 0.1em;
}

.accordion__content{
  display: none;
}
.accordion__flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.accordion__flex .member__box{
  max-width: 280px;
  max-height: 400px;
  margin: 0 1rem 2rem 1rem;
}
.accordion__flex .memberimg{
  width: 40%;
}

.accordion__icon {
  margin-left: 1rem;
  position: relative;
  width: 18px;
  height: 18px;

  transition: transform 0.3s ease;
}
.accordion__btn:not(.is-open) .accordion__icon {
  transform: rotate(90deg);
}
.accordion__btn:not(.is-open):hover .accordion__icon {
  transform: rotate(0deg);
}
.accordion__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--color-sub);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.accordion__icon span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__btn.is-open .accordion__icon span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.accordion__btn.is-open .accordion__icon {
  transform: rotate(0deg);
}

/*----------------------------------
member モーダル
-----------------------------------*/
.layer {
  position: fixed;
  inset: 0;
  background: #0000004a;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity .4s, visibility .4s, z-index .4s;
}

.layer.is-open {
  opacity: 1;
  visibility: visible;
  z-index: 10000000000000000;
}

.modal {
  pointer-events: none;
  
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.layer.is-open .modal {
  opacity: 1;
  visibility: visible;
}

.modal__inner {
  pointer-events: auto;

  background: var(--color-sub);
  margin: 200px auto;
  width: 80%;
  max-width: 800px;
  border-radius: 12px;
  border: solid 4px var(--color-accent);
  padding: 2rem;
  position: relative;
}

.close-button {
  position: absolute;
  top: -20px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  cursor: pointer;
}

.close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--color-sub);
}

.close-button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__content__ko{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.modal__img{
  width: 40%;
}
.modal__img img{
  aspect-ratio: 5 / 4;
  border-radius: 30px;
}
.morelink a img {
  width: 29px;
  height: 29px;
}
.modal__migi{
  width: 50%;
  font-size: 14px;
}
.modal__migi h2{
  margin: 0;
  line-height: 1;
  color: var(--color-hoketu);
  font-family: var(--font-gpthic2);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.modal__migi div{
  display: flex;
}
.namelink{
  align-items: center;
  gap: 1rem;
}
.morelink a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.morelink img {
  padding: 0;
  width: 24px;
  height: 24px;
}
.modal__hitokoto,
.modal__nouen,
.modal__sakumotu{
  align-content: center;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  gap: 1rem;
  color: var(--color-txt);
  letter-spacing: 0.1em;
  line-height: 23px;
  border-bottom: dashed var(--color-accent) 2px;
}
.modal__migi .material-symbols-outlined{
  padding-right: 1rem;
  color: var(--color-accent);
}
.modal__migi .namelink {
  border-bottom: var(--color-accent) 3px dashed;
  margin-bottom: 1rem;
}
.modal__kotoba{
  width: 90%;
}
.motto,
.prtxt{
  font-size: 18px;
  color: var(--color-accent);
  font-family: var(--font-gpthic2);
  font-weight: 500;
}
.motto{
  padding-top: 1rem;
}
.prtxt{
  font-size: 16px;
}
.motto__ko,
.prtxt__ko{
  font-size: 14px;
  color: var(--color-txt);
  letter-spacing: 0.1em;
  line-height: 23px;
}
.motto__ko{
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  border-bottom: dashed var(--color-accent) 1px;
}
.kome{
  padding-top: 1rem;
  font-size: 10px;
  color: #7d7d7d;
}
.kuuhaku{
  padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .modal__inner{
    margin: 3rem auto;
    padding: 1rem;
  }
  .modal__img{
    height: 20%;
  }
  .modal__migi{
    width: 100%;
    font-size: 14px;
  }
  .modal__hitokoto,
  .modal__nouen,
  .modal__sakumotu{
    margin-bottom: 0.5rem;
    font-size: 14px;
    line-height: 18px;
  }
  .modal__sakumotu{
    margin-bottom: 0;
  }
  .motto,
  .prtxt{
    font-size: 16px;
    padding-top: 0;
  }
  .motto__ko,
  .prtxt__ko{
    font-size: 14px;
    line-height: 18px;
  }
}
/*----------------------------------
reason
-----------------------------------*/
.reason{
  padding-top: 10rem;
  position: relative;
  margin-bottom: 8rem;
}
.carb2{
  z-index: -1;
  position: absolute;
  top: -20rem;
  width: 100%;
  height: 38.5%;
  clip-path: ellipse(60% 30% at 50% 50%);
  background-color: var(--color-hoketu);
}
.carb2 div{
  width: 120%;
}
.reason__ko{
  width: 80%;
  max-width: 1000px;
  margin: auto;
}
.reason__hukidasi{
  padding-bottom: 4rem;
}
.reason__txt{
  margin: 5rem auto 3rem auto;
  text-align: center;
  width: 35%;
  min-width: 300px;
  padding: 0.5rem 1rem;
  background-color: var(--color-main);

  border-radius: 80px;
  position: relative;
}

.reason__txt::before{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  left: 3.5rem;
  bottom: -2rem;
  border-left: 30px solid var(--color-main);
  border-top: 30px solid var(--color-main);
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
.reason__txt::after{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  left: 1rem;
  bottom: -2.5rem;
  border-left: 30px solid var(--color-sub);
  border-top: 30px solid var(--color-sub);
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
.hukidasi__1{
  background-color: var(--color-accent);
  border-radius: 80px;
  position: absolute;
  right: 0;
  bottom: -3.5rem;
  width: 30%;
  padding: 0.5rem 0;
}
.hukidasi__1__ko{
  position: relative;
}
.hukidasi__1__ko::before{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  right: 3%;
  bottom: -1.7rem;
  border-left: 20px solid var(--color-accent);
  border-top: 20px solid var(--color-accent);
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.hukidasi__1__ko::after{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  right: -18%;
  bottom: -2rem;
  border-left: 25px solid var(--color-sub);
  border-top: 25px solid var(--color-sub);
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
.hukidasi__1 span{
  display: inline-block;
  transform: translateX(-0.15em);
  color: var(--color-sub);
  font-size: 35px;
  margin: auto;
  line-height: 100%;
  font-kerning: normal;
  letter-spacing: -0.3em;
}
.reason__txt h2{
  color: var(--color-sub);
  font-size: 24px;
  font-family: var(--font-gpthic2);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.reason__txt p{
  padding-top: 0.5rem;
  color: var(--color-accent);
  font-size: 18px;
  letter-spacing: 0.08em;
  font-family: var(--font-sans-serif);
}
.reason__content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.reason__content div{
  display: inline-block;
  position: relative;
  border-radius: 80px;
  padding: 1.5rem 2.5rem;
  margin: 1rem auto 3rem auto;
}
.reason__content div:nth-of-type(odd){
  margin-left: 0;
  margin-right: auto;
  background-color: var(--color-main);
  color: var(--color-sub);
}
.reason__content div:nth-of-type(odd)::before{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  left: 4rem;
  bottom: -1.5rem;
  border-left: 20px solid var(--color-main);
  border-top: 20px solid var(--color-main);
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  
}
.reason__content div:nth-of-type(odd)::after{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  left: 0.5rem;
  bottom: -2.5rem;
  border-left: 30px solid var(--color-sub);
  border-top: 30px solid var(--color-sub);
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
.reason__content div:nth-of-type(even){
  margin-left: auto;
  margin-right: 0;
  background-color: var(--color-accent);
  color: var(--color-bg);
}
.reason__content div:nth-of-type(even)::before{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  right: 4rem;
  bottom: -1.5rem;
  border-left: 20px solid var(--color-accent);
  border-top: 20px solid var(--color-accent);
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.reason__content div:nth-of-type(even)::after{
  z-index: -1;
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(225deg);
  right: 0.5rem;
  bottom: -2.5rem;
  border-left: 30px solid var(--color-sub);
  border-top: 30px solid var(--color-sub);
  border-right: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
.reason__content p{
  font-size: 16px;
  font-family: var(--font-gpthic);
  letter-spacing: 0.08em;
  transform: translateX(0.3em);
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  .reason{
    padding-top: 15rem;
  }
  .carb2{
    top: -25rem;
  }
  .reason__txt{
    margin: 5rem auto 2rem auto;
  }
}
/* ------------------------------------------------------------------ */
/*----------------------------------
question
-----------------------------------*/
#question {
  padding-top: 10rem;
  padding-bottom: 8rem;
  border-radius: 500px 0 0 0;
  background: radial-gradient(
    circle at 10% 0%,
    var(--color-main) 0%,
    var(--color-main) 55%,
    var(--color-hoketu) 55%,
    var(--color-hoketu) 100%
  );
}
#question {
  position: relative;
  background-color: var(--color-hoketu);
  overflow: hidden;
}

#question::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -10%;
  width: 120%;
  height: 120px;
  background: var(--color-accent);
  border-radius: 50%;
}

.question__ko {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding: 6rem 0;
}

.question__txt {
  text-align: center;
  width: 35%;
  min-width: 300px;
  padding: 0.5rem 1rem 2rem 1rem;
  margin: auto auto 5rem auto;
  background-color: var(--color-sub);
  border-radius: 30px 30px 30px 1000px;
  font-family: var(--font-gpthic2);
  box-shadow: -7px 7px var(--color-accent);
}

.question__txt h2 {
  font-size: 28px;
  color: var(--color-hoketu);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.question__txt p {
  padding-top: 0.5rem;
  color: var(--color-accent);
  font-size: 18px;
  letter-spacing: 0.08em;
  font-family: var(--font-sans-serif);
}

/* -------- FAQ item -------- */

.faq__acco{
  margin-bottom: 1.5rem;
}
.faq__acco-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;

  background-color: var(--color-accent);
  border-radius: 15px 15px 0 0;

  transition: background-color 0.3s ease;
}
.faq__acco-btn:hover{
  background-color: #ff5b6b;
}
.faq__acco-btn p {
  font-family: var(--font-gpthic);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin: 0;
}

.faq__acco__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;

  transition: transform 0.3s ease;
}
.faq__acco-btn:not(.is-open) .faq__acco__icon {
  transform: rotate(90deg);
}
.faq__acco-btn:not(.is-open):hover .faq__acco__icon {
  transform: rotate(0deg);
}
.faq__acco__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: var(--color-sub);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq__acco__icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__acco-btn.is-open .faq__acco__icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__acco-btn.is-open .faq__acco__icon {
  transform: rotate(0deg);
}

.question{
  color: var(--color-sub);
  font-size: 24px;
  font-weight: 600;
  padding-right: 0.8rem;
}
.ansa{
  color: var(--color-pink);
  font-size: 24px;
  font-weight: 600;
  padding-right: 0.8rem;
}
/* -------- Answer -------- */

.faq__acco__content {
  display: none;
  overflow: hidden;
  background-color: var(--color-sub);
  border-radius: 0 0 15px 15px;
}

.faq__acco__content p {
  font-family: var(--font-gpthic);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 1.8rem 2rem;
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  #question{
    padding-top: 8rem;
    border-radius: 150px 0 0 0;
  }
}
/* ------------------------------------------------------------------ */


/*----------------------------------
insutaとか
-----------------------------------*/
.slider-wrap{
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: var(--color-accent);
  position: relative;
  height: 40vh;
}
.triple-slider {
  height: 100%;
  background-color: var(--color-accent);
  position: relative;
  width: 80%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  margin-bottom: 10rem;

  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.agurokka__inst {
  position: absolute;
  top: 50%;   
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-sub);
  text-decoration: none;
  z-index: 10; 
  text-align: center;

  width: 90%;   
  max-width: 600px;
}
.agurokka__inst p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
  white-space: nowrap;
}
.blackborder{
  background-color: #000;
}
.agurokka__inst a{
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .agurokka__inst p {
    font-size: 14px;
  }
}
.insta-btn {
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 50px;
  font-size: 24px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  background-size: 400% 400%;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: background-position 0.5s ease, transform 0.3s ease; 
}
.insta-btn:hover {
  background-position: 100% 0;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .insta-btn {
    font-size: 20px;
  }
}

.v-slider {
  flex: 0 0 33.333%;
  height: 400px;
  overflow: hidden;
}
.v-slider .slick-slide {
  height: 400px !important;
}
.v-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.v-slider--down {
  transform: scaleY(-1);
}

.v-slider--down img {
  transform: scaleY(-1);
}
@media (max-width: 768px) {
  .triple-slider {
    width: 90%;
  }
}
/*----------------------------------
facebook
-----------------------------------*/
.facebook{
  padding-top: 4rem;
  background-color: var(--color-accent);
  display: flex;
  justify-content: center;
}
.face__ko{
  display: inline-block;
}
.facebook a{
  display: flex;
  align-items: center;
}
.facebook img{
  margin-right: 1.5rem;
  width: 24px;
  height: 24px;
}
.face-btn {
  background-color: #fff;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 50px;
  font-size: 24px;
  background-size: 400% 400%;
  color: var(--color-txt);
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: background-position 0.4s ease,transform 0.3s ease; 
}
.face-btn:hover {
  background-color: #e9e9e9;
  transform: scale(1.05);
}
.face-btn p{
  font-size: 18px;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
   .facebook{
    padding-top: 1rem;
  }
}
/*----------------------------------
join
-----------------------------------*/
#join__bg{
  padding-top: 8rem;
  background-color: var(--color-accent);
}
#join{
  background-size: cover;
  background-image: url(../images/subimg/member2.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  height: 70vh;

  border-radius: 30px 30px 0 0;
  overflow: hidden;

  color: var(--color-sub);
}
.join__ko{
  width: 100%;
  height: 100%;
  background-color: #00000073;

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: background-color 0.4s ease;
}
.join__catch,
.join__txt{
  text-align: center;
  width: 100%;
}
.join__catch{
  padding-bottom: 3rem;
}
.join__catch p{
  font-size: 24px;
  font-family: var(--font-gpthic2);
}
.strong{
  font-size: 30px;
}
.deco{
  font-size: 30px;
}
.join__txt{
  height: 40%;
  padding-top: 5rem;
}
.join__txt h2{
  font-size: 35px;
  margin-bottom: 4rem;
  color: var(--color-accent);
}
.touroku{
  height: 100%;
}
.touroku a{
  width: 100%;
}
.form__btn{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 2rem;
}
.kotira__btn p{
  width: 100%;
  font-size: 36px;
  white-space: nowrap;

  transition: transform 0.3s ease;
}
.touroku a:hover .kotira__btn p {
  transform: scale(1.05);
}

.join__border{
  width: 100%;
  padding-bottom: 2rem;
}
.join__border span{
  display: block;
  height: 2px;
  background-color: var(--color-sub);
}
.kotira__btn .material-symbols-outlined{
  visibility: hidden;
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  .join__catch{
    font-size: 18px;
  }
  .strong,
  .deco{
    font-size: 24px;
  }
  .join__txt{
    padding-top: 1rem;
  }
  .join__txt h2{
    margin-bottom: 1rem;
    font-size: 24px;
  }
  .form__btn{
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .kotira__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 1.5rem;
    border: 1px solid var(--color-sub);
    border-radius: 50px;
  }
  .form__btn p{
    font-size: 24px;
  }
  .join__border{
    display: none;
  }
  .form__btn .material-symbols-outlined{
    margin: auto;
    font-size: 25px;
    margin-left: 1rem;
    visibility: visible;
  }
}
/* ---------------------------------------------------------------- */
/*----------------------------------
contact
-----------------------------------*/
#contact{
  background-color: var(--color-sub);
  padding-top: 13rem;
}
#contact {
  position: relative;
  overflow: hidden;
}
#contact::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -10%;
  width: 120%;
  height: 120px;
  background: var(--color-accent);
  border-radius: 50%;
  transform: scaleY(-1);
}
.contact__ko{
  width: 80%;
  max-width: 750px;
  margin: auto;
  text-align: center;
}
.contact__txt{
  width: 35%;
  min-width: 300px;
  padding: 1rem 1rem 2rem 1rem;
  margin: auto auto 4rem auto;
  background-color: var(--color-main);
  border-radius: 30px 30px 30px 1000px;
  font-family: var(--font-gpthic2);
  box-shadow: -7px 7px var(--color-accent);
}
.contact__txt h2{
  color: var(--color-sub);
  font-size: 24px;
  font-family: var(--font-gpthic2);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.explain{
  color: var(--color-txt);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.1em;
}
.border__form{
  border-bottom: dashed var(--color-accent) 2px;
  padding-bottom: 0.3em;
  font-weight: 600;
}
.hissu__txt{
  background-color: #ff5b6b;
  font-size: 12px;
  font-weight: normal;
  padding: 0.3rem 1rem;
  margin-right: 0.5rem;
  border-radius: 50px;
  color: var(--color-bg);
}
.contact__txt p{
  color: var(--color-accent);
  padding-top: 0.5rem;
  font-size: 18px;
  letter-spacing: 0.08em;
  font-family: var(--font-sans-serif);
}
form{
  margin-top: 4rem;
}
.contact__form dl{
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.contact__form dt{
  width: 30%;
  font-size: 16px;
  padding: 1.5rem 0 1.5rem 0;
  font-family: var(--font-gpthic);
  text-align: left;
  letter-spacing: 0.08em;
}
.hissu,
.nini{
  background-color: var(--color-pink);
  font-size: 12px;
  padding: 0.3rem 1rem;
  margin-right: 2rem;
  border-radius: 50px;
  color: var(--color-bg);
}
.nini{
  background-color: #8d8d8d;
}
.contact__form dd{
  width: 60%;
  text-align: left;
}
.contact__form input{
  width: 100%;
}
input[type = "text"],
input[type = "email"],
input[type = "tel"],
textarea{
  font-family: var(--font-gpthic);
  letter-spacing: 0.1em;
  font-size: 16px;
  width: 100%;
  padding: 1.5rem;
  border: solid 1px #a2a2a2;
  border-radius: 10px;
}
.sousin__btn{
  width: 30%;
  min-width: 180px;
  padding: 1.5rem;
  margin: 4rem auto auto auto;
  border: none;
  font-size: 16px;
  letter-spacing: 0.15em;
  background-color: var(--color-main);
  color: var(--color-sub);
  border-radius: 30px;

  display: flex;
  justify-content: center;

  transition: background-color 0.4s ease;
}
.sousin__btn .material-symbols-outlined{
  padding-left: 0.5rem;
  font-size: 24px;
  transition: transform 0.4s ease;
}
.sousin__btn:hover{
  background-color: var(--color-accent);
}
.sousin__btn:hover .material-symbols-outlined{
  transform: translateX(4px);
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  .contact__form dl{
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .nini,
  .hissu{
    margin-right: 1rem;
  }
  .contact__form dt{
    width: 100%;
  }
  .contact__form dd{
    width: 100%;
  }
  .sousin__btn{
    margin-top: 3rem;
  }
}
/* ------------------------------------------------------------------ */
/*----------------------------------
footer
-----------------------------------*/
footer{
  position: relative;
  margin-top: 15rem;
  height: 30vh;
  background: radial-gradient(
    circle at 50% 0%,
    var(--color-sub) 0%,
    var(--color-sub) 80%,
    var(--color-main) 80%,
    var(--color-main) 100%
  );
}
.footer__logo{
  margin: auto;
  max-width: 15rem;
}
.footer__logo img{
  max-width: 100%;
  height: auto;
}
.footer__nav__list{
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  font-size: 16px;
  color: var(--color-main);
  font-weight: 600;
}
.bg__end{
  height: 100%;
  width: 100%;
  background-color: var(--color-sub);
  border-radius: 0 0 100px 100px;
}
.top__back__btn {
  position: absolute;
  left: 20%;
  bottom: 0;
  padding: 3rem 2rem 1rem 2rem;
  font-size: 14px;
  background-color: var(--color-main);
  color: #fff;
  text-decoration: none;
  border-radius: 30px 30px 0 0;
  z-index: 9999;
}
.top__back__btn span {
  display: inline-block;
  transition: transform 0.3s ease;
  letter-spacing: 0.1em;
}

.top__back__btn:hover span {
  transform: translateY(-6px);
}
.green{
  height: 10%;
  width: 100%;
  background-color: var(--color-main);
}
/* ------------------------------sumaho------------------------------ */
@media (max-width: 768px){
  .footer__nav__list{
    flex-direction: column;
  }
  .top__back__btn{
    left: 0;
    padding: 2rem 1.5rem;
  }
}
/* ------------------------------------------------------------------ */