@charset "utf-8";
@import "reset.css";

/* --------------------------------
	COMMON
-------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

a { text-decoration: none; }

li { list-style: none; }

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

/*	共通パーツ	*/

html,body,#wrapper {
	min-height: 100vh;
}

body {
	background-color: #f1f1f1;
	color: #000;

	font-size: 14px;
	line-height: 1.5;
	font-family: 'メイリオ', 'Meiryo', sans-serif;
}

html.open, body.open {
	overflow: hidden;
}

#wrapper {
    position: relative;
    transition: all .2s;
}

#wrapper.open {
	transform: translate3d(275px, 0, 0);
	overflow: hidden;
}

.wrapInner {
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}

#contentsWrapper {
	padding: 25px 0 35px;
}

.whiteArea {
	background-color: #fff;	
	padding: 25px 0 40px;
}

.contents, .leftContentsInner {
	background-color: #fff;
	padding: 20px;
}

/*	マージン＆左右寄せ＆フォント	*/

.mb0 { margin-bottom: 0px !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.ml30 { margin-left: 30px !important; }
.mr30 { margin-right: 30px !important; }

.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { text-align: center; margin: 0 0 20px 0; }

.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.bold {
	font-weight: bold;
}

.red {
	color: #f00;
}

.times {
	font-family: 'Times New Roman', serif;
	font-weight: bold;	
}

.oswald {
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.05em;
}

.sp-br {
	display: none;
}
	
/*	見出し	*/

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.1;
}

.h3 {
	background-color: #ebebeb;
	padding: 10px;
	text-align: center;
	font-size: 143%;
	font-weight: bold;
	margin-bottom: 25px;
}

.h4 {
	border-left: 8px solid #b8a062;
	padding: 5px 15px;
	font-size: 129%;
	font-weight: bold;
	margin-bottom: 10px;
}

.h4 span {
	font-size: 12px;
	vertical-align: middle;
	margin-left: 7px;
}

.h5 {
	font-weight: bold;
	margin-bottom: 15px;
}

/*	パンくず	*/

.pankuzu {
	font-size: 86%;
	margin-bottom: 20px;
	line-height: 150%;
    word-break: break-all;
}

.pankuzu a {
	color: #3a8eb2;
}


/*	ページトップ	*/

#pageTop {
	z-index: 9999;
	position: fixed;
	right: 15px;
	bottom: 35px;
	width: 40px;
	height: 40px;
	display: none;
	color: #bfbfbf;
	background-color: rgba(0,0,0,0.5);
	text-align: center;
	border-radius: 7px;
}

#pageTop:hover {
	color: #fff;
	background-color: rgba(0,0,0,0.3);
}

#pageTop::before {
    font-family: "FontAwesome";
    content: "\f106";
	font-size: 36px;
	line-height: 36px;
}

/*	テーブル	*/

.table {
	border-top: 1px solid #ccc;
}

.table-row {
	display: table;
	width: 100%;
	border-bottom: 1px solid #ccc;
}

.table-row div {
	display: table-cell;
	vertical-align: top;
	padding: 15px;
	line-height: 150%;
}

.table-row .th {
	width: 20%;
}

/*	ボタン	*/

.linkBtn {
	background-color: #39464f;
	font-weight: bold;
	color: #fff !important;
	font-size: 115%;
	margin: 0 auto;
	width: 320px;
	padding: 0.8em;
	display: block;
	text-align: center;
	border-radius: 3px;
	border: none;
	text-decoration: none !important;
	line-height: 135%;
}

.linkBtn:hover {
	background-color: #336699;
}


/* --------------------------------
	タイトル
-------------------------------- */
.ttlBox {
	margin-bottom: 20px;
}

