@charset "UTF-8";
.appear.up .item {
  transform: translateY(30px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 2s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.rotate3D {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 0.8s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.rotate3D.inview {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
}

.animate-txt .char {
  opacity: 0;
  transform: translateY(-10px);
}

.animate-txt.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-txt.inview .char:nth-child(1) {
  animation-delay: 0.54s;
}
.animate-txt.inview .char:nth-child(2) {
  animation-delay: 0.58s;
}
.animate-txt.inview .char:nth-child(3) {
  animation-delay: 0.62s;
}
.animate-txt.inview .char:nth-child(4) {
  animation-delay: 0.66s;
}
.animate-txt.inview .char:nth-child(5) {
  animation-delay: 0.7s;
}
.animate-txt.inview .char:nth-child(6) {
  animation-delay: 0.74s;
}
.animate-txt.inview .char:nth-child(7) {
  animation-delay: 0.78s;
}
.animate-txt.inview .char:nth-child(8) {
  animation-delay: 0.82s;
}
.animate-txt.inview .char:nth-child(9) {
  animation-delay: 0.86s;
}
.animate-txt.inview .char:nth-child(10) {
  animation-delay: 0.9s;
}
.animate-txt.inview .char:nth-child(11) {
  animation-delay: 0.94s;
}
.animate-txt.inview .char:nth-child(12) {
  animation-delay: 0.98s;
}
.animate-txt.inview .char:nth-child(13) {
  animation-delay: 1.02s;
}
.animate-txt.inview .char:nth-child(14) {
  animation-delay: 1.06s;
}
.animate-txt.inview .char:nth-child(15) {
  animation-delay: 1.1s;
}
.animate-txt.inview .char:nth-child(16) {
  animation-delay: 1.14s;
}
.animate-txt.inview .char:nth-child(17) {
  animation-delay: 1.18s;
}
.animate-txt.inview .char:nth-child(18) {
  animation-delay: 1.22s;
}
.animate-txt.inview .char:nth-child(19) {
  animation-delay: 1.26s;
}
.animate-txt.inview .char:nth-child(20) {
  animation-delay: 1.3s;
}
.animate-txt.inview .char:nth-child(21) {
  animation-delay: 1.34s;
}
.animate-txt.inview .char:nth-child(22) {
  animation-delay: 1.38s;
}
.animate-txt.inview .char:nth-child(23) {
  animation-delay: 1.42s;
}
.animate-txt.inview .char:nth-child(24) {
  animation-delay: 1.46s;
}
.animate-txt.inview .char:nth-child(25) {
  animation-delay: 1.5s;
}
.animate-txt.inview .char:nth-child(26) {
  animation-delay: 1.54s;
}
.animate-txt.inview .char:nth-child(27) {
  animation-delay: 1.58s;
}
.animate-txt.inview .char:nth-child(28) {
  animation-delay: 1.62s;
}
.animate-txt.inview .char:nth-child(29) {
  animation-delay: 1.66s;
}
.animate-txt.inview .char:nth-child(30) {
  animation-delay: 1.7s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

::-webkit-scrollbar {
  width: 8px;
  background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  background: #b4b4b4;
  border-radius: 5px;
}

html,
body {
  height: 100%;
  margin: 0;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  overflow-x: clip;
}

body {
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #333;
  overflow-x: clip;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
}

.section_content {
  padding: 220px 0;
}
@media screen and (max-width: 960px) {
  .section_content {
    padding: 30vw 0;
  }
}

.first {
  padding-top: 80px;
}
@media screen and (max-width: 960px) {
  .first {
    padding-top: 40px;
  }
}

#loading {
  transition: all 1s; /*ローディングにかかる時間*/
  background-color: white;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #00CBA4;
  border-right-color: #00CBA4;
  border-bottom-color: #00CBA4;
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.5s all;
}

.border {
  text-decoration: underline;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.global-ttlWrap {
  text-align: center;
}

.global-ttl {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  display: inline-block;
  font-weight: 600;
}
.global-ttl span {
  display: block;
  font-size: clamp(3.4rem, 3.031rem + 1.64vw, 5rem);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1rem;
}
.global-ttl._green {
  color: #00CBA4;
}
.global-ttl._green span {
  border-bottom: 1px solid #00CBA4;
}
.global-ttl._orange {
  color: #FFA500;
}
.global-ttl._orange span {
  border-bottom: 1px solid #FFA500;
}

.inner {
  width: min(950px, 90%);
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.mv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh;
  min-height: 850px;
  text-align: center;
}
.mv::before {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(71, 173, 164, 0) 0%, rgba(71, 173, 164, 0.6) 100%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 960px) {
  .mv::before {
    width: 0;
  }
}
@media screen and (max-width: 960px) {
  .mv {
    height: 100svh;
    min-height: auto;
  }
}

.top_btm {
  position: absolute;
  z-index: 2;
  width: 100vw;
  aspect-ratio: 192/35;
  left: 0;
  bottom: -1px;
}
.top_btm img {
  width: 100%;
}

.mv-bg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .mv-bg {
    flex-direction: column;
    align-items: stretch;
  }
  .mv-bg ._bottom {
    height: 40%;
    display: flex;
  }
  .mv-bg ._bottom .mv-bg_img {
    width: 50%;
  }
}

.mv-bg_img {
  width: 33.3333333333%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .mv-bg_img._center {
    width: 100%;
    height: 60%;
  }
}
.mv-bg_img span {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.mv-bg_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

@media screen and (max-width: 960px) {
  .catch {
    position: relative;
  }
  .catch::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 150%;
    background: linear-gradient(180deg, rgba(0, 100, 95, 0) 0%, rgba(0, 100, 95, 0.1) 10%, rgba(0, 100, 95, 0.3) 50%, rgba(0, 100, 95, 0.25) 80%, rgba(0, 100, 95, 0) 100%);
  }
}

.catch_box {
  position: absolute;
  z-index: 2;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .catch_box {
    top: 55%;
    bottom: auto;
    transform: translateY(-55%);
  }
}
.catch_box .flex {
  justify-content: center;
  align-items: center;
  margin-right: 10%;
}
@media screen and (max-width: 960px) {
  .catch_box .flex {
    flex-direction: row;
    margin-right: 0;
  }
}
.catch_box ._1 {
  position: relative;
  display: inline-block;
  width: min(500px, 70vw);
}
.catch_box ._2 {
  width: min(100px, 10vw);
  margin-left: 2rem;
  filter: drop-shadow(0px 3px 15px rgba(0, 100, 95, 0.5)) drop-shadow(0px 3px 15px rgba(0, 100, 95, 0.6));
}
.catch_box ._3 {
  display: inline-block;
  width: min(970px, 60vw);
  margin: 1.5rem 0 0 12%;
  filter: drop-shadow(0px 3px 15px rgba(0, 100, 95, 0.3)) drop-shadow(0px 3px 25px rgba(0, 100, 95, 0.6));
}
@media screen and (max-width: 960px) {
  .catch_box ._3 {
    width: 70%;
    margin: 1rem 0 0;
    filter: none;
  }
  .catch_box ._3 img {
    width: 100%;
  }
}
.catch_box ._highlight {
  display: inline-block;
  z-index: -1;
  line-height: 0;
  position: relative;
}
.catch_box ._highlight::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 65%;
  background: white;
}

.about {
  contain: layout inline-size;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .about {
    margin-bottom: 10vw;
  }
}
.about::before, .about::after {
  position: absolute;
  content: "";
  width: 40vw;
  aspect-ratio: 1/1;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .about::before, .about::after {
    width: 100vw;
  }
}
.about::before {
  background: url(../images/oval_orange.svg) no-repeat center/contain;
  left: -15%;
  top: -30%;
}
@media screen and (max-width: 960px) {
  .about::before {
    top: -10%;
    left: -50%;
  }
}
.about::after {
  background: url(../images/oval_green.svg) no-repeat center/contain;
  right: -15%;
  bottom: -10%;
}
@media screen and (max-width: 960px) {
  .about::after {
    bottom: -10%;
    right: -50%;
    overflow: hidden;
  }
}

.about-ttl {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .about-ttl {
    margin-bottom: 3rem;
  }
}
.about-ttl span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 2.662rem + 0.62vw, 3.4rem);
  letter-spacing: 0.1rem;
  color: #00CBA4;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #00CBA4;
}

