@charset "utf-8";

/* ================================
   基本設定（変数）
================================ */

:root {
    --color-bg: #000000;
    --color-gold: #90813a;
    --color-white: #ffffff;
    --color-green: #236c47;
    --color-text: #222222;

    --font-sans:
        "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    --font-serif: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", serif;

    --swiper-pagination-color: #92833b;
}

/* ================================
   リセット & ベース
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 10px;
}

body {
    -webkit-touch-callout: none;
}

p,
div {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ol,
ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.mt50 {
    margin-top: 50px !important;
}

.no-top-border {
    border-top: none !important;
}
.no-bottom-border {
    border-bottom: none !important;
}
.no-left-border {
    border-left: none !important;
}
.no-right-border {
    border-right: none !important;
}

/* 点滅 */
.blinking {
    -webkit-animation: blink 1s ease-in-out infinite alternate;
    -moz-animation: blink 1s ease-in-out infinite alternate;
    animation: blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.buttons {
    text-align: center;
    margin: 20px 0;
}
/* 共通コンテナ */
.l-container {
    width: 92%;
    max-width: 768px;
    margin: 0 auto;
}

/* ボタンのスタイル */
.btn2 {
    display: inline-block;
    position: relative;
    background-color: #92833b;
    color: #fff;
    padding: 26px 8px;
    transition: all 0.3s;
    width: 488px;
    max-width: 100%;
    line-height: 28px;
    text-align: center;
    text-decoration: none;
    font-family: serif;
    font-size: 18px;
    font-weight: bold;
}
.btn2.btn-white {
    border: 2px solid #92833b;
    background-color: #fff;
    color: #92833b;
}
.btn2.btn-green {
    background-color: #236c47;
}
.btn2:after {
    content: "";
    position: absolute;
    display: block;
    transition: all 0.3s;
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
    right: 30px;
    border: none;
    border-width: 2px;
    border-color: #fff;
    border-top-style: solid;
    border-right-style: solid;
    border-top-right-radius: 2px;
    transform: rotate(45deg);
}
.btn2.btn-white:after {
    border-color: #92833b;
}
.btn2:hover {
    transition: background-color 0.2s;
    background-color: #86762a;
}
.btn2.btn-white:hover {
    background-color: #fff;
    color: #86762a;
}
.btn2.btn-green:hover {
    background-color: #13613a;
}
.btn2:hover:after {
    right: 26px;
}
.btn2.prev:after {
    left: 30px;
    transform: rotate(-135deg);
}
.btn2.prev:hover:after {
    left: 26px;
}
@media (max-width: 767px) {
    .btn2 {
        width: 300px;
        font-size: 15px;
        line-height: 24px;
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .btn2:after {
        width: 10px;
        height: 10px;
        right: 15px;
    }
    .btn2:hover:after {
        right: 10px;
    }
    .btn2.prev:after {
        left: 15px;
    }
    .btn2.prev:hover:after {
        left: 10px;
    }
}

.btn_more {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    font-family: serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.08em;
    display: inline-block;
    color: #86762a;
    padding: 13px 34px 10px 0;
    border-radius: 0;
    border-bottom: 1px solid #86762a;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease 0.2s;
}
.btn_more:hover {
    transition: opacity 0.2s;
    opacity: 0.75;
}
.btn_back {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    font-family: serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.08em;
    display: inline-block;
    color: #86762a;
    padding: 13px 0 10px 34px;
    border-radius: 0;
    border-bottom: 1px solid #86762a;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease 0.2s;
}
.btn_back:hover {
    transition: opacity 0.2s;
    opacity: 0.75;
}
.btn-arrow {
    display: inline-block;
    position: relative;
    font-family: serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.08em;
    color: #86762a;
    padding: 5px 0;
    border-radius: 0;
    border-bottom: 1px solid #86762a;
    text-align: center;
    outline: none;
    transition: ease 0.2s;
}
.btn-arrow.btn-next {
    padding-right: 34px;
}
.btn-arrow.btn-back {
    padding-left: 34px;
}
.btn-arrow:hover {
    transition: opacity 0.2s;
    opacity: 0.75;
}
.btn-arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-top: 2px solid #86762a;
    transition: all 0.3s;
}
.btn-arrow.btn-next::after {
    right: 13px;
    border-right: 2px solid #86762a;
    transform: rotate(45deg);
}
.btn-arrow.btn-next:hover::after {
    right: 9px;
}
.btn-arrow.btn-back::after {
    left: 13px;
    border-left: 2px solid #86762a;
    transform: rotate(-45deg);
}
.btn-arrow.btn-back:hover::after {
    left: 9px;
}

.btnarrow1::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 50%;
    right: 13px;
    /*矢印の形状*/
    width: 10px;
    height: 10px;
    border-top: 2px solid #86762a;
    border-right: 2px solid #86762a;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all 0.3s;
}
.btnarrow1:hover::after {
    right: 9px;
}
.btnarrow2::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 50%;
    left: 13px;
    /*矢印の形状*/
    width: 10px;
    height: 10px;
    border-top: 2px solid #86762a;
    border-left: 2px solid #86762a;
    transform: rotate(-45deg);
    /*アニメーションの指定*/
    transition: all 0.3s;
}
.btnarrow2:hover::after {
    left: 9px;
}

/* テキストのスタイル */
.gold-highlight {
    color: #86762a;
}
.cnt {
    text-align: center;
}
.red {
    color: red;
}
.strong {
    font-weight: bold;
}

/* ヘディング */
.h-1 {
    position: relative;
    color: #86762a;
    padding: 0 0 5px 15px;
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    border-bottom: 1px solid #86762a;
}
.h-1::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 5px);
    top: 0;
    left: 0;
    border-left: 2px solid #86762a;
}
@media (min-width: 768px) {
    .h-1 {
        font-size: 22px;
    }
}
.h-2 {
    position: relative;
    color: #86762a;
    font-size: 17px;
    line-height: 27px;
    font-weight: bold;
}
.h-input-title {
    border-left: 2px solid #86762a;
    padding: 2px 0 2px 10px;
    color: #86762a;
    font-weight: bold;
}

/* 明細のカラム名列 */
.leftBar {
    border-left: 2px solid #86762a;
    padding: 2px 0 2px 10px;
    color: #86762a;
    font-weight: bold;
}
.inputdiv {
    padding: 2px 0 20px 12px;
}
