@charset "UTF-8";
/* CSS Document */
/* ===== 変数・ベース ===== */ :root {
  --ink: #1a1a1a;
  --paper: #fff;
  --accent: #71511E; /* 金色風（後で調整OK） */
  --deep: #1f1f1f;
  --plum: #6d5a7b; /* タブの紫（後で調整OK） */
}
html {
  scroll-behavior: smooth
}
body {
  color: var(--ink);
  background: #fff
}
body.enkai {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  margin-bottom: 30px;
}
.logo {
  mix-blend-mode: difference;
}
p a {
    color: #000000;
}
p a:hover {
    opacity: 0.8;
}
p.text-white a {
    color: #fff;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-weight: 600;
  line-height: 2rem;
}
h1,.h1 {
  font-size: clamp(1.75rem, 7vw, 2.3rem);
}
h2,.h2 {
  font-size: clamp(1.75rem, 7vw, 2rem);
}
h3,.h3 {
  font-size: clamp(1.25rem, 5vw, 1.7rem);
}
h4,.h4 {
  font-size: clamp(1.25rem, 5vw, 1.5rem);
}
h5,.h5 {
  font-size: clamp(1rem, 5vw, 1.3rem);
}
.h6 {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

p,.p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}
.gothic {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif!important;
}
.bg-brown {
    background-color: #675743;
}
.line-black {
    line-height: 1rem;
    border: 2px solid #000000;
}
.line-1 {
  line-height: 1rem;
}
.line-15 {
  line-height: 1.5rem!important;
}
.line-2 {
  line-height: 2rem!important;
}
.line-1em {
  line-height: 1em!important;
}
.line-2em {
  line-height: 2em;
}
small {
  font-size: 0.75em;
}
small.en {
  font-size: 15px;
}
small.en-course {
  font-size: 20px;
}
span.maru-green {
  background-color: #FFFFFF;
  border-radius: 100px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  color: #283610;
}
span.waku-white {
  border: 1px solid #FFFFFF;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}
span.waku-red {
  border: 1px solid #E30000;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}
span.waku-black {
  border: 1px solid #000;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: clamp(1rem, 5vw, 1.1rem);
}
span.box-2 {
  width: 150px;
}
span.bg-gold-b {
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  background-color: #71511E;
  font-size: 17px;
}
span.bg-gold {
  padding-top: 7px;
  padding-right: 10px;
  padding-bottom: 7px;
  padding-left: 10px;
  background-color: #71511E;
  font-size: 0.7em;
  color: #FFFFFF;
}
span.bg-brown {
  padding-top: 7px;
  padding-right: 10px;
  padding-bottom: 7px;
  padding-left: 10px;
  background-color: #5A3C0D;
  font-size: 0.7em;
  color: #FFFFFF;
}
span.bg-glay {
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  background-color: #434343;
  font-size: 17px;
  color: #FFFFFF;
}
span.bg-black {
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  background-color: #000;
  font-size: 17px;
  color: #FFFFFF;
}
a figure {
  overflow: hidden;
}
a figure img.img-fluid {
  display: block;
  transition-duration: 0.3s; /*変化に掛かる時間*/
}
a:hover figure img.img-fluid {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.box-yajirushi {
  position: relative;
}
.box-yajirushi:before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 50%);
  background-image: url(../img/icon-under-yajirushi.svg);
  background-repeat: no-repeat;
  width: 7px;
  height: 50px;
}
.box-square {
  aspect-ratio: 1;
  position: relative;
}
.box-square:before {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 52%;
  transform: translate(-50%, 50%);
  background-image: url(../img/icon-under-yajirushi.svg);
  background-repeat: no-repeat;
  width: 7px;
  height: 20px;
}
.box-3 {
  width: 80px;
  height: 38px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  line-height: 0.9rem;
  font-size: 0.7rem;
}
span.box-1 {
  padding-right: 41px;
  padding-left: 41px;
}
.box-2 {
  width: 150px;
}
.h-box {
  height: calc(100% - 112px);
}
.fixd-menu {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.logo-top {
  position: fixed;
  width: 100%;
  height: auto;
  max-width: 200px;
  top: 20px;
  left: 90px;
  z-index: 2;
     filter: invert(1);
mix-blend-mode: difference;   
}

.logo-top a img:hover {
    cursor:pointer;
}

.logo-top2 {
     position: fixed;
  width: 100%;
  height: auto;
  max-width: 56px;
  top: 20px;
  left: 20px;
  z-index: 3;
}
.hero-img {
    width:100vw;
    height: 100vh;
}
.fv-top-s {
    background-image: url(../img/fv-top-s.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
    .fv-top-s {
    background-image: url(../img/fv-top-sp2.jpg);
}
}
.photo-cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* -----------------------------------
   共通構造
----------------------------------- */
.cp_fullscreenmenu {
  position: fixed;
  z-index: 100;
  top: 0px;
  right: 0px;
}

/* ハンバーガーボタン */
.cp_fullscreenmenu .hamburger {
  position: relative;
  z-index: 120;
  width: 50px;
  height: 50px;
  padding: 0.5em 1em;
  cursor: pointer;
  background: #383838;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
    
}
.cp_fullscreenmenu .hamburger > span {
  position: absolute;
  width: 18px;
  height: 0px;
  background: #fff;
  transition: all .4s ease;
  left: 16px;
}
.cp_fullscreenmenu .hamburger > span::before,
.cp_fullscreenmenu .hamburger > span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1px;
  background: #fff;
  transition: all .4s ease;
  left: 0;
}
.cp_fullscreenmenu .hamburger > span::before { top: -8px; }
.cp_fullscreenmenu .hamburger > span::after { top: 8px; }

/* 開いた時のバー変形 */
html.menu-open .cp_fullscreenmenu .hamburger > span {
  transform: rotate(135deg);
    height: 1px;
}
html.menu-open .cp_fullscreenmenu .hamburger:hover > span {
  transform: rotate(225deg);
}
html.menu-open .cp_fullscreenmenu .hamburger > span::before {
  top: 0;
  transform: rotate(90deg);
}
html.menu-open .cp_fullscreenmenu .hamburger > span::after {
  top: 0;
  opacity: 0;
}


.cp_fullscreenmenu .hamburger:hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* -----------------------------------
   メニュー本体
----------------------------------- */
.cp_fullscreenmenu .menu {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  z-index: 110;
  transition: visibility 0s linear .8s; /* ← 閉じる時に少し遅延をつける */
}

/* 開いた状態 */
html.menu-open .cp_fullscreenmenu .menu {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

html.menu-open .cp_fullscreenmenu .menu::before {
  transform: translate(-50%, -50%) scale(1);
}

html.menu-open .cp_fullscreenmenu .menu ul {
    opacity: 1;
    padding-left: 0px;
}

/* ズームで拡大する青い円 */
.cp_fullscreenmenu .menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 150vw;
  background: #383838;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

/* メニューリスト */
.cp_fullscreenmenu .menu ul {
  list-style: none;
  text-align: center;
 opacity: 0;
  position: relative;
  z-index: 2;
transition: opacity .4s ease .3s;
}

.cp_fullscreenmenu .menu li {
  font-size: 24px;
  margin: 1em;
}
.cp_fullscreenmenu .menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
.cp_fullscreenmenu .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .4s ease;
}
.cp_fullscreenmenu .menu a:hover::after {
  width: 100%;
}

/* -----------------------------------
   開いた状態
----------------------------------- */
html.menu-open .cp_fullscreenmenu .menu {
  visibility: visible;
  pointer-events: auto;
}

html.menu-open .cp_fullscreenmenu .menu::before {
  transform: translate(-50%, -50%) scale(1);
}

html.menu-open .cp_fullscreenmenu .menu ul {
  opacity: 1;
}



/* -----------------------------------
   スクロールロック
----------------------------------- */
html.menu-open {
  overflow: hidden;
}

/* -----------------------------------
   メディア調整
----------------------------------- */

/* 開いた時：通常のバッテン（135°） */
html.menu-open .cp_fullscreenmenu .hamburger {
    background-color: hsla(0,0%,100%,1.00);
}
html.menu-open .cp_fullscreenmenu .hamburger > span {
  transform: rotate(135deg);
    background: #000;
}

/* 開いた状態で hover した時：さらに90°（225°）に回転 */
html.menu-open .cp_fullscreenmenu .hamburger:hover > span {
  transform: rotate(225deg);
}

/* バーの上下もそのまま維持 */
html.menu-open .cp_fullscreenmenu .hamburger > span::before,
html.menu-open .cp_fullscreenmenu .hamburger > span::after {
  top: 0;
  transform: rotate(90deg);
    background: #000;
}
html.menu-open .cp_fullscreenmenu .hamburger > span::after {
  opacity: 0;
}
/* 初期状態：非表示・下方向へずらしておく */
.cp_fullscreenmenu .menu ul li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}

/* 開いたとき：順番にフェードイン */
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(1) { transition-delay: 0.2s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(2) { transition-delay: 0.3s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(3) { transition-delay: 0.4s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(4) { transition-delay: 0.5s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(5) { transition-delay: 0.6s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(6) { transition-delay: 0.7s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(7) { transition-delay: 0.8s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(8) { transition-delay: 0.9s; }
html.menu-open .cp_fullscreenmenu .menu ul li:nth-of-type(9) { transition-delay: 1.0s; }


.cp_fullscreenmenu .menu div img {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}

html.menu-open .cp_fullscreenmenu .menu div img {
    opacity: 1;
width: 300px;
margin-left: auto;
margin-right: auto;
    color: #fff;
     transition: opacity .4s ease, transform .4s ease;
}

html.menu-open .cp_fullscreenmenu .menu ul li {
  opacity: 1;
  transform: translateY(0);
    width: 50%;
margin-left: auto;
margin-right: auto;
color: #FFF;
text-align: left;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 10px;
margin-top: 10px;
}
.cp_fullscreenmenu .menu ul li {
    width: 50%;
margin-left: auto;
margin-right: auto;
color: #FFF;
text-align: left;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 10px;
margin-top: 10px;
}

html.menu-open .cp_fullscreenmenu .menu ul li a,.cp_fullscreenmenu .menu ul li a,.cp_fullscreenmenu .menu ul li a,.cp_fullscreenmenu .menu ul li a {
    width: 100%;
    background-color: #1F1F1F;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: normal;
}

.cp_fullscreenmenu .menu div.waku {
    display: flex;
overflow: hidden;
width: 100vw;
width: 100lvw;
height: 100vh;
height: 100lvh;
    max-width: 700px;
    backface-visibility: hidden;
align-items: center;
justify-content: center;
    z-index:1;
}

@media (max-width: 1199.98px) {
.cp_fullscreenmenu .menu::before {
width: 300vw;
height: 300vw;
}
}
@media (max-width: 575.98px) {
html.menu-open .cp_fullscreenmenu .menu ul li a,.cp_fullscreenmenu .menu ul li a,.cp_fullscreenmenu .menu ul li a,.cp_fullscreenmenu .menu ul li a {
    font-size: 0.9rem;
}
}

html.menu-open .cp_fullscreenmenu .menu ul,.cp_fullscreenmenu .menu ul {
display: flex;
flex-wrap: wrap;
margin-top: 10px;
}
html.menu-open .cp_fullscreenmenu .menu ul.second-menu li,.cp_fullscreenmenu .menu ul.second-menu li {
width: 50%;
padding-left: 10px;
padding-right: 10px;
margin-top: 10px;
margin-bottom: 10px;
}
html.menu-open .cp_fullscreenmenu .menu ul.second-menu li a,.cp_fullscreenmenu .menu ul.second-menu li a {
background-color: #20B2D5 !important;
}
/* -----------------------------------
   キーボード操作での見やすさ
----------------------------------- */
.cp_fullscreenmenu .hamburger:focus-visible,
.cp_fullscreenmenu .menu a:focus-visible {
  outline: 3px solid rgba(255,255,255,.9);
  outline-offset: 3px;
  border-radius: 6px;
}
.menu-logo {
max-width: 250px;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
}

/* ===== 色など ===== */
.text-accent {
  color: #71511E;
}
.text-green {
  color: #4D6A1B;
}
.text-red {
  color: #960000;
}
.bg-gray {
  background: #383838;
}
.bg-d-gray {
  background: #1F1F1F;
}
.bg-green {
  background: #2A3616;
}
.bg-red {
  background: #550000;
}
.bg-hotel {
  background: #665377;
}
.bg-brown {
  background-color: #5A3C0D;
}
.bg-d-brown {
  background-color: #4A3007;
}
.bg-orange {
  background-color: #CC5520;
}
.bg-banner {
  background-image: url(../img/bg-eat.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
}
/* 余白ユーティリティ */
.section {
  padding: 64px 0
}
.section--alt {
  background: #f7f4ee
}
.section--nav {
  padding: 16px 0
}
/* ===== ヒーロー ===== */
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.hero__roundbtn {
  position: fixed;
  right: clamp(12px, 4vw, 100px);
  bottom: clamp(100px, 4vw, 500px);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #D19D0C;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.8rem, 2.4vw, 1.1rem);
  z-index: 1; 
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.hero__roundbtn:hover {
    transition-duration: 0.3s; /*変化に掛かる時間*/
    transform: scale(1.1);
}
.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.hero-top-title {
  position: absolute;
  bottom: 10vh;
  left: 77%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}
.hero-copy-title h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.hero-copy-title h1 {
  position: absolute;
  top: 20%;
  left: 20%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  height: calc(100% - 50%);
}
.img-fluid2 {
  height: 100%;
  width: auto;
  aspect-ratio: 1;
}
@media (max-width: 767.98px) {
    .hero-big {
    width: 80%;
}
  .hero__roundbtn {
    width: 100px;
    height: 100px;
  }
  .hero-top-title {
    position: absolute;
    bottom: 0vh;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 500px;
  }
  .hero-copy-title h1 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .hero-copy-title h1 img {
    height: 75%;
  }
}
/* ===== タブ風ナビ ===== */
.menu-logo {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .menu-logo {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
.logo-enkai {
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  text-align: center;
}
.logo-enkai img {
  height: 100%;
  line-height: 1em;
}
.enkai-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}
.enkai-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 250px;
  text-align: center;
}
.enkai-tel p {
  margin-bottom: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
}
.tel-dl {
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
.tel-dl dt img {
  width: 20px;
  margin-bottom: 0px;
  margin-right: 10px;
  line-height: 1rem;
}
.tel-dl dd {
  font-size: clamp(0.7rem, 2.5vw, 1.75rem);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 1em;
}
.enkai-contact {
  height: 100%;
}
.enkai-contact a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  line-height: 1rem;
  width: 100%; /* 横幅いっぱい */
  height: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.enkai-contact a:hover {
  opacity: 0.8;
}
.nav {
  width: 100%;
  margin-left: 0px;
  margin-right: auto;
  max-width: 50%;
}
.nav-item {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  width: 25%;
     transition-duration: 0.3s;
}
.nav-item:hover {
    transition-duration: 0.3s;
    background-color: hsla(0,0%,100%,0.10);
    border: 0px solid #000000;
}
.nav-link {
  width: 100%;
  height: 100%;
  border-radius: 0px !important;
  line-height: 3rem;
  color: #FFFFFF;
  text-align: center;
}
.nav-capsule .nav-link {
  padding: .5rem 1rem;
  margin: 0 .25rem;
  font-weight: 600;
  color: #FFFFFF;
}
.nav-item .nav-link {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
}
.nav-item .nav-link:hover {
  opacity: 0.8;
  color: #FFFFFF;
}
.nav-capsule .nav-link:hover {
  background: #eee
}
.nav-capsule .nav-link.active {
  background: var(--plum);
  color: #fff;
}
@media (max-width: 991.98px) {
  .nav {
    max-width: 60%;
  }
}
@media (max-width: 767.98px) {
  .nav {
    max-width: 100%;
  }
  .nav-item {
    width: 33.3%;
  }
  .nav-item:last-child {
    width: 33.4%;
  }
  .nav-link {
    font-size: clamp(0.7rem, 0.5vw, 1rem) !important;
    line-height: 0.7rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .nav-link img {
    margin-bottom: 7px;
    width: 20px;
    height: auto;
  }
}
/* ===== コースカード ===== */
.course .card-body {
  padding-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 28px;
}
.course .lead {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
}
.course .card-footer {
  background: #fff
}
.kasane {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: -1;
  width: calc(100% + 50px);
  padding-left: 100px;
  padding-right: 50px;
}
.kasane-box {
  width: 70%;
  max-width: 300px;
}
.kasane-box2 {
  width: 80%;
  max-width: auto;
  min-width: 0px;
}
dl.nedan dt {
  border: 1px solid #000000;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  line-height: 1em;
  margin-bottom: 0px;
  margin-right: 20px;
  font-weight: normal;
}
dl.nedan dd {
  line-height: 1em;
  margin-bottom: 0px;
}
ul.list-unstyled-se {
  padding-bottom: 0px;
  margin-bottom: 0px;
  list-style-type: none;
  padding-left: 0px;
}
ul.list-unstyled, ul.list-unstyled-se {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
ul.list-unstyled li {
  line-height: 1.2rem;
  margin-bottom: 0px;
  padding-bottom: 15px;
}
ul.list-unstyled-se li {
  line-height: 1.2rem;
  margin-bottom: 0px;
  padding-bottom: 5px;
}
.py-custom1 {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .py-custom1 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .logo-top {
    position: fixed;
    width: 100%;
    height: auto;
    max-width: 150px;
    top: 20px;
    left: 65px;
  }
    .logo-top2 {
  max-width:35px;
}
  .kasane {
    position: static;
    top: 50px;
    right: 0px;
    z-index: 0;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px;
  }
  .kasane-box {
    width: 90%;
    max-width: 500px;
    margin-top: 0px;
  }
}
.btn-plus {
  position: relative;
}
.btn-plus:after {
  content: '＋';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 30px;
  height: 30px;
  color: #FFFFFF;
  font-size: 20px;
}
.btn-plus a {
  text-decoration: none;
  line-height: 1.2rem;
}
.btn-plus a:hover {
  opacity: 0.8;
}
.btn-brown {
  background-color: #71511E;
  color: #FFFFFF;
  text-decoration: none;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.btn-white {
  background-color: #FFFFFF;
  color: #5A3C0D;
  text-decoration: none;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  position: absolute;
  bottom: 0px;
  right: 0px;
    transition-duration: 0.3s;
}
.btn-white:hover {
    transition-duration: 0.3s;
  padding-right: 30px;
  padding-left: 30px;
    
}
.btn-white2 {
  background-color: #FFFFFF;
  color: #000;
  text-decoration: none;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  position: absolute;
  bottom: 0px;
  right: 12px;
  font-size: 1.2rem;
}
.btn-white3 {
    background-color: #FFFFFF;
    color: #000;
    text-decoration: none;
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 1.2rem;
    width: 200px;
    text-align: center;
}
.btn-brown2 {
    background-color: #675743;
    color: #fff;
    text-decoration: none;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 1.2rem;
    width: 200px;
    text-align: center;
}
.btn-brown:hover, .btn-white:hover {
  opacity: 0.8;
}
.btn-brown img, .btn-white img, .btn-white2 img {
  width: 20px;
  margin-left: 10px;
}
.btn-white2 img {
  width: 20px;
  margin-left: 30px;
}
.btn-p {
  right: 12px;
}
.pe-box {
  padding-right: 180px !important;
}
@media (max-width: 991.98px) {
  .pe-box {
    padding-right: 1.5rem !important;
    padding-bottom: 3.2rem !important;
  }
}
.btn-nomi a img {
  width: 5px;
}
.btn-nomi a:hover {
  opacity: 0.8;
}
.btn-menu {
  margin-top: 0px;
    transition-duration: 0.3s;
}
.btn-menu a:hover {
    transition-duration: 0.3s;
    background-color: hsla(0,0%,100%,0.30);
    border: 0px solid #000000;
}
.btn-menu a {
  font-size: clamp(0.7rem, 2.4vw, 1.2rem);
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1.5em;
  display: inline-block;
}

.btn-menu a small {
  font-size: 0.8rem;
  ;
  color: #FFFFFF;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.icon-plus {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  max-width: 40px;
}
.img-hamidashi {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .img-hamidashi {
    position: static;
    width: 100%;
    height: auto;
    top: 0%;
    left: 0%;
    transform: none;
  }
}
table.table01 {}
table.table01 th, table.table01 td {
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}
table.table01 th {
  color: #FFFFFF;
  background-color: #383838;
  border-right: 3px solid #F9F4ED;
  font-weight: normal;
}
table.table01 tr {
  border: 3px solid #F9F4ED;
}
table.table01 td {
  background-color: #FFFFFF;
  border-right: 3px solid #F9F4ED;
  font-weight: normal;
}
dl dt {
  color: #FCD28C;
}
.box-q {
  text-align: left;
  background: #383838;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.box-q p {
  position: relative;
  padding-left: 50pt;
  color: #FFFFFF;
}
.box-q:before {
  position: absolute;
  z-index: 1;
  bottom: 50%;
  left: -1%;
  transform: translate(50%, 50%);
  width: 40pt;
  height: 40pt;
  content: '';
  transition: width 0.4s ease;
  text-decoration: none;
  background-image: url(../img/img_q.svg);
  background-size: 40pt 40pt;
  background-position: center center;
}
.box-a {
  text-align: left;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #F5F2EA;
}
.box-a p {
  position: relative;
  padding-left: 50pt;
}
.box-a:before {
  position: absolute;
  z-index: 1;
  bottom: 50%;
  left: -1%;
  transform: translate(50%, 50%);
  width: 40pt;
  height: 40pt;
  content: '';
  transition: width 0.4s ease;
  text-decoration: none;
  background-image: url(../img/img_a.svg);
  background-size: 40pt 40pt;
  background-position: center center;
}
.triangle-left, .triangle-right {
  position: relative;
}
.triangle-right:after {
  content: '';
  position: absolute;
  height: calc(40px / 2 * tan(60deg));
  width: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  bottom: 60%;
  right: 0%;
  transform: translate(100%, 50%);
  background: #F5F2EA;
}
.triangle-left:after {
  content: '';
  position: absolute;
  height: calc(40px / 2 * tan(60deg));
  width: 20px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  bottom: 60%;
  left: 0%;
  transform: translate(-100%, 50%);
  background: #383838;
}
@media (max-width: 767.98px) {
  .btn-white3 {
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
  }
  .bg-gray-sp {
    background: #383838 !important;
  }
  .bg-d-gray-sp {
    background: #1F1F1F !important;
  }
  .md-text-big {
    font-size: clamp(1rem, 4.4vw, 1.7rem);
  }
  h2.md-text-enkai {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
  .md-a-big {
    font-size: clamp(2rem, 10vw, 2rem) !important;
  }
}
