@charset "utf-8";
/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */
html *,
::before,
::after {
  box-sizing: border-box;
}
/* フォント */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: 'Noto Sans JP', sans-serif;/* GoogleFonts使用  */
  font-weight: 400; /* Noto Sans JPのレギュラーウェイトを指定 */
}
/* おもな太字タグのフォントウェイト設定 */
h1, h2, h3, h4, h5, h6, th, strong {
  font-weight: 700;
}
/* 標準的なリンクのテキスト色 */
a {
  color: white;
  text-decoration: none;
}
/* レスポンシブイメージと画像下スペース防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;/* 画像下のスペースを消す */
}
/**
 * ***************************************
 * スライド
 * ***************************************
 *
 * スライドコンテナ
 */
*,body,ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.slide1 { /* スライドさせるために必要なクラス */
  transform: translateX(0);
}
.slide2 { /* スライドさせるために必要なクラス */
  transform: translateX(-33.33%);
}
.slide3 { /* スライドさせるために必要なクラス */
  transform: translateX(-66.66%);
}
/* ↓ 左右のボタン */
.next-content{
  background-color: rgba(232, 131, 87, 1);
  width: 15vw;
  height: 10vh;
  position: absolute;
  bottom: 2vh;
  right: 0;
  border-top-left-radius:10px;
  border-bottom-right-radius:10px;
  border-bottom-left-radius:10px;
}
.next {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 5vw;
  bottom: 7vh;
  display: inline-block;
  vertical-align: middle;
  color: white;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  cursor: pointer;
}
.next::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
.prev-content{
  background-color: rgba(232, 131, 87, 1);
  width: 15vw;
  height: 10vh;
  position: absolute;
  bottom: 2vh;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  border-bottom-left-radius:10px;
}
.prev {
  display: inline-block;
  vertical-align: middle;
  color: white;
  line-height: 1;
  position: absolute;
  width: 1em;
  height: 0.1em;
  left: 5vw;
  bottom: 7vh;
  background: currentColor;
  cursor: pointer;
  z-index: 10;
}
.prev::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top left;
  position: absolute;
  top: 50%;
  left: -0.05em;
  box-sizing: border-box;
}

/* ↓ インジケーター */
.indicator {
  visibility: hidden;
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}
.indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  border: 2px #000 solid;
  cursor: pointer;
}
.indicator li:first-of-type {
  background-color: #000;
}
.li-txt-sub{
  text-align: left;
  margin-left: 10px;
  margin-bottom: 100px;
}

/**
 * ***************************************
 * メインコンテナ
 * ***************************************
 */
