/* 共通のスタイル start*/
html {
    font-size: 10px;
}

@media (max-width: 370px) {
    html {
        font-size: 2.666666vw;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: 1vw;
    }
}

@media (min-width: 1000px) {
    html {
        font-size: 10px;
    }
}

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

/* Remove default padding */
ul,
ol {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    display: grid;
    font-family: "Shuei KakuGo Gin M", sans-serif;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    display: block;
    width: 100%;
    height: 100%;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
    /* filter: blur(10px); */
}


/* フォームリセット */
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

.br-sp {
    display: none;
}


@media screen and (max-width: 767px) {
    .br-sp {
        display: block;
    }

    .br-pc {
        display: none;
    }
}

/* 共通のスタイル end*/


/* 共通の画面幅 start */
.l-contents {
    max-width: 110rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* 共通の画面幅 end */

/* 各ページで使い回す start */
.c-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.7rem;
    letter-spacing: .1em;
}

.c-title span {
    margin-top: -.2rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
}

.c-section{
    text-align:left;
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ababab;
    font-size: 2.3rem;
}

.c-logo {
    max-width: 20rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
}

.c-sns {
    margin-top: 3rem;
}

.c-title__sub {
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: .06em;
}

.c-sns__lists {
    margin-top: 4rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.c-sns__list:not(:first-child) {
    margin-left: 1.2rem;
}

.c-sns__image {
    width: 6rem;
    height: 6rem;
}

.c-form {
    max-width: 45rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.c-form__box {
    
}

.c-form__block {
    font-size: 1.6rem;
}

.c-form__block:not(:first-child) {
    margin-top: 2.4rem;
}

.c-form__block input {
    width: 100%;
    border: 1px solid #ababab;
    border-radius: .3rem;
    margin-top: 1rem;
    padding: 1.2rem 1.5rem;
}

.c-form__block input:focus {
    outline: #e83428 1px solid;
    border-radius: .3rem;
    border: 1px solid transparent;
}

.c-form__label{
    font-size: 1.6rem;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
}

.c-form__filed {
    position: relative;
}

.c-form__eye {
    width: 2.5rem;
    height: 1.5rem;
    position: absolute;
    content: "";
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.c-form__other {
    margin-top: 2rem;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
}

.c-form__forgot {
    display: flex;
    align-items: center;
    color: #000;
}

.c-form__check {
    display: flex;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    &.--select_all{
        margin-bottom: 1.2rem;
    }

    &.--choices{
        padding: 1.2rem;

        &.--error{
            border: 1px solid #e83428;
            border-radius: 0.8rem;
        }
    }
    
}

.c-form__check label{
    font-size: 1.4rem;

    &.--all{
        font-size: 1.6rem;
    }

    &.--unsubscribe {
        font-size: 1.7rem;
    }

    &.--login_stay{
        font-size: 1.6rem;
    }
}

.c-form__check input {
    padding: 0;
    margin: 0;
    display: block;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border: 2px solid #777777;
    border-radius: 3px;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    margin-top: .08rem;

    &:checked {
        border: 2px solid #e83428;
    }
}

/* .c-form__check input::before, */
.c-form__check input::after {
    content: "";
    display: block;
    position: absolute;
}

.c-form__check input::before {
    /* background-color: #fff;
    border-radius: 0%;
    border: 1px solid #c5c5c5;
    width: 1.8rem;
    height: 1.8rem; */
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.c-form__check input::after {
    border-bottom: .4rem solid #e83428;
    /*チェックの太さ*/
    border-left: .4rem solid #e83428;
    /*チェックの太さ*/
    opacity: 0;
    /*チェック前は非表示*/
    height: 1rem;
    /*チェックの高さ*/
    width: 2rem;
    /*チェックの横幅*/
    top: 50%;
    /*チェック時の位置調整*/
    left: .2rem;
    top: 1.1rem;
    /*チェック時の位置調整*/
    transform: translateY(-50%) rotate(-45deg);
}

.c-form__check input:checked::after {
    opacity: 1;
}

.c-form__btn {
    text-align: center;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.c-form__btn button{
    width: 100%;
    height: 6rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    background-color: #000;
    border-radius: 0.3rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    transition: all .3s;
    display: block;
    position: relative;

    &.--white{
        background-color: #fff;
        color: #000;
        border: 1px solid #ababab;
    }
}

.c-form__btn a{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 0;
    text-decoration: none;
    margin-bottom: 2rem;
    background-color: #000;
    border-radius: 0.3rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    transition: all .3s;
    display: block;
    position: relative;

    &.--white{
        background-color: #fff;
        color: #000;
        border: 1px solid #ababab;
    }
}

.c-form__backbtn {
    text-align: center;
    margin-top: 3.6rem;
    width: 26rem;
    margin-left: auto;
    margin-right: auto;
}

.c-form__backbtn button {
    width: 26rem;
    height: 5rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #f1ede2;
    border-radius: 4rem;
    text-align: center;
    font-size: 1.4rem;
    color: #51493c;
    transition: all .3s;
    display: block;
    position: relative;
}

.c-form__backbtn button::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 2rem;
    transform: translateY(-50%) rotate(-135deg);
    width: .8rem;
    height: .8rem;
    border-top: solid 1px #51493c;
    border-right: solid 1px #51493c;
}

.c-form__backbtn a {
    width: 26rem;
    height: 5rem;
    line-height: 5rem;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    background-color: #f1ede2;
    border-radius: 4rem;
    text-align: center;
    font-size: 1.4rem;
    color: #51493c;
    transition: all .3s;
    display: block;
    position: relative;
}

.c-form__backbtn a::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) rotate(45deg);
    width: .8rem;
    height: .8rem;
    border-top: solid 1px #51493c;
    border-right: solid 1px #51493c;
}


.c-form__error {
    padding: 0.5rem 0rem;
    color: #e83428;
    width: 100%;
    margin: auto;
    font-size: 1.4rem;
}

.c-form__btn button:disabled {
    background-color: #efe9db;
    color: #ada89d;
    transition: all .3s;
    /* pointer-events:none; */
    cursor: not-allowed;
}

.c-form__btn button:disabled::before {
    border-top: solid 1px #ada89d;
    border-right: solid 1px #ada89d;
}

.c-form__register {
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    margin-top: 1.2rem;
    line-height: calc(40/28);
}

.c-form__register a {
    color: #000;
}

.c-form__text {
    font-size: 1.6rem;
    margin-top: 3.4rem;
    line-height: 1.6;

    letter-spacing: 0.1rem;
}

.c-form__text--header {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 2.5rem;
}

.c-form__text--bold {
    font-weight: bold;
    text-align: center;
}

.c-form__text--center {
    text-align: center;
}

.c-form__block--name {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;

    & div{
        width: 50%;
    }
}

.c-form__details {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
    border: 1px solid;
    border-radius: .8rem;
}

.c-form__details h2 {
    font-size: 1.8rem;
    text-align: center;
}

.c-form__detail {
    margin-top: 2rem;
    font-size: 1.6rem;
}

.c-form__detail dl {
    padding: 1rem 0;
}

.c-form__detail dl:not(:first-child) {
    border-top: 1px solid;
}

.c-form__detail dt {
    font-weight: 700;
}

.c-form__detail dd {
    padding: 0 1.5rem;
}


@media screen and (max-width: 767px) {
    .c-logo {
        max-width: 20rem;
        height: 2rem;
    }

    .c-title {
        font-size: 2rem;
        letter-spacing: .05em;
    }

    .c-title span {
        margin-left: .7rem;
    }

    .c-section{
        font-size: 2rem;
    }
    .c-sns {
        margin-top: 2.4rem;
    }

    .c-title__sub {
        font-size: 1.6rem;
    }

    .c-sns__lists {
        margin-top: 1.5rem;
    }

    .c-sns__image {
        width: 4rem;
        height: 4rem;
    }

    .c-form__box {
        font-size: 2.1rem;
    }

    .c-form__block {
        font-size: 1.4rem;
    }

    .c-form__block input {
        margin-top: 0.7rem;
        padding: 1rem 1.2rem;
    }

    .c-form__other {
        margin-top: 1.7rem;
        font-size: 1.4rem;
    }

    .c-form__btn {
        margin-top: 3rem;
    }

    .c-form__btn button {
        height: 5rem;
        font-size: 1.6rem;
    }

    .c-form__register {
        font-size: 1.4rem;
    }

    .c-form__details h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .c-form__detail dl {
        font-size: 1.4rem;
    }

}

/* 各ページで使い回す end */

/* ログインページ */
.p-login {
    margin-bottom: 4rem;
}

.p-login__inner{
    max-width: 45rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .p-login__inner {
        padding: 0 1.5rem;
    }
}

.p-login__text{
    font-size: 1.6rem;
    letter-spacing: 0.1rem;

    &.--header{
        line-height: 2.5rem;
    }
}

/* ログインヘッダー */
.login-header {
    text-align: center;
    margin-bottom: 4rem;
}

.login-header .user-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.login-header .user-icon svg {
    width: 48px;
    height: 48px;
}

.login-header #page-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.05rem;
    line-height: 1.4;
}

/* フォームリンク */
.c-form__links {
    margin-top: 3rem;
    text-align: left;
}

.c-form__links .c-form__link {
    display: block;
    color: #000;
    text-decoration: underline;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.c-form__links .c-form__link:hover {
    color: #666;
}

/* ソーシャルログインセクション */
.c-sns__section {
    margin-top: 4rem;
}

.c-sns__title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05rem;
}

/* パスワード再設定 */
.l-resetting{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 64vh;
}

.p-progress {
    max-width: 60rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
}

.p-progress__bar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 42rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

}

