@charset "utf-8";
/*
共通スタイル
----------------------------------------------------------- */
html,body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 14px;
	color: #444;
	width: 100%;
}

p, li, dl, dt, dd {
	line-height:1.5;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

input, button, textarea, select {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

label, input, a {
	cursor: pointer;
}

/*----------------------------------------------------------- */


/*
ヘッダー
----------------------------------------------------------- */
/* -----ロゴ----- */

header {
	background-color: #FFFDFE;
	margin: 0 auto;
	z-index: 300;
	position: fixed;
	width: 100%;
}

#header {
	width: 1000px;
	height: 120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 18px 16px;
	justify-content: space-between
}

#logo_wrap {
	display: flex;
	color: #444;
}

#header_logo img {
	height: 76px;
	margin-right: 16px;
	vertical-align: text-bottom;
}

.name_japanese {
	font-size: 24px;
}

.name_japanese span {
	display: block;
	font-size: 16px;
}

.name_english {
	color: #707070;
}

.name_english span {
	font-weight: bold;
	color: #444;
}

/* -----文字サイズ----- */
#fontsize_wrap * {
	display: inline-block;
}

#fontsize_wrap p {
	margin-right: 8px;
}

#fontsize_wrap ul li {
	padding: 3px 8px;
	background-color: #fff;
	border: 1px solid #C9C9C9;
	cursor: pointer;
}

#fontsize_wrap  .selected {
	background-color: #FF6F86;
	border: 1px solid #FF6F86;
	color: #fff;
}


/*
ヘッダーナビ
----------------------------------------------------------- */
#nav_check {
	display: none;
}

#header_nav {
	background-color: #FF6F86;
}

#header_nav > ul {
	width: 1000px;
	height: 56px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.nav_item {
	display: inline-block;
	width: 250px;
	position: relative;
	text-align: center;
}

.nav_item::after {
    content: "";
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 0;
	transform: translateY(-50%);
    height: 32px;
}
 
.nav_item:nth-of-type(2)::before {
    content: "";
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
    height: 32px;
}

.nav_item > a {
	display: block;
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: calc(29px / 2);
}

.nav_item > a:hover {
	background-color: #FF899C;
}

#header_nav #home {
	display: none;
}

/* -----サブメニュー----- */
.nav_item:has(ul) {
	position: relative;
}

.nav_item ul {
    position: absolute;
    bottom: -85px;
    left: 0;
	background-color: rgba(255,111,134,0.8);
	width: 1000px;
	padding: 32px 0 32px 48px;
	border-radius: 0 0 16px 16px;
	display: none;
}

.nav_item:has(ul):hover ul {
	display: flex;
}

.nav_item ul li {
    display: block;
	margin-right: 56px;
}

.nav_item ul li a {
    color: #fff;
}

.nav_item ul li a:hover {
	color: rgba(255,255,255,0.7);
}

.nav_item ul li a::before {
	content: "";
	display: inline-block;
    border: 6px solid transparent;
    border-left: 6px solid #fff;
	vertical-align: -0.1em; 
	margin-right: 8px;
}

#about_check, #about_label {
	display: none;
}
/*
フッター
----------------------------------------------------------- */
footer {
	background-color: #FFF7FA;
}

#footer_name {
	max-width: 1000px;
	height: 156px;
	padding: 40px 16px;
	margin: 0 auto;
}

#copyright {
	background-color: #FF6F86;
	color: #fff;
	height: 46px;
	text-align: center;
	padding: 14px 0;
}

/*
メイン
----------------------------------------------------------- */
main {
	background-color: #FFFDFE;
	padding-top: 176px;
}

#flex_wrap {
	display: flex;
	justify-content: center;
	min-height: calc(100vh - 498px);
}

main h2:not(#tagline) {
	height: 120px;
	display: block;
	background: url(../img/headline_bg.png) no-repeat center;
	text-align: center;
	font-size: 24px;
	color: #FF6F86;
	padding: 48px 0;
}

#main {
	padding: 48px 32px;
	width: 750px;
	text-align: center;
}

#main h3 {
	display: inline-block;
	position: relative;
	margin-bottom: 48px;
	font-size: 24px;
}

#main h3::after {
	content: "";
	width: 80%;
	height: 2px;
	background-color: #FF6F86;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%)
}

.main_cont {
	margin: 0 16px;
	text-align: left;
}

.main_cont h4 {
	font-size: 18px;
	margin-bottom: 16px;
	color: #FF6F86;
}