.post .main-img02{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.post .main-sub-txt01{
  border-radius: 10px;
  border: 1px solid red;
  background-color: black;
  color: white;
  width: 264px;
  height: 50px;
  margin: 20px 0px 20px 20px;
  padding: 15px;
}
.post .main-sub-txt02{
  width: 264px;
  height: 50px;
  text-align: center;
  margin: 20px 0px 20px 20px;
}
.post .main-sub-txt03{
  color:rgba(222, 73, 23, 1);
}
.post .main-txt06{
  padding-top: 20px;
}

/**
 * =======================================
 * PC用CSS
 * =======================================
 */
 @media screen and (min-width:1024px){
/**
 * ***************************************
 * スライド
 * ***************************************
 *
 * スライドコンテナ
 */
 .player{
  width: 100%;
 }
 .swiper-slide{
  width: 100%;
  height: 800px;
 }
.slide .slide-sp-content{
  display: none;
 }
/* ↓ スライドの外枠 */
.slide-wrapper {
  width: 98%;
  height: 700px;
  position: relative;
  overflow: hidden; /* はみ出したスライドを隠す */
}
/*  ↓ スライド（コンテンツ） */
.slide { /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  color: white;
}
.slide div { /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.slide div:nth-of-type(1){ /* 背景色 */
  background-color:rgba(149, 139, 136, 1);
}
.slide div:nth-of-type(2){ /* 背景色 */
  background-color: rgba(149, 139, 136, 1);
}
.slide div:nth-of-type(3){ /* 背景色 */
  background-color: rgba(149, 139, 136, 1);
}
.post .main-sub-txt04{
  font-size: 2vw;
  overflow-wrap:break-word;
}
.post .main-container06{
  display: flex;
  width: 100%;
  margin: 2vw;
}
.post .main-img06{
  margin-top: 5vh;
  margin-left: 5vh;
}
.post .main-txt06{
  margin-left: 5vw;
  margin-top: 5vh;
  width: 50%;
}
.post .main-img07{
  margin: 0vh 10vw 0vh 15vw; 
}
.post .main-txt07{
  margin-left: 5vw;
  margin-top: 15vh;
  width: 35%;
}
/**
 * ***************************************
 * スライドの下のスライドショー
 * ***************************************
 *
 * スライドの下のスライドショーコンテナ
 */
.slider-sp-content{
  display: none;
 }
 .sp-txt-content{
  display: none;
 }
/**
 * ***************************************
 * ヘッダー
 * ***************************************
 *
 * ヘッダーコンテナ
 */
 .header-container {
  margin: 0 auto;
  padding: 0 20px;
  background-color:rgba(248, 246, 240, 1);
  height: 50px;
}
/**
 * ***************************************
 * メインコンテナ
 * ***************************************
 */
 .post .page-main{
  margin-top: 50px;
}
.post .main-container {
  padding: 0vh 5vw;
  display: flex;
}
.post .main-container .txt-sp01 {
  margin-left: 3vw;
}
.post .main-container .txt-sp02 {
  margin-left: 11vw;
}
.post .main-container .txt-sp03 {
  margin-left: 5vw;
}
.post .main-eigyo-time{
  padding-top: 150px;
  padding-right: 5px;
  font-size: 2vw;
  width: 50%;
}
.post .main-img01{}
.post .main-txt01{
  text-align: center;
  padding: 50px 0px 0px 0px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4vw;
}
.main-item{
  margin-bottom: 30px;
  padding: 50px 10px;
  text-align: center;
}
.post .main-txt02{
  text-decoration: underline;
  text-align: center;
  margin: 100px 0px 50px 0px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4vw;
}
  /**
  * ***************************************
  * タブ
  * ***************************************
  *
  * タブコンテナ
  */
  .tab {}
  /* タブメニュー */
  .tab__menu {
    display: flex;
    flex-flow: column;
    align-items: flex-end; /* メニューを下揃え&高さを調整 */
    justify-content: center;
    min-height: 50px; /* メニュー切替時にタブがズレないように */
    padding: 0;
    margin: 0;
    float: right;
    background-color: black;
    margin-top: -50px;
    padding-top: 100px;
  }
  .tab__menu-item {
    list-style: none;
    height: 200px;
    padding: 8px 20px 0px 5px; /* メニューに高さを付ける */
    text-align: center;
    margin-right: 6px;
    background-color: black;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    color: white;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  /* is-activeがついている時のスタイル */
  .tab__menu-item.is-active {
    background-color:rgba(142, 142, 142, 1);
    color: black;
    padding: 8px 20px 0px 5px;;
  }
  /* タブパネル */
  .tab__panel {
  }
  .tab__panel-box {
    min-height: 400px; /* テキスト量が多くなっても対応できるように */
    padding: 10px 30px;
  }
  .tab__panel-box001 {
    display: none;
  }
  .tab__panel-box002 {
    display: none;
  }
  .tab__panel-box003 {
    display: none;
    margin-top: -100px;
  }
  /* is-showがついている時のスタイル */
  .tab__panel-box.is-show {
    display: block;
  }

  /**
  * ***************************************
  * メニュー
  * ***************************************
  *
  * メニューコンテナ
  */
  .sp-menu-btn{
    display: none;
  }
  .sp-menu-top{
    display: none;
  }
  .tab__panel-container{
    margin: 0 auto;
    padding: 0 20px;
    background-color:rgba(248, 246, 240, 1);
    display: flex;
  }
  .tab-pnl002 .tab__panel-box.is-show {
    display: block;
    padding: 0px;
    margin-top: -50px;
  }
  .menu-btn{
    border-radius: 100px;
    display: block;
    width: 150px;
    padding: 15px;
    box-sizing: border-box;
    background:rgba(80, 123, 84, 1);
    ;
    color: #FFF;
    text-decoration: none;
    text-align: left;
    margin: 10px 30px;
  }
  .tab__panel-container-menu{
    background-color: white;
    width: 100%;
  }
  .menu-img01{
    margin: 30px 150px;
    position: relative;
  }
  .menu-top-content01{
    margin: -150px 20px 0px 3px ;
    width: 500px;
    height: 100px;
    background-color: white;
    position: absolute;
    border-radius: 10px;
  }
  .post .menu-img02{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .menu-item{
    margin-bottom: 30px;
    text-align: center;
    border: solid 1px rgba(67, 47, 41, 0.1);
    ;
  }
  .menu-sub-txt01,.menu-sub-txt02{
    margin: 20px;
  }
  /**
  * ***************************************
  * ページ下部
  * ***************************************
  *
  * ページ下部コンテナ
  */
  .bottom-container {
    padding: 0vh 10vw 0vh 10vw;
    background-color: #000;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin: 0px 100px 0px 100px;
    display: flex;
  }
  /**
  * ***************************************
  * フッター
  * ***************************************
  *
  * フッターコンテナ
  */
  .footer-container {
    padding: 20px;
    background-color: #000;
    margin: 0px 100px;
  }
  .footer-container .footer-line{
    border-top: 1px solid white;
    display: flex;
  }
  .footer-container .footer-txt01 {
    color: white;
    margin: 0vh 7vw;
    font-size: 1vw;
  }
  .bottom-container .bottom-txt01{
    color: white;
    margin: 1vh 0vw 0vh 25vw;
  }
  .bottom-container .bottom-txt02{
    color: white;
    margin: 1vh 0vw 0vh 5vw;
  }
  .bottom-container .bottom-txt01 li,.bottom-container .bottom-txt02 li{
    padding: 10px 0px;
  }
 }

/**
 * =======================================
 * タブレット用CSS
 * =======================================
 */
@media screen and (min-width:481px) and (max-width:1023px){
/**
 * ***************************************
 * スライド
 * ***************************************
 *
 * スライドコンテナ
 */
 .player{
  width: 100%;
 }
 .slide .slide-sp-content{
  display: none;
 }
/* ↓ スライドの外枠 */
.slide-wrapper {
  width: 98%;
  height: 700px;
  position: relative;
  overflow: hidden; /* はみ出したスライドを隠す */
}
/*  ↓ スライド（コンテンツ） */
.slide { /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  color: white;
}
.slide div { /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.slide div:nth-of-type(1){ /* 背景色 */
  background-color:rgba(149, 139, 136, 1);
}
.slide div:nth-of-type(2){ /* 背景色 */
  background-color: rgba(149, 139, 136, 1);
}
.slide div:nth-of-type(3){ /* 背景色 */
  background-color: rgba(149, 139, 136, 1);
}
.post .main-sub-txt04{
  font-size: 2vw;
  overflow-wrap:break-word;
}
.post .main-container06{
  display: flex;
}
.post .main-img06{
  margin-top: 7vh;
}
.post .main-txt06{
  margin-top: 10vh;
  width: 40%;
  margin-left: auto;
}
.post .main-img07{
  margin: 3vh 0vw 0vh 21vw; 
}
.post .main-txt07{
  margin-left: 5vw;
  margin-top: 7vh;
  width: 30%;
}
/**
 * ***************************************
 * スライドの下のスライドショー
 * ***************************************
 *
 * スライドの下のスライドショーコンテナ
 */
.slider-sp-content{
  display: none;
 }
 .sp-txt-content{
  display: none;
 }
/**
 * ***************************************
 * ヘッダー
 * ***************************************
 *
 * ヘッダーコンテナ
 */
 .header-container {
  margin: 0 auto;
  padding: 0 20px;
  background-color:rgba(248, 246, 240, 1);
  height: 50px;
}
/**
 * ***************************************
 * メインコンテナ
 * ***************************************
 */
 .post .page-main{
  margin-top: 50px;
}
.post .main-container {
  display: flex;
}
.post .main-container .txt-sp01 {
  margin-left: 30px;
}
.post .main-container .txt-sp02 {
  margin-left: 11.5vw;
}
.post .main-container .txt-sp03 {
  margin-left: 60px;
}
.post .main-eigyo-time{
  padding-top: 150px;
  padding-right: 5px;
  font-size: 2vw;
  width: 50%;
}
.post .main-img01{
  margin-right: 5vw;
}
.post .main-txt01{
  text-align: center;
  padding: 50px 0px 0px 0px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4vw;
}
.main-item{
  margin-bottom: 30px;
  padding: 50px 10px;
  text-align: center;
}
.post .main-txt02{
  text-decoration: underline;
  text-align: center;
  margin: 100px 0px 50px 0px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4vw;
}
  /**
  * ***************************************
  * タブ
  * ***************************************
  *
  * タブコンテナ
  */
  .tab {}
  /* タブメニュー */
  .tab__menu {
    display: flex;
    flex-flow: column;
    align-items: flex-end; /* メニューを下揃え&高さを調整 */
    justify-content: center;
    min-height: 50px; /* メニュー切替時にタブがズレないように */
    padding: 0;
    margin: 0;
    float: right;
    background-color: black;
    margin-top: -50px;
    padding-top: 100px;
  }
  .tab__menu-item {
    list-style: none;
    height: 200px;
    padding: 8px 20px 0px 5px; /* メニューに高さを付ける */
    text-align: center;
    margin-right: 6px;
    background-color: black;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    color: white;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  /* is-activeがついている時のスタイル */
  .tab__menu-item.is-active {
    background-color:rgba(142, 142, 142, 1);
    color: black;
    padding: 8px 20px 0px 5px;;
  }
  /* タブパネル */
  .tab__panel {
  }
  .tab__panel-box {
    min-height: 400px; /* テキスト量が多くなっても対応できるように */
    padding: 10px 30px;
  }
  .tab__panel-box001 {
    display: none;
  }
  .tab__panel-box002 {
    display: none;
  }
  .tab__panel-box003 {
    display: none;
    margin-top: -100px;
  }
  /* is-showがついている時のスタイル */
  .tab__panel-box.is-show {
    display: block;
  }

  /**
  * ***************************************
  * メニュー
  * ***************************************
  *
  * メニューコンテナ
  */
  .sp-menu-btn{
    display: none;
  }
  .sp-menu-top{
    display: none;
  }
  .tab__panel-container{
    margin: 0 auto;
    padding: 0 20px;
    background-color:rgba(248, 246, 240, 1);
    display: flex;
  }
  .tab-pnl002 .tab__panel-box.is-show {
    display: block;
    padding: 0px;
    margin-top: -50px;
  }
  .menu-btn{
    border-radius: 100px;
    display: block;
    width: 150px;
    padding: 15px;
    box-sizing: border-box;
    background:rgba(80, 123, 84, 1);
    ;
    color: #FFF;
    text-decoration: none;
    text-align: left;
    margin: 10px 30px;
  }
  .tab__panel-container-menu{
    background-color: white;
    width: 100%;
  }
  .menu-img01{
    margin: 3vw;
    position: relative;
  }
  .menu-top-content01{
    width: 50%;
    height: 50%;
    background-color: white;
    position: absolute;
    border-radius: 10px;
    top: 10%;
    left: 2%;
    font-size: 1.5vw;
  }
  .post .menu-img02{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .menu-item{
    margin-bottom: 30px;
    text-align: center;
    border: solid 1px rgba(67, 47, 41, 0.1);
    ;
  }
  .menu-sub-txt01,.menu-sub-txt02{
    margin: 20px;
  }
  /**
  * ***************************************
  * ページ下部
  * ***************************************
  *
  * ページ下部コンテナ
  */
  .bottom-container {
    padding: 0vh 10vw;
    background-color: #000;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin: 0vh 11vw;
    display: flex;
  }
  /**
  * ***************************************
  * フッター
  * ***************************************
  *
  * フッターコンテナ
  */
  .footer-container {
    padding: 20px;
    background-color: #000;
    margin: 0vw 11vw;
  }
  .footer-container .footer-line{
    border-top: 1px solid white;
    display: flex;
  }
  .footer-container .footer-txt01 {
    color: white;
    margin: 0vh 5.95vw;
    font-size: 1vw;
  }
  .bottom-container .bottom-txt01{
    color: white;
    margin: 2vw 10vh;
  }
  .bottom-container .bottom-txt02{
    color: white;
    margin-top: 2vh;
  }
  .bottom-container .bottom-txt01 li,.bottom-container .bottom-txt02 li{
    padding: 10px 0px;
  }
 }

/**
 * =======================================
 * スマホ用CSS
 * =======================================
 */
 @media screen and (max-width:480px){
/**
 * ***************************************
 * スライド
 * ***************************************
 *
 * スライドコンテナ
 */
 .player{
  width: 150%;
 }
 .slide .slide-pc-content{
  display: none;
 }
/* ↓ スライドの外枠 */
.slide-wrapper {
  width: 98%;
  height: 100%;
  position: relative;
  overflow: hidden; /* はみ出したスライドを隠す */
  border-radius: 10px;
}
/*  ↓ スライド（コンテンツ） */
.slide { /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  color: white;
}
.slide div { /* スライド */
  width: 100%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.slide div:nth-of-type(1){ /* 背景色 */
  background-color:rgba(149, 139, 136, 1);
  padding: 40px;
}
.slide div:nth-of-type(2){ /* 背景色 */
  background-color: rgba(149, 139, 136, 1);
  padding: 0px;
}
.slide div:nth-of-type(3){ /* 背景色 */
  background-color: rgba(149, 139, 136, 1);
  padding: 0px;
}
.post .main-sub-txt04{
  font-size: 5vw;
  overflow-wrap:break-word;
}
.post .main-container06{
  margin: 5vw;
}
.post .main-img06{
  margin-top: 5vh;
}
.post .main-txt06{
  margin-top: 2vh;
}
.post .main-img07{}
.post .main-txt07{
  margin-top: 5vh;
}
/**
 * ***************************************
 * Made with love in Japan
 * ***************************************
 *
 * Made with love in Japanコンテナ
 */
 .sp-txt-content{
  margin: 20vw;
  text-align: center;
 }
 /**
 * ***************************************
 * ヘッダー
 * ***************************************
 *
 * ヘッダーコンテナ
 */
 .header-container {
  margin: 0 auto;
  padding: 0 20px;
  height: 0px;
}
/**
 * ***************************************
 * メインコンテナ
 * ***************************************
 */
 .post .page-main{
  margin-top: 0px;
}
.post .main-container {
  display: flex;
}
.post .main-container .txt-sp01 {
  margin-left: 10vw;
}
.post .main-container .txt-sp02 {
  margin-left: 30vw;
}
.post .main-container .txt-sp03 {
  margin-left: 14vw;
}
.post .main-eigyo-time{
  margin-top: 100vw;
  font-size: 5vw;
  min-width: 100%;
  padding-left: 23vw;
}
.post .main-img01{
  margin-left: -100vw;
  margin-top: 5vh;
  min-width: 100%;
}
.post .main-txt01{
  text-align: center;
  padding: 50px 0px 0px 0px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 8vw;
}
.main-item{
  margin-bottom: 0px;
  padding: 2vh 5vw;
  text-align: center;
}
.post .main-txt02{
  text-decoration: underline;
  text-align: center;
  margin: 15vh 0px 1vh 0px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 8vw;
}
/**
* ***************************************
* タブ
* ***************************************
*
* タブコンテナ
*/
  .tab {
    max-width: 800px;
    margin: 0 auto;
  }
  /* タブメニュー */
  .tab__menu {
    display: flex;
    align-items: flex-end; /* メニューを下揃え */
    justify-content: center;
    min-height: 50px; /* メニュー切替時にタブがズレないように */
    padding: 0;
    margin: 0;
    background-color: black;
  }
  .tab__menu-item {
    list-style: none;
    width: 100%;
    padding: 1vh 10vw;
    text-align: center;
    margin-right: 6px;
    background-color:black;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
  }
  .tab__menu-item:last-of-type {
    margin-right: 0px;
  }
  /* is-activeがついている時のスタイル */
  .tab__menu-item.is-active {
    background-color: rgba(142, 142, 142, 1);;
    color: white;
    padding: 1vh 10vw;
  }
  /* タブパネル */
  .tab__panel {
   width: 100%;
  }
  .tab__panel-box {
    min-height: 400px;
    border-radius: 10px;
  }
  .tab__panel-box001 {
    display: none;
  }
  .tab__panel-box002 {
    display: none;
  }
  .tab__panel-box003 {
    display: none;
  }
  /* is-showがついている時のスタイル */
  .tab__panel-box.is-show {
    display: block;
  }
  /**
  * ***************************************
  * メニュー
  * ***************************************
  *
  * メニューコンテナ
  */
  .pc-menu-btn{
    display: none;
  }
  .sp-menu-btn{
    margin-top: 5vh;
  }
  .pc-menu-top{
    display: none;
  }
  .sp-menu-top img{
    height: 528px;
    width: 368px;
  }
  .tab__panel-container{
    margin: 0 auto;
  }
  .tab-pnl002 .tab__panel-box.is-show {
    display: block;
    padding: 0px;
  }
  .menu-btn{
    border-radius: 100px;
    padding: 2vh 19vw 2vh 5vw;
    box-sizing: border-box;
    background:rgba(80, 123, 84, 1);
    color: #FFF;
    text-decoration: none;
    text-align: left;
  }
  .tab__panel-container-menu{
    background-color: white;
    width: 100%;
  }
  .menu-img01{
    margin: 5vh 5vw 10vh 5vw;
    position: relative;
  }
  .menu-top-content01{
    width: 50vw;
    height: 25vh;
    background-color: white;
    position: absolute;
    border-radius: 10px;
    position: absolute;
    top: 5%;
    left: 2%;
    font-size: 3vw;
  }
  .post .menu-img02{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .menu-item{
    margin-bottom: 30px;
    text-align: center;
    border: solid 1px rgba(67, 47, 41, 0.1);
    ;
  }
  .menu-sub-txt01,.menu-sub-txt02{
    margin: 20px;
  }
  .slider-sp-content{
    margin: 1vh;
  }
  .slider-sp-content-link{
    color: black;
  }
  .main-img08{
    margin: 1vh;
  }
  /**
  * ***************************************
  * ページ下部
  * ***************************************
  *
  * ページ下部コンテナ
  */
  .bottom-container {
    background-color: #000;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin: 0px 5vw;
  }
  .bottom-txt02{
    display: none;
  }
  /**
  * ***************************************
  * フッター
  * ***************************************
  *
  * フッターコンテナ
  */
  .footer-container {
    background-color: #000;
    margin: 0px 5vw;
  }
  .footer-container .footer-txt01 {
    color: white;
    margin: 0vh 0vw 0vh 3vw;
  }
  .footer-container .footer-line{
    border-top: 1px solid white;
  }
  .bottom-container .bottom-txt01{
    color: white;
    margin: 50px 200px 0px 200px;
  }
  .bottom-container .bottom-txt02{
    color: white;
    margin-top: 8vh;
  }
  .bottom-container .bottom-txt01 li,.bottom-container .bottom-txt02 li{
    padding: 10px 0px;
  }
 }