@charset "UTF-8";
html {
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
  font-family: 'Zen Kaku Gothic New', 'Quicksand', sans-serif;
  color: var(--black);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: var(--black);
  display: inline-block;
  transition:all 0.3s ease ;
}
a:active{
  opacity: 0.8;

}


ul {
  list-style: none;
}
.sp-only {
  display: block;
}
.pc-only{
  display: none;
}

/** -----------------------------------
    変数
-------------------------------------**/
:root {
  --black: #333;
  --green: #00c4a3;
  --green2:#e5f9f6;
  --green3:#24B092;
  --pink: #ff99a7;
  --pink2:#fff5f6;
  --pink3:#FB7B8C;
  --yellow: #fffcf2;
  --gray: #999999;
  --gray2:#dddddd;
  --gray3:#acacac;
  --gray4:#b8b8b8;
  --white: #fff;
  --red:#eb585d;
  --blue:#eff1f2;
  --blue2:#27AED6;
  --main-font: "Zen Kaku Gothic New", sans-serif;
  --font: "Quicksand", sans-serif;
  --font2: "Montserrat", sans-serif;
  --section-margin-sp: 40px;
  --section-margin-pc: 50px;

}

/** -------- レスポンシブ -------- **/

@media all and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
  a:hover{
    opacity: 0.8;
  }
  a.link-scale:hover{
    opacity: 1;
    transform: scale(1.05);
  }
  .sp-only {
    display: none;
  }
  .pc-only{
    display: inline-block;
  }
}

/** -----------------------------------
    レイアウト
-------------------------------------**/

.wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 5%;
}

section {
  margin-bottom: var(--section-margin-sp);
}



a.link-pink {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.8rem;
  
}


.pink-circle-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
a.link-pink .pink-circle{
  background-color: var(--pink);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height:40px;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  top:0;
  left:0;
  
}
a.link-pink img{
  width: 15px;
  position: absolute;
  top:15px;
  left:12px;
}
a.link-pink .pink-text {
  transition: all 0.3s;

}
a.link-pink:active {
  opacity: 1;
}
a.link-pink:active .pink-text {
  color: var(--pink);

}


a.link-pink:active .pink-circle{
  transform: scale(1.05);
}
a.link-pink:active img {
  transform: scale(1); 
}


.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.popin {
  opacity: 0;
  transform: scale(0.8);
}

.popin.is-active {
  opacity: 1;
  animation: popIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.1); 
  }
  100% {
    transform: scale(1); 
  }
}
.popin-main {
  opacity: 0;
  transform: scale(0.8);
}

.popin-main.is-active {
  opacity: 1;
  animation: popIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.1); 
  }
  100% {
    transform: scale(1); 
  }
}
.popin-footer {
  opacity: 0;
  transform: scale(0.8);
}

.popin-footer.is-active {
  opacity: 1;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.1); 
  }
  100% {
    transform: scale(1);   
  }
}


/* spotアイコン */

.spot{
  background-color: var(--blue2);
  color:var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
  border-radius: 20px;
  position: relative;
  padding: 3px 10px;
}
.spot img{
  position: absolute;
  top:-5px;
  right:-5px;
  width: 8px;
}

/* recruit&contactボタン */


.top-main-btn-pc {
  display: none;
}
.top-main-btn ul{
  display: flex;
  align-items: center;
  gap:10px;
}


.top-main-btn li{
  
  text-align: center;
  font-weight: 700;


}
.top-main-btn a{
  width: 200px;
  border-radius: 15px 0 15px 15px;
  position: relative;
  color: var(--white);
  display: block;
  padding-bottom: 15px;
  padding-top: 5px;
  will-change: transform;



}





.navi .top-main-btn{
  margin-bottom: 10px;
  padding-inline: 10px;
}
.navi .top-main-btn a{
  width: 160px;
  color: var(--white);
  padding: 5px 0 15px 0;
}
.top-main-btn li .en{
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
  font-family: var(--font2);

}
.top-main-btn li .ja{
  font-size: 1.4rem;
  letter-spacing: 0.1rem;

}
.navi .top-main-btn li .en{
  font-size: 2.4rem;
}
.navi .top-main-btn li .ja{
  font-size: 1.2rem;
}