.p-progress__bar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 25%;
    color: #000;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
}

.p-progress__bar li:before {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    margin: .7rem auto 1rem auto;
    content: '';
    text-align: center;
    border-radius: 50%;
    background-color: #efe9db;
}

.p-progress__bar li:after {
    position: absolute;
    z-index: -1;
    top: 20%;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #efe9db;
}

.p-progress__bar li:first-child:after {
    content: none;
}

.p-progress__bar li.active,
.p-progress__bar li.complete {
    color: #000;
}

.p-progress__bar li.active:before,
.p-progress__bar li.complete:before {
    background-color: #000;
}

.p-progress__bar li.active:after,
.p-progress__bar li.complete:after {
    background-color: #000;
}

.p-progress__form {
    /* max-width: ; */
}

.p-progress__email {
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 3.6rem;
}

.p-progress__comment-box {
    margin-top: 3.6rem;
}

.p-progress__comment {
    font-size: 1.6rem;
    line-height: 1.6;
    position: relative;
}

.p-progress__comment a {
    color: #000;
    font-weight: bold;
}

.p-progress__password {
    margin-top: 3.6rem;
    position: relative;
}

.p-progress__how {
    font-size: 1.4rem;
    margin-top: .5rem;
}


.c-form__select {
    display: block;
    width: 100%;
    border: 1px solid #ababab;
    border-radius: .3rem;
    margin-top: 1rem;

    position: relative;
}

