@charset "utf-8";
/* CSS Document */
:root {
 font-size: 10px;
}
html {
 scroll-behavior: smooth;
 scroll-padding-top: 80px;
}
body {
 font-size: 16px; font-size: 1.6rem;
 line-height: 150%;
 font-family: "vdl-v7marugothic", sans-serif;
 font-weight: 500;
 font-style: normal;
 color: #231815;
 word-break: break-all;
 background-color: #ffffff;
}

h1 {
 font-size: 28px; font-size: 2.8rem;
 line-height: 150%;
 font-weight: bold;
}
h2 {
 font-size: 24px; font-size: 2.4rem;
 line-height: 150%;
}
h3{
 font-size: 20px; font-size: 2.0rem;
 line-height: 150%;
}
a {
 transition: all 0.1s;
 text-decoration-skip-ink: none;
}
a:hover {
 color: #e7242e;
 transition: all 0.1s;
}
img {
 width: 100%;
}

.wrapper {
 background-color: #ffffff;
}
/* デバイス幅が850px以下 */
@media only screen and (max-width:850px) {
 .wrapper {
  margin-top: 50px;
 }
}

/*ページ内リンクのヘッダー高さ調整*/
 @media screen and (max-width: 850px) {
  html {
   scroll-padding-top: 50px;
  }
 }
 /*ページ内リンクのヘッダー高さ調整*/

/*TOPへ戻る*/
.backtotop {
 position: fixed;
 right: 20px;
 bottom: 150px;
 z-index: 88;
 display: none;
}
.backtotop a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 50px;
 height: 50px;
 color: #ffffff;
 font-size: 20px;
 font-weight: bold;
 background-color: #231815;
 text-decoration: none;
 box-shadow: 1px 1px 1px #999999;
 transition: all 0.2s;
}
.backtotop a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .backtotop {
  right: 10px;
  bottom: 200px;
  opacity: 0.9;
 }
}
/*申込みはこちら！*/
.side_nav {
 position: fixed;
 right: 0;
 top: 200px;
 z-index: 88;
 font-size: 20px;
 display: none;
}
.side_nav a {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 200px;
 height: 70px;
 text-align: center;
 color: #e7242e;
 font-weight: bold;
 text-decoration: none;
 border: 5px solid #e7242e;
 border-right: none;
 box-shadow: 1px 1px 1px rgba(0,0,0,0.20);
 background-color: #ffffff;
 border-top-left-radius: 20px;
 border-bottom-left-radius: 20px;
 box-sizing: border-box;
 transition: all 0.2s;
}
/*.side_nav a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}*/
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .side_nav {
  top: 80px;
  opacity: 0.9;
 }
}

