/* header */
.nav_follow {
    width: 100%;
    position: fixed;
     z-index: 100;
    /* background: #FFF; */
    padding: 15px;
    box-sizing: border-box;
    top: 0;
    height: 4rem;
}
.blur {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.nav_follow .logo img {
    width: 100%;
    height: auto;
}

.nav_follow .logo {
  width: 32%;
  display: block;
}

#menu_button {
  width: 39px;
  overflow: hidden;
}

#menu_checkbox {
  /* display: none; */
}

#menu_label {
  position: relative;
  display: block;
  height: 29px;
  cursor: pointer;
}

#menu_label:before{
  /* width:100%; */
}
#menu_label:after{
  width:100%;
}
#menu_text_bar{
  width:100%;
}

#menu_label:before,
#menu_label:after,
#menu_text_bar {
  position: absolute;
  right: 0;
  height: 1px;
  background-color: #e17ea9;
  filter: drop-shadow(1px 1px 2px #fff);
}


#menu_label:before,
#menu_label:after {
  content: "";
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
}

#menu_label:before {
  top: 2px;
}

#menu_label:after {
  top: 14px;
}

#menu_text_bar {
  top: 26px;
  line-height: 1;
}

#menu_text_bar:before {
  content: "MENU";
  position: absolute;
  top: 2px;
  right: 0;
  left: 0;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

#menu_button.active > #menu_label:before {
  left: -39px;
}

#menu_button.active > #menu_label:after {
  left: 39px;
}

#menu_button.active > #menu_label #menu_text_bar:before {
  animation: moveUpThenDown 0.8s ease 0.2s forwards,
    shakeWhileMovingUp 0.8s ease 0.2s forwards,
    shakeWhileMovingDown 0.2s ease 0.8s forwards;
    margin-top: -4px;
}

@keyframes moveUpThenDown {
  0% {
    top: 0;
  }
  50% {
    top: -27px;
  }
  100% {
    top: -14px;
  }
}

@keyframes shakeWhileMovingUp {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  50% {
    transform: rotateZ(0deg);
  }
  75% {
    transform: rotateZ(10deg);
  }
  100% {
    transform: rotateZ(0);
  }
}

@keyframes shakeWhileMovingDown {
  0% {
    transform: rotateZ(0);
  }
  80% {
    transform: rotateZ(3deg);
  }
  90% {
    transform: rotateZ(-3deg);
  }
  100% {
    transform: rotateZ(0);
  }
}

/*hamburgermenuハンバーガー*/
/*クリックされていないときのボタン*/
.toggle {
  position: fixed;
  /* bodyに対しての絶対位置指定 */
 right: 15px;
  top: 10px;
  width: 45px;
    height: 39px;
    cursor: pointer;
    z-index: 1002;
    /* background: rgba(255,255,255,0.7); */
}

.toggle span {
  display: block;
  position: absolute;
  /* .toggleに対して */
  width: 70%;
  border-bottom: solid 1px #212121;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  padding-top: 5px;
  right: 7px;
}

.toggle span:nth-child(1) {
  top: 0;
}

.toggle span:nth-child(2) {
  top: 13px;
}

.toggle span:nth-child(3) {
  top: 26px;
}

.toggle span:nth-child(4) {
  border: none;
  top: 28px;
  left: 5px;
  font-size: 12px;
  font-weight: bold;
}


/*クリックされたときのボタン*/
/* 最初のspanをマイナス45度に */
.toggle.active span:nth-child(1) {
  top: 15px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}


.global_nav_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  z-index: 1001;
  text-align: center;
  color: #454545;
  transition: all 0.8s;
  opacity: 1;
  padding: 0 0 10px 0;
  height: 100vh;
}

.global_nav_sp.active {
  width:100%;
  transform: translateX(0%);
  background: rgba(255,255,255,0.9);
}

