@charset "utf-8";

/* 管理者メニューの位置変更 */
html {
	margin-top: 0 !important;
}

#wpadminbar {
	top: auto;
	bottom: 0;
}

#wpadminbar .menupop .ab-sub-wrapper,
#wpadminbar .shortlink-input {
	bottom: 32px;
}

/* Default Style */
body {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	font-size: 1.6rem; /*全体のフォントサイズは16pxとする*/
	background-color: #ffffff;
	line-height: 1;
	color:#000000;
	font-feature-settings: "palt";
	letter-spacing: 1px;
}

/* 游ゴシック対策 */
b, strong, .bold, h1, h2, h3, h4, h5 {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

/* Default Link Style */
a {
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	opacity: .8;
}

/* common */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#wrapper {
	width: 100%;	/*全ての要素を包括する<div id"wrapper">の幅を画面幅に設定する*/
	padding-top: 60px;	/*headerの高さと同一*/
	overflow-x: hidden;	/* full-boxに伴う対応 */
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 60px;
	padding: 0;
	background-color: rgba(255,255,255,1.0);
	box-shadow: 0 6px 6px 0px rgba(0, 0, 0, 0.1);
	transition: all;
	transition-duration: .5s;
	transition-delay: 0s;
	transform: none;
	transform-origin: center top;
	z-index: 100;
}

header.close {
	opacity: 0;
	transform: perspective(300px) rotateX(-90deg);
}

#header-inner {
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1240px;
	height: 60px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ヘッダータイトル */
.head-title {
	width: 145px;
}

.head-logo {
}

.head-logo picture {
	display: block;
	line-height: 0;
}

.head-catch {
}

/* ヘッダーモジュール */
.head-module {
	display: flex;
	flex-flow: row nowrap;
	justify-content: end;
	align-items: center;
}

/* ヘッダーナビ */
#header-navigation {
	margin-left: auto;
}

#header-nav {
}

#header-nav-menu {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

#header-nav-menu > li {
	position: relative;
	/*width: 100%; *//* 均等幅の場合 */
}

#header-nav-menu > li > a {
	display: block;
	width: 100%;
	padding: 1em 1em;
	text-align: center;
	font-size: 1.4rem;
	color: #000000;
}

@media (max-width: 840px) {
	#header-nav-menu > li > a {
		padding: 1em 0.5em;
	}
}

#header-nav-menu > li > ul {
	position: absolute;
	min-width: 100%;
	border-radius: 8px;
	font-size: 0;
	transform: translate(-25%, 0);
}

#header-nav-menu > li:hover > ul {
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}

#header-nav-menu > li:last-of-type > ul {
	right: 0;
}

#header-nav-menu > li > ul > li {
	overflow: hidden;
	height: 0;
	white-space: nowrap;
	transition: .2s;
}

#header-nav-menu > li > ul > li > a {
	display:block;
	height: auto;
	padding: .75em 2em;
	background-color: #ffffff;
	text-align: center;
	font-size: 1.6rem;
}

#header-nav-menu > li > ul > li:first-of-type > a {
	border-radius: 8px 8px 0 0;
}

#header-nav-menu > li > ul > li:last-of-type > a {
	border-radius: 0 0 8px 8px;
}

#header-nav-menu > li > ul > li > a:hover {
	background-color: #bc273b;
	color: #ffffff;
	opacity: 1;
}

#header-nav-menu > li:hover > ul > li {
	overflow: visible;
	height:auto;
}

#header-nav-btn {
	display: none;
	position: relative;
	width: 48px;
	height: 48px;
	margin-left: 20px;
	background-color: #bc273b;
	cursor: pointer;
}

#header-nav-btn span,
#header-nav-btn span::before,
#header-nav-btn span::after {
	display: block;
	width: 24px;
	height: 3px;
	position: absolute;
	top: 22px;
	left: 12px;
	background-color: #ffffff;
	border-radius: 3px;
	transition: 0.2s;
}

#header-nav-btn span::before {
	content: "";
	top: -10px;
	left: 0;
}

#header-nav-btn span::after {
	content: "";
	top: 10px;
	left: 0;
}

header.open #header-nav-btn span {
	background-color: #bc273b;
}

header.open #header-nav-btn span::before {
	transform: translate(0,10px) scale(1.3) rotate(45deg);
}

header.open #header-nav-btn span::after {
	transform: translate(0,-10px) scale(1.3) rotate(-45deg);
}

.head-trial {
	line-height: 0;
}

.head-trial > a {
	position: relative;
	padding: 0.5em 2.5em 0.5em 1.5em;
	white-space: nowrap;
	background-color: #bc273b;
	border-radius: 2em;
	font-size: 1.4rem;
	color: #fff;
}