.about-txt {
  font-size: clamp(1.5rem, 1.431rem + 0.31vw, 1.8rem);
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .about-txt {
    text-align: left;
  }
}

.l_img,
.r_img {
  display: inline-block;
  position: absolute;
  top: -170px;
}
@media screen and (max-width: 960px) {
  .l_img,
  .r_img {
    width: 80vw;
    top: -20vw;
  }
}

.r_img {
  right: 0;
}

.l_img {
  left: 0;
}

.pickup {
  position: relative;
  background: #FFFDED;
}
@media screen and (max-width: 960px) {
  .pickup {
    padding-bottom: 40vw;
  }
}
@media screen and (max-width: 600px) {
  .pickup .global-ttl {
    margin-top: 2rem;
  }
}

.pickup_list {
  margin-top: 6rem;
  margin-bottom: 5rem;
  display: flex;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", serif;
  margin-left: -40px;
}
@media screen and (max-width: 600px) {
  .pickup_list {
    width: min(300px, 75%);
    margin: 3rem auto 1.5rem;
  }
}
.pickup_list li {
  width: calc(33.3333333333% - 40px);
  margin-left: 40px;
}
@media screen and (max-width: 600px) {
  .pickup_list li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.pickup_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pickup_list a img {
  transition: 0.3s all;
}
.pickup_list a:hover .pickup_list-ttl,
.pickup_list a:hover .pickup_list-date {
  opacity: 0.5;
}
.pickup_list a:hover img {
  transform: scale(1.15);
}

.pickup_list-ttl,
.pickup_list-date {
  transition: 0.3s all;
}

.pickup_list-img {
  background: white;
  border-radius: 15px;
  overflow: hidden;
}
.pickup_list-img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  width: 100%;
}

