@charset "utf-8";
/**********************************************************************

AUTHOR          -
CSS構成書:
Last Modified: 2023.05.11

***********************************************************************/

/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Page Formats
 *   5.2 - Page "homepage(Japanese Top-Page)"
 *   5.3 - Page ""
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */

/**
 * 1.0 Reset
 *
 * html5doctor.com Reset Stylesheet
 * v1.6.1
 * Last Updated: 2010-09-17
 * Author: Richard Clark - http://richclarkdesign.com
 * Twitter: @rich_clark
 * https://code.google.com/p/html5resetcss/downloads/list
 * ----------------------------------------------------------------------------
 */

/* HTML5 Doctor CSS Reset */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	/* background:transparent; */
	/*background-color: transparent;*/
}

body {
	line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	transition: .2s;
}

img {
	max-width: 100%;
	height: auto;
}

/* change colours to suit your needs */

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* change border colour to suit your needs */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 30px 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

@media (min-width: 1200px) {
	.p_home .container {
		max-width: 930px;
	}
}

@media (min-width: 992px) {
	.p_home .container {
		max-width: 930px;
	}
}

/* no-gutters Class Rules */

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters [class^="col-"], .row.no-gutters [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.row.flex:before {
	display: none;
}

/* Set Up */

html {
	overflow-y: scroll;
	/* firefox　スクロールバー対策 */
	font-size: 62.5%;
}

/* ページ基本設定 */

body {
	color: #333;
	font-family: 'Noto Sans JP', "Helvetica Neue", Helvetica, Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size-adjust: none;
	-webkit-text-size-adjust: none;
	line-height: 1.5;
	font-size: 1.6rem;
}

/**
 * 2.0 Repeatable Patterns (code snippet)
 * ----------------------------------------------------------------------------
 */

/* font-size */

/* ブラウザ間font-size%統一 */

.text10 {
	font-size: 77%;
}

.text11 {
	font-size: 85%;
}

.text12 {
	font-size: 93%;
}

.text13 {
	font-size: 100%;
}

.text14 {
	font-size: 108%;
}

.text15 {
	font-size: 116%;
}

.text16 {
	font-size: 123.1%;
}

.text17 {
	font-size: 131%;
}

.text18 {
	font-size: 138.5%;
}

.text19 {
	font-size: 146.5%;
}

.text20 {
	font-size: 153.9%;
}

.text21 {
	font-size: 161.6%;
}

.text22 {
	font-size: 167%;
}

.text23 {
	font-size: 174%;
}

.text24 {
	font-size: 182%;
}

.text25 {
	font-size: 189%;
}

.text26 {
	font-size: 197%;
}

/* text */

.textcenter {
	text-align: center;
}

.textleft {
	text-align: left;
}

.textright {
	text-align: right;
}

.fontbold {
	font-weight: 700;
}

.fontnormal {
	font-weight: normal;
}

.fontSpacingM1px {
	letter-spacing: -1px;
}

.fontSpacingM2px {
	letter-spacing: -2px !important;
}

.fontSpacing0px {
	letter-spacing: 0px !important;
}

.fontSpacingP1px {
	letter-spacing: 1px !important;
}

.fontSpacingP01em {
	letter-spacing: 0.1em !important;
}

.lh01 {
	line-height: 1em;
}

.lh14 {
	line-height: 1.4em;
}

.lh16 {
	line-height: 1.6em;
}

.lh24 {
	line-height: 2.4em;
}

.colorred {
	color: #ff0000;
}

.colorblack {
	color: #333333;
}

.colorgreen {
	color: #159249;
}

/* float & box */

.floatleft {
	float: left;
}

.floatright {
	float: right;
}

.clearboth {
	clear: both;
}

.floatleftimg {
	float: left;
	margin: 0 1.6em 0 0;
	display: inline;
}

.floatrightimg {
	float: right;
	margin: 0 0 0 1.6em;
	display: inline;
}

.displayblock {
	display: block;
}

.displaynone {
	display: none;
}

.displayinline {
	display: inline;
}

.displayinlineblock {
	display: inline-block;
}

.boxcenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.box90 {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.box95 {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}

.box98 {
	width: 98%;
	margin-left: auto;
	margin-right: auto;
}

.wd_30 {
	width: 30%;
}

.wd_40 {
	width: 40%;
}

.wd_48 {
	width: 48%;
}

.wd_50 {
	width: 50%;
}

.wd_60 {
	width: 60%;
}

.wd_66 {
	width: 66%;
}

.wd_70 {
	width: 70%;
}

.wd_80 {
	width: 80%;
}

.wd_90 {
	width: 90%;
}

.wd_100 {
	width: 100%;
}

.wd_mx100 {
	max-width: 100%;
}

.hg_4em {
	height: 4em;
}

.hg_5em {
	height: 5em;
}

.hg_6em {
	height: 6em;
}

.hg_7em {
	height: 7em;
}

.hg_8em {
	height: 8em;
}

.hg_9em {
	height: 9em;
}

/* Padding and Margin Settings */

.marginauto {
	margin-left: auto;
	margin-right: auto;
}

/* margin-top */

.mt05 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt30 {
	margin-top: 30px;
}

.mt35 {
	margin-top: 35px;
}

.mt40 {
	margin-top: 40px;
}

.mt60 {
	margin-top: 60px;
}

/* margin-left */

.ml00 {
	margin-left: 0px;
}

.ml05 {
	margin-left: 5px;
}

.ml10 {
	margin-left: 10px;
}

.ml15 {
	margin-left: 15px;
}

.ml20 {
	margin-left: 20px;
}

.ml25 {
	margin-left: 25px;
}

.ml30 {
	margin-left: 30px;
}

.ml35 {
	margin-left: 35px;
}

.ml40 {
	margin-left: 40px;
}

.ml60 {
	margin-left: 60px;
}

/* margin-right */

.mr00 {
	margin-right: 0px;
}

.mr05 {
	margin-right: 5px;
}

.mr10 {
	margin-right: 10px;
}

.mr15 {
	margin-right: 15px;
}

.mr20 {
	margin-right: 20px;
}

.mr25 {
	margin-right: 25px;
}

.mr30 {
	margin-right: 30px;
}

.mr35 {
	margin-right: 35px;
}

.mr40 {
	margin-right: 40px;
}

.mr60 {
	margin-right: 60px;
}

/* margin-bottom */

.mb00 {
	margin-bottom: 0px;
}

.mb05 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb60 {
	margin-bottom: 60px;
}

/* padding-top */

.pt00 {
	padding-top: 0px;
}

.pt05 {
	padding-top: 5px;
}

.pt10 {
	padding-top: 10px;
}

.pt15 {
	padding-top: 15px;
}

.pt20 {
	padding-top: 20px;
}

.pt25 {
	padding-top: 25px;
}

.pt30 {
	padding-top: 30px;
}

.pt35 {
	padding-top: 35px;
}

.pt40 {
	padding-top: 40px;
}

.pt60 {
	padding-top: 60px;
}

/* paddign-left */

.pl00 {
	padding-left: 0px;
}

.pl05 {
	padding-left: 5px;
}

.pl10 {
	padding-left: 10px;
}

.pl15 {
	padding-left: 15px;
}

.pl20 {
	padding-left: 20px;
}

.pl25 {
	padding-left: 25px;
}

.pl30 {
	padding-left: 30px;
}

.pl35 {
	padding-left: 35px;
}

.pl40 {
	padding-left: 40px;
}

.pl50 {
	padding-left: 50px;
}

.pl60 {
	padding-left: 60px;
}

/* padding-right */

.pr00 {
	padding-right: 0px;
}

.pr05 {
	padding-right: 5px;
}

.pr10 {
	padding-right: 10px;
}

.pr15 {
	padding-right: 15px;
}

.pr20 {
	padding-right: 20px;
}

.pr25 {
	padding-right: 25px;
}

.pr30 {
	padding-right: 30px;
}

.pr35 {
	padding-right: 35px;
}

.pr40 {
	padding-right: 40px;
}

.pr60 {
	padding-right: 60px;
}

/* padding-bottom */

.pb00 {
	padding-bottom: 0px;
}

.pb05 {
	padding-bottom: 5px;
}

.pb10 {
	padding-bottom: 10px;
}

.pb15 {
	padding-bottom: 15px;
}

.pb20 {
	padding-bottom: 20px;
}

.pb25 {
	padding-bottom: 25px;
}

.pb30 {
	padding-bottom: 30px;
}

.pb35 {
	padding-bottom: 35px;
}

.pb40 {
	padding-bottom: 40px;
}

.pb60 {
	padding-bottom: 60px;
}

/* リンク設定:コンテンツ内 */

#entry-content a:link {}

#entry-content a:visited {}

#entry-content a:hover {
	color: #2d6fb9;
	text-decoration: none;
}

#entry-content a:active {
	color: #2d6fb9;
	text-decoration: none;
}

#pankuzu-list li a:link {
	text-decoration: underline;
}

#pankuzu-list li a:visited {
	text-decoration: underline;
}

#pankuzu-list li a:hover {
	color: #2d6fb9;
	text-decoration: underline;
}

#pankuzu-list li a:active {
	color: #2d6fb9;
	text-decoration: underline;
}

.ft-navi dd a:link {
	color: #353535;
	text-decoration: none;
}

.ft-navi dd a:visited {
	color: #353535;
	text-decoration: none;
}

.ft-navi dd a:hover {
	color: #3B5998;
	text-decoration: underline;
}

.ft-navi dd a:active {
	color: #3B5998;
	text-decoration: underline;
}

/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */

.wrapper {
	width: 100%;
	margin: 0 auto;
	letter-spacing: 0.02em;
}

.wrapper::after {
	content: "";
	display: block;
	clear: both;
}

#contents {
	width: 100%;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#contents .content {
	width: 980px;
	margin-left: auto;
	margin-right: auto;
}

/**
 * 4.0 Header
 * ----------------------------------------------------------------------------
 */

/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */

/*--------------------------
Header-wrapp
--------------------------*/

#masthead {
	background-color: rgba(4, 138, 216, 0.3);
	width: 100%;
	min-height: 50px;
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 500;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
	#masthead {
		background-color: rgba(4, 138, 216, 0.9);
		min-height: 40px;
		padding: 10px;
	}
}

.follow #masthead {
	background-color: rgba(4, 138, 216, 0.9);
}

/*--------------------------
Header-heading
--------------------------*/

#masthead .brand-heading {
	display: block;
	width: 147px;
	height: 20px;
	margin: 15px 20px 0 15px;
	float: left;
	text-indent: -9999em;
}

#masthead .brand-heading a {
	background: url(../images/ttl_logo.png) no-repeat left center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	display: block;
	width: 100%;
	height: 100%;
	transition: opacity 0.3s;
}

#masthead .brand-heading a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1024px) {
	#masthead .brand-heading {
		width: 150px;
		height: 20px;
		margin: 0 auto;
		float: none;
	}
}

/*--------------------------
Header-Inner
--------------------------*/

.intro-body {
	position: relative;
}

.intro-body::after {
	content: "";
	display: block;
	clear: both;
}

/*
#masthead button.button-menu { display: none; position: absolute; top: -5px; left: 0; }
@media screen and (max-width: 1024px) {
	#masthead button.button-menu { display: block; }
}
*/

/* search button */

#masthead .button-search {
	background: url(../images/icn_search.png) no-repeat left center;
	background-size: 100% auto;
	display: block;
	width: 30px;
	height: 30px;
	margin: 10px 10px 0 0;
	float: right;
	cursor: pointer;
	transition: opacity 0.3s;
	z-index: 100000;
}

#masthead .button-search:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1024px) {
	#masthead .button-search {
		display: none;
	}
}

.button-search .drawer-hamburger-icon {
	display: none;
}

.drawer-open .button-search .drawer-hamburger-icon {
	display: block;
}

.drawer-open #masthead .button-search {
	background: inherit;
}

.button-search.drawer-toggle.drawer-hamburger {
	position: relative!important;
	left: inherit!important;
	padding: 0!important;
}

/*--------------------------
Smartphone Menu(drawer menu)
--------------------------*/

/* menu button */

.drawer--left .drawer-hamburger.button-menu {
	display: none;
}

