@charset "UTF-8";

/*-----------------------------------------------

-- 01 Variables
-- 02 コンテンツが少ない場合にフッターを最下部に固定
-- 03 基本
-- 04 ヘッダー
-- 05 グローバルナビゲーション
-- 06 ページトップへ戻る
-- 07 パンくずリスト
-- 08 お問い合わせ
-- 09 フッター
-- 10 ローディング画面
-- 11 各ページ共通
-- 12 背景にひし形の図形
-- 13 関連ページリンク
-- 14 検索結果画面
-- 15 404エラー画面
-- 16 ページネーション

------------------------------------------------*/

/*------------------------------------------------
  01 Variables
------------------------------------------------*/
:root {
    /* Color */
	--primary-color: #002A63;
	--primary-color-rgb: 20, 100, 200;
	--secondary-color: #647D9B;
	--tertiary-color: #B6C6D7;
	--quaternary-color: #36a8d9;
	--accent-color: #FFF569;
	--sub-color: #FDBA50;
	--bg-pretty-light: #F8FAFC;
	--bg-light: #D6E1EB;
	--bg-dark: #647D9B;
	--primary-text-color: #000;
	--secondary-text-color: #333;
	--tertiary-text-color: #333D42;

	/* width */
	--layout-max-width: 1600px;
	--layout-outer-width: 1320px;
	--layout-inner-width: 1160px;

    /* header-height */
    --header-sp-height: 60px;
	--header-sp-height-adjust: -60px;
    --header-pc-height: 120px;
	--header-pc-height-adjust: -120px;
	--layout-gap: 40px;
}

/*------------------------------------------------
  02 コンテンツが少ない場合にフッターを最下部に固定
------------------------------------------------*/
html {
	display: flex;
	flex-direction: column;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
}

main {
	flex-grow: 1;
	min-height: 1%;
}

@media print, screen and (min-width: 768px) {
	body {
		min-height: 100vh;
	}
}

/*------------------------------------------------
  03 基本
------------------------------------------------*/
html {
	font-size: 62.5%;
	background-color: #fff;
	color: var(--tertiary-text-color);
	font-family: 'Noto Sans SC', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
body {
	font-family: 'Noto Sans SC', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 1.4rem;  /* 14px */
	line-height: 1.6;
	position: relative;
}
*, *::before, *::after {
	box-sizing: border-box;
}
.clearfix::after {
	content:'';
	display: block;
	clear: both;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	opacity: .7;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}

@media print, screen and (min-width: 768px) {
	body {
		font-size: 1.6rem;  /* 16px */
	}
}

/*----- イメージ下スペース削除 右クリック禁止 -----*/
img {
	vertical-align: middle;
	width: 100%;
}

/*----- PCで電話番号リンク無効 -----*/
@media print, screen and (min-width: 768px) {
	a[href^="tel:"] {
	  /*    color: inherit;*/
	  text-decoration: none;
	  pointer-events: none;
	}
}

/*スマートフォンの時は非表示*/
@media screen and (max-width: 767px) {
	.only_pc {
		display: none;
	}
}

/*PCの時は非表示*/
@media screen and (min-width: 768px) {
	.only_sp {
		display: none;
	}
}

/* スクロールバーカスタマイズ */
@media screen and (min-width: 821px) {
	::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}
	::-webkit-scrollbar-track {
		background-color: #ccc;
	}
	::-webkit-scrollbar-thumb {
		background-color: var(--secondary-color);
	}
}

/*------------------------------------------------
  04 ヘッダー
------------------------------------------------*/
.header {
    position: sticky;
    top: 0;
	z-index: 10;
}
.header_inner {
	border-top: 2px solid var(--primary-color);
}
.header-logo {
	height: auto;
	z-index: 15;
}
.header-logo-image {
	width: 100%;
	height: auto;
}

@media print, screen and (max-width: 820px) {
	.header_inner {
		height: var(--header-sp-height);
		position: relative;
		background-color: #fff;
	}
	.header-logo {
		position: absolute;
		left: 10px;
		top: 50%;
		width: 200px;
		transform: translatey(-50%);
	}
}

