@charset "utf-8";
/* CSS Document */
section {
    padding: 40px 0 !important;
}
section:first-of-type {
    padding: 20px 0 40px !important;
}
section:last-of-type {
    padding: 40px 0 0 !important;
}
@media print, screen and (min-width: 768px) {
    section {
        padding: 80px 0 !important;
    }
    section:first-of-type {
        padding: 40px 0 80px !important;
    }
    section:last-of-type {
        padding: 80px 0 0 !important;
    }
}
#translation figure {
    text-align: center;
}
#translation figure img {
    width: 100%;
    height: auto;
    max-width: 1000px;
    border-radius: 16px;
}
#translation h3 {
    color: #0057b8;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}
@media screen and (max-width:640px) {
    #translation h3 {
        color: #0057b8;
        font-size: 24px;
        font-weight: 900;
        text-align: center;
        margin-bottom: 30px;
    }
}
#translation p {
    font-size: 16px;
    text-align: left;
    line-height: 2;
    letter-spacing: .02em;
    -webkit-text-size-adjust: 100%;
    color: #424242;
    padding: 0;
}
#translation ul li h4 {
    font-weight: 900;
    color: #0057b8;
    font-size: clamp(1.3rem, 3.13vw, 2rem);
    margin: 0 0 20px 0;
    text-align: center;
}
.ai_tuyaku {
    display: block;
}
.ai_kinou {
    display: block;
}
@media print, screen and (min-width: 768px) {
    .ai_tuyaku {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .ai_tuyaku div {
        width: 55%;
    }
    .ai_tuyaku figure {
        width: 45%
    }
    .ai_kinou {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .ai_kinou div {
        width: 20%;
    }
    .ai_kinou figure {
        width: 80%
    }
    
}
.hotel_task {
    color: #424242 !important;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    text-align: left;
}
.hotel_task span.number {
    color: #00c4cc;
    font-size: 400%;
}
.hotel_task span.task {
    position: absolute;
    top: -50px;
    left: 31px;
    font-weight: 400;
}
@media screen and (max-width:640px) {
    .hotel_task {
        font-size: 18px;
    }
    .hotel_task span.number {
        font-size: 300%;
    }
    .hotel_task span.task {
        position: absolute;
        top: -42px;
        left: 15px;
    }
}
.fv_btn {
    background: #ff3366;
    border-radius: 50px;
    color: #fff !important;
    padding: 20px 50px;
    display: block;
    margin: 20px auto;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: 600;
    max-width: 450px;
    width: 100%;
    transition: 0.2s;
}
.fv_btn:hover {
    background: #fff;
    border: #ff3366 2px solid;
    text-decoration: none;
    color: #424242 !important;
}
@media screen and (max-width:640px) {
    .fv_btn {
        padding: 10px 40px;
        font-size: 14px;
    }
}
/*card============*/ :root {
    --lay_gap_sp: 16px;
    --lay_gap_md: 36px;
}
/*1 →　2*/
.ly_card_2column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
}
.ly_card_2column > div, .ly_card_2column > li, .ly_card_2column > figure, .ly_card_2column > section, .ly_card_2column > article, .ly_card_2column > dt, .ly_card_2column > dd {
    inline-size: 100%;
}
@media print, screen and (min-width: 768px) {
    .ly_card_2column {
        flex-direction: row;
        gap: var(--lay_gap_md);
    }
    .ly_card_2column > div, .ly_card_2column > li, .ly_card_2column > figure, .ly_card_2column > section, .ly_card_2column > article, .ly_card_2column > dt, .ly_card_2column > dd {
        inline-size: calc(50% - var(--lay_gap_md) / 2);
    }
}
/*1 →　3*/
.ly_card_3column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
}
.ly_card_3column > div, .ly_card_3column > li, .ly_card_3column > figure, .ly_card_3column > section, .ly_card_3column > article, .ly_card_3column > dt, .ly_card_3column > dd {
    inline-size: 100%;
}
@media print, screen and (min-width: 768px) {
    .ly_card_3column {
        flex-direction: row;
        gap: var(--lay_gap_md);
    }
    .ly_card_3column > div, .ly_card_3column > li, .ly_card_3column > figure, .ly_card_3column > section, .ly_card_3column > article, .ly_card_3column > dt, .ly_card_3column > dd {
        inline-size: calc(33.3333333333% - var(--lay_gap_md) * 2 / 3);
    }
}
/*1 → 2 → 4*/
.ly_card_4column {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
}
.ly_card_4column > div, .ly_card_4column > li, .ly_card_4column > figure, .ly_card_4column > section, .ly_card_4column > article, .ly_card_4column > dt, .ly_card_4column > dd {
    inline-size: 100%;
}
@media print, screen and (min-width: 768px) {
    .ly_card_4column {
        flex-direction: row;
        gap: var(--lay_gap_md);
    }
    .ly_card_4column > div, .ly_card_4column > li, .ly_card_4column > figure, .ly_card_4column > section, .ly_card_4column > article, .ly_card_4column > dt, .ly_card_4column > dd {
        inline-size: calc(50% - var(--lay_gap_md) / 2);
    }
}
@media print, screen and (min-width: 992px) {
    .ly_card_4column > div, .ly_card_4column > li, .ly_card_4column > figure, .ly_card_4column > section, .ly_card_4column > article, .ly_card_4column > dt, .ly_card_4column > dd {
        inline-size: calc(25% - var(--lay_gap_md) * 3 / 4);
    }
}
/*2*/
.ly_2column {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
}
.ly_2column > div, .ly_2column > li, .ly_2column > figure, .ly_2column > section, .ly_2column > article, .ly_2column > dt, .ly_2column > dd {
    inline-size: calc(50% - var(--lay_gap_sp) / 2);
}
@media print, screen and (min-width: 768px) {
    .ly_2column {
        gap: var(--lay_gap_md);
    }
    .ly_2column > div, .ly_2column > li, .ly_2column > figure, .ly_2column > section, .ly_2column > article, .ly_2column > dt, .ly_2column > dd {
        inline-size: calc(50% - var(--lay_gap_md) / 2);
    }
}
/*2→3*/
.ly_2_3column {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
}
.ly_2_3column > div, .ly_2_3column > li, .ly_2_3column > figure, .ly_2_3column > section, .ly_2_3column > article, .ly_2_3column > dt, .ly_2_3column > dd {
    inline-size: calc(50% - var(--lay_gap_sp) / 2);
}
@media print, screen and (min-width: 992px) {
    .ly_2_3column {
        gap: var(--lay_gap_md);
    }
    .ly_2_3column > div, .ly_2_3column > li, .ly_2_3column > figure, .ly_2_3column > section, .ly_2_3column > article, .ly_2_3column > dt, .ly_2_3column > dd {
        inline-size: calc(33.3333333333% - var(--lay_gap_md) * 2 / 3);
    }
}
/*golden ratio*/
.ly_gold {
    display: flex;
    flex-direction: column;
    gap: 24px 40px;
}
.ly_gold.s_top .ly_gold_s {
    order: -1;
}
.ly_gold.b_top .ly_gold_b {
    order: -1;
}
@media print, screen and (min-width: 768px) {
    .ly_gold {
        flex-direction: row;
        justify-content: space-between;
    }
    .ly_gold.align_cent {
        align-items: center;
    }
    .ly_gold .ly_gold_s {
        inline-size: 50%;
        order: 0;
    }
    .ly_gold .ly_gold_b {
        inline-size: calc(50% - 40px);
        order: 0;
    }
    .ly_gold.s_top .ly_gold_s {
        order: 0;
    }
    .ly_gold.b_top .ly_gold_b {
        order: 0;
    }
}
@media print, screen and (min-width: 992px) {
    .ly_gold .ly_gold_s {
        inline-size: 38%;
    }
    .ly_gold .ly_gold_b {
        inline-size: calc(62% - 40px);
    }
}
/*half*/
.ly_half {
    display: flex;
    flex-direction: column;
}
@media print, screen and (min-width: 768px) {
    .ly_half {
        flex-direction: row;
    }
    .ly_half > div, .ly_half > li, .ly_half > figure, .ly_half > section, .ly_half > article, .ly_half > dt, .ly_half > dd {
        inline-size: 50%;
    }
}
.list-1 {
    list-style-type: disc;
    padding: 1em 1em 1em 2.5em;
}
.list-1 li {
    padding: .3em .3em .3em 0;
}
.list-1 li::marker {
    color: #00c4cc;
    font-size: 1.1em;
}
/*=============================
text
=============================*/
.cts_p {
    text-align: start;
}
.cts_p.tx_cent {
    text-align: center;
}
.cts_p + .cts_p {
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
}
@media print, screen and (min-width: 992px) {
    .cts_p.l_cent {
        text-align: center;
    }
}
.cts_p a {
    color: #26abd9;
    transition: 0.2s;
    display: inline-block;
    margin-inline: 0.2em;
}
.cts_p a::after {
    font-family: remixicon !important;
    font-style: normal;
    content: "\ecaf";
    -webkit-margin-start: 0.2em;
    margin-inline-start: 0.2em;
}
.cts_p a:hover {
    opacity: 0.8;
}
/*TextRight*/
.tx_right {
    text-align: end;
}
/*TextLeft*/
.tx_left {
    text-align: start;
}
/*TextCenter*/
.tx_cent {
    text-align: center;
}
/*center/left*/
.l_cent {
    text-align: start;
}
@media print, screen and (min-width: 992px) {
    .l_cent {
        text-align: center;
    }
}
/*left/center*/
.cent_l {
    text-align: center;
}
@media print, screen and (min-width: 992px) {
    .cent_l {
        text-align: start;
    }
}
.en_tx {
    font-family: Futura, "Century Gothic", sans-serif;
    font-weight: 700;
}
/*bold*/
.tx_bold {
    font-weight: 700;
}
/*Textmaincolor*/
.tx_main {
    color: #26abd9;
}
/*TextRed*/
.tx_red {
    color: #c81507;
}
/*TextGray*/
.tx_red {
    color: #3c3a39;
}
.tx_main {
    color: #26abd9;
}
.tx_sub {
    color: #f38844;
}
/*s text*/
.s_tx {
    font-size: clamp(1.1rem, 1.1vw, 1.2rem);
}
.s_em {
    font-size: 0.8em;
}
/*big text*/
.b_tx {
    font-size: clamp(1.8rem, 1.46vw, 2rem);
}
.b_em {
    font-size: 1.2em;
}
.em_tx {
    font-weight: 700;
    color: #26abd9;
    margin-inline: 0.2em;
}
.em_tx i {
    vertical-align: middle;
    -webkit-margin-end: 0.2em;
    margin-inline-end: 0.2em;
}
/*marker*/
.marker {
    background: linear-gradient(transparent 60%, #fff700 60%);
}