.c-form__select select {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.2rem 1.5rem;

}

.c-form__select::before {
    position: absolute;
    content: "";
    background-image: url(/images/arrow.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 1.9rem;
    height: 0.9rem;
    z-index: -1;
}

.c-form__select-box--birthday {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.c-form__select--birthday {
    margin-top: 0;
    margin-right: .6rem;
}

.c-form__select--year {
    width: 43%;
}

.c-form__select--month,
.c-form__select--day {
    width: 26.5%;
    margin-left: 1.2rem;
}

.c-rule {
    margin-top: 2rem;
    font-size: 1.4rem;
}

.c-rule__title {
    font-size: 1.6rem;
    font-weight: 400;
}

.c-rule__all {
    letter-spacing: .02em;
}

.c-rule__lists {
    
}

.c-rule__lists label {
    letter-spacing: .02em;
}

.c-rule__all label {
    display: flex;
    align-items: center;
    width: calc(100% - 3rem);
}

.c-rule__logo {
    max-width: 15rem;
    height: 1.7rem;
    padding-right: .5rem;
    filter: brightness(0);
}

.c-rule__link {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .p-login {
        margin-bottom: 2rem;
    }

    .p-login__text{
        font-size: 1.4rem;
    }

    .c-form__text {
        font-size: 1.4rem;
    }

    .p-progress {
        margin-top: 2.4rem;
    }

    .p-progress__bar li {
        font-size: 1.2rem;
    }

    .p-progress__email {
        margin-top: 2rem;
    }

    .p-progress__comment-box {
        margin-top: 2rem;
    }

    .p-progress__comment {
        font-size: 1.4rem;
    }

    .c-form__select--birthday::before {
        right: .5rem;
    }

    .c-rule {
        font-size: 1.4rem;
    }

    .c-rule__logo {
        max-width: 14rem;
        height: 1.6rem;
        padding-right: .5rem;
    }
}

.p-register__comment-box {
    margin-top: 2.4rem;
}

/* startページ */
.p-start {
    max-width: 39rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.p-start__items {}

.p-start__signIn {
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
    border-radius: .3rem;
}

.p-start__link {
    display: block;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    text-decoration: none;
    text-align: center;
}

.p-start__signIn .p-start__link {
    color: #fff;
}

.p-start__title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .06em;
}

.p-start__text {
    font-size: 1.5rem;
    margin-top: 1.4rem;
    letter-spacing: .06em;
}

.p-start__signUp {
    color: #51493c;
    border: 1px solid #ababab;
    border-radius: .3rem;
    margin-top: 2rem;
}

.p-start__signUp .p-start__link {
    color: #000;
}

.p-start__question {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #000;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: .06em;
}

#alert div {
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 767px) {
    .p-start__title {
        font-size: 1.8rem;
    }

    .p-start__text {
        font-size: 1.4rem;
    }
}

/* アラートについて */
.c-alert {
    position: fixed;
    content: "";
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-in-out;
    /* フェードイン/フェードアウトのアニメーション */
    opacity: 0;
}

.c-alert.show {
    opacity: 1;
}

.c-alert__inner {
    background-color: #fff;
    box-shadow: 0px 0px 15px -5px #ababab;
    max-width: 57rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    border: 1px solid #ababab;
    border-radius: .3rem;

}

.c-alert__title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    letter-spacing: .02em;
}