@media screen and (max-width: 1024px) {
	.drawer--left .drawer-hamburger.button-menu {
		display: block;
		width: 2.3rem;
		padding: 0;
		position: absolute!important;
		left: 0!important;
		z-index: 10001;
	}
}

.drawer--left .drawer-hamburger, .drawer--left.drawer-close .drawer-hamburger {
	position: fixed;
	/* position: absolute; */
}

.drawer--left.drawer-open .drawer-hamburger {
	position: fixed;
}

.drawer--left .drawer-nav {
	background-color: #fff;
	display: block;
	padding-top: 45px;
	z-index: 10000;
    overflow-y: auto;
    height: 100vh;
}

.drawer--left.drawer-open .drawer-nav {
	width: 100%;
}

/* .drawer--right.drawer-open .drawer-hamburger-icon::after  { background-color: #fff; }
.drawer--right.drawer-open .drawer-hamburger-icon::before { background-color: #fff; } */

.drawer-hamburger {
	z-index: 100000;
}

.drawer-hamburger-icon::after, .drawer-hamburger-icon::before {
	top: -8px;
}

.drawer-hamburger-icon::after {
	top: 8px;
}

.drawer-hamburger-icon, .drawer-hamburger-icon::after, .drawer-hamburger-icon::before {
	background-color: #fff;
}

#masthead-menu {
	background-color: rgba(4, 138, 216, 0.9);
}

#masthead-menu div {
	padding-top: 10px;
}

#masthead-menu form dl {
	padding: 12px 15px;
	position: relative;
}

#masthead-menu form dl dt {
	margin-right: 105px;
	padding: 8px;
	background-color: #fff;
	border: 1px solid #aaa;
}

#masthead-menu form dl dt input {
	width: 100%;
	height: 24px;
	line-height: 24px;
	background: none;
	border: none;
}

#masthead-menu form dl dd {
	position: absolute;
	top: 12px;
	right: 15px;
}

#masthead-menu form dl dd input {
	background-color: #E66919;
	display: block;
	width: 100px;
	height: 42px;
	font-size: 1.8rem;
	color: #fff;
	line-height: 42px;
	text-align: center;
	border: 1px solid #387D39;
	cursor: pointer;
}

#masthead-menu ul {
	display: block;
	border-top: 1px solid #fff;
}

#masthead-menu ul.menu_link {
	height: 100vh; /* 端末ごとにスクロール分の高さを確保するため */
}

#masthead-menu ul li {
	display: inline-block;
	font-size: 1.6rem;
	border-bottom: 1px solid #fff;
	width: 25%;
	vertical-align: top;
	float: left;
}

#masthead-menu ul li a {
	display: block;
	padding: 12px 16px;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #fff;
}

#masthead-menu ul li a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-weight: 700;
	float: right;
}


#masthead-menu ul.sns_icons li {
    font-size: 2.8rem;
    width: 100%;
    padding: 0 0.5em;
    text-align: center;
}
#masthead-menu ul.sns_icons li a {
	display: inline-block;
    padding: 0.5em;
	border-right: none;
}
#masthead-menu ul.sns_icons li a:before {
	display: none;
}

/* menu hidden */

#masthead-menu ul li#menu-sample-day-plan {
	display: none;
}

#masthead-menu ul li#menu-guide-map-download {
	display: none;
}

@media screen and (max-width: 1024px) {
	/* 576 */
	#masthead-menu div {
		padding-top: 0px;
	}
	#masthead-menu form dl dt input {
		height: 21px;
		line-height: 21px;
	}
	#masthead-menu form dl dd input {
		width: 100px;
		height: 41px;
		font-size: 1.4rem;
		line-height: 39px;
	}
	#masthead-menu ul li {
		display: block;
		/* font-size: 1.4rem; */
		float: none;
		width: 100%;
	}
	#masthead-menu ul li a {
		padding: 0.5em 1em;
		border-right: none;
	}
	#masthead-menu ul.sns_icons li {
		border-bottom: none;
	}
}

a.bt_link {
	display: block;
	background: #fff;
	padding: 10px 15px;
	color: #387D39;
	text-align: center;
	border-radius: 5px;
	font-size: 16px;
	text-decoration: none;
}

a.bt_link:before {
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: 700;
	float: left;
}

a.bt_link:hover {
	opacity: .7;
}

/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

/* テキストグローバルナビ：メイン */

#masthead-menu-pc {
	padding: 0;
	float: left;
}


#masthead-menu-pc>li {
	display: block;
	float: left;
	height: 50px;
	cursor: pointer;
	position: relative;
}

#masthead-menu-pc>li>span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 1.4rem;
	line-height: 1.2;
	box-sizing: border-box;
	font-weight: 700;
}

#masthead-menu-pc>li>span span {
	padding: 0 10px;
	color: #fff;
	border-right: 1px solid #fff;
}

#masthead-menu-pc>li:last-child>span span {
	border-right: none;
}

#masthead-menu-pc>li>span span a {
	color: #fff;
	text-decoration: none;
}

.l_en #masthead-menu-pc>li>span span,
.l_en #masthead-menu-pc>li>span span a {
	font-size: 14px;
}

#masthead-menu-pc>li>span span a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1024px) {
	#masthead-menu-pc {
		display: none;
	}
}

/* テキストグローバルナビ：サブ */

.sub-masthead-menu-pc {
	background-color: #fff;
	display: none;
	min-width: 300px;
	max-width: 500px;
	word-break: keep-all;
	padding: 0;
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 100;
}

.sub-masthead-menu-pc li {
	display: block;
	font-size: 1.4rem;
}

.sub-masthead-menu-pc li a {
	display: block;
	padding: 10px 10px;
	background-color: #fff;
	color: #0489D8;
	text-decoration: none;
	line-height: 1.2;
}

.sub-masthead-menu-pc li a:hover {
	background-color: #0489D8;
	color: #fff;
}

/*
.sub-masthead-menu-pc { display: block; }
#masthead-menu-pc > li:nth-of-type(2) .sub-masthead-menu-pc { display: none; }
#masthead-menu-pc > li:nth-of-type(3) .sub-masthead-menu-pc { display: none; }
*/

/* ヘッダーボタン */

#masthead-bt {
	display: inline-block;
	width: auto;
	height: 50px;
	margin: 0;
	padding: 0;
	float: right;
}

#masthead-bt>li {
	background-color: #18213e;
	display: block;
	height: 50px;
	float: left;
	box-sizing: border-box;
	border-left: 1px solid #fff;
}

#masthead-bt>li>a {
	background-color: #18213e;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 34px;
	height: 100%;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.2;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s;
}

#masthead-bt>li>a:hover {
	background-color: #6c778d;
}

@media screen and (max-width: 1024px) {
	#masthead-bt {
		display: none;
	}
}

/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */

/**
 * 5.1 Page Formats
 * ----------------------------------------------------------------------------
 */

/*--------------------------
parts
--------------------------*/

.content-section {
	padding-top: 38px;
	padding-bottom: 38px;
}

@media screen and (max-width: 992px) {
	.content-section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media screen and (max-width: 576px) {
	.content-section {
		padding-top: 24px;
		padding-bottom: 24px;
	}
}

.content-section h2 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 2.2rem;
	letter-spacing: 0.08em;
	text-indent: 0.3em;
}

.content-section p {
	margin: 0 0 30px;
	font-size: 1.8rem;
	line-height: 1.6;
}

@media screen and (max-width: 940px) {
	.content-section h2 {
		font-size: 2.1rem;
	}
	.content-section p {
		font-size: 1.5rem;
	}
}

.text-center {
	text-align: center!important;
}

.text-left {
	text-align: left!important;
}

.text-right {
	text-align: right!important;
}

.vertical-middle {
	vertical-align: middle;
}

.mx-auto {
	margin-right: auto!important;
	margin-left: auto!important;
	float: none!important;
}

.img-fluid {
	display: block;
	width: 100%;
	height: auto;
}

.portfolio-caption {
	padding: 25px 0 25px 0;
}

.portfolio-caption h4 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

.portfolio-caption p {
	margin: 0 0 35px;
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.6;
}

@media screen and (max-width: 576px) {
	.portfolio-caption h4 {
		font-size: 1.8rem;
	}
	.portfolio-caption p {
		font-size: 1.5rem;
	}
}

a.btn {
	color: #fff;
	text-decoration: none;
}

.btn {
	display: inline-block;
	padding: 6px 34px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	position: relative;
	border: 1px solid #fff;
}

.btn::before {
	content: '\f105';
	font-family: 'FontAwesome';
	color: #fff;
	font-size: 1.8rem;
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.btn.btn-hf {
	width: 50%;
}

.btn.btn-fl {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 30px;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

#text-alert {
	display: block;
	text-align: center;
	padding: 30px 0 0 0;
	line-height: 1.4;
}
/*
.index #text-alert {
	padding: 30px 15px 10px 15px;
}
*/
#text-alert p {
	display: inline-block;
	color: red;
	padding: 10px 40px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	border: 2px solid red;
}

@media screen and (max-width: 768px) {
	#text-alert {
		padding: 10px 15px 0px 15px;
	}

	#text-alert p {
		padding: 10px 15px;
		font-size: 1.6rem;
	}
}

#pankuzu-list {
	background: #f5f9fd;
	color: #999;
}

#pankuzu-list ul {
	letter-spacing: -.40em;
	font-size: 1.2rem;
	padding: 15px 0;
}

#pankuzu-list li {
	display: inline;
	letter-spacing: normal;
}

#pankuzu-list li a {
	padding-right: 15px;
	margin-right: 10px;
	position: relative;
	color: #999;
}

#pankuzu-list li a::before {
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-size: 1.1rem;
	font-weight: 600;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 576px) {
	#pankuzu-list ul {
		padding: 10px 0;
	}
}

.notes-list {
	margin-left: 15px;
	text-align: left;
}

.notes-list>li {
	position: relative;
	margin: 8px 0;
	list-style: outside none none;
	line-height: 1.4;
}

.notes-list>li:before {
	content: '・';
	font-size: 30px;
	line-height: 10px;
	position: absolute;
	left: -25px;
	top: 4px;
}

/*--------------------------
layout
--------------------------*/

#page-title {
	background: #0489D8 url(/summer/cmsw/wp-content/themes/gala_summer_renewal/img_summer/st_bg1.jpg) no-repeat center center;
	background-size: cover;
	margin-top: 0;
	min-height: 24.7vw;
	color: #fff;
	text-shadow: #0489D8 1px 1px 10px, #0489D8 -1px 1px 10px, #0489D8 1px -1px 10px, #0489D8 -1px -1px 10px;
	position: relative;
	padding: 11vw 0 7vw;
	font-size: 2.2rem;
}

#page-title h1 {
	font-size: 4.8rem;
	font-weight: 300;
	letter-spacing: 0.025em;
	line-height: 1;
	margin-bottom: 10px;
}

#page-title p {}

.mystery-head {
	display: inline-block;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}
@media (max-width: 767px) {
	.mystery-head {
		width: 100%;
	}
}
@media (min-width: 768px) {
	.mystery-head {
		width: 750px;
	}
}
@media (min-width: 992px) {
	.mystery-head {
		width: 970px;
	}
}
@media (min-width: 1200px) {
	.mystery-head {
		width: 1170px;
	}
}

.p_covid19 #page-title {
	background-image: url(../img_summer/covid19/st_bg1.jpg);
}

.p_facilities #page-title {
	background-image: url(../img_summer/facilities/st_bg1.jpg);
}

.p_corporate #page-title {
 	background-image: url(../img_summer/corporate/st_bg1.jpg);
}

.p_price #page-title {
	background-image: url(../img_summer/price/st_bg1.jpg);
}

.p_gelande #page-title {
	background-image: url(../img_summer/gelande/gelande_mv_01.jpg);
}

.p_school #page-title {
	background-image: url(../img_summer/school/st_bg1.jpg);
}

.p_rental #page-title {
	background-image: url(../img_summer/rental/rental_202405.jpg);
}

.p_trekking #page-title {
	background-image: url(../img_summer/trekking/st_bg1.jpg);
}

.p_poolspa #page-title {
	background-image: url(../img_summer/poolspa/st_bg1.jpg);
}

.p_workshop #page-title {
	background-image: url(../img_summer/workshop/st_bg1.jpg);
}