.top-main-btn .box{
  position: absolute;
  top:0;
  right:0;
  z-index: 1;
  width: 20px;
  height:20px;
  border-radius: 0 0 0 10px;

}

.top-main-btn .small-arrow{
  width: 10px;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  z-index: 2;

}

.top-main-btn-recruit .box{
  background-color: var(--green3);
}
.top-main-btn li.top-main-btn-recruit a{
  background-color: var(--green);
}
.top-main-btn-contact .box{
  background-color: var(--pink3);
}
.top-main-btn li.top-main-btn-contact a{
  background-color: var(--pink);
}
.top-main-btn a:active{
  opacity: 1;
  transform: scale(1.05);
}
@media all and (min-width: 750px){
  .top-main-btn-pc {
    position: fixed;
    right: 2%;
    bottom: 20px;
    z-index: 100;
    display: block;
  }
  .top-main-btn a:hover{
    opacity: 1;
    transform: scale(1.05);
  }

}



/* メインビジュアル */
.mainvisual{
  position: relative;
  height: auto;
  text-align: center;
  z-index:-1;
}
.mainvisual-text{
  text-align: left;
}


.illust-animation img{
  width: 50px;
  position: relative;
  z-index: -1;
}
.illust-animation .illust-pink-2{
  position: absolute;
  top:0;
  left:5%;
  z-index: 5;

}
.illust-animation .illust-yellowgreen{
  position: absolute;
  top:-5%;
  right:5%;
  z-index: 5;

}

.illust-animation .illust-yellow-t{
  position: absolute;
  top:50%;
  left:3%;
  z-index: 5;

}
.illust-animation-sub img{
  width: 50px;
}
.illust-animation-sub .illust-pink-2{
  position: absolute;
  top:80px;
  left:5%;
  z-index: -1;

}
.illust-animation-sub .illust-yellowgreen{
  position: absolute;
  top:280px;
  right:0;
  z-index: -1;

}

.illust-animation-sub .illust-yellow-t2{
  position: absolute;
  top:200px;
  left:0;
  z-index: -1;

}

.to-top {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background-color: #5f5957;
  border-radius: 50%;
  opacity:0;
  transition:all 0.3s ease ;
  pointer-events: none;
  
}
.to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
.to-top:active{
  opacity: 0.8;

}


  

.to-top img{
  position: absolute;
  width:15px;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%) rotate(-90deg);
}



/* instagram */

.instagram {
  position: relative;
  /* 仮で高さ入れました */
  height: 500px;
}
.instagram .illust {
  width: 150px;
  position: absolute;
  top: -10px;
  right: 10px;
}


.instagram .illust-pink-t {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  width: 80px;
}

.link-pink-content{
  justify-content: center;
  position: absolute;
  bottom:20px;
  left:5%;
  text-align: center;

}
  /* facility-grid */


#facility-grid .grid-item{
  margin-bottom: 20px;
}
.facility-grid .image {
  position: relative;
  margin-bottom: 30px;
}
.facility-grid .image img {
  width: 100%;
}

.facility-grid .image .spot-name {
  font-weight: 700;
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: var(--green);
  padding: 10px 15px;
  border-radius: 15px;
  color: var(--white);
  font-size: 1.8rem;
}

.breadcrumbs {
  margin:20px auto 30px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top:130px;
  left:50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 200;
}
.breadcrumbs ol{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap:5px;
}

.breadcrumbs li::after {
  content: "/"; 
  margin-left: 5px;

}

.breadcrumbs li:last-child::after {
  content: ""; 
}
.breadcrumbs li[aria-current="page"] {
  color: #999; 
}


/** -------- レスポンシブ -------- **/

