@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
    --bg_orng01: #FFF5E7;
    --bg_orng02: #FFE5C4;
    --orange: #F5A139;
    --white: #FFFFFF;
    --txt: #2F2F2F;
}
html,body {
    scroll-behavior: smooth;
    font-family: "Noto Sans JP", sans-serif;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
* {
    box-sizing: border-box;
}
p{
    font-size: 1.6rem;
}
a{
    cursor: pointer;
    text-decoration: none;
    transition: all ease 0.25s;
}
.sp-only{
    display: none;
}
.pc-only {
    display: block;
}
@media screen and (max-width: 767px){
    .sp-only{
        display: block;
    }
    .pc-only {
        display: none;
    }
}
.noto-sans {
    font-family: "Noto Sans JP", sans-serif;
}
.jost {
    font-family: "Jost", sans-serif;
}
main{
    background: var(--bg_orng01);
}

/***************************************
共通パーツ
****************************************/
.inner {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}
@media screen and (max-width: 1031px){
    .inner {
        padding: 0 16px;
        max-width: 100%;
    }
}
@media screen and (max-width: 767px){
    .inner {
        padding: 0 16px;
        max-width: 100%;
    }
}

/* ボタン */
.cta_btn{
    display: block;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: linear-gradient(to right, #408AE5, #50BDEF);
    background-size: 138% auto!important;
    transition: background-position 0.5s ease!important;
    color: var(--white);
    line-height: 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 300px;
    height: 60px;
    position: relative;
}
.cta_btn:hover{
    background-position: right center!important;
}
/* オレンジのグラデ */
.orange{
        background: linear-gradient(to right, #F38704, #F8CD0E);
}
.cta_btn::after{
    background-image: url(/assets/img/event/overseas/arrow.svg);
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}
@media screen and (max-width: 767px){
    .cta_btn{
        font-size: 1.8rem;
        max-width: 310px;
        height: 50px;
        line-height: 50px;
    }
    .cta_btn::after{
        right: 15px;
        width: 16px;
        height: 16px;
    }
}
/* アイコンとタイトル */
.ttl_icon{
    display: block;
    margin: auto;
    width: 31px;
    height: auto;
}
.ttl{
    font-size: 2.8rem;
    text-align: center;
    margin: 8px 0 40px 0;
    font-weight: bold;
}
@media screen and (max-width: 767px){
    .ttl{
        font-size: 2.2rem;
        margin: 8px 0 40px 0;
    }
}


/***************************************
header
****************************************/
.header {
    background-color: var(--white);
    padding: 18px 0;
    position: fixed;
    z-index: 1009;
    width: 100%;
}
.header_wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    position: relative;
}
.header-logo img {
    height: 36px;
    width: auto;
    display: block;
    z-index: 1001;
}
#main-nav {
    transition: none;
}
.drawer-overlay{
    transition: none;
    opacity: 0;
    visibility: hidden;
}
.header-nav {
    display: flex;
    align-items: center;
}
.header-nav .nav-list {
    display: flex;
    gap: 15px;
    margin-right: 15px;
}
.header-nav .nav-list a:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}
.header-nav .nav-list a {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
}
#main-nav .cta_btn {
    width: 180px;
    height: 45px;
    line-height: 45px;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}
#main-nav .cta_btn:after {
    width: 12px;
    height: 12px;
    right: 12px;
}
.hamburger-menu {
    display: none;
}
.close-menu {
    display: none;
}
.header-nav {
    display: flex;
}

