

/* =============================
   Layout
============================= */


body {
  font-family:serif;
  color: #4a3a34;
  line-height: 1.7;
  font-size:14px;
}

a {
  text-decoration: none;
  color: inherit;
transition: 0.3s;
}

ul {
  list-style: none;
margin:0;
    padding:0;
}
img{width:100%;
}

a:hover{
    opacity: 0.7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.section_inner{
    max-width: 1000px;
    margin: 0 auto;
  width: 100%;
}

a.btn{
    display: block;
    color:#fff;
    background-color: #c3a888;
    padding: 5px 5px;
    box-sizing: border-box;
    border-radius: 10px;
    margin:0 auto;
        
}
.flex{
display:flex;
justify-content:space-between;
}
h1,h2,h3,h4,h5{
font-weight:normal}
.pc{display:block;}
.sp{display:none;}

/* =============================
   Header
============================= */
.header {
  padding: 20px 0;
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
    margin-top: 15px;
    margin-bottom: 0;
}

.logo img{
max-width:130px;
}
.logo,
.nav a,
.section-title,
.hero-inner h2 {
  font-family: "EB Garamond", serif;

    font-weight: normal;
}

/* =============================
   Navigation
============================= */
.nav ul {
  display: flex;
  gap: 30px;
}

.nav a {
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
    }

.nav a:hover {
  opacity: 0.6;
}

/* =============================
   Hamburger
============================= */
.menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-btn span {
  width: 25px;
  height: 2px;
  background: #4a3a34;
  transition: 0.3s;
}

/* =============================
   Page Top Button
============================= */
.page-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width:40px;
  height: 40px;
  background: #7A5051;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.page-top:hover {
  transform: translateY(-3px);
}

.page-top.show {
  opacity: 1;
  visibility: visible;
}

/* =============================
   Hero
============================= */
.hero{background-color:#f4ede5;
}
.hero-swiper{
max-width:1500px;
margin:0 auto;
background-color:#000;
}
.hero-swiper,
.hero-swiper .swiper-slide {
  height: 600px;
}

.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================
   swiper設定
============================= */
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

/* アクティブドット */
.swiper-pagination-bullet-active {
  background: #7A5051c4;
}

/* 画像を少し拡大した状態から開始 */
.hero-swiper .swiper-slide img {
  transform: scale(1);
  transition: transform 6s ease;
}

/* アクティブなときにじわっと拡大 */
.hero-swiper .swiper-slide-active img {
  transform: scale(1.1);
}

/* =============================
   Sections
============================= */
.section {
  padding: 50px 0;
  text-align: center;
}

.section-title {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 40px;
color:#7A5051;
  font-family: "Fredericka the Great", serif;
}




.section-title span{
  font-size: 26px;
display:block;
  letter-spacing: 5px;
}

.bg-gray {
  background: #f9f8f4;
}

/* =============================
   information
============================= */
#information {
    background-color: #f4f1ee;
    max-width: 1000px;
    margin:40px auto 0;
    box-sizing: border-box;
    padding: 2% 0 3%;
}
#information ul{
    display: flex;
    margin: 0 auto;
    text-align: center;
    max-width:800px;
}
#information ul li:first-child{
    margin-right: 10px;
width: 70px;
    text-align: left;
}
/* =============================
   business
============================= */
#business ul{
    display: flex;
    justify-content: space-between;
flex-wrap:wrap;
}

.business_logo img{
max-width:1200px;
}
#business .flex > h3{flex-basis:30%;}
#business .flex .inner{flex-basis:66%;}

#business p {text-align:left;
margin-bottom:20px;}
#business .favorite ul li a.btn{width:150px;}
#business .favocre ul li a.btn{width:300px;}

#business h3 span{font-size:10px;
display:block;
}

#business h3,
#business h4{
font-weight:normal;
}
#business h4{
font-size:20px;
}

#business .favorite h3{
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #7A5051;
}
#business .favocre h3{
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #7A5051;
}

/* =============================
   SP Cross Fade Slider - Slow
============================= */

.fade-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* 画像比率に合わせて調整OK */
  overflow: hidden;
}

.fade-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: crossFade 15s infinite;
}