@media all and (min-width: 750px) {
  .container {
    padding-inline: 2%;
  }

  .wrapper {
    padding-inline: 2%;
  }
  section {
    margin-bottom: var(--section-margin-pc);
  }
  a.link-pink:hover {
    opacity: 1;
  }
  a.link-pink:hover .pink-text {
    color: var(--pink);

  }


  a.link-pink:hover .pink-circle{
    transform: scale(1.05);
  }
  a.link-pink:hover img {
    transform: scale(1); 
  }
  .mainvisual-text{
    text-align: center;
  }
  .illust-animation img{
    width: 80px;
  }
  .illust-animation .illust-pink-2{
    top:-5%;
    left:20%;
    z-index: -1;
  
  }
  .illust-animation .illust-yellowgreen{
    top:40%;
    right:0%;
    z-index: -1;
  
  }

  .illust-animation .illust-yellow-t{
    top:30%;
    left:3%;
    z-index: -1;
    width: 70px;
  
  }

  .sub-main{
    width: 100%;
  }
  .illust-animation-sub img{
    width: 80px;
  }
  .illust-animation-sub .illust-pink-2{
    top:40px;
    left:20%;
  
  }
  .illust-animation-sub .illust-yellowgreen{
    top:400px;
    right:0;

  }
  
  .illust-animation-sub .illust-yellow-t2{
    top:250px;
    left:-20px;
  
  }

  .to-top {
    right: 5%;
    bottom: 130px;
    width: 50px;
    height: 50px;
  }

  .to-top:hover{
    opacity: 0.8;
  }
  
  
  /* instagram */
  .instagram .illust {
    width: 250px;
    top: -30px;
    right: 0;
  }

  
  .instagram .illust-otange-c {
    width:150px
  }
  .instagram .illust-pink-t {
    width: 150px;
  }
  .link-pink-content{
    justify-content: center;
    position: absolute;
    bottom:20px;
    left:50%;
    transform: translateX(-50%);
    text-align: center;
  
  }
  /* facility-grid */
  .facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .facility-grid .image h3 {
    font-size: 1.8rem;
  }
  .breadcrumbs{
    top:200px;
  }
}
@media all and (min-width: 1000px){
  .spot{
    font-size: 1.4rem;
  }
  section {
    margin-bottom: 80px;
  }
  .illust-animation-sub .illust-yellowgreen{
    right:-20px;

  }
  .instagram .illust {
    width: 300px;
  
  }

  .facility-grid {
    gap: 80px;
  }
}

/** -----------------------------------
    テキスト
-------------------------------------**/

.top-sec-title {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 30px;
}
.top-sec-title span{
  display: block;
}
.top-sec-title .en {
  font-family: var(--font);
  font-size: 3.2rem;
  letter-spacing: 0.3rem;

}
.top-sec-title .ja {
  font-size: 1.6rem;
  color:var(--green);
}
h1.page-title{
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 70px;
}
.sec-title {
  color: var(--black);
  text-align: left;
  margin-bottom: 30px;
  
}
.sec-title span{
  display: block;
}
.sec-title .ja{
  font-size: 2.4rem;
}
.sec-title .en {
  font-family: var(--font);
  font-size: 1.8rem;
  color:var(--green);

}

