@charset "UTF-8";
/** -----------------------------------
	ベースレイアウト
----------------------------------- **/
/* -----------------------
　　　カラー変数設定
------------------------ */
:root {
  --main-bg-color: #ffffff;    /* 背景用の白 */
  --sub-bg-color: #f8f4ee;  
  --point-bg-color: #fcfaf7;
  --main-text-color: #333333;  /* 文字用の黒 */
  --sub-text-color: #612e01;  /* 文字用の茶 */  
  --accent-color: #f89b00;     /* アクセントのオレンジ */
  --footer-bg-color: #55483d;
  --title-icon-color: #55483d;
}
/* -----------------------
　　　基本設定
------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin:0;
  padding:0;
}
div{box-sizing: border-box;}
/* common */
a{text-decoration: none;}
body {
  font-family: 'ヒラギノ丸ゴ ProN',游ゴシック, "Yu Gothic", YuGothic,'Hiragino Maru Gothic ProN','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,sans-serif;
}
/* google fonts */
.square-peg-regular {
  font-family: "Square Peg", cursive;
  font-weight: 400;
  font-style: normal;
}
img {
    max-width: 100%;
    height: auto; /* これが重要！ */
}
@media screen and (min-width:769px){
body {
  overflow-x: hidden; /* ★横方向のはみ出しを強制的に隠す */
  width: 100%;
  margin: 0 auto;
  font-size: 62.5%;
  background: var(--main-bg-color);
}
/* top decoration */
.ph-logo{display: none;}
.ph{display: none;}
/* page-top */
.page-top{
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  color: var(--sub-text-color);
  background: var(--main-bg-color);
  border: 3px solid #612e01;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 45px;
  z-index:10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-top:hover{
  filter: opacity(70%);
  transition: all .5s;
}
/* -------------------
　　　header
------------------- */
header{
  font-feature-settings: "palt" 1;
  width: 100%;
  height: 100px;
  position: relative;
}
.headerInner{
  width: calc(100% - 200px);
  height: 100px;
  margin: 0 auto;
  padding: 0 0 0 350px;
  display:flex;
}
h1{
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 150px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #d4b382;
  z-index: 100 !important;
}
/*----------------nav------------------- */
nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.gnav{
  display: flex;
  margin: 0;
  padding: 0;
}
.gnav li{
  box-sizing: border-box;
  padding: 5px 24px;
  font-size: 1rem;
  color: var(--main-text-color);
  border-left: 1px solid #000000;
  list-style-type: none;
  font-weight: bold;
  line-height: 1.4;
}
.gnav li:first-child{border-left: none;}
.gnav li a{
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: var(--main-text-color);
  border-bottom: 2px solid var(--main-bg-color);
}
.gnav i{
  display: inline;
  padding: 5px 10px 10px 0;
  color: var(--main-text-color);
}
/*----------------nav hover-------------------*/
.gnav li a:hover{
  color: var(--sub-text-color);
  box-sizing: border-box;
  border-bottom: 2px dotted #612e01;
  transition: .5s;
}
.gnav li a:hover i{
  color: var(--sub-text-color);
}
/*----------------nav scroll-------------------*/
.sub-nav{
  display: none;
  width: 100%;
  height: 100px;
  background: var(--main-bg-color);
  top: 0;
  left: 0;
  z-index: 50;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.5);
  position: relative;
}
.subnavInner{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 200px);
  height: 100px;
  margin: 0 auto;
  padding: 0;
}
.sublogo{
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100px;
  margin: 0;
  padding: 0;
  line-height: 110px;
  text-align: center;
  background-color: #d4b382;
  z-index: 100 !important;
}
.s-gnav{
  display: flex;
  margin: 0;
  padding: 0;
}
.s-gnav li{
  box-sizing: border-box;
  padding: 5px 24px;
  font-size: 1rem;
  color: var(--main-text-color);
  border-left: 1px solid #000000;
  list-style-type: none;
  font-weight: bold;
  line-height: 1.4;
}
.s-gnav li:first-child{border-left: none;}
.s-gnav li a{
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: var(--main-text-color);
  background: var(--main-bg-color);
    border-bottom: 2px solid var(--main-bg-color);
}
.s-gnav i{
  display: inline;
  padding: 5px 10px 10px 0;
  color: var(--main-text-color);
}
.clone-nav {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  transition: .3s;
  transform: translateY(-100%);
}
.is-show {transform: translateY(0);}
/*----------------nav hover-------------------*/
.s-gnav li a:hover{
  color: var(--sub-text-color);
  box-sizing: border-box;
  border-bottom: 2px dotted #612e01;
  transition: .5s;
}
.s-gnav li a:hover i{
  color: var(--sub-text-color);
}
/*-------- eyecatch（3col） --------*/
.eyecatch {
  display: flex;
  width: 100%;
  height: calc(100vh - 100px);
  max-height: 800px;
}
.side-col {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  background: var(--main-bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-col p{
  margin: 0; 
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--main-text-color);
}
.cleft p{
  writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  transform: rotate(180deg);
}
.cright{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.crsns{
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crsnsicon{
  width: 60px;
  height: 60px;
  margin: 5px 20px;
  font-size: 1.8rem;
  color: var(--main-text-color);
  border: solid 2px var(--main-text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.crsnsicon:hover{
  background: var(--main-bg-color);
  color: var(--accent-color);
  border: solid 2px var(--accent-color);
}
.center-col {
  flex: 1;
  height: calc(100vh - 100px);
  max-height: 800px;
  position: relative;
  overflow: hidden;
}
.center-content {
  position: relative;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
  line-height: 1.5;
}
.cc-inner{
  padding: 100px 150px;
  font-size: 2.3rem;
  text-align: center;
}
/*----------------slider-------------------*/
#custom-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.slide-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  /* transitionを「opacity」のみに絞り、時間をJSと統一します */
  transition: opacity 1000ms ease-in-out;
}
/* 表示中のスライド（一番上） */
.slide-item.active {
  opacity: 1;
  z-index: 3;
}
/* 消えていくスライド（activeの下で待機） */
.slide-item.last-active {
  opacity: 0;
  z-index: 2;
}
.slide-item img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}
/* activeの時だけでなく、last-activeの時もアニメーションを継続させる */
.slide-item.active img,
.slide-item.last-active img {
  animation: zoomOut 5000ms linear forwards;
}
/*----------- underpage eyecatch ----------*/
.sub-eyecatch {
  display: flex;
  width: 100%;
  height: 350px;
  padding: 0 80px;
}
.sub-center-col {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.sc-inner{
  color: var(--main-text-color);
  padding: 40px 150px;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, .5);
}
.sc-inner p{
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}
/*----------------footer-------------------*/
footer{width: 100%;}
.footerInner{
  width: 100%;
  height: 600px;
  background: var(--footer-bg-color);
  color: #ffffff;
  font-size: 1.5rem;
}
.fcontents{
  width: 100%;       /* 画面が狭いときは横幅いっぱい */
  max-width: 1200px; /* 1200px以上には広がらない */
  height: 100%;
  margin: 0 auto;
  padding: 70px 0;
  text-align: center;
  font-weight: bold;
}
.fcontents h2{
  font-size: 6rem;
  height: 120px;
}
p.fnote{
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.5rem;
}
p.ftel{
  font-size: 2.5rem;
}
p.ftel i{
  color: var(--accent-color);
  font-size: 2rem;
  margin-right: .5rem;
}
p.ftime{
  font-size: 1rem;
  margin-bottom: 25px; 
}
a.fcontact{
  font-size: 1.2rem;
  color: #ffffff;
  display: inline-block;
  height: 90px;
  border: 2px solid #ffffff;
  padding: 30px 90px;
  margin-bottom: 25px;
}
a.fcontact i{
  margin-right: 1rem;
}
a.fcontact:hover{
  background: #ffffff;
  color: var(--accent-color);
  border: 4px solid var(--accent-color);
}
.fsns{
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fsnsicon{
  width: 60px;
  height: 60px;
  margin: 5px 20px;
  font-size: 1.6rem;
  color: #ffffff;
  border: solid 3px #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fsnsicon:hover{
  background: var(--main-bg-color);
  color: var(--accent-color);
  border: solid 3px var(--accent-color);
}


/*------------ footer nav ------------*/
footer nav{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
  padding: 30px 0;
}
.fnav-wrap{
  width: 100%;       /* 画面が狭いときは横幅いっぱい */
  max-width: 1200px; /* 1200px以上には広がらない */
}
ul.fnav{
  width: 100%;
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  font-size: 1.2rem;
  font-weight: bold;
}
ul.fnav li{
  line-height: 1.8;
}
ul.fnav a{
  color: var(--main-text-color);
}
ul.fnav-sub{
  width: 100%;
  list-style-type: none;
  font-size: 1.1rem;
  font-weight: normal;
  padding-left: 1rem;
}
/*----------------fnav hover-------------------*/
.fnav li a:hover{
  color: var(--sub-text-color);
  box-sizing: border-box;
  border-bottom: 2px dotted #612e01;
  transition: .5s;
}
.fnav li a:hover i{
  color: var(--sub-text-color);
}
.copy{
  width: 100%;
  height: 60px;
  font-size: .9rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #e7e7e7; 
}
}  /*---- @media end min-width:769px----*/

/*----------------@media screen-------------------*/
 /* -------------------------------
 　　　769以上　-　1332以下
 ------------------------------- */
   @media screen and (min-width: 769px) and (max-width: 1332px){
    .gnav li,.s-gnav li{
      padding: 5px 1rem;
      font-size: .9rem;
    }
  }
 /* -------------------------------
 　　　769以上　-　1280以下
 ------------------------------- */
   @media screen and (min-width: 769px) and (max-width: 1280px){
    .gnav li,.s-gnav li{
      padding: 5px 1rem;
      font-size: .9rem;
    }
    /*-------- eyecatch（3col） --------*/
    .eyecatch {
      height: calc(100vh - 100px);
      max-height: 650px;
    }
    .center-col {
      height: calc(100vh - 100px);
      max-height: 650px;
    }
  }
 /* -------------------------------
 　　　769以上　-　1199以下
 ------------------------------- */
   @media screen and (min-width: 769px) and (max-width: 1199px){
    .headerInner,.subnavInner{
      width: 100%;
      padding: 0 50px 0 300px;
    }
    .gnav li,.s-gnav li{
      padding: 5px .8rem;
      font-size: .9rem;
    }
    .gnav i{padding: 5px 5px 10px 0;}
    .s-gnav li{
      padding: 5px .8rem;
      font-size: .9rem;
    }
    .s-gnav i{padding: 5px 5px 10px 0;}
    .fcontents,.fnav-wrap{
      width: 100%;
    }
    /*-------- eyecatch（3col） --------*/
    .eyecatch {
      height: calc(100vh - 100px);
      max-height: 600px;
      margin-bottom: 50px;
    }
    .center-col {
      height: calc(100vh - 100px);
      max-height: 600px;
    }
    .side-col {width: 60px;}
    .crsnsicon{
      width: 45px;
      height: 45px;
      margin: 5px 20px;
      font-size: 1.3rem;
    }
    /*----------- underpage eyecatch ----------*/
    .sub-eyecatch {
      height: 300px;
      padding: 0 60px;
    }
    .sc-inner{
      padding: 30px 100px;
      font-size: 1.8rem;
    }
    .sc-inner p{
      font-size: 1.2rem;
    }
  }
 /* ----------------------------------------
 　　　タブレットサイズ　769以上　-　1024以下
 ---------------------------------------- */
  @media screen and (max-width:1023px){
    .ph{display: block;}
    .headerInner{display: none;}
    .pcnone{display: none;}
    .pc{display: none;}
    .pc-slide{display: none;}
    header{
    width: 100%;
    height: 60px;
    background: var(--main-bg-color);
    position: relative;
    z-index: 20;
    }
    .ph-headerInner{
    position: fixed;
    width: 100%;
    height: 60px;
    background: var(--main-bg-color);
    }
    .phlogo{
    width: 300px;
    height: 60px;
    text-align: center;
    display: inline-block;
    background: #d4b382;
    }
    .phlogo img{
    margin-top: 15px;
    width: 250px;
    }
    a.tel i{
    position: absolute;
    top: 0;
    right: 60px;
    font-size: 1.5rem;
    line-height: 60px;
    text-decoration: none;
    color: var(--main-text-color);
    }
    /* -- drawer nav -- */
    .drawer-nav{
    width: 100%;
    background-color:#ffffff;
    padding: 20px 15px;
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    }
    .drawer-inner{
    width: 100%;
    height: 100%;
    padding-top: 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    }
    .drawer-nav img{margin: 5px 0 0 30px;}
    .drawer-menu{width: 100%;}
    .drawer-menu li{
    width: 100%;
    height: 60px;
    margin: auto;
    padding-left: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 60px;
    text-align: left;
    border-bottom:1px solid #000000;
    }
    .drawer-menu li i{
    display: inline-block; /* 幅を指定できるようにする */
    width: 1.5em;          /* アイコンの「入れ物」の幅を固定（1.5文字分くらい） */
    text-align: center;    /* 箱の中でのアイコン位置を中央にする */
    padding-right: 10px;   /* アイコンとテキストの間の余白を調整 */
    color: #333333;
    }
    .drawer-menu li a{
    display: block;
    width: 100%;
    margin: 15px auto;
    color: #333333;
    }
    .pnsns{
      width: auto;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: start;
    }
    .pnsnsicon{
      width: 60px;
      height: 60px;
      margin: 5px 0 0 20px;
      font-size: 1.6rem;
      color: var(--main-text-color);
      border: solid 2px var(--main-text-color);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .drawer--right.drawer-open .drawer-hamburger {
    right: 0px;
    z-index: 200;
    }
    .drawer-hamburger-icon,
    .drawer-hamburger-icon::before,
    .drawer-hamburger-icon::after{
    background-color: #000000;
    }
    /* --- 修正ポイント --- */
    /* 右側から出てくる設定（drawer--right）の場合 */
    .drawer--right .drawer-nav {
    /* メニューの幅を100%に設定 */
    width: 100%;
    /* 閉まっている時は、画面の右側へ100%分移動させて完全に隠す */
    right: -100%;
    /* アニメーションを滑らかにする（必要に応じて） */
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    }
    /* メニューが開いた時（drawer-open）の状態を上書き */
    .drawer--right.drawer-open .drawer-nav {
    right: 0;
    }
    /*-------- eyecatch（3col） --------*/
    .eyecatch {
      height: calc(100vh - 100px);
      max-height: 500px;
    }
    .center-col {
      height: calc(100vh - 100px);
      max-height: 500px;
    }
    .side-col {width: 60px;}
    /*----------- underpage eyecatch ----------*/
    .sub-eyecatch {
      height: 250px;
      padding: 0 40px;
    }
    .sc-inner{
      padding: 25px 80px;
      font-size: 1.5rem;
      border-radius: 15px;
    }
    .sc-inner p{
      font-size: 1.1rem;
    }
    /*----------------footer-------------------*/
    ul.fnav{
      font-size: 1rem;
    }
    ul.fnav-sub{
      font-size: .9rem;
    }
  } /* @media screen and (max-width:1023px) */
/** -------------------------------------------------
　　　モバイル用ベースレイアウト
------------------------------------------------- **/
/* ------------------------------
　　　スマホ用　基本設定
------------------------------ */
@media screen and (max-width:768px){
.ph{display: block;}
.headerInner{display: none;}
.pcnone{display: none;}
.pc{display: none;}
.pc-slide{display: none;}
body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 62.5%;
  background: var(--main-bg-color);
}
/* page-top */
.page-top{
  width: 60px;
  height: 60px;
  font-size: 1.3rem;
  color: var(--sub-text-color);
  background: var(--main-bg-color);
  border: 3px solid #612e01;
  border-radius: 50%;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index:10;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* -------------------
　　　header
------------------- */
header{
  width: 100%;
  height: 60px;
  background: var(--main-bg-color);
  position: relative;
  z-index: 20;
}
h1{
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 90px;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #d4b382;
  z-index: 100;
}
h1 img{
  margin-top: 25px;
  width: 150px;
}
.ph-headerInner{
 position: fixed;
 width: 100%;
 height: 60px;
  background: var(--main-bg-color);
}
.phlogo{
  width: 200px;
  height: auto;
  text-align: center;
  display: inline-block;
  height: 60px;
  background: #d4b382;
}
.phlogo img{
  margin-top: 20px;
  width: 180px;

}

a.tel i{
  position: absolute;
  top: 0;
  right: 60px;
  font-size: 1.5rem;
  line-height: 60px;
  text-decoration: none;
  color: var(--main-text-color);
}

/* -- drawer nav -- */
.drawer-nav{
  width: 100%;
  background: var(--main-bg-color);
  padding: 20px 15px;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-inner{
  width: 100%;
  height: 100%;
  padding-top: 30px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-nav img{margin: 5px 0 0 30px;}
.drawer-menu{width: 100%;}
.drawer-menu li{
  width: 100%;
  height: 60px;
  margin: auto;
  padding-left: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 60px;
  text-align: left;
  border-bottom:1px solid #000000;
}
.drawer-menu li i{
  display: inline-block; /* 幅を指定できるようにする */
  width: 2rem;          /* アイコンの「入れ物」の幅を固定（1.5文字分くらい） */
  text-align: center;    /* 箱の中でのアイコン位置を中央にする */
  margin-right: 10px;   /* アイコンとテキストの間の余白を調整 */
  color: #333333;
}
.drawer-menu li a{
  display: block;
  width: 100%;
  margin: 15px auto;
  color: #333333;
}
.pnsns{
  width: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
.pnsnsicon{
  width: 60px;
  height: 60px;
  margin: 5px 0 0 20px;
  font-size: 1.6rem;
  color: var(--main-text-color);
  border: solid 2px var(--main-text-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 0px;
  z-index: 300;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon::before,
.drawer-hamburger-icon::after{
  background-color: #000000;
}

/* 右側から出てくる設定（drawer--right）の場合 */
.drawer--right .drawer-nav {
  /* メニューの幅を100%に設定 */
  width: 100%;
  /* 閉まっている時は、画面の右側へ100%分移動させて完全に隠す */
  right: -100%;
  /* アニメーションを滑らかにする（必要に応じて） */
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
/* メニューが開いた時（drawer-open）の状態を上書き */
.drawer--right.drawer-open .drawer-nav {
  right: 0;
}
/* もし左側から出している場合はこちら */
.drawer--left .drawer-nav {
  width: 100%;
  left: -100%;
}
.drawer--left.drawer-open .drawer-nav {
  left: 0;
}
/* 「drawer-hamburger」というクラスに対して追加 */
.drawer-hamburger {
  position: fixed !important; /* 絶対に画面右上に固定 */
  z-index: 999 !important;    /* あらゆる要素の最前面に */
}
/* アイキャッチ（3カラム） */
.eyecatch {
  width: 100%;
  height: 450px;
  padding: 0 15px 15px;
}
.cleft,.cright {
  display: none;
}

.center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  min-height: 450px;

  position: relative;
  overflow: hidden;
}
.center-content {
  position: relative;
  z-index: 2; /* スライダーより上 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
  line-height: 1.5;
}
.cc-inner{
  color: var(--main-text-color);
  padding: 20px 15px;
  text-align: center;
}
/*----------------slider-------------------*/
#custom-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.slide-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  /* transitionを「opacity」のみに絞り、時間をJSと統一します */
  transition: opacity 1000ms ease-in-out;
}
/* 表示中のスライド（一番上） */
.slide-item.active {
  opacity: 1;
  z-index: 3;
}
/* 消えていくスライド（activeの下で待機） */
.slide-item.last-active {
  opacity: 0;
  z-index: 2;
}
.slide-item img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}
/* activeの時だけでなく、last-activeの時もアニメーションを継続させる */
.slide-item.active img,
.slide-item.last-active img {
    animation: zoomOut 5000ms linear forwards;
}
/*----------- underpage eyecatch ----------*/
.sub-eyecatch {
  display: flex;
  width: 100%;
  height: 180px;
  padding: 0 15px;
}
.sub-center-col {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.sc-inner{
  color: var(--main-text-color);
  padding: 20px 50px;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, .5);
}
.sc-inner p{
  font-size: 1rem;
  font-weight: bold;
}
/*----------------footer-------------------*/
footer{width: 100%;}
.footerInner{
  width: 100%;
  height: 500px;
  background: var(--footer-bg-color);
  color: #ffffff;
  font-size: 1.5rem;
}
.fcontents{
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  text-align: center;
  font-weight: bold;
}
.fcontents h2{
  font-size: 5rem;
  height: 100px;
}
p.fnote{
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5rem;
}
p.ftel{
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
p.ftel i{
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: .5rem;
}
p.ftime{
  font-size: 1rem;
  margin:5px 0 25px; 
}
a.fcontact{
  font-size: 1.1rem;
  color: #ffffff;
  display: inline-block;
  height: 80px;
  border: 2px solid #ffffff;
  padding: 25px 80px;
  margin-bottom: 20px;
}
a.fcontact i{
  margin-right: 1rem;
}
.fsns{
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fsnsicon{
  width: 60px;
  height: 60px;
  margin: 5px 20px;
  font-size: 1.6rem;
  color: #ffffff;
  border: solid 3px #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer nav{
  display: none;
}
.copy{
  width: 100%;
  height: 80px;
  font-size: .8rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #e7e7e7; 
  line-height: 1.1rem;
}
} /* @media screen and (max-width:768px) */

@keyframes zoomOut {
    0% { transform: scale(1.2); }
    100% { transform: scale(1.0); }
}