/* 3枚なので5秒ずつずらす */
.fade-slider img:nth-child(1) { animation-delay: 0s; }
.fade-slider img:nth-child(2) { animation-delay: 5s; }
.fade-slider img:nth-child(3) { animation-delay: 10s; }

@keyframes crossFade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}

.fade-slider img {
  transform: scale(1.05);
  animation: crossFade 15s infinite, zoomSlow 15s infinite;
}

@keyframes zoomSlow {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
/* =============================
   vision
============================= */
#vision img{
max-width:500px;
width:80%;
}

#vision h3{
font-size:54px;
  font-family: "EB Garamond", serif;
color: #7a5051;
}

/* =============================
   company
============================= */
.company_item{
align-items: center;
    display: flex;
    text-align: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
padding:1.5% 0;
    }
.company_item dt{
  width: 50%;
  font-weight:normal;
  text-align:center;}
.company_item dd{
    width: 50%;
    text-align: left;
    }



/* =============================
   map
============================= */
.map{
margin-top:30px;
}
#contact{
padding-bottom:0;
}
#contact a{margin:40px auto 50px;
width:20%;
}
/* =============================
   Footer
============================= */
.footer h2{
margin:0 0;}
.footer h3{
margin:0 0;
}


.footer {
  padding: 50px 0 10px;
margin:-7px 0 0 0;
  text-align: center;
  font-size: 14px;
  background: #C4AC99;
}
.footer ul {display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 20px;
}
.footer li{
    padding:10px;
}
.footer img{
max-width:110px;
margin:0 auto;
mix-blend-mode: multiply;
}
.footer h3{
font-weight:normal;
color:#7a5051;
font-size:10px;
}
.footer p{
font-size:12px;
padding:0;
margin:0;
}


/* =============================
   ポリシーページ
============================= */

#policy .section_inner{
text-align:left;
}
#policy .section_inner a{
border-bottom:1px solid #959595;
}


/* =============================
   Fade Up Animation
============================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}



/* =============================
   Responsive：tab
============================= */
@media (max-width: 999px) {

  .menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: #fff;           /* 背景つけないと見づらくなる場合あり */
    padding: 8px;
    border-radius: 6px;
  }




#business .favocre ul li a.btn,
#business .favorite ul li a.btn{
width:auto;
}
#information{
width:90%;
}
.header{
padding:5px;
}
.logo img {
    max-width: 110px;
}
#business ul{
    display: flex;
    justify-content: space-between;
flex-wrap:wrap;
}

#business ul li{
    width: 48%;  
}
#business ul li a{
    width: 100%;
margin-top:10px;
}

  .section_inner{
    width: 86%;
  }

  .menu-btn {
    display: flex;
  }



  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #f4f1ee;
    transition: right 0.4s ease;
    z-index: 10000;
    padding-top: 100px;
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .menu-toggle:checked + .menu-btn + .nav {
    right: 0;
  }




}


/* =============================
   Responsive：sp
============================= */
@media (max-width: 764px) {





.pc{display:none;}
.sp{display:block;}

.flex{flex-wrap:wrap;
}
#business .flex > h3{flex-basis:100%;}
#business .flex .inner{flex-basis:100%;}
.business_logo img{width:60%;
border-radius:50%;
padding:0;
margin:0;}


#business .inner{
margin:-60px 0 10px 0;
}


#vision h3{
font-size:28px;}
#contact a{width:80%;}
.company_item{
    display: block;
    padding: 0;
  }
.company_item dt{
  width: 100%;
  padding:2%;
  background-color: #f9f8f4;
        box-sizing: border-box;
text-align:left;}
.company_item dd{
    width: 100%;
    text-align: left;
padding: 2%;
        margin: 0;
    }
#information ul{
flex-wrap:wrap;
margin-bottom:10px;
}
#information ul li{width:100%;
text-align:left;}

.footer ul{
flex-wrap:wrap;
}

.favocre,.favorite{
margin-top:-100px;
}
.business_logo{
z-index:100;
}

}
/* =============================
   Hamburger Animation
============================= */

.menu-btn span {
  transition: 0.3s;
}

/* 1本目 */
.menu-toggle:checked + .menu-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

/* 2本目（消す） */
.menu-toggle:checked + .menu-btn span:nth-child(2) {
  opacity: 0;
}

/* 3本目 */
.menu-toggle:checked + .menu-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

