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

common.css

********************************************************************************/
/*============================================================
 css変数
*============================================================*/
:root {
    --common-vh: 100vh;                         /* jsで変動 */

	--common-inner-max-width: 1040px;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 1200px;      /* ワイドサイト幅 */
	--common-inner-padding: 40px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 40px;          /* ワイドサイト幅内余白 */

    --common-color-text: #3E3E3E;           /* 基本テキスト色 */
    --common-color-main: #004EA2;           /* メイン色 */
    --common-color-sub: #0B4B46;            /* サブ色 */
    --common-color-background0: #F3F3F3;            /* 背景色1 */
    --common-color-background1: rgba(29, 87, 150, 0.5);            /* 背景色2 */
	--common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #FF451D;      /* 注意色 */

	--common-font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	--common-font-family-sub: 'Noto Sans JP',sans-serif;
    --common-font-family-en: 'Noto Sans JP',sans-serif;

    --common-header-height: 80px;                  /* jsで変動 */
    --common-footer-height: 0;                  /* jsで変動 */
}

body {
    --inner-max-width: var(--common-inner-max-width);
    --inner-padding: var(--common-inner-padding);
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: inherit;
}
.forSP {
    display: none;
}

/*============================================================
 format
*============================================================*/
/* ベース
---------------------------------------- */
html {
    display: block;
    background-color: #fff;
}
body {
    width: 100%;
    font-family: var(--common-font-family);
	background-color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
}
body#page-top {
	background-color: var(--common-color-background0);
}
*[data-font="en"] {
    font-family: var(--common-font-family-en); 
}

/* レイアウト
---------------------------------------- */
#main-contents {
    width: 100%;
	padding-top: 80px;
	padding-bottom: 110px;
}

/* コンテンツ内
---------------------------------------- */
.inner {
    width: 100%;
    max-width: var(--inner-max-width);
    padding: 0 var(--inner-padding);
    margin: 0 auto;
}
main .inner > *:not(h1, h2, h3, h4) {
    /*margin-bottom: 32px;*/
}
main .inner > *:last-child {
    margin-bottom: 0;
}

main .sec-block > *:last-child {
    margin-bottom: 0;
}
.section {
	margin-bottom: 64px;
}
.section:last-child {
	margin-bottom: 0;
}
.section h2 {
	font-family: var(--common-font-family);
	font-size: 32px;
	margin-bottom: 16px;
}
.section h3 {
	font-family: var(--common-font-family);
	font-size: 24px;
	margin-bottom: 16px;
}

.page-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 160%;
}

p {}
img {
    max-width: 100%;
    height: auto;
}
svg {
    max-width: 100%;
    height: auto;    
}
span {
    font-weight: inherit;
}
a[href^="tel:"] {
    pointer-events: none;
}
strong {}
.attention {
    font-size: 12px;
    line-height: 160%;
    color: var(--common-color-attention);
}
small {
	font-size: 14px;
}
.notice {
    font-size: 12px;
    line-height: 160%;
}
.list-date {
    font-size: 12px;
    line-height: 160%;
}

/*============================================================
 ページヘッダー(下層)
*============================================================*/
/* 共通
---------------------------------------- */
#page-header {
	padding-top: 40px;
	margin-bottom: 80px;
}
#page-header h1 {
	font-size: 40px;
}
#page-header .header-tag {
	background: #fff;
	border-radius: 8px;
	display: inline-block;
	padding: 8px 16px;
	margin-bottom: 24px;
}
#page-header .header-tag p {
	line-height: 1.6;
	color: var(--common-color-main);
}

/* 第一階層個別設定
---------------------------------------- */
#page-header.lower01 .block {
	gap: 40px;
}
#page-header.lower01 .block-main {
	width: 440px;
}
#page-header.lower01 .block-main .logo {
	margin-top: 24px;
}
#page-header.lower01 .block-img {
	width: calc(100% - 480px);
}

