@charset "utf-8";

/*---------- ビジュアル更新 ----------*/
strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

blockquote {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 40px;
	-webkit-margin-end: 40px;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

img.alignright {
	margin-left: auto;
}

img.alignleft {
	margin-right: auto;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
	max-width: 100%;
	height: auto;
}

.clearfix {
	overflow: hidden;
	zoom: 1;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

pre {
	white-space: pre-wrap;
}

.gallery-item img {
	width: 100%;
}

/*-------------------------------*/
img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

p {
	display: block;
	margin-bottom: 25px;
	line-height: 2;
	letter-spacing: 0.05em;
	max-height: 100%;
}

ul,
ol {
	padding-left: 20px;
	margin: 10px 0;
}

li {
	/* font-size: 1.5rem; */
	/* letter-spacing: 1.5px; */
	line-height: 2.7rem;
	margin-bottom: 5px;
}

ul li {
	list-style: disc;
	max-height: 100%;
}

ol li {
	list-style: decimal;
	max-height: 100%;
}

ul li:last-child,
ol li:last-child {
	margin-bottom: 0;
}

a {
	color: #222;
	text-decoration: underline;
	/*max-height: 100%;*/
}

a:visited {
	color: #333;
}

a[target="_blank"] {
	padding-right: 25px;
	background: url(../img/popup.svg) no-repeat center right 5px;
}

a.non[target="_blank"] {
	padding-right: 0;
	background: none;
}

a[href$=".doc"],
a[href$=".docx"] {
	padding-right: 25px;
	background: url(../img/icon_word.svg) no-repeat center right 5px;
}

a[href$=".xls"],
a[href$=".xlsx"] {
	padding-right: 25px;
	background: url(../img/icon_excel.svg) no-repeat center right 5px;
}

a[href$=".pdf"] {
	padding-right: 25px;
	background: url(../img/icon_pdf.svg) no-repeat center right 5px;
}

a.none[href$=".pdf"] {
	padding-right: 0;
	background: none;
}

[href^="tel:"] {
	color: #333 !important;
	pointer-events: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}


.anchor {
	display: block;
	padding-top: 100px !important;
	margin-top: -100px !important;
	pointer-events: none;
}

.anchor>* {
	pointer-events: auto;
}

/*-------------------------------------------------------------
	table
-------------------------------------------------------------*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

table {
	width: 100%;
	margin: 30px auto;
}

table tr {
	border-bottom: 1px solid #CCCCCC;
}

table tr:first-child {
	border-top: 1px solid #CCCCCC;
}

table th {
	font-weight: 700;
	text-align: left;
	padding: 20px 25px;
	background: #F2F4FA;
	width: 25.45%;
	max-height: 100%;
	vertical-align: unset;
}

table td {
	padding: 20px;
	max-height: 100%;
}

table th>*:first-child,
table td>*:first-child {
	margin-top: 0 !important;
}

table th>*:last-child,
table td>*:last-child {
	margin-bottom: 0 !important;
}

table td ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 0;
}

table td li {
	max-height: 100% !important;
}

/*------------ table 別デザイン ------------*/
.table_no_bg table th {
	background: transparent;
	position: relative;
	font-weight: 500;
	line-height: 2.0;
	width: 25.3%;
	padding: 20px 17px;
}

.table_no_bg table th:after {
	position: absolute;
	content: "";
	width: 1px;
	height: calc(100% - 40px);
	background: #DDDDDD;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

.table_no_bg table td {
	line-height: 2.0;
}

/*------------  ------------*/
.content_area {
	padding:0;
	margin: 0 auto;
	position: relative;
}

.inner {
	width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.inner--1000 {
    max-width: 1040px;
}

.inner--1200 {
    max-width: 1240px;
}

.content_area .inner>*:first-child {
	margin-top: 0;
}

.content_area .inner>*:last-child {
	margin-bottom: 0;
}

/* .sec_in {
	max-width: 948px;
	margin: auto;
}

.sec_in>*:last-child {
	margin-bottom: 0 !important;
} */

.link_btn a {
	position: relative;
	display: block;
	text-decoration: none;
	max-width: 300px;
	font-weight: bold;
	line-height: 1.2;
	color: #FFF;
	text-align: center;
	margin: 24px 0 0;
	padding: 13px 18px 14px 23px;
	background: rgb(255, 118, 0);
	background: linear-gradient(126deg, rgba(255, 118, 0, 1) 0%, rgba(252, 175, 27, 1) 100%);
	border-radius: 100px;
	overflow: hidden;
	z-index: 10;
	transition: color 0.3s;
}

.link_btn a::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #ffb918;
	z-index: 20;
	transition: width 0.3s;
}

.link_btn a:hover::before {
	width: 100%;
}

.link_btn a span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	position: relative;
	z-index: 30;
}

.link_btn a span::after {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	margin-left: 11px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.viewmore_btn {
	display: inline-block;
	text-decoration: none;
}

.viewmore_btn_in {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.viewmore_txt {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0;
	color: #2B5872;
}

.viewmore_txt:before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	background: #D4D4D4;
	width: 100%;
	height: 1px;
}

.viewmore_txt:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	background: #2B5872;
	width: 73%;
	height: 1px;
}

.viewmore_circle {
	/* position: relative;
	display: inline-block;
	border-radius: 50%;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif; */
	/* font-size: 2.2rem;
	font-weight: 700; */
	letter-spacing: 0;
	color: #2B5872;
	position: relative;
	display: inline-block;
	border-radius: 50%;
	/*width:122px;
	height:122px;*/
	width: 128px;
	height: 128px;
}

.viewmore_circle:before {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #2B5872;
	border-radius: 50%;
	box-sizing: border-box;
	top: 50%;
	left: 50%;
	transition: all 1.5s cubic-bezier(.23, 1, .32, 1), border .3s ease;
	transform: translate(-50%, -50%);
	width: 122px;
	height: 122px;
}

.viewmore_circle:after {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	background: url(../img/arrow_blue.svg) center center/100% auto no-repeat;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.viewmore_circle svg {
	position: absolute;
	display: block;
	width: auto;
	height: auto;
	top: 0;
	left: 0;
	transition: opacity .3s cubic-bezier(.23, 1, .32, 1);
	transform: rotate(-90deg);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity: 0;
	/*width: calc(110 / var(--width) * 100vw);
    height: calc(110 / var(--width) * 100vw);*/
}

.viewmore_circle svg circle {
	fill: transparent;
	stroke: #fff;
	stroke-width: 1px;
	transition: stroke-dashoffset .7s cubic-bezier(.23, 1, .32, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	stroke-dasharray: 346px;
	stroke-dashoffset: 346px;
}

a.viewmore_btn:hover svg,
a:hover .viewmore_circle svg {
	opacity: 1;
}

a:hover .viewmore_circle::before {
	width: 122px;
	height: 122px;
	opacity: 0;
}

a:hover .viewmore_circle svg circle,
a.viewmore_circle:hover svg circle {
	stroke-dashoffset: 0;
}

.viewmore_circle svg circle {
	stroke: #2B5872;
}

.column_02,
.column_03 {
	display: flex;
	flex-wrap: wrap;
}

.column_02>div {
	width: calc((100% - 20px) / 2);
	margin-right: 20px;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.column_02>div:nth-child(2n) {
	margin-right: 0;
}

.column_03>div,
.column_03>ul {
	width: calc((100% - 42px) / 3);
	margin-right: 21px;
	box-sizing: border-box;
}

.column_03>div img {
	margin: 0;
}

.column_03>div:nth-child(3n),
.column_03>ul:nth-child(3n) {
	margin: 0;
}

.column_04 {
	display: flex;
	flex-wrap: wrap;
}

.column_04 ul {
	line-height: 1.85em;
	margin-right: 2%;
	width: 23.5%;
}

.column_04 ul:nth-child(4n) {
	margin-right: 0;
}


.txt_right {
	text-align: right;
	margin-bottom: 80px;
}

.txt_left {
	text-align: left;
}

.txt_center {
	text-align: center;
}

/*---------- pagenav ----------*/
.wp-pagenavi {
	position: relative;
	margin-top: 80px;
	text-align: center;
}

.wp-pagenavi a {
	color: #B7B7B7;
	text-decoration: none !important;
}

.wp-pagenavi a,
.wp-pagenavi span {
	position: relative;
	display: inline-block;
	font-size: 1.8rem;
	text-align: center;
	vertical-align: top;
	padding: 0 5px;
	margin: 0 1.41%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	transition: color 0.3s;
	border: none;
	text-decoration: none !important;
	font-size: 1.5rem;
	font-weight: 500;
	color: #222;
	padding: 0 10px;
	margin: 0 7px;
}

.wp-pagenavi .current,
.wp-pagenavi .page:hover {
}

.wp-pagenavi .current::before,
.wp-pagenavi .page::before {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	transition: all 0.3s;
	border-radius: 5px;
	z-index: -5;
}

.wp-pagenavi .current::before,
.wp-pagenavi .page:hover::before {
	background-color: #eee;
	color: #222;
}

.wp-pagenavi .extend {
    display: inline-block;
    margin: 0 10px;
}

.wp-pagenavi .extend::before {
    content: "...";
}

.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 66.666%;
	position: relative;
}

.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}


@media screen and (max-width:767px) {
	img {
		width: auto;
		height: auto;
		max-width: 100%;
	}

	.anchor {
		display: block;
		padding-top: 65px !important;
		margin-top: -65px !important;
	}

	p {
		margin-bottom: 15px;
		line-height: 1.8;
	}

	[href^="tel:"] {
		pointer-events: all;
		text-decoration: underline;
	}

	table th {
		padding: 15px 7px;
		width: 30%;
	}

	table td {
		padding: 15px 10px 15px 5px;
	}

	/*------------ table 別デザイン ------------*/
	.table_no_bg table th {
		width: 100%;
		display: block;
		padding: 10px;
		background: #F8F8F8;
	}

	.table_no_bg table td {
		width: 100%;
		display: block;
		padding: 10px;
	}

	.table_no_bg table th:after {
		content: none;
	}

	/*------------  ------------*/
/* 	.content_area {
		
	} */

	.link_btn a {
		max-width: 100%;
		padding: 12px 15px 14px;
	}

	.link_btn a span {
		font-size: 1.3rem;
	}

	.link_btn a span::after {
		margin-top: 1px;
		margin-left: 6px;
	}

	.viewmore_txt {
		font-size: 1.3rem;
	}

	.viewmore_circle {
		width: 80px;
		height: 80px;
	}

	.viewmore_circle:before {
		width: 78px;
		height: 78px;
	}

	a:hover .viewmore_circle::before {
		width: 80px;
		height: 80px;
	}

	.column_02>div,
	.column_03>div {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.column_03>ul {
		width: 100%;
		margin-right: 0;
	}


	.column_04 ul {
		margin: 0;
		width: 100%;
	}

	
	/*---------- pagenav ----------*/
	.wp-pagenavi {
		position: relative;
		margin-top: 40px;
		text-align: center;
	}

	.wp-pagenavi a,
	.wp-pagenavi span {
		font-size: 1.5rem;
		/* padding: 3px; */
		margin: 0 5px;
		width: 40px;
		height: 40px;
		line-height: 39px;
	}
}

/*---------------------------------------------------------
	各ページcatch
---------------------------------------------------------*/
#content_wrap {
	position: relative;
}

#content_h {
	--page-mv-width: 1350px;
	position: relative;
	width: 100%;
	margin-top: 0;
	padding: 220px 20px 0;
	overflow: hidden;
	box-sizing: border-box;
}

/* 背景画像 */
#content_h::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/page_mv_bg.jpg") no-repeat center center / cover;
	z-index: 0;
}

/* 背景画像の上に重ねるグラデーション */
#content_h::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		rgba(247, 249, 252, 1) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	z-index: 1;
	pointer-events: none;
}