.c-alert__text {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: .02em;
}

.c-alert__btn {
    margin-top: 4rem;
    font-size: 1.6rem;
    color: #fff;
    background-color: #000;
    width: 8rem;
    height: 4rem;
    line-height: 4rem;
    border-radius: .3rem;
    font-weight: bold;
    display: block;
    margin-left: auto;
}

/* パスワード強度 */
.c-strength {
    display: none;
    position: absolute;
    content: "";
    top: -14rem;
    left: -50%;
    width: 100%;
    padding: 2rem;
    background-color: #f9f6f1;
    border: 2px solid #e0d5ba;
    z-index: 2;
    border-radius: .8rem;
    box-shadow: 0px 0px 15px -5px #ababab;
}

.c-strength__text {
    text-align: center;
}

.c-strength__meter {
    margin-top: 1.2rem;
    height: .3rem;
    position: relative;
    background-color: #d8d8d8;
    width: 100%;
}

.c-strength__meter-color {
    position: absolute;
    top: 0;
    left: 0;
    height: .3rem;
}

.c-strength__comment {
    margin-top: 1.4rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-strength {
        left: 0;
        font-size: 1.4rem;
        padding: 1.5rem;
    }
}

/* SNS連携 */
.p-sns {
    max-width: 96rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8rem;
}

.p-sns__text {
    text-align: center;
}

.p-sns__lists {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.p-sns__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    border: 1px solid #ababab;
    border-radius: .3rem;
    padding: 1.8rem;
    width: calc(50% - 2.4rem * 1/2);
    margin-top: 2.4rem;
    margin-right: 2.4rem;
}

.p-sns__list:nth-child(2n) {
    margin-right: 0;
}

.p-sns__name {
    display: flex;
    align-items: center;
}

