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

common.css

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

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

    --common-color-text: #fff;           /* 基本テキスト色 */
    --common-color-main: #222222;           /* メイン色 */
    --common-color-sub: #222222;            /* サブ色 */
    --common-color-background1: #222222;       /* 背景色1 */
    --common-color-background2: #f7f7f7;       /* 背景色2 */
    --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: var(--common-color-background1);
}
body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 128%;
    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); 
}

body.page-lower {
    /* padding-top: var(--common-header-height); */
}

/* レイアウト
---------------------------------------- */
#main-contents {
    width: 100%;
    padding: 96px 0 72px 0;
    background-color: var(--common-color-background1);
}

/* コンテンツ内
---------------------------------------- */
.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 .block, main .inner .block {
    /* margin-bottom: 48px; */
}
main .block:last-child {
    margin-bottom: 0;
}

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

.page-group {
    font-weight: bold;
}
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.block-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%;
}

/*============================================================
 言語TOP
*============================================================*/
/* 共通
---------------------------------------- */
.page-lang-top .section {
    position: relative;
    margin-top: 49px;
}
.page-lang-top .section.vertical-center {
}
.page-lang-top .section.vertical-center .vertical-center-item {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.page-lang-top .section::before {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: #555;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}
.page-lang-top .section:last-child {
    margin-bottom: 49px;
}
.page-lang-top .section.section-last::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: #555;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}

/* メインビジュアル
---------------------------------------- */
.page-lang-top #mainvisual {
    width: 100%;
    height: 812px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;

    background-image: url(../images/common/lang-top-mainvisual-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1920px auto;
}
.page-lang-top .mainvisual-info {
    height: 812px;
    padding-top: 72px;
    text-align: center;
}
.page-lang-top .mainvisual-info .info {
    padding: 0 6px;
}

/* コンテンツ
---------------------------------------- */
/* catch */
.page-lang-top #sec-catch {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 1080;
    background-image: url(../images/common/lang-top-catch-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.page-lang-top #sec-catch .catch-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.page-lang-top #sec-catch .catch-list .item {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.page-lang-top #sec-catch .catch-list .item .catch {
    font-weight: 700;
    font-size: 28px;
    line-height: 128%; 
}
.page-lang-top #sec-catch .catch-list .item .lead {
    font-weight: 300;
}
/* price */
.page-lang-top #sec-price {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 1080;
    background-image: url(../images/common/lang-top-price-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.page-lang-top #sec-price .price-list {
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.page-lang-top #sec-price .price-list .price {
    font-weight: 300;
    font-size: 28px;
    line-height: 128%;
}
/* YouTube */
.page-lang-top #sec-youtube .slider-youtube {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}
.page-lang-top #sec-youtube .slider-youtube .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    --position-lr: -78px;
}
.page-lang-top #sec-youtube .slider-youtube .slide-arrow.prev-arrow {
    left: var(--position-lr);
}
.page-lang-top #sec-youtube .slider-youtube .slide-arrow.next-arrow {
    right: var(--position-lr);
}
.page-lang-top #sec-youtube .slider-youtube .slide iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.page-lang-top #sec-youtube .slider-youtube .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}
.page-lang-top #sec-youtube .slider-youtube .slick-dots li {
    width: 14px;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
}
.page-lang-top #sec-youtube .slider-youtube .slick-dots li button {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    padding: 0;
    border-radius: 100%;
    background-color: #9E9E9E;
}
.page-lang-top #sec-youtube .slider-youtube .slick-dots li.slick-active button {
    background-color: #555555;
}
.page-lang-top #sec-youtube .slider-youtube .slick-dots li button::before {
    display: none;
}