@media screen and (max-width: 1031px) {
    .header-logo img {
        height: 3.2vw;
    }
    .header-nav .nav-list a {
        font-size: 1.6vw;
    }
    #main-nav .cta_btn {
        width: 130px;
        height: 35px;
        line-height: 35px;
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0;
    }
    #main-nav .cta_btn:after {
        width: 12px;
        height: 12px;
        right: 12px;
    }
}
@media (max-width: 768px) {
    .header-logo {
        display: block;
        width: 180px;
    }
    .header-logo img {
        height: 36px;
    }
    .hamburger-menu {
        display: block !important;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 1000;
        padding: 10px 0 10px 10px;
    }
    .hamburger-menu span {
        display: block ;
        width: 25px;
        height: 3px;
        background-color: #444444;
        margin-bottom: 5px;
        border-radius: 2px;
        transition: all 0.3s ease;
        opacity: 1;
        transform: none;
    }
    .hamburger-menu span:last-child {
        margin-bottom: 0;
    }
    /* 3本線アニメーションでばつ印部分 */
    .hamburger-menu.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }
    .hamburger-menu.is-active span:nth-child(2) {
        opacity: 0 !important;
    }
    .hamburger-menu.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
    #main-nav .cta_btn {
        width: 180px;
        height: 45px;
        line-height: 45px;
        font-size: 1.6rem;
    }
    .close-menu {
        display: none ;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        z-index: 1002;
        padding: 10px;
    }
    .header-nav.is-active .close-menu {
        display: block;
    }
    .header{
        padding: 12px 0;
    }
    .header-nav {
        display: flex ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 90%;
        height: 100vh;
        background-color: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
        z-index: 999;
        padding-top: 0;
    }
    .header-nav .nav-list{
        display: block;
        margin-right: 0;
    }
    .header-nav .nav-list li{
        margin-bottom: 25px;
    }
    .header-nav .nav-list li:nth-last-of-type(1){
        margin-bottom: 35px;
    }

    .header-nav .nav-list a{
        font-size: 1.6rem;
        font-weight: 400;
        border-bottom: 1px solid var(--orange);
    }
    .header-nav .nav-list a:hover{
        opacity: 1;
    }

    .header-nav.is-active {
        transform: translateX(0);
        text-align: center;
    }

    .header_wrapper {
        position: relative;
        display: block;
    }
    /* ドロワーの背景オーバーレイ */
    .drawer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        cursor: pointer;
    }
    .drawer-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }
    #main-nav {
        z-index: 100;
        transform: translateX(100%);
    }
    .hamburger-menu,
    .close-menu {
        z-index: 101;
    }
    #main-nav.is-active {
        transform: translateX(0);
        background: var(--bg_orng01);
    }
    body.no-scroll {
        overflow: hidden;
    }
}

/* JSでbodyに付けるクラス (メニューが開いている間のスクロール固定) */
body.no-scroll {
    overflow: hidden;
}


/***************************************
KV
****************************************/
.kv{
    background-image: url(/assets/img/event/overseas/bg.jpg);
    padding: 160px 0 80px 0;
    position: relative;
    overflow: hidden;
}
.shape{
    position: absolute;
    bottom: 0;
    right: -6%;
    width: 55%;
    min-width: 524px;
    max-width: 885px;
    z-index: 1;
    overflow-x: hidden;
}
.wrapper{
    position: relative;
}
.img_pc{
    position: absolute;
    bottom: -86px;
    right: -5%;
    width: 47%;
    z-index: 3;
}
.img_sp{
    width: 100%;
    height: auto;
}
.kv h1 img{
    max-width: 560px;
    width: 100%;
}
.kv h2{
    font-size: 2.1rem;
    font-weight: 600;
    margin: 12px 0 30px 0;
}
.con_wrapper{
    display: flex;
    gap: 13px;
    justify-content: flex-start;
}
.con_wrapper__circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    height: 120px;
    background-color: var(--white);
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}
.con_wrapper__circle img {
    max-width: 56px;
    height: auto;
    padding-top: 4px;
}
.con_wrapper__circle:nth-of-type(1) img {
    padding-top: 7px;
}
.con_wrapper__circle p {
    font-size: 1.7rem;
    color: var(--txt);
    line-height: 1.3;
    margin: 0;
    font-weight: bold;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    padding-bottom: 5px;
}
.kv .note{
    margin-top: 12px;
}
.kv .cta_btn{
    margin: 30px 0 0 0;
    box-shadow: 0 4px 4px rgba(32, 32, 32, 0.1);
    z-index: 9;
}

