/* Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 3.3.0
build: 3167
*/

html{
	background:#FFF;
}
body, div, dl, dt, dd, ul, ol, li,h1, h2, h3, h4, h5, h6,pre, form, input, textarea,p, th, td {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
img {
	border:0;
}
address, em, strong, th {
	font-style:normal;
	font-weight:normal;
}
li {
	list-style:none;
}
th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
input,textarea,select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input,textarea,select {
	*font-size:100%;
}


a {
	color:#96204C;
}

a:hover {
	color:#1972B9;
}

/*==============================================
	reset font
===============================================*/
body {
	font:16px/1.231 arial,helvetica,clean,sans-serif;
	*font-size:small; /* for IE */
	*font:x-small; /* for IE in quirks mode */
	font-family:Arial, Helvetica, Verdana, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
select,input,button,textarea {
	font:99% arial,helvetica,clean,sans-serif;
}
table {
	font-size:inherit;
	font:100%;
}


/*	ClearFix
=======================================*/
.clearfix:after {
	content:"";
	display:block;
	height:0;
	clear:both;
	visibility: hidden;
}
.clearfix {
	display:inline-block;
}
/* Hides from IE-mac \*/
	* html .clearfix {height: 1%;}
	.clearfix {display: block;}
/* End hide from IE-mac */


/*-------------------------------------------------------------------
* ピクセル　％  文字サイズ相対指定は%で行う。
---------------------------------------------------------------------
10px   77  	% 
11px   85  	%
12px   93  	%
13px  100  	%
14px  108  	%
15px  116  	%
16px  123.1	% 
17px  131  	%
18px  138.5	% 
19px  146.5	% 
20px  153.9	% 
21px  161.6	% 
22px  167  	%
23px  174  	%
24px  182  	%
25px  189  	%
26px  197  	%
*/


/*==================================================
  common
==================================================*/

a:hover img{
    filter: alpha(opacity=70);
    -moz-opacity:0.7;
    opacity:0.7;
    -webkit-transition: 0.4s ease-in-out;
       -moz-transition: 0.4s ease-in-out;
         -o-transition: 0.4s ease-in-out;
            transition: 0.4s ease-in-out;
}


#wrapper {
	margin: 0;
	width: 100%;
	position: relative;
}
:where(body) {
	margin: 0;
}

.header :where(img) {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	image-rendering: pixelated;
}

.header :where(button) {
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
	appearance: none;
}

.header {
	--blue: #004b9e;
	--header-height: 10.66vw;
	--duration: 0.3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 3;
	height: var(--header-height);
	padding-right: 4.53vw;
	padding-left: 3.2vw;
	box-sizing: border-box;
	background: white;
}

.header-logo {
	width: 39.2vw;
}

@media (min-width: 768px) {
	.header {
		--header-height: 97px;
		gap: 32px;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
		padding-inline: 30px;
	}

	.header-logo {
		width: 216px;
	}
}

@media (min-width: 1136px) {
	.header {
		gap: 48px;
	}
}

@media (any-hover: hover) {
	.header-logo-link {
		transition: opacity var(--duration);
	}
	.header-logo-link:hover {
		opacity: 0.7;
	}
}

.header-trigger {
	position: relative;
	width: 37.6vw;
	padding-right: 4.27vw;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.header-trigger {
		display: none;
	}
}

.header-trigger::after {
	content: "";
	clip-path: polygon(50% 85%, 0 15%, 100% 15%);
	position: absolute;
	width: 2.67vw;
	height: 2.67vw;
	margin-left: auto;
	background: var(--blue);
	inset: 0;
}

.header-trigger.is-open::after {
	scale: 1 -1;
}

@media (max-width: 767px) {
	.nav {
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: var(--header-height);
		left: 0;
		z-index: 1;
		width: 37.6vw;
		width: 100%;
		padding: 5.87vw;
		box-sizing: border-box;
		background: var(--blue);
		transition: opacity var(--duration), visibility var(--duration);
	}

	.nav.is-open {
		opacity: 1;
		visibility: visible;
	}

	.nav-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 3.2vw;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.nav-list-item-link {
		display: grid;
		place-items: center;
		height: 19.2vw;
		overflow: clip;
		border-radius: 1.07vw;
		background: white;
	}

	.nav-list-item-link img {
		width: auto;
		height: 7.47vw;
	}

	.nav-list-item-link.nav-list-item-link-large img {
		height: 13.6vw;
	}
}

@media (min-width: 768px) {
	.nav-list {
		display: flex;
		gap: 24px;
		justify-content: flex-end;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.nav-list-item-link img {
		width: auto;
		height: 37px;
	}

	.nav-list-item-link.nav-list-item-link-large img {
		height: 61px;
	}
}

@media (any-hover: hover) {
	.nav-list-item-link {
		transition: opacity var(--duration);
	}

	.nav-list-item-link:hover {
		opacity: 0.7;
	}
}

.overlay {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.overlay.is-open {
	visibility: visible;
}

@media (min-width: 768px) {
	.overlay {
		display: none;
	}
}


/*check*/
/*
#wrapper #headermenu .bt01 {
	top: 6px;
	right: 320px;
}

#wrapper #headermenu .bt02 {
	top: 6px;
	right: 160px;
}

#wrapper #headermenu .bt03 {
	top: 6px;
	right: 0px;
}

#wrapper #headermenu .label {
	background:#1974B9;
	width: 160px;
	height: 8px;
	top: 72px;
	right: 319px;
}
*/

#wrapper #footermenu {
	width: 100%;
	height: 30px;
	font-size:85%;
	color:#FFF;
	background:#1974B9;
}

#wrapper #footermenu #fnav {
	width: 980px;
	margin: 8px auto 0;
}

#wrapper #footermenu li {
	float: left;
	margin-top: 8px;
}

