@charset "UTF-8";

/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td {margin:0;padding:0;}
table {border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img {border:0;}
address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal;}
li {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6 {font-size:100%;font-weight:normal;}
q::before,q::after {content:'';}
abbr {border:0;font-variant:normal;}
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select {font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select {font-size:100%;}
legend {color:#000;}
select,input,button,textarea {font-size:inherit;font-family:inherit;box-sizing: border-box;}
pre,code,kbd,samp {font-family:monospace;font-size:108%;line-height:100%;}
figure {padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {border-radius: 0;-webkit-box-sizing: content-box;-webkit-appearance: button;appearance: button; border: none;box-sizing: border-box;cursor: pointer;}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]:focus,
input[type="button"]:focus,
button:focus {outline-offset: -2px;}


/* base ---------------------------------------*/

* {
	box-sizing:border-box;
	min-height: 0vw;
}

html,body {height:100%;}

body {
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-family:"Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Noto Serif JP", serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
}

a {
	text-decoration: none;
	color:#000;
	transition: all .25s ease;
}

img {
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height: auto;
}

/* layout ---------------------------------------*/

.wrapper {padding: 0 30px;}

.inner {
	max-width:1080px;
	margin:0 auto;
}

.section {margin-bottom: 50px;}
/* .overlay {display: none;} */

.font-ribeye {
	font-family: "Ribeye Marrow", serif;
}

/* header ---------------------------------------*/

header.indexheader,
header.subpageheader {
	width: 100%;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: #FFFBF9;
	border-bottom: 1px solid #958055;
}

header.indexheader {
	transition: all .6s ease;
	transform: translate3d(0, -100%, 0);
}

header.indexheader.is-fixed {
    transform: translate3d(0, 0, 0);
}

.indexheader-inner,
.subpageheader-inner {
	position: relative;
	margin: 0 auto;
	height: 100%;
	z-index: 200;
}

.indexheader-inner {
	width: 100%;
}

.subpageheader-inner {
	width: 640px;
	background: #FFFBF9;
}

.header-logo {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 178px;
}

.header-logo img {
	width: 100%;
}

.overlay {
	content:'';
	display: block;
	position:fixed;
	width:100%;
	height:300px;
	background: rgba(0,0,0,0.4);
	left:0;
	top:0;
	z-index:6;
}

#openmenu {
	display:block;
	width:96px;
	height:60px;
	text-indent: -99em;
	overflow: hidden;
	position:absolute;
	right:0;
	top:0;
    z-index: 1000;
}

#openmenu .menu-header {
	-webkit-mask-image: url(../img/common/menu.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    -webkit-mask-size: contain;
    mask-image: url(../img/common/menu.svg);
    mask-repeat: no-repeat;
    mask-position: 0 0;
    mask-size: contain;
    display: inline-block;
    vertical-align: middle;
	position: absolute;
    width: 64px;
    height: 45px;
	top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    background: #958055;
	transition: all .25s ease;
	cursor: pointer;
}

#openmenu.is-open {
    background: #958055;
}

#openmenu.is-open .menu-header {
    background: #FFFAF4;
}

.bodyfixed {
	position: fixed;
	width: 100%;
	height: 100%;
}


/* gnav ---------------------------------------*/
.gnav {
	border:none;
	background: #958055;
	padding: 15px 0 0 60px;
	overflow:auto;
	z-index:100;
	position: absolute;
	left: 50%;
	top: 0;
	width: 320px;
	height: 320px;
	transition: all .25s ease;
	transform:translate3d(0,-100%,0);
}

.gnav.indexgnav {
	left: unset;
	top: 60px;
	right: 0;
	transform:translate3d(100%,0,0);
}

.gnav.is-active {
	transform:translate3d(0,0,0);
	opacity:1;
	top: 60px;
}

.gnav-list > li a {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.75;
	color: #FFFAF4;
}

.gnav-list > li + li {
	margin-top: 30px;
}

.gnav-list > li.is-active {
	position: relative;
}

.gnav-list > li.is-active::before {
	position: absolute;
	top: 50%;
	left: -45px;
	z-index: 1;
	width: 35px;
	height: 12px;
	transform: translateY(-50%);
	background: url(../img/common/gnav_deco.png) no-repeat;
	background-size: contain;
	content: '';
}


