
@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: normal;
	/*font: inherit;*/
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	list-style: none;
	list-style-type: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="password"],
textarea,
select,*:focus {
	outline: none;
}


/*====================================================
////id common
====================================================*/
:root {
    --l_blue: #8BCFF2;
    --blue: #0670DA;
    --orange: #FF633C;
    --beige: #E3C197;
    --gray: #E0E1E3;
    --d_gray: #4D4D4D;
	--black: #000;

	--font_family: 'Noto Sans JP', "Yu Gothic", "游ゴシック Medium", "YuGothic", "游ゴシック体", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	--f_maru: "M PLUS Rounded 1c", "Yu Gothic", "游ゴシック Medium", "YuGothic", "游ゴシック体", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    --f_en: "Anton", 'Noto Sans JP', "Yu Gothic", "游ゴシック Medium", "YuGothic", "游ゴシック体", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

html{
	font-size: 10px;
	font-size: 62.5%;
	overflow-x : hidden;
	width: 100%;
	max-width: 100vw;
}
body, button, input, select, optgroup, textarea {
	color: var(--black);
	font-family: var(--font_family);
	font-size: 15px;
	font-size: min(3.7vw, 1.5rem);
	font-weight: 500;
	/* letter-spacing: 0.02em; */
	line-height: 1.6;
}


body {
	position: relative;
	width: 100%;
	max-width: 100vw;
	height: auto;
}
* {
	min-height:0;
	min-width : 0;
}

body * {
	box-sizing: border-box;
}
section {
	position: relative;
	max-width: 100vw;
}
a {
	display: inline-block;
	transition: 0.2s ease-in-out;
	color: inherit;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline:none;
	text-decoration: none;
	/* vertical-align: middle; */
}
.tel_link a {
	text-decoration: none !important;
}
a img {
	transition: .1s ease-in-out;
}

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

body figure {
	margin: 0;
	position: relative;
}
figure img {
	position: relative;
}
figure.coverImg {
	overflow: hidden;
	padding-top: 55%;
	width: 100%;
}
figure.coverImg img {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
}
figure.coverImg.contain img {
	-o-object-fit: contain;
	object-fit: contain;
}

.scaleUpImg {
	overflow: hidden;
}
.scaleUpImg img {
	transition: .4s;
}
.scaleUpImg:hover img {
	transform: scale(1.05);
}
#contents {
    background: #F2F2F0;
	width: 100%;
	position: relative;
	transition: .2s ease-in-out;
	z-index: 1;
}
.innerBox {
	margin: 0 auto;
	padding: min(12vw, 60px) 0;
	position: relative;
	width: min(90%, 1100px);
	z-index: 1;
}
.hidden {
	display: none;
}
.over_hidden {
	overflow: hidden;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	.hidden-mob {
		display: none;
	}
	.flexColumn-mob ,
	.flexColumn-tab {
		flex-direction: column;
	}
}
@media screen and (max-width:500px) {
	.display-small {
		display: block;
	}
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.hidden-pc, .hidden-pc_d-tab {
		display: none;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	.flexColumn-tab {
		flex-direction: column;
	}
	.hidden-tab {
		display: none;
	}
	.display-tab, .hidden-pc_d-tab {
		display: block;
	}
}

@media screen and (min-width:1200px) {
	.hidden-wide {
		display: none;
	}
    .display-wide {
		display: block;
	}

}

/*====================================================
//NOTE テキスト
====================================================*/
.f-sans {
	font-family: var(--font_family);
	font-weight: 500;
}
.f-maru {
    font-family: var(--f_maru);
}
.f-en {
    font-family: var(--f_en);
}
small, .small {
	font-size: .8em;
}
big, .big {
	font-size: 1.2em;
}
strong, .fw-bold {
	font-weight: bold;
}
sup {
	font-size: .5em;
	vertical-align: .5em;
}

/*====================================================
//NOTE 装飾系
====================================================*/

.linkBtn { /* class linkBtn */
	background: var(--mainColor);
	border: solid 4px var(--mainColor);
	border-radius: 3em;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
	color: #fff;
  cursor: pointer;
	display: inline-block;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.4;
	margin: auto;
	/* overflow: hidden; */
	padding: .8em 2.5em;
	position: relative;
	text-align: center;
	transition: .2s ease-in-out;
  width: 100%;
		max-width: 390px;
	z-index: 1;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	.linkBtn {
		border-width: 2px;
		font-size: 1.25em;
		max-width: 420px;
	}
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

dl.accordion dt ,
dl.menu-accordion dt {
	cursor: pointer;
	transition: .2s ease-in-out;
}
dl.accordion dd ,
dl.menu-accordion dd {
	overflow: hidden;
	transition: .2s ease-in-out;
}
ul.markList li {
	line-height: 1.6;
	position: relative;
	padding-left: 1.2em;
	margin: .3em 0;
}
ul.markList.dot li {
	padding-left: 1em;
}
ul.markList.dot li::before {
	background: currentColor;
	border-radius: 100%;
	content: '';
	margin: auto;
	position: absolute;
		left: .3em;
		top: .7em;
	width: .2em;
	height: .2em;
}
ul.markList > li:first-child {
	margin-top: 0;
}
ul.markList > li:last-child {
	margin-bottom: 0;
}
ul.markList li:before {
	position: absolute;
	display: block;
	left: 0;
	top: .05em;
}
ul.markList li:after {
	display: none !important;
}
ul.markList.attentionMark {
	line-height: 1.4;
}
ul.markList.attentionMark li:before {
	content: '\203B';
}
ul.markList.exclamationMark li {
	padding-left: 1.4em;
}
ol{
	counter-reset:number; /* 名前を付けたカウンターをリセット */
	list-style:none; /* olが数字を付けることをキャンセル */
	margin:0;
	padding:0;
}
ol > li{
	padding-left: 1.7em;
	margin: .5em 0;
	position: relative;
}
ol > li:first-child {
	margin-top: 0;
}
ol > li:last-child {
	margin-bottom: 0;
}
ol > li::before{
	counter-increment: number;
	content: counter(number)'.';
	position: absolute;
	top: .3em;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.7em;
	height: 1.2em;
	line-height: 1;
}
ol.brackets > li {
	padding-left: 2em;
}
ol.brackets > li::before {
	content: '（'counter(number)'）';
	top: .25em;
}


/*====================================================
////NOTE カラー
====================================================*/
.bg-white {
	background: #fff;
	color: var(--black);
}
.bg-l_blue {
	background: var(--l_blue);
	color: #fff;
}
.bg-blue {
	background: var(--blue);
	color: #fff;
}
.bg-orange {
	background: var(--orange);
	color: #fff;
}
.bg-beige {
	background: var(--beige);
	color: #fff;
}
.bg-gray {
	background: var(--gray);
	color: #fff;
}
.bg-black {
	background: var(--black);
	color: #fff;
}

.white {
	color: #fff;
}
.l_blue {
	color: var(--l_blue);
}
.blue {
	color: var(--blue);
}
.orange {
	color: var(--orange);
}
.beige {
	color: var(--beige);
}
.gray {
	color: var(--gray);
}
.d_gray {
	color: var(--d_gray);
}
.black {
	color: var(--black);
}

/*====================================================
////id 【header】
====================================================*/
header .headerBox {
	background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(3px);
    margin: auto;
	position: fixed;
		top: 0;
		left: 0;
    width: 100%;
	z-index: 9999;
}
header .header-inner {
    display: flex;
        grid-gap: 5px min(3vw, 40px);
    padding: 6px 0;
    height: 100%;
    width: 90%;
}
header .header-logo {
    display: flex;
        justify-content: center;
    width: min(60vw, 220px);
}
header .header-menu {
    display: flex;
        align-items: center;
        justify-content: flex-end;
        grid-gap: min(2vw, 30px);
    font-size: min(3.2vw, 1.2rem);
}
header .header-menu a {
    background-color: var(--gray);
    border: solid 3px var(--gray);
    border-radius: 3em;
    line-height: 1.2;
    padding: .4em .8em;
    text-align: center;
}
header .header-menu a:active {
    background-color: #fff;
    border-color: var(--orange);
    color: var(--orange);
}
header .header-menu a.current {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
    pointer-events: none;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
    header ,
    header .headerBox {
        height: min(20vw, 90px);
    }
    header .header-inner {
        flex-direction: column;
            justify-content: center;
    }
    header .header-logo {
        margin: 0 auto;
    }
    header .header-menu {
        justify-content: center;
    }
    header .header-menu li {
        flex: 1;
        max-width: 10em;
    }
    header .header-menu li a {
        padding: .3em .8em .35em;
        width: 100%;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    header ,
    header .headerBox {
        height: 120px;
    }
    header .header-inner {
        align-items: center;
        justify-content: space-between;
        grid-template-columns: auto 1fr;
    }
    header .header-menu a {
        width: 10em;
    }
}
@media (hover: hover) {
    header .header-menu a:hover {
        background-color: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }
}
/*====================================================
//class .sa
====================================================*/
.sa {
	opacity: 0;
	transition: all .8s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa-lr {
	transform: translate(-40px, 0);
}
.sa-rl {
	transform: translate(40px, 0);
}
.sa-up {
	transform: translate(0, 40px);
}
.sa-down {
	transform: translate(0, -40px);
}

/*====================================================
//// id page_title
====================================================*/
#page_title {
    font-size: min(6vw, 3rem);
    line-height: 1.4;
    margin-bottom: 1em;
    text-align: center;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/*====================================================
//// id report
====================================================*/
.report_list {
    display: grid;
        grid-gap: min(3vw, 20px) min(2vw, 20px);
}
.report_item {
    background: #fff;
    border-radius: min(2vw, 10px);
    display: grid;
        grid-template-rows: subgrid;
        grid-row: span 4;
        grid-gap: 0;
    padding: min(1.8vw, 20px);
}
.report_item .date {
    font-size: 1.2rem;
    font-weight: 700;
    margin: .7em 0 .6em;
}
.report_item .title {
	/*white-space: pre-wrap;*/
    border-bottom: solid 1px #000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: .6em;
}
.report_item .text {
	/*white-space: pre-wrap;*/
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: .8em;
}
.report_item .text a {
    -webkit-text-decoration: underline solid 1px;
	text-decoration: underline solid 1px;
	text-underline-position: under;
	text-underline-offset: 0.1em;

}

.txtColor001 {
	color: #FF0004;
}

.al-center {
	text-align: center;
}

.al-center img {
	display: inline-block;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
    .report_list {
        margin: auto;
        max-width: 500px;
    }
    .report_item {
        padding: min(3.5vw, 20px);
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    .report_list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (hover: hover) {
    .report_item .text a:hover {
        color: var(--orange);
    }
}
/*====================================================
////id footer
====================================================*/
footer {
	position: relative;
	z-index: 1000;
}
footer .innerBox {
	font-size: 1.2rem;
    font-weight: 700;
    padding: min(6vw, 40px);
    text-align: center;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}