.pickup_list-ttl {
  color: #00CBA4;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
@media screen and (max-width: 960px) {
  .pickup_list-ttl {
    margin: 1.5rem 0 0.5rem;
  }
}

.pickup_list-date {
  padding-top: 1.5rem;
  border-top: 1px solid #00CBA4;
  margin-top: auto;
  font-size: 1.4rem;
  text-align: right;
  font-weight: 400;
  color: #333;
}

.more-btn {
  text-align: center;
  transition: 0.3s all;
}
.more-btn a {
  font-size: clamp(1.8rem, 1.754rem + 0.21vw, 2rem);
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  position: relative;
  color: white;
  background: #00CBA4;
  padding: 1.25rem 6rem 1.25rem 4rem;
  border-radius: 50px;
}
.more-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows.svg) no-repeat center/contain;
  width: 0.75em;
  height: 0.75em;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}
.more-btn a:hover {
  opacity: 0.5;
}
.more-btn a:hover::before {
  right: 0.75em;
}

.flow {
  position: relative;
}
@media screen and (max-width: 960px) {
  .flow {
    padding-bottom: 15vw;
  }
}

.flow_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6rem;
  margin-left: -40px;
}
@media screen and (max-width: 960px) {
  .flow_list {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .flow_list {
    width: min(340px, 80%);
    margin: 3rem auto;
  }
}
.flow_list li {
  width: calc(33.3333333333% - 40px);
  margin-left: 40px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .flow_list li {
    width: calc(50% - 40px);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .flow_list li {
    width: 100%;
    margin-left: 0;
  }
}
.flow_list li::before {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50px;
  background: #FFA500;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2.8rem, 2.615rem + 0.82vw, 3.6rem);
}
@media screen and (max-width: 600px) {
  .flow_list li::before {
    width: 5rem;
    height: 5rem;
  }
}
.flow_list li._01::before {
  content: "1";
}
.flow_list li._02::before {
  content: "2";
}
.flow_list li._03::before {
  content: "3";
}

@media screen and (max-width: 960px) {
  .flow_img {
    width: 90%;
    margin: 0 auto;
  }
}
.flow_img img {
  width: 100%;
}

.flow-ttl {
  margin: 3rem 0 1.5rem;
  font-size: clamp(2rem, 1.862rem + 0.62vw, 2.6rem);
  font-weight: 500;
  padding: 0.5rem;
  border: 1px solid #FFA500;
  border-radius: 50px;
  color: #FFA500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .flow-ttl {
    margin: 2rem 0 1.25rem;
  }
}

.flow-txt {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}
.flow-txt span {
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  .flow-txt span {
    margin-bottom: 0.5rem;
  }
}
.flow-txt ._bold {
  font-size: clamp(1.8rem, 1.754rem + 0.21vw, 2rem);
  color: #FFA500;
  font-weight: 600;
}
.flow-txt ._subat {
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}

.voice {
  padding: 0 0 120px;
  margin-top: 5vw;
  position: relative;
  background: #FFFDED;
}
@media screen and (max-width: 960px) {
  .voice {
    margin-top: 0;
    padding: 2rem 0 60px;
  }
}
.voice::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/bg_top01.svg) no-repeat center/contain;
  aspect-ratio: 640/57;
  top: calc(-57 / 640 * 100vw);
  width: 100vw;
}

