@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

/* ------------------------------------------------------
RESET
------------------------------------------------------ */
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: auto;
    min-height: 100%;
}

figcaption,figure,main,article,footer,header,nav,section {display: block;}
html,body,button,input,p,h1,h2,h3,h4,h5,h6,figure,ul,ol,dl,dt,dd {margin: 0;}
ul,ol,dl,dd,dt { list-style: none; padding: 0;}
a {background-color: transparent;-webkit-text-decoration-skip: objects;outline: none;}
video {display: inline-block;}

sup {
    font-size: 0.7em;
}

/* ------------------------------------------------------
GENERAL
------------------------------------------------------ */

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  color: #292828;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  line-height: 1.75;
  background-color: #FFFDF7;
}

#main {
    margin-top: -72px;
    padding-top: 72px;
}

img {
    width: 100%;
}

p {
    font-size: 16px;
}

a {
  text-decoration: none;
  outline: none;
}

a.link {
    text-decoration: underline;
    color:#015EC5;
    display: inline-block;
}

a.link:hover {
    text-decoration: none;
}

.container {
    width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.o-header {
    z-index:1;
    border-bottom: none;
}

@media (min-width: 769px) {
    .o-header {
        border-top: none;
    }
}

@media screen and (max-width: 768px) {
    .o-header_logo {
        left: 50%;
        transform: translate(-50%,-50%);
    }
}

@media screen and (min-width: 769px) {
    .hidden--pc {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #main {
        margin-top: -50px;
        padding-top: 50px;
    }

    body {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    .container {
        width: 100%;
    }

    .hidden--sp {
        display: none;
    }
}

/* TITLE */

.title--l {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.title--m {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.title--s {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {

    .title--l {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .title--m {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .title--s {
        font-size: 16px;
        margin-bottom: 14px;
    }
}

@media screen and (max-width: 450px) {
    .title--l {
        font-size: calc(24 / 390 * 100vw);
        margin-bottom: 20px;
    }

    .title--m {
        font-size: calc(18 / 390 * 100vw);
        margin-bottom: 15px;
    }
}

/* TEXT */

.text--s {
    font-size: 12px;
}

.text--m {
    font-size: 14px;
    line-height: 1.7;
}

.text--ml {
    font-size: 16px;
}

.text--l {
    font-size: 18px;
}

.text--red {
    color: #EF3A06;
}

.text--gold {
    color: #B38442;
}

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

.text--semibold {
    font-weight: 600;
}

.text--bold {
    font-weight: 700;
}

.text--medium {
    font-weight: 500;
}

.mt10 {
    margin-top: 10px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mt--l {
    margin-top: 80px;
}

.mt--m {
    margin-top: 40px;
}

.mt--s {
    margin-top: 20px;
}

.note {
    font-size: 12px;
    margin-top: 20px;
    margin-left: 1em;
}

.note li:before {
    display: inline-block;
    content: "※";
    text-indent: -1em;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex--align-center {
    align-items: center;
}

.flex--space {
    justify-content: space-around;
}

.flex--between {
    justify-content: space-between;
}

.bg--gold {
    background: url(../img_202404/bg_gold.png) repeat;
    background-size: 980px auto;
    position: relative;
    z-index: 1;
}

.box {
    background-color: #fff;
    border-radius: 5px;
    margin-top: 38px;
    padding: 40px;
}

.box--blue {
    background-color: #DFF1FC;
    border-radius: 5px;
    margin-top: 25px;
    padding: 40px;
}

.box--orange {
    background-color: #FCEFE4;
    border-radius: 5px;
    margin-top: 25px;
    padding: 40px;
}

@media screen and (max-width: 768px) {
    .text--left-s {
        text-align: left;
    }
    .text--center-s {
        text-align: center;
    }

    .mt--l {
        margin-top: 40px;
    }

    .mt--m{
        margin-top: 20px;
    }

    .box, .box--blue, .box--orange {
        padding: 30px;
        margin-top: 16px;
    }
}

@media screen and (max-width: 450px) {

    .box, .box--blue, .box--orange {
        padding: 20px;
    }

    .note {
        margin-top: 15px;
    }
}

/* ------------------------------------------------------
BUTTON
------------------------------------------------------ */

.button__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-inline: -12px;
}

.button__flex .button {
    margin-inline: 12px;
    flex: 1;
}

.button {
    border: 1px solid #ef3a06;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    line-height: 24px;
    margin: 20px auto 0;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 3px rgba(0,0,0,.3);
    font-size: 16px;
    transition: box-shadow .4s, opacity .4s;
    padding-inline: 45px;
}

.button:hover {
    box-shadow: none;
}

.button span, .button__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: block;
    transform: translateY(-50%);
}

.button--s {
    height: 56px;
    max-width: 320px;
    font-size: 14px;
}

.button--l {
    max-width: 460px;
}

.button--default,
.button--modal,
.button--anchor-white {
    background-color: #fff;
    color: #ef3a06;
}

.button--default span {
    background: url(../img_202404/button_icon_link.png) no-repeat;
    background-size: 100% auto;
}

.button--modal {
    background-color: #fff;
    color: #ef3a06;
}

.button--modal span {
    width: 24px;
    height: 24px;
    background: url(../img_202404/icon_question_red.png) no-repeat;
    background-size: 100% 100%;
}

.button--anchor, .button--strong {
    background-color: #ef3a06;
    color: #fff;
}

.button--anchor span,
.button__icon--anchor  {
    background: url(../img_202404/button_icon_anchor.png) no-repeat;
    background-size: 100% auto;
}

.button--strong span,
.button__icon--strong {
    background: url(../img_202404/button_icon_anchor.png) no-repeat;
    background-size: 100% auto;
    transform: translateY(-50%) rotate(-90deg);
}

.button__icon--anchor-red,
.button--anchor-white span {
    background: url(../img_202404/button_icon_link.png) no-repeat;
    background-size: 100% auto;
    transform: translateY(-50%) rotate(90deg);
}

span.button__icon--close {
    background: url(../img_202404/icon_close.png) no-repeat;
    background-size: 100% auto;
}

.button--blank {
    background-color: #fff;
    color: #ef3a06;
}

.button--blank span {
    background: url(../img_202404/button_icon_blank.png) no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 768px) {
    .button__flex {
        margin-inline: 0;
    }

    .button__flex .button {
        margin-inline: 6px;
        flex: none;
        margin-top: 15px;
    }

    .button--s {
        max-width: 350px;
    }
}

@media screen and (max-width: 450px) {

    .button {
        margin-top: 15px;
        max-width: 370px;
        font-size: calc(14 / 390 * 100vw);
        padding-inline: calc(15 / 390 * 100vw) calc(30 / 390 * 100vw);
    }

    .button span {
        width: 20px;
        height: 20px;
        right: 8px;
    }
}



.o-modal_mpabackground,
.o-modal-mpa {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.modal__trigger {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__trigger-border {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #292828;
    padding: .01em .5em;
    border-radius: 5px;
}

.modal__trigger .icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
    background: url(../img_202404/icon_question.png) no-repeat;
    background-size: 100% 100%;
    border: none;
}

.modal__trigger .icon img {
    display: block;
}

.o-modal_main {
    border-radius: 5px;
    overflow: auto;
    max-height: 90vh;
}

.modal__img {
    margin-inline: auto;
    max-width: 400px;
}

.textarea--gold {
    text-align: center;
    color: #fff;
    background-color: #B38442;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    padding: .5em 1em;
}

.textarea--gold:not(:first-child) {
    margin-top: 20px;
}

.textarea--gold:not(:last-child) {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .o-modal_main {
        max-width: 660px;
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 450px) {
    .modal__trigger {
        font-size: calc(18 / 390 * 100vw);
    }

    .textarea--gold {
        font-size: calc(18 / 390 * 100vw);
    }
}


/*---------------------------------------------------
ANIMATION
----------------------------------------------------*/

.loading-animation,
.fadeup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .6s;
}

.loading-animation.is-show,
.fadeup.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.delay--400 {
    transition-delay: 400ms;
}

.delay--1000 {
    transition-delay: 1000ms;
}

/*---------------------------------------------------
KV
----------------------------------------------------*/

.kv {
    padding-top: 55px;
    position: relative;
}

.kv .container {
    padding-inline: 0;
}

.kv__bg {
    background: url(../img_202404/kv_bg_pc.png) no-repeat;
    background-size: cover;
    width: 100vw;
    height: calc(100% + 72px);
    position: absolute;
    top: -72px;
    left: 0;
}

.kv__copy-wrap {
    width: 51%;
}

.kv__copy {
    margin-top: 17%;
    max-width: 404px;
    width: 100%;
    margin-inline: 112px auto;
}

.kv__slide {
    width: 49%;
    position: relative;
    height: 410px;
}

.kv__slide-img--vertical {
    width: 388px;
    margin-inline: auto;
}

.kv__slide-img--horizontal {
    width: 480px;
    margin-inline: auto;
    margin-top: 7%;
}


.kv__slide-pagination {
    position: absolute;
    bottom: 144px !important;
    height: 30px;
}

.kv__note {
    position: absolute;
    top: 278px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .kv {
        padding-block: 25px 60px;
    }

    .kv__bg {
        top: -50px;
        height: calc(100% + 50px);
        background: url(../img_202404/kv_bg_sp.png) no-repeat;
        background-size: cover;
    }

    .kv__copy-wrap {
        width: 100%;
        order: 2;
    }

    .kv__copy {
        margin-top: 0;
        width: calc(366 / 390 * 100vw);
        margin-inline: auto;
    }

    .kv__copy img {
        transform: translateX(2%);
    }

    .kv__slide {
        width: 100%;
        height: calc(254 / 390 * 100vw);
    }

    .kv__slide-img--vertical {
        width: calc(286 / 390 * 100vw);
        margin-right: calc(20 / 390 * 100vw);
    }

    .kv__slide-img--horizontal {
        width: calc(343 / 390 * 100vw);
        margin-right: calc(10 / 390 * 100vw);
    }

    .kv__slide-pagination {
        bottom: calc(116 / 390 * 100vw) !important;
    }

    .kv__note {
        top: calc(208 / 390 * 100vw);
    }
}

/*---------------------------------------------------
NAVIGATION
----------------------------------------------------*/

.navi__menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    gap: 8px;
}

.navi__menu li {
    margin-block: -10px 10px;
    font-size: 18px;
    max-width: 328px;
    width: 100%;
}

.navi__menu li a {
    color: #292828;
    background-color: #fff;
    position: relative;
    height: 72px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding-inline: 10px 40px;
    transition: opacity .4s;
    line-height: 1.25;
}

.navi__menu li a:hover {
    opacity: .7;
}

.navi__menu a:after {
    content:"";
    display: block;
    width: 25px;
    height: 25px;
    background: url(../img_202404/button_icon_link.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right : 15px;
    transform: translateY(-50%) rotate(90deg)
}

.navi__menu .icon {
    width: 34px;
    margin-right: 27px;
    display: inline-block;
}

.navi__menu li small {
    font-size: 16px;
    transform: translateX(-10px);
}

.navi__bg--shadow {
    position: absolute;
    top: -6px;
    left: 20px;
    mix-blend-mode: multiply;
}

@media screen and (max-width: 768px) {
    .navi__menu {
        padding-bottom: 15px;
        gap: 10px;
    }

    .navi__menu li {
        font-size: 16px;
    }

    .navi__menu li:nth-child(-n+3) {
        flex: 1 1 calc(100% / 3 - 10px);
        font-size: 16px;
        margin-top: -30px;
        text-align: center;
    }

    .navi__menu li:nth-child(-n+3) a {
        flex-direction: column;
        padding-inline: 0;
        padding-block: calc(10 / 390 * 100vw) 40px;
        height: 100%;
    }

    .navi__menu li:nth-child(-n+3) a::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 10px;
        transform: translateX(-50%) rotate(90deg);
    }

    .navi__menu li:nth-child(-n+3) .icon {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .navi__bg--shadow {
        width: calc(100% - 30px);
        left: 20px;
        top: 50%;
    }
    
    .navi__menu li.navi__menu--campaign {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {

    .navi__bg--shadow {
        top: 24%;
    }
}

@media screen and (max-width: 450px) {

    .navi__bg--shadow {
        top: 62px;
    }

    .navi__menu li:nth-child(-n+3) {
        font-size: calc(16 / 390 * 100vw);
    }

    .navi__menu li:nth-child(4) a {
        padding-inline: calc(10 / 390 * 100vw) 40px;
    }

    .navi__menu .icon {
        width: calc(34 / 390 * 100vw);
        margin-right: calc(27 / 390 * 100vw);
    }
}

@media screen and (max-width: 320px) {
    .navi__menu li.navi__menu--campaign small {
        font-size: 14px;
    }
}



/*---------------------------------------------------
ABOUT
----------------------------------------------------*/

.about-container {
    padding-block: 54px 76px;
    position: relative;
    z-index: 1;
}

.about .button {
    max-width: 330px;
}

.about__title {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 29px;
    line-height: 1.6;
}

.about__title span {
    padding-bottom: 8px;
    border-bottom: 4px solid #B38442;
}

.about__text {
    text-align: center;
}

.about__subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-block: 30px 5px;
    color: #B38442;
}

.about__property {
    display: flex;
    justify-content: center;
    margin-block: 25px 60px;
}

.about__property-each {
    text-align: center;
    font-weight: 500;
    margin-inline: 20px;
    line-height: 1.5;
}

.about__property-img {
    text-align: center;
    max-width: 150px;
    margin-inline: auto;
    margin-bottom: 10px;
}

.about__inner {
    max-width: 878px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .about-container {
        padding-block: 34px 60px;
    }

    .about__property {
        padding-inline: 15px;
        margin-inline: calc(-7 / 390 * 100vw);
        margin-bottom: 40px;
    }

    .about__property-each {
        width: calc(100 / 390 * 100vw);
        margin-inline: calc(7 / 390 * 100vw);
    }
}

@media screen and (max-width: 450px) {
    .about__title {
        font-size: calc(24 / 390 * 100vw);
    }

    .about__subtitle {
        font-size: calc(16 / 390 * 100vw);
        margin-block: 15px 10px;
    }
}

.about__summary {
    width: 510px;
    position: relative;
    margin-bottom: 20px;
}

.about__summary--right {
    margin-left: auto;
}

.about__summary-img {
    width: 380px;
}

.about__summary--left .about__summary-img {
    margin-left: auto;
}

.about__summary-textarea {
    width: 356px;
    height: 110px;
    background-color: #fff;
    border: 1px solid #B58615;
    text-align: center;
    border-radius: 5px;
    margin-top: -90px;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.about__summary--right .about__summary-textarea {
    margin-left: auto;
}

.about__summary-title {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about__summary-subtitle {
    color: #B38442;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: .3em;
}

.about__summary-text {
    font-size: 16px;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {

    .about__summary {
        width: 100%;
        padding-inline: 15px;
    }

    .about__summary-img {
        width: calc(245 / 390 * 100vw);
    }

    .about__summary-textarea {
        width: calc(230 / 390 * 100vw);
        height: 110px;
        margin-top: calc(-50 / 390 * 100vw);
    }
}

@media screen and (max-width: 450px) {

    .about__summary-textarea {
        height: auto;
        padding-block: calc(10 / 390 * 100vw);
    }

    .about__summary-title {
        font-size: calc(20 / 390 * 100vw);
    }

    .about__summary-subtitle {
        font-size: calc(16 / 390 * 100vw);
    }

    .about__summary-text {
        font-size: calc(14 / 390 * 100vw);
    }
}

/*---------------------------------------------------
BENEFITS
----------------------------------------------------*/

.benefits__wrap {
    padding-block: 1px 80px;
    margin-top: 100px;
}

.benefits__header {
    max-width:1080px;
    margin-inline: auto;
    position: relative;
    margin-block: -100px 60px;
}

.benefits__header-icon {
    position: absolute;
    width: 122px;
    left: 60px;
    top: -36px;
}

.benefits__header-copy {
    font-size: 32px;
    color: #B38442;
    margin-top: -81px;
    margin-right:40px;
    font-weight: 700;
    text-align: right;
    line-height: 53px;
}

.benefits__header-copy > div span {
    background-color: #fff;
    padding-inline: 10px;
    display: inline-block;
}

.benefits__header-copy > div + div {
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    .benefits__wrap {
        margin-top: 0;
    }

    .benefits__header {
        margin-block: 0 40px;
    }

    .benefits__header-icon {
        left: 20px;
        top: -10%;
    }

    .benefits__header-copy {
        margin-right: 0;
    }
}

@media screen and (max-width: 450px) {
    .benefits__wrap {
        padding-block: 0 40px;
    }

    .benefits__header-icon {
        width: calc(98 / 390 * 100vw);
    }

    .benefits__header-copy {
        font-size: calc(24 / 390 * 100vw);
        line-height: calc(40 / 390 * 100vw);
        margin-top:calc(-20 / 390 * 100vw);
        letter-spacing: -0.05em;
    }
}

/* SORT BUTTON */

.benefits__sort-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.benefits__sort {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-block: 23px 15px;
}

.benefits__sort button {
    background-color: #fff;
    border-radius: 5px;
    border:0;
    margin: 6px 4px;
    font-weight: 600;
    font-size: 16px;
    max-width: 200px;
    width: 100%;
    height: 50px;
    box-shadow: 0 3px 3px rgba(0,0,0,.2);
    transition: box-shadow .4s;
    color: #292828;
    padding-inline: 2px;
}

.benefits__sort button:hover {
    box-shadow: none;
}

/* Common.cssを上書きするため */
body.is-pc .benefits__sort button.is-active {
    opacity: 1 !important;
}

.benefits__sort button.is-active {
    background-color: #ef3a06;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .benefits__sort-title {
        font-size: 16px;
    }

    .benefits__sort {
        margin-inline: -3px;
        margin-block: 20px 10px;
    }

    .benefits__sort button {
        margin: 3px;
        width: calc(50% - 6px);
        font-size: 14px;
        max-width: 100%;
    }
}

.benefits__items {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -10px;
}

.benefits__items > div {
    background-color: #fff;
    margin-block: 9px;
    margin-inline: 10px;
    padding: 20px;
    border-radius: 5px;
    width: calc((100% / 3) - 20px);
}

.benefits__items > div.is-hidden {
    display: none;
}

.benefits__items .button {
    margin-top: 15px;
}

.benefits__item-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.benefits__item-date {
    font-weight: 500;
    margin-bottom: 8px;
}

.benefits__item-tag {
    display: flex;
    margin-bottom: 14px;
}

.benefits__item-tag li {
    background-color: #EAEAEA;
    margin-right: 8px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 500;
    line-height: 26px;
    padding-inline: 8px;
}

.benefits__item-img {
    width: 240px;
    margin-inline: auto;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {

    .benefits__items {
        margin-inline: 0;
    }

    .benefits__items > div {
        margin-block: 7px;
        width: 100%;
        margin-inline: 0;
    }

    .benefits__item-tag li {
        font-size: 10px;
    }
}

/* CAMPAIGN CAROUSEL */

.benefits__campaign {
    background-color: #fff;
    border-radius: 8px;
    padding-block:42px 64px;
    margin-top: 82px;
}

.benefits__campaign-header {
    padding-inline: 40px;
}

.benefits__campaign-header span {
    padding-bottom: 4px;
    border-bottom: 3px solid #B38442;
}

.campaign__carousel {
    max-width: 512px;
    width: 100%;
    margin-inline: auto;
    margin-top: 20px;
    position: relative;
}

.campaign__carousel-pagination {
    bottom: -30px !important;
}

@media screen and (max-width: 768px) {
    .benefits__campaign {
        margin-top: 10px;
        padding-block: 20px 48px;
    }

    .benefits__campaign-header {
        padding-inline: 20px;
    }

    .campaign__carousel {
        margin-top: 10px;
    }
}

/* BENEFITS 1 */


.benefits--1 .benefits__box {
    background-color: #fff;
    border-radius: 5px;
    padding: 50px 20px;
    position: relative;
    margin-top: 35px;
}

.benefits--1 .benefits__box:before {
    display: block;
    content: "";
    background-color: rgba(255, 255, 255, 0.3);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.benefits--1 .benefits__box-img {
    max-width: 753px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .benefits--1 .benefits__box {
        padding: 20px 10px;
        width: calc(100% - 30px);
        margin-inline: auto;
    }
}

.benefits__condition {
    margin-top: 22px;
    padding-top: 60px;
}

.benefits__condition-box {
    margin-bottom: 40px;
}

.benefits__condition-img {
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
    margin-block: 25px;
}

@media screen and (max-width: 768px) {
    .benefits__condition {
        margin-top: 20px;
        padding-top: 20px;
    }
}

.benefits__lounge-box {
    background-color: #FCEFE4;
    border-radius: 5px;
    margin-top: 33px;
    margin-inline: auto;
    padding: 20px;
    max-width:582px;
    width: 100%;
}

.benefits__lounge-title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}

.benefits__lounge-cards {
    width: 147px;
    display: flex;
}

.benefits__lounge-cards > div {
    width: 61px;
    margin-inline: 6px;
}

.benefits__cost-box {
    padding: 30px;
}


.benefits__cost {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-weight: 600;
}

.benefits__cost li {
    margin-block: 10px;
    margin-inline: 20px;
}

.benefits__cost-img {
    max-width: 100px;
    margin-inline: auto;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .benefits__lounge-content {
        width: 100%;
    }
    .benefits__lounge-cards {
        width: calc(100 / 390 * 100vw);
        margin-top: 15px;
        justify-content: center;
    }

    .benefits__cost-img {
        max-width: 90px;
    }

    .benefits__cost li {
        margin-inline: 5px;
    }

    .benefits__lounge-cards > div {
        margin-inline: 4px;
    }

    .benefits__cost-box {
        padding: 20px;
    }
}

@media screen and (max-width: 450px) {

    .benefits__cost {
        justify-content: space-around;
        max-width: 280px;
        margin-inline: auto;
    }

    .benefits__cost li {
        margin-block: 8px;
        width: calc(33% - 10px);
    }

    .benefits__cost p {
        font-size: 12px;
    }

    .benefits__cost-box {
        padding: calc(25 / 390 * 100vw) calc(20 / 390 * 100vw);
    }
}

/* SIMULATION */

.simulation {
    margin-top: 36px;
}

.simulation__flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    background-color: #FCEFE4;
    border-radius: 5px;
    padding: 15px 29px;
    align-items: center;
}

.simulation__img {
    width: calc(50% - 20px);
}

.simulation__img img {
    width: 70px;
}

.simulation__img-text {
    width: calc(100% -  110px);
    margin-left: 20px;
}

.simulation__payment {
    width: calc(50% - 20px);
    margin-right: 40px;
}

.simulation__payment-box {
    background-color: #fff;
    border-radius: 5px;
    padding: 22px 20px;
    margin-block: 10px;
}

.simulation__payment-title {
    border-bottom: 1px solid #ccc;
    font-size: 17px;
    padding-bottom: 9px;
    margin-bottom: 8px;
    font-weight: 600;
}

.simulation__payment-list {
    text-align: right;
    font-size: 15px;
    font-weight: 500;
}

.simulation__payment-list .item {
    display: inline-block;
    text-align: right;
    margin-right: 0.5em;
}
.simulation__payment-list .price {
    display: inline-block;
    width: 70px;
}

.simulation__payment-list + .simulation__payment-title {
    margin-top: 10px;
}

.simulation__payment-sum {
    text-align: right;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .simulation__flex {
        margin-top: 10px;
        padding-inline: 20px;
    }

    .simulation__img {
        width: 100%;
        max-width: 480px;
        margin-inline: auto;
    }

    .simulation__payment {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .simulation__payment-box {
        padding: 15px;
        margin-block: 8px;
    }

    .simulation__payment-title {
        font-size: 14px;
        padding-bottom: 3px;
        margin-bottom: 6px;
    }

    .simulation__payment-list {
        font-size: 12px;
        font-weight: 500;
    }

    .simulation__payment-list + .simulation__payment-title {
        margin-top: 10px;
    }

    .simulation__payment-list .price {
        width: 56px;
    }
    .simulation__payment-sum {
        padding-right: 0;
    }

    .simulation__img-text {
        width: calc(100% -  90px);
        margin-left: 20px;
    }
}

/* BENEFITS 2 */

.benefits--2 {
    margin-top: 237px;
}

/* BENEFITS 3 */

.benefits--3 {
    margin-top: 237px;
    padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .benefits--2 {
        margin-top: 0;
        padding-bottom: 60px;
    }
    .benefits--3 {
        margin-top: 0;
        padding-bottom: 40px;
    }
}

/* LOCATION */


.location__flex {
    max-width: 736px;
    margin-inline: auto;
    gap: 20px;
}

.location__flex-each {
    flex: 1 1 calc(100% / 2 - 20px);
}

.location__list {
    background-color: #fff;
    border-radius: 5px;
    color: #000;
}

.location__list + .location__list  {
    margin-top: 20px;
}

.location__list dt {
    font-weight: 700;
    padding: 18px 15px;
    position: relative;
}

.location__list-box {
    padding: 20px;
}

.location__list-terminal {
    font-weight: 700;
    background-color: #FCEFE4;
    padding: 8px 15px;
    font-size: 16px;
}

.location__list li {
    border: 1px solid #707070;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.3;
}

.location__list li a {
    color: #000;
    position: relative;
    padding-block: 10px;
    padding-inline: 15px 45px;
    display: block;
}

.location__list li a[target="_blank"]:after {
    content: "";
    display: block;
    position: absolute;
    top : 50%;
    right: 15px;
    background: url(../img_202404/button_icon_blank.png) no-repeat;
    background-size: 100% auto;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
}

.location__list ul.flex {
    gap: 5px;
}

.location__list ul.flex li {
    flex: 1 1 calc(100% / 3 - 5px);
    text-align: center;
}

.location__list ul.flex li a {
    padding-inline: 10px;
    padding-block: 8px 40px;
}

.location__list ul.flex li a:after {
    top : auto;
    bottom: 10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
    .location__list dt span {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .location__flex {
        margin-inline: 0;
    }

    .location__flex-each {
        width: 100%;
        margin-inline: 0;
        flex: none;
    }

    .location__lead {
        text-align: left;
        margin-bottom: 5px;
    }

    .location__list {
        margin-top: 10px;
    }

    .location__list + .location__list  {
        margin-top: 10px;
    }

    .location__list dd {
        border-top: 1px solid #ccc;
    }
}

@media screen and (max-width: 450px) {

    .location__list dt {
        font-size: calc(16 / 390 * 100vw);
    }

    .location__list-terminal {
        font-size: calc(16 / 390 * 100vw);
    }
}

.service__img {
    max-width: 326px;
    margin-inline: auto;
}

/* INSURANCE */
.insurance__box {
    padding-top: 73px;
}

.insurance__table {
    max-width: 729px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
}

.insurance__table thead th {
    color: #fff;
    font-weight: 600;
    padding: 10px 5px 10px 20px;
    position: relative;
}

.insurance__table thead th.normal {
    background-color: #4553A3;
}

.insurance__table thead th.gold {
    background-color: #B38442;
}

.insurance__table tbody th {
    background-color: #666666;
    color: #fff;
    font-weight: 500;
    border-top: 1px solid #ccc;
    width: 198px;
    padding: 15px 5px;
}

.insurance__table tbody td {
    border-top: 1px solid #ccc;
    padding: 15px 5px;
}

.insurance__table tbody td.normal {
    background-color: #DFF1FC;
    border-right: 1px solid #ccc;
}

.insurance__table tbody td.gold {
    background-color: #FCEFE4;
}

.insurance__table-card {
    display: block;
    border: 1px solid #fff;
    border-radius: 2px;
    position: absolute;
    bottom: 13px;
    left: 20px;
}

.insurance__table thead th.normal .insurance__table-card {
    width: 38px;
}

.insurance__table thead th.gold .insurance__table-card {
    width: 55px;
}

.insurance__note {
    font-size: 12px;
}

.insurance__text {
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .insurance__box {
        padding-top: 90px;
    }

    .insurance__table thead th {
        padding: 25px 0 10px
    }

    .insurance__table tbody th,
    .insurance__table tbody td {
        font-size: 12px;
        padding-block: 10px;
    }

    .insurance__table tbody th {
        width: 94px;
    }

    .insurance__table-card  {
        left: 50%;
        bottom: 60px;
        transform: translate(-50%, 0);
    }

    .insurance__text {
        margin-bottom: 0;
    }

    .insurance__note {
        font-size: 10px;
    }
}

@media screen and (max-width: 450px) {
    .insurance__table thead th {
        font-size: calc(14 / 390 * 100vw);
    }

    .insurance__table tbody th,
    .insurance__table tbody td {
        font-size: calc(12 / 390 * 100vw);
        width: calc(94 / 390 * 100vw);
        max-width: 94px;
    }
}

/* FAMILY */

.familycard__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.familycard__block {
    width: 50%;
}

.familycard__title {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.4;
    text-align: center;
}

.familycard__img {
    max-width: 320px;
    margin-inline: auto;
}

.familycard__logo--visa {
    width: 90px;
    margin-inline: auto;
    margin-block: 17px 20px;
}

.familycard__logo--master {
    width: 90px;
    margin-inline: auto;
}

.familycard__buttons {
    max-width: 342px;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-inline: auto;
    margin-top: 30px;
}

.familycard__buttons > div {
    margin-inline: 10px;
    flex: 1;

}

.familycard__buttons .button {
    margin-top: 5px;
    margin-inline: 0;
    max-width: 151px;
    width: 100%;
    padding-inline: 25px;
}

.familycard__buttons .button span {
    width: 20px;
    height: 20px;
    right: 5px;
}

@media screen and (min-width: 769px) {
    .familycard__block:first-child {
        border-right: 1px solid #ccc;
        padding-right: 35px;
    }

    .familycard__block:last-child {
        padding-left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .familycard__block {
        width: 100%;
    }

    .familycard__block +  .familycard__block {
        margin-top: 28px;
        padding-top: 20px;
        border-top: 1px solid #ccc;
    }

    .familycard__buttons > div:first-child {
        margin-left: 0;
    }

    .familycard__buttons > div:last-child {
        margin-right: 0;
    }

    .familycard__title {
        font-size: 18px;
    }

    .familycard__buttons {
        margin-top: 20px;
    }

    .familycard__buttons .button {
        max-width: 200px;
    }
}

@media screen and (max-width: 450px) {

    .familycard__title {
        font-size: calc(17 / 390 * 100vw);
    }
}

/* STEPS */

.steps {
    margin-top: 80px;
}

.steps__inner {
    max-width: 460px;
    margin-inline: auto;
}

.steps__navi {
    margin-top: 40px;
}

.steps__navi li a {
    justify-content: center;
}

.steps__flex--l {
    width: 50%;
}

.steps__flex--r {
    width: calc(50% - 40px);
    margin-left: 40px;
}

.steps__title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.steps__title--center {
    justify-content: center;
}

.steps__title-text {
    flex: 1;
}

.steps__title span {
    display: block;
}

.steps__icon {
    width: 80px;
    margin-right: 15px;
}

.steps__img {
    max-width: 388px;
    margin-inline: auto;
    margin-bottom: 15px;
}

.steps__img--3 {
    max-width: 300px;
    margin-inline: auto;
}

.steps__img-benefits {
    max-width: 800px;
    margin-inline: auto;
    margin-block: 10px 15px;
}

.steps__box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
}

.steps__box-flex {
    justify-content: center;
}

.steps__box-price {
    color: #BC0088;
    font-weight: 900;
    font-size: 18px;
    margin-right: 20px;
}

.steps__box-price span {
    font-size: 40px;
}


@media screen and (max-width: 768px) {

    .steps {
        margin-top: 40px;
    }
    .steps__flex--l {
        width: 100%;
    }

    .steps__flex--r {
        width: 100%;
        margin-top: 20px;
        margin-inline: 0;
    }

    .steps__title--center {
        justify-content: flex-start;
    }

    .steps__img {
        margin-block: 15px 20px;
    }

    .steps__img-benefits {
        max-width: 320px;
    }

    .steps__box {
        text-align: center;
    }

    .steps__box-flex {
        flex-direction: column;
    }
}

@media screen and (max-width: 450px) {

    .steps__icon {
        width: calc(55 / 390 * 100vw);
        margin-right: calc(10 / 390 * 100vw);
    }

    .steps__navi li {
        font-size: calc(14 / 390 * 100vw) !important;
    }
}

.howto__num {
    margin-left: 1em;
}

.howto__num span {
    margin-left: -1em;
}

.howto__title {
    font-size: 20px;
    color: #EB4720;
    font-weight: 700;
    margin-bottom: 15px;
}

.howto__flex--l {
    width: 50%;
}

.howto__flex--r {
    width: 50%;
}

.howto__img {
    width: 180px;
    margin-inline: auto;
    margin-top: 15px;
}

@media screen and (min-width: 769px) {
    .howto__each +
    .howto__each {
        border-left: 1px solid #ccc;
        padding-left: 15px;
        margin-left: 15px;
    }

    .howto__each {
        width: calc((100% / 3) - 10px);
    }

    .howto__each .button {
        max-width: 253px;
    }

    .howto__flex--l {
        border-right: 1px solid #ccc;
        padding-right: 40px;
    }

    .howto__flex--r {
        width: 50%;
        padding-left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .howto__flex--l,
    .howto__flex--r  {
        width: 100%;
    }

    .howto__flex--r {
        margin-top: 30px;
    }

    .howto__each {
        width: 100%;
    }

    .howto__each + .howto__each {
        margin-top: 30px;
    }

    .howto__title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .howto__img {
        max-width: 300px;
        width: calc(240 / 390 * 100vw);
        margin-top: 10px;
    }
}



/*---------------------------------------------------
DETAIL
----------------------------------------------------*/

.detail {
    background-color: #FFFDF7;
    padding-block: 60px;
}

.detail__table {
    border: 1px solid #ccc;
    background-color: #fff;
    width: 100%;
}

.detail__table th {
    background-color: #666666;
    color: #fff;
    font-weight: 50;
    width: 339px;
    border-bottom: 1px solid #ccc;
    text-align: center;
    padding: 20px;
}

.detail__table td {
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 20px;
}

.detail__brand {
    border: 1px solid #DBDBDB;
    max-width: 220px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    margin-top: 10px;
    height: 40px;
}

.detail__brand dt {
    background-color: #DBDBDB;
    font-size: 14px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.detail__brand dd {
    padding: 5px;
    display: flex;
    align-items: center;
    transform: translateY(-2px);
    flex: 1;
}

.detail__brand ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.detail__brand li {
    width: 30px;
}

.detail__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.5;
}

.detail__items li.vertical {
    flex: 1 1 160px;
    margin-block:10px;
}

.detail__items li.horizontal {
    flex: 1 1 230px;
    margin-block:10px;
}

.detail__items li.vertical .detail__items-img {
    width: 70px;
    margin-inline: auto;
    margin-bottom: 5px;
}

.detail__items li.horizontal .detail__items-img {
    width: 111px;
    margin-inline: auto;
    margin-bottom: 5px;
}

.detail__items-img .copyright {
    font-size: 10px;
    display: block;
    text-align: right;
    margin-top: 3px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .detail {
        padding-block: 40px;
    }

    .detail__table {
        font-size: 12px;
    }

    .detail__table th {
        width: 123px;
        padding: 10px;
    }

    .detail__table td {
        padding: 10px;
    }

    .detail__items li.vertical,
    .detail__items li.horizontal {
        flex: none;
        margin-block: 5px;
    }

    .detail__items li.horizontal .detail__items-img {
        width: 98px;
    }

    .detail__items {
        justify-content: flex-start;
    }

    .detail__items li {
        width: 50%;
    }

    .detail__brand {
        max-width: 208px;
    }

    .detail__brand dt {
        font-size: 12px;
        padding-block:10px;
    }
}

@media screen and (max-width: 450px) {

    .detail__table {
        font-size: calc(12 / 390 * 100vw);
    }

    .detail__table th {
        width: calc(123 / 390 * 100vw);
    }

    .detail__items li.vertical .detail__items-img {
        width: calc(70 / 390 * 100vw);
    }

    .detail__items li.horizontal .detail__items-img {
        width: calc(98 / 390 * 100vw);
    }

    .detail__items-img .copyright {
        font-size: calc(10 / 390 * 100vw);
    }

    .detail__brand dt {
        font-size: calc(12 / 390 * 100vw);
        padding-inline: calc(5 / 390 * 100vw);
    }
}


/*---------------------------------------------------
FAQ
----------------------------------------------------*/

.faq {
    background-color: #fcefe4;
    padding-block: 60px;
}

.faq .button {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .faq {
        padding-block: 40px;
    }
}

/*---------------------------------------------------
ACCORDION
----------------------------------------------------*/

.accordion {
    background-color: #fff;
    border-radius: 5px;
    margin-top: 30px;
    width: 100%;
}

.accordion--border {
    border: 1px solid #ccc;
}

.accordion-title {
    padding: 28px 40px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    line-height: 1.5;
}

.accordion--s .accordion-title {
    font-size: 20px;
    font-weight: 500;
    padding: 20px 40px;
}

.accordion-title span {
    width: 30px;
    height: 30px;
    background-color: #EF3A06;
    border-radius: 50%;
    position: absolute;
    top:50%;
    right: 40px;
    transform: translateY(-50%);
}

.accordion-title span:after,
.accordion-title span:before {
    display: block;
    content: "";
    width: 14px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
}

.accordion-title span:before {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .4s;
}

.accordion-body {
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all .4s;
}

.accordion-body--gray {
    background-color: #EAEAEA;
}

.accordion-content {
    padding: 40px;
    border-top: 1px solid #ccc;
}

.accordion.js-accordion--open .accordion-body {
    max-height: 3000px;
    visibility: visible;
}

.accordion.js-accordion--open .accordion-title span:before {
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {

    .accordion-title:hover span:before {
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 768px) {
    .accordion {
        margin-top: 20px;
    }

    .accordion-title span {
        right: 15px;
        width: 25px;
        height: 25px;
    }

    .accordion-title,
    .accordion--s .accordion-title {
        padding: 10px 48px 10px 20px;
        font-size: 16px;
    }

    .accordion-content {
        padding: 20px;
    }
}

@media screen and (max-width: 450px) {

    .accordion-title {
        font-size: calc(16 / 390 * 100vw);
    }

    .accordion--s .accordion-title {
        font-size: calc(16 / 390 * 100vw);
    }
}

/*---------------------------------------------------
TARGET CARD
----------------------------------------------------*/

.targetcard__list {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;
    margin-top: 15px;
}

.targetcard__each {
    background-color: #fff;
    padding: 18px 20px 20px;
    border-radius: 16px;
    width: 50%;
    font-size: 14px;
    width: calc(50% - 30px);
    margin-inline: 15px;
    margin-block: 15px;
}

.targetcard__header {
    display: flex;
}

.targetcard__header-ribbon {
    color: #fff;
    font-size: 9px;
    padding: 5px 6px;
    margin-right: 8px;
    position: relative;
    width: 61px;
    height: 24px;
    white-space: nowrap;
    font-weight: 700;
    background: url(../img_202404/ribbon.svg) no-repeat;
    background-size: contain;
}

.targetcard__header-name {
    font-weight: 700;
    font-size: 14px;
    width: calc(100% - 69px);
}

.targetcard__copy {
    color: #B60081;
    font-weight: 700;
    margin-bottom: 7px;
    font-size: 14px;
}

.targetcard__text {
    font-size: 14px;
    line-height: 1.5;
    height: calc(14px* 1.5* 2);
}

.targetcard__buttons {
    font-size: 12px;
    margin-top: 11px;
    max-width: 316px;
    margin-inline: auto;
}

.targetcard__button {
    width: 100%;
    height: 38px;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
    margin-inline: 5px;
    line-height: 38px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s;
}

.targetcard__button:after {
    display: block;
    content: "";
    height: calc(tan(40deg) * 20px / 2);
    width: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    top: 50%;
    right: 10px;
    transform:translateY(-50%);
}

.targetcard__button--more:after {
    background: #4057A3;
}

.targetcard__button--apply:after {
    background: #fff;
}

.targetcard__button--more {
    color: #4057A3;
    border: 1px solid #4057A3;
    margin-top: 8px;
}

.targetcard__button--apply {
    background-color: #FFA000;
    border: 1px solid #FFA000;
    color: #fff;
}

.targetcard__button:hover {
    opacity: .7;
}

.targetcard__body--vertical {
    margin-block: 9px 15px;
    margin-inline: auto;
    max-width: 316px;
    width: 100%;
}

.targetcard__body--horizontal {
    margin-block: 15px;
    margin-inline: auto;
    max-width: 364px;
    width: 100%;
}

.target__card {
    position: relative;
    margin-left: auto;
}

.targetcard__body--vertical .targetcard__card {
    width: 120px;
    margin-left: 11px;
    margin-top: 5px;
}

.targetcard__body--horizontal .targetcard__card {
    width: 180px;
}

.targetcard__info {
    margin-left: 25px;
}

.targetcard__info-icons {
    text-align: center;
    margin-bottom: 10px;
}

.targetcard__info-icons li {
    width: 30px;
    display: inline-block;
    margin-inline: 2px;
}

.targetcard__info-tags li {
    background-color: #DBDBDB;
    border-radius: 12px;
    margin-block: 5px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    width: 159px;
    line-height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.targetcard__info-tags li.quick {
    background-color: #FFEEF7;
    color: #B60081;
}

.targetcard__info-tags li.quick:before {
    background: url(../img_202404/targetcard_icon_quick.png) no-repeat;
    content: "";
    display: inline-block;
    width: 20px;
    height: 18px;
    background-size: 100% auto;
    margin-right: 5px;
}

.targetcard__card .copyright {
    font-size: 9px;
    text-align: right;
    display: block;
    margin-top: 3px;
    font-weight: 500;
}

.targetcard__card img.border {
    border: 1px solid #ddd;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .targetcard {
        padding-block: 40px;
    }
    .targetcard__list {
        margin-inline: 0;
    }

    .targetcard__each {
        width: 100%;
        margin-inline: 0;
    }

    .targetcard__text {
        height: auto;
    }

    .targetcard__info {
        margin-left: calc(15 / 390 * 100vw);
    }

    .targetcard__body--vertical .targetcard__card {
        width: 85px;
        margin-right: auto;
        margin-left: 10%;
    }

    .targetcard__body--horizontal .targetcard__card {
        width: 137px;
        margin-right: auto;
    }
}

@media screen and (max-width: 450px) {
    .targetcard__info {
        width: 50%;
    }

    .targetcard__info-tags li {
        max-width: 149px;
        width: 100%;
        font-size: calc(10 / 390 * 100vw);
    }

    .targetcard__body--vertical .targetcard__card {
        width: calc(85 / 390 * 100vw);
    }

    .targetcard__body--horizontal .targetcard__card {
        width: calc(137 / 390 * 100vw);
    }
}

/*---------------------------------------------------
FLOATING BANNER
----------------------------------------------------*/

.floating-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  max-width: 456px;
  width: calc(100% - 30px);
  z-index: 4;
  transform: translateX(-50%);
  transition: opacity .4s, visibility .4s;
}

.floating-banner::before {
    display: block;
    content: '';
    width: 100vw;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFFDF7);
    pointer-events: none;
}

.floating-banner.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.floating-banner .button {
  font-weight: 600;
  line-height: 1.33;
  padding: 10px;
  box-shadow: 0 0 8px rgba(118,27,1,.4);
  width: 100%;
  height: 70px;
  max-width: 400px;
}

.floating-banner .close {
  border: 1px solid #ccc;
  position: absolute;
  left: -10px;
  top: -12px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 1;
  background-color: #fff;
}

.floating-banner .close:before,
.floating-banner .close:after {
    display: block;
    content: "";
    height: 2px;
    width: 13px;
    background-color: #969696;
    position: absolute;
    top: 50%;
    left: 50%;
}

.floating-banner .close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.floating-banner .close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.floating-banner__content {
    display: flex;
    font-size: 12px;
    height: 80px;
    margin-bottom: 15px;
}

.floating-banner img {
    width: 35px;
    border: 2px solid #fff;
    border-radius: 2px;
    margin-right: 10px;
}

.floating-banner small {
    display: block;
}

.floating-banner__select,
.floating-banner__gold {
    text-align: center;
    flex: 1;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    line-height: 1.3;
    text-align: left;
    padding-inline: 8px;
    font-weight: 600;
    position: relative;
}

.floating-banner__select {
    background-color: #fff;
    color: #292828;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

}

.floating-banner__gold {
    background-color: #ef3a06;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* iPad miniでは中央表示なので768→767px */
@media screen and (max-width: 490px) {

    .floating-banner img {
        width: calc(30 / 390 * 100vw);
        border-width: 1px;
        margin-right: calc(10 / 390 * 100vw);
    }

    .floating-banner__content {
        font-size: calc(10 / 390 * 100vw);
        height: auto;
    }

    .floating-banner__select,
    .floating-banner__gold {
        padding-block: calc(10 / 390 * 100vw);
    }

    .floating-banner__content .button__icon {
        width: 20px;
        height: 20px;
        right: calc(10 / 390 * 100vw);
    }
}

.pagetop {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 5;
    background-color: #ccc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    transition: opacity .4s, visibility .4s;
    border: 1px solid #fff;
}

.pagetop img {
  width: 34px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
    .pagetop {
        opacity: 0;
        visibility: hidden;
    }

    .pagetop.is-show {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 768px) {
    .pagetop {
        width: 45px;
        height: 45px;
        box-shadow: 0 0 8px rgba(124, 124, 124, .4);
        bottom: calc(100 / 390 * 100vw);
    }

    .pagetop img {
        width: 18px;
    }
}




/*---------------------------------------------------
ISSUE
----------------------------------------------------*/

.issue {
    background-color: #FFFDF7;
    padding-block: 80px;
}

.issue__block + .issue__block {
    margin-top: 40px;
}

.issue__img {
    max-width: 630px;
    width: 100%;
    margin-inline: auto;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .issue {
        padding-block: 40px;
    }

    .issue__textarea {
        padding-inline: 15px;
    }

    .issue__img {
        max-width: 480px;
        margin-top: 15px;
    }
}


/*---------------------------------------------------
FOOTER
----------------------------------------------------*/

#footer {
  z-index: 1;
  position: relative;
  background-color: #fff;
}
#footer .utility {
    background: #5d5d5d;
    font-size: 85.71429%;
    color: #fff;
    padding: 12px 0 10px;
}
#footer .company {
    font-size: 85.71429%;
    padding: 22px 15px;
    display: none;
}
#footer .utility ul {
    float: left;
    display: none;
}
#footer .utility ul li {
    float: left;
    margin-right: 23px;
}
#footer .utility ul li a {color: #fff;}
#footer .utility a:visited, #footer .utility a:hover, #footer .utility a:focus, #footer .utility a:active {
  color: #fff;
}
#footer .utility .copyright {
    text-align: center;
}
#footer .company .logo-01 {
    float: left;
    width: 90px;
}
#footer .company ul {
    margin: 5px 0 0 11px;
    float: left;
}
#footer .company .logo-02 {
    float: right;
    width: 113px;
}
#footer .company ul li {
    float: left;
    margin-left: 30px;
}
#footer .company ul li a {color: #000;}
#footer .container {max-width: 1000px;}
#footer .container:after {
  content:" ";
  display:block;
  clear:both;
}
#footer .company ul li a {
  padding-left: 10px;
    background: url(../img/arrow14x20.png) no-repeat 0 2px / 7px 10px;
}
@media screen and (min-width: 769px) {
  #footer .company {
    padding-left: 0;
    padding-right: 0;
  }
  #footer .company {
    font-size: 85.71429%;
    padding: 22px 15px;
    display: block;
  }
  #footer .utility .copyright {
    float: right;
  }
  #footer .utility ul {
    float: left;
    display: block;
  }
}

