@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Inter";
    src: url("../../common/fonts/Inter-Regular.woff2") format("woff2"),
        url("../../common/fonts/Inter-Regular.woff") format("woff");
    font-weight: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../../common/fonts/Inter-Bold.woff2") format("woff2"),
        url("../../common/fonts/Inter-Bold.woff") format("woff");
    font-weight: bold;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../../common/fonts/NotoSansJP-Regular.woff2") format("woff2"),
        url("../../common/fonts/NotoSansJP-Regular.woff") format("woff");
    font-weight: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../../common/fonts/NotoSansJP-Bold.woff2") format("woff2"),
        url("../../common/fonts/NotoSansJP-Bold.woff") format("woff");
    font-weight: bold;
}

html {
    font-size: 0.53vw;
    height: 100%;
}

body {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    color: #000000;
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
}

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

.sp-only {
    display: none;
}

h1 {
    font-size: 6rem;
}

.container {
    width: 136rem;
    margin: auto;
}

.bold {
    font-weight: bold;
}

.red {
    color: #FF0000;
}

.input-text {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000000;
    font-size: 1em;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    background-color: #fff;
    width: 100%;
    height: 8rem;
    padding: 0 2.6rem;
    border-radius: 2.4rem;
    border: 0.3rem solid #000000;
}

.input-text:disabled {
    background-color: #E4E0E0;
}

.btn {
    appearance: none;
    background-color: #007BFF;
    border: none;
    font-size: 1em;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #fff;
    min-width: 32.6rem;
    border-radius: 5.3rem;
    height: 8.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.btn.back,
.btn.close {
    background-color: #6C757D;
}

.btn:disabled {
    opacity: 0.6;
    cursor: auto;
}

.btn.disabled {
    background-color: #626262;
    cursor: auto;
    pointer-events: none;
}

.center {
    text-align: center;
}

/* ヘッダー */

header {
    border-bottom: 1px solid #9F9F9F;
}

header .head-wrap {
    width: 140.2rem;
    margin: auto;
    padding: 1.9rem 0 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 13.8rem;
}

header .menu-btn {
    width: 6rem;
    cursor: pointer;
}

#gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #fff;
    display: none;
    z-index: 99;
    height: 100dvh;
    overflow: auto;
}

#gnav .nav-head {
    width: 140.2rem;
    margin: auto;
    padding: 1.9rem 0 1.6rem 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#gnav .menu-btn {
    width: 6rem;
    cursor: pointer;
}

#gnav nav {
    width: 140.2rem;
    margin: auto;
    padding: 0 18rem;
}

#gnav nav ul {
    list-style: none;
}

#gnav nav ul li {
    padding: 0.1rem 0;
}

#gnav nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 5rem;
}

/* フッター */

footer {
    background-color: #231816;
    text-align: center;
    padding: 2.2rem 0 1rem 0;
}

footer .logo img {
    width: 6rem;
}

/* ログイン */

#login {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 14.5rem;
    padding-bottom: 18.5rem;
}

#login .contents-wrap {
    width: 92rem;
}

#login h1 {
    font-size: 8rem;
    margin-bottom: 7rem;
}

#login .input-area {
    text-align: left;
}

#login .input-form dl {
    margin-bottom: 4.2rem;
}

#login .input-form dt {
    margin-bottom: 2.5rem;
}

#login .input-form dd .supplement {
    font-size: 2rem;
    color: #626262;
    margin-top: 1.8rem;
    margin-right: -0.8rem;
}

#login .btn-area {
    margin-top: 10.2rem;
}

/* 株主優待申込み一覧 */

#app-list {
    padding: 17.2rem 0;
    text-align: center;
}

#app-list .contents-area {
    margin-top: 9.5rem;
    background-color: #D9D9D9;
    padding: 7.5rem 2rem 5rem;
}

#app-list .list-area {
    margin-bottom: 7rem;
}

#app-list .list-area dl {
    margin-bottom: 2rem;
    display: flex;
    background-color: #fff;
    min-height: 8rem;
    border: 1px solid #000000;
}

#app-list .list-area dl dt {
    background-color: #000000;
    color: #fff;
    width: 34rem;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#app-list .list-area dl dd {
    width: 100%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    padding: 2.2rem 3.6rem;
}

#app-list .btn {
    min-width: 21.6rem;
    height: 6rem;
    font-weight: normal;
}