#h_area,
.h_img,
.pageMvBgLogo {
	position: relative;
	z-index: 2;
}

/* 見出し：1350px枠で中央 */
#h_area {
	max-width: var(--page-mv-width);
	margin: 0 auto 44px;
	padding: 0;
	box-sizing: border-box;
}


/* 画像：左は1350px枠に揃える、右は画面端まで */
.h_img {
	width: calc(
		((100% - min(100%, var(--page-mv-width))) / 2)
		+ min(100%, var(--page-mv-width))
		+ 20px
	);
	margin-left: calc((100% - min(100%, var(--page-mv-width))) / 2);
	overflow: hidden;
	border-radius: 20px 0 0 20px;
	box-sizing: border-box;
}

.h_img img {
	display: block;
	width: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center;
}

#h_area h1 {
	margin: 0;
	padding: 0;
	line-height: 1;
}

/* 既存の data-txt 用を無効化 */
#h_area h1::before {
	content: none;
}

/* 英字タイトル */
.pageMvTitle {
	font-family: 'Poppins', 'Noto Sans JP', sans-serif;
	display: block;
	font-size: 10rem;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #fff;
}

.pageMvTitle__red {
	color: #ED1C24;
}

/* 日本語タイトル */
.pageMvSub {
	display: block;
	margin-top: 15px;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0em;
	line-height: 1.5;
	color: #fff;
}