.p_playground #page-title {
	background-image: url(../img_summer/playground/st_bg1.jpg);
}

.p_access #page-title {
	background-image: url(../img_summer/access/st_bg1.jpg);
}

.p_sauna #page-title {
	/* background-image: url(../img_summer/sauna/st_bg1.jpg); */
	background-image: url(../img_summer/sauna/sauna_mv_01.jpg);
}

.p_bbq #page-title {
	background-image: url(../img_summer/bbq/st_bg1.jpg);
}

.p_mystery #page-title {
	background-size: contain;
	background-image: url(../img_summer/mystery/st_bg3.jpg);
	min-height: 23.7vw;
}

.p_worcation #page-title {
	background-image: url(../img_summer/worcation/st_bg1.jpg);
}

.p_otoku #page-title {
	background-image: url(../img_summer/otoku/st_bg1.jpg);
}

.p_mountaincart #page-title {
	background-image: url(../img_summer/mountaincart/st_bg1.jpg);
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {
	#page-title h1 {
		font-size: 2.8rem;
	}
	#page-title {
		font-size: 1.8rem;
		padding: 18vw 0 11vw;
	}

	.p_mystery #page-title {
		background-image: url(../img_summer/mystery/st_bg3_sp.jpg);
	}
}

@media screen and (max-width: 576px) {}

/**
 * 5.2 Page "homepage(Japanese Top-Page)"
 * ----------------------------------------------------------------------------
 */

/*-----------------------
#hero
-----------------------*/

#hero {
	position: relative;
	margin-top: 48px;
}

@media screen and (max-width: 1024px) {
	#hero {
		margin-top: 38px;
	}
}

#hero img, #hero source {
	display: block;
	width: 100%;
	height: auto;
}

/* copy */

.main-copy {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	text-align: center;
}

.main-copy h1 {
	padding-bottom: 24px;
	color: #0f1e40;
	font-size: 2.8rem;
	letter-spacing: 0.01em;
	line-height: 1.3;
	text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.main-copy p {
	background-color: #fff;
	display: inline-block;
	padding: 10px 35px;
	color: #0f1e40;
	text-align: center;
	font-size: 2.4rem;
	border: 2px solid #0f1e40;
	position: relative;
}

.main-copy p::before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #FFF;
	z-index: 2;
}

.main-copy p::after {
	content: "";
	position: absolute;
	bottom: -28px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #0f1e40;
	z-index: 1;
}

@media screen and (max-width: 990px) {
	.main-copy h1 {
		font-size: 2.2rem;
	}
	.main-copy p {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 768px) {
	.main-copy {
		width: 90%;
	}
	.main-copy h1 {
		padding-bottom: 14px;
		font-size: 1.8rem;
	}
	.main-copy p {
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 576px) {
	.main-copy {}
	.main-copy h1 {
		font-size: 1.6rem;
	}
	.main-copy p {
		font-size: 1.4rem;
		padding: 6px 20px;
	}
}

#hero_summer {
	/* 	height: 55vw;
	background: url(../img_summer/slide1.jpg) no-repeat top left; */
	background-size: cover;
	margin-top: 0px;
	position: absolute;
	color: #fff;
	font-weight: 700;
}

#hero_summer h1 {
	text-indent: -9999em;
}

#hero_summer .annotation {
	font-size: 11px;
	text-shadow: 0 0 5px #387D39;
	position: absolute;
	left: 0px;
	bottom: 0px;
	padding: 15px;
	text-shadow: 1px 1px 0 #387D39, -1px -1px 0 #387D39, -1px 1px 0 #387D39, 1px -1px 0 #387D39, 0px 1px 0 #387D39, 0-1px 0 #387D39, -1px 0 0 #387D39, 1px 0 0 #387D39;
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	#hero_summer {
		height: 100vw;
		background-image: url(../img_summer/slide_sp1.jpg);
		margin-top: 40px;
	}
	#hero_summer h1 {
		display: none;
	}
	#hero_summer .annotation {
		padding: 10px;
	}
}

.bnr_set {
	margin-bottom: 30px;
}

.bnr_set img {
	width: 100%;
}

/*-----------------------
#index-information
-----------------------*/

/* Main Layout */

#index-information {}

#index-information_inner {
	/* width: 930px; */
	width: 1150px;
	margin: 0 auto;
}

/* 1st Flex-box */

#index-information_inner .index-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 40px;
}

#index-information_inner .index-row>div:nth-of-type(1) {
	width: 570px;
}

#index-information_inner .index-row>div:nth-of-type(2) {
	width: 320px;
}

@media screen and (max-width: 940px) {
	#index-information_inner {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	#index-information_inner .index-row {
		display: block;
	}
	#index-information_inner .index-row>div:nth-of-type(1) {
		width: 100%;
	}
	#index-information_inner .index-row>div:nth-of-type(2) {
		width: 100%;
	}
}

/* 1st Flex-box__Left: Banners; */

.index-information-banner {
	display: flex;
	justify-content: space-between;
	/* align-items: flex-start; ※高さが揃わないためコメントアウト */
	flex-wrap: wrap;
	position: relative;
	width: 570px;
	margin-bottom: 20px;
}

.index-information-banner>li {
	display: flex;
	width: 280px;
}

.index-information-banner>li a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 24px 10px 24px 83px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.02em;
	line-height: 1.4;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.index-information-banner--online a {
	background: #eb5606 url(../images/icn_webket.png) no-repeat left center;
	-webkit-background-size: 76px auto;
	background-size: 76px auto;
}

.index-information-banner--online a:hover {
	background-color: #f4935f;
}

.index-information-banner--japan a {
	background: #028342 url(../images/icn_jr_pass.png) no-repeat left center;
	-webkit-background-size: 76px auto;
	background-size: 76px auto;
}

.index-information-banner--japan a:hover {
	background-color: #419269;
}

@media screen and (max-width: 940px) {
	.index-information-banner {
		width: 100%;
	}
	.index-information-banner>li {
		display: flex;
		width: 49.2%;
	}
}

@media screen and (max-width: 576px) {
	.index-information-banner>li {
		display: flex;
		width: 100%;
	}
	.index-information-banner>li:first-child {
		margin-bottom: 10px;
	}
}

/* 1st Flex-box__Left: News & Topics; */

.index-infomation-news {}

.index-infomation-news>h3 {
	background-color: #0489D8;
	padding: 10px 15px;
	color: #fff;
	font-size: 2rem;
	position: relative;
}

.index-infomation-news>h3>div {
	width: 130px;
	float: right;
}

.index-infomation-news>h3>div a {
	background-color: #fff;
	display: block;
	width: 100%;
	padding: 6px 10px;
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	float: right;
	position: relative;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.index-infomation-news>h3>div a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: 700;
	float: left;
}

.index-infomation-news__list {
	background-color: #F1F4F1;
	/* height: 305px; */
    height: 490px;
	overflow: auto;
}

.index-infomation-news__item {
	background-color: #F1F4F1;
}

.index-infomation-news__item a {
	display: block;
	width: auto;
	padding: 0 6px;
	line-height: 1.4;
	-webkit-transition: background-color .3s ease;
	transition: background-color .3s ease;
}

.index-infomation-news__item a:active, .index-infomation-news__item a:hover {
	background-color: rgba(56, 125, 57, 0.1);
	color: #333;
}

.index-infomation-news__item header {
	font-size: 1.4rem;
	padding: 10px 10px;
	border-bottom: 1px dotted #bfbfbf;
}

.index-infomation-news__item::after {
	content: "";
	display: block;
	clear: both;
}

.index-infomation-news__item header>span {
	padding-right: 7px;
	float: left;
}

.index-infomation-news__item h4 {
	display: block;
	margin-left: 104px;
	font-weight: normal;
}

.index-infomation-news__item h4>span {
	padding: 1rem;
	color: #ea3636;
}

.index-infomation-news__more {
	display: none;
}

@media screen and (max-width: 940px) {
	.index-infomation-news__list {
		height: 240px;
		margin-bottom: 30px;
	}
	.index-infomation-news>h3 {
		padding: 14px 10px 10px 16px;
		font-size: 1.8rem;
	}
	.index-infomation-news>h3>div {
		display: none;
	}
	.index-infomation-news__more {
		display: block;
		width: 80%;
		margin: 0 auto 20px auto;
	}
	.index-infomation-news__more a {
		background-color: #fff;
		display: block;
		width: 100%;
		padding: 10px 10px;
		font-size: 1.4rem;
		font-weight: normal;
		text-align: center;
		text-decoration: none;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
		border: 2px solid #666;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.index-infomation-news__more a:hover {
		background-color: #666;
		color: #fff;
	}
}

#hero_wrapper {
	position: relative;
}

.home_slider_wrap {
	/* position: absolute; */
	/* 	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden; */
}

.home_slider, .home_slider_sp {
	display: none;
}

.home_slider.slick-initialized {
	display: block;
	/* height: 55vw;*/
	height: 42vw;
}

.home_slider_sp.slick-initialized {
	display: none;
	height: 100vw;
}

.slick-slide {
	display: none;
	float: left;
	height: auto;
	min-height: 1px;
	outline: none;
}

.slick-slide img {
	max-width: 100vw !important;
}

.slick-slide a:hover img {
	opacity: 1 !important;
}

.slick-dots {
	bottom: 10px;
	width: auto;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #fff;
	overflow: hidden;
	border-radius: 2em;
	padding: 0.1em 0.3em;
}
.slick-dots li {
	margin: 0;
}

.slick-dots li button:before {
	font-family: "Font Awesome 5 Free";
	content: '\f111';
	font-weight: 700;
}

.weather_widget {
	width: 260px;
	background: rgba(230, 104, 25, 0.7);
	color: #fff;
	text-align: center;
	padding: 10px 15px 15px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	font-size: 14px;
	font-weight: normal;
	z-index: 1;
}

.weather_widget h4 {
	font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.weather_widget a.bt_link {
	padding: 5px 10px;
	color: #E66919;
	font-size: 12px;
	clear: both;
}

.weather_widget .w_item {
	width: 50%;
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
}


.weather_widget p {
	clear: both;
	padding-bottom: 10px;
}

.w_item .item_name {
	margin-bottom: 5px;
}

.item_icon {
	font-size: 52px;
	line-height: 1;
}

.item_temp {
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
}

.item_temp .l_txt {
	font-size: 52px;
	padding-right: 5px;
}

@media screen and (max-width:768px) {
	.weather_widget {
		width: auto;
		position: static;
		margin: 20px 20px 0;
	}
	.home_slider.slick-initialized {
		display: none;
	}
	.home_slider_sp.slick-initialized {
		display: block;
	}
	.slick-dots {
		bottom: -23px;
	}
}

/* 1st Flex-box__Right: Banner_weather */

.content-section p.index-infomation-banner-weather {
	display: block;
	margin-bottom: 6px;
}

.index-infomation-banner-weather a {
	display: block;
	padding: 1px 10px 0px 10px;
	font-size: 1.4rem;
	color: #4886d1;
	text-align: center;
	letter-spacing: 0.05em;
	text-decoration: none;
	border: 1px solid #4886d1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* 1st Flex-box__Right: Banner_two */

.index-infomation-banner-two {
	display: flex;
	justify-content: space-between;
	/* align-items: flex-start; ※高さが揃わないためコメントアウト */
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 20px;
}

.index-infomation-banner-two>li {
	display: flex;
	width: 157px;
}

.index-infomation-banner-two>li a {
	display: block;
	width: 100%;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.02em;
	line-height: 1.4;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.index-infomation-banner-two--live a {
	background: url(../images/bg_btn_livecam.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	text-align: center;
	padding: 65px 5px 0 5px;
}

.index-infomation-banner-two--live a:hover {
	background-color: #f4935f;
}

.index-infomation-banner-two--snow a {}

.index-infomation-banner-two--snow a:hover {}

.index-infomation-banner-two--snow a img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 940px) {
	.index-infomation-banner-two>li {
		width: 49.2%;
	}
	.index-infomation-banner-two--live a {
		padding: 0;
		position: relative;
	}
	.index-infomation-banner-two--live a span {
		display: block;
		width: 100%;
		text-align: center;
		position: absolute;
		bottom: 8px;
		font-size: 2rem;
	}
}

@media screen and (max-width: 576px) {
	.index-infomation-banner-two--live a span {
		bottom: 4px;
		font-size: 1.6rem;
	}
}

/* 1st Flex-box__Right: Banner_prices */

.content-section p.index-infomation-banner-prices {
	display: block;
	margin-bottom: 0;
}

.index-infomation-banner-prices a {
	display: block;
	background: url(../images/bg_btn_prices.jpg) no-repeat left center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 16px 5px 16px 5px;
	font-size: 1.7rem;
	letter-spacing: 0.02em;
	color: #e65208;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.index-infomation-banner-prices a:hover {
	background-color: #f4935f;
}

/* 2nd Flex-box */

#index-information_inner .index-row-menu {
	display: flex;
	text-align: left;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 35px;
    width: 100%;
}

#index-information_inner .index-row-menu>li {
	display: block;
	width: 220px;
	height: 180px;
	margin-bottom: 20px;

	/*
	width: 290px;
	height: 240px;
	margin-bottom: 30px;
	*/
}

#index-information_inner .index-row-menu>li a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

#index-information_inner .index-row-menu>li a p {
	display: flex;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
	z-index: 10;
}