.global_nav_sp ul{
    display: grid;
    grid-template-columns: repeat(auto-fit, 85%);
    grid-gap: 10px;
    justify-content: center;
    padding: 65px 0 0 0;
}

.global_nav_sp ul li {
  width: 100%;
  list-style-type: none;
  box-sizing: border-box;
  border-bottom: 1px dotted #bbb;
}

.global_nav_sp ul li a {
  display: block;
  padding: 10px 0;
  display: block;
      color: #ee5b87;
}

.global_nav_sp a span {
    display: block;
    color: #4f8cfd;
  }

.global_nav_sp .credit{
    width: 80%;
    margin: 0 auto;
    max-width: 400px;
}

.global_nav_sp .credit img{
    width: 100%;
    height: auto;
    padding: 1rem 0 0;
}

.global_nav_sp .sns {
    display: grid;
    grid-template-columns: repeat(auto-fit, 25px);
    grid-gap: 10px;
    justify-content: center;
    padding: 10px 0;
}

    .fix-header {
    top: 0;
    left: 0;
    position: fixed;
    opacity: 1;
    z-index: 1000;
    width: 100%;
    transition: opacity 350ms ease;
}

@media screen and (min-width: 640px) {
    .nav_follow {
    padding: 0.42rem 0 0!important;
    height: 5.5rem;
}
    .nav_follow div {
        display: flex;
        align-items: center;

}
    .nav_follow .logo {
    width: 160px;
    display: block;
    box-sizing: border-box;
    margin: 0 auto 0 1rem;
}
    .global-nav {
    display: none;
}

    .nav_follow .head_btn{
      margin: 0 5rem 0 1rem;
    }
}

@media screen and (min-width: 768px) {

   .fix-header {
    top: -66px;
    left: 0;
    position: fixed;
    /* opacity: 0; */
    z-index: 1000;
    width: 100%;
}
}

@media screen and (min-width: 1381px) {
    .toggle{
        display: none;
    }

    .global-nav {
      display: flex;
      flex-wrap: wrap;
      align-content: center;
      justify-content: center;
      width: 60%;
    }

    .global-nav_list {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      flex-wrap: wrap;
      width: 100%;
      margin: 0 auto 0 0;
    }
        .global-nav_list li {
        padding: 0 1.2%;
    }

    .global-nav_list a{
        display: block;
        font-size: 0.8vw;
        width: max-content;
        text-align: center;
        color: #727272 !important;
    }

    .global-nav_list a span{
        display: block;
        /* font-family: 'Jost', sans-serif; */
        color: #8eb2f6 !important;
    }
}

/*footer */


footer {
    padding: 0 0 85px 0;
}



footer .inner {
    padding: 30px 0 0 0;
    margin: 0 auto;
}

footer .logo {
    width: 240px;
    margin: 15px auto 0 auto;
    display: block;
    margin-bottom: 2rem;

}

footer .logo img{
    width: 100%;
    height: auto;
}

footer ul.foot_navi_list {
    display: grid;
    grid-template-columns: repeat(auto-fit,48%);
    justify-content: space-between;
    text-align: center;
    grid-gap: 4px 0;
}

footer ul.foot_navi_list li span{
    display: none;
}
#scroll-top {
    opacity: 0;
    transition: opacity 350ms ease;
}
@media screen and (max-width: 640px) {
footer ul.foot_navi_list li{
  display: flex;
  width: 67%;
  margin: 0 auto;
}
}
footer ul.foot_navi_list a{
  /* text-decoration: underline;
  text-decoration-skip-ink: none; */
  color:#212121;
  font-size:0.75rem;
}