/*ハンバーガーメニュー*/
#menu-button {
 display: none;
 position: fixed;
 z-index: 88;
 top: 0;
 width: 100%;
 height: 50px;
 background-color: #ffffff;
 box-sizing: border-box;
 border-bottom: 3px solid #231815;
}
.hun_txt_area {
 display: flex;
 flex-direction: row;
 padding: 5px 0 0 5px;
 font-size: 14px;
 font-weight: bold;
 line-height: 120%;
 box-sizing: border-box;
}
.hun_txt_area img {
 width: 40px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hun_txt_area img:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.icon {
 cursor: pointer;
 position: relative;
}
.icon span {
  position: absolute;
  right: 15px;
  width: 30px; /* 線の幅 */
  height: 3px; /* 線の太さ */
  background-color: #231815; /* 線の色 */
  transition: ease 0.3s;
}
.icon span:nth-of-type(1) {
  top: 15px; /* 上の線の位置調整 */
}
.icon span:nth-of-type(2) {
  top: 25px; /* 真ん中の線の位置調整 */
}
.icon span:nth-of-type(3) {
  top: 35px; /* 下の線の位置調整 */
}
.open span:nth-of-type(1) {
  top: 25px;
  transform: rotate(-45deg); /* 線の角度調整 */
}
.open span:nth-of-type(2) {
  opacity: 0; /* 透明化 */
}
.open span:nth-of-type(3) {
  top: 25px;
  transform: rotate(45deg);  /* 線の角度調整 */
}
.hun_tit {
 height: 100%;
 padding-left: 10px;
 font-style: normal;
 font-size: 16px;
 line-height: 18px;
 font-weight: bold;
 box-sizing: border-box;
}
.s_sp {
 display: none;
}
.sample-menu {
 display: none;
 width: 100%;
 position: fixed;
 z-index: 88;
 top: 50px;
 left: 0;
 background-color: #ffffff;
 color: #231815;
}
.sample-menu li {
 border-top: 1px solid #231815;
 box-sizing: border-box;
 font-size: 16px;
 line-height: 18px;
}
.sample-menu li:last-child {
 border-bottom: 1px solid #231815;
}
.sample-menu li a {
 display: inline-block;
 width: 100%;
 padding: 10px;
 color: #231815;
 font-weight: bold;
 text-decoration: none;
 box-sizing: border-box;
}
/* デバイス幅が850px以下 */
@media only screen and (max-width: 850px) {
 #menu-button {
  display: block;
 }
 .top_hum {
  margin-top: 50px;
 }
}

/*ヘッダー*/
#hedder {
 position: sticky;
 top: 0;
 z-index: 88;
 border-bottom: 3px solid #231815;
 background-color: #ffffff;
 box-sizing: border-box;
}
.hed_tit {
 position: relative;
 width: 100%;
 height: 80px;
}
.hed_tit p {
 position: absolute;
 left: 110px;
 top: 50%;
 transform: translateY(-50%);
 font-size: 20px;
 font-weight: bold;
 line-height: 150%;
 width: 100%;
 max-width: calc(100% - 120px);
}
.hed_tit p a {
 color: #231815;
 text-decoration: none;
 transition: all 0.2s;
}
.hed_tit p a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.hed_logo {
 position: absolute;
 left: 20px;
 top: 50%;
 transform: translateY(-50%);
 width: 150px;
}
.hed_logo a {
 transition: all 0.2s;
}
.hed_logo a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.hed_nav {
 position: absolute;
 right: 0;
 top: 50%;
 transform: translateY(-50%);
 display: flex;
 flex-direction: row;
 justify-content: flex-end;
 align-items: center;
 width: 100%;
 box-sizing: border-box;
}
.hed_nav li {
 padding: 0 10px;
 text-align: center;
 font-size: 14px;
 font-weight: bold;
 line-height: 150%;
 box-sizing: border-box;
}
.hed_nav li a {
 color: #231815;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hed_nav li a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
/* デバイス幅が850px以下 */
@media only screen and (max-width:850px) {
 #hedder {
  display: none;
 }
}

/*メインビジュアル*/
.style_main_vis {
 width: 100%;
 background-color: #e7242e;
 text-align: center;
}
.style_main_vis img {
 max-width: 1500px;
 vertical-align: middle;
}

/*中間ナビ*/
.main_nav {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 width: 100%;
 margin: 0 auto;
 background-color: #231815;
}
.main_nav li {
 width: 100%;
 /*max-width: calc(100%/6);*/
 max-width: calc(100%/5);
 font-weight: bold;
 text-align: center;
 border-right: 2px dotted #ffffff;
 box-sizing: border-box;
}
.main_nav li:first-child {
 border-left: 2px dotted #ffffff;
}
.main_nav li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 60px;
 color: #ffffff;
 text-decoration: none;
 transition: all 0.2s;
}
.main_nav li a:hover {
 background-color: #e7242e;
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .main_nav {
  display: none;
 }
}