.feature-title{
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.feature-title span.green-box{
  color: var(--white);
  background-color: var(--green);
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 1.4rem;
  border-radius: 10px;
  
} 
.feature-content{
  margin-bottom: 30px;
}

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





/** -------- レスポンシブ -------- **/

@media all and (min-width: 750px) {
  .top-sec-title {
    text-align: center;
  }
  .top-sec-title .en {
    font-size: 4.8rem;

  }
  
  .top-sec-title .ja {
    font-size: 1.8rem;
  }
  h1.page-title{
    font-size: 4.8rem;
    
  }
  .feature-title span.green-box{
    font-size: 1.6rem;
    
  } 

  .sec-title {
    text-align: center;
    font-size: 3rem;
  }
  .sec-title .ja{
    font-size: 3.6rem;
  }
  .sub-text{
    font-size: 2rem;
  }


  

}
/* header */
header {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  height:90px;
  padding-inline: 5%;


}
header .logo{
  position: relative;
  z-index: 400;
  
}
header .logo img{
  width: 80px;
}
header h1{
  line-height: 0;
}

/* ハンバーガー */
header .toggle_btn {
  display: block;
  width: 30px;
  height: 30px;
  top:30px;
  right: 20px;
  position: fixed;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 1000;
}
header .toggle_btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  position: absolute;
  transition: all 0.5s;
}
/* / １本目 / */
header .toggle_btn span:nth-child(1) {
  top: 3px;
}
/* / ２本目 / */
header .toggle_btn span:nth-child(2) {
  top: 14px;
  width: 50%;
}
/* / 3本目 / */
header .toggle_btn span:nth-child(3) {
  bottom:3px;
  width: 75%;
}
.open #header .toggle_btn span {
  background-color: var(--white);
}
.open .toggle_btn span:nth-child(1) {
  top:50%;
  transform: rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  display: none;
  
}
.open .toggle_btn span:nth-child(3) {
  top:50%;
  transform: rotate(45deg);
  width:100%
  
}

/* ハンバーガーの中身 */
.navi {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  height: 100vh;  
  overflow-y: auto;   
  z-index: 500;
  padding: 10px 5%;
  transition: 0.5s;
  background-color: var(--yellow);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  
  }
  .navi a{
    font-weight: 700;
  }
  .open .navi {
  opacity: 1;
  visibility: visible;
  }
  .navi .logo{
    width: 80px;
    margin-bottom: 30px;
  }

  .navi .navi-lists{
    margin-bottom: 30px;
    padding-inline: 10px;
  }
  .navi li.navi-list{
  margin-bottom: 15px;
  }
  .navi li.navi-list.top-page{
    margin-bottom: 20px;
    }
  
  .navi .tel{
    text-align: center;
    margin-bottom: 15px;
  }
  .navi .tel-num{
    font-size: 2.4rem;
    font-weight: 700;
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navi .tel-num img{
    margin-right: 10px;
    width: 20px;
  }
  
  .navi .text{
    font-size: 1.2rem;
  }
  .navi li a {
  font-size: 1.6rem;
  color: var(--black);
  }
  .navi li a:active {
    opacity: 0.8;

  }
  
.open-instagram {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap:20px;
}
.open-instagram img{
  margin-bottom: 2px;
}
.open-instagram .insta-icon{
  width: 25px;
  margin-right: 5px;
}



header .header-nav {
  display: none;
}
header .header-btn{
  display: flex;
  align-items: center;
}

/* アコーディオン */
.accordion_header {
  font-size: 1.6rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  
}
.i_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0%;
}
.i_box {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.i_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: block;
  transition: opacity 0.5s ease;
}

.i_box .one_i {
  opacity: 1;
}

.i_box .one_i-2 {
  opacity: 0;
}
.ac-open .i_box .one_i {
  opacity: 0;
}

.ac-open .i_box .one_i-2 {
  opacity: 1;
}