#index-information_inner .index-row-menu>li a p span {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: 700;
	background-color: rgba(4, 138, 216, 0.6);
	width: 100%;
	/* min-height: 60px; */
	padding: 15px 10px;
	font-size: 1.8rem;
	line-height: 1.1;
	letter-spacing: 0;
	color: #fff;
}

#index-information_inner .index-row-menu>li a::after {
	display: block;
	content: "";
	width: 116%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -8%;
	transition: opacity 0.5s, transform 0.4s;
}

#index-information_inner .index-row-menu>li a:hover::after {
	transform: scale(1.1);
	opacity: 0.7;
}

#index-information_inner .index-row-menu>li.index-row-menu--trail a::after {
	background: url(../images/bg_btn_map.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--season a::after {
	background: url(../images/bg_btn_season.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--rental a::after {
	background: url(../images/bg_btn_rental.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--lesson a::after {
	background: url(../images/bg_btn_lesson.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--snow a::after {
	background: url(../images/bg_btn_activities.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--event a::after {
	background: url(../images/bg_btn_event.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--facilitites a::after {
	background: url(../images/bg_btn_facility.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--sample a::after {
	background: url(../images/bg_btn_travelplan.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_time a::after {
	background: url(../img_summer/act_time.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract1 a::after {
	background: url(../img_summer/act_gelande.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract2 a::after {
	background: url(../img_summer/act2.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract4 a::after {
	background: url(../img_summer/act4.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract5 a::after {
	background: url(../img_summer/act5.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract6 a::after {
	background: url(../img_summer/act6.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract7 a::after {
	background: url(../img_summer/act7.jpg) no-repeat left top;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract8 a::after {
	background: url(../img_summer/playground/airjump1-1.jpg) no-repeat center center;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract9 a::after {
	background: url(../img_summer/act9.jpg) no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract10 a::after {
	background: url(../img_summer/act10.jpg) no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract11 a::after {
	background: url(../img_summer/bungee_202405.jpg) no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract12 a::after {
	background: url(../img_summer/act12.jpg) no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_rental a::after {
	background: url(../img_summer/act_rental.jpg) no-repeat center center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_access a::after {
	background: url(../img_summer/act_access.jpg) no-repeat left top;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_mountaincart a::after {
	background: url(../img_summer/act_mountaincart.jpg) no-repeat left top;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_worcation a::after {
	background: url(../img_summer/act_worcation.jpg) no-repeat left top;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_price a::after {
	background: url(../img_summer/act_price_2024.jpg) no-repeat left bottom;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_corporate a::after {
	background: url(../img_summer/act_corporate_2024.jpg) no-repeat left bottom;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_recruit a::after {
	background: url(../img_summer/act_recruit.jpg) no-repeat left top;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_trekking a::after {
	background: url(../img_summer/act_trekking.jpg) no-repeat left top;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_bbq a::after {
	background: url(../img_summer/act_restaurant.jpg) no-repeat left top;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_kids a::after {
	background: url(../img_summer/act_kids.jpg) no-repeat left bottom;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_night a::after {
	background: url(../img_summer/202408_yorumatsuri_sp.jpg) no-repeat left top;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_mystery a::after {
	background: url(../img_summer/act_shinkarion.jpg) no-repeat center center;
	background-size: cover;
}

#index-information_inner .index-row-menu>li.index-row-menu--summeract_digitalmap a::after {
	background: url(../img_summer/act_digitalmap.jpg) no-repeat center top;
	background-size: cover;
}

@media screen and (min-width: 941px) {
	#index-information_inner .index-row-menu {
		justify-content: flex-start;
		column-gap: calc((100% - (220px * 5)) / 4);
	}
}

@media screen and (max-width: 940px) {
	#index-information_inner .index-row-menu>li {
		width: 49.2%;
	}
	#index-information_inner .index-row-menu>li a p {
		font-size: 1.8rem;
	}

	#index-information_inner .index-row-menu>li.index-row-menu--summeract_mystery a::after {
		background-size: contain;
	}
	#index-information_inner .index-row-menu>li.index-row-menu--summeract_digitalmap a::after {
		background-size: contain;
	}
}

@media screen and (max-width: 576px) {
	#index-information_inner .index-row-menu {}
	#index-information_inner .index-row-menu>li {
		width: 48%;
		height: 120px;
	}
	#index-information_inner .index-row-menu>li a p span {
		padding: 10px 5px;
		font-size: 14px;
	}
}

/* Width100%: Banner_download */

.content-section p.index-banner-wd_mx100-download {
	display: block;
	max-width: 600px;
	height: 120px;
	margin-left: auto;
	margin-right: auto;
}

.index-banner-wd_mx100-download a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: url(../images/bg_btn_download.jpg) no-repeat left center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	padding: 16px 5px 16px 5px;
	font-size: 2.8rem;
	letter-spacing: 0.02em;
	color: #e65208;
	font-weight: 700;
	text-decoration: none;
	text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.index-infomation-banner-prices a:hover {
	background-color: #f4935f;
}

@media screen and (max-width: 610px) {
	.content-section p.index-banner-wd_mx100-download {
		display: block;
		max-width: 100%;
		height: 120px;
	}
	.index-banner-wd_mx100-download a {
		font-size: 2.4rem;
	}
}

.index-row-homebnr {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	width: 930px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 40px;
}

.index-row-homebnr>div {
	width: 450px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.index-row-homebnr {
		width: 100%;
		padding: 0;
		box-sizing: border-box;
	}
	.index-row-homebnr>div {
		width: 100%;
	}
}

/*-----------------------
#index-youtube
-----------------------*/

#index-youtube {
	background-color: #387D39;
	color: #fff;
}

/* Main Layout */

.index-row-youtube {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	width: 930px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 25px;
}

/* 20190809 */
.index-row-youtube.banner {
	/* margin-top: -30px; */
}

.index-row-youtube>div {
	width: 450px;
}

@media screen and (max-width: 940px) {
	.index-row-youtube {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.index-row-youtube>div {
		width: 100%;
	}
	.index-row-youtube>div:first-child {
		margin-bottom: 20px;
	}


	/* 20190809 */
	.index-row-youtube.banner {
		margin-top: 0;
		margin-bottom: 30px;
	}
}

#index-youtube.content-section h2 {
	text-transform: inherit;
	margin-bottom: 8px;
}

/*-----------------------
#index-instagram
-----------------------*/

#index-instagram {
	background-color: rgba(4, 138, 216, 0.6);
	color: #fff;
}

#index-instagram.content-section h2 {
	margin-bottom: 10px;
}

#index-instagram>div {
	padding-bottom: 13px;
}

/*-----------------------
#index-sns
-----------------------*/

#index-sns {
	background: #0489D8;
	color: #fff;
}

#index-sns .container {
	padding-bottom: 15px;
}

/* Main Layout */

.index-row-sns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	width: 750px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 25px;
}

.index-row-sns>div {
	width: 360px;
}

@media screen and (max-width: 940px) {
	.index-row-sns {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.index-row-sns>div {
		width: 100%;
	}
	.index-row-sns>div:first-child {
		margin-bottom: 20px;
	}
}

#index-sns #facebook {}

#index-sns #tripadvisor {}

#index-sns #CDSWIDSSP {
	width: 100%!important;
}

#index-sns #TA_selfserveprop577>img {
	position: absolute;
	margin-left: -9999px;
	overflow: hidden;
}

/**
 * 5.3 Page
 * ----------------------------------------------------------------------------
 */

/*-----------------------
Share Code
-----------------------*/

#entry-content.content-section {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media screen and (max-width: 992px) {
	#entry-content.content-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media screen and (max-width: 576px) {
	#entry-content.content-section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

#entry-content.content-section p {
	margin: 0 0 30px;
	font-size: 1.6rem;
	line-height: 1.6;
}

#entry-content.content-section p.nmb {
	margin: 0 0 0px;
}

@media screen and (max-width: 576px) {
	#entry-content.content-section p {
		font-size: 1.2rem;
	}
}

#entry-content.content-section .sub-section {
	margin-bottom: 60px;
}

@media screen and (max-width: 576px) {
	#entry-content.content-section .sub-section {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 768px) {
	.scroll {
		overflow: auto;
		white-space: nowrap;
		margin-bottom: 5px;
	}
	.scroll::-webkit-scrollbar {
		height: 5px;
	}
	.scroll::-webkit-scrollbar-track {
		background: #F1F1F1;
	}
	.scroll::-webkit-scrollbar-thumb {
		background: #BCBCBC;
	}
}

.s_txt {
	font-size: 75% !important;
}

.l_txt {
	font-size: 150% !important;
}

#entry-content h2 {
	color: #0489D8;
	font-weight: 300;
	text-indent: 0;
	font-size: 2.8rem;
	margin-bottom: 30px;
}

#entry-content h2.sk_name {
	background: #0489D8;
	padding: 0.3em 0.6em;
	color: #fff;
	margin-bottom: 0px;
	font-size: 2.4rem;
	text-align: center;
}

#entry-content h3 {
	background: #0489D8;
	padding: 0.4em 0.8em;
	color: #fff;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

#entry-content h4 {
	color: #0489D8;
	border-bottom: 2px solid #0489D8;
	padding-bottom: 0.3em;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

#entry-content h4 a {
	color: #0489D8;
	text-decoration: none;
}

#entry-content h5 {
	font-size: 1.6rem;
    padding: 0 0 0.5em;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

#entry-content h5.sk_sp {
	padding: 0.5em 0.8em;
	background: #ffee00;
	text-align: center;
	font-size: 1.4rem;
}

#entry-content ul {
	padding-left: 1.5em;
	margin-bottom: 30px;
}

#entry-content table {
	margin: 0 0 30px;
	width: 100%;
	text-align: center;
}

#entry-content table.table_autowidth {
	width: auto;
}

#entry-content thead {
	background: rgba(4, 137, 216, 0.1);
}

#entry-content tbody {
	border-top: 1px solid #ccc;
}

#entry-content th, #entry-content td {
	padding: 0.4em 0.8em;
	border-bottom: 1px solid #ccc;
	/* min-width: 4em; */
	min-width: 9em;
}

#entry-content th {
	text-align: left;
	padding-right: 0;
}

#entry-content tbody tr:hover {
	background: #f5f5f5;
}

#entry-content .table_cal {
	border: 1px solid #ccc;
}

#entry-content .table_cal th, #entry-content .table_cal td {
	padding: 0.2em 0.3em;
	min-width: 1em;
	text-align: center;
	border-right: 1px solid #ccc;
}

#entry-content .table_cal tbody th:first-child, #entry-content .table_cal tbody td:first-child, .holiday {
	color: #f00;
}

#entry-content .table_cal tbody th:last-child, #entry-content .table_cal tbody td:last-child {
	color: #00f;
}

#entry-content .table_cal tbody td.openday {
	background: rgba(255, 102, 0, 0.2);
}

#entry-content .table_cal tbody td.openday2 {
	background: rgba(0, 217, 255, 0.2);
}

#entry-content .table_cal tbody td.openday3 {
	background: rgba(208, 255, 0, 0.2);
}


#entry-content blockquote {
	margin: 0 0 30px;
	border: 1px solid #0489D8;
	padding: 15px 15px 0px;
}
#entry-content blockquote h4 {
	background: #0489D8;
	color: #fff;
	padding: 0.6em;
	font-size: 2rem;
	margin: -15px -15px 30px;
	text-align: center;
}

.openday_mark {
	color: rgba(255, 102, 0, 0.2);
}

.openday_mark2 {
	color: rgba(0, 217, 255, 0.2);
}

.openday_mark3 {
	color: rgba(208, 255, 0, 0.9);
}

.text-danger {
    color: #dc3545!important;
}
.font-weight-bold {
    font-weight: 700!important;
}


@media screen and (max-width: 576px) {
	#entry-content {
		font-size: 1.4rem;
	}
	#entry-content h2 {
		font-size: 2.0rem;
		margin-bottom: 15px;
	}
	#entry-content h4 {
		font-size: 1.6rem;
	}
	#entry-content table {
		font-size: 1.2rem;
	}
}