#app-list .btn-area .btn {
    margin: 0 1em;
}

#app-list .btn-area .btn.wide {
    min-width: 10em;
}

#app-list .no-app {
    text-align: center;
    font-weight: bold;
    font-size: 3.6rem;
    margin-top: 18rem;
}

/* 株主優待申込 */

.shareholder-benefits {
    padding-top: 6rem;
    padding-bottom: 11.8rem;
}

.shareholder-benefits h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.shareholder-benefits h2 {
    font-size: 1em;
    background-color: #DCDCDC;
    font-weight: normal;
    border-left: 2rem solid #FABE00;
    padding: 2.2rem 3.2rem;
}

.shareholder-benefits .input-text {
    border-radius: 1rem;
    border-width: 1px;
}

.shareholder-benefits .select-wrap {
    position: relative;
}

.shareholder-benefits .select-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #000000;
    border-radius: 1rem;
    width: 100%;
    height: 8rem;
    padding: 0 6.2rem 0 2.6rem;
    font-size: 1em;
}

.shareholder-benefits .select-wrap::after {
    content: "\FF1E";
    transform: rotate(90deg);
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4.8rem;
    margin: auto;
    pointer-events: none;
    font-size: 2rem;
}

.app-lead {
    text-align: center;
}

.app-flow {
    margin-top: 10rem;
    margin-bottom: 16rem;
}

.app-flow ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 18.4rem;
}

.app-flow ol li {
    position: relative;
}

.app-flow ol li:not(:first-child):before {
    content: "";
    display: inline-block;
    width: 18.6rem;
    height: 1rem;
    background-color: #7D7D7D;
    position: absolute;
    top: 50%;
    right: calc(100% - 0.1rem);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.app-flow ol li.end:before,
.app-flow ol li.current:before {
    background-color: #000000;
}

.app-flow ol li .icon {
    background-color: #7D7D7D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.app-flow ol li.end .icon,
.app-flow ol li.current .icon {
    background-color: #000000;
}

.app-flow ol li.input .icon img {
    width: 3rem;
}

.app-flow ol li.gift .icon img {
    width: 4.3rem;
}

.app-flow ol li.confirm .icon img {
    width: 3.8rem;
}

.app-flow ol li.complete .icon img {
    width: 3.5rem;
}

.app-flow ol li .text {
    font-size: 2.5rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    white-space: nowrap;
    margin-top: 3rem;
}

.num-shares {
    background-color: #FABE00;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: bold;
    padding: 1.4rem;
    border-radius: 2rem;
}

.shareholder-benefits .input-area {
    margin-top: 4.4rem;
}

.shareholder-benefits .input-area dl {
    margin-bottom: 5.5rem;
}

.shareholder-benefits .input-area dl.quest {
    margin-bottom: 10rem;
}

.shareholder-benefits .input-area dt {
    margin-bottom: 2rem;
}

.shareholder-benefits .input-area dl.quest dt {
    white-space: nowrap;
}

.shareholder-benefits .input-area dt .required {
    color: #FF0000;
}

.shareholder-benefits .input-area .notes {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 4.2rem;
}

.shareholder-benefits .input-area .check-list {
    list-style: none;
    margin-top: 3.8rem;
}

.shareholder-benefits .input-area .check-list li {
    margin-bottom: 3.8rem;
}

.shareholder-benefits .input-area .check-list li label {
    display: flex;
    cursor: pointer;
}

.shareholder-benefits .input-area .check-list li .input-text {
    margin-top: 3.8rem;
}

.shareholder-benefits .input-area .check-list li input[type="checkbox"] {
    margin-right: 4.8rem;
}

input[type="checkbox"] {
    position: relative;
    width: 3rem;
    height: 3rem;
    border: 2px solid #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.8rem;
    cursor: pointer;
    margin-top: 0.8rem;
    flex-shrink: 0;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    top: 0;
    bottom: 0.2rem;
    right: 0;
    left: 0;
    transform: rotate(50deg);
    width: 0.6rem;
    height: 1.2rem;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    content: '';
    margin: auto;
}

.shareholder-benefits .btn-area {
    text-align: center;
    margin-top: 11.6rem;
}

.shareholder-benefits .back {
    margin-right: 7rem;
}

.shareholder-benefits .lead {
    margin-top: 3.6rem;
    margin-bottom: 3.6rem;
    word-break: break-all;
}

.shareholder-benefits .lead a {
    color: #000;
}

.shareholder-benefits .gift-area {
    margin-top: 1.8rem;
    margin-bottom: 4.8rem;
}

.shareholder-benefits .gift-notes {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    border: 0.5rem solid #FABE00;
    border-radius: 2rem;
    padding: 2rem 3.2rem;
    line-height: 1.3;
    margin: 1.2rem 0;
}

.shareholder-benefits .gift-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem 4.2rem;
    list-style: none;
}

.shareholder-benefits .gift-list li {
    display: flex;
    flex-direction: column;
    min-height: 38rem;
    border: 1px solid #9C9C9C;
}

.shareholder-benefits .gift-list li .gift-img {
    height: 24.2rem;
    text-align: center;
}

.shareholder-benefits .gift-list li .gift-img img {
    max-width: 100%;
    max-height: 100%;
}

.shareholder-benefits .gift-list li .gift-detail {
    height: 100%;
    font-size: 2.4rem;
    padding: 0.4rem 0.8rem;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    border-top: 1px solid #9C9C9C;
}

.shareholder-benefits .gift-list li .gift-detail .type {
    font-size: 2rem;
    margin-top: auto;
}

.shareholder-benefits .confirm-area>div:not(:last-child) {
    margin-bottom: 10.6rem;
}

.shareholder-benefits .confirm-area h2 {
    margin-bottom: 5.8rem;
}

.shareholder-benefits .confirm-area dl {
    margin-bottom: 5.8rem;
}

.shareholder-benefits .confirm-area dt {
    margin-bottom: 4.2rem;
}

.shareholder-benefits .confirm-area dd {
    margin-left: 4rem;
}

.shareholder-benefits .confirm-area .notes {
    line-height: 1.3;
}

#app-confirm .btn-area {
    margin-top: 19.8rem;
}