/* footer ---------------------------------------*/

footer {}

.footer-inner {
	max-width:1080px;
	margin:0 auto;
	position:relative;
}

.footer-meta {
	text-align: center;
	font-size: clamp(8px, 0.384px + 0.99vw, 10.3px);
	letter-spacing: 0.03em;
}

.footer-contact {
	text-align: center;
	font-size: clamp(8px, 0.384px + 0.99vw, 10.3px);
	letter-spacing: 0.03em;
	margin: 0.5vw 0 0.7vw;
}

.copyright {
	display: block;
	text-align: center;
	font-size: clamp(7.3px, 0.016px + 0.95vw, 9.5px);
	background: #1d1d1b;
	color: #eee;
	padding: 1.2vw 0 1.2vw;
}

.copyright-index {
	padding: 1.2vw 0 calc(1.2vw + 120px);
}

/* animation ---------------------------------------*/

.animation{
	transition: all .75s ease;
	transform:translate(0,20px);
	opacity:0;
}

.animation.on{
	transform:translate(0,0px);
	opacity:1;
}


/* title ---------------------------------------*/

.title-page {
	font-weight:600;
	font-size: 2.0rem;
	line-height: 1.5;
	color: #222;
}

.title-section {
	font-weight:600;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #222;
}

.title-block {
	font-weight:600;
	font-size: 1.0rem;
	line-height: 1.5;
	color: #222;
}


/* text ---------------------------------------*/

.text-center {text-align: center !important;}
.text-right {text-align: right !important;}
.text-left {text-align: left !important;}

.text-s {
	font-size: 1.2rem;
	line-height: 1.5;
}

.text-m {
	font-size: 1.4rem;
	line-height: 1.5;
}

.text-l {
	font-size: 1.8rem;
	color: #484848;
	line-height: 1.94;
}