/*============================================================
 パンくずリスト
*============================================================*/
/* TOPページでは非表示
---------------------------------------- */
#page-top #breadcrumb {
    display: none;
}

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin-bottom: 40px;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    font-size: 12px;
    line-height: 140%;
}
#breadcrumb li a {
    text-decoration-line: underline;
}
#breadcrumb li a::after {
    content: "/";
    display: inline-block;
    margin-left: 8px;
}


/*============================================================
 コンテンツ共通
*============================================================*/
/* CTA
---------------------------------------- */
#cta {
	/*background: var(--common-color-background1);*/
	background: linear-gradient(263.11deg, rgba(180, 223, 246, 0.3) 8.19%, rgba(212, 249, 234, 0.3) 30.56%, rgba(250, 250, 221, 0.3) 55.39%) , url(../images/common/cta-bg.png);
	background-size: cover;
	background-position: center center;
	padding: 64px 0 64px;
	padding: 48px 0;
}
#cta h2 {
	font-size: 38px;
	line-height: 1.6;
	margin-bottom: 24px;
}
#cta p {
	line-height: 1.8;
	margin-bottom: 24px;
}

/* ホワイトエッセンスバナー
---------------------------------------- */
.we-banner {
	font-family: var(--common-font-family);
	background: var(--common-color-main);
	padding: 8px;
	color: #fff;
	gap: 16px;
	max-width: 320px;
	transition: all .3s;
}
.we-banner:hover {
	background: #5D8ABC;
}
.we-banner-text {
	margin-top: 5px;
	color: #fff;
}
.we-banner-text .line-01 {
	line-height: 1.4;
	margin-bottom: 7px;
}
.we-banner-text .line-02 {
	font-size: 12px;
}
.we-banner-text .line-02 img {
	margin-left: 12px;
	margin-top: 6px;
}

/* お知らせ
---------------------------------------- */
.news-list .item {
	padding: 16px 0;
	position: relative;
	gap: 24px;
	transition: all .3s;
}
.news-list .item:before {
	content: "";
	background: url(../images/common/icon-arrow-right-bk.svg) no-repeat;
	background-size: contain;
	width: 17px;
	height: 8px;
	position: absolute;
	top: 28px;
	right: 16px;
}
.news-list .item:hover {
	opacity: 0.8;
}
.news-list .item p {
	font-size: 14px;
	width: 80px;
}
.news-list .item h3 {
	font-size: 16px;
	padding-right: 40px;
	width: calc(100% - 104px);
	margin-bottom: 0;
}

/* 共通ブロック(要素幅超スクロール)
---------------------------------------- */
.block-wscroll {
    width: calc(100vw - ((100vw - 100%) / 2));
	width: 100%;
    overflow-x: auto;
}
.block-wscroll .block-wscroll-inner {
    width: max-content;
    padding: 0 var(--inner-padding) 16px 0;
}
.block-wscroll .block-wscroll-inner > * {
    width: auto;
    white-space: nowrap;
}

/* 共通ブロック
---------------------------------------- */
.sec-block {
	font-weight: normal;
	margin-bottom: 64px;
	font-family: var(--common-font-family-sub);
}
.sec-block:last-child {
	margin-bottom: 0;
}
.sec-block .parts-boxes {
	gap: 24px;
}
.sec-block .parts-boxes .contents {
	width: 59%;
}
.sec-block .parts-boxes .img {
	width: 38%;
}
.sec-block h3 {
	color: var(--common-color-main);
}
.sec-block h3 .add {
	font-size: 16px;
}
.sec-block p {
	margin-bottom: 16px;
}
.sec-block p:last-child {
	margin-bottom: 0;
}
.sec-block ol,
.sec-block ul {
	mix-blend-mode: multiply;
	background: var(--common-color-background0);
	border-radius: 6px;
	padding: 24px 16px 24px 40px;
	flex-direction: column;
	display: flex;
	gap: 24px;
	list-style-type: decimal;
}
.sec-block ol li,
.sec-block ul li {
	line-height: 1.6;
	list-style-type: decimal;
}
.sec-block ol.unique {
	counter-reset: item;
	list-style-type: none;
}
.sec-block ol.unique li {
	list-style-type: none;
	position: relative;
	padding-left: 16px;
}
.sec-block ol.unique li:before {
	position: absolute;
	top: 0;
	left: -20px;
	counter-increment: item;
	content: '※'counter(item);
}