#entry-content a.bt_link {
	background: #fff;
	padding: 0.8em 1em;
	color: #666;
	border: 2px solid #666;
	font-size: 1.8rem;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	font-weight: 700;
}

#entry-content a.bt_link:before {
	float: right;
}

#entry-content a.bt_link:hover {
	opacity: 1;
	border: 2px solid #0489D8;
	background: #0489D8;
	color: #fff;
}

#entry-content a.bt_link.bt_anchor:before {
	content: "\f078";
}

#entry-content a.bt_link.bt_back:before {
	content: "\f137";
	float: left;
}

#entry-content a.bt_link.bt_link_s {
	font-size: 1.4rem;
	padding: 0.6em 0.8em;
}

#entry-content h5.postdate {
	color: #888;
}

.box_info {
	text-align: center;
	border: 3px solid #ccc;
	font-size: 1.8rem;
	padding: 1em;
}
.box_info.red {
	color: red;
	border: 3px solid red;

}

.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 100%;
	position: relative;
	margin-bottom: 30px;
}

.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

@media screen and (max-width: 768px) {
	#entry-content a.bt_link {
		padding: 0.4em 0.5em;
		font-size: 1.2rem;
		border-radius: 5px;
	}
}

a.bt_subcont {
	color: #fff;
	text-align: center;
	height: 10em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.5;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

a.bt_subcont>.item_name {
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.3);
	transition: .5s;
	display: flex;
	align-items: center;
	justify-content: center;
}

a.bt_subcont>.item_img {
	position: absolute;
	width: 100%;
    height: 100%;
    top: 0;
	left: 0;
	background: center center no-repeat;
	background-size: cover;
	transition: .5s;
}

a.bt_subcont:hover {
	color: #fff !important;
	opacity: 1;
}

a.bt_subcont:hover>.item_name {
	background-color: rgba(4, 138, 216, 0.6);
}

a.bt_subcont:hover>.item_img {
	opacity: 1 !important;
	transform: scale(1.1);
}

.cam_area {
	background-color: #ffc;
	color: #f00;
	border: 1px solid #f00;
	text-align: center;
	width: 100%;
	padding: 27% 0 27%;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*-----------------------
SEASONS & PRICES
-----------------------*/

.season .img-fluid {
	margin-bottom: 10px;
}

.season #entry-content.content-section .price-list {
	margin-bottom: 40px;
}

.season #entry-content.content-section .price-list h4 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

.season #entry-content.content-section .price-list table {
	width: 100%;
	margin: 0 0 5px;
	font-size: 1.4rem;
}

.season #entry-content.content-section .price-list table th {
	padding: 10px 10px;
	font-size: 1.4rem;
	vertical-align: middle;
	border: 1px solid #fff;
}

.season #entry-content.content-section .price-list table td {
	padding: 10px 10px;
	font-size: 1.4rem;
	vertical-align: middle;
	border: 1px solid #fff;
}

.season #entry-content.content-section .price-list p {
	margin: 0 0 35px;
	text-align: right;
	font-size: 1.4rem;
	line-height: 1;
}

@media screen and (max-width: 768px) {
	.season #entry-content.content-section .price-list h4 {
		font-size: 1.8rem;
	}
}

.season .notes-heading {
	text-align: left;
	font-size: 1.2rem;
}

.season .notes-heading dt {
	font-weight: 700;
	margin-bottom: 5px;
}

.season .notes-heading dd {}

.season .notes-list {
	font-size: 1.2rem;
	margin-left: 12px;
}

.season .notes-list>li:before {
	content: '・';
	color: #fff;
	font-size: 2.4rem;
	line-height: 10px;
	position: absolute;
	left: -21px;
	top: 5px;
}

/*-----------------------
TRAIL MAP & STATS
-----------------------*/

.map .map-link {
	padding-top: 20px;
}

.map #entry-content.content-section .map-link p {
	margin-bottom: 15px;
}

.map #entry-content.content-section .map-notes {
	text-align: left;
	font-size: 1.2rem;
}

.map .liftsatus {
	margin-bottom: 60px;
}

.map .scroll table {
	background-color: #fff;
	width: 100%;
	margin: 0 0 5px;
	font-size: 1.4rem;
	color: #0e1e42;
}

.map .scroll table th {
	padding: 12px 10px;
	font-size: 1.3rem;
	line-height: 1.2;
	vertical-align: middle;
	border: 1px solid #0e1e42;
}

.map .scroll table td {
	padding: 12px 10px;
	font-size: 1.3rem;
	line-height: 1.2;
	vertical-align: middle;
	border: 1px solid #0e1e42;
}

.map .scroll table .liftsatus-maphead {
	background-color: #ffffcc;
	padding: 15px 10px;
	color: #333;
	font-size: 1.5rem;
}

.map .scroll table .liftsatus-gondola {
	background-color: #d23c75;
	color: #fff;
	width: 30%;
}

.map .scroll table .liftsatus-gondola-pale {
	background-color: #faebf1;
	color: #333;
	width: 50%;
}

.map .scroll table .liftsatus-centralarea {
	background-color: #009966;
	color: #fff;
	width: 30%;
}

.map .scroll table .liftsatus-centralarea-pale {
	background-color: #e5f5ef;
	color: #333;
	width: 50%;
}

.map .scroll table .liftsatus-northarea {
	background-color: #0f4cb3;
	color: #fff;
}

.map .scroll table .liftsatus-northarea-pale {
	background-color: #e5eaf5;
	color: #333;
}

.map .scroll table .liftsatus-southarea {
	background-color: #cc0000;
	color: #fff;
}

.map .scroll table .liftsatus-southarea-pale {
	background-color: #ffecec;
	color: #333;
}

.map .scroll table .liftsatus-etc {
	background-color: #00a8eb;
	color: #fff;
}

.map .scroll table .liftsatus-etc-pale {
	background-color: #e8f4fd;
	color: #333;
}

.map .okay {
	color: #2374fa;
	font-weight: 700;
}

.map .stop {
	color: #FF0000;
	font-weight: 700;
}

.map .end {
	font-weight: 700;
}

.map .part {
	color: #FF9900;
	font-weight: 700;
}

.map .no {
	color: #FF0000;
	font-weight: 700;
}

.welcome-message h4 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

@media screen and (max-width: 576px) {
	.welcome-message h4 {
		font-size: 1.8rem;
	}
}

.map-photo .col-md-6 {
	margin-bottom: 30px;
}

.map .scroll table .liftsatus-centralarea-pale img, .map .scroll table .liftsatus-northarea-pale img, .map .scroll table .liftsatus-southarea-pale img {
	display: block;
	float: left;
	margin-right: 10px;
	margin-bottom: 5px;
}

/*-----------------------
LESSON
-----------------------*/

.lesson .img-fluid {
	margin-bottom: 10px;
}

.lesson .speciality-list {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.6;
}

.lesson .speciality-list dt {
	font-weight: 700;
}

.lesson .speciality-list dd {
	margin-bottom: 35px;
}

@media screen and (max-width: 576px) {
	.lesson .speciality-list {
		font-size: 1.5rem;
	}
}

.lesson .notes-list {
	font-size: 1.4rem;
	margin-left: 12px;
}

.lesson .notes-list>li:before {
	content: '・';
	color: #fff;
	font-size: 2.4rem;
	line-height: 10px;
	position: absolute;
	left: -21px;
	top: 6px;
}

.lesson-package h4 {
	margin: 0 0 35px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

#entry-content.content-section .lesson-package p {
	margin: 0;
}

@media screen and (max-width: 576px) {
	.lesson-package h4 {
		font-size: 1.8rem;
		margin: 0 0 15px;
	}
	.lesson-package .col-md-6 {
		margin-bottom: 40px;
	}
}

#lesson-chinese-thai .col-md-12 {
	padding-top: 40px;
}

@media screen and (max-width: 576px) {
	#lesson-chinese-thai .col-md-12 {
		padding-top: 20px;
	}
}

/* lik color set */

#entry-content #lesson-english a:hover {
	color: #fff;
}

#entry-content #lesson-chinese-thai a {
	text-decoration: underline;
}

/*
メニューを追加する場合
#lesson-english-menuup {  margin-bottom: 35px; }
.lesson #entry-content.content-section .price-list { margin-bottom: 40px; }
.lesson #entry-content.content-section .price-list h4 { margin: 0 0 15px;  font-weight: 700; font-size: 2.2rem; text-transform: uppercase; }
.lesson #entry-content.content-section .price-list table { width: 100%; margin: 0 0 5px; font-size: 1.4rem; }
.lesson #entry-content.content-section .price-list table th { padding: 10px 10px; font-size: 1.4rem; vertical-align: middle; border: 1px solid #fff; }
.lesson #entry-content.content-section .price-list table td { padding: 10px 10px; font-size: 1.4rem; vertical-align: middle; border: 1px solid #fff; }
.lesson #entry-content.content-section .price-list p.unit { margin: 0 0 35px; text-align: right; font-size: 1.4rem; line-height: 1; }

@media screen and (max-width: 768px) {
	.lesson #entry-content.content-section .price-list h4 { font-size: 1.8rem; }
}

.lesson .notes-heading { text-align: left; font-size: 1.2rem; margin-bottom: 35px; }
.lesson .notes-heading dt { font-weight: 700; margin-bottom: 5px; }
.lesson .notes-heading dd {  }

.lesson .notes-list { font-size: 1.2rem; margin-left: 12px; }
.lesson .notes-list > li:before { content: '・'; color: #fff; font-size: 2.4rem; line-height: 10px; position: absolute; left: -21px; top: 5px; }
*/

/*-----------------------
GETTING HERE(Access)
-----------------------*/

.access .access-google .col-md-12 {
	margin-bottom: 30px;
}

.access .access-google .col-md-12:nth-of-type(2) {
	margin-bottom: 0;
}

.access .access-google .col-md-12 iframe {
	width: 100%;
}

@media screen and (max-width: 576px) {
	.access .access-google .col-md-12 iframe {
		height: 300px;
	}
}

.access .how-to-access dl {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.6;
}

.access .how-to-access dt {
	font-weight: 700;
}

.access .how-to-access dd {
	margin-bottom: 35px;
}

@media screen and (max-width: 576px) {
	.access .how-to-access dl {
		font-size: 1.5rem;
	}
}

.access .how-to-access img {
	margin-bottom: 30px;
}

/*-----------------------
SERVICES & FACILITIES
-----------------------*/

.service .service-item {
	margin-bottom: 40px;
	text-decoration: none;
}

.service .service-item .col-md-6:nth-of-type(1) {
	background-color: #6c778d;
	padding-top: 50px;
	padding-bottom: 15px;
	color: #fff;
}

.service .service-item .col-md-6 h4 {
	margin: 0 0 25px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

@media screen and (max-width: 576px) {
	.service .service-item .col-md-6 h4 {
		font-size: 1.8rem;
		margin: 0 0 15px;
	}
}

.service .service-item .col-md-6:nth-of-type(2) {
	display: block;
	overflow: hidden;
	position: relative;
}

.service .service-item .col-md-6:nth-of-type(2)::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-background-size: cover;
	background-size: cover;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	cursor: pointer;
}

.service .service-item.service-item-rental .col-md-6:nth-of-type(2)::after {
	background: url(../service/images/img_index_rental.jpg) no-repeat center center;
}