.main_cont h4::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 16px;
	background-color: #FF6F86;
	vertical-align: -0.1em; 
	margin-right: 8px;
}

.section {
	margin-bottom: 32px;
}

.section:last-child {
	margin-bottom: 0;
}

main dl span {
	font-size: 14px;
}

.important {
	background-color: #f04e4e;
}

.news {
	background-color: #FBA964;
}

.event {
	background-color: #6FB76A;
}

.press {
	background-color: #4992D1;
}

.news_span {
	display: inline-block;
	color: #fff;
	width: 114px;
	text-align: center;
	padding: 2px 0;
	margin-left: 16px;
	font-size: 14px;
}

.table_section dl {
	display: flex;
	flex-wrap: nowrap;
	text-align: left;
}

.table_section dl + dl {
	border-top: 1px solid #d6d6d6;
}


.table_section dt {
	background-color: #92736a;
	color: #fff;
	padding: 16px;
}

.table_section dd {
	display: block;
	padding: 16px;
	background-color: #fff;
	flex-grow: 1;
}

.news_section dl {
	margin-bottom: 16px;
}

.news_section dl:last-of-type {
	margin-bottom: 0;
}

.news_section dt {
	margin-bottom: 12px;
	padding: 0 8px;
	background-color: transparent;
	color: #444;
	display: block;
}

.news_section dd {
	padding: 0 8px 16px 8px;
	border-bottom: 1px solid #d6d6d6;
	line-height: 28px;
}

.news_section dd:last-of-type {
	margin-bottom: 0;
}

.news_section dd a {
	color: #444;
	display: block;
}

.news_section dd p {
	line-height: 28px;
}

.news_section dd a:hover,.side li:hover {
	color: #FF6F86;
}

/*
サイドメニュー
----------------------------------------------------------- */
#side_wrap {
	margin: 48px 0;
	height: 100%;
}

#side_wrap h3 {
	font-size: 18px;
	color: #FF6F86;
	margin-bottom: 16px;
}

.side {
	width: 250px;
	background-color: #fff;
	border: 1px solid #d6d6d6;
	padding: 24px 16px 12px 16px;
}

.side h4 {
	font-size: 18px;
	margin-bottom: 16px;
}

.side h4, .side ul {
	width: 218px;
}

.side a {
	display: block;
	color: #444;
	padding: 12px;
}

.side a:hover {
	color: #FF6F86;
}

.side a::before {
	content: "";
	display: inline-block;
    border: 6px solid transparent;
    border-left: 6px solid #FF6F86; 
	vertical-align: -0.1em; 
	margin-right: 4px;
}

.current {
	color: #FF6F86 !important;
	background-color: #FFF7FA;
}