.head-trial > a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	transform: translate(-200%,-50%) rotate(-45deg);
}

/* footer ---------------------------------------- */
footer {
	width: 100%;
	padding: 40px 0 80px 0;
	background-color: #ffffff;
	color: #000000;
}

#footer-inner {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}

.foot-site-info {
	max-width: 50%;
}

.foot-title {
}

.foot-nav {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 40px;
}

.foot-nav > ul {
	margin-right: 40px;
}

.foot-nav > ul > li {
	margin-bottom: 1em;
}

.foot-nav > ul > li:last-of-type {
	margin-bottom: 0;
}

.foot-nav > ul > li > a {
	font-size: 1.2rem;
	color: #000000;
}

.foot-sns {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 250px;
}

.foot-sns a {
	display: block;
	width: 50px;
	padding: 25%;
	background-color: #bc273b;
	border-radius: 50%;
}

.foot-link {
}

.foot-link > ul {
	display: flex;
	flex-flow: row wrap;
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid #b4b4b4;
}

.foot-link > ul > li {
	margin-right: 1em;
	padding-right: 1em;
	border-right: 1px solid #b4b4b4;
}

.foot-link > ul > li:last-of-type {
	border-right: none;
}

.foot-link > ul > li > a {
	font-size: 1.2rem;
}

.foot-copy {
}

.foot-copy p {
	font-size:1.2rem;
}

.foot-copy p strong {
	display: block;
	margin-bottom: 0.5em;
	font-size:1.5rem;
}

/* ページトップへ */
#page-top {
	position: fixed;
	bottom: -80px;
	right: 0;
	z-index: 10;
}

#page-top a {
	display: block;
	width: 60px;
	height: 60px;
}

/* BreadcrumbList ------------------------------ */
.breadcrumb-list {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
}

.breadcrumb-list ul {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 10px 20px;
	font-size: 0;
}

.breadcrumb-list ul li {
	display: inline-block;
	padding: .25em 0;
	font-size: 1.4rem;
}

.breadcrumb-list ul li::after {
	content: '＞';
	display: inline-block;
	padding: 0 1em;
	vertical-align: middle;
	font-size: 1rem;
}

.breadcrumb-list ul li:last-of-type::after {
	content: none;
}