.p-sns__icon {
    width: 4.8rem;
    height: 4.8rem;
}

.p-sns__title {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 1.3rem;
}

.p-sns__btn {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.p-sns__btn button {
    width: 100%;
    height: 6rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #000;
    border-radius: 0.3rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    transition: all .3s;
    display: block;
    position: relative;

    &.--white{
        background-color: #fff;
        color: #000;
        border: 1px solid #ababab;
    }
}

.p-sns-joined__btn {
    text-align: center;
    width: 19rem;
    margin-left: auto;
}

.p-sns-joined__btn button {
    width: 19rem;
    height: 5rem;
    line-height: 5rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #e83428;
    border-radius: 4rem;
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
    transition: all .3s;
    display: block;
    position: relative;
}

.p-sns-joined__btn button::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) rotate(45deg);
    width: .8rem;
    height: .8rem;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}


@media screen and (max-width: 767px) {
    .p-sns__lists {
        display: block;
        flex-wrap: wrap;
    }

    .p-sns__list {
        width: 100%;
        margin-right: 0;
        gap: 4rem;
        flex-direction: row;
    }

    .p-sns__list:nth-child(2n) {
        margin-right: 0;
    }

    .p-sns__list:nth-child(n + 2) {
        margin-top: 2.4rem;
    }
}

@media screen and (max-width: 498px) {
    .p-sns__text {
        text-align: left;
    }

    .p-sns__list {
        padding: 1.4rem;
    }

    .p-sns__title {
        font-size: 1.6rem;
        margin-left: 1rem;
    }

    .p-sns__btn {
        text-align: center;
        width: 15rem;
        margin-left: auto;
    }

    .p-sns__btn button {
        width: 15rem;
        font-size: 1.4rem;
    }

    .p-sns-joined__btn {
        text-align: center;
        width: 15rem;
        margin-left: auto;
    }

    .p-sns-joined__btn button {
        width: 15rem;
        font-size: 1.4rem;
    }

    .p-sns-joined__btn button::before {
        width: .7rem;
        height: .7rem;
    }
}


/*======================================================
    退会手続き
======================================================*/
.l-unsubscribe {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 64vh;
}

.l-unsubscribe__top{
}

.l-unsubscribe__bottom{
}

.c-unsubscribe__text {
    margin-top: 1rem;
}

.p-unsubscribe__btn {
    display: flex;
    justify-content: center;
}

.p-unsubscribe__btn .c-form__btn {
   margin-left: 0;
   margin-right: 0;
}

.p-unsubscribe__btn .c-form__btn:first-child {
    margin-right: 1.5rem;
}


.c-unsubscribe {
    background-color: #f8e5e5;
    border-radius: .8rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: .04em;
    color: #bf0000;
}

.c-rule--unsubscribe {
    margin: 9rem 0;
    margin-left: auto;
    margin-right: auto;
}

.c-rule__lists--unsubscribe {
    margin-left: 0;
}

.c-form__check--unsubscribe {
    margin-top: 1.8rem;
}

.c-unsubscribe__info {
    background-color: #fff;
    padding: 0 2rem;
    margin-top: 6rem;

}

.c-unsubscribe__message {
    font-size: 1.6rem;
    text-align: center;
}

.c-unsubscribe__details {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    justify-content: center;
}

