@charset "utf-8";
/* ----------------------------------------------------------------------------------------
* Author        : SHIGIRA SEVEN MILES RESORT
* File          : Common CSS file
* ---------------------------------------------------------------------------------------- */

/* INDEX
------------------------------------------

01. Reset

02. Short codes

03. Common

04. Header

04. Footer area css

05. Fix nav

06. Contents area css

09. Form style css

08. Modal area css

09. Iframe css

------------------------------------------ */

/* ----------------------------------------------------------------------------------------
                     01. Reset
 -------------------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    border:0;
    margin:0;
    outline:0;
    padding:0;
    background:none;
    font:inherit;
    font-family:inherit;
    font-size:100%;
    font-style:inherit;
    font-weight:inherit;
    text-decoration:none;
    vertical-align:baseline;
}

html {font-size:62.5%;/*10px*/}

body {
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "MS Ｐゴシック", "MS PGothic", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, sans-serif;
    font-size:1.6rem;/*16px*/
    line-height:1.5;
    position:relative;
    -webkit-text-size-adjust:100%;
    -moz-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    -o-text-size-adjust:100%;
    text-size-adjust:100%;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
    }
}

article, aside, dialog, figure, footer, header, main, nav, section {display:block;}
audio, canvas, video {display:inline-block;}

br,
hr {display:block;}

ol,
ul {list-style:none;}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}

input,
select {vertical-align:middle;}

select::-ms-expand {
display: none;
}

img {display:block;}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
    outline: none;
}