.text-bold {font-weight:600;}
.text-red {color: #aa0000 !important;}

.text-ellipsis-2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.text-ellipsis-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.text-ellipsis-4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

@media all and (-ms-high-contrast:none) {
	.text-ellipsis-2 { height: 3.2em; } /* IE10〜Edge */
	.text-ellipsis-3 { height: 4.7em; } /* IE10〜Edge */
}

.text-ellipsis-count::after {content: '…';}
.text-link {text-decoration: underline;}
.text-link:hover {text-decoration: none;}


/* pankuzu ---------------------------------------*/

.pankuzu {border-bottom:1px solid #ddd;}

/* .pankuzu-list {} */

.pankuzu-list > li {
	display: inline-block;
	font-size:13px;
}

.pankuzu-list > li a,
.pankuzu-list > li span {
	display: block;
	padding: 0px 30px 0px 10px;
	line-height: 40px;
	position: relative;
}

.pankuzu-list > li a {text-decoration:none;}

.pankuzu-list > li a::after {
	display:block;
	content:'';
	width:25px;
	height:25px;
	border-top:1px solid #ddd;
	border-right:1px solid #ddd;
	transform: rotate(45deg) translate(0,-50%);
	position:absolute;
	right:10px;
	top:45%;
}


/* list ---------------------------------------*/

/* .list {} */

.list li {
	margin-bottom: 10px;
	font-size:16px;
	line-height: 1.73;
	position:relative;
	padding-left: 15px;
	letter-spacing:0.1em;
}

.list li:last-child {margin-bottom: 0;}

.list li::before {
	display:block;
	content:'';
	background:#2A619B;
	background-size: 100%;
	width:6px;
	height:6px;
	position:absolute;
	left:0;
	top:11px;
}

ul.list-simple li {
	margin-bottom: 15px;
	font-size:16px;
	line-height: 1.73;
	position:relative;
	padding-left: 10px;
}

ul.list-simple li::before {
	display:block;
	content:'';
	background:#222;
	width:4px;
	height:4px;
	border-radius:50%;
	position:absolute;
	left:0px;
	top:13px;
}

ol.list-simple {padding-left: 15px;}

ol.list-simple li {
	margin-bottom: 15px;
	font-size:16px;
	line-height: 1.73;
	position:relative;
	list-style-type: decimal;
}

.table-blue .list-simple li {margin-bottom:5px;}

.noticelist li {
	text-indent:-1em;
	margin-left: 1em;
	font-size:12px;
	line-height: 1.8;
}


/* btn ---------------------------------------*/

.btn {
	display: inline-block;
	min-width: 160px;
	padding: 10px 24px;
	border-radius: 4px;
	border:1px solid #07629f;
	background-color: #07629f;
	line-height: 1.1;
	letter-spacing: normal;
	text-align: center;
	color: #ffffff;
	font-weight:600;
	cursor: pointer;
}

.btn:hover {
	background-color:#008CEA;
	opacity: 1;
}

.btn.is-primary:hover {border-color:#008CEA;}

.btn.is-secondary {
	background: none;
	color: #07629f;
	background: #fff;
}

.btn.is-secondary:hover {
	background-color: #07629f;
	color: #fff;
}

.btn.is-tertiary {
	background: none;
	color: #767676;
	border-color: #919191;
}

.btn.is-tertiary:hover {
	background: #919191;
	color: #fff;
}

.btn.is-attention {
	background-color: #c35d59;
	border-color: #c35d59;
}

.btn.is-attention:hover {
	background: #EF6C66;
	border-color: #EF6C66;
}

.btn.is-s {
	min-width:50px;
	font-size:13px;
	padding: 5px;
}

.btn.is-l {
	min-width:250px;
	font-size:18px;
	padding: 15px;
}


/* table ---------------------------------------*/

.table-horizontal {font-size:14px}

.table-horizontal thead th,
.table-horizontal thead td {
	background: #767676;
	color: #fff;
	line-height: 1.94;
	padding: 3px 4px;
	border-top:1px solid #dbdbdb;
	border-right:1px solid #dbdbdb;
	border-left:1px solid #dbdbdb;
	text-align:center;
	white-space: nowrap;
}

.table-horizontal tbody th,
.table-horizontal tbody td {
	line-height: 1.75;
	padding: 6px 8px;
	background: #fff;
	border:1px solid #dbdbdb;
}

.table-horizontal tbody th {text-align:center;}

.table-horizontal tbody td.td-grouptitle {
	font-weight:600;
	text-align:center;
	background: #DCE3E8;
	color: #484848;
}

.table-horizontal.is-zebra tbody tr:nth-child(2n) th,
.table-horizontal.is-zebra tbody tr:nth-child(2n) td {background: #F4F4F4;}


/* modal ---------------------------------------*/

.modal-wrapper {display: none;}

.modal-inner {
	width: 30vw;
	padding: 1.5vw 0;
	position: relative;
}

.modal-inner::before {
	display: block;
	content: '';
	background: url('../img/index/bg_modal_top.png') no-repeat center center; 
	background-size: 100%;
	width: 100%;
	height: 1.5vw;
	position: absolute;
	left: 0;
	top: 0;
}

.modal-inner::after {
	display: block;
	content: '';
	background: url('../img/index/bg_modal_bottom.png') no-repeat center center; 
	background-size: 100%;
	width: 100%;
	height: 1.5vw;
	position: absolute;
	left: 0;
	bottom: 0;
}

.modal-content {
	padding: 1vw 2vw;
	background: url('../img/index/bg_modal.png') repeat-y center center;
	background-size: 100%;
	max-height: 94vh;
	overflow-y: auto;
}

.modal-image {
	width: 100%;
	margin: 0 auto 3vw;
}

.modal-image img {
	width: 100%;
}

.modal-title {
	font-size: 1.757vw;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 0.2vw;
	margin-bottom: 2vw;
	color: #916e26;
	font-weight: 700;
}

.modal-title img {
	height: 1.5vw;
	width: auto;
}

.modal-explain {
	font-size: 1.171vw;
	margin-bottom: 2.3vw;
}

.modal-title-use {
	font-size: 1.757vw;
	color: #916e26;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1.5vw;
}

.modal-title-use span {
	display: inline-block;
	padding: 0 1vw 0.5vw;
	background: url(../img/index/line_modal.png) no-repeat bottom center;
	background-size: 100%;
}

.modal-text {
	font-size: 1.171vw;
	margin-bottom: 1.5vw;
}

.js-another-modal {
	text-decoration: underline;
}

.js-another-modal:hover {
	text-decoration: none;
}

.modal-inner-close {
	cursor: pointer;
	text-align: center;
	transition: all .25s ease;
}

.modal-inner-close:hover {
	opacity: 0.7;
}

.modal-inner-close img {
	width: 20%;
}

/* 固定バナー ---------------------------------------*/
.fixedbnr-wrapper {
	position: fixed;
	width: 100%;
	height: 120px;
	bottom: 0;
	left: 0;
	z-index: 1000;
	transition: all 0.6s ease;
	transform: translate3d(0, 100%, 0);
}

.fixedbnr-wrapper.is-fixed {
	transform: translate3d(0, 0, 0);
}

.fixedbnr {
	position: fixed;
	bottom: -139px;
	left: 0;
	z-index: 1000;
	width: 549px;
	transition: all 0.3s ease;
}

.fixedbnr.open {
	bottom: 0;
}

.fixedbnr-image {
	cursor: pointer;
}

.fixedbnr-image-arrrow {
	position: absolute;
	top: 2px;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	width: 15.4px;
	height: 13.7px;
	background: url(../img/common/icon_fixed_banner_arrrow.svg) no-repeat;
	background-size: contain;
	content: '';
	transition: all 0.3s ease;
}

.fixedbnr.open .fixedbnr-image-arrrow{
	transform: translateX(-50%) rotate(180deg);
}

.fixedbnr-image img {
	width: 100%;
}

.fixedbnr.open .fixedbnr-content {
	margin-top: -2px;
}

.fixedbnr-content img {
	position: relative;
}

.fixedbnr-content img {
	width: 100%;
}

.fixedbnr-content-link {
	display: inline-block;
	position: absolute;
	bottom: 18.5%;
	width: 25%;
	height: 25%;
	overflow: hidden;
	text-indent: -999em;
}

.fixedbnr-content-link-line {
	right: 29.5%;
}

.fixedbnr-content-link-mail {
	right: 2.5%;
}

.fixedbnr-content-link-tel {
	left: 8%;
	bottom: 7%;
	width: 37%;
	height: 39%;
}

/* pager ---------------------------------------*/

.pager-list {
	overflow:hidden;
	text-align:center;
	padding:20px 0;
	font-size:0px;
}

.pager-list li {
	display:inline-block;
	margin:0 7px;
	font-size:18px;
}

.pager-list li a,
.pager-list li span {
	display:block;
	border:1px solid #000;
	height:30px;
	width:30px;
	line-height:30px;
	text-align:center;
	color:#000;
	transition: all .25s ease;
}

.pager-list li a:hover,
.pager-list li span {
	background-color:#000;
	color:#fff;
	text-decoration:none;
}

.pager-list li.pagerPrev a,
.pager-list li.pagerNext a {
	width:50px;
	background-color:#000;
	color:#fff;
	font-weight:bold;
}


/* cms entry body ---------------------------------------*/

.entrybody {
	line-height: 1.8;
	margin-bottom: 80px;
}

.entrybody h2,.entrybody h3,.entrybody h4,.entrybody h5,.entrybody h6 {
	font-weight: bold;
/*	margin-top: 3em;*/
	margin-top: 44px;
	margin-bottom: 1em;
}

.entrybody h2 {font-size: 24px; color: #003DA5;}
.entrybody h3{font-size: 22px;}
.entrybody h4{font-size: 20px;}
.entrybody h5{font-size: 18px;}
.entrybody h6{font-size: 16px;}

.entrybody p {
	font-size: 16px;
	line-height: 2.1;
}

.entrybody p + p {margin-top: 2em;}

.entrybody .image,
.entrybody > img{
	display: block;
	text-align: center;
	margin: 66px auto 58px;
}

.entrybody > *:first-child{margin-top: 0;}


/* form ---------------------------------------*/

.form-text,.form-date {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0 10px;
	border: 1px solid #999;
	width: 100%;
	border-radius: 0;
	line-height: 1;
	height: 38px;
}

::placeholder {color:#ccc;}

.form-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0 10px;
	border: 1px solid #999;
	width: 100%;
	background: url('../img/common/select.svg') no-repeat right 10px top 50%;
	background-size: 24px 24px;
	border-radius: 0;
	line-height: 1;
	height: 38px;
}

.form-select.is-notselected {color: #ccc;}
select::-ms-expand {display: none;}

.form-textarea {
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	padding: 13px 10px;
	border: 1px solid #999;
	width: 100%;
	height: 200px;
	box-sizing: border-box;
	border-radius: 0;
}

.form-radio {
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
	font-size: 14px;
	position:relative;
}

.form-radio label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	line-height: 1.4;
	min-height: 23px;
	margin: 0px 0;
	padding: 3px 0 0 25px;
	position: relative;
	vertical-align: top;
}

.form-radio input[type="radio"] {position: absolute;left:0px;top:0px;width:1px;height:1px;overflow: hidden;opacity:0;}

.form-radio label::before {
	display:block;
	content:'';
	border:1px solid #aaa;
	border-radius:50%;
	width:20px;
	height:20px;
	position:absolute;
	left: 0;
	top:50%;
	transform: translate(0,-50%);
}

.form-radio input:checked + label::after {
	display:block;
	content:'';
	background: #2A619B;
	border-radius:50%;
	width:14px;
	height:14px;
	position:absolute;
	left: 4px;
	top:50%;
	transform: translate(0,-50%);
}

.form-radio input:disabled + label {opacity: 0.7;}

.form-checkbox {
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
	font-size: 14px;
	position:relative;
}

.form-checkbox label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	line-height: 1.4;
	min-height: 23px;
	margin: 0px 0;
	padding: 3px 0 0 30px;
	position: relative;
	vertical-align: top;
}

.form-checkbox input[type="checkbox"] {position: absolute;left:0px;top:0px;width:1px;height:1px;overflow: hidden;opacity:0;}

.form-checkbox label::before {
	display:block;
	content:'';
	border:1px solid #aaa;
	border-radius:2px;
	width:20px;
	height:20px;
	position:absolute;
	left: 0;
	top:50%;
	transform: translate(0,-50%);
}

.form-checkbox input:checked + label::after {
	display:block;
	content:'';
	background: #2A619B;
	border-radius:1px;
	width:14px;
	height:14px;
	position:absolute;
	left: 4px;
	top:50%;
	transform: translate(0,-50%);
}

.form-checkbox input:disabled + label {opacity: 0.7;}

.toggle-switch {
	position: relative;
	width: 60px;
	height: 30px;
	margin: auto;
	display: inline-block;
}

.toggle-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	cursor: pointer;
}

.toggle-switch label {
	width: 60px;
	height: 30px;
	background: #ccc;
	position: relative;
	display: inline-block;
	border-radius: 30px;
	transition: 0.1s;
	box-sizing: border-box;
}

.toggle-switch label::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	left: 0;
	top: 0;
	z-index: 2;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: 0.1s;
}

.toggle-input:checked + label {background-color: #4BD865;}
.toggle-input:checked + label::after {left: 30px;}
.submit {text-align: center;}
.must {color:#aa0000;}


/* accordion ---------------------------------------*/

/* .accordion {} */

.accordion-title {
	position:relative;
	display: inline-block;
	padding-right: 50px;
	cursor: pointer;
}

.accordion-title:hover {
	color:#2A619B;
	text-decoration: underline;
}

.accordion-title::after {
	display:block;
	content:'';
	border-bottom:3px solid #2A619B;
	border-right:3px solid #2A619B;
	width:10px;
	height:10px;
	margin-top:-17px;
	position:absolute;
	right:10px;
	top:50%;
	transform: rotate(45deg);
	transition: all .25s ease;
}

.accordion-title.is-open::after {
	transform: rotate(225deg);
}

.accordion-body {
	display: none;
}





/* pc only */
@media screen and (min-width: 768px) {
	.sp {display: none !important;}
	.spbr {display: none;}
}



/* small pc */
@media screen and (min-width: 768px) and (max-width: 1200px) {


}

@media screen and (min-width: 1000px){
	.fixedbnr {
		left: calc(50% - 500px);
	}

}


/* s0 only */
@media screen and (max-width: 767px) {

	/* common item ---------------------------------------*/

	.pc {display: none !important;}
	.pcbr {display: none;}


	/* layout ---------------------------------------*/

	.header-inner,.footer-inner,.inner,.wrapper {
		min-width: 0;
		width: 100%;
	}


	/* header ---------------------------------------*/

	header.indexheader,
	header.subpageheader {
		height: calc(30 / 320 * 100vw);
	}

	.subpageheader-inner {
		width: 100%;
	}

	.header-logo,
	.subpageheader-logo {
		width: calc(89 / 320* 100vw);
        padding-bottom: 5px;
	}

	#openmenu {
		width: calc(48 / 320 * 100vw);
		height: calc(29 / 320 * 100vw);
	}

	#openmenu .menu-header {
		width: calc(32 / 320 * 100vw);
		height: calc(22 / 320 * 100vw);
	}


	/* gnav ---------------------------------------*/
	.gnav {
		left: unset;
		top: calc(30 / 320 * 100vw);
		right: 0;
		width: 50vw;
		height: 50vw;
		padding: 2vw 0 0 10vw;
		transform:translate3d(100%,0,0);
	}

	.gnav.indexgnav {
		top: calc(30 / 320 * 100vw);
	}

	.gnav.is-active {
		top: calc(30 / 320 * 100vw);
	}

	.gnav-list > li a {
		font-size: 3.75vw;
	}

	.gnav-list > li + li {
		margin-top: 4.5vw;
	}

	.gnav-list > li.is-active::before {
		left: calc(-25 / 320 * 100vw);
		width: calc(17 / 320 * 100vw);
		height: calc(6 / 320 * 100vw);
	}


	/* footer ---------------------------------------*/

	/* .gotop {}
	.gotop a {} */


	
footer {}

.footer-inner {
	max-width:1080px;
	margin:0 auto;
	position:relative;
}

.footer-meta {
	font-size: 2.5vw;
}

.footer-contact {
	font-size: 2.5vw;
	margin: 0.5vw 0 2vw;
}

.copyright {
	font-size: 2.19vw;
	padding: 2.5vw 0;
}

.copyright-index {
	padding: 2.5vw 0 calc(2vw + calc(70 / 320 * 100vw));
}


	/* margin ---------------------------------------*/

	.mt-sp-0 {margin-top:0px !important;}
	.mt-sp-5 {margin-top:5px !important;}
	.mt-sp-10 {margin-top:10px !important;}
	.mt-sp-15 {margin-top:15px !important;}
	.mt-sp-20 {margin-top:20px !important;}
	.mt-sp-25 {margin-top:25px !important;}
	.mt-sp-30 {margin-top:30px !important;}
	.mt-sp-35 {margin-top:35px !important;}
	.mt-sp-40 {margin-top:40px !important;}
	.mt-sp-45 {margin-top:45px !important;}
	.mt-sp-50 {margin-top:50px !important;}
	.mt-sp-55 {margin-top:55px !important;}
	.mt-sp-60 {margin-top:60px !important;}
	.mt-sp-65 {margin-top:65px !important;}
	.mt-sp-70 {margin-top:70px !important;}
	.mt-sp-75 {margin-top:75px !important;}
	.mt-sp-80 {margin-top:80px !important;}
	.mt-sp-85 {margin-top:85px !important;}
	.mt-sp-90 {margin-top:90px !important;}
	.mt-sp-95 {margin-top:95px !important;}
	.mt-sp-100 {margin-top:100px !important;}

	.mb-sp-0 {margin-bottom:0px !important;}
	.mb-sp-5 {margin-bottom:5px !important;}
	.mb-sp-10 {margin-bottom:10px !important;}
	.mb-sp-15 {margin-bottom:15px !important;}
	.mb-sp-20 {margin-bottom:20px !important;}
	.mb-sp-25 {margin-bottom:25px !important;}
	.mb-sp-30 {margin-bottom:30px !important;}
	.mb-sp-35 {margin-bottom:35px !important;}
	.mb-sp-40 {margin-bottom:40px !important;}
	.mb-sp-45 {margin-bottom:45px !important;}
	.mb-sp-50 {margin-bottom:50px !important;}
	.mb-sp-55 {margin-bottom:55px !important;}
	.mb-sp-60 {margin-bottom:60px !important;}
	.mb-sp-65 {margin-bottom:65px !important;}
	.mb-sp-70 {margin-bottom:70px !important;}
	.mb-sp-75 {margin-bottom:75px !important;}
	.mb-sp-80 {margin-bottom:80px !important;}
	.mb-sp-85 {margin-bottom:85px !important;}
	.mb-sp-90 {margin-bottom:90px !important;}
	.mb-sp-95 {margin-bottom:95px !important;}
	.mb-sp-100 {margin-bottom:100px !important;}


	/* width ---------------------------------------*/

	.wid-sp-100per {width:100% !important;}
	.wid-sp-50per {width:50% !important;}

	.wid-sp-40 {width:40px !important;}
	.wid-sp-50 {width:50px !important;}
	.wid-sp-60 {width:60px !important;}
	.wid-sp-70 {width:70px !important;}
	.wid-sp-80 {width:80px !important;}
	.wid-sp-90 {width:90px !important;}
	.wid-sp-100 {width:100px !important;}
	.wid-sp-110 {width:110px !important;}
	.wid-sp-120 {width:120px !important;}
	.wid-sp-130 {width:130px !important;}
	.wid-sp-140 {width:140px !important;}
	.wid-sp-150 {width:150px !important;}
	.wid-sp-160 {width:160px !important;}
	.wid-sp-170 {width:170px !important;}
	.wid-sp-180 {width:180px !important;}
	.wid-sp-190 {width:190px !important;}
	.wid-sp-200 {width:190px !important;}


	/* title ---------------------------------------*/

	/* .title-page {} */

	.title-section {
		font-size: 30px;
		padding: 32px 0;
	}

	.title-section::after {width: 100px;}
	.title-block {font-size: 24px;}
	.title-small {font-size: 16px;}


	/* text ---------------------------------------*/

	.text-sp-center {text-align:center;}
	.text-sp-right {text-align:right;}
	.text-sp-left {text-align:left;}


	/* pankuzu ---------------------------------------*/

	.pankuzu {display: none}


	/* list ---------------------------------------*/

	.list li {padding-left: 15px;}


	/* btn ---------------------------------------*/


	/* table ---------------------------------------*/

	.table-wrapper {margin-bottom: 55px;}

	.table-horizontal,
	.table-horizontal tbody,
	.table-horizontal tr,
	.table-horizontal th,
	.table-horizontal td {
		display: block;
		width:100%;
	}


	.table-horizontal th,
	.table-horizontal td {
		font-size:16px;
		border:none;
	}

	.table-horizontal th {padding: 18px 20px 18px 20px;}
	.table-horizontal td {padding: 25px 20px 25px 20px;}

	.table-sp-scroll {
		overflow: auto;
		width: calc(100% + 30px);
		margin: 0 -15px;
		padding-left: 15px;
	}

	.table-sp-scroll table {min-width:450px;}


	/* modal ---------------------------------------*/

	
	/* modal ---------------------------------------*/

	.modal-wrapper {
		display: none;
	}

	.modal-inner {
		width: 85vw;
		padding: 4.682vw 0
	}

	.modal-inner::before {
		height: 4.687vw;
	}
	
	.modal-inner::after {
		height: 4.687vw;
	}
	
	.modal-content {
		padding: 1.5vw 4vw 2.88vw;
		max-height: 84vh;
	}

	.modal-image {
		width: 54%;
		margin: 0 auto 5vw;
	}

	.modal-title {
		font-size: 3.75vw;
		gap: 0.2vw;
		margin-bottom: 4vw;
	}

	.modal-title img {
		height: 3vw;
	}

	.modal-explain {
		font-size: 3.125vw;
		margin-bottom: 7vw;
		line-height: 1.6;
	}

	.modal-title-use {
		font-size: 3.75vw;
		color: #916e26;
		font-weight: 700;
		text-align: center;
		margin-bottom: 1.5vw;
	}

	.modal-title-use span {
		padding: 0 1vw 0.8vw;
	}

	.modal-text {
		font-size: 3.125vw;
		margin-bottom: 4.5vw;
		line-height: 1.6;
	}

	.js-another-modal:hover {
		text-decoration: underline;
	}

	.modal-inner-close:hover {
		opacity: 1;
	}

	.modal-inner-close img {
		width: 21%;
	}


	/* 固定バナー ---------------------------------------*/
	.fixedbnr {
		bottom: calc(-81 / 320 * 100vw);
		right: 0;
		width: 100vw;
	}

	.fixedbnr-image-arrrow {
		top: calc(1 / 320 * 100vw);
		width: calc(9 / 320 * 100vw);
		height: calc(8 / 320 * 100vw);
	}

	.fixedbnr.open .fixedbnr-content {
		margin-top: calc(-1 / 320 * 100vw);
	}

}


/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px) {

}