.accordion_inner {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.ac-open .accordion_inner {
  max-height: 150px;
  opacity: 1;
}
.box_one{
  opacity: 0;
  transition: all 0.3s;
}
.ac-open .box_one{
  opacity: 1;
}

.accordion_inner .box_one li{
  position: relative;
  margin: 5px 0 5px 20px;
}
.accordion_inner .box_one li a{
  font-size: 1.2rem;
}
.accordion_inner .box_one li::before{
  content:"";
  position: absolute;
  left:-10px;
  top:50%;
  width:8px;
  height:2px;
  background-color: var(--green);
  

}


.navi .illust-pink-s{
  position: absolute;
  top:20%;
  right:20%;
  z-index: -1;
  width: 40px;
}

.navi .illust-green-t{
  position: absolute;
  bottom:15%;
  left:5%;
  z-index: -1;
  width: 30px;
}
.navi .illust-yellow-2{
  position: absolute;
  top:5%;
  left:40%;
  z-index: -1;
  width: 30px;
}

body.menu-open {
  overflow: hidden;
}




/** -------- レスポンシブ -------- **/

@media all and (min-width: 750px) {
  header {
    height: 150px;
    padding-inline: 2%;
  }
  header .logo{
    margin-top: 10px;
  }
  header .logo img{
    width: 100px;
  }
  header .toggle_btn {
    display: none;
  }

  .menu-open {
    overflow: auto; 
  }
  header .header-nav {
    display: block;
  }
  header .nav-top .tel {
    margin-right: 20px;
    line-height: 1.2;
  }

  header .nav-top .tel-num {
    font-family: var(--font);
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .nav-top .tel-num img{
    margin-right: 10px;
    width: 30px;
  }
  
  header .nav-top {
    display: flex;
    align-items: center;
    padding: 5px;
    margin-bottom: 20px;
  }
  header .nav-top .btn {
    margin-right: 5px;
  }
  header .nav-top .btn a {
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 5px;
    border-radius: 10px;


  }

  header .nav-top .btn img {
    width: 15px;
    margin-right: 5px;
  }


  header .nav-top .header-recruit-btn {
    margin-top: 5px;
    margin-right: 10px;

  }
  header .nav-top .header-recruit-btn a{
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--green);


  }
  header .nav-top .header-contact-btn {
    margin-top: 5px;
  }
  header .nav-top .header-contact-btn a{
    font-size: 1.2rem;
    font-weight: 700;
    background-color: var(--pink);


  }
  header .nav-top .header-instagram {
    display: flex;
    align-items: center;
    margin-top: 5px;
  }
  header .nav-top .header-instagram a {
    margin-left: 15px;
    
  }
  header .nav-top .insta-icon {
    width: 20px;
    margin-right: 5px;
    margin-bottom: 2px;
  }


  header .nav-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .nav-bottom li {
    margin-left: 20px;
    font-weight: 700;
    font-size: 1.6rem;
  }
  header .nav-bottom li a {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
  }

  header .nav-bottom li a .pink-line {
    box-shadow: inset 0 -3px 0 transparent;
    transition: box-shadow 0.3s ease;
  }
  
  header .nav-bottom li a:hover .pink-line {
    box-shadow: inset 0 -3px 0 var(--pink);
  }

  header .face {
    margin-top: 5px;
    margin-right: 5px;
  }
  /* メガメニュー */

.nav-top{
  position: relative;
  z-index: 100;
}
ul.nav-bottom {
  display: flex;
  justify-content: flex-end;
  transition: 1s ease;
}
li.nav-bottom-item{
  margin-left: 15px;

}

li.nav-bottom-item a {
  display: flex;
  align-items: center;
}
.megaMenu {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  z-index: 0;
  background-color: rgba(255, 252, 242, 0.8);
  pointer-events: none;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;


  
}
.non-megaMenu{
  position: relative;
  z-index: 100;
}

.megaMenu-title{
  position: relative;
  z-index: 120;
  cursor: pointer;
  display: flex;
  align-items: center;

}
ul.megaMenu-list {

  width:100%;
  height:210px;
  padding-top: 130px;



}
.megaMenu-list{
  text-align: center;

}



li.megaMenu-item {
  display: inline-block;
  width: 140px;
  

  
}
li.megaMenu-item a.small{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;

}
li.megaMenu-item a img{
  width: 100px;
}

.nav-bottom-item:hover a.non-hover{
  opacity: 1;
}
.nav-bottom-item:hover .megaMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media all and (min-width: 1000px){
  header {
    padding-inline: 2%;
  }
  header .logo img{
    width: 120px;
  }
  header .nav-top .tel .text {
    font-size: 1.2rem;
    margin-top: 0;
  }
  header .nav-top .tel-num {
    font-size: 3.4rem;
  }
  header .nav-top .btn a {
    padding: 8px 15px;
  }
  header .nav-top .header-recruit-btn a{
    font-size: 1.6rem;
  }
  header .nav-top .header-contact-btn a{
    font-size: 1.6rem;
  }
  header .nav-top .insta-icon {
    width: 25px;
    margin-right: 10px;
  }

}

}
#recruit {
  position: relative;
  height:440px;
}
#recruit .text {
  position: absolute;
  max-width: 1200px;
  left:50%;
  transform: translateX(-50%);
  width:100%;
  padding-inline: 5%;
  top:0;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-block: 20px;

}
#recruit .text .top-sec-title {
  text-align: left;
  color: var(--white);
  margin-bottom: 10px;
}
#recruit .text .ja{
  color: var(--white);
}

