@charset "UTF-8";
:root {
    --dark-default: #222;
    --dark-tint50: #919191;
    --dark-tint20: #D3D3D3;
    --light-default: #FFF;
    --primary-default: #0144FF;
    --primary-tint90: #CCDAFF;
    --primary-light: #0096FA;
    --secondary-default: #17A52E;
    --bg-brand: #EDF2F7;
    --text-link: #008CFF;
    --alert-default: #FF3D01;
}

body {
    background-color: var(--light-default);
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
}

.mainContent {
    position: relative;
    min-width: 1024px;
    color: var(--dark-default);
    line-height: 1;
    font-size: 14px;
    font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

.section__title {
    text-align: center;
    font-size: 44px;
    font-weight: 900;
}

.section__titleSub {
    display: block;
    padding-bottom: 30px;
    color: var(--dark-tint50);
    font-size: 16px;
    font-weight: 500;
}

.section__title .-uppercase {
    font-size: 48px;
}

.textLink {
    color: var(--text-link);
    transition: all ease .3s;
}

.textLink:hover {
    color: var(--primary-default);
    text-decoration: none;
}

.textAlert {
    color: var(--alert-default) !important;
}

.btnGroup > a {
    width: 320px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 17.25px 35px 17.25px 24px;
    font-size: 16px;
    border-radius: 9999px;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

.btnGroup > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.btnGroup > a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btnGroup > a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0.6em;
    height: 0.6em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) translateX(-25%) rotate(45deg);
    transition: border-color 0.5s ease, color 0.5s ease;
    z-index: 1;
}

.btnGroup > form > button {
    width: 320px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 17.25px 35px 17.25px 24px;
    font-size: 16px;
    border-radius: 9999px;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.5s ease, background 0.5s ease, border-color 0.5s ease;
    border: none;
}

.btnGroup > form > button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.btnGroup > form > button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btnGroup > form > button::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0.6em;
    height: 0.6em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) translateX(-25%) rotate(45deg);
    transition: border-color 0.5s ease, color 0.5s ease;
    z-index: 1;
}