#app-complete .complete-text {
    text-align: center;
    margin-bottom: 6.8rem;
    font-size: 2.6rem;
    margin-top: 13.6rem;
}

#app-complete .contact-title {
    text-align: center;
    margin-bottom: 3rem;
    background: unset;
    padding: 0;
    border: none;
    font-weight: bold;
}

#app-complete .contact-box {
    background-color: #DCDCDC;
    padding: 5.6rem 2.5rem;
    font-size: 2.5rem;
    line-height: 1.3;
}

#app-complete .contact-box a {
    color: #000;
}

#app-complete .btn-area {
    margin-top: 9rem;
}

#app-complete .btn-area>div:not(:last-child) {
    margin-bottom: 5.2rem;
}

.questionnaire .lead {
    text-align: center;
    margin-bottom: 6.2rem;
    margin-top: 7.2rem;
}

#app-send .send-text {
    text-align: center;
    margin-top: 16rem;
    margin-bottom: 32rem;
}

/* 利用規約 */

#terms {
    padding-top: 6rem;
    padding-bottom: 9rem;
}

#terms h1 {
    text-align: center;
    margin-bottom: 4rem;
}

.terms-box {
    background-color: #DCDCDC;
    margin: 0 auto;
    padding: 2.6rem 2rem;
    line-height: 1.3;
}

#terms .btn-area {
    text-align: center;
    margin-top: 5.6rem;
}

/* 注意事項 */

#notes {
    padding-top: 6rem;
    padding-bottom: 12rem;
}

#notes h1 {
    text-align: center;
    margin-bottom: 4rem;
}

.notes-box {
    background-color: #DCDCDC;
    margin: 0 auto;
    padding: 2.6rem 2rem;
    line-height: 1.3;
}

.notes-box a {
    color: #000;
}

.notes-box .red a {
    color: #FF0000;
}

#notes .agree-box {
    margin-top: 5.6rem;
    margin-left: 4rem;
}

#notes .agree-box label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#notes .agree-box label input {
    margin-right: 3.2rem;
}

#notes .agree-box label span a {
    color: #000;
}

#notes .btn-area {
    text-align: center;
    margin-top: 5.6rem;
}

#notes .back {
    margin-right: 7rem;
}

/* メール関連共通 */

.email-page {
    padding-top: 10.8rem;
    padding-bottom: 18.5rem;
}

.email-title {
    font-size: 8rem;
    margin-bottom: 10.8rem;
    text-align: center;
}

.email-page .input-form dt {
    margin-bottom: 2.5rem;
}

