@charset "utf-8";
/*------------------------------------------------------------------------------
Css name: common.css
Css info: 共通スタイル
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
基本
--------------------------------------------------------------------------*/
*{
	margin: 0;
	padding: 0;
}
*,
*::before,
*::after{
	box-sizing: border-box;
}

html{
	font-size: 62.5%;
	line-height: 2;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body{
	position:relative;

	display: flex;
	flex-flow: column;

	min-height: 100vh;
	min-height: 100dvh;
	width: 100%;
	margin: 0;
	color: #333;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", sans-serif;
	font-style:normal;
	font-weight: 400;
	font-feature-settings : "pwid";
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	overflow-x: hidden;
}
body.fixed{ /* メニューオープン時背景固定 */
	position: fixed;
}
main{
	display: block;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}
th, td{
	vertical-align: top;
	word-wrap: break-word;
	line-height:1.6;
}
th{
	text-align: left;
	font-weight: inherit;
}
ul, ol {
  list-style: none;
}
li{
	line-height:1.8;
}
dt,dd{
	line-height:2;
}

textarea,input{
	font-size:1em;
	color: inherit;
}

h1,h2,h3,h4,h5,h6{
  font-size: inherit;
  font-weight: inherit;
	line-height: 1.4;
}

em,strong{
	font-weight: bolder;
	font-style: inherit;
}

small{
	font-size: .8em;
}

i,address{
	font-style: inherit;
}

img,table {
	border:none;
}
img, svg{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a{		/* テキストリンク */
	color: #333;
	text-decoration:none;
	background-color: transparent;
	transition: .3s;
}
a:active,
a:hover{		/* テキストリンク */
	text-decoration:none;
	outline-width: 0;
}
.u_line{
	text-decoration:underline dotted 1px;
	text-underline-offset: .3em;
}
	.u_line:hover{
		color: #0091e6;
		text-decoration:none;
	}

@media only screen and (max-width: 580px) {
	html{
		line-height:1.8;
	}
}
@media (hover: hover) {

}
/*------------------------------------------------------------------------
グローバルメニュー
--------------------------------------------------------------------------*/
.site_logo{
	z-index: 99;
	position: fixed;
	top: 40px;
	left: 40px;

	width: 130px;
	height: 74px;
}
@media screen and (max-width: 580px) {
	.site_logo{
		top: 20px;
		left: 5%;

		width: 40%;
		max-width: 240px;
	}
}
/*-- ハンバーガー -------------------------------------------------- */
.hamburger {
	z-index: 101;
	position: fixed;
	top: 16px;
	right: 16px;

	width: 120px;
	height: 120px;
	border: none;
	background: #eb6100;
	border-radius: 50%;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, .2);

	outline: none;
	appearance: none;
	transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine){
	.hamburger:hover {
		background: #007440;
	}
}

@media screen and (max-width: 1124px) {
	.hamburger {
		width: 100px;
		height: 100px;
		margin: auto;
	}
}
@media screen and (max-width: 580px) {
	.hamburger {
		top: 10px;
		right: 10px;

		width: 70px;
		height: 70px;
	}
}
	.hamburger__line {
		position: absolute;
		top: -2px;
		right: 0;
		bottom: 0;
		left: 0;

		margin: auto;
		width: 40px;
		height: 2px;
		background-color: #fff;

		transition: inherit;
	}
	.hamburger__line::before,
	.hamburger__line::after {
		position: absolute;
		display: block;
		content: '';

		width: 100%;
		height: 100%;
		background: inherit;

		transition: inherit;
	}
	.hamburger__line::before {
		top: -12px;
	}
	.hamburger__line::after {
		top: 12px;
	}

	.hamburger[aria-expanded="true"] .hamburger__line {
		background: transparent;
	}
	.hamburger[aria-expanded="true"] .hamburger__line::before,
	.hamburger[aria-expanded="true"] .hamburger__line::after {
		top: 0;
		background: #fff;
	}
	.hamburger[aria-expanded="true"] .hamburger__line::before {
		transform: rotate(45deg);
	}
	.hamburger[aria-expanded="true"] .hamburger__line::after {
		transform: rotate(-45deg);
	}

		.navToggle_menu__txtHidden{
			position: absolute;
			white-space: nowrap;
			width: 1px;
			height: 1px;
			overflow: hidden;
			border: 0;
			padding: 0;
			clip: rect(0 0 0 0);
			clip-path: inset(50%);

		}
@media screen and (max-width: 580px) {
	.hamburger__line {
		width: 26px;
	}
		.hamburger__line::before {
			top: -9px;
		}
		.hamburger__line::after {
			top: 9px;
		}
}

/*-- メニュー -------------------------------------------------- */
.navToggle_wrap{
	position: relative;
}
.gnav_wrap{
	opacity: 0;
	pointer-events: none;
	visibility: hidden;

	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;

	width:  100%;
	height: 100vh;
	height: 100dvh;
	background:rgba(189, 222, 219, .95);

	transition: opacity .5s;
}
.is-gnavActive .gnav_wrap{ /* アクティブ */
	opacity: 1;
	pointer-events: initial;
	visibility: visible;

	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
/* ロゴ */
.gnav__logo{
	width: 300px;
	margin: 40px 0 0 5%;
}
@media (hover: hover) and (pointer: fine){
	.gnav__logo a{
		transition: opacity .3s;
	}
	.gnav__logo a:hover{
		opacity: .7;
	}
}

/* ナビゲーション */
.gnav__link_wrap{
	width: 600px;
	max-width: 90%;
	margin: 80px auto 40px;
}
.gnav__link{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.gnav__link > li{
	width: 46%;
	margin-bottom: 24px;
}
.gnav__link > li > a{
	display: block;

	padding: 14px 0;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 700;
	color: #fff;
	background: #009944;
	border-radius: 4em;
}

.gnav__link > li.gnav_item06{
	width: 100%;
}
.gnav__link > li.gnav_item06 > a{
	padding: 24px 0;
	background: #ee0083;
}

@media (hover: hover) and (pointer: fine){
	.gnav__link > li a:hover,
	.gnav__link > li a:focus{
		background: #0091e6;
	}
}

@media screen and (max-width: 580px) {
	/* ロゴ */
	.gnav__logo{
		width: 50%;
		max-width: 300px;

		margin: 32px 0 0 8%;
	}
	/* ナビゲーション */
	.gnav__link_wrap{
		max-width: 85%;
		margin: 60px auto 40px;
	}
	.gnav__link{
	}
	.gnav__link > li{
		width: 47%;
		margin-bottom: 28px;
	}

	.gnav__link > li > a{
		font-size: 1.8rem;
	}
}

/*------------------------------------------------------------------------
ページヘッダー
--------------------------------------------------------------------------*/
.page_header{
	height: 300px;
	margin-bottom: 80px;
	background: url(../img/common/header_bg.webp) center center;
	background-size: cover;
}
.page_logo{
	width: 260px;
	margin: 40px 0 16px 5%;
}
.page_title{
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1;
	color: #007440;
	text-align: center;
}
@media (hover: hover) and (pointer: fine){
	.page_logo a:hover{
		opacity: .8;
	}
}
@media screen and (max-width: 580px) {
	.page_header{
		height: 300px;
		margin-bottom: 60px;
		background: url(../img/common/header_bg_sp.webp) center center;
		background-size: cover;
	}
	.page_logo{
		width: 50%;
		margin: 32px 0 46px 8%;
	}
	.page_title{
		font-size: 3.2rem;
	}
}


/*------------------------------------------------------------------------
ページレイアウト
--------------------------------------------------------------------------*/
.content_box{
	width: 900px;
	max-width: 90%;
	margin: 0 auto;
}
.content_box + .content_box{
	margin-top: 140px;
}

.content_title{
	margin-bottom: 1.5em;
	padding: 14px 0 0 42px;
	font-size: 3.2rem;
	line-height: 1.4;
	color: #007440;
	font-weight: 700;
	background: url(../img/common/content_title_ico.png) left top no-repeat;
	background-size: 40px auto;
}
@media screen and (max-width: 580px) {
	.content_title{
		padding: 12px 0 0 40px;
		font-size: 2.8rem;
		background: url(../img/common/content_title_ico.png) left top no-repeat;
		background-size: 40px auto;
	}
}

.content_title_smp{
	margin-bottom: 1.5em;
	font-size: 2.6rem;
	line-height: 1.4;
	color: #666;
	font-weight: 700;
}
@media screen and (max-width: 580px) {
	.content_title_smp{
		font-size: 2.2rem;
	}
}


/* テキスト -----------*/
.content_box p:not([class]) + p:not([class]){
	margin-top: 1em;
}

/* テーブル -----------*/
.table_std{
	width: 100%;
}
.table_std th,
.table_std td{
	padding: 1em;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.table_std th{
	width: 200px;
}
@media screen and (max-width: 580px) {
	.table_std{
		border-top: 1px solid #ccc;
	}
	.table_std th,
	.table_std td{
		display: block;
		width: 100%;
		padding: 1em .5em;
	}
	.table_std th{
		padding-bottom: 0;
		font-weight: 700;
		color: #666;
		border: none;
	}
	.table_std td{
		padding-top: .5em;
		border-top: none;
		border-bottom: 1px solid #ccc;
	}
}


/* リスト -----------*/
.list_std{
	margin: 1em 0 1em 1.5em;
}
.list_num{
	margin: 1em 0 1em 2em;
}
.list_std > li{
	line-height: 1.8;
	list-style: disc outside;
}
.list_num > li{
	line-height: 2;
	list-style: decimal outside;
}
.list_std > li::marker,
.list_num li::marker{
		color: #E83CBE;
		font-weight: 700;
	}
	.list_std > li + li,
	.list_num > li + li{
		margin-top: 8px;
	}

/* リスト / 注意書き -----------*/
.list_att{
	padding-left: 1.5em;
	margin: 1.5em 0 0 .5em;
	font-size: 1.4rem;
}
.list_att li{
	text-indent: -1.5em;
	line-height: 1.8;
}
.list_att li + li{
	margin-bottom: .5em;
}
.list_att li:before{
	content: "※";
	margin-right: .5em;
	color: #E83CBE;
}

/*------------------------------------------------------------------------
footer
--------------------------------------------------------------------------*/
.footer{
	padding-top: 40px;
	margin-top: 140px;
	background: #bddedb;
}
.footer_logo{
	width: 300px;
	max-width: 80%;
	margin: 0 auto;
}

.footer_add{
	margin: 20px 0;
	font-size: 1.4rem;
	text-align: center;
}
.footer_privacy{
	font-size: 1.2rem;
	text-align: center;
}
.footer_privacy a{
	padding-right: 14px;
	background:  url(../img/common/ico_nw_bk.png) right bottom 2px no-repeat;
	background-size: 10px auto;
}
@media (hover: hover) and (pointer: fine){
	.footer_privacy a:hover{
		color: #0091e6;
	}
}

.foot_copy{
	text-align: center;
	line-height: 60px;
}