@charset "UTF-8";
*, *::before, *::after {
	box-sizing: border-box;
}
img, svg {
	border: none;
	vertical-align: bottom;
	width: 100%;
	max-width: 100%;
	height: auto;
	line-height: 1.0em;
}
li {
	list-style-type: none;
}
a {
	text-decoration: none;
	transition: 0.2s ease-in-out;
    cursor: pointer;
}
p a{
text-decoration: underline;
text-underline-offset:0.3em;
color: inherit;
}
a:hover {
	text-decoration: underline;
    text-underline-offset: 0.3em;
	backface-visibility: hidden;
    opacity: 0.7;
}
p a:hover {
	text-decoration: none;
}
a img {
	transition: 0.3s ease-in-out;
	outline: none;
	box-shadow: #000 0 0 0;
}
a:hover img {
	opacity: 0.7;
	backface-visibility: hidden;
}
ins, del {
	text-decoration: none;
}

/* 全体設定
*************************************************************/
html {
	overflow: auto;
	overflow-x: clip;
	width: 100%;
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
    /*font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;*/
    
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1em;
	font-size: 16px;
    font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.1em;
	color: var(--black);
	background: var(--white);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	@media screen and (min-width:1080px) {
		font-size: 18px;
	}
}
p/*, ul, ol*/ {
	margin-bottom: 2em;
}
h2, h3, h4, p, ul, ol, li, dt, dd, th, td {
    word-break: keep-all;
    overflow-wrap: anywhere;
	/*word-break: auto-phrase;*/
}


/* 色設定
*************************************************************/ 
:root {
	--white: #fff;
	--black: #595757;
    --line-black: #231815;
    --l-blue: #74afbe;
    --blue: #2c5791;
    --green: #3f9b8e;
    --l-gray: #f1f1f1;
}


/* 文字設定
*************************************************************/
h1 {
	font-size: inherit;
	font-weight: inherit;
}
p{
font-size: 0.875rem;
line-height: 3;
letter-spacing: 0.1em;

	@media screen and (max-width:767px) {
	line-height: 2.4;
	}
	@media screen and (max-width:480px) {
	line-height: 2;
	}
}

.section-subtitle {
}
.section-title{
}


.contents-title{
}
.contents-subtitle {
}