.service .service-item.service-item-restaurants .col-md-6:nth-of-type(2)::after {
	background: url(../service/images/img_index_restaurants.jpg) no-repeat center center;
}

.service .service-item.service-item-facility .col-md-6:nth-of-type(2)::after {
	background: url(../service/images/img_index_facility.jpg) no-repeat center center;
}

.service .service-item:hover .col-md-6:nth-of-type(2)::after {
	opacity: .8;
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

@media screen and (max-width: 768px) {
	.service .service-item .col-md-6:nth-of-type(2) {
		display: none;
	}
	.service .service-item .col-md-6:nth-of-type(2)::after {
		display: none;
	}
}

.service .service-floor {
	padding-top: 20px;
}

.service .service-floor .notes-list {
	font-size: 1.4rem;
	margin-left: 20px;
}

.service .service-floor .notes-list li {
	list-style: outside decimal none;
}

.service .service-floor .notes-list>li:before {
	display: none;
}

@media screen and (max-width: 768px) {
	.service .service-floor {
		padding-top: 10px;
	}
}

.service p.download_btn {
	margin: 0 0 100px;
	font-size: 2.0rem;
}

.service p.download_btn .btn {
	padding: 14px 34px;
}

@media screen and (max-width: 576px) {
	.service p.download_btn {
		margin: 0 0 40px;
		font-size: 1.6rem;
	}
	.service p.download_btn .btn {
		padding: 10px 34px;
	}
}

/*-----------------------
RENTAL
-----------------------*/

.rental .slomon-item {
	margin-bottom: 60px;
	text-decoration: none;
}

.rental .slomon-item .col-md-6 h4 {
	margin: 0 0 25px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

@media screen and (max-width: 576px) {
	.rental .slomon-item .col-md-6 h4 {
		font-size: 1.8rem;
		margin: 0 0 15px;
	}
}

.rental .slomon-item dl {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.6;
}

.rental .slomon-item dt {
	font-weight: 700;
}

.rental .slomon-item dd {
	margin-bottom: 35px;
}

.rental .slomon-item dd span {
	display: block;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

@media screen and (max-width: 576px) {
	.rental .slomon-item dl {
		font-size: 1.5rem;
	}
}

.rental #entry-content.content-section .slomon-price-list h4 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

.rental #entry-content.content-section .slomon-price-list p {
	margin: 0 0 5px;
	text-align: right;
	font-size: 1.4rem;
	line-height: 1;
}

.rental #entry-content.content-section .slomon-price-list table {
	width: 100%;
	margin: 0 0 5px;
	font-size: 1.4rem;
}

.rental #entry-content.content-section .slomon-price-list table th {
	padding: 10px 10px;
	font-size: 1.4rem;
	vertical-align: middle;
	border: 1px solid #fff;
}

.rental #entry-content.content-section .slomon-price-list table td {
	padding: 10px 10px;
	font-size: 1.4rem;
	vertical-align: middle;
	border: 1px solid #fff;
}

.rental #entry-content.content-section .slomon-price-list table dl {
	text-align: left;
	font-size: 1.2rem;
}

.rental #entry-content.content-section .slomon-price-list table dt {
	font-weight: 700;
	margin-bottom: 5px;
}

.rental #entry-content.content-section .slomon-price-list table dd {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.rental #entry-content.content-section .slomon-price-list h4 {
		font-size: 1.8rem;
	}
}

.rental .notes-list {
	font-size: 1.2rem;
	margin-left: 12px;
}

.rental .notes-list>li:before {
	content: '・';
	color: #fff;
	font-size: 2.4rem;
	line-height: 10px;
	position: absolute;
	left: -21px;
	top: 5px;
}

/*-----------------------
RESTAURANT
-----------------------*/

.restaurant .restaurant-item {
	margin-bottom: 40px;
}

.restaurant .restaurant-item .col-md-6 h4 {
	margin: 0 0 25px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

@media screen and (max-width: 576px) {
	.restaurant .restaurant-item .col-md-6 h4 {
		font-size: 1.8rem;
		margin: 0 0 15px;
	}
}

/*-----------------------
FACILITIES
-----------------------*/

.facility .facility-item {
	margin-bottom: 60px;
}

.facility .facility-item:last-child {
	margin-bottom: 0px;
}

.facility .facility-item .col-md-6 h4 {
	margin: 0 0 25px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

@media screen and (max-width: 576px) {
	.facility .facility-item .col-md-6 h4 {
		font-size: 1.8rem;
		margin: 0 0 15px;
	}
}

.facility #entry-content.content-section .facility-item-spa table {
	width: 100%;
	margin: 0 0 5px;
	font-size: 1.4rem;
}

.facility #entry-content.content-section .facility-item-spa table th {
	padding: 10px 10px;
	font-size: 1.4rem;
	vertical-align: middle;
	border: 1px solid #fff;
	white-space: nowrap;
}

.facility #entry-content.content-section .facility-item-spa table td {
	padding: 10px 10px;
	font-size: 1.4rem;
	vertical-align: middle;
	border: 1px solid #fff;
}

.facility #entry-content.content-section .facility-item-spa p {
	margin: 0 0 5px;
	text-align: right;
	font-size: 1.4rem;
	line-height: 1;
}

.facility .facility-item-exchange dl {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.6;
}

@media screen and (max-width: 576px) {
	.facility .facility-item-exchange dl {
		font-size: 1.5rem;
	}
}

.facility .facility-item-exchange dt {
	font-weight: 700;
}

.facility .facility-item-exchange dd {
	margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
	.facility .facility-item-exchange dd {
		margin-bottom: 30px;
	}
}

.facility .facility-item-exchange dd .img-fluid {
	margin-top: 10px;
}

.facility .facility-item-exchange>div:nth-of-type(2) .img-fluid {
	margin-bottom: 30px;
}

.facility .facility-item-exchange>div:nth-of-type(2) .img-fluid:last-child {
	margin-bottom: 0px;
}

.facility .facility-item-exchange>div:nth-of-type(2) a {
	background-color: #fff;
	display: block;
}

.facility .facility-item-exchange>div:nth-of-type(2) a .img-fluid {
	opacity: 1;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.facility .facility-item-exchange>div:nth-of-type(2) a:hover .img-fluid {
	opacity: 0.7;
}

.facility #entry-content.content-section .facility-item-delivery p:nth-of-type(2) {
	margin-bottom: 0;
}

.facility .notes-list {
	font-size: 1.2rem;
	margin-left: 20px;
	margin-bottom: 35px;
}

.facility .notes-list li {
	list-style: outside decimal none;
}

.facility .notes-list>li:before {
	display: none;
}

.facility #entry-content.content-section #facility-information {
	margin-bottom: 20px;
}

.facility #entry-content.content-section p.facility-item-tax {
	margin: 0 0 80px;
}

@media screen and (max-width: 768px) {
	.facility #entry-content.content-section p.facility-item-tax {
		margin: 0 0 40px;
	}
}

/*-----------------------
DOWNLOAD
-----------------------*/

.download .img-fluid {
	margin-bottom: 20px;
}

.download .notes-list {
	font-size: 1.4rem;
	margin-left: 12px;
}

.download .notes-list a {
	color: #fff;
}

.download .notes-list>li:before {
	content: '・';
	color: #fff;
	font-size: 2.4rem;
	line-height: 10px;
	position: absolute;
	left: -21px;
	top: 6px;
}

/*-----------------------
EVENT
SNOW ACTIVITIES
-----------------------*/

.event .img-fluid {
	margin-bottom: 10px;
}

.event .event-item {
	margin-bottom: 40px;
}

.event .event-item .col-md-6 h4 {
	margin: 0 0 25px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

@media screen and (max-width: 576px) {
	.event .event-item .col-md-6 h4 {
		font-size: 1.8rem;
		margin: 0 0 15px;
	}
}

.event .notes-list {
	font-size: 1.4rem;
	margin-left: 12px;
	margin-bottom: 20px;
}

.event .notes-list>li:before {
	content: '・';
	color: #fff;
	font-size: 2.4rem;
	line-height: 10px;
	position: absolute;
	left: -21px;
	top: 6px;
}

.event dl.snow-activities__hours {
	text-align: left;
	font-size: 1.6rem;
	line-height: 1.6;
}

.event dl.snow-activities__hours dt {
	font-weight: 700;
}

.event dl.snow-activities__hours dd {
	margin-bottom: 35px;
}

@media screen and (max-width: 576px) {
	.event dl.snow-activities__hours {
		font-size: 1.5rem;
	}
	.event dl.snow-activities__hours dd {
		margin-bottom: 20px;
	}
}

/*-----------------------
NEWSLIST(list, detail)
-----------------------*/

/* list page */

.newslist-main>div.newslist-main__left {
	margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
	.newslist-main>div.newslist-main__left {
		margin-bottom: 0px;
	}
	.newslist-main {
		margin-bottom: 20px;
	}
}

.infomation-news__list {}

.infomation-news__item {
	display: block;
	text-align: left;
}

.infomation-news__item a {
	display: block;
	width: auto;
	padding: 0 6px;
	color: #fff;
	line-height: 1.4;
	-webkit-transition: background-color .3s ease;
	transition: background-color .3s ease;
}

.infomation-news__item a:active, .infomation-news__item a:hover {
	/* background-color: rgba(203,211,226,0.5); color: #333; */
}

.infomation-news__item header {
	font-size: 1.4rem;
	padding: 10px 10px;
	border-bottom: 1px dotted #bfbfbf;
}

.infomation-news__item::after {
	content: "";
	display: block;
	clear: both;
}

.infomation-news__item header>span {
	padding-right: 7px;
	float: left;
}

.infomation-news__item h4 {
	display: block;
	margin-left: 104px;
	font-weight: normal;
}

.infomation-news__item h4>span {
	padding: 1rem;
	color: #ea3636;
}

@media screen and (max-width: 576px) {
	.infomation-news__item header span {
		padding-right: 7px;
		float: none;
		font-weight: 700;
	}
	.infomation-news__item h4 {
		display: block;
		margin-left: 0;
	}
}

/* more-bt */

#entry-content .infomation-news__more {
	display: block;
	width: 80%;
	margin: 0 auto 20px auto;
}

#entry-content .infomation-news__more a {
	background-color: #fff;
	color: #666;
	display: block;
	width: 100%;
	padding: 10px 10px;
	font-size: 1.4rem;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	border: 2px solid #666;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#entry-content .infomation-news__more a:hover {
	background-color: #666;
	color: #fff;
}

/* detail page */

.newslist .notes-list {
	font-size: 1.4rem;
	margin-left: 12px;
	margin-bottom: 35px;
}

.newslist .notes-list>li:before {
	content: '・';
	color: #fff;
	font-size: 2.4rem;
	line-height: 10px;
	position: absolute;
	left: -21px;
	top: 6px;
}

.newslist-relation h4 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 2.2rem;
	text-transform: uppercase;
}

@media screen and (max-width: 576px) {
	.newslist-relation h4 {
		font-size: 1.8rem;
	}
}


/*-----------------------
MYSTERY & WORCTION 20210719
-----------------------*/

#entry-content .frow-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

#entry-content .frow-section div {
	position: relative;
	margin: auto;
	width: 30%;
	height: 340px;
	padding: 40px 25px 25px;
	box-shadow: 0 0 6px #3a3a3a;
}

#entry-content .frow-section div:first-of-type {
	margin-left: 0;
}
#entry-content .frow-section div:last-of-type {
	margin-right: 0;
}

#entry-content .frow-section div figure {
	height: 120px;
	text-align: center;
	display: flex;
	align-items: center;
}
#entry-content .frow-section div figure.flow1 img {
	width: 73px;
}
#entry-content .frow-section div figure.flow2 img {
	width: 119.5px;
}
#entry-content .frow-section div figure.flow3 img {
	width: 81px;
}

#entry-content .frow-section div img {
	display: block;
	margin: auto;
}

#entry-content .frow-section div h4 {
	border-bottom: none;
	text-align: center;
	margin-bottom: 15px;
}

#entry-content .frow-section i {
	font-size: 1.5em;
	color: #3186d4;
}

#entry-content .frow-section .sp-visible {
	display: none;
}

