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

common.css

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

	--common-inner-max-width: 1008px;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 1280px;      /* ワイドサイト幅 */
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 24px;          /* ワイドサイト幅内余白 */

    --common-color-text: #212121;           /* 基本テキスト色 */
    --common-color-main: #FF8C04;           /* メイン色 */
    --common-color-sub: #00B2D0;            /* サブ色 */
    --common-color-background0: #F2F6F6;       /* 背景色1 */
    --common-color-background2: #A3997B;       /* 背景色2 */
    --common-color-background3: #706956;    /* 背景色3 */
    --common-color-background4: #4D493E;    /* 背景色4 */
    --common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #FF451D;      /* 注意色 */

    --common-font-family: 'Noto Sans JP', sans-serif;
    --common-font-family-en: 'Noto Sans JP', sans-serif;

    --common-header-height: 0;                  /* 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);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
}
*[data-font="en"] {
    font-family: var(--common-font-family-en); 
}

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

/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 64px;
}
.section:last-child {
    margin-bottom: 0;
}

.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, main .inner .sec-block {
    margin-bottom: 48px;
}
main .sec-block:last-child {
    margin-bottom: 0;
}

main .sec-block > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
main .sec-block > *:last-child {
    margin-bottom: 0;
}

h1.page-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 160%;
}
h2.sec-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 160%;
    margin-bottom: 32px;
}
h3.title {
    font-weight: bold;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 16px;
}

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);
}
.notice {
    font-size: 12px;
    line-height: 160%;
}
.list-date {
    font-size: 12px;
    line-height: 160%;
}

/*============================================================
 ページヘッダー(下層)
*============================================================*/
#page-header {
    height: 260px;
    background-color: var(--common-color-background0);
    padding-top: calc( var(--common-header-height) + 48px);
}

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

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin: 16px 0 48px 0;
}
#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;
}



/*============================================================
 コンテンツ共通
*============================================================*/
/* 共通ブロック(要素幅超スクロール)
---------------------------------------- */
.block-wscroll {
    width: calc(100vw - ((100vw - 100%) / 2));
    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;
}

/* 共通ブロック(カード)
---------------------------------------- */
.block-card {
    --gap: 32px;
    --col: 3;
    gap: var(--gap);
}
.block-card .item {
    display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
}
.block-card .item .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.block-card .item .image img {
    object-fit: cover;
    transform: scale(1);
    transition: .3s ease-in-out;
}
.block-card .item:hover .image img {
    transform: scale(1.2);
}
.block-card .item .info {
    padding: 16px;
}

/* CTA
---------------------------------------- */
#sec-cta {
	background: var(--common-color-main);
	color: #fff;
	text-align: center;
	transition: all .3s;
}
#sec-cta:hover {
	opacity: 0.8;
}
#sec-cta a {
	display: block;
	padding: 60px 0;
}
#sec-cta .inner {
	position: relative;
}
#sec-cta .inner:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-arrow-right-wh.svg) no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	top: 50%;
	transform: translatey(-50%);
	right: 24px;
}
#sec-cta p {
	line-height: 2;
	font-size: 24px;
	color: var(--common-color-main);
	background: #fff;
	padding: 0 16px;
	display: inline-block;
	font-weight: bold;
	margin-bottom: 8px;
}
#sec-cta p span {
	font-size: 32px;
}


/*============================================================
 モーダルカスタム(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
*============================================================*/
#site-footer {
    background-color: var(--common-color-sub);
    padding: 64px 0 40px;
    color: #fff;
	line-height: 2;
}
#site-footer .outline {
	gap: 64px;
	align-items: baseline;
}
#site-footer .logo {
	max-width: 208px;
	width: 100%;
	padding: 4px;
	background: #fff;
}
#site-footer .info .title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
}
#site-footer .info .address {
	font-size: 14px;
	margin-bottom: 8px;
	line-height: 2.4;
}
#site-footer .info ul {
	gap: 32px;
	margin-bottom: 32px;
}
#site-footer .info ul li a {
	font-size: 16px;
	font-weight: bold;
}
#site-footer #copyright {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}