/*============================================================
 言語下層
*============================================================*/
/* メインビジュアル
---------------------------------------- */
.page-lang-lower #mainvisual {
    width: 100%;
    height: 140px;
    background-image: url(../images/common/lang-lower-mainvisual-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* 本文エリア
---------------------------------------- */
.block-post-content .wp-block-group {
    margin-bottom: 120px !important;
}
.block-post-content .wp-block-group .wp-block-group {
    margin-bottom: 56px !important;
}
.block-post-content .wp-block-group:last-child {
    margin-bottom: 0 !important;
}
.block-post-content .wp-block-group .wp-block-group__inner-container > * {
    margin-bottom: 16px;
}
.block-post-content .wp-block-group h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 128%;
    text-align: center;
    margin-bottom: 56px !important;
}
.block-post-content .wp-block-group h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 128%;
    margin-bottom: 32px !important;
}
.block-post-content .wp-block-group ol {
    padding-inline-start: 60px;
    list-style-position: outside;
}
.block-post-content .wp-block-group ol ol {
    margin: 16px 0;
}
.block-post-content .wp-block-group ol li {
    padding-left: 8px;
    list-style-type: decimal;
    line-height: 140%;
    margin-bottom: 8px;
}

.block-post-content .wp-block-group ol[style="list-style-type:lower-roman"] > li {
    list-style-type: lower-roman;
    text-indent: initial;
}
.block-post-content .wp-block-group ol.style-brackets > li {
    list-style-type: none;
    counter-increment: cnt;
    text-indent: -3.8em;
}
.block-post-content .wp-block-group ol.style-brackets > li::before {
    display: inline-block;
    content: "( " counter(cnt) " ) ";
    padding-right: 8px;
    text-align: right;
    width: 3.8em;
}

.block-post-content .wp-block-group ul {
    padding-inline-start: 60px;
    list-style-position: outside;
}
.block-post-content .wp-block-group ul li {
    line-height: 140%;
    list-style-type: disc;
    padding-left: 8px;
    margin-bottom: 8px;
}
.block-post-content .wp-block-group .separator {
    gap: 0 16px;
    margin: 56px 0 16px 0;

}
.block-post-content .wp-block-group hr {
    width: 60%;
    border-width: 1px;
    margin: 56px 0 !important;
}
.block-post-content .wp-block-group .separator > *:first-child {
    flex: 1;
}
.block-post-content .wp-block-group .separator > *:first-child hr {
    width: 100%;
    border-style: dashed;
    margin: 0 !important;
}
.block-post-content .wp-block-group .separator > *:last-child {
    flex-basis: unset !important;
    width: fit-content;
}

/* セパレーターあり */
.block-post-content[data-separator] .wp-block-group {
    margin-top: 49px;
    margin-bottom: 0;
    position: relative;
}
.block-post-content[data-separator] .wp-block-group::before {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: #555;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}
.block-post-content[data-separator] .wp-block-group:last-child {
    margin-bottom: 49px;
}
.block-post-content[data-separator] .wp-block-group:last-child::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background-color: #555;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}


/*============================================================
 パンくずリスト
*============================================================*/


/*============================================================
 共通ブロック
*============================================================*/

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

/*============================================================
 ページング
*============================================================*/

/*============================================================
 記事本文ブロック
*============================================================*/

/*============================================================
 CTA
*============================================================*/

/*============================================================
 サイト内検索フォーム
*============================================================*/

/*============================================================
 サイト内検索結果
*============================================================*/

/*============================================================
 システムエラー　404
*============================================================*/
#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-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-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-main);
    padding: 54px 0 40px 0;
    border-top: solid 1px #333;
}

/* メニューリスト
---------------------------------------- */
#site-footer #fnav {
    display: flex;
    flex-wrap: wrap;
    gap: 166px 238px;
    margin-bottom: 190px;
}
#site-footer #fnav .fnav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#site-footer #fnav .fnav-list * {
    font-weight: 500;
    font-size: 11px;
    line-height: 130%;
    color: #eee;
}
#site-footer #fnav .fnav-list .title {
    color: #ddd;
}

/* Copyright
---------------------------------------- */
#site-footer #copyright {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
}


