@charset "UTF-8";

/* --ブラウザの互換初期化------------------------ */
html {
		overflow: scroll;
}

* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td {
		margin: 0;
		padding: 0;
}

table {
		border-collapse: collapse;
		border-spacing: 0;
}

th, td {
		vertical-align: top;
}

fieldset, img {
		border: 0;
}

address, caption, cite, code, dfn, em, th, var {
		font-style: normal;
		font-weight: normal;
}

caption, th {
		text-align: left;
}

h1, h2, h3, h4, h5, h6 {
		font-size: 100%;
		font-weight: bold;
		text-align: center;
}
@media only screen and (max-width: 768px){
	h1, h2, h3, h4, h5, h6 {
			text-align: left;
	}}

q:before, q:after {
		content: '';
}

ul, ol, li {
		list-style-type: none;
}

/* --clearfix------------- */
.clearfix:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden;
}

/* フォーム関連をリセット */
input[type="submit"],
input[type="button"] {
		-webkit-appearance: none;
		-moz-appearance: none;
		border-radius: 0;
		-webkit-box-sizing: border-box;
		-webkit-appearance: button;
		appearance: button;
		border: none;
		box-sizing: border-box;
		background-color: transparent;
		box-shadow: 0 0 0 rgba(51, 51, 51, 0);
		cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
		display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
		outline-offset: -2px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
		display: block;
		border: 0 none;
		box-shadow: 0 0 0 rgba(51, 51, 51, 0);
		-webkit-appearance: none;
		-webkit-tap-highlight-color: transparent;
		border-radius: 0;
		outline: none;
		background: none;
		font-size: 1.5rem;		
}

select {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border: none;
		outline: none;
		background: transparent;
}

select::-ms-expand {
		display: none;
}

@media only screen and (max-width: 1024px) {
		input[type="text"],
		input[type="tel"],
		input[type="email"],
		textarea,
		select {
				font-size: 1.6rem;
		}
}

*, *:after, *:before {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
}

/* ------------------------
    基本構造
------------------------ */
html {
		padding: 0;
		margin: 0;
		font-size: 10px;
		overflow-x: hidden;
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
}

body {
    font-family: "Noto Serif JP", serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic";	
    font-size: 1.6rem;
	color: #222;
    line-height: 1.7;
	overflow-x: hidden;
}
@media only screen and (max-width: 768px){
	body {
		font-size: 1.5rem;
	}
}
#wrap {
		width: 100%;
		overflow: hidden;
		padding-top: 100px;
}

#wrap.notpd {
		padding-top: 0;
}

#page-index #wrap {
		padding-top: 0;
}
@media only screen and (max-width: 768px) {
	#wrap {
		padding-top: 60px;
	}
}

/*
.contents {
		position: relative;
		width: 100%;
		max-width: 1110px;
		margin: 0 auto;
		padding: 0 15px;
}
.contents .min-contents {
		max-width: 960px;
		padding: 0;
}
.min-contents {
		width: 100%;
		max-width: 990px;
		margin: 0 auto;
		padding: 0 15px;
}
@media only screen and (max-width: 768px) {
	.contents {
			position: relative;
			width: 100%;
			max-width: 100%;
			margin: 0 auto;
			padding: 0 15px;
	}
	.contents .min-contents {
			max-width: 100%;
			padding: 0;
	}
	.min-contents {
			width: 100%;
			max-width: 100%;
			margin: 0 auto;
			padding: 0 15px;
	}
}
*/
a {
		text-decoration: none;
		transition: all .3s ease;
}

a:hover {
		text-decoration: none;
}

img {
		max-width: 100%;
		height: auto;
		transition: all .3s ease;
		vertical-align: top;
}


[class*="fig-ratio-"] {
		display: block;
		position: relative;
		overflow: hidden;
		margin-top: 45px;
}
[class*="fig-ratio-"]:first-child {
		margin-top: 0;
}
[class*="fig-ratio-"] img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		font-family: 'object-fit: cover;';
}
@media only screen and (max-width: 768px) {
		[class*="fig-ratio-"] {
				margin: 30px -15px 0;
				padding-top: 100%;
		}
}

