@charset "UTF-8";

/*-----------------------------------------------

-- 01 Variables
-- 02 コンテンツが少ない場合にフッターを最下部に固定
-- 03 基本
-- 04 ヘッダー
-- 05 ロゴ
-- 06 グローバルナビゲーション
-- 07 お問い合わせ
-- 08 ページトップへ戻る
-- 09 フッター
-- 10 各ページ共通
----- A ページタイトル
----- B 共通見出し
----- C 新着情報
----- D ページ内リンク

.oswald(200-700) {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.poppins(100-900) {
    font-family: "Poppins", sans-serif;
    font-weight: <weight>;
    font-style: normal;
}
.lexend(100-900) {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

------------------------------------------------*/

/*------------------------------------------------
  01 Variables
------------------------------------------------*/
:root {
    /* Color */
    --primary-color:          #006aad;
	--primary-hover-color:    #4d97c6;
	--secondary-color:        #e5f0f7;
	--gradation01:            linear-gradient(135deg,  #006baf 0%,#0099fa 100%);
	--gradation02:            linear-gradient(to right,  #006baf 0%,#0099fa 100%);
	--basic-text-color:       #293a3d;

	/* width */
	--basic-sp-width:     calc(100% - 40px); /* スマホ最大幅 */
	--wide-width:         1520px;            /* PC最大幅 */
	--basic-width:        1160px;            /* PC標準幅 */

    /* header-height */
    --header-sp-height:          80px; /* スマホ */
	--header-sp-height-adjust:  -80px; /* スマホ調整 */
	--header-pc-height:         170px; /* PC */
	--header-pc-height-adjust: -170px; /* PC調整 */
}

/*------------------------------------------------
  02 コンテンツが少ない場合にフッターを最下部に固定
------------------------------------------------*/
html {
	display: flex;
	flex-direction: column;
	scroll-padding-top: var(--header-height);
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
}

main {
	flex-grow: 1;
	min-height: 1%;
	overflow: hidden;
}

@media screen and (min-width: 768px) {
	body {
		min-height: 100vh;
	}
}

/*------------------------------------------------
  03 基本
------------------------------------------------*/
html {
	font-size: 62.5%;
	background-color: #fff;
	color: var(--basic-text-color);
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.5em;
}
body {
	font-size: 1.4rem;
	position: relative;
}
/* 行間 */
p,h1,h2,h3,h4,h5,h6,li,dt,dd,th,td,div {
	line-height: normal;
}

@media screen and (min-width: 768px) {
	body {
		font-size: 1.6rem;
	}
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

*, *::before, *::after {
	box-sizing: border-box;
}
.clearfix::after {
	content:'';
	display: block;
	clear: both;
}
a:hover {
	opacity: .8;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
img {
	width: 100%;
	height: auto;
}

/*スマートフォンの時は非表示*/
@media screen and (max-width: 767px) {
	.only_pc {
		display: none;
	}
}

/*PCの時は非表示*/
@media screen and (min-width: 768px) {
	.only_sp {
		display: none;
	}
}

/*------------------------------------------------
  04 ヘッダー
------------------------------------------------*/
header {
	position: sticky;
	z-index: 2;
	top: 0;
}
.header_border {
	width: 100%;
	height: 10px;
	background: var(--gradation02);
}
.header_inner {
	position: relative;
	margin: auto;
	height: calc(var(--header-sp-height) - 10px);
}

@media screen and (min-width: 768px) {
	.header_inner {
		height: calc(var(--header-pc-height) - 10px);
	}
}

/*------------------------------------------------
  05 ロゴ
------------------------------------------------*/
.header_logo_block {
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	background-color: #fff;
}
.header_logo {
	z-index: 1;
	width: 140px;
}
.footer_logo {
	margin: auto;
	width: 180px;
	filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7483%) hue-rotate(74deg) brightness(103%) contrast(104%);
}
.header_right {
	display: flex;
	align-items: center;
}
.language_list {
	display: flex;
	position: relative;
	padding-left: 30px;
}
.language_list::before {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url('../../images/common/icon_globe.svg');
	background-repeat: no-repeat;
	background-size: 20px 20px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.language_item:first-of-type {
	padding-right: 1em;
	margin-right: 1em;
	border-right: 1px solid #ccc;
}
.language_item a {
	color: #ccc;
	display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
	font-size: 2rem!important;
	text-transform: uppercase;
	line-height: 1;
}
.language_item.language_carrent a {
	color: var(--basic-text-color);
}
.language_item a:hover {
	color: var(--primary-color);
}
.contact a {
	display: block;
	font-weight: 500;
	color: #fff;
	padding: 1em 2em;
	padding-left: calc(18px + 2.75em);
	background: var(--gradation01);
	border-radius: 100px;
	position: relative;
}
.contact a::before {
	content: '';
	background-image: url('../../images/common/Icon_mail.svg');
	background-repeat: no-repeat;
	background-size: 18px 18px;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 2em;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
	.header_right {
		display: none;
	}
	.language {
		margin: 30px 20px 0 20px;
	}
	.language_list {
		justify-content: center;
	}
	.language_list::before {
		left: 50%;
		transform: translateY(-50%) translateX(calc(-50% - 20px - 1.5em));
		filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(42deg) brightness(100%) contrast(105%);
	}
	.language_item a {
		color: #eee;
	}
	.language_item.language_carrent a {
		color: #fff;
	}
}

@media screen and (min-width: 768px) {
	.header_logo_block {
		height: 100px;
		justify-content: space-between;
		position: relative;
		z-index: 1;
	}
	.logo_block {
		height: auto;
	}
	.header_logo {
		width: 207px;
	}
	.footer_logo {
		width: 262px;
	}
	.language {
		margin-right: 50px;
	}
}


/*------------------------------------------------
  06 グローバルナビゲーション
------------------------------------------------*/
/*-- ドロワーメニュー（PC非表示） --*/
#menu-btn-check {
	display: none;
}
.menu-btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translatey(-50%);
	cursor: pointer;
	width: 30px;
	height: 30px;
	z-index: 1;
}
.menu-btn span {
	display: inline-block;
	transition: all .3s;
	position: absolute;
}
.menu-btn span:nth-of-type(1), 
.menu-btn span:nth-of-type(2), 
.menu-btn span:nth-of-type(3) {
	height: 2px;
	border-radius: 5px;
	background-color: var(--primary-color);
	width: 100%;
	left: 50%;
}
.menu-btn span:nth-of-type(1) {
	top: 20%;
	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: 20%;
	transform: translateX(-50%);
}
.menu-btn.active span:nth-of-type(1) {
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	width: 100%;
}
.menu-btn.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-btn.active span:nth-of-type(3) {
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	width: 100%;
}
.header-nav__item a, 
.contact_nav_item a {
	display: block;
}
.header-nav__item {
	position: relative;
}
.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);
}