@media screen and (max-width: 767px){
    .kv{
        padding: 83px 0 0 0;
    }
    .wrapper::after{
        display: none;
    }
    .kv h1 img{
        max-width: 320px;
        margin: auto;
    }
    .kv h2{
        font-size: 1.8rem;
        margin: 12px 0;
        text-align: center;
    }
    .con_wrapper{
        gap: 5px;
        justify-content: space-between;
        max-width: 320px;
        margin: auto;
    }
    .con_wrapper__circle {
        width: 100px;
        height: 100px;
        padding: 5px;
    }

    .con_wrapper__circle img {
        max-width: 45px;
        width: 100%;
        height: auto;
    }
    .con_wrapper__circle p {
        font-size: 1.6rem;
        line-height: 1.1;
        padding-bottom: 5px;
    }
    .kv .note{
        margin-top: 10px;
        font-size: 1.4rem;
        text-align: center;
    }
    .kv .cta_btn{
        margin: 13px auto 25px auto;
    }
}


/***************************************
人気のカタログギフト
****************************************/
#recommend{
    padding: 70px 0 100px 0;
}
/* --- カードグリッドのスタイル --- */
.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 56px 15px;
    justify-content: space-between;
    padding-bottom: 20px;
}
/* 各カードのスタイル */
.card {
    background-color: var(--white);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: calc(29vw - 1px);
    max-width: 316px;
    padding: 36px 20px 24px 20px;
}
.card-rank {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #4A4A4A;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    font-size: 2.7rem;
    z-index: 2;
}
.card-grid .card:nth-child(1) .card-rank {
    color: #CFAB17;
}
.card-grid .card:nth-child(2) .card-rank {
    color: #98A0A3;
}
.card-grid .card:nth-child(3) .card-rank {
    color: #B87045;
}
/* カード画像 */
.card-image img {
    width: 73%;
    margin: auto;
    display: block;
    margin-bottom: 17px;
}
.card-image img:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}
/* カードコンテンツ部分 */
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 10px;
}
.card-text:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}
.card-price {
    font-size: 1.8rem;
    text-align: right;
    margin-top: auto;
}
.card-price:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
    #recommend {
        padding: 40px 0 70px 0;
    }
    #recommend .ttl {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .card-grid {
        gap: 28px 6px;
    }
    .card {
        width: calc(47vw - 21px);
        max-width: 340px;
        padding: 23px 11px 15px 11px;
    }
    .card-rank {
        position: absolute;
        top: -11px;
        left: 50%;
        transform: translateX(-50%);
        font-weight: bold;
        font-size: 2rem;
    }
    .card-image img {
        margin-bottom: 10px;
    }
    .card-text {
        font-size: 1.6rem;
    }
    .card-price {
        font-size: 1.6rem;
    }
    #recommend .cta_btn{
        margin: 10px auto 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .card {
        width: calc(50vw - 21px);
        max-width: 214px;
    }
}

/***************************************
シーン
****************************************/
#scene{
    background: var(--bg_orng02);
    padding: 145px 0 85px 0;
}
.ttl_wrap{
    position: relative;
}
#scene .ttl_wrap .ttl{
    position: absolute;
    top: -176px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
}
#scene .ttl_wrap img{
    position: absolute;
    top: -176px;
    left: 50%;
    transform: translateX(-50%);
    width: 425px;
    height: auto;
}
h3{
    font-size: 24px;
    text-align: center;
    font-weight: bold
}

/* --- 各シーンカテゴリのラッパー --- */
.scene-category {
    background-color: var(--white);
    border-radius: 18px;
    padding: 50px;
    margin-bottom: 120px;
}
.scene-category:nth-last-of-type(1) {
    margin-bottom: 0;
}

/* シーンカテゴリのヘッダー（アイコンとタイトル） */
.scene-category__header {
    margin-bottom: 30px;
    position: relative;
}

.scene-category__header img {
    position: absolute;
    width: 132px;
    height: auto;
    top: -113px;
    left: 50%;
    transform: translateX(-50%);
}

/* --- シーンカードのグリッド --- */
.scene-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

/* --- 個々のシーンカード --- */
.scene-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 0 1 calc(25% - 11.25px);
    min-width: 130px;
    max-width: 250px;
}
.scene-card__image {
    width: 100%;
}
.scene-card__image img {
    width: 100%;
    height: 100%;
}
.scene-card__image img:hover{
    opacity: 0.7;
    transition: all 0.5s ease;
}
.scene-card__body {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.scene-card__text {
    font-size: 1.6rem;
    margin-bottom: 5px;
}
.scene-card__text:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}
.scene-card__price {
    font-size: 1.6rem;
    text-align: right;
    margin-top: auto;
}
.scene-card__price:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}
#scene .cta_btn{
    margin: 20px auto 0 auto;
}