/* 背景の薄いロゴ */
.pageMvBgLogo {
	position: absolute;
	top: -90px;
	right: -242px;
	width: 100%;
	max-width:1100px;
	pointer-events: none;
	z-index: 1;
}

.pageMvBgLogo img {
	width: 100%;
	height: auto;
}

/*パンくず用*/
.breadcrumbs {
	position: relative;
	z-index: 3;
	max-width: var(--page-mv-width);
	margin: 0 auto 10px;
	padding: 0;
	box-sizing: border-box;
	text-align: right;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #fff;
}

.breadcrumbs a {
	color: #fff;
	text-decoration: none;
}

.breadcrumbs span {
	color: #fff;
}

.breadcrumbs a::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 12px 1px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	vertical-align: middle;
}


/* 各ページh2 */
h2 {
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.65;
	/* padding: 20px 0 0; */
	margin: 65px 0 20px;
	position: relative;
}

/* 各ページh3 */
h3 {
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin: 65px 0 25px;
}

/* 各ページh4 */
h4 {
	margin: 50px 0 15px;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 1.8px;
	line-height: 3.2rem;
	position: relative;
}

h4::before {
	content: '';
	position: absolute;
	top: 2px;
	bottom: 0;
	left: 0;
	width: 6px;
	height: 2px;
	margin: auto;
	background: #686868;
}

