@charset "UTF-8";
/*bootstrap対策*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  line-height: 1;
  color: inherit
}
p {
  margin: 0;
}
dl,
ol,
.ul {
  margin: 0;
}
dt,
.dd {
  margin: 0;
}
label,
.figure {
  margin: 0;
  padding: 0;
}
/****************************/
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
a,
span,
address,
blockquote,
table,
tr,
th,
.td {
  /*transform: rotate(0.03deg);*/
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*overflow-x: hidden;*/
  /*横スクロールが出るのを隠すため*/
}
html {
  font-size: 62.5%;
  /*font-size: 0.390625vw*/
  /*期値を10pxとする場合：10/2560*100=0.396（表示させたい文字サイズ÷width×100*/
  /*transform: rotate(0.03deg);*/
}
html {
  scroll-padding-top: 70px;
  /* 固定ヘッダの高さ分 */
}
body {
  color: #000;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
  line-height: 2.1875;
}

/*iphone対策*/
button {
  appearance: none;
  -webkit-appearance: none;
  color: #000;
}

a {
  text-decoration: none !important;
}



/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
.titleA {
  display: grid;
  gap: 1rem;
  margin: 0 0 5rem;
}
.titleA :is(h2,h3) {
  font-size: 1.3rem;
  line-height: 1;
}
.titleA p {
  grid-row: 1/2;
  font-family: "Cookie", cursive, serif;
  font-size: 3.7rem;
  line-height: 1;
}
.buttonA {
  width: fit-content;
  min-width: 19rem;
  height: 3.6rem;
  border-radius: 0.5rem;
  background: #a28a6a;
}
.buttonA:hover{
  box-shadow: 0 0 1rem rgba(255,255,255,0.5) inset;
  transition: 0.5s;
}
.buttonA :is(a, span) {
  width: 100%;
  height: inherit;
  display: grid;
  align-items: center;
  color: #fff;
  text-align: center;
}
.buttonA:is(.youtube, .insta) a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}.buttonA.youtube a::after {
    content: "";
    background: url(/system_panel/uploads/images/icon_youtube.png) no-repeat;
    width: 1.3rem;
    height: 0.9rem;
    display: inline-block;
}
.buttonA.insta a::after {
    content: "";
    background: url(/system_panel/uploads/images/icon_insta.png) no-repeat;
    width: 2.1rem;
    height: 2.1rem;
    display: inline-block;
}