#recruit .recruit-copy {
  background-color: var(--white);
  border-radius: 20px;
  display: inline-block;
  padding: 5px 10px;
  font-size: 2.2rem;
  font-weight: 700;
  margin-block: 15px;
}
#recruit .image {
  width: 100%;
}
#recruit .link-pink-wrapper{
  text-align: left;
}

#recruit .link-pink{
  color: var(--white);
}
#recruit .link-pink:active{
  color: var(--pink);
}
#recruit .box {
  position: relative;
  z-index: 1;
  background-color: var(--green);
  height: 250px;
  border-radius: 0 0 50px 50px;
  margin-bottom: -40px;
}
/** -------- レスポンシブ -------- **/

@media all and (min-width: 750px) {


  
  /* recruit */
  #recruit {
    height: 350px;

  }
  #recruit .text {
    padding-block: 30px;
    align-items: flex-start;
    padding-inline: 2%;

    
  }
  #recruit .recruit-copy {
    background-color: var(--white);
    border-radius: 20px;
    font-size: 3.2rem;
    display: inline-block;
    padding: 10px 15px;
  }
  #recruit .recruit-flex{
    display: flex;
    justify-content: space-between;
  }
  #recruit picture{
    width: 60%;
  }
  #recruit .image {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  #recruit .box {
    position: static;
    height: 350px;
    width: 50%;
    margin-right: -50px;
    border-radius: 0 60px 60px 0;
  }
  #recruit .link-pink:hover{
    color: var(--pink);
  }
}
@media all and (min-width: 1000px){
  #recruit .recruit-copy {
    font-size: 4.2rem;

  }
}

/* contact-nav */

#contact-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;

}
#contact-nav .title{
  font-size: 2rem;
}
#contact-nav .tel{
  position: relative;
}
#contact-nav .tel .title{
  font-weight: 700;
}
#contact-nav .tel-num{
  font-family: var(--font);
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact-nav .tel-num img{
  width: 30px;
  margin-right: 10px;
}
#contact-nav .tel .small{
  font-size: 1.2rem;
  font-weight: normal;
}
#contact-nav .box {
  background-color: var(--yellow);
  height: 160px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: none;
  border: 3px solid transparent;
  transition: 0.3s;
}
#contact-nav .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--green);
}
#contact-nav .box:active{
  border: 3px solid var(--pink);
}

#contact-nav .illust-yellow-2{
  position: absolute;
  top:45%;
  left:-10px;
  width:40px;
}

#contact-nav .illust-pink-s{
  position: absolute;
  top:10%;
  right:-1%;
  width: 50px;
}




#contact-nav .form .form-btn{
  position: relative;
  width:300px;
  height:60px;
  margin-top: 20px;


}
#contact-nav .form .btn{
  background-color: var(--pink);
  border-radius: 30px;
  width: 300px;
  height:60px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  transition: all 0.3s;
  position: absolute;
  top:0;
  left:0;

}
#contact-nav .form .form-btn-inner{
  color:var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top:15px;
  width: 100%;
  font-size: 1.6rem;

  
}

#contact-nav .form .form-btn-inner img{
  margin-right: 10px;
  width:20px;
}

#contact-nav .box:active .btn{
  transform: scale(1.05);
}
#contact-nav .box:active .form-btn-inner{
  transform: scale(1); 


}
/** -------- レスポンシブ -------- **/