/* 各ページh5 */
h5 {
	/*     font-family: 'Noto Serif JP', serif; */
	font-weight: 500;
	margin: 35px 0 10px;
	line-height: 2.9rem;
}

/*各ページ h2見出し*/
.commonSecHead {
	margin-bottom: 70px;
}

.commonSecHead__ttl {
	font-family: 'Poppins', 'Noto Sans JP', sans-serif;
	font-size: clamp(4.6rem, 6vw, 8rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	color: #122C48;
	margin: 0;
	padding: 0;
	position: relative;
}

.commonSecHead__ttl::before {
	content: none;
}

.commonSecHead__sub {
	position: relative;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.5;
	color: #122C48;
	margin: 10px 0 0;
	padding-left: 17px;
}

.commonSecHead__sub::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 12px;
	height: 12px;
	background: #ed1c24;
	border-radius: 50%;
}

/* 白背景以外で白文字にしたい場合 */
.commonSecHead--white .commonSecHead__ttl,
.commonSecHead--white .commonSecHead__sub {
	color: #fff;
}


@media screen and (max-width:767px) {

	#content_h{
		padding: 100px 20px 0;
	}

	#h_area {
		margin: 0 auto 20px;
	}
	
	.pageMvTitle{
		font-size:4.0rem;
	}
	
	.pageMvSub{
		font-size:1.6rem;
		margin-top:10px;
	}

	.h_img img {
		object-fit: cover;
		height: 200px !important;
	}

	.breadcrumbs{
		font-size:1.3rem;
		overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        text-align: left;
	}

	/* 各ページh2 */
	h2 {
		font-size: 1.8rem;
		/* padding: 13px 0 0; */
		margin: 50px 0 20px;
	}

	h3 {
		font-size: 1.8rem;
		margin: 40px 0 13px;
	}

	h4 {
		font-size: 1.6rem;
		margin: 20px 0 10px;
	}

	h5 {
		font-size: 1.3rem;
		margin: 20px 0 0;
	}
	
	/**/
	.commonSecHead{
		margin-bottom:30px;
	}
	.commonSecHead__sub{
		font-size:1.4rem;
		margin-top:6px;
	}
	

}