@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Limelight&family=Noto+Sans+JP:wght@100..900&display=swap');

/* base */
:root{
  --main-color:#ffea00;
  --sub-color:#fffbcc;
  --sub-color2:#ffe900;
  --main-bg:url("../img/main-bg.jpg");
  --sub-bg:url("../img/sub-bg.jpg");
}

.sp{
  display: none;
}

.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.limelight-regular {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
}


html{
font-size: 0.6944444444444444vw;
overflow-x: hidden;

}

body {
font-family: "Kosugi Maru", sans-serif;
font-size: 1.8rem;
font-weight: 500;
line-height: 1.8;
 overflow-x: hidden;

}


@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }

  body {
    font-size: 2.8rem;
  }
}

img{
width:100%;
height:auto;
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fade {
  opacity: 0;
}

.fadeUp {
  animation: fadeUp 0.6s ease both;
}


/* Header */

.header__contents{
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  
}

.header__contents .header__nav-list li span{
font-family: "Kosugi Maru", sans-serif;
font-size: 1.4rem;
}

.header__nav-list li a{
font-size: 2.8rem;
display: flex;
flex-direction: column;
line-height: 1.2;
}

.header__nav-list li a:hover{
  opacity: 0.6;

}

.header__sns a:hover{
  opacity: 0.6;

}

.header__logo{
  width: 18rem;
}

.header__sns li {
  width: max(24px, 4.2rem);
  height: max(24px, 4.2rem);
  padding-top: 4rem;
}


@media (max-width: 767px) {
  .header__logo {
    width: max(100px, 16.7rem);
    left: 2rem;
  }

  .header__sns li {
margin: 0 auto;
  }
}

/* Header SP */

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--sub-color);
    width: 8rem;
    height: 8rem;
    min-width: 60px;
    min-height: 60px;
    visibility: visible;
  }

  .header__hamburger-sp::before,
  .header__hamburger-sp::after,
  .header__line-sp {
    content: "";
    background-color: #000;
    width: 5rem;
    min-width: 35px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: 0.3s;
  }

  .header__hamburger-sp::before {
    top: 30%;
    transform-origin: bottom left;
  }

  .header__hamburger-sp::after {
    top: 70%;
    transform-origin: top left;
  }

  .header__hamburger-sp.js-transform::before,
  .header__hamburger-sp.js-transform::after {
    transform: scale(1.414);
    top: 50%;
  }

  .header__hamburger-sp.js-transform::before {
    transform: rotate(45deg) translateX(-50%);
  }

  .header__hamburger-sp.js-transform::after {
    transform: rotate(-45deg) translateX(-50%);
  }

  .js-transform .header__line-sp {
    transform: scale(0);
  }
}


@media (max-width: 767px) {

  
  .header__contents{
    background-color: rgb(247, 227, 2);
    width: 100%;
    height: 100%;
    min-height: max-content;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    z-index: 100;
    transition: 0.3s ease-in;
  }

  .header__logo{
    width: 14rem;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    display: flex;
    padding-top: 24rem;
  }

  .header__nav-list li a{
text-align: center;
}

    .header__contents.js-show {
    opacity: 1;
    visibility: visible;
  }
}

 @media (min-width: 768px) {
  .header__nav-list li {
    position: relative;
  }


  .header__nav-list li:hover {
    opacity: 1;
  }

  .header__nav-list li:hover::before, .header__sns li:hover::before  {
    opacity: 1;
  }

} 

/* 追従 */
.fixed{
position: fixed;
top: 18rem;
right: 0;
z-index: 10;
display: flex;
flex-direction: column;

}

.fixed-tel,.fixed-dm{
  writing-mode: vertical-rl;
  margin-bottom: 2rem;
  background-color: var(--main-color);
  border-radius:1.8rem 0 0 1.8rem;
  position: relative;
  right: 0;
  width: 8rem;
  line-height: 1.6;
  position: relative;
  letter-spacing: 2px;
  border: #fffbcc solid 0.28rem;
}