@media all and (min-width: 750px) {

    #contact-nav {
      grid-template-columns: 1fr 1fr;
      gap:30px;
      margin-bottom: 100px;
  
    }
    #contact-nav .box{
      height:200px;
    }
    #contact-nav .tel-num{
      font-size: 4rem;
    }
  
    #contact-nav .form .form-btn-inner{
      font-size: 2rem;
      top:12px;
    
    }
    #contact-nav .box:hover{
      border: 3px solid var(--pink);
    }
    #contact-nav .illust-yellow-2{
  
      width:50px;
    }
  
  
    #contact-nav .box:hover .btn{
      transform: scale(1.05);
    }
    #contact-nav .box:hover .form-btn-inner{
      transform: scale(1); 


    }
  
  
  }
  @media all and (min-width: 1000px){
    #contact-nav .illust-yellow-2{
      width:70px;
    }
    #contact-nav {
      gap:60px;
      margin-bottom: 160px;
  
    }

  }


  /* footer */
  footer {
    background-color: var(--yellow);
    padding-block: 50px;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.7;
    border-radius: 50px 50px 0 0;
  }
  
  
  footer .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer .footer-link{
    font-size: 1.6rem;
    font-weight: 700;
  }
  
  footer .nav-item{
    width: 50%;
  }
  footer .footer-top{
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  footer .map-sp{
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  footer .map-sp img{
    width:12px;
    margin-right: 3px;
    margin-top: 2px;
  }
  footer .map-sp a{
    text-decoration: underline;
    
  }
  footer .footer-right{
    line-height: 2;
    margin-bottom: 30px;
  
  }
  footer .footer-right ul{
    list-style-type: none;
  }
  footer .footer-right li{
    position: relative;
    margin-left: 10px;
  }
  footer .footer-right li.footer-item-list::before{
    content:"";
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left: -10px;
    width: 5px;
    height:5px;
    border-radius: 50%;
    background-color: var(--pink);
    margin-right: 3px;
  }
  footer .footer-right a{
    font-weight: 700;
  }
  footer .logo {
    width: 100px;
    margin-bottom: 20px;
  }
  footer .info{
    letter-spacing: 0.2rem;
  
  }
  
  footer a {
    display: block;
  }
  footer ul {
    list-style: disc;
  }
  
  footer .illust-green-t{
    position: absolute;
    top:-10px;
    right:20px;
    width: 30px;
  }
  footer .illust-pink-t{
    position: absolute;
    bottom:10%;
    left:0%;
    width: 50px;
  }
  
  footer .copy {
    text-align: center;
    max-width: 1200px;
    padding-inline: 2%;
    margin-inline: auto;
    font-size: 1.2rem;
    color:#999;
  }
  
  
  
  /** -------- レスポンシブ -------- **/
  
  @media all and (min-width: 750px) {
    footer {
      font-size: 1.2rem;
    }
  
  
    footer .wrapper {
      display: flex;
      justify-content: space-between;
    }
    footer .flex {
      flex-direction: row;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
    }
    footer .logo {
      width: 100px;
      margin-right: 0px;
  
    }
    footer .footer-right{
      display: flex;
      margin-bottom: 0;
    }
    footer .flex {
      gap: 20px;
    }
    footer .nav-item{
      width: auto;
    }
    footer .map-sp{
      justify-content: flex-start;
      
    }
    footer .privacy{
      border-bottom: 1px solid var(--black);
      display: inline-block;
      font-weight: 700;
      margin-top: 10px;
    }
  
    footer .footer-bottom{
      margin-right: 20px;
    }
    footer .copy {
      text-align: left;
    }
    footer .illust-green-t{
      top:-10px;
      right:80px;
      width: 40px;
    }
    footer .illust-pink-t{
      bottom:10%;
      left:30%;
      width: 80px;
    }
   
  }
  @media all and (min-width: 1000px){
    footer {
      font-size: 1.2rem;
    }
    footer .logo {
      width: 130px;
    }
    footer .footer-bottom{
      margin-right: 40px;
    }
    footer .flex {
      gap: 40px;
    }

  }