@charset "UTF-8";
/* CSS Document */



/****************************************************************************************************
初期設定
****************************************************************************************************/

/* 古いブラウザへの対応 */
article, aside, figure, figcaption, footer, header, nav, section {
	display: block;
}
/* 古いブラウザへの対応 */

.pcOnly {
	display: block;
}
img.pcOnly,
span.pcOnly,
i.pcOnly {
	display: inline;
}
.spOnly {
	display: none;
}

html,body{
	text-align: center;
	/*font-family:  "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", "Helvetica Neue", "Helvetica","Arial", sans-serif;*/
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	scroll-padding-top: 220px;
	min-width: 1240px;
	background:#FFF;
	font-size: 15px;
	line-height: 2.2;
}

* {
	box-sizing: border-box;
}
img {
	vertical-align: top;
}
a {
	word-break: break-all;
	color: #000;
	text-decoration: none;
	-webkit-transition: opacity 300ms;
	-moz-transition: opacity 300ms;
	transition: opacity 300ms;
}
a:hover {
	opacity: .5;
}
.alc {
	text-align:center;
}
.alr {
	text-align:right;
}
.col1 {
	color: #00006A;
}
.col2 {
	color: #D80072;
}
.col3 {
	color: #00A3D8;
}

/* clear fix */
.clearfix:before,
.clearfix:after {
	content:" ";
	display:table;
}
.clearfix:after {
	clear:both;
}
.clearfix {
	*zoom:1;
}
/* clear fix */



/****************************************************************************************************
header
****************************************************************************************************/
#header {
	position: fixed;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	min-width: 1240px;
	z-index: 1200;
	/* 2025/12/25追加 */
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;	
}
#name {
	width: 100px;
	height: 100px;
	background: #00006A;
}
#name a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
#logo {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	/* 2025/12/26削除 */	
	/* flex-grow: 1; */
	/*padding-top: 20px;*/
}
/* 2025/12/26追加 */
.logo-name{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
		align-items: center;
	gap:40px;	
}

#menu {
	position: relative;
	width: 100px;
	height: 100px;
	background: #00006A;
	z-index: 10;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
}
#menu a {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width:100%;
	height:100%;
}
#menu span,
#menu a::before,
#menu a::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 36px;
	height: 2px;
	margin: auto;
	background: #FFF;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	transition: 200ms;
}
#menu span {
	background: #D80072;
}
#menu a::before {
	-webkit-transform: translate(0, -13px);
	transform: translate(0, -13px);
	content: "";
}
#menu a::after {
	-webkit-transform: translate(0, 13px);
	transform: translate(0, 13px);
	content: "";
}
#menu.active {
	background: none;
}
#menu.active span {
  opacity: 0;
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
}
#menu.active a::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu.active a::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}




/****************************************************************************************************
sNav
****************************************************************************************************/
#sNav {
	position: fixed;
	width: auto;
	max-height: 100vh;
	overflow: scroll;
	right: -100%;
	top: 0;
	padding: 100px 50px 40px 40px;
	background: #00006A;
	color: #FFF;
	font-size: 0.866rem;
	line-height: 2.0;
	text-align: left;
	z-index:1;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	transition: 300ms;
}
#sNav.active {
	right: 0;
	top: 0;
}
#sNav > ul > li {
	border-top: 1px solid rgba(255,255,255,.5);
	padding: 1rem 1rem 1rem 0;
}
#sNav ul li.select > a,
#sNav ul li.current_page_item > a,
#sNav ul li.current-menu-item > a {
	font-weight: bold;
}
#sNav ul li.current-menu-item.menu-item-object-custom > a {
	font-weight: normal;
}
#sNav ul li.focus > a {
	color: #D90074;
	font-weight: bold;
}
#sNav > ul > li > a {
	font-size: 1rem;
	font-weight: normal;
}
#sNav > ul > li > ul li a::before {
	content: "・";
}
#sNav > ul > li > ul > li ul {
	padding-left: 1em;
}
#sNav ul li a {
	display: block;
	color: #FFF;
}
#sNav ul li.blank a::after {
	display: inline-block;
	content: "";
	width: 12px;
	height: 11px;
	margin-left: 0.4em;
	background: URL(../img/common/icon-blank-w.png);
	opacity:0.7;
}
#sNav ul li span {
	opacity: .3;
}