@media print, screen and (min-width: 821px) {
	.header_inner {
		height: 110px;
		background-color: #fff;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		border-top: 4px solid var(--primary-color);
	}
	.header_inner.box-shadow {
		box-shadow: 20px 20px 40px rgba(var(--primary-color-rgb), 0.1);
	}
	.header-logo {
		width: 280px;
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media print, screen and (min-width: 901px) {
	.header_inner {
		height: var(--header-pc-height);
	}
	.header-logo {
		width: 300px;
	}
}

@media print, screen and (min-width: 1201px) {
	.header-logo {
		width: 310px;
	}
}

@media print, screen and (min-width: 1401px) {
	.header-logo {
		width: 320px;
	}
}

@media print, screen and (min-width: 821px) and (max-width: 1301px) {
	.header-logo {
		top: 30%;
		transform: translateY(-50%);
	}
}

/*------------------------------------------------
  05 グローバルナビゲーション
------------------------------------------------*/
/*-- ドロワーメニュー --*/
#menu-btn-check {
	display: none;
}
.menu-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	z-index: 5;
}
.menu-btn span {
	width: 20px;
	height: 1px;
	background-color: #fff;
	content: '';
	position: absolute;
	left: 50%;
	transition: all .3s;
}
.menu-btn span:nth-of-type(1) {
	top: 23px;
	transform: translateX(-50%);
}
.menu-btn span:nth-of-type(2) {
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.menu-btn span:nth-of-type(3) {
	bottom: 23px;
	transform: translateX(-50%);
}
.menu-btn.active span:nth-of-type(1) {
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	width: 20px;
}
.menu-btn.active span:nth-of-type(2) {
	display: none;
}
.menu-btn.active span:nth-of-type(3) {
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	width: 20px;
}
.header-nav__item {
	position: relative;
}
.header-nav__item a {
	display: block;
}
.header-nav__item .touch-btn {
	position: absolute;
	height: 100%;
}
.header-nav__item .touch-btn::before, 
.header-nav__item .touch-btn::after {
	position: absolute;
	top: 0;
	right: 0;
	content:'';
	height: 2px;
	background-color: #fff;
	transition: all 0.4s;
}
.header-nav__item .touch-btn::before {
	transform: rotate(0deg);
}
.header-nav__item .touch-btn::after {
	transform: rotate(-90deg);
}
.header-nav__item .touch-btn.active::after {
	transform: rotate(-180deg);
}

/*-- お問い合わせボタン --*/
.header-nav__item.item-contact {
	text-align: center;
	border-radius: 50px;
}
.header-nav__item.item-contact a {
	line-height: 1em;
	padding: 1em 1.5em;
	border-radius: 50px;
	margin: auto;
	color: #fff;
	background: rgb(54,169,213);
	background: linear-gradient(90deg, rgba(0,42,99,1) 0%, rgba(54,169,213,1) 100%);
}

/* -- スマホメニュー -- */
@media print, screen and (max-width: 820px) {
	.menu-content a {
		color: var(--primary-color);
		font-weight: 700;
		font-size: 1.5rem;
	}
	.header-nav-child__list {
        display: none;
    }
	.subNavBtn.is-active:hover .header-nav-child__list {
        display: block;
    }
    .menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 2;
		background-color: var(--bg-light);
		transition: all 0.3s;
		padding: 20px 0 80px;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.header-nav__item.item-contact a::before {
		content: '\f0e0';
		font-family: 'Font Awesome 6 Free';
		font-weight: 400;
		font-size: 1.6em;
		margin-right: 0.5em;
		vertical-align: middle;
	}
	#menu-btn-check:checked ~ .menu-content {
		left: 0;
	}
	.menu-content .navi-block-sp {
		margin-top: calc(var(--header-sp-height) + 10px);
	}
	.header-nav__item .touch-btn {
		width: 16px;
		height: 16px;
		right: 20px;
		top: calc(8px + 0.5em);
	}
	.header-nav__item .touch-btn::before, 
	.header-nav__item .touch-btn::after {
		width: 16px;
		height: 2px;
		top: 8px;
		right: 0;
		background-color: var(--primary-color);
	}
	.header-nav__item ul .touch-btn::before, 
	.header-nav__item ul .touch-btn::after {
		background-color: #fff;
	}
	.header-nav__item a {
		padding: 1em 20px;
	}
	.header-nav__list ul a {
		color: #fff;
	}
	.header-nav__list ul {
		background-color: #8b97ab;
		padding: 20px 0;
	}
	.header-nav__list ul ul {
		background-color: #5d6d8a;
	}
	.header-nav__list ul .header-nav__item a {
		margin-left: 1em;
		padding: 0.75em 20px;
	}
	.header-nav__list ul ul .header-nav__item a {
		margin-left: 2em;
	}
	.header-nav__item.item-contact {
		margin-top: 20px;
	}
	.header-nav__item.item-contact a {
		width: 80%;
	}
	.navi-block-pc {
		display: none;
	}
	.header-nav-child__list .header-nav__item:nth-child(1) a, 
	.header-nav-child__list.sub__list .header-nav__item:nth-child(1) a {
		animation: slideIn 0.25s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(2) a, 
	.header-nav-child__list.sub__list .header-nav__item:nth-child(2) a {
		animation: slideIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(3) a, 
	.header-nav-child__list.sub__list .header-nav__item:nth-child(3) a {
		animation: slideIn 0.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(4) a, 
	.header-nav-child__list.sub__list .header-nav__item:nth-child(4) a {
		animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(5) a {
		animation: slideIn 1.25s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(6) a {
		animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(7) a {
		animation: slideIn 1.75s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(8) a {
		animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(9) a {
		animation: slideIn 2.25s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	.header-nav-child__list .header-nav__item:nth-child(10) a {
		animation: slideIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	}
	@keyframes slideIn {
		0% {
		  transform: translateX(-180px);
		  opacity: 0;
		}
		100% {
		  transform: translateX(0);
		}
		40%,100% {
		  opacity: 1;
		}
	  }
}

@media print, screen and (max-width: 344px) {
	.header-nav__item.item-contact a {
		width: calc(100% - 40px);
	}
}

/* -- PCメニュー -- */
@media print, screen and (min-width: 821px) {
	.header-nav {
		position: absolute;
		bottom: 0;
		right: 0;
	}
	.header-navi-block {
		width: 100%;
	}
	.header-nav {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0 10px;
	}
	.menu-btn, 
	.navi-block-sp, 
	.header-nav__item.item-privacy {
		display: none;
	}
	.header-nav__list {
		display: flex;
		align-items: center;
		gap: 20px;
		position: relative;
		font-size: 1.4rem;
	}
	.header-nav-child__list.sub__list {
		font-size: 100%;
	}
	.header-nav__item {
		display: block;
		position: relative;
	}
	.header-nav__item a {
		font-weight: 600;
		line-height: calc(4em + 8px);
		color: #333;
	}
	.header-nav__item.item-contact {
		margin-left: 10px;
		background-color: #fff;
	}
	.header-nav__item.item-contact a {
		font-size: 1.2rem;
	}
	.header-nav-child__list .header-nav__item a {
		font-weight: 400;
		color: #fff;
	}
	.header-nav__list li {
		position: relative;
	}
	.header-nav__list li.header-nav__item .touch-btn, 
	.header-nav__list li.header-nav__item .touch-btn::after {
		background-color: #bbb;
	}
	.header-nav-child__list li a {
		padding-left: 1.5em;
		padding-right: 1.5em;
	}
	/* 第二階層 */
	.header-nav__list li ul {
		position: absolute;
		z-index: 2;
		left: 0;
		overflow: hidden;
		width: calc(200px - 3em);
		min-width: max-content;
		height: auto;
		transform: scaleY(0);
		transform-origin: center top;
		transition: all .3s;
	}
	.header-nav__list li ul li a {
		padding-left: 2em;
		padding-right: 2em;
	}
	.header-nav__list > li:hover > ul {
		overflow: visible;
		padding: 0;
		background-color: var(--primary-color);
		transform: scaleY(1);
	}
	.header-nav__list > li:hover > ul li a:hover {
		background-color: #000;
	}
	/* 第三階層 */
	.header-nav__list li ul li ul {
		position: absolute;
		top: 0;
		left: 100%;
		width: calc(200px - 3em);
		min-width: max-content;
		transform: scaleY(0);
		transition: all .3s;
	}
	.header-nav__list li ul li:hover > ul {
		overflow: visible;
		transform: scaleY(1);
		padding: 0;
		background-color: var(--primary-color);
	}
	.header-nav__list li.header-nav__item .touch-btn {
		position: absolute;
		content: '';
		top: 50%;
		right: -0.75em;
		transform: translateY(-50%);
		width: 8px;
		height: 1px;
		background-color: #b2bfd0;
	}
	.header-nav__list li.header-nav__item .touch-btn::after {
		position: absolute;
		content: '';
		top: 50%;
		transform: translateY(-50%) rotate(90deg);
		width: 8px;
		height: 1px;
		background-color: #b2bfd0;
	}
	.header-nav-child__list li.header-nav__item .touch-btn {
		background-color: rgb(255, 255, 255, 0)!important;
		width: 8px!important;
		height: 8px!important;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: translateY(-50%) rotate(45deg);
		right: 1em;
	} 
	.header-nav-child__list li.header-nav__item .touch-btn::after {
		display: none;
	}
}

@media print, screen and (min-width: 901px) {
	.header-nav__list li ul {
		right: -18px;
	}
	.header-nav__list > li:hover > ul {
		background-color: var(--primary-color);
	}
	.header-nav__list li.header-nav__item .touch-btn {
		width: 10px;
		height: 2px;
	}
	.header-nav__list li.header-nav__item .touch-btn::after {
		width: 10px;
		height: 2px;
	}
}

@media print, screen and (min-width: 1001px) {
	.header-nav__list {
		gap: 25px;
	}
	.header-nav__list .menu-item-has-children::after {
		right: -15px;
	}
	.header-nav__list li.header-nav__item .touch-btn {
		right: -12px;
	}
	.header-nav-child__list li.header-nav__item .touch-btn {
		right: 1em;
	}
	.header-nav-child__list li.header-nav__item .touch-btn::after {
		right: 1em;
	}
}

@media print, screen and (min-width: 1201px) {
	.header-nav {
		gap: 0 20px;
	}
	.header-nav__item.item-contact {
		margin-left: 10px;
	}
}

@media print, screen and (min-width: 1401px) {
	.header-nav__list {
		gap: 30px;
		font-size: 1.5rem; /* メニュー第一階層のフォントサイズ */
	}
	.header-nav__item.item-contact a {
		font-size: 1.3rem;
	}
	.header-nav-child__list {
		font-size: 85%; /* メニュー第二階層・第三階層のフォントサイズ */
	}
	.header-nav__list .menu-item-has-children::after {
		right: -15px;
	}
	.header-nav-child__list .menu-item-has-children::after {
		right: 0;
	}
	.header-nav__list li.header-nav__item .touch-btn {
		right: -15px;
	}
	.header-nav-child__list li.header-nav__item .touch-btn, 
	.header-nav-child__list li.header-nav__item .touch-btn::after {
		right: 1.5em;
	}
}

@media print, screen and (min-width: 1601px) {
	.header-nav__list {
		gap: 35px;
		font-size: 1.6rem;
	}
	.header-nav__item.item-contact a {
		font-size: 1.4rem;
	}
	.header-nav__list .menu-item-has-children::after {
		right: -18px;
	}
	.header-nav-child__list .menu-item-has-children::after {
		right: 0;
	}
}

@media print, screen and (min-width: 1801px) {
	.header-nav__list {
		gap: 40px;
	}
}

/* 表示言語選択・サイト内検索窓 */
input[type="text"] {
	text-align: left;
	height: 40px;
	margin: 0;
	padding: 10px;
	background-color: #fff;
	border-radius: 5px 0 0 5px;
	box-sizing: border-box;
	border-top: 2px solid var(--primary-color);
	border-left: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
}
input[type="text"]:focus {
	outline: none;
}
input[type="submit"] {
	width: 40px;
	height: 40px;
	background:#fff url('../../images/common/icon_search.svg') no-repeat center;
	background-size: 25px 25px;
	margin-left: -5px;
	border-radius: 0 5px 5px 0;
	border-top: 2px solid var(--primary-color);
	border-right: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	cursor: pointer;
}
/* グローバルアイコン */
.navi-block-icon {
	margin-right: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.navi-block-icon img {
	width: 20px;
	height: 20px;
}
.material-icons {
	font-size: 2.8rem;
	color: var(--primary-color);
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.navi-block-item .lang-change {
	font-size: 1.4srem;
	font-weight: 700;
	display: block;
}
.navi-block-item a {
	line-height: 1.25em;
}

@media print, screen and (max-width: 820px) {
	.search-btn-block {
		display: none;
	}
	.navi-block-sp {
		margin-bottom: 20px;
	}
	.navi-block-list {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	.navi-block-item.search-box {
		width: 100%;
	}
	.searchform {
		text-align: center;
		margin-top: 1em;
	}
	.navi-block-item:nth-child(2), 
	.navi-block-item:nth-child(3) {
		border-right: 2px dotted var(--primary-color);
		margin-right: 10px;
		padding-right: 10px;
	}
	.screen-reader-text {
		display: none;
	}
	input[type="text"] {
		width: 200px;
	}
	#search-wrap {
		display: none;
	}
}

@media print, screen and (min-width: 821px) {
	.header-navi-block {
		position: absolute;
		right: 10px;
		bottom: 0;
		height: 100%;
	}
	.navi-block-pc {
		margin-top: 12px;
	}
	.navi-block-list {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: nowrap;
	}
	.navi-block-item:nth-child(2), 
	.navi-block-item:nth-child(3) {
		border-right: 2px dotted var(--primary-color);
		margin-right: 10px;
		padding-right: 10px;
	}
	.navi-block-item .lang-change {
		color: #d1dbe8;
	}
	.navi-block-item .lang-change.current {
		color: var(--primary-color);
	}
	.screen-reader-text {
		display: none;
	}
	input[type="text"] {
		width: 150px;
	}
	.open-search-block {
		background: url('../../images/common/icon_search.svg') no-repeat center; /*虫眼鏡アイコンを背景に表示*/
		background-size: 30px 30px;
		width: 30px;
		height: 30px;
		cursor: pointer; /*カーソルを指マークに*/
		transition: all 0.3s;
	}
	.open-search-block:hover {
		opacity: .8;
	}
	.open-search-block.btnactive {
		background: url('../../images/common/icon_close.svg') no-repeat center; /*閉じるアイコンを背景に表示*/
	}
	#search-wrap {
		position: absolute;
		top: calc(var(--header-pc-height) - 4px);
		width: 100%;
		text-align: center;
		background-color: var(--primary-color);
		z-index: 1;
		transition: all 0.4s;
		overflow: hidden;
		height: 0;
	}
	#search-wrap.panelactive {
		overflow: visible;
		padding: 50px 0;
		height: auto;
	}
	#search-wrap input[type="text"], 
	#search-wrap input[type="submit"], 
	#search-wrap .close-btn {
		opacity: 0;
	}
	#search-wrap.panelactive input[type="text"] {
		width: 500px;
		height: 56px;
		opacity: 1;
	}
	#search-wrap.panelactive input[type="submit"] {
		width: 56px;
		height: 56px;
		opacity: 1;
	}
	#search-wrap.panelactive input[type="text"]:hover, 
	#search-wrap.panelactive input[type="submit"]:hover {
		opacity: .8;
	}
	#search-wrap.panelactive .close-btn {
		color: #fff;
		opacity: 1;
		text-transform: uppercase;
		font-size: 1.6rem;
		font-weight: 500;
		display: block;
		background-color: var(--primary-color);
		position: absolute;
		left: 50%;
		top: 100%;
		transform: translateX(-50%);
		padding: 0.5em 1.5em 0.75em;
		padding-right: calc(1em + 30px);
	}
	#search-wrap.panelactive .close-btn:hover {
		cursor: pointer;
		background-color: var(--secondary-color);
		opacity: 1;
	}
	#search-wrap.panelactive .close-btn span:hover {
		opacity: 1;
	}
	.close-btn span {
		position: relative;
	}
	.close-btn span::before, 
	.close-btn span::after {
		position: absolute;
		content: '';
		top: 50%;
		right: -32px;
		width: 18px;
		height: 2px;
		background-color: #fff;
	}
	.close-btn span::before {
		transform: translateY(-50%) rotate(-45deg);
	}
	.close-btn span::after {
		transform: translateY(-50%) rotate(45deg);
	}
	/* 検索窓展開時にスクロール無効化・ヘッダー以下微妙に暗転 */
	body.bodyactive {
		height: calc(100% - var(--header-pc-height));
		overflow: hidden;
		position: relative;
	}
	body.bodyactive::after {
		content: '';
		position: absolute;
		top: var(--header-pc-height);
		left: 0;
		height: 100%;
		width: 100%;
		background-color: rgb(0, 0, 0, .5);
		z-index: 3;
	}
}

@media print, screen and (min-width: 1201px) {
	.header-navi-block {
		margin-right: 20px;
	}
}

/*------------------------------------------------
  06 ページトップへ戻る
------------------------------------------------*/
#page-top {
	position: fixed;
	right: 0;
	opacity: 0;
	z-index: 2;
	padding: 0.5em 0.5em 1.5em;
}
/*リンクの形状*/
#page-top a {
	font-size: 1.4rem;
	font-weight: 600;
	text-align: right;
	text-transform: uppercase;
	line-height: 1.5em;
	transform: rotate(90deg);
	display: inline-block;
	color: var(--primary-color);
	position: relative;
	border-top: 1px solid var(--primary-color);
	padding-top: 0.75em;
}
#page-top a::before {
	position: absolute;
	content: "";
	display: block;
	top: -1px;
	left: 0;
	width: 15px;
	border-top: 1px solid var(--primary-color);
	transform: rotate(35deg);
	transform-origin: left top;

}