a[disabled] {
    pointer-events: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/* ----------------------------------------------------------------------------------------
                     02. Short codes
 -------------------------------------------------------------------------------------- */
:root {
    --space-basis: 12px;
}

/*margin*/
.m-xs {margin: var(--space-basis);}.m-s {margin: calc(var(--space-basis)*2);}.m-m {margin: calc(var(--space-basis)*4);}.m-l {margin: calc(var(--space-basis)*5);}.m-xl {margin: calc(var(--space-basis)*6);}
.mt-xs {margin-top: var(--space-basis);}.mt-s {margin-top: calc(var(--space-basis)*2);}.mt-m {margin-top: calc(var(--space-basis)*4);}.mt-l {margin-top: calc(var(--space-basis)*5);}.mt-xl {margin-top: calc(var(--space-basis)*6);}
.mr-xs {margin-right: var(--space-basis);}.mr-s {margin-right: calc(var(--space-basis)*2);}.mr-m {margin-right: calc(var(--space-basis)*4);}.mr-l {margin-right: calc(var(--space-basis)*5);}.mr-xl {margin-right: calc(var(--space-basis)*6);}
.mb-xs {margin-bottom: var(--space-basis);}.mb-s {margin-bottom: calc(var(--space-basis)*2);}.mb-m {margin-bottom: calc(var(--space-basis)*4);}.mb-l {margin-bottom: calc(var(--space-basis)*5);}.mb-xl {margin-bottom: calc(var(--space-basis)*6);}
.ml-xs {margin-left: var(--space-basis);}.ml-s {margin-left: calc(var(--space-basis)*2);}.ml-m {margin-left: calc(var(--space-basis)*4);}.ml-l {margin-left: calc(var(--space-basis)*5);}.ml-xl {margin-left: calc(var(--space-basis)*6);}

/*padding*/
.p-xs {padding: var(--space-basis);}.p-s {padding: calc(var(--space-basis)*2);}.p-m {padding: calc(var(--space-basis)*4);}.p-l {padding: calc(var(--space-basis)*5);}.p-xl {padding: calc(var(--space-basis)*6);}
.pt-xs {padding-top: var(--space-basis);}.pt-s {padding-top: calc(var(--space-basis)*2);}.pt-m {padding-top: calc(var(--space-basis)*4);}.pt-l {padding-top: calc(var(--space-basis)*5);}.pt-xl {padding-top: calc(var(--space-basis)*6);}
.pr-xs {padding-right: var(--space-basis);}.pr-s {padding-right: calc(var(--space-basis)*2);}.pr-m {padding-right: calc(var(--space-basis)*4)}.pr-l {padding-right: calc(var(--space-basis)*5);}.pr-xl {padding-right: calc(var(--space-basis)*6);}
.pb-xs {padding-bottom: var(--space-basis);}.pb-s {padding-bottom: calc(var(--space-basis)*2);}.pb-m {padding-bottom: calc(var(--space-basis)*4);}.pb-l {padding-bottom: calc(var(--space-basis)*5);}.pb-xl {padding-bottom: calc(var(--space-basis)*6);}
.pl-xs {padding-left: var(--space-basis);}.pl-s {padding-left: calc(var(--space-basis)*2);}.pl-m {padding-left: calc(var(--space-basis)*4);}.pl-l {padding-left: calc(var(--space-basis)*5);}.pl-xl {padding-left: calc(var(--space-basis)*6);}

@media screen and (max-width: 768px) {
    /*margin*/
    .m-xs {margin: calc(var(--space-basis)*0.667);}.m-s {margin: var(--space-basis);}.m-m {margin: calc(var(--space-basis)*2);}.m-l {margin: calc(var(--space-basis)*2.5);}.m-xl {margin: calc(var(--space-basis)*3);}
    .mt-xs {margin-top: calc(var(--space-basis)*0.667);}.mt-s {margin-top: var(--space-basis);}.mt-m {margin-top: calc(var(--space-basis)*2);}.mt-l {margin-top: calc(var(--space-basis)*2.5);}.mt-xl {margin-top: calc(var(--space-basis)*3);}
    .mr-xs {margin-right: calc(var(--space-basis)*0.667);}.mr-s {margin-right: var(--space-basis);}.mr-m {margin-right: calc(var(--space-basis)*2);}.mr-l {margin-right: calc(var(--space-basis)*2.5);}.mr-xl {margin-right: calc(var(--space-basis)*3);}
    .mb-xs {margin-bottom: calc(var(--space-basis)*0.667);}.mb-s {margin-bottom: var(--space-basis);}.mb-m {margin-bottom: calc(var(--space-basis)*2);}.mb-l {margin-bottom: calc(var(--space-basis)*2.5);}.mb-xl {margin-bottom: calc(var(--space-basis)*3);}
    .ml-xs {margin-left: calc(var(--space-basis)*0.667);}.ml-s {margin-left: var(--space-basis);}.ml-m {margin-left: calc(var(--space-basis)*2);}.ml-l {margin-left: calc(var(--space-basis)*2.5);}.ml-xl {margin-left: calc(var(--space-basis)*3);}

    /*padding*/
    .p-xs {padding: calc(var(--space-basis)*0.667);}.p-s {padding: var(--space-basis);}.p-m {padding: calc(var(--space-basis)*2);}.p-l {padding: calc(var(--space-basis)*2.5);}.p-xl {padding: calc(var(--space-basis)*3);}
    .pt-xs {padding-top: calc(var(--space-basis)*0.667);}.pt-s {padding-top: var(--space-basis);}.pt-m {padding-top: calc(var(--space-basis)*2);}.pt-l {padding-top: calc(var(--space-basis)*2.5);}.pt-xl {padding-top: calc(var(--space-basis)*3);}
    .pr-xs {padding-right: calc(var(--space-basis)*0.667);}.pr-s {padding-right: var(--space-basis);}.pr-m {padding-right: calc(var(--space-basis)*2);}.pr-l {padding-right: calc(var(--space-basis)*2.5);}.pr-xl {padding-right: calc(var(--space-basis)*3);}
    .pb-xs {padding-bottom: calc(var(--space-basis)*0.667);}.pb-s {padding-bottom: var(--space-basis);}.pb-m {padding-bottom: calc(var(--space-basis)*2);}.pb-l {padding-bottom: calc(var(--space-basis)*2.5);}.pb-xl {padding-bottom: calc(var(--space-basis)*3);}
    .pl-xs {padding-left: calc(var(--space-basis)*0.667);}.pl-s {padding-left: var(--space-basis);}.pl-m {padding-left: calc(var(--space-basis)*2);}.pl-l {padding-left: calc(var(--space-basis)*2.5);}.pl-xl {padding-left: calc(var(--space-basis)*3);}
}

.no-gatter {
    padding-left: 0;
    padding-right: 0;
}

.underline {
    text-decoration: underline;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.bold {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.font-min {
    font-family: "Cormorant Garamond", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: bold;
    font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
    .tab-none {
        display: none !important;
    }
}

@media screen and (max-width: 559px) {
    .sp-none {
        display: none !important;
    }
}

.clearfix {
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix:before {
    content: "";
    display: block;
    clear: both;
}

/* ----------------------------------------------------------------------------------------
                        03. Common
* --------------------------------------------------------------------------------------- */
:root {
    /*color*/
    --black: #000;
    --yellow-dark: #B89E46;
    --white: #fff;
    --gray-dark: #aaa;
    --gray-light: #C8C8D6;
    /*style*/
    --main-color: var(--black);
    --accent-color: var(--yellow-dark);
    --base-color: var(--white);
    --sub-color-1: var(--gray-dark);
    --sub-color-2: var(--gray-light);
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    color: var(--main-color);
    background-color: var(--base-color);
    z-index: -1;
}

body::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 424px;
    height: 916px;
    background: url(../images/common/bg-body-rt.png) no-repeat;
    z-index: -50;
}

@media screen and (max-width: 768px) {
    body::before {
        /*width: 220px;
        height: 475px;*/
        top: -400px;
    }
}

body::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 348px;
    height: 860px;
    background: url(../images/common/bg-body-lb.png) no-repeat;
    z-index: -50;
}

@media screen and (max-width: 768px) {
    body::after {
        left: -150px;
    }
}

body > * a,
body > * a:focus,
body > * a:hover {
    color: var(--main-color);
}

body > * a:not(.btn):hover {
    opacity: 0.5;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 16px 24px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
    font-size: 1.8rem;
    line-height: 1.5;
    box-shadow: 0 4px 4px -3px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
    .btn {
        font-size: 1.6rem;
    }
}

.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    filter: brightness(0.7)  contrast(1.6);
}

.btn:focus {
    outline: 0;
}

.btn.btn-normal,
.btn.btn-secondary {
    min-width: 360px;
}

@media screen and (max-width: 480px) {
    .btn-area form {
        width: 100%;
    }

    .btn.btn-normal,
    .btn.btn-secondary {
        min-width: 100%;
        width: 100%;
    }
}

.btn.btn-normal {
    color: #fff;
    background-color: var(--accent-color);
}

.btn.btn-secondary {
    color: #fff;
    background-color: #A63736;
}

.btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 48px;
    margin: 48px auto 24px;
}