/*
スマホサイズ
----------------------------------------------------------- */
@media screen and (max-width: 960px) {
	body {
		width: 100%;
	}

	/* -----ヘッダー----- */
	header {
		background-color: #FFF7FA;
		box-shadow: 0 1px 10px #c196965e;
	}

	#header {
		width: 100%;
		height: 100px;
		padding: 0;
	}

	#logo_wrap {
		padding: 0 16px;
	}

	#header_logo img {
		height: 63px;
	}

	.name_japanese {
		font-size: 20px;
	}

	.name_japanese span {
		font-size: 14px;
	}

	.name_english {
		font-size: 12px;
	}

	#fontsize_wrap {
		display: none;
	}

	/* -----ヘッダーナビ----- */
	/* ハンバーガーメニュー */
	#navigation {
		width: 72px;
		height: 100px;
		position: fixed;
		top: 0;
		right: 0;
	}
	
	#nav_label {
		width: 100%;
		height: 100%;
		position: relative;
	}
	
	#nav_label span {
		position: absolute;
		width: 36px;
		height: 4px;
		background-color: #FF6F86;
		z-index: 100;
		right: 16px;
	}

	#nav_label, #nav_label span {
		display: inline-block;
		transition: all 0.4s;
		
	}

	#nav_label span:first-of-type{
		top: calc(38% - 2px);
	}

	#nav_label span:nth-of-type(2){
		top: calc(50% - 2px);
	}

	#nav_label span:last-of-type{
		bottom: calc(38% - 2px);
	}

	#nav_check:checked ~ #nav_label span:first-of-type {
		transform: translateY(12px) rotate(45deg);
		background-color: #fff;
	}

	#nav_check:checked ~ #nav_label span:nth-of-type(2) {
		opacity: 0;
	}

	#nav_check:checked ~ #nav_label span:last-of-type {
		transform: translateY(-12px) rotate(-45deg);
		background-color: #fff;
	}

	#header_nav {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 80;
		background-color: rgba(255,111,134,0.9);
		transition: all 0.5s;
	}

	#nav_check:checked ~ #header_nav {
    	left: 0;
	}

	/* メニュー */
	#header_nav > ul {
		padding: 100px 0;
		display: block;
		width: 100%;
		height: auto;
		text-align: center;
	}

	.nav_item {
		width: 80%;
	}

	.nav_item::after {
		display: none;
	}

	.nav_item:nth-of-type(2)::before {
		display: none;
	}

	.nav_item > a {
		color:#fff;
		padding: 24px;
		position: relative;
		border-bottom: 1px solid #fff;
		text-align: left;
		font-size: 16px;
	}

	#header_nav #home {
		display: inline-block;
	}

	/* アコーディオンメニュー */

	#header_nav ul #about:hover ul {
		display: block;
	}

	.nav_item ul {
		width: auto;
		background-color: transparent;
		border-radius: 0;
		padding: 0;
		height: 0;
		overflow: hidden;
		opacity: 0;
		display: none;
		transition: all 0.5s;
	}

	#about_check:checked + #about_label + ul  {
		display: block;
		height: auto;
		opacity: 1;
		position: static;
	}

	.nav_item ul li {
		margin-right: 0;
	}

	.nav_item ul li a {
		display: block;
		padding: 16px 0;
	}

	.nav_item ul li a::before {
		display: none;
	}

	#about_label {
		display: block;
		width: 100%;
		height: 73px;
		position: absolute;
		top: 0;
		left: 0;
	}

	#about_label::before {
		content:"";
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		position: absolute;
		top: 50%;
		right: 24px;
		transform: rotate(135deg);
		transition: 0.3s;
	}

	#about_check:checked + #about_label::before {
		transform: rotate(-45deg) !important;
	}


	/* -----フッター----- */
	#footer_name {
		width: 100%;
		height: 120px;
		padding: 27px 16px;
	}

	#copyright {
		font-size: 12px;
		padding: 12px 8px;
		height: auto;
	}

	/* メイン */
	#flex_wrap {
		flex-direction: column;
		padding: 48px 16px;
		min-height: calc(100vh - 382px);
	}

	main {
		padding-top: 100px;
	}

	#main {
		width: 100%;
		padding: 0;
	}

	#main h4 {
		width: 100%;
	}

	/* サイドメニュー */
	#side_wrap h3 {
		padding: 0 16px;
	}

	.side {
		margin-top: 0;
		margin: 0 16px;
		width: auto;
		display: block;
	}

	.side h4 {
		width: 100%;
	}

	.side ul {
		width: 100%;
	}
	
}

@media screen and (max-width: 520px) {
	
	#header {
		height: 64px;
	}

	#logo_wrap {
		padding: 0 16px;
	}

	#header_logo img {
		height: clamp(35px,8vw,38px);
		margin-right: 8px;
	}

	.name_japanese span {
		font-size: 12px;
	}

	.name_japanese {
		font-size: clamp(14px,3.5vw,18px);
	}

	#header_name .name_english{
		display: none;
	}

	#navigation {
		top: 0;
		width: 64px;
		height: 64px;
	}

	#footer_name {
		padding: 33px 16px;
	}
	
	#copyright {
		font-size: 10px;
		height: 40px;
	}
	
	main {
		padding-top: 64px;
	}

	.main_cont {
		margin: 0;
	}

	#nav_label span {
		width: 32px;
	}
	
	#nav_check:checked ~ #nav_label span:first-of-type {
		transform: translateY(8px) rotate(45deg);
	}

	#nav_check:checked ~ #nav_label span:last-of-type {
		transform: translateY(-8px) rotate(-45deg);
	}

	#header_nav > ul {
		padding: 64px 0;
	}

	#flex_wrap {
		min-height: calc(100vh - 344px);
	}

	
	.table_section dl {
		flex-direction: column;
		padding: 16px 8px;
		align-items: normal;
		border-bottom: 1px solid #d6d6d6;
	}

	.table_section dl + dl {
		border-top: none;
	}

	.table_section dt {
		background-color: transparent;
		color: #92736a;
		text-align: left;
		padding: 0;
		font-weight: bold;
		margin-bottom: 16px;
	}
	
	.table_section dd {
		padding: 0;
		background-color: transparent;
	}

}