.voice_list {
  margin-top: 40px;
}
.voice_list li {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  position: relative;
  background: white;
  display: flex;
  align-items: center;
  padding: 5rem;
  border-radius: 25px;
  margin-bottom: 6rem;
  filter: drop-shadow(3px 3px 3px rgb(247, 235, 193));
}
@media screen and (max-width: 960px) {
  .voice_list li {
    padding: 3rem;
    flex-direction: column;
    margin-bottom: 5rem;
  }
}
.voice_list li::before {
  position: absolute;
  content: "";
  background: white;
  height: 20px;
  width: 20px;
  bottom: -10px;
  transform: translateX(-50%) rotate(45deg);
  left: 50%;
  border-radius: 0;
}

.voice_img_box {
  width: 20%;
  text-align: center;
  margin-right: 4rem;
}
@media screen and (max-width: 960px) {
  .voice_img_box {
    width: 300px;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}

.voice_img {
  display: inline-block;
}

.voice_age {
  margin-top: 0.25rem;
}

.voice_comment {
  flex: 1;
  font-size: clamp(1.5rem, 1.431rem + 0.31vw, 1.8rem);
  line-height: 1.8;
}
.voice_comment span {
  font-weight: 600;
  color: #FFA500;
}

.img_list {
  display: flex;
  height: 500px;
}
@media screen and (max-width: 960px) {
  .img_list {
    height: 50vw;
  }
}
.img_list li {
  position: relative;
  width: 50%;
}
.img_list li span {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.img_list li img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.qa {
  padding: 0 0 140px;
  background: #FFFDED;
}
@media screen and (max-width: 960px) {
  .qa {
    padding: 0 0 80px;
  }
}

.qa_box {
  outline: 5px solid white;
  border: 1px solid #00CBA4;
  position: relative;
  margin-top: -5%;
  background: white;
  padding: 6rem 10rem;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 960px) {
  .qa_box {
    padding: 3rem 4rem;
  }
}
@media screen and (max-width: 600px) {
  .qa_box {
    padding: 3rem 1.5rem;
  }
}

.qa_list {
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  margin-top: 4rem;
}
.qa_list dt,
.qa_list dd {
  display: flex;
  align-items: flex-start;
}
.qa_list dt span,
.qa_list dd span {
  flex: 1;
  padding: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .qa_list dt span,
  .qa_list dd span {
    line-height: 1.5;
  }
}
.qa_list dt::before,
.qa_list dd::before {
  font-family: "Noto Serif JP", serif;
  margin-right: 1rem;
  width: 1.75em;
  height: 1.75em;
  font-size: clamp(2.2rem, 2.108rem + 0.41vw, 2.6rem);
  border-radius: 50px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.5rem;
}
.qa_list dt {
  margin-bottom: 1rem;
}
.qa_list dt::before {
  content: "Q";
  background: #00CBA4;
  color: white;
}
.qa_list dd {
  margin-bottom: 3rem;
}
.qa_list dd span {
  background: #F2FDFA;
}
.qa_list dd::before {
  content: "A";
  background: #F2FDFA;
  border: 1px solid #00CBA4;
  color: #00CBA4;
}

.outline {
  position: relative;
  background: #FFFDED;
  padding-bottom: 20vw;
}
@media screen and (max-width: 960px) {
  .outline {
    padding-bottom: 30vw;
  }
}
.outline::before {
  position: absolute;
  content: "";
  background: url(../images/bg_top02.svg) no-repeat center/contain;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 640/57;
  width: 100vw;
}

.outline_list {
  margin: 5rem 0 8rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
}
.outline_list .sub-txt {
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  .outline_list {
    margin: 3rem 0 6rem;
    font-size: 1.4rem;
  }
}
.outline_list dt,
.outline_list dd {
  padding: 2rem 0;
  border-bottom: 1px solid #b4b4b4;
}
.outline_list dt {
  width: calc(20% - 5rem);
  margin-right: 5rem;
}
@media screen and (max-width: 600px) {
  .outline_list dt {
    width: calc(35% - 1.5rem);
    margin-right: 1.5rem;
  }
}
.outline_list dd {
  width: 80%;
}
@media screen and (max-width: 600px) {
  .outline_list dd {
    width: 65%;
  }
}

.profile {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  padding: 6rem;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 960px) {
  .profile {
    padding: 3rem;
    flex-direction: column-reverse;
  }
}
.profile .l_box {
  width: 60%;
  margin-right: 5rem;
}
@media screen and (max-width: 960px) {
  .profile .l_box {
    width: 100%;
    margin-right: 0;
    margin-top: 3rem;
  }
}
.profile .r_box {
  width: 40%;
}
@media screen and (max-width: 960px) {
  .profile .r_box {
    width: min(350px, 90%);
    margin: 0 auto;
  }
}

.profile-ttl {
  font-size: clamp(2.2rem, 2.015rem + 0.82vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  border: 1px solid #333;
  border-radius: 50px;
  display: inline-block;
  padding: 0 4rem;
  margin-bottom: 2rem;
}

.profile-name {
  font-size: clamp(3rem, 2.769rem + 1.03vw, 4rem);
  margin-bottom: 1rem;
}
.profile-name small {
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
}
.profile-name span {
  font-size: 1.6rem;
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: 0.1rem;
  margin-left: 1em;
}
@media screen and (max-width: 600px) {
  .profile-name span {
    display: block;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}

.profile-role {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-weight: 400;
  border-bottom: 1px solid #b4b4b4;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.profile-description {
  line-height: 1.8;
}
.profile-description:not(:last-of-type) {
  margin-bottom: 2rem;
}

.form .sub-txt {
  margin: 3rem 0;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.8;
  color: #00CBA4;
}

.form-table {
  margin: 60px 0 0;
  font-family: "Noto Sans JP", serif;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .form-table {
    margin: 30px 0 0;
  }
}
.form-table .form-header {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 0.5em;
}
.form-table .form-header::before {
  content: "●";
  color: #00CBA4;
  margin-right: 0.25rem;
}
@media screen and (max-width: 600px) {
  .form-table .form-header {
    line-height: 1.5;
  }
}
.form-table .form-select {
  width: 200px;
  border-radius: 0;
  height: 3em;
  border: 1px solid #b4b4b4;
  color: #00CBA4;
  padding: 0 1em;
}
.form-table .form-select:focus {
  outline: none;
}
.form-table .form-data {
  display: block;
  margin-bottom: 3rem;
}
.form-table .form-data input,
.form-table .form-data textarea {
  border: 1px solid #b4b4b4;
  width: 100%;
  font-weight: 400;
  border-radius: 5px;
}
.form-table .form-data input[type=text]::-moz-placeholder, .form-table .form-data textarea::-moz-placeholder {
  color: #b4b4b4;
}
.form-table .form-data input[type=text]::placeholder,
.form-table .form-data textarea::placeholder {
  color: #b4b4b4;
}
.form-table .form-data input[type=text] {
  height: 3em;
  padding: 0 1em;
}
.form-table .form-data label {
  display: inline-block;
  cursor: pointer;
}
.form-table .form-data textarea {
  height: 200px;
  padding: 1em;
}
.form-table .required {
  font-size: clamp(1.2rem, 1.154rem + 0.21vw, 1.4rem);
  color: white;
  background: #FFA500;
  border-radius: 50px;
  padding: 0 8px;
  margin-left: 0.5em;
}

.input-btn_area {
  text-align: center;
}

.input-btn {
  max-width: 100%;
  display: block;
  position: relative;
  transition: 0.3s all;
}
.input-btn input {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  letter-spacing: 0.1rem;
  padding: 1em 0;
  width: 260px;
  max-width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}
.input-btn._submit input {
  color: white;
  background: #00CBA4;
}
.input-btn._back {
  margin-top: 1.5rem;
}
.input-btn._back input {
  background: white;
  color: #333;
  border: 1px solid #333;
}
.input-btn:hover {
  opacity: 0.6;
}
.input-btn::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
}

.privacy_boxWrap {
  position: relative;
  border-radius: 5px;
}
.privacy_boxWrap::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
}

.privacy_box {
  height: 150px;
  overflow-y: scroll;
  border: 1px solid #b4b4b4;
  border-radius: 5px;
  padding: 1rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}

.privacy-ttl {
  color: #00CBA4;
  margin-bottom: 0.5rem;
}

.privacy-txt {
  font-size: 1.3rem;
}
.privacy-txt span {
  color: #00CBA4;
  display: block;
  font-weight: 500;
  margin: 1rem 0 0.25rem;
}
.privacy-txt strong {
  font-weight: 400;
  display: block;
  margin: 1rem 0;
}

.header {
  position: fixed;
  top: 2%;
  left: 0;
  right: 0;
  width: 95%;
  max-width: 100%;
  margin: auto;
  height: 80px;
  z-index: 10000;
  background: white;
  border-radius: 15px;
  box-shadow: 2px 2px 10px rgba(0, 100, 95, 0.05);
}
@media screen and (max-width: 960px) {
  .header {
    height: 60px;
  }
}

.head-inner {
  width: 95%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo {
  line-height: 0;
}
.logo a {
  display: inline-block;
  width: min(320px, 25vw);
}
@media screen and (max-width: 960px) {
  .logo a {
    width: 220px;
  }
}

.g-nav-list ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}
.g-nav-list ul ._item {
  margin: 0.5em 0 0.5em 2vw;
}
.g-nav-list ul ._item a {
  position: relative;
  color: #00CBA4;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.g-nav-list ul ._item a::after {
  height: 1px;
  width: 100%;
  background: #00CBA4;
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  transform: scaleX(0);
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .g-nav-list ul ._item a::after {
    display: none;
  }
}
.g-nav-list ul ._item a:hover::after {
  transform: scaleX(1);
}
@media screen and (max-width: 960px) {
  .g-nav-list ul ._item a {
    color: #333;
  }
}

@media screen and (max-width: 960px) {
  .toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 2rem;
    cursor: pointer;
    width: 25px;
    height: 20px;
  }
  .toggle span {
    display: inline-block;
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: absolute;
    left: 0;
    height: 3px;
    border-radius: 3px;
    background: #00CBA4;
    width: 100%;
  }
  .toggle span:nth-of-type(1) {
    top: 0;
  }
  .toggle span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .toggle span:nth-of-type(3) {
    bottom: 0;
  }
  .toggle .openbtn-area {
    transition: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .toggle.active .openbtn-area span:nth-of-type(1) {
    transform: translateY(8.5px) rotate(-45deg);
  }
  .toggle.active .openbtn-area span:nth-of-type(2) {
    opacity: 0;
  }
  .toggle.active .openbtn-area span:nth-of-type(3) {
    transform: translateY(-8.5px) rotate(45deg);
  }
  .g-nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    top: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s all;
    overflow: hidden;
    visibility: hidden;
    background: rgba(0, 203, 164, 0.2);
    backdrop-filter: blur(3px);
  }
  .g-nav.panelactive {
    opacity: 1;
    visibility: visible;
  }
  .g-nav .g-nav_wrap {
    position: fixed;
    right: 0;
    z-index: 999;
    width: 80%;
    background: white;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 60px 20px 20px;
  }
  /*ナビゲーション*/
  .g-nav-list ul {
    width: 100%;
    flex-direction: column;
  }
  .g-nav-list ul li {
    width: 100%;
    margin: 0;
  }
  .g-nav-list ul li a {
    position: relative;
    text-decoration: none;
    padding: 0.75em 1em;
    display: block;
    letter-spacing: 0.1em;
    font-size: min(1.6rem, 4.5vw);
    font-weight: 500;
    text-align: left;
  }
}
.footer {
  background: white;
  color: #333;
  text-align: center;
  padding: 40px 0 20px;
}
.footer a:hover {
  opacity: 0.5;
}

.foot-logo {
  width: 500px;
  max-width: 100%;
  margin: 1.5rem auto 2rem;
}
.foot-logo img {
  width: 100%;
}

.backtotop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop a {
  transition: 0.5s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
}

.backtotop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #00CBA4;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  margin-top: 3rem;
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
}/*# sourceMappingURL=style.css.map */