body{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin:0;
  font-size: 16px; 
  line-height: 1.7;
  text-align: center;
  color: #221c17;
  z-index: 0;
}
body,
html{
  scroll-behavior: smooth;
position: relative;
}
main {
  opacity: 0;
  transform: translateY(3px);
  animation: fadein-up 1s ease-out forwards;
}

@keyframes fadein-up {
  to {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
  }
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem;}
h4 { font-size: 1.1rem; } 
@media screen and (max-width: 768px) {
body {
    font-size: 15px;
}
h1 { font-size: 1.6rem; } 
h2 { font-size: 1.3rem; } 
h3 { font-size: 1.15rem;} 
h4 { font-size: 1rem; } 
}
ul,
li{
  list-style: none;
  margin: 0;
  padding: 0;
}
.left{
    text-align: left;
}
br.sp_none{
    display: block;
}
:root{--max-width:1100px;--accent:#2b7a78}
header {
  position: fixed;
  background-color: #fff;
  width: 95%;
  height: 60px;
  display: flex; 
  justify-content: space-between;
  padding: 0 30px;
  margin: 0;
  gap: 0;
  align-items: center;
  z-index: 10;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 3px 3px 5px rgba(116, 95, 74, 0.2);
  transition: all 0.9s ease;
  opacity: 1;
}

header.hide {
  transform: translate(-50%, -100px);
  opacity: 0;
}

header .global-nav{
    display: flex;
    gap: 4vw;
}

.global-nav li {
  position: relative;

}
.global-nav li a{
  height: 60px;
  line-height: 60px;
  transition: ease .3s;
  position: relative;
}
.submenu {
  position: absolute;
  left: 0;
  list-style: none;
  margin: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 300px;
  z-index: 11;
  text-align: left;
  box-shadow: 3px 3px 5px rgba(116, 95, 74, 0.2);
  top: 100%; 

  
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;    
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}
.submenu li a {
  display: block;
  white-space: nowrap;
  position: relative;
  padding-left: 30px;
}
.submenu li a:after{
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/common/icon-arrow-right.svg);
  right: 30px;
    transition: ease 0.4s;
    top:50%;
    transform: translateY(-50%);
}

.submenu li:not(:last-child) {
  border-bottom: solid #cdcdcd 1px;

}

@media (hover: hover) and (pointer: fine){
  
  a img{
    transition: filter ease .3s;
  }
  a:hover img{
    filter: brightness(1.1);
  }
  
.global-nav li a:before{
position: absolute;
content: "";
width: 7px;
background-color: #856f5a;
height: 7px;
left: -20px;
z-index: 1;
top:50%;
transition: ease .4s;
border-radius: 5px;
opacity: 0;
transform: translateY(-50%);
}
  .global-nav li a:hover{
    color: #856f5a;
  transition: ease .3s;
}
.global-nav li a:hover:before{
opacity: 1;
left: -15px;
}

.has-submenu a:hover:before{
  opacity: 0;
  display: none;
}
  .submenu li a:hover:after{
    right: 25px;
    transition: ease 0.4s;
}

.submenu li a:hover {
  background: #f0f0f0;
}
}
.has-submenu{
  transition: ease .3s;
  position: relative;
}
/*arrow-bottom*/
.has-submenu span{
    content: "";
    min-width: 9px;
    max-width: 9px;
    height: 9px;
    border-bottom:2px solid #856f5a;
    border-right:2px solid #856f5a;
    transform:  translateY(-4px) rotate(45deg) ;
    display: inline-block;
    margin-left: 20px;
}
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .3s ease, transform .3s ease, visibility 0s; /* すぐ可視に */
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  right: 20px;
  display: none;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* ハンバーガー → バツ印アニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