.c-unsubscribe__tel {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 4rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.c-unsubscribe__icon {
    width: 4rem;
    height: 4rem;
}

.c-unsubscribe__number {
    margin-left: .8rem;
}

.c-unsubscribe__time {
    font-size: 1.5rem;
    margin-left: .8rem;
}

.c-form__btn--unsubscribe button {
    cursor: initial!important;
    background-color: #efe9db;
    color: #a0998b;
}

.c-form__btn--unsubscribe button::before {
    border-top: solid 1px #a0998b;
    border-right: solid 1px #a0998b;
}

.c-form__btn--unsubscribe button.is-checked {
    background-color: #000;
    color: #fff;
}

.c-form__btn--unsubscribe button.is-checked::before {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

.c-form__error--unsubscribe {
    display: none;
}


/* モーダル */
.p-unsubscribe-modal {
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(30, 30, 30, 0.6);
    z-index: 100;
}

.p-unsubscribe-modal.is-modal {
    opacity: 1;
    visibility: visible;
    transition: all .3s;
}

.p-unsubscribe-modal__inner {
   position: relative;
   max-width: 72rem;
   margin-left: auto;
   margin-right: auto;
   height: inherit;
}

.p-unsubscribe-modal__container {
    background-color: #fff;
    border-radius: .8rem;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* height: 100%; */
    padding: 2rem 2rem 5rem 2rem;
    z-index: 10000;

}

.p-unsubscribe-modal__items {
    padding-left: 2rem;
    padding-right: 2rem;
}

.p-unsubscribe-modal__btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: relative;
    margin-left: auto;
    box-shadow: 0px 0px 1.5rem -.5rem #777777;
}

.p-unsubscribe-modal__btn span {
    width: 3rem;
    height: .2rem;
    background-color: #000;
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
}

.p-unsubscribe-modal__btn span:nth-child(1) {
    transform:translate(-50%, -50%) rotate(45deg);
}

.p-unsubscribe-modal__btn span:nth-child(2) {
    transform:translate(-50%, -50%) rotate(135deg);
}

.p-unsubscribe-modal__name {
    font-weight: bold;
}

.c-unsubscribe__finish img {
    width: 5rem;
    height: 5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px){
    .c-unsubscribe__item {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    .c-unsubscribe__info {
        padding: 0 1rem;
        margin-top: 4.5rem;    
    }
    .p-unsubscribe__btn {
        display: block;
    }

    .p-unsubscribe__btn .c-form__btn {
        margin-left: auto;
        margin-right: auto!important;
    }

    .c-unsubscribe__details {
       display: block;
       margin-top: 0;
    }

    .c-unsubscribe__message {
        font-size: 1.4rem;
    }

    .c-unsubscribe__tel {
        font-size: 3.6rem;
        justify-content: center;
    }

    .c-unsubscribe__time {
        text-align: center;
        font-size: 1.4rem;
    }
    
    .c-unsubscribe__icon {
        width: 3.6rem;
        height: 3.6rem;
    }

    .p-unsubscribe__btn {
        margin-top: 3rem;
    }

    

    /* モーダル */
    .p-unsubscribe-modal__container {
        width: 90%;
    }

    .p-unsubscribe-modal__items {
        padding-left: 0;
        padding-right: 0;
    }
}

/*======================================================
    退会申請確認
======================================================*/

.c-rule--unsubscribe02 {
    max-width: 45rem;
}

.p-progress__bar--unsubscribe {
    max-width: 50rem;
}


.p-progress__bar--unsubscribe li {
    width: 33.3%;
}

.c-unsubscribe__question {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .07em;
}

.p-unsubscribe__btn02 {
    margin-top: 2rem;
}

.c-form__btn--black button {
    background-color: #51493c;
    color: #fff;
}

.c-form__btn--black button::before {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

.p-progress--unsubscribe {
    max-width: 72rem;
}

.c-form__btn--ajinomoto a {
    background-color: #51493c;
}

.c-form__btn--top a {
    background-color: #efe9db;
    color: #51493c;
}

.c-form__btn--top a::before {
    border-top: solid 1px #51493c;
    border-right: solid 1px #51493c;
}

.c-form__text a {
    color: #000;
}

@media screen and (max-width: 767px){
    .c-unsubscribe__question {
        font-size: 1.4rem;
    }

}

.u-d-none {
    display: none;
}

.u-d-show {
    display: block;
}

.required::after {
    content: "必須";
    background-color: #e83428;
    color: #fff;
    font-size: 9px;
    font-weight: normal;
    min-width: 10px;
    padding: 3px 5px;
    margin: 0px 5px;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
}

.optional::after {
    content: "任意";
    border: 1px solid #e83428;
    color: #e83428;
    font-size: 9px;
    font-weight: normal;
    min-width: 10px;
    padding: 3px 5px;
    margin: 0px 5px;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none;
}