.ttlHolder {
    display: table-cell;
    height: 11px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.ttlLine {
    display: block;
    height: 11px;
    position: relative;
    width: 100%;
}

.ttlHolder_l .ttlLine {
    background: url(../images/common/bdr_l.png) no-repeat right 50%;
}

.ttlHolder_r .ttlLine {
    background: url(../images/common/bdr_r.png) no-repeat left 50%;
}

.ttlBox h2 {
    padding: 0 0.5em;
	font-family: 'Times New Roman', serif;
	font-weight: bold;
	color: #403624;
    display: table-cell;
    font-size: 172%;
    line-height: 1em;
    white-space: pre;
}

.ttlBox p {
    text-align: center;
	font-size: 93%;
	margin-top: 12px;
	color: #333;
}
.ttlLine:before, .ttlLine:after {
	position: relative;
	display: block;
	top: 0;
	content: "";
	width: 18px;
	height: 11px;
}

.ttlHolder_l .ttlLine:before {
	background: url(../images/common/bdr_l_l.png) no-repeat right 50%;
}

.ttlHolder_r .ttlLine:after {
	position: absolute;
	right: 0;
	background: url(../images/common/bdr_r_r.png) no-repeat right 50%;
}

.bgWht .ttlHolder_l .ttlLine {
    background: url(../images/top/bdr_l.png) no-repeat right 50%;
}

.bgWht .ttlHolder_r .ttlLine {
    background: url(../images/top/bdr_r.png) no-repeat left 50%;
}

.bgWht .ttlHolder_l .ttlLine:before {
	background: url(../images/top/bdr_l_l.png) no-repeat right 50%;
}

.bgWht .ttlHolder_r .ttlLine:after {
	position: absolute;
	right: 0;
	background: url(../images/top/bdr_r_r.png) no-repeat right 50%;
}


/*	h3	*/
.h3Box {
	margin-bottom: 25px;
}

.h3Box .ttlLine {
    background: url(../images/common/h3_bdr.png) repeat-x left 50%;
}

.h3Box h3 {
    padding: 0 0.5em;
	font-weight: bold;
	color: #403624;
    display: table-cell;
    line-height: 1em;
    white-space: pre;
}

/* --------------------------------
	モバイル用メニュー
-------------------------------- */

#drawerMenu {
	position: fixed;
	top:0;
	left:-275px;
	width: 275px;
	height: 100%;
	z-index: 9999;
	background-color: #fff;
	color: #000;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .2s;
            transition: all .2s;
	padding-top: 50px;
	padding-left: 25px;
}

#drawerMenu.open {
    transform: translate3d(275px, 0, 0);	
}

#drawerMenu .menulist {
	margin-bottom: 20px;
}

#drawerMenu .menulist a {
	display: block;
	padding: 15px 25px 15px 5px;
	color: #333;
	line-height: 135%;
}

#overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, .3);
}

#drawerMenu .social {
	display: flex;
	gap: 20px;
	flex-shrink: 0;
	padding-top: 20px;
}
#drawerMenu .social img {
	height: 26px;
	width: auto;
	opacity: 0.8;
}
#drawerMenu .social .icon-note img {
	height: 30px;
}

/* --------------------------------
	ヘッダー上部
-------------------------------- */

#gHeaderWrapper {
	background: url(../images/common/bg_header.png) repeat;
	position: relative;
	border-top: 20px #403624 solid;
}

#logoArea {
	position: relative;
}

#logo {
	padding: clamp(1.063rem, 0.813rem + 1.25vw, 1.75rem) 0;
}

#logo img {
	width: clamp(8.75rem, 6.182rem + 12.84vw, 15.813rem);	
	height: auto;
	margin: 0 auto;
}

#logoArea span {
	display: none;
	color: #403624;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	position: absolute;
	cursor: pointer;
	text-align: center;
}

#logoArea span::before {
	font-family: "FontAwesome";
	font-size: 24px;
	line-height: 50px;
}

#logoArea span.active::before {
	content: "\f00d";
}

#logoArea .mobileMenuBtn {
	left: 3px;
}

#logoArea .mobileMenuBtn::before {
	content: "\f0c9";
}

#logoArea .mobileMenuBtn #mText {
	font-size: 10px;
	position: relative;
	left: 0;
	bottom: 13px;
}

/* --------------------------------
	ヘッダー下部
-------------------------------- */

#globalNavi {
	border-top: 1px solid #bfbcbb;
}