@media screen and (max-width: 768px) {
    .btn-area {
        column-gap: 24px;
    }
}

/*前の画面へ*/
.btn-area form.page-back button,
.btn-area .page-back {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .btn-area .page-back {
        display: none;
    }
}

.btn[disabled] {
    opacity: 0.3;
    pointer-events: none;
}


@media screen and (max-width: 1200px) {
    .br-pc {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .br-tb {
        display: none;
    }
}

@media screen and (max-width: 559px) {
    .br-sp {
        display: none;
    }
}

body:not([data-status]) [data-error] {
    display: none;
}

/* -------------------------------------------------------------------------------------- *
                        04. Header
* --------------------------------------------------------------------------------------- */
.header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 84px;
    z-index: 1;
}

.header-logo {
    margin-left: 24px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: clamp(3.6rem, 3vw, 4.8rem);
    font-family: 'Amiri', serif;
}

@media screen and (max-width: 1200px) {
    .header-logo {
        margin-left: 10px;
    }
}

@media screen and (max-width: 960px) {
    .header-logo {
        margin-left: 10px;
        font-size: 3.6rem;
        line-height: 1;
        letter-spacing: 4px;
    }

    .header-logo span {
        display: block;
        font-size: 2.4rem;
        letter-spacing: 0;
    }
}