.breadcrumb-list ul li:last-of-type span {
	display: inline-block;
	max-width: 20em;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.breadcrumb-list ul li a:hover {
	text-decoration: underline;
}

/* 緊急枠 ---------------------------------------- */
.emergency-box {
	padding: 10px 0;
	background-color: #ffffff;
	box-shadow: 0 6px 6px 0px rgba(0, 0, 0, 0.1);
	font-size: 1.4rem;
}

.emergency-box a {
	display: block;
}

.emergency-box a + a {
	margin-top: 10px;
}

/* ----------------------------------------
 inner-box コンテンツ幅一括指定---------------------------------------- */
.inner-box {
	width: 100%;
	max-width: 1240px; /* コンテンツ幅＋左右余白20pxずつ */
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.full-box {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right : calc(50% - 50vw);
}

.full-bg-box {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right : calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
}

/* content ---------------------------------------- */
.container {
}

.contents {
}

.contents main {
	width: 100%;
}

.contents.contents-clm1 {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px 8rem;
}

.contents.contents-clm2 {
	display: flex;
	flex-flow: row-reverse nowrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px 8rem;
}

.contents.contents-clm2 main {
	width: 68%;
	max-width: 650px;
	margin: 0;
	padding: 0;
}

.contents.contents-clm2 aside {
	width: 23%;
	max-width: 220px;
	padding: 0;
}

/* pagenation ------------------------------------- */
.pagination {
	padding:30px 0 0;
}

.pagination .page-numbers {
	text-align: center;
	font-size: 0;
}

.pagination .page-numbers li {
	display: inline-block;
	width: 35px;
	height : 35px;
	margin: 4px;
	font-weight: bold;
	font-size: 1.6rem;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
	display: block;
	width: 35px;
	height: 35px;
	background-color: transparent;
	border: 1px solid #666666;
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
	text-decoration: none;
	font-weight: normal;
	font-size: 1.6rem;
	color: #666666;
}

.pagination .page-numbers li a:hover,
.pagination .page-numbers li span.current {
	background-color: #666666;
	opacity: 1;
	color: #ffffff;
}

/* 共通 ------------------------------------- */
/* フッター部｜キャンペーン */
.foot-info {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background-color: #f9f3ea;
}

.foot-info > div {
	width: 100%;
	max-width: 1240px; /* コンテンツ幅＋左右余白20pxずつ */
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.foot-info h2 {
	margin-bottom: 4rem;
	text-align: center;
	font-size: 2.4rem;
	color: #565656;
}

.foot-info p {
	margin-bottom: 1em;
}

/* trialページのみ表示崩れが発生するため */
/* body.slug_trial, body.slug_home */
.foot-info .wp-block-image.aligncenter {
	margin-right: auto;
	margin-left: auto;
}
.foot-info .pc { display: table !important; }
.foot-info .sp { display: none !important; }
@media (max-width: 767px) {
	.foot-info .pc { display: none !important; }
	.foot-info .sp { display: table !important; }
}

/* フッター部｜アクセスマップ */
.foot-map {
	position: relative;
	margin-bottom: 0;
}

.foot-map img {
	width: 100%;
	height: 440px;
	object-fit: cover;
}

.foot-map .wp-block-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/* ボタン */
.wp-block-button__link {
	position: relative;
	margin: 0;
	padding: 1em 2em 1em 2em;
	min-width: 220px;
	background-color: #fff;
	border: 1px solid #00a1ec;
	box-shadow: rgba(161, 206, 231, 0.5) 0px 0px 10px;
	font-size: 1.7rem;
	color: #1e7db4;
}

.w100per .wp-block-button__link {
	min-width: auto;
	padding: 1em 2em 1em 1.2em;
}

.w-auto .wp-block-button__link {
	min-width: auto !important;
}

.wp-block-button__link:visited {
	color: #1e7db4;
}

.wp-block-button__link:hover {
	box-shadow: rgba(0, 161, 236, 0.5) 0px 0px 10px;
	background-color: #00a1ec;
	color: #ffffff;
	opacity: 1;
}

.wp-block-button__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-right: 1px solid #1e7db4;
	border-bottom: 1px solid #1e7db4;
	transform: translate(-200%,-50%) rotate(-45deg);
}

.wp-block-button__link:hover::after {
	border-color: #ffffff;
}

.wp-block-buttons > .wp-block-button {
	margin-bottom: 0;
}

.wp-block-image figure.aligncenter figcaption {
	text-align: center;
}

/* ボタン横並び */
.btn-box > * {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: end;
}

.btn-box > * > .wp-block-group,
.btn-box > * > .wp-block-buttons {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 220px;
	margin: 1em 0 0 0;
}

.btn-box > * > .wp-block-group:nth-of-type(2),
.btn-box > * > .wp-block-buttons:nth-of-type(2) {
	margin-left: 2em;
}

.btn-box .wp-block-button {
	width: 100%;
}

.btn-box .wp-block-button__link {
	min-width: auto;
	width: 100%;
	padding: 1em 0 1em 0;
}

/* ================================================ */
@media (max-width: 1000px) {
}

/* ================================================ */
@media (max-width: 767px) {
#wrapper {
	padding-top: 48px;	/*headerの高さと同一*/
}

header {
	height: 48px;
}

#header-inner {
	height: 48px;
	padding-right: 0;
}

/* ヘッダータイトル */
.head-title {
	max-width: 145px;
	margin-right: 20px;
	width: 100%;
}
	
#header-nav {
	height: auto;
	padding: 0;
	border-top: 0;
}

/* ヘッダーナビ */
#header-nav-btn {
	display:block;
}

#header-nav {
	display: block;
	position: fixed;
	top: 48px;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #bc273b;
	opacity: 0;
	z-index: 1;
	transition: 0.2s;
}

header.open #header-nav {
	height: calc(100vh - 48px);
	opacity: 1;
/*	overflow: auto;*/
}

#header-nav-menu {
	display: block;
	width: 100%;
/*	height: auto;*/
	height: 100%;
	padding: 0 0 50px 0;
	overflow-y: auto;
/*	-webkit-overflow-scrolling: touch;*/
}

#header-nav-menu > li {
	display: block;
	width: 90%;
	margin: 1em auto;
	border-radius: 8px;
	overflow: hidden;
	transform: none;
}

#header-nav-menu > li:first-of-type {
	margin-top: 5%;
}

#header-nav-menu > li > a {
	margin-bottom: 1px;
	padding: 15px 5px 15px 5px;
	font-size: 1.828rem;
	background-color: #fff;
}

#header-nav-menu > li > a:hover {
	opacity: 1;
}

#header-nav-menu li a span {
	display: none;
}

#header-nav-menu > li > ul {
	position: static;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	min-width: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 0;
	transform: translate(0, 0);
}