.email-page .input-form dd .supplement {
    font-size: 2rem;
    color: #626262;
    margin-top: 1.2rem;
}

.email-page .send-box {
    margin: 0 auto;
    text-align: center;
    line-height: 1.3;
}

.email-page .btn-area {
    text-align: center;
}

.email-page .comp-msg {
    text-align: center;
}

/* メールアドレス確認 */

#email-input .input-area {
    width: 92rem;
    margin: auto;
    text-align: left;
}

#email-input .btn-area {
    margin-top: 33.2rem;
}

#email-send h1 {
    margin-bottom: 23.8rem;
}

#email-send .btn-area {
    margin-top: 23.8rem;
}

#email-expired h1 {
    margin-bottom: 23.8rem;
}

#email-expired .error-box {
    text-align: center;
}

#email-expired .btn-area {
    margin-top: 28.6rem;
}

/* メールアドレス変更 */

#email-change-input .input-area {
    width: 92rem;
    margin: auto;
}

#email-change-input .input-form dl {
    margin-bottom: 7.8rem;
}

#email-change-input .btn-area {
    margin-top: 18.8rem;
}

#email-change-send h1 {
    margin-bottom: 20rem;
}

#email-change-send .btn-area {
    margin-top: 34.8rem;
}

#email-change-comp h1 {
    margin-bottom: 20.4rem;
}

/* マイページ */

#mypage {
    padding-top: 17rem;
    padding-bottom: 17rem;
}

#mypage h1 {
    margin-bottom: 7rem;
    text-align: center;
}

#mypage h2 {
    font-size: 1em;
    background-color: #DCDCDC;
    font-weight: normal;
    border-left: 2rem solid #FABE00;
    padding: 2.2rem 3.2rem;
    margin-bottom: 3rem;
}

#mypage .contents-area {
    margin-bottom: 50px;
}

#mypage .app-detail .title {
    margin-bottom: 4.2rem;
    padding-left: 5rem;
}

#mypage .app-detail dl {
    display: flex;
    margin-bottom: 2.4rem;
    border: 1px solid #000000;
    min-height: 8rem;
}

#mypage .app-detail dl dt {
    width: 34rem;
    flex-shrink: 0;
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

#mypage .app-detail dl dd {
    width: 100%;
    padding: 2rem 3.6rem;
    border-left: none;
    font-size: 2.5rem;
}

#mypage .gift-item {
    margin-top: 4rem;
}

#mypage .gift-item>div:not(:last-child) {
    margin-bottom: 4rem;
}

#mypage .gift-item h3 {
    font-size: 1em;
    margin-bottom: 4rem;
    padding-left: 5rem;
}

#mypage .gift-item dl {
    display: block;
    border: none;
    margin-bottom: 6rem;
}

#mypage .gift-item dl:last-child {
    margin-bottom: 0;
}

#mypage .gift-item dl dt {
    margin-bottom: 3.6rem;
}

#mypage .gift-item dl dd {
    padding: 0;
    position: relative;
}

#mypage .gift-item dl dd .result {
    position: absolute;
    left: 39rem;
    bottom: calc(100% + 3.7rem);
    background-color: #FA3030;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17.5rem;
    height: 7.3rem;
    font-size: 3.2rem;
    border-radius: 3rem;
}

#mypage .gift-box {
    width: 42.4rem;
    border: 1px solid #9C9C9C;
}

#mypage .gift-box .gift-img img {
    max-width: 100%;
    max-width: 100%;
}

#mypage .gift-box .gift-detail {
    border-top: 1px solid #9C9C9C;
    font-size: 2.4rem;
    padding: 2.4rem 1.5rem 0.8rem;
}

#mypage .gift-box .gift-detail .name {
    font-size: 2.4rem;
}

#mypage .gift-box .gift-detail .type {
    font-size: 2rem;
    margin-top: 4.2rem;
}

.result-area {
    text-align: left;
}

/* フォーム */
.validation-result-area {
    text-align: left;
    color: #FF0000;
}

.validation-result-area span {
    display: block;
}

/* エラー */

#error {
    padding-top: 10.8rem;
    padding-bottom: 18.5rem;
}

#error h1 {
    margin-bottom: 10.8rem;
}

#error .error-cts {
    text-align: center;
}

@media only screen and (min-width: 960px) {
    html {
        font-size: 5pt;
    }
}