@media screen and (max-width: 992px) {
    .scene-card {
        flex: 0 1 calc(25% - 11.25px);
    }
}

@media screen and (max-width: 767px) {
    #scene{
        padding: 117px 0 65px 0;
    }
    #scene .ttl_wrap .ttl{
        top: -140px;
        font-size: 22px;
        width: 100%;
    }
    #scene .ttl_wrap img{
        top: -139px;
    }
    h3{
        font-size: 2.2rem;
    }
    .scene-card-grid {
        gap: 10px;
    }
    .scene-category {
        padding: 58px 16px 35px 16px;
        margin-bottom: 80px;
    }
    .scene-category__header {
        margin-bottom: 20px;
    }
    .scene-card {
        flex: 0 1 calc(50% - 5px);
        min-width: unset;
        max-width: unset;
    }
}


/***************************************
voice
****************************************/
#voice{
    padding: 85px 0;
}
.voice_wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}
#voice .cta_btn{
    background: linear-gradient(to right, #408AE5, #50BDEF);
    margin: 40px auto 0 auto;
}
.voice_wrapper{
    background: var(--white);
    border-radius: 14px;
    max-width: 310px;
    width: 100%;
    padding: 20px;
    position: relative;
}
.voice_wrapper:after{
    position: absolute;
    top: -9px;
    right: 21px;
    background-image: url(/assets/img/event/overseas/voice_icon.png);
    content: '';
    display: inline-block;
    width: 34px;
    height: 27.94px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}
.voice_wrapper__flex{
    display: flex;
    align-items: center;
    gap: 20px;
}
.voice__icon{
    width: 75px;
    height: auto;
}
.voice__star{
    width: 98px;
    height: auto;
    margin-bottom: 10px;
}
.txt__voice{
    font-size: 1.8rem;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    #voice{
        padding: 50px 0 60px 0;
    }
    .voice_wrap{
        gap: 2em;
    }
    .voice_wrap{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .voice_wrapper{
        max-width: none;
    }
}

/***************************************
flow
****************************************/
#flow{
    padding: 85px 0;
    background: var(--bg_orng02);
}
.flow_wrapper{
    display: grid;
    grid-template-columns: 1fr 12px 1fr 12px 1fr;
    gap: 1em;
    align-items: center;
}
.flow_wrapper__inner{
    background: var(--white);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    padding: 40px;
    position: relative;
}
.flow_arrow{
    width: 100%;
}
.flow_wrapper__inner p{
    text-align: center;
}
.f__ttl_en{
    font-family: "Jost", sans-serif;
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4rem;
}
.flow_icon{
    margin: auto;
    width: 33%;
    height: auto;
}
.f__ttl_ja{
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0;
}
.f__txt{
    line-height: 1.8;
}
@media screen and (max-width:1000px) {
    .f__ttl_ja{
        font-size: 1.8vw;
    }
    .f__txt{
        font-size: 1.6vw;
    }
    .flow_wrapper{
        gap: 1em;
    }
    .flow_wrapper__inner{
        padding: 23px;
    }
}

@media screen and (max-width:850px) {
    .flow_wrapper{
        grid-template-columns: 1fr;
        justify-content: center;
        max-width: 310px;
        width: 100%;
        margin: auto;
    }
    .flow_wrapper__inner p {
        line-height: 1.8;
    }
    .f__ttl_ja{
        font-size: 1.8rem;
        margin: 6px 0;
    }
    .flow_icon {
        padding-top: 15px;
    }
    .f__txt{
        font-size: 1.6rem;
        margin: 10px 0;
        line-height: 1.5;
    }
    .flow_arrow{
        width: 15px;
        height: auto;
        transform: rotate(90deg);
        margin: auto;
    }
}
@media screen and (max-width:767px) {
    #flow{
        padding: 50px 0;
        background: var(--bg_orng02);
    }
}
@media screen and (max-width:550px) {
    .flow_wrapper{
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 14px;
    }
    .flow_wrapper__inner{
        width: 92%;
        margin: auto;
        padding: 35px;
    }
    .flow_icon {
        padding-top: 0;
    }
        .f__ttl_ja{
        font-size: 1.8rem;
        margin: 6px 0;
    }
    .f__txt{
        font-size: 1.6rem;
        line-height: 1.8;
    }
    .flow_arrow{
        width: 15px;
        height: auto;
        transform: rotate(90deg);
        margin: auto;
    }
}