#wrapper #footermenu .copy {
	float: right;
}

#wrapper #footermenu li a {
	border-left: solid 1px #FFF;
	padding: 2px 16px;
	color:#FFF;
	text-decoration: none;
}

#wrapper #footermenu .end a {
	border-right: solid 1px #FFF;
}

#wrapper #footermenu li a:hover {
	color:#BDDCEE;
}

#wrapper #contentrmenu {
	width: 100%;
	background: #1974B9;
	height: 70px;
	margin: 0;
}

#wrapper #contentrmenu #cnav {
	position: relative;
	width: 980px;
	height: 70px;
	margin: 0 auto;
}

#wrapper #contentrmenu li {
	float: left;
}

#wrapper #contentrmenu li a {
	display: block;
	padding: 16px 0 12px;
	color:#FFF;
	font-weight: bold;
	text-align: center; 
	text-decoration: none;
	width: 196px;
	height: 42px;
	margin: 0;
}

#wrapper #contentrmenu li a:hover {
	color:#FFF;
	background:#BAE2F1;
	background-position: 10px 50%;
	background-repeat: no-repeat;
    -webkit-transition: 0.4s ease-in-out;
       -moz-transition: 0.4s ease-in-out;
         -o-transition: 0.4s ease-in-out;
            transition: 0.4s ease-in-out;
}



#wrapper #contentrmenu #cnav .on a {
	color:#FFF;
	background:#BAE2F1;
	background-position: 10px 50%;
	background-repeat: no-repeat;
}

#wrapper #contentrmenu .top a {
	font-size:12px;
}

#wrapper #contentrmenu .end a {
	margin-right: 0;
}

#wrapper .pan {
	width: 840px;
	height: 40px;
	line-height: 40px;
	margin: 0 auto;
	font-size:12px;
}

#wrapper .pan a {
	color:#96204C;
}

#wrapper .pan a:hover {
	color:#1972B9;
}


#wrapper #contents {
	width: 950px;
	line-height: 160%;
	margin: 20px auto 40px;
}

#wrapper #contents h1 {
	width: 660px;
	height: 58px;
	line-height: 58px;
	color:#1972B9;
	font-size:180%;
	font-weight:bold;
	padding-left: 100px;
	margin: 30px auto 20px;
	border-bottom: solid 1px #BBBBBB;
	background-image: url(../shared/link_icon.png);
	background-position: 10px 50%;
	background-repeat: no-repeat;
}