#header-nav-menu > li:hover > ul {
	box-shadow: none;
}

#header-nav-menu > li > ul > li {
	height: auto;
	width: calc((100% - 2px) / 2);
	margin-top: 1px;
}

#header-nav-menu > li:hover > ul > li {
}

#header-nav-menu > li > ul > li > a {
	display: block;
	margin-bottom: 1px;
	padding: 15px 5px 15px 5px;
	font-size: 1.828rem;
	font-weight: normal;
}

#header-nav-menu > li > ul > li > a:hover {
	background-color: #ffffff;
	color: #000000;
}

#header-nav-menu > li > ul > li:first-of-type > a {
	border-radius: 0;
}

#header-nav-menu > li > ul > li:last-of-type > a {
	border-radius: 0;
}

.head-trial > a {
	padding: 0.6em 1em;
}

.head-trial > a::after {
	content: normal;
}

/* content ---------------------------------------- */
.container {
}

.contents {
}

.contents.wrap2clm {
	flex-flow: column nowrap;
}

.contents.wrap2clm main {
	width: 100%;
	max-width: none;
}

.contents.wrap2clm aside {
	width: 100%;
	max-width: none;
}

.sideMenuBox {
	width: 100%;
	transform: translate(0, 0);
}

.sideMenu > li > a {
	padding-left: 50px;
}

/* footer ---------------------------------------- */
#footer-inner {
	flex-flow: column nowrap;
	align-items: center;
}
.foot-nav > ul:last-of-type {
	margin-right: 0;
}
.foot-sns {
	margin-bottom: 40px;
}

/* 共通 ------------------------------------- */
/* フッター部｜アクセスマップ */
.foot-map img {
	height: 73vw;
	max-height: 440px;
}

}

@media (max-width: 480px) {

.site-title h1 a {
	padding: 0 10px;
}

/* footer ---------------------------------------- */
footer {
	padding: 20px 0 40px 0;
}

.foot-nav {
	flex-flow: column wrap;
}

.foot-nav > ul {
	width: calc(100vw - 40px);
	margin-right: 0;
}

.foot-nav > ul > li > a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 1em 1.2em;
	background-color: #eeefef;
	font-size: 1.8285rem;
}

.foot-nav > ul:nth-of-type(1) {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin-bottom: 1em;
}

.foot-nav > ul:nth-of-type(1) > li {
	margin-bottom: 1px;
}

.foot-nav > ul:nth-of-type(1) > li:nth-of-type(1) {
	width: 100%;
}

.foot-nav > ul:nth-of-type(1) > li:nth-of-type(n+2) {
	width: calc(50% - 0.5px);
}

.foot-nav > ul:nth-of-type(1) > li:nth-of-type(1) > a {
	background-color: transparent;
}

.foot-nav > ul:nth-of-type(1) > li:nth-of-type(2) > a {
	border-radius: 8px 0 0 0;
}

.foot-nav > ul:nth-of-type(1) > li:nth-of-type(3) > a {
	border-radius: 0 8px 0 0;
}

.foot-nav > ul:nth-of-type(1) > li:nth-of-type(6) > a {
	border-radius: 0 0 0 8px;
}

.foot-nav > ul:nth-of-type(1) > li:last-of-type > a {
	border-radius: 0 0 8px 0;
}

.foot-nav > ul:nth-of-type(2) {
	margin-bottom: 1em;
}

.foot-nav > ul:nth-of-type(2) > li {
	margin-bottom: 1px;
}

.foot-nav > ul:nth-of-type(2) > li:nth-of-type(1) > a {
	background-color: transparent;
}

.foot-nav > ul:nth-of-type(2) > li:nth-of-type(2) > a {
	border-radius: 8px 8px 0 0;
}

.foot-nav > ul:nth-of-type(2) > li:last-of-type > a {
	border-radius: 0 0 8px 8px;
}

.foot-nav > ul:nth-of-type(3) > li > a {
	border-radius: 8px;
}

.foot-link > ul > li {
	margin-bottom: 1em;
}

.foot-link > ul > li > a {
	font-size: 1.6rem;
}

/* ボタン横並び */
.btn-box > * {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: end;
}

.btn-box > * > .wp-block-group,
.btn-box > * > .wp-block-buttons {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 220px;
	margin: 1em 0 0 0;
}

.btn-box > * > .wp-block-group:nth-of-type(2),
.btn-box > * > .wp-block-buttons:nth-of-type(2) {
	margin-left: 1em;
}

.btn-box .wp-block-button__link {
	letter-spacing: 0;
}

.wp-block-button__link::after {
	content: normal;
}

}