/*header*/
.header {
  width: 100%;
  height: 10rem;
  background: #fff;
  padding: 0 3.64vw 0 15.625vw;
  /* 7 30*/
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 9;
}
.header .col2 {
  display: flex;
  justify-content: space-between;
}
.header .col2 .left {
  width: 40%;
  min-height: 10rem;
}
.header .col2 .left .logo {
  width: auto;
  max-width: 25rem;
  padding: 1rem 0 0;
  position: relative;
}
.header .col2 .left .logo img {
  width: 100%;
  position: absolute;
}
.header .col2 .right {
  width: 67%;
  max-width: 90rem;
  align-self: end;
  padding: 0 0 2rem;
}
.header .col2 .right .nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header .col2 .right .nav>.ul {
  width: calc(100% - 7rem);
  display: flex;
  justify-content: space-between;
}
.header .col2 .right .nav>.ul>.li {
  list-style: none;
  position: relative;
}
.header .col2 .right .nav>.ul>.li:first-of-type{
  display: none;
}
.header .col2 .right .nav>.ul>.li:last-of-type{
  min-width: 19rem;
  height: 3.6rem;
  background: #a28a6a;
  border-radius: 0.5rem;
  display: grid;
  align-items: center;
  text-align: center;
  color: #fff;
}
.header .col2 .right .nav>.ul>.li:last-of-type:hover{
  box-shadow: 0 0 1rem rgba(255,255,255,0.5) inset;
  transition: 0.5s;
}
.header .col2 .right .nav>.ul>.li a {
  color: inherit;
}
.header .col2 .right .nav>.ul>.li>.ul {
  width: 100%;
  display: none;
  position: absolute;
}
.header .col2 .right .nav>.ul>.li>.ul>.li{
  list-style: none;
  width: 100%;
  height: 3.8rem;
  display: grid;
  align-items: center;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 1rem rgba(0,0,0,0.1);
  border-radius: 0.5rem;
}
.header .col2 .right .nav>.ul>.li:has(.ul):hover .ul {
  display: block;
}
.header .col2 .right .nav .insta {
  width: 3.6rem;
  height: 3.6rem;
  background: #cbb59b;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
.header .col2 .right .nav .instagram img {}





/*main*/
.main {
  background: #f4f2f0 url(/system_panel/uploads/images/main_bg.png) top center no-repeat;
  background-size: 100%;
}
.main>.titleA {
  padding: 9.5rem 0 16rem 15.625vw;
  /*30*/
}
.bottom {
  background: #e9e4d3 url(/system_panel/uploads/images/bottom_bg.png) left center no-repeat;
  padding: 11rem 0;
}
.bottom .inner .col2 {
  display: flex;
}
.bottom .inner .col2 .left {
  width: 50%;
}
.bottom .inner .col2 .right {
  width: 50%;
}
.bottom .inner .col2 .right .dl {
  width: 100%;
  min-height: 6.7rem;
  display: flex;
  align-items: center;
  padding: 0 2.08vw;
  /*4*/
  position: relative;
}
.bottom .inner .col2 .right .dt {
  width: 50%;
  color: #656565;
}
.bottom .inner .col2 .right .dd {
  width: 50%;
}
.bottom .inner .col2 .right .tel {
  background: #b7d1db;
  margin: 0 0 6rem;
}
.bottom .inner .col2 .right .tel::before {
  content: "";
  background: url(/system_panel/uploads/images/contactPhone.png) no-repeat;
  width: 8.2rem;
  height: 9.1rem;
  display: inline-block;
  position: absolute;
  left: -3.8rem;
  top: -4.9rem;
}
.bottom .inner .col2 .right .tel a {
  font-size: 2.5rem;
  color: #656565;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bottom .inner .col2 .right .tel a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_tel.png) no-repeat;
  width: 1.3rem;
  height: 2.3rem;
  display: inline-block;
}

.bottom .inner .col2 .right .mail {
  background: #c2d8cc;
}
.bottom .inner .col2 .right .mail::before {
  content: "";
  background: url(/system_panel/uploads/images/contactMail.png) no-repeat;
  width: 8.2rem;
  height: 8.9rem;
  display: inline-block;
  position: absolute;
  left: -3.8rem;
  top: -4.9rem;
}
.bottom .inner .col2 .right .mail a {
  font-size: 1.5rem;
  height: 3.6rem;
  background: #9ac2ad;
  color: #fff;
  display: grid;
  align-items: center;
  text-align: center;
}



/*footer*/
.footer {
  width: 100%;
  background: #f4f2f0;
  padding: 7rem 0;
}
.footer .inner .logo {}
.footer .inner .logo img {}
.footer .inner .copyright {
  text-align: center;
}
.footer .inner .insta {
  width: 3.6rem;
  height: 3.6rem;
  background: #cbb59b;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin: -4rem 0 3rem 19rem;
}






/*ページ遷移時のフェードイン効果*/
html {
  animation: fadein 3s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}




/*スムーススクロール*/
html {
  /*scroll-behavior: smooth;※smoooothでの使用は不可*/
}




/*-----ハンバーガーメニュー-----*/
.navToggle {
  display: none;
}




/*pagetopボタン用*/
.pagetop {
  position: fixed;
  bottom: 5rem;
  right: 10%;
  background: #000;
  color: #fff;
  width: 7rem;
  height: 7rem;
  z-index: 4;
}
.pagetop a {
  width: inherit;
  height: inherit;
  display: inline-grid;
  place-items: center;
  color: #fff;
}




/*.headerSwitch用*/
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header {
}
.header.scroll-nav {
}
/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.header.scroll-nav :is(.logo, .ul .li a) {
}




/*アコーディオン*/
.aco2 {
  display: none;
  /*初期状態で開いておく場合はinitialに変更*/
}
#wrapper .aco2 {
  display: initial;
  /*初期状態で開いておく場合はinitialに変更*/
}
.aco-open {
  position: relative;
}
.aco-open::after {
  /* 閉じている時 */
  content: "×";
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: #b6e0c2;
}
.aco-open.active::after {
  /* 開いている時 */
  content: "＋";
  font-size: 5rem;
  color: #b6e0c2;
  top: 1.5rem;
}






/*mame*/
[class^="mame"] {
  animation: mame 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
[class^="mame"] img {
  width: 100%;
}

@keyframes mame {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}



/*========= 流れるテキストslideAnime ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}




/*wow.js（animate.cssのスクロールのタイミングに発動させるライブラリ）用*/
.box {
  animation-fill-mode: forwards;
}




/*animate.cssの追加css*/
.animate__delay-1s {
  animation-delay: calc(var(--animate-delay)*0.5) !important;
}
.animate__delay-2s {
  animation-delay: calc(var(--animate-delay)*1) !important;
}
.animate__delay-3s {
  animation-delay: calc(var(--animate-delay)*1.5) !important;
}
.animate__delay-4s {
  animation-delay: calc(var(--animate-delay)*2) !important;
}
.animate__delay-5s {
  animation-delay: calc(var(--animate-delay)*2.5) !important;
}
.animate__delay-6s {
  animation-delay: calc(var(--animate-delay)*3) !important;
}