#wrapper #contents .main {
	width: 740px;
	margin: 20px auto 10px;
}

#wrapper #contents .main .bimg {
	float:right;
	width: 240px;
	margin: 0;
}

#wrapper #contents .main .bimg img {
	width: 240px;
	border-radius: 12px;
	 -webkit-border-radius: 12px;
	 -moz-border-radius: 12px;
}

#wrapper #contents .main h2 {
	float:left;
	width: 460px;
	font-size:130%;
	color:#E296B3;
	font-weight:bold;
	margin: 0 auto 14px;
}

#wrapper #contents .main .btxt {
	float:left;
	width: 460px;
	font-size:108%;
	margin: 0 auto 60px;
	padding-bottom: 40px;
}


#wrapper #contents p {
	width: 760px;
	margin: 0 auto 40px;
}



#wrapper #contents #back-link {
	width: 100%;
}

#wrapper #contents #back-link a {
	display: block;
	width: 260px;
	height: 38px;
	line-height: 38px;
	text-align: center; 
	font-weight:bold;
	margin: 40px auto 60px;
	color:#1974B9;
	text-decoration: none;
	background:#BAE2F1;
	background-position: 24px 50%;
	background-repeat: no-repeat;
	border-radius: 16px;
	 -webkit-border-radius: 16px;
	 -moz-border-radius: 16px;
}

#wrapper #contents #back-link a:hover {
	color:#FFF;
	background:#1974B9;
	background-position: 24px 50%;
	background-repeat: no-repeat;
    -webkit-transition: 0.4s ease-in-out;
       -moz-transition: 0.4s ease-in-out;
         -o-transition: 0.4s ease-in-out;
            transition: 0.4s ease-in-out;
}

#wrapper #contents .small {
	font-size:11px;
}

.pc {
	display:inline;
}

.sp {
	display:none;
}

/*==================================================
  responsive
==================================================*/

@media only screen and (max-width:768px) {

.pc {
	display:none;
}

.sp {
	display:inline;
}

#wrapper #headermenu {
	height: 140px;
	overflow: hidden;/*check*/
}

#wrapper #headermenu #hnav {
	/*check*/
	flex-direction: column;
	min-width: initial;
	height: 40px;
}

#wrapper #headermenu .logo {
	/*check*/
	padding: 8px 0 4px 0;
  width: 100%;
  border-bottom: 2px solid #10589E;
  text-align: center;

}

#wrapper #headermenu .logo img {
	width: 120px;
}

#wrapper #headermenu .bt01 img{
	width: 56px;/*check*/
}

#wrapper #headermenu .bt02 img,
#wrapper #headermenu .bt03 img,
#wrapper #headermenu .bt04 img {
	width: 80px;/*check*/
}

#wrapper #headermenu .bt01 {
	/*check*/
	display: flex;
  justify-content: center;
  padding: 4px 0;
  width: 100%;
  height: auto;
  border-left: none;
  border-bottom: 1px solid #ccc;
}
#wrapper #headermenu .bt02,
#wrapper #headermenu .bt03,
#wrapper #headermenu .bt04 {
	display: inline-block;
  margin: 8px 0 0 0;
  padding: 0 4px 0 8px;
  height: 44px;
}

#wrapper #headermenu ul {
  display: inline-block;
  width: 100%;
  height: auto;
  text-align: center;
}

#wrapper #headermenu ul li {
  height: auto;
}

#wrapper #headermenu li.is-current-page::after {
  display: none;
}

#wrapper #headermenu li a {
  display: flex;
  width: auto;
  height: 100%;
}

#wrapper #footermenu {
	width: 100%;
	height: 60px;
	font-size:85%;
	color:#FFF;
	background:#1974B9;
}

#wrapper #footermenu #fnav {
	width: 320px;
	margin: 8px auto 0;
}

#wrapper #footermenu li {
	float: left;
	font-size:11px;
	margin-top: 8px;
}

#wrapper #footermenu .copy {
	float: right;
	width: 320px;
	font-size:6px;
	text-align: center;
}