@media screen and (max-width: 992px){
	#entry-content .frow-section {
		display: block;
	}
	#entry-content .frow-section div {
		width: 100%;
		height: unset;
		margin: 20px 0;
	}
	#entry-content .frow-section div p {
		text-align: center;
	}
	#entry-content .frow-section .pc-visible {
		display: none;
	}
	#entry-content .frow-section .sp-visible {
		display: block;
		text-align: center;
	}
}

#entry-content .course-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

#entry-content .course-section div {
	height: 400px;
	position: relative;
	margin: auto;
	width: 30%;
	box-shadow: 0 0 6px #3a3a3a;
	padding-bottom: 5px;
}

#entry-content .course-section div:first-of-type {
	margin-left: 0;
}
#entry-content .course-section div:last-of-type {
	margin-right: 0;
}

#entry-content .course-section div h5 {
	padding: 10px 0;
	text-align: center;
	background: #3186d4;
	color: #fff;
}

#entry-content .course-section div table {
	display: block;
	padding: 15px;
	text-align: left;
	margin-bottom: auto;
}

#entry-content .course-section div table tbody {
	width: 100%;
	display: inline-table;
	border-top: none;
}

#entry-content .course-section div table th {
	font-size: 13px;
	color: #3186d4;
	width: 30%;
}

#entry-content .course-section div table td {
	width: 70%;
}

#entry-content .course-section div table td span.level {
	color: #db6626;
	margin-right: 10px;
}

#entry-content .course-section div table td small {
	display: block;
	width: 100%;
	font-size: 0.8em;
}

#entry-content .course-section div p {
	padding: 0 15px;
}

#entry-content .wrap-ticket {
	margin: 26px 0 42px;
	padding: 30px 35px 0px;
	background: #db6626;
}

#entry-content .wrap-ticket h4 {
	color: #fff;
	font-size: 28px;
	border: none;
	text-align: center;
}

#entry-content .box-ticket {
	display: flex;
	justify-content: center;
	border-radius: 4px;
}

#entry-content .box-ticket div {
	margin: 20px;
	width: 45%;
	text-align: center;
}

#entry-content .box-ticket div h5 {
	background: #f5dcd0;
	margin-bottom: 0;
	padding: 10px;
	border: none;
}

#entry-content .box-ticket div p {
	background: #fff;
	padding: 16px;
}

@media screen and (max-width: 992px){
	#entry-content .wrap-ticket {
		padding: 20px 20px 5px;
	}
	#entry-content .wrap-ticket h4 {
		font-size: 20px;
	}
	#entry-content .box-ticket {
		display: block;
	}
	#entry-content .box-ticket div {
		width: 100%;
		margin: auto;
	}
}

@media screen and (max-width: 992px){
	#entry-content .course-section {
		display: block;
	}
	#entry-content .course-section div {
		width: 100%;
		height: unset;
		margin: 20px 0;
	}
}

#entry-content .image-section {
	margin-bottom: 50px;
}

#entry-content .image-section h4 {
	border: none;
	text-align: center;
	font-size: 18px;
}

#entry-content .image-section span {
	color: #333;
	font-size: 12px;
	vertical-align: top;
}
#entry-content .image-section span.notice {
	padding-left: 15px;
}

#entry-content .service-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

#entry-content .service-section div {
	position: relative;
	margin: auto;
	width: 22%;
	height: 320px;
	padding: 20px 25px 16px;
	box-shadow: 0 0 6px #3a3a3a;
}

#entry-content .service-section div:first-of-type {
	margin-left: 0;
}
#entry-content .service-section div:last-of-type {
	margin-right: 0;
}

#entry-content .service-section div figure {
	height: 120px;
	text-align: center;
	display: flex;
	align-items: center;
}
#entry-content .service-section div figure.service1 img {
	width: 80px;
}
#entry-content .service-section div figure.service2 img {
	width: 57px;
}
#entry-content .service-section div figure.service3 img {
	width: 68px;
}
#entry-content .service-section div figure.service3 img {
	width: 72px;
}

#entry-content .service-section div img {
	display: block;
	margin: auto;
}

#entry-content .service-section div h4 {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: none;
	margin-bottom: 15px;
	min-height: 60px;
}

#entry-content .service-section i {
	font-size: 1.5em;
	color: #3186d4;
}

#entry-content .service-section .sp-visible {
	display: none;
}

@media screen and (max-width: 992px){
	#entry-content .service-section {
		display: block;
	}
	#entry-content .service-section div {
		width: 100%;
		height: unset;
		margin: 20px 0;
	}
	#entry-content .service-section div p {
		text-align: center;
	}
	#entry-content .service-section .pc-visible {
		display: none;
	}
	#entry-content .service-section .sp-visible {
		display: block;
		text-align: center;
	}
}

#entry-content .reserve-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 80px;
}

#entry-content .reserve-section div {
	position: relative;
	width: 47%;
	border: solid 1px #318ad8;
	box-shadow: 0 0 6px #3a3a3a;
}

#entry-content .reserve-section div:first-of-type {
	margin-left: 0;
}
#entry-content .reserve-section div:last-of-type {
	margin-right: 0;
}

#entry-content .reserve-section div h4 {
	padding: 10px 0;
	text-align: center;
	background: #3186d4;
	color: #fff;
	margin-bottom: 4px;
}

#entry-content .reserve-section div p {
	margin: 20px 28px 30px;
}

#entry-content .reserve-section div p a.bt_link{
	margin-bottom: 10px;
}

@media screen and (max-width: 992px){
	#entry-content .reserve-section {
		display: block;
	}
	#entry-content .reserve-section div {
		width: 100%;
		height: unset;
		margin: 20px 0;
	}
}





#entry-content .pickup-section h4 {
	border: none;
	text-align: center;
	font-size: 22px;
}

#entry-content .pickup-section p.pickup-section-txt {
	padding: 0 20px;
	min-height: 130px;
}

/* 210719 ガーラ湯沢 TOP修正 */
@media screen and (max-width: 768px) {
  #index-information #index-information_inner .sec_plan_shinkansen {
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  #index-information #index-information_inner .sec_plan_shinkansen .row .col-md-6:nth-of-type(2) {
    margin-top: 15px;
  }
}

#index-information_inner .index-row-menu>li a p span .mini {
	display: contents;
	background: none;
	font-size: 0.6em;
}

/**
 * 6.0 Sidebar(Navigation)
 * ----------------------------------------------------------------------------
 */

/**
 * 6.1 Widgets
 * ----------------------------------------------------------------------------
 */

/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------
 */

/*-----------------------
#footer-adress
-----------------------*/

#footer-adress {
	background: #363636;
	color: #fff;
}

/*
#footer-adress p:nth-of-type(1) { margin-bottom: 10px; }
#footer-adress p:nth-of-type(2) { margin-bottom: 70px; font-size: 1.4rem; }
*/

#footer-adress a.btn {
	width: 400px;
	padding: 10px 55px;
	font-size: 2.7rem;
	color: #fff;
	font-weight: 700;
	border: 2px solid #fff;
}

#footer-adress a.btn::before {
	content: '\f003';
	font-family: 'FontAwesome';
	color: #fff;
	font-size: 3.2rem;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

#footer-adress dt {
	background: url(../images/ttl_logo.png) no-repeat left center;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	display: block;
	width: 180px;
	height: 24px;
	margin: 0 auto 12px auto;
	text-indent: -9999em;
}

#footer-adress dt a {
	display: block;
	width: 100%;
	height: 100%;
}

#footer-adress dd {
	margin-bottom: 14px;
	font-size: 1.4rem;
	line-height: 1.8;
}

#footer-adress dd span {
	padding-left: 1em;
}

#footer-adress dd a {
	color: #fff;
}

#footer-adress ul {
	display: block;
	letter-spacing: -.4em;
}

#footer-adress ul li {
	display: inline-block;
	width: 55px;
	padding: 0 8px;
	letter-spacing: normal;
}

#footer-adress ul li img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	#footer-adress p {
		margin-bottom: 40px;
	}
	#footer-adress a.btn {
		width: 240px;
		padding: 10px 40px;
		font-size: 1.6rem;
	}
	#footer-adress a.btn::before {
		font-size: 2.1rem;
	}
	#footer-adress dt {
		width: 150px;
		height: 20px;
		margin: 0 auto 12px auto;
	}
	#footer-adress dd {
		font-size: 1.3rem;
	}
	#footer-adress dd span {
		display: block;
		padding-left: 0;
	}
	#footer-adress ul {
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	#footer-adress ul li {
		width: 50px;
		margin-bottom: 20px;
	}
}

.tel_txt {
	font-size: 18px;
	font-weight: 700;
}

.tel_txt .l_txt {
	font-size: 28px;
}

.tel_txt a {
	text-decoration: none;
	color: #fff;
}

#foot_submenu {
	padding: 20px 10px;
	font-size: 14px;
}

#foot_submenu a {
	text-decoration: none;
}

/*-----------------------
#copyright
-----------------------*/

#copyright {
	background: #666666;
	padding: 16px 0 20px 0;
	color: #fff;
	font-size: 1.3rem;
}

.to_top {
	width: 70px;
	height: 70px;
	display: block;
	background: #6a6a6a;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	text-align: center;
	display: none;
	opacity: 0.7;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	font-size: 370%;
	z-index: 100;
}

.to_top:hover, .to_top:active {
	color: #fff;
	background-color: #ababab;
}

.to_top i {
	display: inline-block;
	line-height: 1.8;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	#copyright {
		padding: 1.2em 0;
		font-size: 1.2rem;
	}
	.to_top {
		width: 35px;
		height: 35px;
		bottom: 10px;
		right: 15px;
		font-size: 280%;
	}
	.to_top i {
		display: inline-block;
		line-height: 1.8;
		position: relative;
		top: 50%;
		transform: translateY(-50%);
	}
}

/**
 * 10.0 Edit
 * ----------------------------------------------------------------------------
 */

/* smart Navi */

#masthead-menu ul li#menu-sample-day {
	display: none;
}

/* #masthead-menu ul li#menu-download { display: none; } */

/* #masthead-menu ul li#menu-restaurant { display: none; } */

/* PC Global Navi */

/* #menu-pc-download { display: none; } */

/* #menu-pc-restaurant { display: none; } */

#index-hassle-free .row>div:nth-of-type(9) {
	display: none;
}

#facility-irori {
	display: none;
}

@media screen and (max-width: 576px) {
	#index-information_inner .index-row-menu>li.index-row-menu--sample {
		display: none;
	}
}



@media screen and (min-width: 768px) {
.stack_p_box img {
	margin-bottom: 30px;
}
}



.sec_plan_shinkansen {
    background-color: #008000;
	color: #fff;
	padding: 25px 30px 30px;
	/* margin-bottom: 60px; */
    margin-bottom: 30px;
	font-weight: 700;
}
.sec_plan_shinkansen a.bt_link {
	margin-bottom: 0 !important;
}
.sec_plan_shinkansen h2 {
	line-height: 1.3;
	margin-bottom: 25px !important;;
    font-size: 24px !important;;
    font-weight: 700 !important;
    color: #fff !important;
}
.sec_plan_shinkansen .icon_shinkansen {
width: 65px;
vertical-align: top;
}
.sec_plan_shinkansen a.bt_link {
    font-size: 2rem;
    padding: 15px 15px;
}
.sec_plan_shinkansen a.bt_link:before {
    float: right;
}

@media screen and (max-width: 768px) {
	.sec_plan_shinkansen {
		padding: 15px 15px 0;
		font-weight: 700;
	}
	.sec_plan_shinkansen h2 {
		margin-bottom: 15px;
		font-size: 16px;
	}
	.sec_plan_shinkansen .icon_shinkansen {
	width: 60px;
	}
	.sec_plan_shinkansen a.bt_link {
		font-size: 1.4rem;
		margin-bottom: 15px;
	}
}

.alert_txt {
	color: red;
	padding: 10px 15px;
    font-size: 1.4rem !important;
	border: 1px solid red;
}





ol.ol_num {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
	/* border-top: 1px solid #ccc; */
	margin: 0px 0 30px;
	text-align: left;
	/* padding-left: 1.5em; */
	text-align: left;
	/* display: inline-block; */
}