/* スマホの場合 */
@media screen and (max-width: 767px) {
	.menu-content a {
		font-weight: 400;
		font-size: 1.5rem;
	}
	.header-nav__list {
		padding: 20px 40px 0;
	}
	.header-nav__item a {
		display: block;
		position: relative;
		padding: 1em 0;
		text-align: left;
		border-bottom: 1px solid rgba(255,255,255,.5);
	}
	.header-nav__item a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 5px;
		width: 15px;
		height: 2px;
		background-color: #fff;
		transform: translateY(-50%);
	}
	.header-nav__item a::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 5px;
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: translateY(-50%) rotate(45deg);
	}
	.header-nav__item.item_parent a::before, 
	.header-nav__item.item_parent a::after {
		display: none;
	}
	.header-nav__item.item_parent .header-nav-child__item a::before, 
	.header-nav__item.item_parent .header-nav-child__item a::after {
		display: block;
	}
	.header-nav-child__list {
		display: none;
		margin-left: 1em;
	}
	.header-nav-grandchild__list {
		margin-left: 1em;
	}
	.header-nav__item .touch-btn {
		width: 36px;
		height: 36px;
		border-radius: 5px;
		right: 0;
		top: 9px;
		background-color: var(--primary-hover-color);
	}
	.header-nav__item .touch-btn::before, 
	.header-nav__item .touch-btn::after {
		width: 22px;
		height: 2px;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.header-nav__item .touch-btn::after {
		transform: translate(-50%,-50%) rotate(90deg);
	}
	.header-nav__item .touch-btn.active::after {
		transform: translate(-50%,-50%) rotate(0deg);
	}
	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: var(--header-sp-height);
		left: 100%;
		z-index: 0;
		background-color: var(--primary-color);
		transition: all 0.3s;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		color: #fff;
		padding-bottom: 100px;
	}
	#menu-btn-check:checked ~ .menu-content {
		left: 0;
	}
	.contact_nav.only_sp {
		display: block;
	}
	.contact_nav {
		padding: 0 20px;
	}
	.contact_nav_item {
		text-align: center;
		padding: 0.5em 0;
	}
	.contact_nav_item.item_tel a {
		position: relative;
		font-family: "Oswald", serif;
		font-optical-sizing: auto;
		font-weight: 900;
		font-style: normal;
		font-size: clamp(3rem, 1.364rem + 8.18vw, 7.5rem);
		display: inline-block;
		padding-left: 55px;
	}
	.contact_nav_item.item_tel a::before {
		content: '';
		position: absolute;
		top: 55%;
		left: 0;
		transform: translateY(-50%);
		width: 46px;
		height: 56px;
		background-image: url('../../images/common/icon_tel.svg');
		background-repeat: no-repeat;
		background-size: 100% 100%;
		filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(42deg) brightness(100%) contrast(105%);
	}
	.contact__reception {
		display: block;
	}
	.contact_nav_item.item_contact {
		width: 100%;
		max-width: 500px;
		margin: auto;
	}
	.contact_nav_item.item_contact a {
		display: block;
		background-color: #fff;
		color: var(--primary-color);
		font-weight: 700;
		padding: 1em 2em;
		margin: auto 20px;
		border-radius: 5px;
	}
	.header-nav-grandchild__item {
		position: relative;
	}
	.header-nav-grandchild__item::before {
		content: '';
		height: 2px;
		width: 10px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.header-nav-grandchild__item a {
		padding-left: calc(10px + 0.5em);
	}
}