/*ニュース*/
.news_tit {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 font-size: 30px;
 font-weight: bold;
 box-sizing: border-box;
}
.news_area {
 height: 550px;
 overflow-y: scroll;
 width: 100%;
 max-width: 1000px;
 margin: 30px auto 0;
 background-color: #ffffff;
 border: 3px solid #231815;
 box-sizing: border-box;
}
.news_area dl {
 display: flex;
 padding: 20px;
 border-bottom: 3px dotted #231815;
 box-sizing: border-box;
}
.news_area dl:last-child {
 border-bottom: none;
}
.news_area dl dt {
 width: 250px;
 font-size: 22px;
 font-weight: bold;
 color: #999999;
}
.news_area dl dd {
 width: calc(100% - 250px);
} 
.news_red::after {
 content: "重要";
 font-size: 16px;
 color: #ffffff;
 padding: 5px;
 margin-left: 5px;
 background-color: #e7242e;
 box-sizing: border-box;
}
.news_new::after {
 content: "新着";
 font-size: 16px;
 color: #ffffff;
 padding: 5px;
 margin-left: 5px;
 background-color: #0097e0;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .news_tit {
  font-size: 25px;
  line-height: 150%;
 }
 .news_area dl {
  flex-direction: column;
 }
 .news_area dl dt,
 .news_area dl dd {
  width: 100%;
 }
 .news_area dl dt {
  font-size: 18px;
  line-height: 150%;
 }
 .news_area {
  max-width: 100%;
  margin-top: 10px;
 }
 .news_red::after {
  font-size: 14px;
  padding: 3px;
 }
}

/*各項目*/
.main {
 padding: 50px 20px;
 box-sizing: border-box;
}
.main_tit {
 position: relative;
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 10px 10px 10px 20px;
 font-size: 30px;
 font-weight: bold;
 color: #ffffff;
 background-color: #e7242e;
 box-sizing: border-box;
}
.main_tit.submenu_title::before,
.main_tit.submenu_title::after {
 background-color: #ffffff;
}
.txt_area {
 width: 100%;
 max-width: 1000px;
 margin: 30px auto 0;
 padding: 30px;
 background-color: #ffffff;
 border: 3px solid #231815;
 box-sizing: border-box;
}
.main_dl {
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: flex-start;
 padding: 30px 0;
 border-bottom: 2px dotted #cccccc;
 box-sizing: border-box;
}
.main_dl:first-child {
 padding-top: 0;
}
.main_dl:last-child {
 padding-bottom: 0;
 border-bottom: none;
}
.main_dl dt {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 200px;
 height: 30px;
 margin-right: 30px;
 font-weight: bold;
 color: #ffffff;
 background-color: #e7242e;
}
.main_dl dd {
 width: 100%;
 max-width: calc(100%-230px);
}
.m_d_2 dt {
 max-width: 120px;
}
.dl_img img {
 max-width: 500px;
}
.t_a_tit {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 200px;
 height: 60px;
 font-weight: bold;
 font-size: 20px;
 line-height: 150%;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .main {
  padding: 30px 20px;
 }
 .main_tit {
  padding: 10px;
  font-size: 25px;
  line-height: 150%;
 }
 .txt_area {
  padding: 20px;
 }
 .main_dl {
  flex-direction: column;
 }
 .main_dl dt {
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
 }
 .main_dl dd {
  max-width: 100%;
 }
 .m_d_2 {
  padding: 20px 0;
  border: none;
 }
 .m_d_2 dt {
  max-width: 200px;
 }
}