#globalNavi .gMenu {
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: clamp(0.625rem, -0.057rem + 3.41vw, 2.5rem);
	padding: clamp(0.625rem, 0.511rem + 0.57vw, 0.938rem) 0;
}

#globalNavi .gMenu .txt_wrap {
	display: flex;
	gap: clamp(0.625rem, 0.17rem + 2.27vw, 1.875rem);
	justify-content: space-between;
	align-items: center;
	flex: 1;
}

#globalNavi .gMenu .txt_wrap a {
	color: #403624;
	font-weight: bold;
	display: block;
	text-align: center;
	position: relative;
}

#globalNavi .gMenu .en,
#globalNavi .gMenu .jp {
	display: block;
}

#globalNavi .gMenu .en {
	font-family: 'Times New Roman', serif;
	font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
}

#globalNavi .gMenu .jp {
	font-size: clamp(0.688rem, 0.619rem + 0.34vw, 0.875rem);
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	white-space: nowrap;
}

#globalNavi .gMenu a:hover .en {
	opacity: 0;
}
#globalNavi .gMenu a:hover .jp {
	opacity: 1;
}

#globalNavi .gMenu .icon_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-shrink: 0;
}
#globalNavi .gMenu .icon img {
	height: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
	width: auto;
	transition: opacity 0.3s;
}

#globalNavi .gMenu .icon-note img {
	height: clamp(1.375rem, 1.284rem + 0.45vw, 1.625rem);
}

#globalNavi .gMenu .icon-x img {
	height: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
}
#globalNavi .gMenu .icon a:hover img {
	opacity: 0.6;
}

/* --------------------------------
	フッター
-------------------------------- */

#gFooterWrapper {	
	background-color: #312a1c;
	color: #ccc;
	text-align: center;
	padding-top: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
	padding-bottom: 20px;
}

#gFooterWrapper .social_icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-shrink: 0;
	margin-bottom: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
}
#gFooterWrapper .social_icons .icon img {
	/*height: clamp(1.313rem, 1.153rem + 0.8vw, 1.875rem);*/
	height: 30px;
	width: auto;
	transition: opacity 0.3s;
}
#gFooterWrapper .social_icons .icon-note img {
	/*height: clamp(1.625rem, 1.278rem + 0.8vw, 2.2rem);*/
	height: 36px;
}

#gFooterWrapper .social_icons .icon-x img {
	/*height: clamp(1.188rem, 1.028rem + 0.8vw, 1.75rem);*/
	height: 28px;
}
#gFooterWrapper .social_icons a img {
	opacity: 0.8;
}
#gFooterWrapper .social_icons a:hover img {
	opacity: 1;
}

#footerNav {
	margin-bottom: clamp(1.875rem, 0.966rem + 4.55vw, 4.375rem);
}

.footer-nav {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.footer-nav li:not(:last-child) {
	border-right: 1px solid #535048;
	padding-right: 20px;
}

#footerNav a {
	color: #ccc;
}

#footerNav a:hover {
	color: #fff;
}

.footerLogo {
	margin-bottom: 35px;
}
.footerLogo img {
	margin: 0 auto;
	width: clamp(10.625rem, 9.034rem + 7.95vw, 15rem);
}
	
#gFooterWrapper small {
	font-size: 72%;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.05em;
}


/* --------------------------------
	prevnext
-------------------------------- */

#prevNext {
    margin: 25px 0 35px;
    display: flex;
}

#prevNext li {
    flex: 1;
}

#prevNext .next {
    border-left: 1px solid #cac7c7;
    text-align: right;
}

#prevNext a {
    display: block;
    position: relative;
    
    font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
    font-weight: bold;
    line-height: 1.5;
    color: #333;
    text-decoration: none;
    transition: .3s;
}

#prevNext .prev a {
	padding: 10px 20px 10px 40px;
}

#prevNext .prev a::before {
    content: "«";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#prevNext .next a {
	padding: 10px 40px 10px 20px;
}

#prevNext .next a::after {
    content: "»";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#prevNext a:hover {
    color: #777;
}