br.pc_none{
    display: none;
}
@media screen and (max-width: 980px) {
    br.pc_none{
    display: block;
}
.hamburger {
  display: flex;
}
header .global-nav{
        min-height: 100%;
        display: block;
        width: 80%;
        position: absolute;
        top:65px;
        right: 0;
        background-color: #fff;
        text-align: left;
        padding-left: 0px;
        padding: 10px;
        
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none; 
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
    box-shadow: 3px 3px 5px rgba(116, 95, 74, 0.3);
    }
     header .global-nav.active{

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .3s ease, transform .3s ease, visibility 0s; /* すぐ可視に */
     }
header .global-nav li a{
        display: block;
        border-bottom: solid #cdcdcd 1px;
      }
header .global-nav li:last-child a{

        border-bottom:none;
      }
.submenu {
  display: block;
  position:relative;
  top:unset; 
  min-width: unset;
  box-shadow: none;
  border: none;
border-bottom: solid #cdcdcd 1px;
  opacity: 1;
  visibility:visible;  
  
  transform: translateY(0px);
}

.submenu li:first-child{
    border-bottom: none;
}
.global-nav li a{
    padding-left: 10px;
}
.submenu li a{
  padding-left: 40px;
}

.global-nav li a:hover{
  background: #f0f0f0;
}

.has-submenu{
  padding-right: 0;
}
.has-submenu a:hover {
  background:none;
}

.global-nav li a:after{
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/common/icon-arrow-right.svg);
  right: 30px;
    transition: ease 0.4s;
    top:50%;
    transform: translateY(-50%);
}
.global-nav li a:hover:after{
    right: 25px;
    transition: ease 0.4s;
}
.global-nav {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.global-nav.closing {
  opacity: 0;
}
.has-submenu > a:after {
  background-image: unset !important;
}
}
/**************************************/
/**************************************/
.fixed_link{
  position: fixed;
  right: 0;
  top:50%;
  display: flex;
  flex-direction: column;
  gap:0px;
  transform: translateY(-50%);
  z-index: 9999;
}
.fixed_link a{
  writing-mode: vertical-lr;
  letter-spacing: 2px;
}
.fixed_link a{
  padding: 30px 5px 5px 5px;
  min-height: 200px;
}
a.link_form{
  background-color: #a57b68;
  color: #fff;
}


a.link_form{
  background-image: url(../img/common/icon-fixed-form.svg);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: top 10px center;
}
a.link_line{
  border:solid #a57b68 1px;
  background-color: #fff;
  color: #a57b68;
  background-image: url(../img/common/icon-line-pink.svg);
  background-repeat: no-repeat;
  background-size: 25px 25px;
  background-position: top 15px center;
}
/**/

@media screen and (max-width: 768px) {

.fixed_link{
  right: unset;
  top:unset;
  bottom: 0;
  display: flex;
  flex-direction: row;
  gap:0px;
  left:50%;
  transform: translate(-50%, 0);
  width: 100%;
}
.fixed_link a{
  writing-mode:horizontal-tb;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.fixed_link a{
  padding: 15px 0 15px 20px;
  min-height:unset;
  width: 100%;
}
a.link_form{
  background-size: 40px 40px;
  background-position: center left 10px;
}
a.link_line{
  background-size: 30px 30px;
  background-position: center left 20px;
}

}
/*************************************/
img{
    width: 100%;
}
p{
line-height: 1.8;
  line-break: strict;
/*  word-break: keep-all;*/
/*  overflow-wrap: break-word; */
  hanging-punctuation: none; 

  
  overflow-wrap: normal;     /* 長い単語を折り返さない */
  white-space: normal;       /* 通常の改行ルール */
}
p.fsL{
    font-size: 1.2rem;
}
.flex{
    display: flex;
    flex-wrap: wrap;
    gap:30px;
    flex-direction: row;
}
.flex-box {
    flex: 1;
}
.padding{
    padding: 8vw;
}
.ttl{
    font-size: 2rem;
    font-family: serif;
}
.ttl span{
    display: block;
}
.mg_btm{
    margin-bottom: 40px;
}
a{
    color: #221c17;
    text-decoration: none;
}
a.simple_link{
    background-color: #bfa9a2;
    color: #fff;
    padding: 1rem 2rem;
    margin: 30px auto;
    display: inline-block;
}
.common_bg{
    background-color: #f0ece8;
}
@media screen and (max-width: 768px) {
.padding{
    padding: 15vw 4vw;
}
.flex{
    flex-direction: column;
}
br.sp_none{
    display: none;
}
.ttl{
    font-size: 1.8rem;
}
p.fsL{
    font-size: 1.1rem;
}
}
/**************/
.fade-in {
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* JSで delay を追加して順番に表示 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.overlay{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    height: 100%;
    position: fixed;
    z-index: 9;
    
  opacity: 0;
  visibility: hidden;
  pointer-events: none;    
  transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}

.overlay.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .3s ease, transform .3s ease, visibility 0s; /* すぐ可視に */
}
/***************************/

.accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.accordion-hidden {
  display: none;
}

.accordion-open {
  display: block;
  padding: 20px 80px 20px 10px;
  background:#ffffff;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
}

.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 17px;
  height: 2px;
  background: #867362;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
  background-color: rgba(255,255,255,0.6);
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}