.btnGroup__txt {
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.btnGroup__primary {
    background: linear-gradient(85.13deg, var(--primary-default) -5.17%, var(--primary-light) 75.97%);
    color: var(--light-default);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.btnGroup__primary::before {
    background: linear-gradient(85.13deg, var(--primary-default), var(--primary-default));
}

.btnGroup__primary:hover {
    color: var(--light-default);
    box-shadow: none;
}

.btnGroup__common {
    background: var(--light-default);
    color: var(--dark-default);
    border: 1px solid var(--dark-default);
}

.btnGroup__common::before {
    background: var(--dark-default);
}

.btnGroup__common:hover {
    color: var(--light-default);
}

.cardNavArea__list {
    display: flex;
    justify-content: center;
    gap: 0 16px;
}

.cardNavArea__list__item {
    width: 110px;
    height: 110px;
}

.cardNavArea__list__link {
    display: inline-block;
    transition: .3s;
}

.cardNavArea__list__link:hover {
    opacity: 0.7;
}

.cardNavArea__list__image {
    max-width: 100%;
    vertical-align: bottom;
    box-shadow: 0 0 6px rgba(34, 34, 34, 0.15);
    border-radius: 8px;
}

.cardDesignArea {
    background-color: var(--bg-brand);
    margin: 0 auto;
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cardDesignArea__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cardDesignArea .basiccardDesign {
    background-color: var(--light-default);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.cardDesignArea .basiccardDesign__inner {
    background: linear-gradient(120deg, var(--dark-default) 50%, var(--light-default) 50%);
    display: flex;
    justify-content: center;
}

.cardDesignArea .basiccardDesign .cardDetail {
    width: 760px;
    margin: 30px auto;
}

.cardDesignArea .basiccardDesign .cardDesign__imageWrapper {
    height: 320px;
    display: grid;
    place-items: center;
    aspect-ratio: 2 / 1;
}

.cardDesignArea .basiccardDesign .cardDesign__image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.cardDesignArea .basiccardDesign .cardDesign__frontImage {
    position: relative;
    min-height: 320px;
    z-index: 10;
    transition: .3s;
    transform: translateY(0);
    backface-visibility: hidden;
}

.cardDesignArea .basiccardDesign .cardDesign__frontImage.is-disabled {
    transform: rotateY(180deg);
    z-index: 0;
}

.cardDesignArea .basiccardDesign .cardDesign__backImage {
    position: relative;
    top: -320px;
    left: 0;
    min-height: 320px;
    z-index: 1;
    transition: .3s;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.cardDesignArea .basiccardDesign .cardDesign__backImage.is-forward {
    z-index: 5;
}

.cardDesignArea .basiccardDesign .cardDesign__backImage.is-active {
    transform: translateY(0);
}

.cardDesignArea .basiccardDesign .cardDesign__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.cardDesignArea .basiccardDesign .cardDesign__box#basiccardDesign__white {
    color: var(--light-default);
    background-color: var(--dark-default);
    border-radius: 0 0 60px 0;
}

.cardDesignArea .basiccardDesign .cardDesign__box#basiccardDesign__black {
    background-color: var(--light-default);
    border-radius: 60px 0 0 0;
}

.cardDesignArea .cardDesign {
    display: flex;
    flex-direction: column;
    width: 760px;
    margin: 0 auto;
    background-color: var(--light-default);
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(34, 34, 34, 0.15);
}

.cardDesignArea .cardDesign__disclosure {
    position: relative;
    display: block;
    width: 100%;
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 20px 0 20px 60px;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    line-height: 1.6em;
}

.cardDesignArea .cardDesign__disclosure::before, .cardDesignArea .cardDesign__disclosure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    display: block;
    background-color: #000;
    width: 20px;
    height: 2px;
    transform: translateY(-50%);
    transition: .3s;
}

.cardDesignArea .cardDesign__disclosure::after {
    margin-left: -1px;
    margin-top: -1px;
    transform: rotate(90deg) translateY(-50%);
}

.cardDesignArea .cardDesign__disclosure.is-open::after {
    margin-left: 0;
    margin-top: 0;
    transform: rotate(0deg) translateY(-50%);
}

.cardDesignArea .cardDesign__inner {
    display: none;
    padding: 0 40px 40px;
}

.cardDesignArea .cardDesign:first-of-type {
    margin-top: 0;
}

.cardDesignArea .cardDesign__visual {
    display: flex;
    gap: 18px;
}

.cardDesignArea .cardDesign__name {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.cardDesignArea .cardDesign__select {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.cardDesignArea .cardDesign__cardlist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    width: 100%;
}

.cardDesignArea .cardDesign__cardlist > li {
    width: calc(100% / 2 - 10px * 2 / 3);
}

.cardDesignArea .cardDesign__cardlist > li:only-child {
    width: 100%;
}

.cardDesignArea .cardDesign__cardlist > li:nth-child(2):last-child, .cardDesignArea .cardDesign__cardlist > li:nth-child(1):nth-last-child(2) {
    width: calc(50% - 2px);
}

.cardDesignArea .cardDesign__cardlist__label {
    background-color: var(--bg-brand);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 3px;
    border-radius: 6px;
    cursor: pointer;
}

.cardDesignArea .cardDesign__cardlist__label.is-active {
    background-color: var(--primary-tint90);
    color: var(--primary-default);
}

.cardDesignArea .cardDesign__cardlist__radio {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--dark-tint20);
    background-color: var(--light-default);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin-right: 5px;
    position: relative;
    padding: 0;
}

.cardDesignArea .cardDesign__cardlist__radio:checked {
    border-color: var(--primary-default);
}

.cardDesignArea .cardDesign__cardlist__radio:checked::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    background: var(--primary-default);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.cardDesignArea .cardDesign__cardlist__txt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    width: 80%;
}

.cardDesignArea .cardDesign__detail {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cardDesignArea .cardDesign__detail.is-single {
    justify-content: center;
}

.cardDesignArea .cardDesign__detail.is-single .btn__primary {
    margin-bottom: 24px;
}

.cardDesignArea .cardDesign__imageWrapper {
    position: relative;
    width: 320px;
}

.cardDesignArea .cardDesign__image {
    vertical-align: bottom;
}

.cardDesignArea .cardDesign__frontImage {
    position: relative;
    width: 100%;
    max-width: 320px;
    z-index: 10;
    transition: .3s;
    transform: translateY(0);
    backface-visibility: hidden;
}

.cardDesignArea .cardDesign__frontImage.is-disabled {
    transform: rotateY(180deg);
    z-index: 0;
}

.cardDesignArea .cardDesign__backImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    z-index: 1;
    transition: .3s;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.cardDesignArea .cardDesign__backImage.is-forward {
    z-index: 5;
}

.cardDesignArea .cardDesign__backImage.is-active {
    transform: translateY(0);
}

.cardDesignArea .cardDesign__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cardDesignArea .cardDesign__copyright {
    font-size: 11px;
    color: var(--dark-tint50);
}

.cardDesignArea .cardDesign__label {
    color: var(--dark-tint50);
    font-size: 12px;
    font-weight: 500;
    display: block;
}

.cardDesignArea .cardDesign__title {
    margin-top: 2px;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
}

.cardDesignArea .cardDesign__type {
    font-size: 16px;
    font-weight: 500;
}

.cardDesignArea .cardDesign__period {
    font-size: 14px;
    margin-top: -10px;
}

.cardDesignArea .cardDetail {
    margin-top: 30px;
    border-top: 1px solid var(--dark-tint20);
    border-bottom: 1px solid var(--dark-tint20);
}

.cardDesignArea .cardDetail__disclosure {
    width: 100%;
    appearance: none;
    border: none;
    background-color: transparent;
    font-size: 14px;
    cursor: pointer;
    padding: 20px;
}

.cardDesignArea .cardDetail__title {
    position: relative;
    display: inline-block;
}

.cardDesignArea .cardDetail__title::before, .cardDesignArea .cardDetail__title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -32px;
    display: block;
    background-color: var(--dark-default);
    width: 14px;
    height: 2px;
    transform: translateY(-50%);
    transition: .3s;
    margin: 0 auto;
}

.cardDesignArea .cardDetail__title::after {
    margin-left: -1px;
    margin-top: -1px;
    transform: rotate(90deg) translateY(-50%);
}

.cardDesignArea .cardDetail__title.is-open::after {
    margin-left: 0;
    margin-top: 0;
    transform: rotate(0deg) translateY(-50%);
}

.cardDesignArea .cardDetail__notice {
    display: none;
    margin: 20px 0;
    list-style-type: none;
}

.cardDesignArea .cardDetail__notice__item {
    margin-top: 0.2em;
    font-size: 13px;
    font-weight: 400;
    color: var(--dark-tint50);
    line-height: 1.6;
}

.cardDesignArea .switchArea {
    display: flex;
    margin-top: -14px;
    z-index: 3;
}

.cardDesignArea .switchArea__btn {
    width: 72px;
    padding: 5px 0;
    list-style: none;
    color: var(--light-default);
    background-color: var(--dark-tint50);
    border: 3px solid var(--dark-tint50);
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.cardDesignArea .switchArea__btn.-front {
    border-radius: 6px 0 0 6px;
}

.cardDesignArea .switchArea__btn.-back {
    border-radius: 0 6px 6px 0;
}

.cardDesignArea .switchArea__btn:last-of-type {
    margin-left: -4px;
}

.cardDesignArea .switchArea__btn.is-active {
    color: var(--dark-tint50);
    background-color: var(--light-default);
    cursor: default;
    border-radius: 6px;
    z-index: 3;
}

.cardDesignArea .switchArea__btn.is-active:hover {
    opacity: 1;
}

.cardDesignArea__note {
    margin: 40px 0 0;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.button__scrollTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    width: 60px;
    height: 60px;
    background-color: var(--light-default);
    border: 2px solid var(--dark-default);
    border-radius: 40px;
    font-size: 0;
    z-index: 200;
}

.button__scrollTop::before, .button__scrollTop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 4px;
    height: 20px;
    margin-left: -7px;
    margin-top: -10px;
    background-color: var(--dark-default);
    transform: rotate(45deg);
}

.button__scrollTop::after {
    margin-left: 5px;
    transform: rotate(-45deg);
}