/****************************************************************************************************
gNav
****************************************************************************************************/
#gNav {
	position: fixed;
	left: 0;
	right: 0;
	top: 100px;
	width: 100%;
	min-width: 1240px;
	padding: 1.5rem;
	background: #EEEEEE;
	line-height: 1.0;
	z-index: 1100;
}
#gNav > ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
#gNav > ul + ul {
	margin-top: 0.5em;
}
#gNav > ul > li > a::before {
	content: "　\00A0";
}
#gNav > ul > li > a::after {
	content: "\00A0　";
}
#gNav > ul > li:nth-of-type(1)::before,
#gNav > ul > li + li::before,
#gNav > ul > li:nth-last-of-type(1)::after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 1em;
	background: rgba(0,0,0,.5);
}
#gNav > ul > li:nth-last-of-type(1)::after {
	top: 0;
	right: 0;
}
#gNav ul li a {
	color: #00006A;
}
#gNav ul li.select > a,
#gNav ul li.current_page_item > a,
#gNav ul li.current-page-ancestor > a {
	color: #000000;
}
#gNav ul li.select.focus > a,
#gNav ul li.current_page_item.focus > a,
#gNav ul li.current-page-ancestor.focus > a {
	font-weight: bold;
}
#gNav ul li.focus > a {
	color: #D80072;
}

#gNav > ul > li {
	position: relative;
}
#gNav > ul > li > ul {
	display: none;
	position: absolute;
	left: 0;
	padding: 0.75rem 1.2rem 1rem 1.2rem;
	background: #EEEEEE;
	text-align: left;
	white-space: nowrap;
	line-height: 1.7;
}
#gNav > ul > li > ul ul {
	padding-left: 1rem;
}
#gNav > ul > li:hover > ul {
	display: block;
}
#gNav > ul > li > ul li a::before {
	content: "・";
}



/****************************************************************************************************
various-inquiries
****************************************************************************************************/
#various-inquiries {
	margin-top: 100px;
	line-height: 2.0;
}
.contact-btn {
	width: 340px;
	height: 80px;
	margin: auto;
	font-size: 1.6rem;
}
.contact-btn a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #00006A;
	color: #FFF !important;
	text-decoration: none !important;
}
.contact-btn a span {
	position: relative;
	padding-right: 1.6rem;
}
.contact-btn a span::before,
.contact-btn a span::after {
	position:absolute;
	right: 0;
	top: 0;
	bottom: 0;
	content:"";
	display:inline-block;
	width: 1.066rem;
	height: 1.066rem;
	margin:auto;
	border: 2px solid;
	border-color: transparent transparent #D80072 #D80072;
	-webkit-transform: rotate(-135deg) translate(0, 0);
	transform: rotate(-135deg) translate(0, 0);
}
.contact-btn a span::before {
	right: 0.5rem;
}

.contact-btn.ayabus a {
	background: #E70087;
	letter-spacing: -1px;
}
.contact-btn.ayabus a span::before,
.contact-btn.ayabus a span::after {
	border-color: transparent transparent #000082 #000082;
}

.contact-tel-fax {
	margin-top: 1.5rem;
}
.contact-tel-fax dd ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.2rem;
}
.contact-tel-fax dd ul li + li {
	margin-left: 1em;
}



/****************************************************************************************************
pagetop
****************************************************************************************************/
#pagetop {
	padding: 4rem 0 2rem 0;
	font-size: 0.666rem;
	line-height: 1.0;
	letter-spacing: 0.3em;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
	margin: auto;
}
#pagetop a {
	position: relative;
	display: block;
	padding-top: 1.5rem;
}
#pagetop a::before {
	position:absolute;
	left:0;
	right:0;
	top: 0;
	content:"";
	display:inline-block;
	width: 1rem;
	height: 1rem;
	margin:auto;
	border: 1px solid;
	border-color: transparent transparent #000 #000;
	-webkit-transform: rotate(135deg) translate(0, 0);
	transform: rotate(135deg) translate(0, 0);
}



/****************************************************************************************************
fNav
****************************************************************************************************/
#fNav {
	padding: 2.5rem 0;
	line-height: 1.0;
}
#fNav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 0.866rem;
}
#fNav ul + ul {
	margin-top: 1.8em;
}
#fNav > ul > li > a::before {
	content: "　\00A0";
}
#fNav > ul > li > a::after {
	content: "\00A0　";
}
#fNav > ul > li:nth-of-type(1)::before,
#fNav > ul > li + li::before,
#fNav > ul > li:nth-last-of-type(1)::after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 1em;
	background: rgba(0,0,0,.5);
	top: 0;
}
#fNav > ul > li:nth-last-of-type(1)::after {
	top: 0;
	right: 0;
}
#fNav ul li a {
	color: #00006A;
}
#fNav ul li.select a,
#fNav ul li.current_page_item a,
#fNav ul li.current-page-ancestor a {
	color: #000000;
}
#fNav ul li.select.focus a,
#fNav ul li.current_page_item.focus a,
#fNav ul li.current-page-ancestor.focus a {
	font-weight: bold;
}
#fNav ul li.focus a {
	color: #D80072;
}