@media screen and (max-width: 768px) {
    .header-logo {
        display: none;
    }
}

.btn-back {
    display: none;
}

@media screen and (max-width: 768px) {
    .btn-back {
        display: block;
    }
}

.btn-back button {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    background-color: rgba(184, 158, 70, 0.2);
}

.btn-back button::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 13px;
    height: 13px;
    border-top: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    transform: rotate(225deg);
}

.header h1 {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .header h1 {
        display: block;
        color: var(--accent-color);
    }
}

.header ul {
    display: flex;
    align-items: center;
    column-gap: 48px;
    margin-right: 24px;
    font-size: 1.4rem;
}

@media screen and (max-width: 1200px) {
    .header ul {
        column-gap: 20px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .header ul li:not(:last-child) {
        display: none;
    }
}

.header ul li button {
    color: var(--main-color);
}

.header-name span {
    font-weight: bold;
}

.header-clubno label {
    color: var(--sub-color-1);
    font-size: 1.2rem;
}


/*ログアウト*/
.header .btn-logout {
    display: block;
    padding: 8px 18px;
    border: 1px solid var(--sub-color-2);
    border-radius: 10px;
    color: #A7A7B4;
    background-color: rgba(200, 200, 214, 0.2);
    
}

@media screen and (max-width: 768px) {
    .header .btn-logout {
        padding: 11px 10px;
    }
}

.header .btn-logout img {
    display: none;
}

@media screen and (max-width: 768px) {
    .header .btn-logout img {
        display: block;
        width: 20px;
        height: 17px;
    }

    .header .btn-logout span {
        display: none;
    }
}

/* ----------------------------------------------------------------------------------------
                        04. Footer area css
* --------------------------------------------------------------------------------------- */
.footer {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 0;
    color: var(--sub-color-2);
}

a.footer-logo {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 2.4rem;
}

@media screen and (max-width: 559px) {
    a.footer-logo {
        font-size: 1.8rem;
    }
}

a.footer-logo span {
    font-size: 1.2rem;
}

@media screen and (max-width: 559px) {
    a.footer-logo span {
        font-size: 0.8rem;
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fff;
}

@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        row-gap: 12px;
    }
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 12px;
}

.footer-nav li a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
}

.footer-nav li a img {
    width: 11px;
    height: 11px;
    margin-right: 4px;
}

.footer small {
    font-size: 1.1rem;
}

/* ----------------------------------------------------------------------------------------
                        05. Fix nav
* --------------------------------------------------------------------------------------- */
.fix-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px -1px 3px 1px rgba(0, 0, 0, .1);
	z-index: 50;
}

@media screen and (max-width: 768px) {
    .fix-nav {
        display: block;
    }
}

.fix-nav ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.fix-nav li button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 72px;
    margin: 0 auto;
    color: var(--sub-color-2);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: -1px;
}

.fix-nav li.current button {
    color: var(--accent-color);
}

.fix-nav li img {
    margin-top: 8px;
    margin-bottom: 6px;
}

.fix-nav li:first-of-type img {
    width: 18px;
    height: 18px;
}

.fix-nav li:nth-of-type(2) img {
    width: 19.5px;
    height: 18px;
}

.fix-nav li:nth-of-type(3) img {
    width: 20px;
    height: 19px;
}

.fix-nav li:nth-of-type(4) img {
    width: 20px;
    height: 18px;
}

.fix-nav li:nth-of-type(5) img {
    width: 18px;
    height: 15px;
}