/* 背景色設定 */
.bg-white {
	background-color: var(--white);
}
.bg-black {
	background-color: var(--black);
}
.bg-image {
	background: #000 no-repeat center center;
	background-size: cover;
	position: relative;
	z-index: 0;
	color: #fff;
}
.bg-image::after {
	z-index: -1;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

/* レイアウト
*************************************************************/
main {}
main section {
margin-bottom: 5em!important;
position: relative;
}
.layout {
	width: 100%;
	max-width: 38rem;
	max-width: 1080px;
	padding: 3em 1.5rem;
	margin: auto;
}
.layout-full {
	width: 100%;
	padding: 3em 0;
	margin: auto;
	overflow: clip;
}
.center-layout {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	max-width: 38rem;
	max-width: 900px;
	height: 100%;
	margin: auto;
}
@media screen and (max-width: 480px) {
main section {margin-bottom: 3em!important;}
.layout {	padding: 2em 1.2rem;}
}

/* パーツ
*************************************************************/
.layout-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.layout-1 {	width: 100%;}
.layout-2 {	width: calc(100% / 2);}
.layout-3 {	width: calc(100% / 3);}
.layout-3-2 {	width: calc(100% / 3 * 2);}
.layout-4 {	width: calc(100% / 4);}
.max-w1200 {
	max-width: 1200px !important;
	margin-left: auto;
	margin-right: auto;
}
.max-w1080 {
	max-width: 1080px !important;
	margin-left: auto;
	margin-right: auto;
}
.max-w960 {
	max-width: 960px !important;
	margin-left: auto;
	margin-right: auto;
}
.max-w840 {
	max-width: 840px !important;
	margin-left: auto;
	margin-right: auto;
}
.max-w600 {
	max-width: 600px !important;
	margin-left: auto;
	margin-right: auto;
}
.max-w480 {
	max-width: 480px !important;
	margin-left: auto;
	margin-right: auto;
}
.layout-leftcenter {
	display: table;
	margin-left: auto;
	margin-right: auto;
}
a.underline {border-bottom: 1px solid;}
a.underline:hover {text-decoration: none; border-bottom: none;}
p a.underline::before {
	content: '\f0da';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 0.3em;
}
.n-margin-top {margin-top: -1px;}
.n-margin-bottom {margin-bottom: -1px;}
.inline-block {display: inline-block;}

.list-mark{
display: inline-block;
padding-left:1em;
text-indent: -1em;
}
.indent{
display: block;
text-indent: 1.34em;
}

.sp {display: none;}
@media screen and (max-width: 768px) {
	.pc {display: none;}
	.sp {display: block;}
}
@media screen and (min-width:768px) {
	.br-767 {display: none;}
}
@media screen and (min-width:641px) {
	.br-640 {display: none;}
}
@media screen and (min-width:481px) {
	.br-480 {display: none;}
}

.tac {
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
}
.tal {text-align: left !important;}
.tar {text-align: right !important;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.mt-0 {margin-top: 0 !important;}
.mt-0_5 {margin-top: 0.5em !important;}
.mt-1 {margin-top: 1em !important;}
.mt-1_5 {margin-top: 1.5em !important;}
.mt-2 {margin-top: 2em !important;}
.mt-3 {margin-top: 3em !important;}
.mt-4 {margin-top: 4em !important;}
.mt-5 {margin-top: 5em !important;}
.mt-6 {margin-top: 6em !important;}
.mt-7 {margin-top: 7em !important;}
.mt-8 {margin-top: 8em !important;}
.mb-0 {margin-bottom: 0 !important;}
.mb-0_2 {margin-bottom: 0.2em !important;}
.mb-0_5 {margin-bottom: 0.5em !important;}
.mb-1 {margin-bottom: 1em !important;}
.mb-1_5 {margin-bottom: 1.5em !important;}
.mb-2 {margin-bottom: 2em !important;}
.mb-3 {margin-bottom: 3em !important;}
.mb-4 {margin-bottom: 4em !important;}
.mb-5 {margin-bottom: 5em !important;}
.mb-6 {margin-bottom: 6em !important;}
.mb-7 {margin-bottom: 7em !important;}
.mb-8 {margin-bottom: 8em !important;}
.pc-only {display: block !important;}
.sp-only {display: none !important;}
@media screen and (max-width:599px) {
	.pc-only {display: none !important;}
	.sp-only {display: block !important;}
}

.aspect-ratio-1_1 img{
aspect-ratio: 1/1;
object-fit: cover;
}
.aspect-ratio-4_3 img{
aspect-ratio: 4/3;
object-fit: cover;
}
.aspect-ratio-3_2 img{
aspect-ratio: 3/2;
object-fit: cover;
}
.aspect-ratio-16_9 img{
aspect-ratio: 16/9;
object-fit: cover;
}

/* ボタン共通 */
.btn {
	width: 100%;
	max-width: 330px;
	margin: 4em auto 0;
	/*padding: 0 5px;*/
}
.btn a {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 70px;
	margin: 0;
	padding: 0.8em 1.6em;
	position: relative;
	text-align: center;
	font-size: 1rem;
    font-size: clamp(0.875rem, 0.7857rem + 0.3175vw, 1rem);
	font-weight: 500;
	line-height: 1.4;
    letter-spacing: 0.2em;
	text-decoration: none;
	border-radius: 50px;
	background: var(--gradation);
	color: var(--white);
	transition: 0.3s ease-in-out;
	z-index: 0;
    
    background-position: 0% 50%;
    background-size: 100% auto;
}
.btn a span {
display: block;
font-size: 0.9em;
font-weight: 400;
letter-spacing: 0.2em;
}
.btn a:hover{
    background-position: 0% 50%;
    background-size: 170% auto;
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
	.btn a {font-size: 1em;}
}
@media screen and (max-width: 640px) {
	.btn {
		max-width: 400px;
        padding: 0 1em;
        margin-top: 3em;
	}
    .btn a {
        padding: 0.7em 1.4em;
        font-size: 0.875em;
	}
}