/***************************************
FAQ
****************************************/
#faq{
    padding: 85px 0;
    background: var(--white);
    box-sizing: border-box;
}
.faq-container {
    margin: auto;
    width: 100%;
    margin: 50px auto 0 auto;
}
.faq-item + .faq-item {
    margin-top: 10px;
}
.faq-item {
    border-radius: 5px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--orange);
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
    position: relative;
}
.faq-item.open .faq-question {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-q-prefix {
    margin-right: 10px;
    font-size: 2.2rem;
    padding-right: 5px;
}
.faq-q-txt{
    font-size: 1.8rem;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 27px;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after {
    content: '–';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--orange);
    border-top: none;
    border-radius: 0 0 5px 5px;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-sizing: border-box;
    color: var(--text-color);
}
.faq-item.open .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}
.faq-a-prefix {
    font-weight: bold;
    margin-right: 8px;
    font-size: 2.2rem;
    padding-right: 5px;
    color: var(--orange);
    display: block;
}
.faq-answer span:last-child {
    font-size: 1.8rem;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .faq-question {
        padding: 14px;
    }
    .faq-question::after {
        right: 15px;
    }
    .faq-question::after{
        font-size: 25px;
    }
    .faq-q-prefix {
        margin-right: 10px;
        font-size: 1.6rem;
        padding-right: 5px;
    }
    .faq-q-txt{
        font-size: 1.6rem;
        width: 84%;
    }
    .faq-a-prefix {
        font-weight: bold;
        margin-right: 8px;
        font-size: 1.6rem;
        padding-right: 5px;
        color: var(--orange);
    }
    .faq-answer span:last-child {
        font-size: 1.6rem;
        line-height: 1.6;
        margin: 0;
    }

}



/* @media screen and (max-width: 767px) {
    #faq{
        padding: 50px 0;
        background: var(--white);
    }
    .faq-container {
        margin: 34px auto 0 auto;
    }
    .faq-question {
        padding: 10px;
    }
    .faq-question-text {
        font-size: 1.6rem;
        padding-right: 28px;
        display: block;
    }
    .faq-item {
        margin-bottom: 8px;
    }
    .faq-q-prefix, .faq-a-prefix {
        font-size: 1.7rem;
        font-weight: bold;
        margin-right: 8px;
        min-width: 25px;
        text-align: center;
    }
    .faq-answer {
        font-size: 1.7rem;
        padding: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
        padding-top: 0;
        padding-bottom: 0;
    }
    .faq-item[open] .faq-answer {
        padding: 10px;
    }
    .faq-question::after {
        right: 10px;
        width: 23px;
    height: 23px;
    }
} */


/***************************************
CTA
****************************************/
#cta{
    background-image: url(/assets/img/event/overseas/bg_blue.jpg);
    padding: 85px 0;
    text-align: center;
    color: var(--white);
}
.cta__ttl{
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.cta__txt{
    font-size: 1.8rem;
    line-height: 1.8;
}
#cta .cta_btn {
    border: 3px solid var(--white);
    box-sizing: border-box;
    background-image: linear-gradient(to right, rgba(243, 135, 4, 0), rgba(248, 205, 14, 0));
    background-color: transparent;
    line-height: 55px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background-image 1.4s ease-out,
                background-color 1.4s ease-out,
                border-color 0.8s ease-in-out,
                color 0.8s ease-in-out;
    background-clip: padding-box;
    background-origin: padding-box;
}
#cta .cta_btn:hover {
    background-image: linear-gradient(to right, #F38704, #F8CD0E);
    background-color: transparent;
    border-color: transparent;
}

@media screen and (max-width: 767px) {
    #cta{
        padding: 50px 0 60px 0;
    }
    .cta__ttl{
        font-size: 2.6rem;
    }
    .cta__txt{
        font-size: 1.6rem;
    }
    #cta .cta_btn{
        line-height: 45px;
    }
}