/*---------------------------------------------------
CAROUSEL
----------------------------------------------------*/

.carousel-button-prev,
.carousel-button-next {
    background-color: #EF3A06;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    z-index: 1;
}

.carousel-button-prev {
    left: -50px;
}

.carousel-button-next {
    right: -50px;
}

.carousel-button-prev::after,
.carousel-button-next::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    width: 8px;
    height: calc(10px / 2 * tan(60deg));
}

.carousel-button-prev::after {
    clip-path: polygon(0 50%, 100% 0%, 100% 100%);
    transform: translate(-60%, -50%);
}

.carousel-button-next::after {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: translate(-40%, -50%);
}

.swiper-pagination-bullet {
    background-color: #a7a7a7;
    opacity: 100%;
    overflow: hidden;
    text-indent: -9999px;
}

.swiper-pagination-bullet-active {
    background-color: #EF3A06;
}

@media screen and (max-width: 768px) {

    .carousel-button-prev {
        left: -20px;
    }

    .carousel-button-next {
        right : -20px;
    }
}

@media screen and (max-width: 650px) {
    .carousel-button-prev,
    .carousel-button-next {
        width:  calc(25 / 390 * 100vw);
        height:  calc(25 / 390 * 100vw);
    }

    .carousel-button-prev {
        left: 11vw;
    }

    .carousel-button-next {
        right : 11vw;
    }
}