@media screen and (max-width: 640px) {
.foot_navi_list{
  width:90%;
  margin: 4rem auto 2rem;
}
.foot_navi_list a::before{
  content: "▶";
  margin-right: 2px;
  margin-bottom: 2px;
  text-decoration-skip-ink: none;
}
}
@media screen and (min-width: 640px) {
footer ul.foot_navi_list {
    display: flex;
    grid-template-columns: max-content;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

    footer ul.foot_navi_list li{
      padding: 0px 10px;
    border-left: 1px solid #bbb;
    }
    footer ul.foot_navi_list li:first-child{
      border: none;
    }
}

footer small {
    text-align: center;
    width: 100%;
    display: block;
    padding: 15px 0 45px 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.f-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit,50%);
    text-align: center;
    position: fixed;
    bottom: 69px;
    width: 100%;
    padding: 5px 0;
    border-top: 1px solid #666;
    z-index: 100;
    border-top: 2px solid;
    border-image: linear-gradient(15deg, #4f8cfd -0%, #9dbbf3 50%, #4f8cfd 100%);
    border-image-slice: 1;
}
.sp-btn-off a{
  display: none!important;
}

.foot_navi {
    display: grid;
    grid-template-columns:repeat(auto-fit,76% 16%);
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
}


.foot_navi li{
    height: 70px;
}


.foot_navi li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 12px;
    height: 70px;
}

.foot_navi li a img{
    height: 20px;
    width: auto;
}

.sns-wrap {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 20px;
    -ms-flex-pack: center;
    justify-content: center;
}
.sns-wrap a {
    font-family: 'SansSerifBookFLFItalic';
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 1px;
}
.sns-wrap a + a{
    margin-left: 32px;
}
.sns-wrap a img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    -o-object-fit: contain;
    object-fit: contain;
}
  /*---foot-btn-action- */
.btn {
  background-color: #e17ea9;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), url(../img/under-btn.png);
  background-size: 100%;
  background-repeat: no-repeat;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
.btn svg {
  position: relative;
  top: 1px;
  right: 1px;
}
.btn--large {
  width: 60px;
  height: 60px;
}
.btn--menu:after,.btn--menu:before {
  display: block;
  width: 25px;
  height: 3px;
  /* background: #fff; */
  position: absolute;
  top: 17px;
    left: 3px;
  transition: transform 100ms;
}
.btn--menu:after {
  transform: translateY(-5px);
  content: " CONTACT";
  font-size: 0.725rem;
  color:#fff;
  transform: scaleY(1.4);
}
.btn--menu:before {
  transform: translateY(5px);
  content: " ";
}
.btn--share {
  background: #f39c12;
}
.btn--star {
  background: #2ecc71;
}
.btn--comment {
  background: #16a085;
}
.actions-menu {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 15px;
  bottom: 15px;
}
.actions-menu .btn {
  position: absolute;
  top: 8px;
  left: 8px;
  opacity: 0;
  transition: top 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
              left 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
              opacity 200ms;
}
.actions-menu .btn--menu {
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 0;
}

.btn--menu, #actionMenuButton:checked + .actions-menu > .btn {
  opacity: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
#actionMenuButton:checked + .actions-menu > .btn--menu:after {
  transform: rotate(45deg);
  background: #fff;
  content: "";
  top: 29px;
    left: 18px;
}
#actionMenuButton:checked + .actions-menu > .btn--menu:before {
  transform: rotate(-45deg);
  background: #fff;
  content: "";
  top: 29px;
    left: 18px;
}
#actionMenuButton:checked + .actions-menu > .btn--share {
  top: -70px;
}
#actionMenuButton:checked + .actions-menu > .btn--star {
  top: -50px;
  left: -50px;
}
#actionMenuButton:checked + .actions-menu > .btn--comment {
  left: -70px;
}
.action-checkbox input{
  display: none;
}
.btn_line{
      /* margin-bottom: 1rem; */
      padding-left: 1rem;


}
.btn_line a{
  background: #20c220;
  color:#fff;
  height:54px!important;
    border-radius: 2rem;
    font-size:1rem!important;
    line-height: 1.2;
        border: 1px solid #fff;
}
.btn_line a span{
  font-size:0.75rem!important;
}