.accordion_qa .Q,
.accordion_qa .A {
  position: relative;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: 0em;
  left: -1.3em;
}

.accordion_qa .Q::before {
  content: '';
  color: #867362;
  background-image: url(../img/common/icon_q.svg);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 25px;
  min-height: 25px;
}

.accordion_qa .A::before {
  content: '';
  color: #867362;
  background-image: url(../img/common/icon_a.svg);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 25px;
  min-height: 25px;
}

.accordion_qa .accordion-open {
  padding-left: 2.5em;
}

.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 2.5em;
}
/*****************************/
footer{
    position: relative;
    background-color: #fff;
    z-index: 0;
}
.footer-wave-bg{
    background-color: #f1edea;
}
footer .footer_content{
    padding: 5vw;
    display: flex;
    gap: 10%;
}
footer .footer_content .footer-left{
    flex: 2;
}
footer .footer_content .logo{
    max-width: 180px;
}

footer .footer_content .footer-right{
    flex: 3;
}

footer .footer-nav{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}
footer .footer_content .footer-right ul li{
  text-align: left;
    padding: .5rem  1.5rem;
}
footer .footer_content .footer-right ul a{
    
    display: block;
    transition: all ease .4s; 
     border-left:solid #878787 0px;
}


footer .footer_content .footer-right ul{
    display: flex;
    flex-wrap: wrap;
    border-left:solid #878787 1px;
    font-size: .9rem;
    flex-direction: column;
    width: 50%;
    transition: ease .4s;
}
footer .footer_content .footer-right ul li a.sub{
    padding-left: 20px;
}
footer .footer_content .footer-right ul li a.sub:before{
    content: "―";
    margin-right: 5px;
}
footer ul.sns{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    gap:20px;
}
footer ul.sns li a{
    width: 30px;
    height: 30px;
    display: block;
}
footer a.tell{
    width: 180px;
    height: 50px;
    background-image: url(../img/common/footer_tell.webp);
    display: block;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
footer a.instagram{
    background-image: url(../img/common/icon-insta.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
footer a.line{
    background-image: url(../img/common/icon-line-bk.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
}

footer a.ameba{
    background-image: url(../img/common/icon-ameba.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 768px) {
	footer{
    padding-bottom: 40px;
	}
footer .footer_content{
    padding: 10vw 1rem;
    gap: 0;
    flex-direction: column-reverse;
}
footer .footer_content .footer-left{
    flex: 1;
}
footer .footer_content .footer-right{
    flex: 1;
    margin-bottom: 10%;
}
footer .footer_content .footer-right ul{
  border: none;
  flex: 1;font-size: .9rem;
}
	
footer .footer_content .footer-right ul li{
    padding: .5rem  0;
}
.footer-nav{
  gap: 0px;
}
footer .footer_content .footer-right ul:nth-child(2){
   
    border-left:none;
}
}
/**********************/
.zoomin {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: opacity, transform;
  overflow: hidden;
  
  width: 100%;
  height: 100%;
}

.zoomin.active {
  opacity: 1;
  transform: scale(1);
}