#wrapper #footermenu li a {
	border-left: solid 1px #FFF;
	padding: 2px 16px;
	color:#FFF;
	text-decoration: none;
}

#wrapper #footermenu .end a {
	border-right: solid 1px #FFF;
}

#wrapper #footermenu li a:hover {
	color:#BDDCEE;
}

#wrapper #contentrmenu {
	width: 100%;
	background: #1974B9;
	height: 150px;
	margin: 0;
}

#wrapper #contentrmenu #cnav {
	position: relative;
	width: 100%;
	height: 150px;
	margin: 0 auto;
}

#wrapper #contentrmenu li {
	width: 100%;
}

#wrapper #contentrmenu li a {
	display: block;
	padding: 6px 0;
	font-size:14px;
	color:#FFF;
	font-weight: bold;
	text-align: center; 
	text-decoration: none;
	width: 100%;
	height: 17px;
	margin: 0;
	border-bottom: solid 1px #FFF;
	background-image: url(../shared/sp_bon.png);
	background-position: 0 50%;
	background-repeat: no-repeat;

}

#wrapper #contentrmenu .top img {
	display:none;
}

#wrapper #contentrmenu .end a {
	border-bottom: solid 0px #FFF;
}

#wrapper #contentrmenu li a:hover {
	width: 100%;
	height: 17px;
	border-bottom: solid 1px #FFF;
	background-image: url(../shared/sp_bon.png);
	background-position: 0 50%;
	background-repeat: no-repeat;

}

#wrapper #contentrmenu #cnav .on a {
	width: 100%;
	height: 17px;
	border-bottom: solid 1px #FFF;
	background-image: url(../shared/sp_bon.png);
	background-position: 0 50%;
	background-repeat: no-repeat;

}

#wrapper #contents .main h2 {
	float:left;
	width: 300px;
	font-size:130%;
	color:#E296B3;
	font-weight:bold;
	margin: 0 auto 14px;
}

#wrapper .pcbr {
	display:none;
}

#wrapper .pan {
	display:none;
}

#wrapper #contents {
	width: 320px;
	line-height: 160%;
	margin: 20px auto;
}

#wrapper #contents h1 {
	width: 300px;
	height: 40px;
	line-height: 40px;
	color:#1972B9;
	font-size:120%;
	font-weight:bold;
	padding-left: 0;
	margin: 10px auto 10px;
	border-bottom: solid 1px #BBBBBB;
	background-image: url(none);
	background-position: 10px 50%;
	background-repeat: no-repeat;
}

#wrapper #contents .main {
  width: 300px;
  margin: 20px auto 10px;
}

#wrapper #primary h2 {
	float:none;
	width: 300px;
	font-size:110%;
	color:#E296B3;
	font-weight:bold;
	margin: 20px auto 10px;
}

#wrapper #contents .main .bimg {
	float:none;
	width: 280px;
	margin: 0px auto 20px;
}


#wrapper #contents .main .bimg img {
	width: 280px;
}


#wrapper #contents .main .btxt {
	float:none;
	width: 300px;
	font-size:100%;
	margin: 0 auto 10px;
	padding-bottom: 40px;
}


#wrapper #contents p {
	width: 300px;
	margin: 0 auto 40px;
}



#wrapper #contents #back-link {
	width: 100%;
}

#wrapper #contents #back-link a {
	display: block;
	width: 260px;
	height: 38px;
	line-height: 38px;
	text-align: center; 
	font-weight:bold;
	margin: 40px auto 60px;
	color:#1974B9;
	text-decoration: none;
	background:#BAE2F1;
	background-position: 24px 50%;
	background-repeat: no-repeat;
	border-radius: 16px;
	 -webkit-border-radius: 16px;
	 -moz-border-radius: 16px;
}

#wrapper #contents #back-link a:hover {
	color:#FFF;
	background:#1974B9;
	background-position: 24px 50%;
	background-repeat: no-repeat;
    -webkit-transition: 0.4s ease-in-out;
       -moz-transition: 0.4s ease-in-out;
         -o-transition: 0.4s ease-in-out;
            transition: 0.4s ease-in-out;
}


}