@media screen and (max-width: 420px) {
	.contact_nav_item.item_tel a {
		padding-left: 50px;
	}
	.contact_nav_item.item_tel a::before {
		width: 41px;
		height: 50px;
		background-size: 41px 50px;
	}
}

@media screen and (max-width: 360px) {
	.contact_nav_item.item_tel a {
		padding-left: 40px;
	}
	.contact_nav_item.item_tel a::before {
		width: 30px;
		height: 37px;
		background-size: 30px 37px;
	}
}

/* PCの場合 */
@media screen and (min-width: 768px) {
	.menu-btn {
		display: none;
	}
	.header-nav {
		transition: all .3s;
		position: relative;
	}
	.header-nav__list {
		height: 60px;
		display: flex;
		align-items: center;
		background-color: #fff;
		border-top: 1px solid #e6e6e6;
		border-left: 1px solid #e6e6e6;
	}
	.header-nav__item {
		width: calc(100% / 6);
		height: 100%;
		border-right: 1px solid #e6e6e6;
		border-bottom: 1px solid #e6e6e6;
	}
	.header-nav__item a {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
		font-size: 1.3rem;
		background-color: #fff;
		text-transform: uppercase;
		position: relative;
		z-index: 1;
	}
	.header-nav__item a:hover {
		color: var(--primary-color);
		background-color: #eee;
	}
	.header-nav__item.current a {
		background-color: var(--primary-color);
		color: #fff;
	}
	.header-nav__item.item_parent a {
		padding-bottom: 1em;
	}
	.header-nav__item.item_parent a::after {
		content: '';
		width: 8px;
		height: 8px;
		border-right: 2px solid var(--primary-color);
		border-bottom: 2px solid var(--primary-color);
		position: absolute;
		bottom: 1em;
		left: 50%;
		transform: translateX(-50%) rotate(45deg);
	}
	.header-nav__item.item_parent.current a::after {
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
	/* 第二階層 */
	.header-nav__list > li > ul.header-nav-child__list {
		/**/opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		min-width: 9.5em;
		height: 0;
		transition: all .3s;
		z-index: -1;
	}
	.header-nav__list > li:hover > ul.header-nav-child__list {
		height: auto;
		opacity: 1;
		visibility: visible;
		top: 100%;
	}
	.header-nav-child__item {
		border-bottom: 1px solid #aaa;
	}
	.header-nav-child__item:last-of-type {
		border-bottom: none;
	}
	.header-nav-child__item a {
		justify-content: start;
		font-weight: 500;
		padding: 1.5em;
		color: #fff;
		background-color: var(--primary-color);
	}
	.header-nav-child__item a:hover {
		color: #fff;
		background-color: var(--primary-hover-color);
		opacity: 1;
	}
	.header-nav-child__item a::after {
		border-right: none!important;
		border-bottom: none!important;
	}
	.header-nav.hide {
		transform: translateY(-60px);
	}
}

/*------------------------------------------------
  07 お問い合わせ
------------------------------------------------*/

/*------------------------------------------------
  08 ページトップへ戻る
------------------------------------------------*/
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 0;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
	z-index: 3;
}
#pagetop a {
	display: flex;
	justify-content:center;
	align-items:center;
	background-color: #ccc;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	border-bottom: none;
}
#pagetop a:hover {
	background-color: #688299;
	opacity: 1;
}
.pagetop_arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(20%) rotate(-45deg);
}
#pagetop a:hover > .pagetop_arrow {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