/* ----------------------------------------------------------------------------------------
                        06. Contents css
* --------------------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    main {
        padding-bottom: 24px;
    }
}

.main-heading {
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    height: 240px;
}

@media screen and (max-width: 768px) {
    .main-heading {
        display: none;
    }
}

.main-heading h1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1000px;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.bg-main-heading {
    position: relative;
    width: 65%;
    height: 100%;
}

.bg-main-heading img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.bg-main-heading::after {
    position: absolute;
    content: '';
    background: url(../images/common/bg-heading.jpg) no-repeat;
    left: -36px;
    bottom: -36px;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.main-heading .ttl-main {
    text-transform: uppercase;
    word-break: break-all;
    white-space: nowrap;
    font-size: 6rem;
    font-family: 'Amiri', serif;
    line-height: 1;
}

.main-heading .ttl-sub {
    color: var(--accent-color);
}

.container {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1200px) {
    .container {
        width: 92%;
    }
}

.sub-heading {
    margin-bottom: 24px;
    padding-left: 12px;
    border-left: 6px solid var(--accent-color);
    font-size: 2.8rem;
}

@media screen and (max-width: 768px) {
    .sub-heading {
        font-size: 2rem;
    }
}

main ol {
    list-style: decimal;
    margin: 0 0 0 24px;
}

/* ----------------------------------------------------------------------------------------
                        07. Form style css
* --------------------------------------------------------------------------------------- */
.required-marker {
    margin-left: 4px;
    padding: 1px 4px;
    font-size: 1.1rem;
    color: #fff;
    background-color: var(--accent-color);
}

.form-table {
    width: 100%;
}

