@charset "UTF-8";

/* 共通ユーティリティクラス */

.innerBox {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.bgBaseColor {
    background-color: #fff;
}

.bgMainColor {
    background-color: #0e1424;
}

.bgAccentColor {
    background-color: #e9ba2a;
}

.textBaseColor {
    color: #353535;
}

.textMainColor {
    color: #fff;
}

.textAccentColor {
    color: #e9ba2a;
}

/* フォント指定用クラス */
.fontNotoSans {
    font-family: "Noto Sans JP", sans-serif;
}

.fontShippori {
    font-family: "Shippori Mincho", serif;
}

.fontOswald {
    font-family: "Oswald", sans-serif;
}
.fontPlayfair {
    font-family: "Playfair", serif;
}

[class*="Button"] {
    transition: all 0.29s ease-in-out;
    cursor: pointer;
}

[class*="standardButton"] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 15px 27px;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
}
@media screen and (max-width: 900px) {
    [class*="standardButton"] {
        font-size: 16px;
    }
}

.standardButtonMail {
    justify-content: start;
}

.standardButtonWhite {
    column-gap: 23px;
    border: 2px solid #fff;
    color: #fff;
}

.standardButton:hover,
.topButton:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.standardButtonBlack {
    column-gap: 23px;
    border: 2px solid #0E1424;
    color: #0E1424;
}

[class*="buttonArrow"]::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 9px;
    height: 18px;
}

.buttonArrowWhite::before {
    right: 27px;
    background: url(../image/button_arrow_white.svg) no-repeat center center / contain;
}

.buttonArrowBlack::before {
    right: 45px;
    background: url(../image/button_arrow_black.svg) no-repeat center center / contain;
}


/* コンテンツタイトルの横線溶疑似要素指定 */
.subContentsTitle h2.subContentsTitle__en {
    position: relative;
}

.subContentsTitle h2.subContentsTitle__en::before,
.subContentsTitle h2.subContentsTitle__en::after {
    content: "";
    position: absolute;
    top: 60%;
    display: block;
    width: 14px;
    height: 4px;
    background-color: #F0B429;
}

.subContentsTitle h2.subContentsTitle__en.white::before,
.subContentsTitle h2.subContentsTitle__en.white::after {
    background-color: #E9BA2A;
}

.subContentsTitle h2.subContentsTitle__en::before {
    left: -42px;
}

.subContentsTitle h2.subContentsTitle__en::after {
    right: -42px;
}

h4.bottom_line {
    position: relative;
}

.contents_title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 0.032em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .contents_title {
        font-size: 24px;
    }
}

/* reCAPTCHA v3 Badge を非表示にする */
.grecaptcha-badge { 
    visibility: hidden;
    opacity: 0;
}