.fixed-tel{
    padding: 8rem 1rem 4rem 4rem;
}
.fixed-tel::before{
  content: '';
  position: absolute;
  top: 0rem;
  left: 2rem;
  width: 50%;
  height: 32%;
  background: url(../img/tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

}

.fixed-dm{

   position: relative;
   padding: 7rem 2.8rem;
}

.fixed-dm::before{
 content: '';
  position: absolute;
  top: 0rem;
  left: 2rem;
  width: 42%;
  height: 32%;
  background: url(../img/x-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* sp追従 */

 @media (max-width: 768px) {
  .fixed-sp-ul{
  display: flex!important;
  justify-content: center;
  position: fixed;
  bottom: 9rem;
  left: 0;
  z-index: 100;
  width: 100%;
}


.fixed-sp{
  display: flex;
  gap: 1rem;
  background: var(--main-color);
  border: solid 2px var(--sub-color);
  border-radius: 2rem;
  padding: 2rem;
  position: absolute;
  left: 0;
  width: 50%;
  justify-content: end;
}

.fixed-sp::before{
  content: '';
  position: absolute;
  top: 0.3rem;
  left: 0rem;
  width: 10%;
  height: 100%;
  background: url(../img/tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.fixed-dm-sp{
  background: var(--main-color);
  border: solid 2px var(--sub-color);
  border-radius: 2rem;
  padding: 2rem;
  position: absolute;
  width: 50%;
  text-align: center;
}

.fixed-dm-sp::before{
 content: '';
  position: absolute;
  top: 2.8rem;
  left: 2rem;
  width: 32%;
  height: 42%;
  background: url(../img/x-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


 }

/* view more btn */

.view-more{
  border-radius: 4rem;
  background-color: #75645f;
  font-family: "Limelight", sans-serif;
  border:#fff solid 4px;
  width: 24rem;
  padding: 1rem 0;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}

 @media (max-width: 768px) {
.view-more{
  width: 90%;
   padding: 2rem 0;
}


 }


.view-more::after{
  content: '▶︎';
  color: #fff;
  padding-left: 2rem;
}

.yellow::after{
  color: #fabe00;
}

/* google map */

.map {
  width: 100%;
  height: 40rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
}


@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}



/*============================
	footer
============================*/
.footer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}


.footer {
  background-color: var(--main-color);
  padding: 6rem 0 7rem;
  position: relative;
  font-family: "Limelight", sans-serif;
}

.pagetop {
  background-color: var(--sub-color);
  width: max(30px, 4rem);
  height: max(30px, 4rem);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }

}

.pagetop::before {
  content: "";
  display: inline-block;
  width: max(7px, 1rem);
  height: max(7px, 1rem);
  border: 0.2rem solid #000;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  transform: translate(-55%, -45%) rotate(-45deg);
  top: 50%;
  left: 50%;
}



@media (max-width: 767px) {

  .pagetop.js-top{
    bottom: 10rem;
  }
  .footer__inner {
    flex-direction: column;
  }

}

.footer-logo{
  width: fit-content;
  margin: 0 auto;
}

.footer__logo {
  display: block;
  width: max(100px, 16.7rem);
  height: auto;
}

.footer__link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4rem 6rem;
  justify-content: center;
  padding-bottom: 4rem;
}

@media (max-width: 767px) {
  .footer__link {
    flex-direction: column;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: max(20px, 3rem) 5rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-list a {
  display: block;
  font-family: var(--font-en);
  font-size: max(16px, 2.5rem);
}

.footer__nav-list a:hover{
  opacity: 0.4;
  transition: 0.8s;
}

.footer__sns a:hover{
  opacity: 0.4;
  transition: 0.8s;
}

.footer__sns li {
  width: max(24px, 4.2rem);
  height: max(24px, 4.2rem);
}

.copy {
  font-size: max(12px, 1.3rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 4.5rem;
}