.form-table tbody {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.form-table tr {
    width: 100%;
}

.form-table th {
    display: block;
}

@media screen and (max-width: 768px) {
    .form-table th {
        width: 100%;
        margin-bottom: 12px;
    }
}

.form-table th label {
    display: inline-block;
    width: 100%;
    margin-bottom: 8px;
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .form-table th label {
        font-size: 1.4rem;
    }
}

.form-table td {
    display: block;
    width: 100%;
}

.form-table td div {
    width: 100%;
    max-width: 100%;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
select,
textarea,
.form-control {
    width: 100%;
    height: auto;
    padding: 20px 24px;
    vertical-align: top;
    color: var(--main-color);
    background-color: #f8f8f8;
    line-height: 19px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:disabled {
    background-color: #d9d9d9;
}

.form-table input:focus,
.form-table textarea:focus {
    color: #495057;
    border-color: var(--accent-color);
    outline: 0;
    box-shadow: 0 0 0.2rem rgba(0, 123, 255, .25)
}

.form-table select {
    width: 27%;
    margin-right: 8px;
    background-image: url(../images/common/icon-down.png);
    background-size: 12px 10px;
    background-repeat: no-repeat;
    background-position: right 8px center;
}

@media screen and (max-width: 768px) {
    .form-table select {
        width: 24%;
    }
}

@media screen and (max-width: 480px) {
    .form-table select:only-of-type {
        width: 92%;
    }
}

.form-table select + label {
    display: inline-block;
    padding-top: 18px;
}

.form-table select:not(:first-of-type) {
    margin-left: 24px;
}

@media screen and (max-width: 768px) {
    .form-table select:not(:first-of-type) {
        margin-left: 12px;
    }
}

.form-table select.secret-question {
    width: 100%;
}

/*ラジオボタンデザイン*/
.form-radio-area {
    display: flex;
    column-gap: 12px;
}

.form-radio-area input[type="radio"] {
    display: none;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.form-radio-area input[type="radio"] + span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding: 10px 11px 8px 36px;
    border-radius: 5px;
    font-weight: normal;
    font-size: 1.4rem;
    background: #ccc;
}

.form-radio-area input[type="radio"]:checked + span {
    background-color: var(--main-color);
    color: #fff;
}

.form-radio-area input[type="radio"] + span::before,
.form-radio-area input[type="radio"] + span::after {
    position: absolute;
    content: "";
    display: block;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto 10px auto 0;
    box-sizing: border-box;
}

.form-radio-area input[type="radio"] + span::before {
    width: 16px;
    height: 16px;
    background: #fff;
    left: 12px;
}

.form-radio-area input[type="radio"]:checked + span::before {
    border: 6px solid var(--accent-color);
}

.form-radio-area input[type="radio"] + span::after {
    width: 10px;
    height: 10px;
    background: var(--sub-color-1);
    left: 14px;
    opacity: 0;
}

.form-radio-area input[type="radio"]:checked + span::after {
    background: none;
}

.form-radio-area input[type="radio"]:checked + span::after {
    opacity: 1;
}

.supple-txt {
    width: 100%;
    margin-top: 8px;
    max-height: 100%;
    font-size: 1.4rem;
}

::placeholder {
    color: var(--sub-color-1);
}

.error-sign {
    margin-bottom: 24px;
    padding: 8px 0;
    border: 1px solid #d72a36;
    color: #d72a36;
    background-color: #FEE7E7;
    font-weight: bold;
    text-align: center;
}

.error-required,
.error-email,
.error-email-check,
.error-phone,
.error-password {
    color: #d72a36;
}

[data-unit-error]:not(:empty) {
    position: relative;
    display: inline-block;
    margin-top: 12px;
    padding: 2px 4px;
    color: #d72a36;
    background-color: #fee7e7;
    border: 2px solid #d72a36;
    border-radius: 3px;
    font-size: 1.2rem;
}

[data-unit-error]:not(:empty)::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 12px;
    border: 8px solid transparent;
    border-bottom: 8px solid #fee7e7;
    z-index: 2;
}

[data-unit-error]:not(:empty)::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #d72a36;
    z-index: 1;
}

.form-control.error {
    border: 1px solid #d72a36;
}

[data-length="0"] {
    display: none;
}

/* ----------------------------------------------------------------------------------------
                        08. Modal area css
* --------------------------------------------------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.modal-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-inner {
    position: absolute;
    width: 768px;
    max-height: 90%;
    top: 50%;
    left: 50%;
    padding: 24px;
    background-color: var(--base-color);
    transform: translate(-50%, -50%);
    border-radius: 5px;
    overflow-y: auto;

}

@media screen and (max-width: 768px) {
    .modal-inner {
        width: 92%;
    }
}

@media screen and (max-width: 559px) {
    .modal-inner {
        padding: 48px 12px;
    }
}

#modalError [data-unit-error] {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.6rem;
    text-align: center;
}

#modalError [data-unit-error]::before,
#modalError [data-unit-error]::after {
    display: none;
}

.btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
}

@media screen and (max-width: 559px) {
    .btn-close {
        right: 8px;
        top: 8px;
    }
}

.btn-close span {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
}

.btn-close span::before,
.btn-close span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 24px;
    background-color: var(--accent-color);
}

.btn-close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-inner h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.modal-txt {
    padding: 24px;
    border-radius: 5px;
    background-color: #fff;
}

@media screen and (max-width: 559px) {
    .modal-txt {
        padding: 12px;
    }
}

.modal-txt p {
    margin-bottom: 24px;
}

.modal-txt ol>li {
    margin-bottom: 12px;
}

.modal-txt ul li {
    list-style: disc;
}
@media  screen and (max-width: 480px) {
    .modal-inner .btn-area form {
        width: auto;
    }
}

@media  screen and (max-width: 768px) {
    .modal-inner .btn-normal,
    .modal-inner .btn.btn-secondary {
        min-width: auto;
    }
}
.modal-inner .page-back {
    display: block;
}

/* ----------------------------------------------------------------------------------------
                        09. iframe css
* --------------------------------------------------------------------------------------- */
.making.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    background-image: url(../images/loader.gif);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

iframe.making {
    width: calc(100vw - 24px);
    height: 50vh;
}

iframe:not([sandbox]),
.making.loading:not([data-mode="on"]),
.invisible {
    display: none;
}