.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    z-index: 1000;
    display: none;
}

.popup.is-show {
    display: flex;
}

.popup__button--close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    border: 0;
}

.popup__button--close::before,
.popup__button--close::after {
    content: "";
    width: 5px;
    height: 20px;
    background: #000000;
    position: absolute;
    top: 50%;
    left: 50%;
}

.popup__button--close::before {
    transform: translate(-50%,-50%) rotate(45deg)
}

.popup__button--close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.popup_area_inner {
    max-width: 690px;
}

@media screen and (max-width: 768px) {
    .popup_area_inner {
        width: 90%;
    }
}

.o-tabs_tab {
    cursor: pointer;
    line-height: 1.2;
    padding-block: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.o-tabs_tab.is-current {
    color: #D60093;
}

.o-tabs_tab.is-current::before {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70px;
    height: 2px;
    background-color: #D60093;
    transform: translateX(-50%);
}

.o-tabs_tablist {
    display: flex;
    align-items: center;
}

.p-tabs-panel:not(.is-current) {
    display: none;
}

@media screen and (max-width: 768px) {
    .o-tabs_tab {
        height: 65px;
    }
}

.qx-greenbeans-closing {
    color: #FF0000;
    font-weight: bold;
    margin-bottom: 15px !important;
}

.qx-calendarRist-disabled {
    position: relative;
    overflow: hidden;
}  
.qx-calendarRist-disabled:before {
  content: '';
  display: block;
  background-color: rgba(255,255,255,.8);
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.qx-calendarTxt-disabled {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  padding-inline: 1em;
}

@media screen and (max-width: 768px) {
  .qx-calendarTxt-disabled {
    font-size: 13px;
  }
}