#fNav ul li {
	position: relative;
}



/****************************************************************************************************
footer
****************************************************************************************************/
#footer {
	padding: 2.4rem 2rem;
	background: #00006A;
	color: #FFF;
	line-height: 1.8;
}
#footer a {
	color: #FFF;
}
#address {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 0.5em;
}
#address li + li {
	margin-left: 1em;
}
#copyright {
	margin-top: 1.5em;
	font-size: 0.666rem;
}





@media screen and (max-width: 767px),
screen and (max-width: 960px) and (orientation: landscape) {
	
	
	
	/****************************************************************************************************
	初期設定
	****************************************************************************************************/
	html,
	body {
		min-width: initial;
		min-width: auto;
		scroll-padding-top: 0;
		min-width: initial;
		min-width: auto;
		font-size: 3.466vw;
		line-height: 2.0;
	}
	img {
		width: 100%;
		height: auto;
	}
	a {
		-webkit-transition: none;
		transition: none;
	}
	a:hover {
		opacity:1;
	}
	.pcOnly,
	img.pcOnly,
	span.pcOnly,
	i.pcOnly {
		display:none;
	}
	.spOnly {
		display:block;
	}
	span.spOnly {
		display:inline;
	}
	
	
	
	/****************************************************************************************************
	header
	****************************************************************************************************/
	#header {
		min-width: initial;
		min-width: auto;
	}
	#name {
		width: 12vw;
		height: 12vw;
	}
	/* 2025/12/26削除 */
	/* #name a {
		padding: 2.5vw;
	} */
	
	#logo  {
		font-size: 0.4rem;
	}
	#logo img {
		width: 40vw;
		margin: auto;
	}
	/* 2025/12/26変更 */
	.logo-name{
		gap:15px;	
	}
	
	#menu {
		width: 12vw;
		height: 12vw;
	}
	#menu span,
	#menu a::before,
	#menu a::after {
		width: 7vw;
		height: 2px;
	}
	#menu a::before {
		-webkit-transform: translate(0, -2.3vw);
		transform: translate(0, -2.3vw);
		content: "";
	}
	#menu a::after {
		-webkit-transform: translate(0, 2.3vw);
		transform: translate(0, 2.3vw);
		content: "";
	}
	
	
	
	
	/****************************************************************************************************
	sNav
	****************************************************************************************************/
	#sNav {
		width: 100%;
		padding: 15vw 10vw 10vw 10vw;
	}
	#sNav ul li a.blank::after {
		width: 0.9rem;
		height: 0.9rem;
		background-repeat: no-repeat;
		background-size: contain;
		vertical-align: -0.1rem;
	}
	
	
	
	/****************************************************************************************************
	gNav
	****************************************************************************************************/
	#gNav {
		display: none;
		top: 12vw;
		min-width: initial;
		min-width: auto;
	}
	
	
	
	/****************************************************************************************************
	various-inquiries
	****************************************************************************************************/
	#various-inquiries {
		margin-top: 10vw;
	}
	.contact-btn {
		width: 70vw;
		height: 18vw;
		font-size: 1.4rem;
	}
	.contact-tel-fax dd ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.contact-tel-fax dd ul li + li {
		margin: 0;
	}
	
	
	
	/****************************************************************************************************
	pagetop
	****************************************************************************************************/
	#pagetop {
		padding: 2rem 0 2.6rem 0;
	}
	
	
	
	/****************************************************************************************************
	fNav
	****************************************************************************************************/
	#fNav {
		display: none;
	}
	
	
	
	/****************************************************************************************************
	footer
	****************************************************************************************************/
	#fLogo {
		width: 50vw;
		margin: auto;
	}
	#address {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#address li + li {
		margin: 0;
	}
	#copyright {
		margin-top: 1.5em;
		font-size: 0.6rem;
	}
}
@media screen and (max-width: 960px) and (orientation: landscape) {
	
	
	
	/****************************************************************************************************
	header
	****************************************************************************************************/
	#name {
		width: 6vw;
		height: 6vw;
	}
	#name a {
		padding: 1.2vw;
	}
	
	#logo img {
		width: 20vw;
	}
	
	#menu {
		width: 6vw;
		height: 6vw;
	}
	#menu span,
	#menu a::before,
	#menu a::after {
		width: 4vw;
		height: 2px;
	}
	#menu a::before {
		-webkit-transform: translate(0, -1.3vw);
		transform: translate(0, -1.3vw);
		content: "";
	}
	#menu a::after {
		-webkit-transform: translate(0, 1.3vw);
		transform: translate(0, 1.3vw);
		content: "";
	}
}