@charset "UTF-8";
/** -----------------------------------
    ①トップページ
-------------------------------------**/
/* header */
header {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  /* height:100px; */
}
header h1 {
  width: 150px;
}

/* ハンバーガー */
header .toggle_btn {
  display: block;
  width: 30px;
  height: 25px;
  /* position: fixed; */
  top:50px;
  right: 50px;
  position: absolute;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 30;
}
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: 0%;
}
/* / ２本目 / */
header .toggle_btn span:nth-child(2) {
  top: 48%;
  width: 50%;
}
/* / 3本目 / */
header .toggle_btn span:nth-child(3) {
  bottom: 0%;
  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;
  bottom:0;
  width: 100%;
  /* height:100vh; */
  left: -100%;
  z-index: 20;
  padding: 60px 30px;
  transition: 0.5s;
  background-color: var(--yellow);
  }
  .open .navi {
  left: 0;
  }
  .navi .logo{
    width: 100px;
    margin-bottom: 30px;
  }
  .navi .btn{
    display: flex;
    gap:20px
  }
  
  .navi li {
  margin-bottom: 10px;
  }
  
  .navi .tel{
    text-align: center;
  }
  .navi .tel-num{
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navi .tel-num img{
    margin-right: 10px;
  }
  
  .navi .text{
    font-size: 1rem;
  }
  .navi li a {
  font-size: 1.6rem;
  color: var(--black);
  }
  .navi li a:active {
  margin-bottom: 20px;
  opacity: 0.8;
  }
  
.open-instagram {
  margin-bottom: 20px;
}


header nav {
  display: none;
}

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


.i_box .one_i-2 {
  display: none;
}
.ac-open .i_box .one_i {
  display: none;
}
.ac-open .i_box .one_i-2 {
  display: block;
}
.accordion_inner {
  display: none;
  
}

.accordion_inner .box_one li{
  position: relative;
  margin-left: 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-1{
  position: absolute;
  top:20%;
  right:20%;
  z-index: -1;
  width: 40px;
}
.navi .illust-2{
  position: absolute;
  bottom:20%;
  right:10%;
  z-index: -1;
  width: 80px;
}
.navi .illust-3{
  position: absolute;
  bottom:10%;
  left:20%;
  z-index: -1;
  width: 30px;
}
.navi .illust-4{
  position: absolute;
  top:5%;
  left:40%;
  z-index: -1;
  width: 30px;
}

body.menu-open {
  overflow: hidden;
}



/* ドロップダウンPC */
.dropdown{
  position: relative;
}
.dropdown-title{
  cursor: pointer;
}
.dropdown-list{
  
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  
  z-index: 100;
}
.dropdown-list li{
  margin-bottom: 5px;
  padding: 5px;
  width:200px;
  background:  var(--yellow);
  border-radius: 10px;
}

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

@media all and (min-width: 768px) {
  header {
    height: 120px;
  }
  header h1 {
    width: 200px;
  }
  header .toggle_btn {
    display: none;
  }

  body.menu-open {
    overflow: auto; 
  }
  header nav {
    display: block;
  }
  header .nav-top .tel {
    margin-right: 20px;
  }
  header .nav-top .tel .text {
    font-size: 1rem;
  }
  header .nav-top .tel-num {
    font-family: var(--font);
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  header .nav-top .tel-num img{
    margin-right: 10px;
  }
  
  
 

  header .nav-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 5px;
  }
  header .nav-top .btn {
    border-radius: 8px;
    padding: 5px;
    margin-right: 5px;
  }
  header .nav-top .btn a {
    display: flex;
    align-items: center;
    color: var(--white);
  }
  header .nav-top .btn a {
    display: flex;
    align-items: center;
    color: var(--white);
  }
  header .nav-top .btn img {
    width: 15px;
    margin-right: 5px;
  }
  /* header .nav-top .btn p {
    font-size: 1.2rem;
    font-weight: bold;
  } */

  header .nav-top .header-recruit-btn {
    background-color: var(--green);
    margin-top: 5px;
    padding-inline: 10px;

  }
  header .nav-top .header-recruit-btn a{
    font-size: 1.2rem;
    font-weight: bold;
  }
  header .nav-top .header-contact-btn {
    background-color: var(--pink);
    margin-top: 5px;
  }
  header .nav-top .header-contact-btn a{
    font-size: 1.2rem;
    font-weight: bold;
  }
  header .nav-top .header-instagram {
    display: flex;
    align-items: center;
  }
  header .nav-top .header-instagram a {
    margin-right: 5px;
  }
  header .nav-top .insta-icon {
    width: 24px;
    margin-right: 5px;
    /* vertical-align: bottom; */
  }
  header .nav-top .header-instagram a {
    display: flex;
    align-items: flex-end;
  }
  header .nav-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .nav-bottom li {
    margin-right: 10px;
  }
  header .nav-bottom li a {
    display: flex;
    align-items: center;
  }
  header .face {
    margin-top: 5px;
    margin-right: 5px;
  }
}

/* mainvisual */

#top-mainvisual {
  /* height:calc(100vh - 100px); */
  /* height:900px; */
  margin-bottom: 150px;
  padding-inline: 0;
  position: relative;
  /* background-image: url(../images/mainvisual-1-sp.png);
  background-position: center;
  background-repeat: no-repeat; */
}


h2.main-title {
  font-size: 2.8rem;
  position: absolute;
  bottom: -20%;
  left: 2%;
  text-align: left;
}
h2.main-title p {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 5px;
}

#top-mainvisual .top-main-btn {
  display: none;
}
.scroll-down {
  display: inline-block;
  position: absolute;
  padding: 10px 10px 110px;
  color: var(--gray);
  font-size: 1rem;
  font-family: var(--font);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  right: 3%;
  /* bottom: 0%; */
}
.scroll-down .line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  transform: translate(-50%, -50%);
  -webkit-animation: scroll_01 2s infinite;
  animation: scroll_01 2s infinite;
  background-color: var(--gray);
}