ol.ol_num > li {
	margin-bottom: 0;
	padding-left: 2em;
	position: relative;
	font-weight: 500;
	/* border-bottom: 1px solid #ccc; */
	line-height: 1.5;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
ol.ol_num > li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	color: #fff;
	display: block;
	float: left;
	line-height: 1.7;
	margin-left: -2.5em;
	text-align: center;
	height: 2em;
	width: 2em;
	border-radius: 50%;
	margin-top: 0.15em;
	font-weight: bold;
	font-size: 70%;
	background: #0489D8;
	padding-top: 0.1em;
}
ol.ol_num > li:hover {
	/* background: #f5f5f5; */
}

ol.ol_num > li li:before {
	color: #0489D8;
	border: 1px solid #0489D8;
	background: #fff;
}



.home_mv_wrap_pc {

}
.home_mv_wrap_sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.home_mv_wrap_pc {
	display: none;
	}
	.home_mv_wrap_sp {
		display: block;
	}
}

.home_mv {
position: relative;
}
.home_mv > .mv_p {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;

}
.home_mv > .mv_p.mv_p1{ animation:show_from_r 1s both; animation-delay:.5s; }
.home_mv > .mv_p.mv_p2{ animation:show_from_l 1s both; animation-delay:1s; }
.home_mv > .mv_p.mv_p3{ animation:show_from_r 1s both; animation-delay:1.5s; }
.home_mv > .mv_p.mv_t1{ animation:show_from_l 2s both; animation-delay:2s; }
@keyframes show_from_l {
	0% {
		transform:translate(-2vw,0);
		opacity:0;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
	}
}
@keyframes show_from_r {
	0% {
		transform:translate(2vw,0);
		opacity:0;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
	}
}



.d-block {
display: block !important;
}
.pb-4 {
	padding-bottom: 15px !important;
}
.pb-5 {
	padding-bottom: 30px !important;
}
@media screen and (min-width: 768px) {
	.px-md-5 {
		margin-left: 30px !important;
		margin-right: 30px !important;
	}
	.d-md-none {
		display: none !important;
	}
}











/* ▼210805 新潟県民割引ページ用▼ */
#entry-content .page-local-sec01 {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #entry-content .page-local-sec01 {
    padding-bottom: 50px;
  }
}

#entry-content .page-local-sec01 h2 {
  text-align: center;
}

#entry-content .page-local-sec01 .unit-txt-01 {
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  #entry-content .page-local-sec01 .unit-txt-01 {
    padding-bottom: 30px;
  }
}

#entry-content .page-local-sec02 {
  padding-bottom: 90px;
}

@media screen and (max-width: 768px) {
  #entry-content .page-local-sec02 {
    padding-bottom: 50px;
  }
}

#entry-content .page-local-sec03 ul {
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  #entry-content .page-local-sec03 ul {
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 769px) {
  #entry-content section[class*="page-local-"] .unit-txt-01 {
    text-align: center;
  }
}

#entry-content section[class*="page-local-"] .unit-gal-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #entry-content section[class*="page-local-"] .unit-gal-01 {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #entry-content section[class*="page-local-"] .unit-gal-01 .left {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 769px) {
  #entry-content section[class*="page-local-"] .unit-gal-01 .cont {
    max-width: 530px;
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  #entry-content section[class*="page-local-"] .unit-gal-01 .cont {
    width: 100%;
  }
}

#entry-content section[class*="page-local-"] .unit-gal-01 .cont h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 52px;
}

#entry-content section[class*="page-local-"] .unit-gal-01 .cont .imgflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#entry-content section[class*="page-local-"] .unit-gal-01 .cont .imgflex img {
  width: calc(50% - 10px);
}

@media screen and (min-width: 769px) {
  #entry-content section[class*="page-local-"] .unit-gal-01 .cont .imgflex img {
    max-width: 256px;
  }
}

#entry-content section[class*="page-local-"] .unit-pricetable-01 thead tr th {
  text-align: center;
  padding: 0.4em 0.8em;
}

#entry-content section[class*="page-local-"] .unit-pricetable-01 tbody tr th {
  color: #dc3545;
  text-align: center;
  padding: 0.4em 0.8em;
}

@media screen and (min-width: 769px) {
  #entry-content section[class*="page-local-"] .unit-pricetable-01 tbody tr th {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 769px) {
  #entry-content section[class*="page-local-"] .unit-pricetable-01 tbody tr td {
    padding-bottom: 1.5em;
  }
}

#entry-content section[class*="page-local-"] .unit-pricetable-01 tbody tr td .red {
  color: #dc3545;
  font-weight: bold;
}

#entry-content section[class*="page-local-"] .unit-attend-01 {
  font-size: 1.2rem;
}

#entry-content section[class*="page-local-"] .unit-catch-01 {
  font-size: 3.0rem;
  letter-spacing: 0.05em;
  color: #0487d6;
}

@media screen and (max-width: 768px) {
  #entry-content section[class*="page-local-"] .unit-catch-01 {
    font-size: 2.0rem;
  }
}

#entry-content section[class*="page-local-"] .unit-attendlist-01 li {
  font-size: 1.2rem;
  list-style-type: none;
  position: relative;
}

#entry-content section[class*="page-local-"] .unit-attendlist-01 li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: -1.5em;
  line-height: 1.8rem;
}

#entry-content section[class*="page-local-"] .unit-btnflex-01 {
  border-top: 1px solid #dbdbdb;
}

@media screen and (min-width: 769px) {
  #entry-content section[class*="page-local-"] .unit-btnflex-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  #entry-content section[class*="page-local-"] .unit-btnflex-01 {
    padding-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  #entry-content section[class*="page-local-"] .unit-btnflex-01 > a {
    width: 100%;
    margin: 0 45px;
  }
}

@media screen and (max-width: 768px) {
  #entry-content section[class*="page-local-"] .unit-btnflex-01 > a {
    width: 100%;
  }
  #entry-content section[class*="page-local-"] .unit-btnflex-01 > a:nth-of-type(n+2) {
    margin-top: 25px;
  }
}

.unit-bluebtn-01 {
  text-align: center;
}

.unit-bluebtn-01 a {
  margin-left: auto;
  margin-right: auto;
  width: 460px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #3180ce;
  color: #fff !important;
  position: relative;
}

@media screen and (min-width: 769px) {
  .unit-bluebtn-01 a {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
}

.unit-bluebtn-01 a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
}

@media screen and (max-width: 768px) {
  .unit-bluebtn-01 a:before {
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .unit-bluebtn-01 a {
    width: 100%;
    height: auto;
    font-size: 1.4rem;
  }
}

/* ▲210805 新潟県民割引ページ用▲ */


/* 20230518 ↓ */

.price-ski-title {
	background-color: #266bc6;
	color: #fff;
}
.price-summerpark-title {
	background-color: #c6a926;
	color: #fff;
}

.train-content td {
	text-align: right;
}

.otoku-attention-text-area {
	display: block;
	width: 100%;
	text-align: center;
}
.otoku-attention-text {
	display: inline-block;
	width: auto;
	height: auto;
	font-weight: bold;
	color: #ff9900;
	padding: 15px;
	margin-bottom: 20px;
	border: 2px solid #ff9900;
	border-radius: 20px;
}

#c_group th {
	width: 52%;
}
#c_group td {
	width: 24%;
}


.attention-text-area {
	display: block;
	width: 100%;
	text-align: center;
}
.attention-text {
	display: inline-block;
	width: auto;
	height: auto;
	font-weight: bold;
	color: #cc0000;
	padding: 15px;
	margin-bottom: 20px;
	border: 2px solid #cc0000;
	border-radius: 20px;
}


/* 20230707 ↓ */
#entry-content .course-section div {
	height: 280px;
}

@media screen and (max-width: 768px) {
  #entry-content .course-section div {
    height: unset;
  }
}

.sinkarion {
	display: inline-block;
	padding-top: 40px;
}


.display-pc {
	display: block;
}

.display-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.display-pc {
		display: none;
	}

	.display-sp {
		display: block;
	}
}


/* 20250625 ↓ */
.p_company #entry-content h2 {
	color: #fff;
	background-color: #0489D8;
	font-weight: 400;
	text-align: center;
	padding: 20px;
}

.p_company .accordion-wrapper {
	border: 1px solid #0489D8;
}

.p_company .accordion-wrapper .accordion-title {
	background: rgba(4, 138, 216, 0.1);
	transition: .2s;
	padding: 20px;
	position: relative;
}

.p_company .accordion-wrapper .accordion-title:hover,
.p_company .accordion-wrapper .accordion-title.is-open {
	background: rgba(4, 138, 216, 0.3);
}

.p_company .accordion-wrapper .accordion-title::before {
	content: "詳しく見る ▼";
	font-weight: 900;
	transition: .5s;
	position: absolute;
	bottom: 0.5rem;
	right: 0.7rem;
	font-size: 1.1rem;
	color: #333;
}

.p_company .accordion-wrapper .accordion-title.is-open::before {
	content: "とじる ▲";
}

.p_company .accordion-title {
	cursor: pointer;
}

.p_company .accordion-content {
	display: none;
	padding: 20px;
}

.p_company #c_slogan .box_info h3 {
	background: transparent;
	padding: 0.4em 0.8em;
	color: #0489D8;
	margin-bottom: 30px;
	font-size: 2.8rem;
	letter-spacing: 0.2em;
}

.p_company #c_slogan .box_info + .box_info {
	margin-top: 60px;
}

.p_company #c_slogan .slogan-content p {
	font-size: 4rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	font-weight: 700;
}

.p_company #c_slogan .philosophy-content p {
	font-size: 2.8rem;
}

.p_company #c_slogan .guidelines-content p {
	display: inline-block;
	text-align: left;
	font-size: 2rem;
}

.p_company #c_message ruby rt {
	padding-bottom: 2px;
}

.p_company #c_news .year-ttl {
	font-size: 3.6rem;
	text-align: center;
	font-weight: 700;
}

.p_company #c_news .company-news-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.p_company #c_news .company-news-list li {
	position: relative;
	padding-right: 30px;
}

.p_company #c_news .company-news-list li::after {
	content: "\f35d";
	color: #ccc;
	font-family: "Font Awesome 5 Free";
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	right: 0;
}

.p_company #c_news .company-news-list .news-meta-box {
	display: flex;
	align-items: center;
	gap: 10px 20px;
}

.p_company #c_news .company-news-list .news-meta-box .news-date {
	font-weight: 700;
	width: 130px;
	line-height: 1;
}

.p_company #c_news .company-news-list .news-meta-box .news-cats {
	display: flex;
	align-items: center;
	gap: 10px 10px;
}

.p_company #c_news .company-news-list .news-meta-box .news-cats .news-cat-item {
	display: inline-block;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	background-color: #333;
	padding: 6px 10px;
}

.p_company #c_news .company-news-list .company-news-ttl {
	margin-top: 15px;
	display: inline-block;
	text-decoration: none;
}

.p_company #c_news .company-news-list .company-news-ttl span {
	color: #0489D8;
}

.p_company #c_news .company-news-list .company-news-ttl:hover span {
	text-decoration: underline;
}

.p_company #c_news .company-news-list .company-news-ttl i {
	color: #333;
	font-weight: 500;
	display: inline-block;
	padding-left: 8px;
}

@media screen and (max-width: 768px) {
	.p_company #c_slogan .box_info + .box_info {
		margin-top: 30px;
	}

	.p_company #c_slogan .box_info h3 {
		font-size: 2rem;
	}

	.p_company #c_slogan .slogan-content p {
		font-size: 2.4rem;
	}

	.p_company #c_slogan .philosophy-content p {
		font-size: 1.6rem;
	}

	.p_company #c_slogan .guidelines-content p {
		font-size: 1.6rem;;
	}

	.p_company #c_news .year-ttl {
		font-size: 2rem;
	}

	.p_company #c_news .company-news-list .news-meta-box {
		gap: 10px 10px;
	}

	.p_company #c_news .company-news-list .news-meta-box .news-date {
		width: 120px;
	}
}

/* 20250630 ↓ */
.p_price #c_hours table {
	table-layout: fixed;
}

/* 20250718 ↓ */
#top-youtube .top-youtube-inner {
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
}
#top-youtube .top-youtube-inner .top-youtube-box iframe {
	width: 100%;
	height: auto;
	max-width: 560px;
	aspect-ratio: 560 / 315;
}