@media print, screen and (max-width: 820px) {
	#page-top a {
		font-size: 1.2rem;
	}
}

@media print, screen and (min-width: 821px) {
	#page-top a {
		width: 70px;
		height: 60px;
	}
	.pagetop__arrow {
		height: 12px;
		width: 12px;
	}
}

@media print, screen and (min-width: 1201px) {
	#page-top a {
		width: 80px;
		height: 60px;
	}
	.pagetop__arrow {
		height: 14px;
		width: 14px;
	}
}

/*　上に上がる動き　*/
#page-top.UpMove {
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
  
 /*　下に下がる動き　*/
#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

/*------------------------------------------------
  07 パンくずリスト
------------------------------------------------*/
.breadcrumb-trail {
	margin: 20px 0;
}
.breadcrumb-trail-inner {
	margin-left: 20px;
	margin-right: 20px;
}
.breadcrumb-trail-list {
	display: flex;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.breadcrumb-trail-item {
	font-size: 1rem;
	font-weight: 400;
	padding-left: 20px;
	position: relative;
}
.breadcrumb-trail-item:first-of-type {
	padding-left: 25px;
}
.breadcrumb-trail-item:nth-of-type(n+2) {
	margin-left: 10px;
}
.breadcrumb-trail-item::before {
	content: '';
	position: absolute;
	left: 0;
}
.breadcrumb-trail-item:first-of-type::before {
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 13px;
	background-image: url('../../images/common/home-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px 13px;
}
.breadcrumb-trail-item:nth-of-type(n+2)::before {
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;
	transform: translateY(-50%) rotate(45deg);
}
.breadcrumb-trail-item a {
	display: block;
}

@media print, screen and (max-width: 767px) {
	.breadcrumb-trail-list {
		flex-wrap: nowrap;
		white-space: nowrap;
		overflow-x: scroll;
	}
}

@media print, screen and (min-width: 768px) {
	.breadcrumb-trail-list {
		justify-content: end;
	}
	.breadcrumb-trail-item {
		font-size: 1.2rem;
	}
}

@media print, screen and (min-width: 901px) {
	.breadcrumb-trail-inner {
		margin: auto;
		width: calc(100% - 40px);
		max-width: var(--layout-inner-width);
	}
}

/*------------------------------------------------
  08 お問い合わせ
------------------------------------------------*/
.contact-block-wrap {
	background-color: #fff;
}
.contact-block {
	background-image: url('../../images/common/common_contact_block_bg.jpg');
	background-color: var(--primary-color);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border: 1px solid rgb(0, 0, 0, 0);
}
.contact-block_inner {
	position: relative;
	height: 200px;
	margin: 0 20px;
}
.contact-block_title {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	width: 100%;
	display: flex;
}
.contact-block_h3 span {
	display: block;
}
.contact-block_h3 .txt-en {
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3rem;
}
.contact-block_h3 .txt-jp {
	font-weight: 700;
	margin-top: 1em;
}
.contact-block_text {
	line-height: 1.5em;
	font-weight: 700;
}
.contact-btn-block {
	background-color: #fff;
}
.contact-btn {
	display: block;
	color: #fff;
	font-weight: 700;
	background-color: var(--primary-color);
	position: relative;
}
.contact-btn .contact-btn-txt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.contact-btn .contact-btn-arrow::after, 
.contact-btn .contact-btn-arrow::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
}
.contact-btn .contact-btn-arrow::before {
	background-color: #fff;
	border-radius: 50%;
}
.contact-btn .contact-btn-arrow::after {
	background-image: url('../../images/common/arrow-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px auto;
}

@media print, screen and (max-width: 767px) {
	.contact-block-wrap {
		margin-bottom: 60px;
	}
	.contact-block_title {
		flex-wrap: wrap;
		gap: 20px 0;
	}
	.contact-btn-block {
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: -50px;
	}
	.contact-btn {
		height: 100px;
		font-size: 1.6rem;
	}
	.contact-btn .contact-btn-txt {
		left: 12%;
	}
}

@media print, screen and (min-width: 768px) {
	.contact-block-wrap {
		padding-bottom: 120px;
	}
	.contact-block_inner {
		margin: auto;
		width: calc(100% - 40px);
		max-width: var(--layout-inner-width);
		height: 320px;
	}
	.contact-block_title {
		justify-content: space-between;
		align-items: center;
	}
	.contact-block_h3 {
		width: 40%;
	}
	.contact-block_text {
		width: calc(60% - 30px);
	}
	.contact-btn-block {
		margin: auto;
		margin-bottom: -80px;
		width: calc(100% - 80px);
		max-width: var(--layout-inner-width);
	}
	.contact-btn {
		height: 160px;
		font-size: 1.8rem;
	}
	.contact-btn .contact-btn-txt {
		left: 12%;
	}
}

@media print, screen and (min-width: 820px) {
	.contact-block_h3 .txt-en {
		font-size: 3.5rem;
	}
	.contact-block_h3 .txt-jp, 
	.contact-block_text {
		font-size: 1.6rem;
	}
	.contact-btn .contact-btn-arrow::after, 
	.contact-btn .contact-btn-arrow::before {
		width: 50px;
		height: 50px;
	}
	.contact-btn .contact-btn-arrow::after {
		background-size: 24px auto;
	}
}

@media print, screen and (min-width: 1001px) {
	.contact-block_inner {
		height: 440px;
	}
}

@media print, screen and (min-width: 1201px) {
	.contact-block_inner {
		height: 370px;
	}
	.contact-block_h3 .txt-en {
		font-size: 4rem;
	}
	.contact-block_h3 .txt-jp, 
	.contact-block_text {
		font-size: 1.7rem;
	}
	.contact-btn-block {
		margin-bottom: -90px;
	}
	.contact-btn {
		font-size: 2rem;
		height: 180px;
	}
	.contact-btn .contact-btn-arrow::after, 
	.contact-btn .contact-btn-arrow::before {
		width: 60px;
		height: 60px;
	}
	.contact-btn .contact-btn-arrow::after {
		background-size: 24px auto;
	}
}

@media print, screen and (min-width: 1401px) {
	.contact-block_inner {
		height: 500px;
	}
}

@media print, screen and (min-width: 1601px) {
	.contact-block_inner {
		height: 450px;
	}
	.contact-block_h3 .txt-en {
		font-size: 4.2rem;
	}
	.contact-block_h3 .txt-jp, 
	.contact-block_text {
		font-size: 1.8rem;
	}
	.contact-btn {
		font-size: 2.2rem;
	}
}

@media print, screen and (min-width: 1801px) {
	.contact-block_h3 .txt-en {
		font-size: 4.8rem;
	}
	.contact-btn {
		font-size: 2.4rem;
	}
}

/*------------------------------------------------
  09 フッター
------------------------------------------------*/
.footer {
	padding: 0;
	background-color: #fff;
}
.footer_inner {
	margin: 0 20px;
	padding-top: 30px;
}
.footer-logo {
	height: auto;
}
.footer-logo-image {
	width: 100%;
	height: auto;
}
.footer_foot {
	background-color: var(--primary-color);
	color: #fff;
	text-align: center;
	padding: 1em;
}

/* 上段ナビ　PC表示のみ */

/* 下段ナビ */
.footer_sub_nav_block {
	border-top: 1px solid #c6c6c6;
	border-bottom: 1px solid #c6c6c6;
	margin-top: 30px;
}
.footer-sub-nav_list {
	display: flex;
	gap: 30px;
	margin: 20px 0;
}
.footer-sub-nav__item {
	font-weight: 700;
}

/* リンクバナー */
.footer-link-banner_list {
	display: flex;
	flex-wrap: wrap;
}
.footer-link-banner_item img {
	width: 100%;
	height: auto;
}

@media print, screen and (max-width: 820px) {
	.footer-nav, 
	.footer_sub_nav_block {
		display: none;
	}
}

@media print, screen and (max-width: 767px) {
	.footer-logo {
		width: 260px;
	}
	.footer-link-banner_list {
		margin: 30px 0;
	}
	.footer_foot {
		margin-top: 60px;
	}
	.copyright {
		font-size: 1.2rem;
		text-align: center;
		line-height: 1.5em;
	}
	.link-banner_block-left {
		text-align: center;
		margin-top: 30px;
	}
	.livein-banner {
		margin: auto;
		width: 300px;
		height: 90px;
	}
}

@media print, screen and (max-width: 420px) {
	.footer_inner {
		text-align: center;
	}
	.footer-link-banner_list {
		margin: 20px 0;
	}
}

@media print, screen and (max-width: 334px) {
	.copyright {
		font-size: 1.1rem;
	}
}

@media print, screen and (min-width: 768px) {
	.footer_inner {
		margin: auto;
		width: calc(100% - 40px);
		max-width: 1160px;
	}
	.footer-logo {
		width: 280px;
	}
	.link-banner_block {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 50px 0;
	}
	.link-banner_block-left {
		width: 200px;
	}
	.link-banner_block-right {
		width: calc(100% - 250px);
	}
	.livein-banner {
		width: 200px;
		height: 60px;
	}
	.footer-link-banner_list {
		justify-content: space-between;
	}
	/*.footer-link-banner_item {
		width: calc((100% / 4) - 20px);
	}*/
}

@media print, screen and (min-width: 821px) {
	.footer_nav_block {
		margin-top: 50px;
	}
	.footer-nav__list {
		display: flex;
		justify-content: space-between;
	}
	.footer-nav__item a {
		font-size: 1.4rem;
		font-weight: 700;
		padding: 0.75em 0;
		display: block;
	}
	.footer-nav-child__item a {
		font-size: 1rem;
		font-weight: 400;
		display: block;
		padding-left: 20px;
		position: relative;
	}
	.footer-nav-child__item a::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		height: 1px;
		width: 10px;
		background-color: #ccc;
	}
	.footer-nav-child__item .footer-nav-child__item a {
		margin-left: 20px;
	}
	.footer_company_info {
		margin-top: 20px;
	}
}

@media print, screen and (min-width: 901px) {
	.footer-sub-nav_list {
		margin: 25px 0;
		gap: 35px;
	}
	.link-banner_block-left, 
	.link-banner_block-right {
		width: 50%;
	}
	.livein-banner {
		width: 250px;
		height: 75px;
	}
}

@media print, screen and (min-width: 1001px) {
	.footer-logo {
		width: 300px;
	}
	.footer_nav_block {
		margin-top: 60px;
	}
	.footer-nav__item a {
		font-size: 1.6rem;
	}
	.footer-nav-child__item a {
		font-size: 1.2rem;
	}
	.footer_nav_block {
		margin-top: 70px;
	}
}

@media print, screen and (min-width: 1201px) {
	.footer_nav_block {
		margin-top: 70px;
	}
	.footer-sub-nav_list {
		margin: 30px 0;
		gap: 40px;
	}
	.livein-banner {
		width: 333px;
		height: 100px;
	}
}

@media print, screen and (min-width: 1401px) {
	.footer_nav_block {
		margin-top: 80px;
	}
	.footer-logo {
		width: 320px;
	}
	.footer-sub-nav_list {
		gap: 50px;
	}
}

@media print, screen and (min-width: 1601px) {
	.footer_nav_block {
		margin-top: 90px;
	}
	.footer-sub-nav_list {
		gap: 60px;
	}
}

/*------------------------------------------------
  10 ローディング画面
------------------------------------------------*/
#splash {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	text-align: center;
	color: #fff;
}
.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 80%;
	max-width: 300px;
	height: auto;
	margin: auto;
}
.logo img {
	width: 100%;
	height: auto;
}
.spinner {
	margin: auto;
	margin-top: 20px;
	width: 50px;
	height: 40px;
	text-align: center;
}
.spinner > div {
	background-color: #fff;
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
  
@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
	20% { -webkit-transform: scaleY(1.0) }
}
  