@-webkit-keyframes scroll_01 {
  0% {
    top: 70%;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}

@keyframes scroll_01 {
  0% {
    top: 70%;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}


/* about */

#about .flex .image {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
#about .flex .illust-pink-c {
  position: absolute;
  top: -10%;
  right: -10px;
}
#about .flex .content {
  margin-bottom: 20px;
  font-size: 1.8rem;
}


/* facility-service */
#facility-service {
  position: relative;
}
#facility-service .illust {
  width: 150px;
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 10;
}
/* #facility-service .grid-item {
  margin-bottom: 30px;

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

#facility-service .grid .image p {
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: var(--green);
  padding: 5px 10px;
  border-radius: 10px;
  color: var(--white);
} */
#facility-service .illust-green-2 {
  position: absolute;
  top: 25%;
  right: 0;
  width: 100px;
}

#recruit {
  /* background-image: url(../images/recruit-img.png);
  background-size: cover;
  height: 300px; */
  position: relative;
  height:450px;
  padding-top: 30px;
}
#recruit .text {
  position: relative;
  z-index: 5;
}
#recruit .text .top-sec-title {
  text-align: left;
  color: var(--white);
}

#recruit .recruit-copy {
  background-color: var(--white);
  border-radius: 10px;
  display: inline-block;
  padding: 5px 10px;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#recruit .image {
  position: absolute;
  width: 100%;
  bottom: 0;
}
#recruit .link-pink{
  color: var(--white);
}
#recruit .box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  background-color: var(--green);
  height: 250px;
  border-radius: 0 0 50px 50px;
}

/* contact-nav */

#contact-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-block: 30px;
}
#contact-nav .tel{
  position: relative;
}
#contact-nav .tel .title{
  font-weight: bold;
margin-bottom: 10px;
}
#contact-nav .tel-num{
  font-family: var(--font);
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact-nav .tel-num img{
  width: 20px;
  margin-right: 10px;
}
#contact-nav .tel .small{
  font-size: 1rem;
}
#contact-nav .box {
  background-color: var(--yellow);
  height: 150px;
  border-radius: 20px;
  padding-top: 30px;
  text-align: center;
  position: relative;
}
#contact-nav .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--green);
}

#contact-nav .illust-yellow-2{
  position: absolute;
  top:10%;
  left:-5%;
  width:50px;
}
#contact-nav .form{
  position: relative;
  
}
#contact-nav .illust-pink-s{
  position: absolute;
  top:10%;
  right:-5%;
  width: 50px;
}
#contact-nav .form .btn {
  background-color: var(--pink);
  border-radius: 20px;
  padding: 10px;
  display: inline-block;
  margin-top: 20px;
  

}
#contact-nav .form .btn:active{
  opacity: 0.8;
}
#contact-nav .form .btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--white);

}
#contact-nav .form .btn img{
  margin-right: 5px;
}
/** -------- レスポンシブ -------- **/