/*商品券の種類*/
.ticket_area {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: flex-start;
 width: 100%;
 margin: 20px auto;
}
.ticket_item {
 width: 49%;
 margin-right: 2%;
 text-align: center;
}
.ticket_txt {
 padding: 75px 10px 20px 10px;
 background-color: rgba(231,36,46,0.10);
 background-image: url("../img/ticket_red.png");
 background-repeat: no-repeat;
 background-position: center 20px;
 background-size: 80px;
 border-top-left-radius: 20px;
 border-top-right-radius: 20px;
 box-sizing: border-box;
}
.ticket_txt h2 {
 margin: 10px 0;
}
.ticket_bt {
 margin-top: 10px;
}
.ticket_bt a {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 margin: 0 auto;
 width: 120px;
 height: 50px;
 color: #009e6b;
 font-weight: bold;
 text-decoration: none;
 border: 2px solid #009e6b;
 background-color: #ffffff;
 border-radius: 10px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.ticket_bt a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.ticket_price {
 padding: 10px;
 background-color: rgba(231,36,46,0.30);
 border-bottom-left-radius: 20px;
 border-bottom-right-radius: 20px;
 box-sizing: border-box;
}
.ticket_item:nth-child(2) {
 margin-right: 0;
}
.ticket_item:nth-child(2) .ticket_txt {
 background-color: rgba(0,150,224,0.10);
 background-image: url("../img/ticket_blue.png")
}
.ticket_item:nth-child(2) .ticket_price {
 background-color: rgba(0,150,224,0.30);
}
/* デバイス幅が850px以下 */
@media only screen and (max-width:850px) {
 .ticket_area {
  flex-direction: column;
  align-items: center;
 }
 .ticket_item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 30px;
 }
}

/*よくある質問*/
.faq {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 30px;
 box-sizing: border-box;
}
.faq:last-child {
 margin-bottom: 0;
}
.faq dt,
.faq dd {
 position: relative;
 padding: 20px;
 padding-left: 100px;
 font-size: 20px;
 line-height: 150%;
 background-color: #ffffff;
 box-sizing: border-box;
}
.faq dt span,
.faq dd span {
 position: absolute;
 left: 20px;
 top: 20px;
 font-weight: bold;
}
.faq dt {
 padding-right: 50px;
 font-weight: bold;
 border: 5px solid rgba(231,36,46,0.20);
}
.faq dd {
 margin-top: 10px;
 border: 5px solid #e7242e;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .faq dt,
 .faq dd {
  padding: 10px;
  padding-left: 80px;
  font-size: 16px;
  line-height: 150%;
 }
 .faq dt {
  padding-right: 50px;
 }
 .faq dt span,
 .faq dd span {
  top: 10px;
  left: 10px;
  font-size: 20px;
 }
}
/*FAQナビ*/
.faq_nav {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 1000px;
 margin: 30px auto 0;
 background-color: #231815;
}
.faq_nav li {
 width: 100%;
 max-width: calc(100%/6);
 font-weight: bold;
 text-align: center;
 border-right: 2px dotted #ffffff;
 box-sizing: border-box;
}
.faq_nav li:last-child {
 border: none;
}
.faq_nav li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 60px;
 color: #ffffff;
 text-decoration: none;
 transition: all 0.2s;
}
.faq_nav li a:hover {
 background-color: #e7242e;
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .faq_nav {
  flex-direction: column;
 }
 .faq_nav li {
  max-width: 100%;
  border-right: none;
  border-bottom: 1px dotted #ffffff;
 }
 .faq_nav li a {
  position: relative;
  height: 35px;
 }
 .faq_nav li a::after {
  content: "▼";
  font-size: 0.8em;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
 }
}

/*プルダウン*/
.submenu_title {
 cursor:pointer;
 padding-right: 50px;
 box-sizing: border-box;
}
/*プラスからマイナスに変化*/
.submenu_title::before,
.submenu_title::after {
 content: '';
 display: inline-block;
 width: 20px;
 height: 3px;
 background-color: #231815;
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 transition: opacity 0.2s;
}
.submenu_title::after {
 transform: translateY(-50%) rotate(90deg);
 transition: transform 0.2s;
}
.submenu_title.show::before {
 opacity: 0;
}
.submenu_title.show::after {
 transform: translateY(-50%) rotate(180deg);
}