@keyframes sk-stretchdelay {
	0%, 40%, 100% { 
	  transform: scaleY(0.4);
	  -webkit-transform: scaleY(0.4);
	}
	20% { 
	  transform: scaleY(1.0);
	  -webkit-transform: scaleY(1.0);
	}
}

/*------------------------------------------------
  11 各ページ共通
------------------------------------------------*/
/* ページタイトル */
.page-title {
	position: relative;
	background-color: #fff;
	height: 300px;
	display: flex;
	align-items: flex-end;
}
.page-title-inner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	display: block;
	margin-top: 80px;
	height: 200px;
	width: 100%;
}
.page-title-inner::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url('../../images/common/page-title-line.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: auto 75%;
}
.page-title-item {
	margin-left: 20px;
	margin-right: 20px;
}
.page-title-h2 {
	margin-top: -4em;
	display: block;
}
.page-title-h2 span {
	display: block;
}
.page-title-h2-jp {
	font-weight: 700;
}
.page-title-h2-en {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: var(--primary-color);
	font-size: 4rem;
	text-transform: uppercase;
	line-height: 1em;
}
/* ページ概要 背景テキスト */
.page-overview {
	position: relative;
	height: calc(12rem + var(--header-sp-height));
}
.page-overview-inner {
    margin: auto;
    width: calc(100% - 40px);
	max-width: var(--layout-inner-width);
}
.page-overview-h2 {
	position: absolute;
	z-index: -1;
	top: var(--header-sp-height);
	left: 0;
	bottom: 0;
	display: inline-block;
	width: 100%;
}
.page-overview-h2 span {
	position: absolute;
	font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 12rem;
    text-transform: uppercase;
    line-height: 1;
	white-space: nowrap;
}
.page-overview-h2 span.page-overview-h2-paint {
	bottom: 0;
	right: 10px;
	color: #e9f5fa;
}
.page-overview-h2 span.page-overview-h2-frame {
	color: rgb(255, 255, 255, 0);
	-webkit-text-stroke: 1px #f3f4f6;
	text-stroke: 1px #f3f4f6;
	bottom: -10px;
	right: 0;
}
.page-overview-h2.overview-leftside span.page-overview-h2-paint {
	left: -10px;
}
.page-overview-h2.overview-leftside span.page-overview-h2-frame {
	left: 0;
}
.page-overview-heading {
	font-weight: 900;
	font-size: 2.8rem;
}
.page-overview-detail p {
	padding: 0.5em 0;
	font-weight: 700;
}
/* 小見出し01 */
.common-block-heading {
    border-left: 10px solid var(--primary-color);
    padding-left: 20px;
}
.common-block-heading span {
    display: block;
    color: var(--primary-color);
    line-height: 1.5em;
}
.common-block-heading-jp {
    font-size: 1.8rem;
    font-weight: 900;
}
.common-block-heading-en {
    text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
    font-size: 1.2rem;
    padding-left: 22px;
    position: relative;
}
.common-block-heading-en::before {
    content: '';
    width: 16px;
    height: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-image: url('../../images/products/heading-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 8px;
}
/* 小見出し02 */
.common-block-heading-var {
	margin-bottom: 1em;
}
.common-block-heading-var span {
	display: block;
	line-height: 1.5em;
}
.common-block-heading-var-en {
    text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3.2rem;
	color: var(--primary-color);
}
.common-block-heading-var-jp {
	margin-top: 1em;
	font-size: 1.4rem;
	font-weight: 700;
}
/* コンテンツ */
.section-container {
	margin: auto;
	padding: 20px;
	max-width: var(--layout-outer-width);
}
.bg-color-white {
	background-color: #fff;
}
.bg-color-dark {
	background-color: var(--primary-color);
}
.common-heading span {
	display: block;
}
.common-heading-en {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3.6rem;
	color: var(--primary-color);
	text-transform: uppercase;
	line-height: 1.5em;
}
.common-heading-jp {
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.5em;
}
/* リンクボタン */
.common-link-btn a {
	display: block;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	border-radius: 50%;
	position: relative;
	z-index: 2;
}
.common-link-btn a .btn-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 40px;
	height: 40px;
	display: block;
	background-image: url('../../images/common/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px auto;
}
.common-link-btn-sp {
	margin-top: 30px;
}
.common-link-btn-sp a {
	background-color: var(--primary-color);
	display: block;
	font-weight: 700;
	color: #fff;
	padding: 2em;
	position: relative;
}
.common-link-btn-sp .btn-arrow {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2em
}
.common-link-btn-sp .btn-arrow::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 40px;
	height: 40px;
	display: block;
	background-image: url('../../images/common/arrow-blue.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px auto;
}
/* ブロック仕切り */
.block-partition {
	background-image: url('../../images/common/logo_paht.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px auto;
	height: 12px;
}

@media print, screen and (max-width: 767px) {
    .page-overview-inner {
        position: absolute;
        left: 20px;
        bottom: 0;
    }
    .page-overview-h2 {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media print, screen and (min-width: 420px) {
    .common-block-heading-jp {
        font-size: 2.2rem;
    }
}

@media print, screen and (min-width: 768px) {
	.page-title-h2-jp {
		font-size: 1.6rem;
	}
	.page-title-h2-en {
		font-size: 5.4rem;
	}
	.page-overview {
		height: calc(17rem + var(--header-sp-height));
	}
	.page-overview-h2 span {
		font-size: 17rem;
	}
	.page-overview-heading {
		font-size: 3.5rem;
	}
	.section-container {
		padding: 0;
	}
	.section-title-en {
	  font-size: 6.4rem;
	}
	.section-title-jp {
	  font-size: 2rem;
	}
	.section-text {
	  text-align: center;
	}
	.common-heading-en {
		font-size: 4rem;
	}
	.common-heading-jp {
		font-size: 1.6rem;
	}
    .common-block-heading {
        padding-left: 24px;
    }
    .common-block-heading-jp {
        font-size: 2.6rem;
    }
	.common-block-heading-var span {
		line-height: 1;
	}
	/* 左寄せ・右寄せブロック */
	.protrude-left, 
	.protrude-right {
		box-shadow: 20px 20px 40px rgba(var(--primary-color-rgb), 0.1);
	}
}

@media print, screen and (min-width: 821px) {
	.page-title-inner {
		margin-top: 90px;
		height: 250px;
	}
	.page-title-inner::after {
		background-size: auto 85%;
	}
	.common-link-btn a {
		width: 50px;
		height: 50px;
	}
	.common-link-btn a .btn-arrow {
		background-size: 24px auto;
	}
	.page-overview {
		height: calc(19rem + var(--header-pc-height));
	}
	.page-overview-h2 span {
		font-size: 19rem;
	}
}

@media print, screen and (min-width: 901px) {
	.page-title {
		height: 410px;
	}
	.page-title-inner {
		margin-top: 110px;
		height: 300px;
	}
	.page-title-inner::after {
		background-size: auto 100%;
	}
	.page-title-item {
		margin: auto;
		width: calc(100% - 40px);
		max-width: var(--layout-max-width);
	}
	.page-title-h2 {
		margin-top: -5em;
	}
	.page-title-h2-jp {
		font-size: 1.8rem;
	}
	.page-title-h2-en {
		font-size: 6rem;
	}
	.page-overview {
		height: calc(22rem + var(--header-pc-height));
	}
	.page-overview-h2 span {
		font-size: 22rem;
	}
	.page-overview-heading {
		font-size: 4rem;
	}
	.page-overview-detail p {
		padding: 1em 0;
		font-size: 1.6rem;
	}
	.common-heading-en {
		font-size: 4.8rem;
	}
	.common-heading-jp {
		font-size: 1.8rem;
	}
    .common-block-heading {
        border-left: 14px solid var(--primary-color);
        padding-left: 30px;
    }
    .common-block-heading-jp {
        font-size: 3rem;
    }
    .common-block-heading-en {
        font-size: 1.3rem;
    }
	.common-block-heading-var-en {
		font-size: 3.4rem;
	}
	.block-partition {
		background-size: 30px auto;
		height: 22px;
	}
}

@media print, screen and (min-width: 1001px) {
	.page-overview {
		height: calc(26rem + var(--header-pc-height));
	}
	.page-overview-h2 span {
		font-size: 26rem;
	}
}

@media print, screen and (min-width: 1101px) {
	.page-overview {
		height: calc(28rem + var(--header-pc-height));
	}
	.page-overview-h2 span {
		font-size: 28rem;
	}
}

@media print, screen and (min-width: 1201px) {
	.page-title-h2-en {
		font-size: 7.2rem;
	}
	.page-overview {
		height: calc(30rem + var(--header-pc-height));
	}
	.page-overview-h2 span {
		font-size: 30rem;
	}
	.page-overview-heading {
		font-size: 4.6rem;
	}
	.common-link-btn a {
		width: 60px;
		height: 60px;
	}
	.common-link-btn a .btn-arrow {
		background-size: 26px auto;
	}
    .common-block-heading {
        padding-left: 35px;
    }
    .common-block-heading-jp {
        font-size: 3.4rem;
    }
	.common-block-heading-var-en {
		font-size: 4rem;
	}
	.common-block-heading-var-jp {
		font-size: 1.8rem;
	}
}

@media print, screen and (min-width: 1401px) {
	.page-overview {
		height: calc(32rem + var(--header-pc-height));
	}
	.page-overview-h2 span {
		font-size: 32rem;
	}
	.common-block-heading {
        padding-left: 40px;
    }
    .common-block-heading-jp {
        font-size: 3.6rem;
    }
    .common-block-heading-en {
        font-size: 1.4rem;
    }
	.common-block-heading-var-en {
		font-size: 4.8rem;
	}
}

@media print, screen and (min-width: 1601px) {
    .page-overview {
		height: calc(34.5rem + var(--header-pc-height));
	}
	.page-overview-h2 span {
		font-size: 34.5rem;
	}
	.common-block-heading {
        padding-left: 46px;
    }
}

/*------------------------------------------------
  12 背景にひし形の図形
------------------------------------------------*/
.bg-rhombus {
    position: relative;
    overflow: hidden;
}
.bg-rhombus::before, 
.bg-rhombus::after {
    background-image: url('../../images/common/common-bg-line.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 800px 438px;
    position: absolute;
    content: '';
    width: 800px;
    height: 438px;
    z-index: -2;
}
.bg-rhombus::before {
    left: -80%;
}
.bg-rhombus::after {
    right: -80%;
}

@media print, screen and (min-width: 768px) {
    .bg-rhombus::before, 
    .bg-rhombus::after {
        background-size: 1083px 593px;
        width: 1083px;
        height: 593px;
    }
    .bg-rhombus::before {
        left: -55%;
    }
    .bg-rhombus::after {
        right: -60%;
    }
}

@media print, screen and (min-width: 901px) {
    .bg-rhombus::before, 
    .bg-rhombus::after {
        background-size: 1600px 875px;
        width: 1600px;
        height: 875px;
    }
    .bg-rhombus::before {
        left: -55%;
    }
    .bg-rhombus::after {
        right: -60%;
    }
}

@media print, screen and (min-width: 1201px) {
    .bg-rhombus::before, 
    .bg-rhombus::after {
        background-size: 1800px 985px;
        width: 1800px;
        height: 985px;
    }
}

@media print, screen and (min-width: 1601px) {
    .bg-rhombus::before, 
    .bg-rhombus::after {
        background-size: 2166px 1185px;
        width: 2166px;
        height: 1185px;
    }
    .bg-rhombus::before {
        left: -45%;
    }
    .bg-rhombus::after {
        right: -60%;
    }
}

/*------------------------------------------------
  13 関連ページリンク
------------------------------------------------*/
.relation-link {
    margin-top: 60px;
    margin-bottom: 60px;
}
.relation-link-inner {
    margin: auto 20px;
}
.relation-link-heading {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1em;
    position: relative;
    padding-left: 24px;
}
.relation-link-heading span {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: var(--primary-color);
}
.relation-link-heading span::before, 
.relation-link-heading span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background-color: var(--primary-color);
}
.relation-link-heading span::before {
    top: -4px;
}
.relation-link-heading span::after {
    bottom: -4px;
}
.relation-link-item {
    margin: 1em 0;
	height: 4em;
	display: table;
	width: 100%;
}
.relation-link-item a {
    display:table-cell;
	vertical-align: middle;
    background-color: #f5f5f5;
    padding: 0.6em 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    border-radius: 100px;
    position: relative;
	line-height: 1.25em;
	text-transform: uppercase;
	width: 100%;
	height: 100%;
}
.relation-link-item a::before, 
.relation-link-item a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}
.relation-link-item a::before {
    background-color: var(--primary-color);
    border-radius: 50%;
}
.relation-link-item a::after {
	background-image: url('../../images/common/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px auto;
}

@media print, screen and (min-width: 390px) {
    .relation-link-list {
        display: flex;
        flex-wrap: wrap;
		align-items: stretch;
        gap: 20px;
    }
    .relation-link-item {
        width: calc(50% - 10px);
        font-size: 1.2rem;
        margin: 0;
    }
	.relation-link-item a {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
	}
}

@media print, screen and (min-width: 391px) and (max-width: 560px) {
    .relation-link-list.oligo1 .relation-link-item:nth-of-type(3) {
        width: calc(100% - 10px);
    }
}

@media print, screen and (min-width: 768px) {
    .relation-link-item {
        width: calc(100% / 3 - 24px);
        font-size: 1.4rem;
    }
    .relation-link-list.oligo1 .relation-link-item {
        width: calc(100% / 2 - 24px);
    }
}

@media print, screen and (min-width: 901px) {
    .relation-link {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .relation-link-inner {
        margin: auto;
        width: calc(100% - 40px);
        max-width: var(--layout-inner-width);
    }
    .relation-link-heading {
        font-size: 1.6rem;
        margin-bottom: 1.5em;
        padding-left: 32px;
    }
    .relation-link-heading span, 
    .relation-link-heading span::before, 
    .relation-link-heading span::after {
        width: 20px;
    }
    .relation-link-list {
        gap: 20px 36px;
    }
    .relation-link-item a::before, 
    .relation-link-item a::after {
        right: 15px;
        width: 30px;
        height: 30px;
    }
    .relation-link-item a::after {
        background-size: 14px auto;
    }
}

@media print, screen and (min-width: 1001px) {
    .relation-link-list.oligo1 .relation-link-item {
        width: calc(100% / 3 - 24px);
    }
}

@media print, screen and (min-width: 1201px) {
    .relation-link-heading {
        font-size: 1.8rem;
        margin-bottom: 2em;
    }
    .relation-link-list {
        gap: 20px 40px;
    }
    .relation-link-item {
        width: calc(100% / 4 - 30px);
        font-size: 1.6rem;
    }
    .relation-link-list.oligo1 .relation-link-item {
        width: calc(100% / 3 - 30px);
    }
}

/*------------------------------------------------
  14 検索結果画面
------------------------------------------------*/
.search-result .page-title-inner {
    background-image: url('../../images/common/page-title-bg-search.jpg');
}
.main.bg-rhombus.search-result::before {
    top: calc(60%);
	transform: translateY(-50%);
}
.main.bg-rhombus.search-result::after {
    background: none;
}
.search-content-inner {
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	width: calc(100% - 40px);
	max-width: var(--layout-inner-width);
}
.search-heading {
	border: 1px solid var(--primary-color);
	padding: 1em;
}
.search-detail {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--primary-color);
}
.search-number {
	margin: 0 0.25em;
	font-size: 2rem;
	color: #f00;
}
.num-detail {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 2.2rem;
}
.search-results-wrap {
	margin-top: 50px;
	counter-reset: resalt_count;
}
.search-results {
	margin: 1.5em 0;
	padding: 1em 0;
	border-bottom: 1px solid #d1dbe8;
}
.search-results:last-of-type {
	border-bottom: none;
}
.search-result__title {
	font-size: 1.6rem;
	font-weight: 700;
	padding-left: 1em;
	color: var(--primary-color);
	position: relative;
}
.search-result__title::before {
	counter-increment: resalt_count;
    content: counter(resalt_count)".";
	font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary-color);
}
.search-result__excerpt {
	margin-left: 1em;
}

@media print, screen and (min-width: 901px) {
	.search-content-inner {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	.search-detail {
		font-size: 1.8rem;
	}
	.search-number {
		font-size: 2.4rem;
	}
	.num-detail {
		font-size: 3rem;
	}
	.search-result__title {
		font-size: 1.8rem;
	}
}

@media print, screen and (min-width: 1201px) {
	.search-content-inner {
		margin-top: 100px;
		margin-bottom: 100px;
	}
}

/*------------------------------------------------
  15 404エラー画面
------------------------------------------------*/
.main-conts_inner {
	margin: 30px;
}
.error-conts {
    padding: 2em 1em;
    text-align: center;
    /*background-color: rgb(255, 255, 255, .85);*/
    margin: auto;
}
.error-conts_h2 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    color: var(--primary-color);
}
.error-conts_h2 span {
    display: block;
}
.error-conts_h2_large {
    font-weight: 700;
}
.error-conts_h2_small {
    font-weight: 500;
}
.error-conts_p {
    font-weight: 500;
    margin-top: 1em;
    line-height: 2em;
}

@media screen and (max-width: 767px) {
    .main-conts_inner {
        padding: 100px 20px;
    }
    .error-conts_h2_large {
        font-size: 8rem;
    }
    .error-conts_h2_small {
        font-size: 2rem;
    }
    .error-conts_p {
        font-size: 1.5rem;
    }
}

@media print, screen and (min-width: 768px) {
	.main-conts_inner {
		margin: 30px auto;
		padding: 80px 0;
		width: 95%;
		max-width: var(--layout-inner-width);
	}
	.error-conts {
        width: 560px;
    }
    .error-conts_h2_large {
        font-size: 15rem;
    }
    .error-conts_h2_small {
        font-size: 4rem;
    }
    .error-conts_p {
        font-size: 1.8rem;
    }
}

/*------------------------------------------------
  16 ページネーション
------------------------------------------------*/
.pager-list {
    height: 32px;
    line-height: 1;
    margin: 15px auto 60px;
    width: 100%;
    font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.pager-list,
.pager-list a {
    align-items: center;
    display: flex;
    justify-content: center;
}
.pager-list a {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    flex-direction: column;
    height: calc(var(--layout-gap)/1.25);
    margin: 0 calc(var(--layout-gap)/8);
    min-width: calc(var(--layout-gap)/1.25);
    padding: 0 calc(var(--layout-gap)/6);
    width: calc(var(--layout-gap)/1.25);
}
.pager-list a.next{
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
    padding: 0 calc(var(--layout-gap)/1.75);
}
.pager-list a.current {
    border: 1px solid var(--primary-color);
}
.pager-list a.current,
.pager-list a:hover {
    background: var(--primary-color);
    color: #fff;
}

@media print, screen and (min-width: 768px) {
    .pager-list a {
        font-size: 1.4rem;
    }
    .pager-list {
        font-size: 1.2rem;
        height: 42px;
        margin: 30px auto 100px;
    }
    .pager-list a {
        height: var(--layout-gap);
        margin: 0 calc(var(--layout-gap)/8);
        min-width: var(--layout-gap);
        padding: 0 calc(var(--layout-gap)/4);
        width: var(--layout-gap);
    }
    .pager-list a.next {
        padding: 0 calc(var(--layout-gap)/1);
    }
}

@media print, screen and (min-width: 901px) {
    .pager-list a {
        font-size: 1.6rem;
    }
}