@media all and (min-width: 768px) {
  #top-mainvisual {
    position: relative;
    /* height: calc(100vh - 120px);
    background-image: url(../images/mainvisual-1.png);
    background-position: center;
    background-size: contain; */
  }
  #top-mainvisual .content {
    padding-bottom: 50px;
  }
  /* #top-mainvisual .content picture {
    width: 80%;
  } */
  #top-mainvisual .top-main-btn {
    position: absolute;
    right: 2%;
    bottom: 0;
    display: block;
  }
  #top-mainvisual .top-main-btn img {
    width: 150px;
  }
  h2.main-title {
    font-size: 3.6rem;
    
    bottom: 10%;
    left: 5%;
  }
  .scroll-down {
    padding: 10px 10px 110px;
    font-size: 1.2rem;
    right: 3%;
    bottom: 20%;
  }
  .scroll-down .line {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50px;
    
  }

  


  #about .flex {
    display: flex;
    flex-direction: row-reverse;
  }
  #about .flex .text {
    width: 50%;
  }

  #about .flex .image {
    width: 50%;
  }
  #facility-service .illust {
    width: 200px;
    position: absolute;
    top: -50px;
    left: 0px;
    transform: scaleX(-1);

  }
  
  #facility-service .illust-green-2 {
    top: 50%;
  
  }
  

  /* recruit */
  #recruit {
    height: 400px;
  }
  #recruit .text {
    padding-top: 30px;
  }
  #recruit .recruit-copy {
    background-color: var(--white);
    border-radius: 10px;
    font-size: 4.2rem;
    display: inline-block;
  }
  #recruit .image {
    width: 60%;
    height: 400px;
    object-fit: cover;
    right: 0;
  }
  #recruit .box {
    left: 0;
    top: 0;
    height: 400px;
    width: 50%;
    border-radius: 0 50px 50px 0;
  }
  #contact-nav {
    grid-template-columns: 1fr 1fr;
  }
  #contact-nav .tel-num{
    font-size: 3rem;
  }
  #contact-nav .form .btn:hover{
    opacity: 0.8;
  }


}
/* footer */
footer {
  background-color: var(--yellow);
  padding-block: 50px;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.7;
}
footer .wrapper{
  margin-bottom: 20px;
}

footer .flex {
  display: flex;
  gap: 5px;
  justify-content: center;
}
footer .nav-item{
  width: 50%;
}
footer .footer-1{
  justify-content: flex-start;
}
footer .footer-right ul{
  list-style-type: none;
}
footer .footer-right li{
  position: relative;
  margin-left: 8px;
}
footer .footer-right li::before{
  content:"";
  position: absolute;
  top:50%;
  left: -10px;
  width: 5px;
  height:1px;
  background-color: var(--black);
  margin-right: 2px;
}
footer .logo {
  width: 100px;
}

footer a {
  display: block;
}
footer ul {
  list-style: disc;
  /* list-style-position: inside; */
  margin-left: 10px;
}
footer .illust-green-t{
  position: absolute;
  top:-10px;
  right:20px;
  width: 30px;
}
footer .illust-pink-t{
  position: absolute;
  bottom:20%;
  left:0%;
  width: 50px;
}
footer .illust-orange-c{
  position: absolute;
  top:50%;
  left:0%;
  width: 50px;

}
footer .copy {
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 5%;
  font-size: 1.2rem;
}
/* footer .modal-open {
  cursor: pointer;
}
footer .modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  background-color: var(--pink);
  display: none;
}
footer .modal-box.active {
  display: block;
}
footer .modal-box .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
} */


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

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

  footer .wrapper {
    display: flex;
    justify-content: space-between;
  }
  footer .footer-right{
    display: flex;
  }
  footer .footer-2{
    margin-right: 20px;
  }
  footer .copy {
    text-align: right;
  }
  footer .illust-green-t{
    top:-10px;
    right:20px;
    width: 40px;
  }
  footer .illust-pink-t{
    bottom:10%;
    left:30%;
    width: 80px;
  }
  footer .illust-orange-c{
    top:-10%;
    left:20%;
    width: 50px;
  
  }
}