/*ボタン*/
p.style_bt {
 width: 100%;
 max-width: 400px;
 font-weight: bold;
}
.style_bt a {
 position: relative;
 display:flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 70px;
 line-height: 120%;
 color: #e7242e;
 text-decoration: none;
 background-color: #ffffff;
 border: 3px solid #e7242e;
 box-sizing: border-box;
 box-shadow: 1px 1px 1px rgba(0,0,0,0.20);
 transition: all 0.2s;
}
.style_bt a::after {
 content: "＞";
 font-weight: bold;
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
}
.style_bt a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.style_bt a img {
 width: 25px;
}
.style_bt_null {
 display:flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 400px;
 height: 50px;
 margin: 30px auto 0;
 color: #5d5d5d;
 line-height: 120%;
 text-align: center;
 border: 1px solid #999999;
 background-color: #cccccc;
 box-sizing: border-box;
}
.style_img {
 text-align: center;
}
.style_img2 {
 max-width: 500px;
 margin: 0 auto;
 text-align: center;
}

/*フッター*/
#footer {
 color: #ffffff;
 background-color: #231815;
}
.style_foot_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px;
 font-weight: bold;
 box-sizing: border-box;
}
.copy {
 padding: 10px;
 color: #ffffff;
 text-align: center;
 background-color: #e7242e;
 box-sizing: border-box;
}

/*アコーディオン用*/
.submenu {
 display: none;
}

/*文字装飾*/
.bold {
 font-weight: bold;
}
.nomal {
 font-weight: normal;
}
.red {
 color: #ff0000;
}
.blue {
 color: #0000cc;
}
.yellow {
 color: #ffe600;
}
.black {
 color: #231815;
}
.white {
 color: #ffffff;
}
.mark {
 background-color: #ffff00;
}
.line {
 text-decoration: underline;
 text-decoration-skip-ink: none;
}
.small {
 font-size: 0.8em;
 line-height: 150%;
}
.small_2 {
 font-size: 0.7em;
 line-height: 150%;
}
.large {
 font-size: 1.2em;
 line-height: 150%;
}
.large_2 {
 font-size: 1.5em;
 line-height: 150%;
}
.cen {
 text-align: center;
}

/*二行目以降字下げ*/
.kai {
 display: block;
 text-indent: -1em;
 padding-left: 1em;
 box-sizing: border-box;
}
.kai_1-3 {
 display: block;
 text-indent: -1.3em;
 padding-left: 1.3em;
 box-sizing: border-box;
}
.kai_2 {
 display: block;
 text-indent: -2em;
 padding-left: 2em;
 box-sizing: border-box;
}
.kai_2-5 {
 display: block;
 text-indent: -2.5em;
 padding-left: 2.5em;
 box-sizing: border-box;
}
.kai_3 {
 display: block;
 text-indent: -3em;
 padding-left: 3em;
 box-sizing: border-box;
}
.kai_4 {
 display: block;
 text-indent: -4em;
 padding-left: 4em;
 box-sizing: border-box;
}
.kai_5 {
 display: block;
 text-indent: -5em;
 padding-left: 5em;
 box-sizing: border-box;
}
.kai_6 {
 display: block;
 text-indent: -6em;
 padding-left: 6em;
 box-sizing: border-box;
}
.kai_7 {
 display: block;
 text-indent: -7em;
 padding-left: 7em;
 box-sizing: border-box;
}
.kai_8 {
 display: block;
 text-indent: -8em;
 padding-left: 8em;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .kai_8 {
  text-indent: 0;
  padding-left: 0;
 }
}

/*サイズ毎の表示変更*/
.pc {
 display: block;
}
.tb {
 display: none;
}
.sp {
 display: none;
}
/* デバイス幅が1000px以下 */
@media only screen and (max-width:1000px) {
 .pc {
  display: none;
 }
 .tb {
  display: block;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .tb {
  display: none;
 }
 .sp {
  display: block;
 }
}

/*フロート解除*/
.clear {
 clear: both;
}

.none {
 display: none;
}