.fig-ratio-01 {
		padding-top: 56.25%;
}
@media only screen and (max-width: 768px) {
		.fig-ratio-01 {
				padding-top: 100%;
		}
}

.fig-ratio-02 {
		padding-top: 66.6666%;
}
@media only screen and (max-width: 768px) {
		.fig-ratio-02 {
				padding-top: 75%;
		}
}


.al-right {
		text-align: right;
}
.al-center {
		text-align: center;
}
.al-left {
		text-align: left;
}
.al-center-pc {
		text-align: center;
}
.only-sp {
		display: none !important;
}
.disp-ib {
		display: inline-block;
}

.mg-center {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 768px) {
		.only-pc {
				display: none !important;
		}
		.only-sp {
				display: block !important;
		}
		.al-center-pc {
				text-align: left;
		}
}

/* ------------------------
    カラム分け
------------------------ */
.grid-cmn {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 10px -30px 0;
	position: relative;
}
.grid-cmn:first-child {
	margin-top: 0;
}
.grid-cmn.ai-center {
	-webkit-align-items: center;
	align-items: center;
}
.grid-cmn.jc-center {
	-webkit-justify-content: center;
	justify-content: center;
}
.grid-cmn.mg-lg {
	margin: 25px -30px 0;
}
.grid-cmn.mg-lg .col {
	padding: 0 30px;
	margin-top: 15px;
}
.grid-cmn .col {
	box-sizing: border-box;
	position: relative;
	padding: 0 30px;
	margin-top: 45px;
}
.grid-cmn .col.col-l-2 {
	width: 16.6666%;
}
.grid-cmn .col.col-l-20p {
	width: 20%;
}
.grid-cmn .col.col-l-3 {
		width: 25%;
}
.grid-cmn .col.col-l-4 {
	width: 33.33333%;
}
.grid-cmn .col.col-l-5 {
	width: 41.66666%;
}
.grid-cmn .col.col-l-5-5 {
	width: 45.83333%;
}
.grid-cmn .col.col-l-6 {
	width: 50%;
}
.grid-cmn .col.col-l-6-5 {
	width: 54.16666%;
}
.grid-cmn .col.col-l-7 {
	width: 58.33333%;
}
.grid-cmn .col.col-l-8 {
	width: 66.66666%;
}
.grid-cmn .col.col-l-9 {
	width: 75%;
}

.grd-cmn .col.col-l-10 {
	width: 83.33333%;
}
.grid-cmn .col.col-l-12 {
	width: 100%;
}



@media only screen and (max-width: 768px) {
	.grid-cmn {
		margin: 5px -5px 0;
	}
	.grid-cmn.mg-lg {
		margin: 0 -10px;
	}
	.grid-cmn.mg-lg .col {
		padding: 0 10px;
		margin-top: 30px;
	}
	.grid-cmn .col {
		padding: 0 5px;
		margin-top: 25px;
	}
	.grid-cmn .col.col-s-12 {
		width: 100%;
	}
	.grid-cmn .col.col-s-10 {
		width: 83.33333%;
	}
	.grid-cmn .col.col-s-9 {
		width: 75%;
	}
	.grid-cmn .col.col-s-8 {
		width: 66.66666%;
	}
	.grid-cmn .col.col-s-7 {
		width: 58.33333%;
	}
	.grid-cmn .col.col-s-6 {
		width: 50%;
	}
	.grid-cmn .col.col-s-5 {
		width: 41.66666%;
	}
	.grid-cmn .col.col-s-4 {
		width: 33.33333%;
	}
	.grid-cmn .col.col-s-3 {
		width: 25%;
	}
	.grid-cmn .col.col-s-20p {
		width: 20%;
	}
	.grid-cmn .col.col-s-2 {
		width: 16.6666%;
	}
}