@media screen and (min-width: 768px) {
	#pagetop a {
		width: 50px;
		height: 50px;
	}
}

@media screen and (min-width: 1001px) {
	#pagetop a {
		width: 70px;
		height: 70px;
	}
}

/*　上に上がる動き　*/
#pagetop.UpMove {
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/
#pagetop.DownMove {
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}

/*------------------------------------------------
  09 フッター
------------------------------------------------*/
.footer {
	background-color: #fff;
	position: relative;
	padding-top: 60px;
}
.footer_inner {
	margin: auto;
	margin-bottom: 50px;
	width: var(--basic-sp-width);
	max-width: var(--basic-width);
}
.sub_nav_list {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.sub_nav_item a {
	display: block;
	margin-right: 0.5em;
	padding-right: 0.5em;
	border-right: 1px solid #fff;
	font-size: 0.95rem;
}
.sub_nav_item:last-of-type a {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.footer_bottom {
	background: var(--gradation02);
}
.footer_bottom_inner {
	margin: auto;
	width: var(--basic-sp-width);
	height: 100%;
	color: #fff;
	padding: 1.25em 0;
}
.footer_sub_list {
	display: flex;
	justify-content: center;
	gap: 20px;
	width: 100%;
}
.footer_sub_list_item a {
	display: block;
	font-size: 1.3rem;
}
.footer_copyright {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-top: 1em;
	text-align: center;
}
.link_bunner {
	margin-top: 40px;
	display: flex;
	gap: 20px;
	flex-direction: column;
}
.link_bunner_item a {
	margin: auto;
	width: 100%;
	max-width: 280px;
	display: block;
}

@media screen and (max-width: 767px) {
	.footer-nav {
		display: none;
	}
}

@media screen and (min-width: 360px) {
	.sub_nav_item a {
		margin-right: 1em;
		padding-right: 1em;
		font-size: 1rem;
	}
}

@media screen and (min-width: 411px) {
	.sub_nav_item a {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 768px) {
	.footer {
		padding-top: 100px;
	}
	.footer_inner {
		margin-bottom: 80px;
	}
	.footer-nav {
		margin-top: 80px;
	}
	.footer-nav__list {
		display: flex;
		justify-content: space-between;
	}
	.footer-nav__item {
		width: calc(100% / 6);
	}
	.footer-nav__item a {
		display: block;
		width: 100%;
		font-size: 1.6rem;
	}
	.footer-nav-child__list {
		margin-top: 1em;
	}
	.footer-nav-child__item a {
		margin-bottom: 1em;
		font-size: 1.2rem;
		position: relative;
		padding-left: calc(10px + 0.75em);
	}
	.footer-nav-child__item:last-of-type a {
		margin-bottom: 0;
	}
	.footer-nav-child__item a::before {
		content: '';
		width: 10px;
		height: 1px;
		background-color: #ccc;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.link_bunner {
		margin-top: 80px;
		flex-direction: row;
		justify-content: center;
	}
	.footer_bottom {
		padding: 1.5em 1em;
	}
	.footer_bottom_inner {
		display: flex;
		align-items: center;
		padding: 0;
	}
    .sub_nav_list, 
    .footer_copyright {
        width: 50%;
    }
	.sub_nav_list {
		margin-bottom: 0;
		justify-content: flex-start;
	}
	.sub_nav_item a {
		font-size: 1.4rem;
	}
	.footer_sub_list {
		justify-content: flex-start;
		gap: 50px;
	}
	.footer_copyright {
		text-align: right;
		margin-top: 0;
	}
}

@media screen and (min-width: 1001px) {
	.footer-nav__item a {
		font-size: 1.8rem;
	}
	.footer-nav-child__item a {
		font-size: 1.4rem;
	}
}

/*------------------------------------------------
  10 各ページ共通
------------------------------------------------*/
/*========== A ページタイトル ==========*/
.page_title {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 250px;
}
.page_title_inner {
	margin: auto;
	width: 100%;
	max-width: var(--wide-width);
	height: 100%;
}
.page_title_item {
	margin-left: 0;
	margin-right: auto;
	width: 100%;
	max-width: 566px;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*========== ページタイトル-第二階層 ==========*/
.page_title_item.second-level::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--primary-color);
	mix-blend-mode: multiply;
}
.common-page-title {
	color: var(--primary-color);
	position: relative;
	z-index: 1;
}
.common-page-title span {
	display: block;
}
.page_title_item.second-level .common-page-title span:first-of-type {
	font-weight: 900;
	font-size: 3rem;
	margin-bottom: 0.5em;
}
.page_title_item.second-level .common-page-title span:last-of-type {
	font-weight: 500;
	font-size: 1.6rem;
	text-transform: uppercase;
}
/*========== ページタイトル-第三階層 ==========*/
.page_title_item.third-level .common-page-title span:first-of-type {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
	font-size: 3rem;
	margin-bottom: 0.5em;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.25);
}
.page_title_item.third-level .common-page-title span:last-of-type {
	font-weight: 500;
	font-size: 1.6rem;
	text-shadow: 0 0 10px rgba(0,0,0,.25);
}
.title-light .common-page-title {
	color: #fff;
}

@media screen and (min-width: 768px) {
	.page_title {
		height: 350px;
	}
	.page_title_item.second-level .common-page-title span:first-of-type {
		font-size: 4.5rem;
	}
	.page_title_item.second-level .common-page-title span:last-of-type {
		font-size: 1.8rem;
	}
	.page_title_item.third-level .common-page-title span:last-of-type {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 1161px) {
	.page_title_item.second-level .common-page-title span:first-of-type {
		font-size: 5.7rem;
	}
	.page_title_item.second-level .common-page-title span:last-of-type {
		font-size: 2rem;
	}
	.page_title_item.third-level .common-page-title span:first-of-type {
		font-size: 6.4rem;
	}
	.page_title_item.third-level .common-page-title span:last-of-type {
		font-size: 2rem;
	}
}

/*========== パンくずリスト ==========*/
.breadcrumblist_wrap {
	height: 60px;
	display: flex;
	align-items: center;

}
.breadcrumblist {
	margin: auto;
	width: var(--basic-sp-width);
	max-width: var(--basic-width);
}
.breadcrumblist {
	display: flex;
}
.breadcrumblist_item {
	font-size: 1.2rem;
	text-transform: uppercase;
}
.breadcrumblist_item a {
	position: relative;
	margin-right: 15px;
	padding-right: 20px;
}
.breadcrumblist_item:first-of-type a {
	padding-left: calc(16px + 0.75em);
}
.breadcrumblist_item:first-of-type a::before {
	content: '';
	width: 16px;
	height: 14px;
	background-image: url('../../images/common/icon_home.svg');
	background-repeat: no-repeat;
	background-size: 16px 14px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.breadcrumblist_item a::after {
	content: '';
	width: 6px;
	height: 6px;
	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
	.breadcrumblist {
		white-space: nowrap;
		overflow-x: scroll;
	}
}

/*========== 共通背景 ==========*/
.main.common {
	background-image: url('../../images/common/common_bg.jpg');
	background-repeat: no-repeat;
	background-position: center top;
}
.main.common .main_inner {
	margin: auto;
	margin-top: 60px;
	padding-top: 60px;
	padding-left: 30px;
	padding-bottom: 60px;
	width: var(--basic-sp-width);
	max-width: var(--wide-width);
	background-color: #fff;
	position: relative;
	border-top-left-radius: 60px;
}
.main.common .main_inner::before {
	content: '';
	width: 150%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	border-top-left-radius: 60px;
	box-shadow: 0 0 20px rgba(0,0,0,.25);
}
.common_content {
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 768px) {
	.main.common .main_inner {
		margin-top: 90px;
		padding-top: 90px;
		padding-left: 120px;
		border-top-left-radius: 90px;
	}
	.main.common .main_inner::before {
		border-top-left-radius: 90px;
	}
}

@media screen and (min-width: 1161px) {
	.main.common .main_inner {
		margin-top: 140px;
		padding-top: 140px;
		padding-left: 180px;
		border-top-left-radius: 120px;
	}
	.main.common .main_inner::before {
		border-top-left-radius: 120px;
	}
}