.sec-block dl.table div {
	padding-bottom: 16px;
	border-bottom: 1px solid #999;
	margin-bottom: 20px;
}
.sec-block dl.table dt {
	font-size: 18px;
	float: left;
	font-family: var(--common-font-family);
}
.sec-block dl.table dd {
	margin-left: 160px;
}
.sec-block dl.table dd .press {
	font-size: 20px;
	font-weight: bold;
}


/* 共通ブロック(カード)
---------------------------------------- */
.block-card {
    --gap: 40px;
    --col: 2;
    gap: var(--gap);
}
.block-card .item {
    display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    overflow: hidden;
}
.block-card .item a {
	transition: all .3s;
}
.block-card .item a:hover {
	opacity: 0.7;
}
.block-card .item .img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.block-card .item .img img {
    object-fit: cover;
    transition: .3s ease-in-out;
}
.block-card .item .info {
    padding: 16px 0;
}
.block-card .item .info h4 {
	font-family: var(--common-font-family);
	font-size: 24px;
	margin-bottom: 8px;
}
.block-card .item .info p {
	font-size: 14px;
}



/*============================================================
 クリップボードコピー用メッセージ
*============================================================*/
#clipbord-msg {
    width: 100%;
    position: fixed;
    bottom: -190px;
    left: 0;
    z-index: 999999;
	-webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
}
#clipbord-msg .msg {
    width: fit-content;
    padding: 12px 32px;
    /*background: rgba(0, 47, 59, 0.8);*/
	background: var(--common-color-main);
    border-radius: 100px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 auto;
}
#clipbord-msg.copySuccess,
#clipbord-msg.copyError {
    bottom: 56px;
}


/*============================================================
 モーダルカスタム(Modaal.js)
 ※z-index指定　ヘッダー < .modaal-overlay < .modaal-wrapper
*============================================================*/
.modaal-wrapper {
    z-index: 999999;
}
.modaal-overlay {
    z-index: 99999;
}


/*============================================================
 システムエラー　404、500
*============================================================*/
#page-system-error #sec-system-error {
    height: max(600px, calc(var(--common-vh) - var(--common-footer-height) - 64px));
    padding: 200px 0 0 0;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
}

#page-system-error #sec-system-error .system-error-num {
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 900;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-sts {
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 180%;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-lead {
    margin-bottom: 56px;
}
#page-system-error #sec-system-error .parts-btn {
    margin: 0 auto;
}


/*============================================================
 footer
*============================================================*/
/* common
---------------------------------------- */
#site-footer {
	background: #fff;
    padding: 56px 0 32px;
}
#site-footer .inner {
	max-width: var(--common-inner-max-width-wide);
}

/* info
---------------------------------------- */

#site-footer .wrap {
	gap: 84px;
	margin-bottom: 64px;
}
#site-footer .info {
	gap: 56px;
}
#site-footer .info-logo img.main {
	width: 176px;
	display: block;
}
#site-footer .info-logo img.sub {
	margin-top: 16px;
	display: block;
}
#site-footer .info-access h3 {
	font-size: 24px;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 16px;
}
#site-footer .info-access p {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 16px;
}
#site-footer .schedule {
	position: relative;
}
#site-footer .schedule .parts-btn {
	position: absolute;
	top: -16px;
	right: 0;
	width: 157px;
}
#site-footer .schedule .parts-btn a {
	padding: 16px 0;
}

/* バナー
---------------------------------------- */
#site-footer .we-banner {
	margin: 0 auto 48px;
}

/* SNS
---------------------------------------- */
#site-footer .sns {
	margin-bottom: 16px;
	gap: 16px;
}

/* Copyright
---------------------------------------- */
#site-footer .copyright {
	line-height: 2;
    font-size: 12px;
    text-align: center;
}


@media screen and (max-width: 1200px) {
	#main-contents {
		padding-top: 72px;
	}
}
.middle-size {
    font-size: 18px;
}

.sp {
	display:none;
}