/*
Theme Name: BlankSlate Child
Template: blankslate
*/

:root {
    --main-blue: #2E86AB;
    --light-blue: #EEF5F8;
    --main-orange: #F18F01;
    --light-orange: #FDF5E8;
    --main-purple: #A23B72;
    --main-g: linear-gradient(90deg, rgba(46, 134, 171, 1) 0%, rgba(241, 143, 1, 1) 100%);
    --white: #FFFFFF;
}

html {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 62.5%;
    color: #454545;
}

html,
body {
    overscroll-behavior: none;
}

.SiteWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    overflow-x: hidden;
}

section {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

main section:last-child {
    padding-bottom: 10rem;
}

.section_inner {
    max-width: 120rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media screen and (max-width:768px) {
    section {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section_inner {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}

.pc {
    display: block;
}

.tablet,
.sp {
    display: none;
}

@media screen and (max-width:768px) {
    .tablet {
        display: block;
    }

    .pc {
        display: none;
    }
}

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

.common_h2 {
    position: relative;
    text-align: center;
    padding: 28px 0;
    /* 文字と線の間隔用 */
    overflow: hidden;
    /* ← ここで線を左右端でクリップ */
}

.common_h2 span {
    position: relative;
    display: inline-block;
    /* テキスト幅を基準にする */
    font-size: clamp(2.2rem, 2.6vw, 3.4rem);
    color: var(--main-blue);
    font-weight: 700;
    padding: 2rem 1.5rem;
    line-height: 1.8;
    /* お好みで */
}

/* 上の線：タイトルの“始まり”から右端へ */
.common_h2 span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* ← spanの左端(=タイトルの始まり) */
    width: 100vw;
    /* ビュー幅まで伸ばす（h2でクリップ） */
    height: 1px;
    background: var(--main-blue);
}

/* 下の線：タイトルの“末尾”から左端へ */
.common_h2 span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    /* ← spanの右端(=タイトルの末尾) */
    width: 100vw;
    /* 左方向にビュー幅分伸ばす */
    height: 1px;
    background: var(--main-blue);
}

.common_h2_white span {
    color: var(--white);
}

/* 上の線：タイトルの“始まり”から右端へ */
.common_h2_white span::before {
    background: var(--white);
}

/* 下の線：タイトルの“末尾”から左端へ */
.common_h2_white span::after {
    background: var(--white);
}


.white {
    color: var(--white);
}

.blue {
    color: var(--main-blue);
}

.orange {
    color: var(--main-orange);
}

.bg_blue {
    background-color: var(--main-blue);
}

.bg_orange {
    background-color: var(--main-orange);
}

.line_title {
    position: relative;
}

.titleLine {
    position: absolute;
    left: 0;
    top: 0;
}

.line_title_h2 span {
    font-size: clamp(2.5rem, 2.6vw, 5.4rem);
    display: block;
    padding-top: 3rem;
    padding-left: 5rem;
    color: var(--main-blue);
    font-weight: 700;
}

.common_btn {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.common_btn a {
    position: relative;
    display: inline-block;
    background-color: var(--main-orange);
    padding: 1.8rem 2rem;
    border-radius: 5rem;
    max-width: 28rem;
    width: 100%;
    box-shadow: 0 3px 6px #00000069;
}

.common_btn a::before {
    position: absolute;
    content: url(./images/icon/circle_arrow.svg);
    top: 54%;
    right: 2rem;
    transform: translateY(-50%);
}

.common_btn a span {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
}

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--main-blue);
    height: 7.5rem;
    z-index: 100;
    box-shadow: 0 3px 6px #a3a3a3;
}

.header_inner {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-inline: 2rem;
}

.logo {
    line-height: 0;
}

.logo_img {
    width: 8.1rem;
}

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

.header_cta {
    background-color: var(--main-orange);
    border-radius: 1rem;
    padding: 1rem 2rem;
    /* margin-right: 3rem; */
}

.header_cta span {
    color: var(--white);
    font-size: 2rem;
}

.hbgr {
    display: none;
}

.hbgr button {
    position: relative;
    height: 2rem;
    width: 3rem;
    background-color: transparent;
    border: none;
}

.hbgr span {
    position: absolute;
    display: block;
    height: 0.1rem;
    width: 3rem;
    background-color: var(--white);
}

.hbgr span:nth-child(1) {
    top: 0;
}

.hbgr span:nth-child(3) {
    bottom: 0;
}

/* nav */
/* ナビ全体 */
.nav_list {
    display: flex;
}

.nav li {
    position: relative;
}

/* 親メニュー */
.nav>ul>li {
    margin-right: 20px;
    color: var(--white);
}

.nav>ul>li>a {
    font-size: 1.8rem;
}

/* ドロップダウンメニュー */
.dropdown-menu {
    visibility: hidden;
    position: absolute;
    top: 100%;
    /* 親の下に配置 */
    left: 0;
    background: #fff;
    min-width: 25rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    /* 非表示時はクリックできない */
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 3px 3px 6px #a3a3a3;
}

.dropdown-menu li {
    padding: 8px 12px;
}

.dropdown-menu li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 1.8rem;
}

/* ホバー時に表示 */
.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ホバー時のデザイン */
.dropdown-menu li a:hover {
    background: #f0f0f0;
}

.sp_nav {
    display: none;
}


@media screen and (max-width:1024px) {
    .nav>ul>li>a {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:768px) {
    .header_cta {
        display: none;
    }

    .pc_nav {
        display: none;
    }

    .hbgr {
        display: block;
    }

    .sp_nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--light-orange);
        z-index: 200;
        display: block;
        /* ← ここで上書き */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sp_nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .body.open {
        overflow: hidden;
    }

    .sp_nav_header {
        display: flex;
        justify-content: end;
        align-items: center;
        height: 7.5rem;
    }

    .hbgr_close button {
        position: relative;
        height: 2rem;
        width: 3rem;
        background-color: transparent;
        border: none;
        right: 2rem;
    }

    .hbgr_close span {
        position: absolute;
        top: 50%;
        display: block;
        height: 0.1rem;
        width: 3rem;
        background-color: var(--main-blue);
    }

    .hbgr_close span:nth-child(1) {
        transform: translateY(-50%) rotate(45deg);
    }

    .hbgr_close span:nth-child(2) {
        transform: translateY(-50%) rotate(-45deg);
    }

    .sp_nav_section {
        height: 100%;
        padding-inline: 1.5rem;
    }

    .sp_nav_item {
        margin-top: 1rem;
    }

    .sp_nav_item a,
    .sp_nav_item span {
        font-size: 1.8rem;
        display: block;
    }

    .sp_nav_item>a,
    .sp_nav_item>span {
        border-bottom: 1px solid #dddddd;
        color: var(--main-orange);
        font-weight: 500;
        line-height: 1.8;
    }

    .sp_nav_item {
        margin-top: 2rem;
    }

    .sp_nav_child_item {
        margin-top: 2rem;
        padding-left: 1rem;
    }

    .sp_nav_child_item a {
        font-size: 1.6rem;
    }
}

/* fv */
:root {
    --vh: 1vh;
}

/* モバイル100vh補正用 */

.fv {
    /* セクションをフルスクリーンに */
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 0;
}

.fvSwiper {
    padding-right: 30vw;
}

.fvSwiper,
.fvSwiper .swiper-wrapper,
.fvSwiper .swiper-slide {
    height: 100%;
    width: 100%;
}

.fvSwiper .swiper-slide {
    position: relative;
}

.fvSwiper .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像をトリミングして全画面 */
    object-position: center;
}

.fv_inner {
    position: absolute;
    content: '';
    width: 53%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    /* background-color: #ffffff78; */
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 11%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    justify-content: center;
}

.fv_display {
    padding-left: 10rem;
}

.fv_h2 {
    border-bottom: var(--main-blue) 1px solid;
    padding-bottom: 2rem;
}

.fv_h2 span {
    color: var(--main-blue);
    font-size: clamp(3rem, 6.5vw, 3.5vw);
    font-weight: 400;
    /* text-shadow:
        3px 3px 3px #ffffff, -3px -3px 3px #ffffff,
        -3px 3px 3px #ffffff, 3px -3px 3px #ffffff,
        3px 0px 3px #ffffff, -3px -0px 3px #ffffff,
        0px 3px 3px #ffffff, 0px -3px 3px #ffffff;
    margin: 0; */
}

.fv_h3 {
    margin-top: 2rem;
}

.fv_h3 span {
    color: var(--main-purple);
    font-size: clamp(1.9rem, 3.3vw, 2.3vw);
    font-weight: 400;
}

.fv_para {
    font-size: clamp(1.5rem, 1.6vw, 2rem);
    font-weight: 500;
    line-height: 2;
    color: #333333;
    margin-top: 4rem;
}

.longSwiper {
    display: none;
}

@media screen and (max-width:1024px) {
    .fv_display {
        padding-left: 4rem;
    }
}

@media screen and (max-width:768px) {
    .fv {
        margin-top: 7rem;
    }

    .longSwiper {
        display: block;
    }

    .fvSwiper {
        padding-right: 0;
    }

    .fv_inner {
        width: 100%;
        background: none;
        background-color: #ffffffcf;
    }

    .fv_display {
        text-align: center;
        padding: 0;
        margin-top: 2rem;
    }

    .fv_h2 span {
        font-weight: 700;
        font-size: clamp(2rem, 7.6vw, 5.4rem);
    }

    .fv_h3 span {
        font-weight: 700;
        font-size: clamp(2rem, 4.2vw, 2.9rem);
    }
}

/* develop */
.develop_container {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    align-items: center;
}

.develop_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.develop_h3 {
    margin-top: 5rem;
}

.develop_h3 span {
    font-size: clamp(2rem, 2.6vw, 3.4rem);
    font-weight: 700;
    color: var(--main-blue);
}

.develop_p {
    margin-top: 1rem;
}

.develop_p span {
    display: block;
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    line-height: 1.8;
}

.develop_btn_container {
    margin-top: 5rem;
}

.develop_btn {
    display: block;
}

.develop_btn a {
    position: relative;
    display: inline-block;
    background-color: var(--main-orange);
    padding: 1rem 2rem;
    border-radius: 5rem;
    max-width: 27rem;
    width: 100%;
    box-shadow: 0 3px 6px #00000069;
}

.develop_btn a::before {
    position: absolute;
    content: url(./images/icon/circle_arrow.svg);
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}

.develop_btn_container .develop_btn:last-child {
    margin-top: 2rem;
}

.develop_btn a span {
    color: var(--white);
    font-weight: 700;
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
}

.develop_img_sp {
    display: none;
}

@media screen and (max-width:768px) {
    .develop_container {
        flex-direction: column;
    }

    .develop_img_sp {
        display: block;
        margin-top: 3rem;
    }

    .develop_img {
        display: none;
    }

    .develop_h3 {
        margin-top: 3rem;
    }

    .develop_btn {
        text-align: center;
    }

    .develop_btn_container {
        margin-top: 3rem;
    }
}

/* product */
.product_container {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 5rem;
}

.product_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product_h3 {
    text-align: center;
    margin-top: 1rem;
}

.product_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    font-weight: 700;
    color: var(--main-blue);
}

.product_info {
    text-align: center;
    margin-top: 1rem;
}

.product_info p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
    font-weight: 700;
}

.product_btn_container {
    display: flex;
    justify-content: center;
    gap: 0 1.5rem;
    margin-top: 3rem;
}

.product_btn {
    display: inline-block;
}

.product_btn_left a {
    position: relative;
    background-color: var(--main-orange);
    border-radius: 5rem;
    padding: 2rem 4.5rem 1rem 2rem;
    box-shadow: 0 3px 6px #00000069;
}

.product_btn_left a::before {
    position: absolute;
    content: url(./images/icon/circle_arrow.svg);
    right: 2rem;
    top: 50%;
    transform: translateY(-40%);
}

.product_btn_left a span {
    color: var(--white);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.product_btn_right a {
    position: relative;
    padding: 2rem 2.5rem 1rem 0;
}

.product_btn_right a::before {
    position: absolute;
    content: url(./images/icon/arrow_blue.svg);
    right: 0;
    top: 57%;
    transform: translateY(-50%);
}

.product_btn_right a span {
    color: var(--main-blue);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

@media screen and (max-width:768px) {
    .product_container {
        flex-direction: column;
        gap: 5rem 0;
        margin-top: 0;
    }

    .product_img img {
        width: 100%;
    }

    .product_btn_left a {
        padding: 1.5rem 4.5rem 1rem 2rem;
    }

    .product_container_sp {
        margin-top: 3rem;
    }
}

/* worry */
.worry_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 3rem;
    margin-top: 5rem;
}

.worry_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.worry_h3 span {
    font-size: clamp(2.2rem, 2.6vw, 2.8rem);
    color: var(--main-blue);
    font-weight: 700;
    line-height: 1.5;
}

.worry_para {
    margin-top: 5rem;
}

.worry_para p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
}

.worry_para_bottom {
    margin-top: 5rem;
}

.worry_h4 {
    display: inline-block;
}

.worry_h4 span {
    color: var(--white);
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    background-color: var(--main-blue);
    padding: 1rem 1.4rem;
}

.worry_para_bottom ul {
    margin-top: 2rem;
}

.worry_para_bottom ul li {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    line-height: 1.8;
}

.worry_para_bottom ul li span {
    font-weight: 500;
}

.worry_container_reverse {
    flex-direction: row-reverse;
}

.worry_check {
    background-color: var(--light-blue);
    margin-top: 5rem;
    padding: 3rem 1.5rem;
}

.worry_check_h3 {
    text-align: center;
}

.worry_check_h3 span {
    position: relative;
    display: inline-block;
    font-size: clamp(2.2rem, 2.6vw, 2.8rem);
    color: #333333;
    font-weight: 700;
}

.worry_check_h3 span::before,
.worry_check_h3 span::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    height: 0.5rem;
    width: 2rem;
    background-color: var(--main-blue);
}

.worry_check_h3 span::before {
    left: -3rem;
}

.worry_check_h3 span::after {
    right: -3rem;
}

.check_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.check_item {
    position: relative;
}

.check_item::before {
    position: absolute;
    content: url(./images/icon/orange_check.svg);
    width: 2rem;
    height: 2rem;
}

.check_item span {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    font-weight: 700;
    padding-left: 4.4rem;
    display: block;
    line-height: 1.8;
}

.w3_list {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
}

.w3_item {
    padding-block: 2rem;
    padding-inline: 1.5rem;
    background-color: var(--light-blue);
    border-radius: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.w3_h4 {
    text-align: center;
    font-size: 2.2rem;
}

.w3_h4 div {
    display: flex;
    align-items: center;
    gap: 0 1rem;
}

.w3_h4 span:first-child {
    display: block;
    color: var(--white);
    font-weight: 700;
    background-color: var(--main-blue);
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    padding: 2rem;
    line-height: 1;
}

.w3_h4 span:last-child {
    display: inline-block;
}

.w3_para {
    text-align: center;
    line-height: 1.8;
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    margin-top: 1rem;
}

@media screen and (max-width:1024px) {
    .check_list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width:768px) {
    .worry_container {
        flex-direction: column;
        margin-top: 5rem;
    }

    .worry_para {
        margin-top: 1.5rem;
    }

    .worry_img {
        margin-top: 2rem;
    }

    .worry_para_bottom {
        margin-top: 3rem;
    }

    .worry_h4 span {
        padding: 0.5rem 1.4rem;
    }

    .w3_list {
        flex-direction: column;
        gap: 2rem 0;
    }
}

/* solution */
.solution_info {
    text-align: center;
}

.solution_h4 {
    margin-top: 2rem;
}

.solution_h4 span {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1rem;
}

.solution_list {
    display: inline-block;
    margin-top: 1rem;
    list-style-type: disc;
    list-style-position: inside;
    line-height: 1.8;
}

.solution_list span {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
}

/* comparison */
.comparison {
    padding-bottom: 8rem;
}

.comparison_inner {
    max-width: 170rem;
    margin-inline: auto;
    padding-inline: 2rem;
}

.comparison_flex {
    display: flex;
    justify-content: space-between;
    gap: 0 6rem;
    margin-top: 5rem;
    align-items: center;
}

.comparison_flex_img {
    width: 100%;
}

.comparison_flex_text {
    width: 100%;
}

.comparison_flex_text p {
    font-size: clamp(1.5rem, 1.4vw, 2.2rem);
    line-height: 1.8;
    border-left: 1.4rem var(--main-blue) solid;
    padding: 2.5rem 2rem;
}

.comparison_table_inner {
    margin-top: clamp(3rem, 2.6vw, 5rem);
}

.comparison_table {
    border-collapse: collapse;
    width: 100%;
}

.comparison_table thead th {
    color: var(--white);
    font-size: clamp(1.8rem, 2.6vw, 3rem);
    padding-block: 1rem;
}

.comparison_table thead th:nth-child(1) {
    width: 20%;
}

.comparison_table thead th:nth-child(2),
.comparison_table thead th:nth-child(3) {
    width: 40%;
}

.comparison_table thead th:nth-child(2) {
    background-color: #A2A2A2;
}

.comparison_table thead th:nth-child(3) {
    background-color: var(--main-blue);
}

.comparison_table tbody tr:nth-child(even) {
    background-color: #F8F7F7;
}

.comparison_table tbody th,
.comparison_table tbody td {
    text-align: center;
    padding-block: 1rem;
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.comparison_table tbody td:last-child {
    color: var(--main-blue);
    font-weight: bold;
}

.comparison_container {
    display: flex;
    justify-content: space-between;
    gap: 0 4rem;
    margin-top: clamp(3rem, 7.4vw, 8rem);
}

.comparison_box {
    width: 100%;
}

.comperison_meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2rem;
}

.comperison_img {
    display: inline-block;
}

.comperison_h3 span {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.comperison_name p {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    margin-top: 1rem;
}

.comperison_text {
    margin-top: 2rem;
    border-radius: 2rem;
    padding-block: clamp(1.7rem, 2.6vw, 4rem);
    padding-inline: clamp(1.5rem, 2.6vw, 3rem);
}

.comperison_text_blue {
    background-color: var(--light-blue);
}

.comperison_text_orange {
    background-color: var(--light-orange);
}

.comperison_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.7rem);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.comperison_text_blue p {
    border-left: 1rem var(--main-blue) solid;
}

.comperison_text_orange p {
    border-left: 1rem var(--main-orange) solid;
}

.license_inner {
    max-width: 95rem;
    margin-inline: auto;
    margin-top: 5rem;
}

.license_title {
    text-align: center;
}

.license_title p {
    font-size: clamp(3rem, 2.6vw, 3.9rem);
    font-weight: bold;
}

.license_container {
    display: flex;
    justify-content: space-between;
    gap: 0 4rem;
    margin-top: clamp(3rem, 2.6vw, 5rem);
}

.license_box {
    text-align: center;
    width: 100%;
}

.license_name {
    margin-top: 2rem;
}

.license_name span {
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    font-weight: 700;
}

.license_text p {
    font-size: clamp(1.8rem, 2.6vw, 2rem);
}

@media screen and (max-width:768px) {
    .comparison {
        padding-bottom: 5rem;
    }

    .comparison_flex {
        flex-direction: column;
        gap: 3rem 0;
    }

    .comparison_flex_text p {
        padding-right: 0;
    }

    .comparison_table_inner {
        padding-inline: 0;
    }

    .comparison_container {
        flex-direction: column;
        gap: 3rem 0;
    }

    .comperison_meta {
        justify-content: start;
    }

    .comperison_img {
        width: 30%;
    }
}

@media screen and (max-width:520px) {
    .license_container {
        flex-direction: column;
        gap: 3rem 0;
    }
}

/* review */
.review {
    background-color: var(--light-blue);
}

.review_data_inner {
    background: var(--main-g);
    max-width: 114rem;
    margin-inline: auto;
    margin-top: clamp(3rem, 2.6vw, 5rem);
    border-radius: 15rem;
}

.review_data {
    display: flex;
    justify-content: space-between;
    padding-block: 4rem;
}

.review_data_box {
    width: 100%;
    text-align: center;
    color: var(--white);
}

.review_data_box p {
    line-height: 1;
}

.review_data_box p:first-child {
    font-size: 2rem;
    line-height: 1.5;
}

.review_data_box p:last-child {
    font-size: 8rem;
    margin-top: 1rem;
    font-weight: 700;
}

.voice_container {
    display: flex;
    justify-content: space-between;
    gap: 0 4rem;
    margin-top: clamp(3rem, 2.6vw, 5rem);
}

.voice_box {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: var(--white);
    border-radius: 2rem;
    padding: clamp(1.5rem, 2.6vw, 3rem);
    gap: 0 1.5rem;
}

.voice_text {
    width: 100%;
}

.voice_name {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--main-blue);
}

.voice_name span {
    font-size: 2.4rem;
}

.voice_sent {
    margin-top: 1rem;
}

.voice_sent p:not(:first-child) {
    margin-top: 1.5rem;
}

.voice_sent p,
.voice_sent p span {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
}

.voice_sent p span {
    display: block;
    font-weight: 700;
}

.voice_sent p:last-child span {
    color: var(--main-orange);
}

@media screen and (max-width:768px) {
    .review_data {
        flex-direction: column;
        gap: 3rem 0;
    }

    .review_data_box p:last-child {
        margin-top: 0;
    }

    .voice_container {
        flex-direction: column;
        gap: 3rem 0;
    }

    .voice_box {
        flex-direction: column;
        gap: 2rem 0;
    }
}

/* buy */

.buy .product_box {
    background-color: var(--light-blue);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 3px 6px #dbdbdb;
}

.buy_special {
    margin-top: 3rem;
    background-color: var(--light-orange);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 3px 6px #dbdbdb;
}

.buy_special_container {
    display: flex;
}

.buy_special_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.buy_special_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    color: #333333;
    font-weight: 700;
}

.buy_special_text {
    border-left: solid 1px #dddddd;
}

.buy_special_item {
    position: relative;
    line-height: 1.8;
}

.buy_special_item::before {
    position: absolute;
    content: url(./images/icon/orange_check.svg);
    width: 2rem;
    height: 3rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.buy_special_item span {
    font-size: clamp(1.8rem, 2.6vw, 2.2rem);
    padding-left: 4rem;
}

@media screen and (max-width:768px) {
    .buy_special_container {
        flex-direction: column;
        gap: 2rem 0;
    }

    .buy_special_text {
        border-top: solid 1px #dddddd;
        border-left: none;
        padding-top: 2rem;
    }

    .buy_special_item::before {
        content: url(./images/icon/orange_check_small.svg);
    }
}

/* faq */
.faq {
    background-color: var(--main-blue);
}

.faq_container {
    margin-top: 5rem;
}

.faq_list {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.faq_item {
    background-color: var(--white);
    padding: 2rem;
    width: 45%;
    border-radius: 2rem;
}

.faq_h3,
.faq_bottom {
    display: flex;
    align-items: flex-start;
    gap: 0 2rem;
}

.faq_bottom {
    margin-top: 1rem;
}

.faq_q,
.faq_a {
    display: inline-block;
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    padding: 1rem;
    border-radius: 50%;
    width: 6rem;
    height: auto;
    aspect-ratio: 1 / 1;
    text-align: center;
}

.faq_q {
    color: var(--main-blue);
    border: 1px solid var(--main-blue);
}

.faq_a {
    width: 10.2rem;
    color: var(--main-orange);
    border: 1px solid var(--main-orange);
}

.faq_q_text {
    font-size: clamp(2rem, 2.6vw, 2.2rem);
    color: var(--main-blue);
}

.faq_a_text {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    line-height: 1.8;
}

.faq_top .faq_h3 {
    align-items: center;
}

@media screen and (max-width:768px) {
    .faq_list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 3rem 0;
    }

    .faq_item {
        width: 100%;
    }
}

/* column */
.column {
    background-color: var(--light-blue);
}

.column_container {
    margin-top: 5rem;
}

.column_list {
    /* 	display: flex;
	justify-content: space-between;
	gap: 0 6rem; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 4rem;
}

.column_item {
    width: 100%;
    /* 	max-width: 32rem; */
}

.column_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    aspect-ratio: 3 / 2;
}

.column_h1 {
    border-top: 1px solid var(--main-blue);
    margin-top: 1rem;
    padding-top: 1rem;
}

.column_h1 span {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.5;
}

@media screen and (max-width:1024px) {
    .column_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .column_item {
        width: 100%;
        max-width: 100%;
    }

    .column_container {
        margin-top: 1rem;
    }
}

@media screen and (max-width:768px) {
    .column_btn a {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:425px) {
    .column_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem 0;
    }

    .column_item {
        width: 100%;
        max-width: 100%;
    }
}

/* contact */
/* contact */
.contact {
    background-color: var(--light-orange);
}

.contact_intro {
    display: block;
    text-align: center;
    margin-top: 5rem;
}

.contact_intro span {
    font-size: clamp(1.8rem, 2.6vw, 2rem);
}

.hidden-fields-container {
    display: none;
}

.wpcf7 {
    margin-top: 5rem;
    max-width: 70rem;
    width: 100%;
    margin-inline: auto;
}

.field__label {
    font-size: 1.8rem;
}

input,
select {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    max-width: 100%;
    border-radius: 1rem;
    border: 1px solid #dddddd;
}

textarea {
    width: 100%;
    font-size: 1.6rem;
    padding: 1rem 2rem;
    max-width: 100%;
    border-radius: 1rem;
    border: 1px solid #dddddd;
}

.field:not(:first-child) {
    margin-top: 2rem;
}

.contact_submit {
    margin-top: 3rem;
}

.contact_submit p {
    text-align: center;
}

.submit_btn {
    background-color: var(--main-orange);
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 3px 6px #a3a3a3;
    font-size: 2.5rem;
}

.wpcf7-spinner {
    position: absolute;
}

.field__input-group {
    margin-top: 1rem;
}

/* footer */

.footer {
    background-color: var(--main-blue);
    color: var(--white);
    padding-block: clamp(3rem, 2.6vw, 5rem);
}

.footer_top,
.footer_bottom {
    text-align: center;
}

.footer_bottom {
    margin-top: 3rem;
}

.footer_top a span {
    font-size: 1.8rem;
}

.footer_list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 70rem;
    margin-inline: auto;
    margin-top: 3rem;
}

.footer_item a span {
    font-size: 1.5rem;
}

.footer_img {
    text-align: center;
}

.footer_img img {
    max-width: 20rem;
}

/* privacy policy pp */
.privacy-policy {
    margin-top: 8rem;
}

.pp_container {
    max-width: 78rem;
    margin-inline: auto;
    margin-top: 5rem;
}

.pp_container p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.pp_container h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 1.8rem;
}

.pp_container a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--main-blue);
    text-decoration: underline;
    margin-top: 2rem;
}

/* single */
.single {
    margin-top: 8.5rem;
}

.single-article {
    max-width: 102.4rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.single h1 {
    font-size: clamp(2.2rem, 2.6vw, 3rem);
    font-weight: 700;
}

.post-meta {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.post-thumb {
    margin-top: 2rem;
}

.single h2 {
    font-size: 2rem;
    padding-left: 1rem;
    border-left: 5px var(--main-blue) solid;
    margin-top: 3rem;
    font-weight: 700;
}

.single h3 {
    font-size: 2rem;
    padding-left: 1rem;
    background-color: var(--main-orange);
    display: inline-block;
    padding: 1rem;
    color: var(--white);
    margin-top: 3rem;
    font-weight: 700;
    border-radius: 1rem;
}

.single h4 {
    position: relative;
    font-size: 2rem;
    padding-left: 1rem;
    display: inline-block;
    padding-left: 2.5rem;
    margin-top: 3rem;
    font-weight: 700;
}

.single h4::before {
    position: absolute;
    content: '';
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--main-orange);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.single p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 2rem;
}

.single ul,
.single ol {
    margin-top: 2rem;
}

.single ul li {
    list-style-type: disc;
}

.single li {
    list-style-position: inside;
    line-height: 1.5;
    font-size: 1.6rem;
}

.single .post-content img {
    max-width: 100%;
    margin-top: 3rem;
}

.single .post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.single .post-content table tr th,
.single .post-content table tr td {
    border: 1px #454545 solid;
    font-size: 1.6rem;
    padding: 2rem 1rem;
}

/* postList */
.post_list {
    margin-top: 8rem;
}

.postList .column_list {
    gap: 6rem 1rem;
    flex-wrap: wrap;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}




@media (max-width:960px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
}

.pagination {
    margin: 32px 0;
    text-align: center;
    width: 100%;
}

.pagination .page-numbers {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
    display: inline-block;
    padding: .5rem .75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.6rem;
}

.pagination .page-numbers .current {
    background: var(--main-blue);
    color: #fff;
    border-color: var(--main-blue);
}

.swiper-button-next:after {
    content: url(./images/icon/arrow_right.svg);
}

.swiper-button-prev:after {
    content: url(./images/icon/arrow_left.svg);
}


/* page-product */
.pageHeader {
    display: flex;
    align-items: center;
    justify-content: end;
}

.shoeHeader {
    margin-top: 7.5rem;
    background-image: url(./images/product_shoe/shoe_header.webp);
    background-size: cover;
    height: clamp(12rem, 27.6vw, 40rem);
    max-height: 100%;
    width: 100%;
}

.pageHeader_h1 {
    text-align: right;
    margin-right: clamp(1.5rem, 2.6vw, 20rem);
}

.pageHeader_h1 span {
    font-size: clamp(2rem, 2.6vw, 3rem);
    color: var(--main-blue);
    font-weight: 700;
    text-shadow:
        3px 3px 3px var(--white), -3px -3px 3px var(--white),
        -3px 3px 3px var(--white), 3px -3px 3px var(--white),
        3px 0px 3px var(--white), -3px -0px 3px var(--white),
        0px 3px 3px var(--white), 0px -3px 3px var(--white);
    margin: 0;
}

.pageHeader_inner {
    padding-inline: 1.2rem;
}

.productIntro_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 5rem;
}

.productIntro_container::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    max-width: 32rem;
    max-height: 32rem;
    background-color: var(--light-blue);
    z-index: -1;
    top: 0;
    right: -5rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.productIntro_container>* {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.productIntro_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.9rem);
    font-weight: 700;
    color: var(--main-blue);
    line-height: 1.8;
}

.productIntro_para {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .productIntro_container {
        flex-direction: column;
        gap: 3rem 0;
        margin: 0;
    }
}

.productWorry_shoe_img {
    margin-top: 5rem;
}

.productWorry_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 5rem;
}

.productWorry_container::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    max-width: 32rem;
    max-height: 32rem;
    background-color: var(--light-blue);
    z-index: -1;
    top: 0;
    left: -5rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.productWorry_container>* {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.productWorry_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.9rem);
    font-weight: 700;
    color: var(--main-blue);
}

.productWorry_para {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .productWorry_container {
        flex-direction: column;
        gap: 3rem 0;
    }
}

.productDetail_container {
    margin-top: 5rem;
}

.productDetail_list {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
}

.productDetail_list>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.productDetail_h3 {
    text-align: center;
    margin-top: 2rem;
}

.productDetail_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.9rem);
    font-weight: 700;
    color: #333333;
}

.productDetail_para {
    font-size: clamp(1.5rem, 1.7vw, 1.8rem);
    line-height: 1.8;
    margin-top: 3rem;
}

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

    .productDetail_list {
        flex-direction: column;
        gap: 3rem 0;
    }
}

.productC_container {
    display: flex;
    justify-content: space-between;
    background-color: var(--light-blue);
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-top: 5rem;
    gap: 0 3rem;
}

.productC_container>* {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.productC_h4 {
    text-align: center;
    padding-block: 1.8rem;
}

.productC_container .productC_box:first-child .productC_h4 {
    background-color: #333333;
}

.productC_container .productC_box:last-child .productC_h4 {
    background-color: var(--main-blue);
}

.productC_h4 span {
    font-size: clamp(2rem, 2.6vw, 2.9rem);
    font-weight: 700;
    color: var(--white);
}

.productC_para {
    text-align: center;
    margin-top: 2rem;
    font-size: clamp(1.5rem, 4.4vw, 1.8rem);
    line-height: 1.8;
}

.productC_caution {
    display: block;
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

@media screen and (max-width:768px) {
    .productC_container {
        flex-direction: column;
        gap: 3rem 0;
    }
}

.productDay_box {
    margin-top: 1rem;
}

.productDay_list {
    display: flex;
    gap: 0 2rem;
    justify-content: center;
}

.productDay_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem 0;
    border: 3px solid var(--main-blue);
    border-radius: 2rem;
    padding: 2rem 1.5rem;
}

.productDay_h4 span {
    font-size: clamp(1.8rem, 2.6vw, 2rem);
    font-weight: 700;
}

.productDay_img img {
    max-width: 312px;
}

.productDay_text {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    width: 100%;
}

.productDay_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
}

.details_supporter {
    margin-top: 8rem;
}

.side_scroll {
    display: none;
    text-align: right;
}

.side_scroll span {
    font-size: 1.4rem;
}

@media screen and (max-width:1480px) {
    .productDay_list {
        gap: 2rem 2rem;
    }

    .productDay_item {
        width: 33%;
    }

    .productDay_img img {
        max-width: 100%;
    }
}

@media screen and (max-width:768px) {
    .details_intro_container {
        flex-direction: column;
        gap: 3rem 0;
    }

    .details_three_list {
        flex-direction: column;
        gap: 3rem 0;
    }

    .details_three_item {
        gap: 1rem 0;
    }

    .productDay_list {
        gap: 0 2rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .productDay_item {
        flex: 0 0 auto;
        /* min-width: 335px; */
        min-width: 290px;
        scroll-snap-align: start;
    }

    .side_scroll {
        display: block;
    }
}

/* company */
.table_container {
    margin-top: 5rem;
    max-width: 70rem;
    margin-inline: auto;
}

.company_table {
    border-collapse: collapse;
    width: 100%;
}

.company_table tr {
    border-top: 1px solid var(--main-blue);
}

.company_table tr:last-child {
    border-bottom: 1px solid var(--main-blue);
}

.company_table th,
.company_table td {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
    padding-block: 1.5rem;
    align-content: baseline;
}

.company_table th {
    min-width: 9rem;
}

.company_table td {
    padding-left: 1.5rem;
}

.company_bottom {
    display: flex;
    justify-content: space-between;
    gap: 0 4rem;
    margin-top: 5rem;
}

.company_box {
    width: 100%;
    background-color: var(--light-blue);
    padding: clamp(2rem, 2.6vw, 3rem);
    border-radius: 2rem;
}

.company_h3 span {
    font-size: clamp(2.8rem, 2.6vw, 3.4rem);
    color: var(--main-blue);
}

.company_box p {
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    line-height: 1.8;
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .company_bottom {
        flex-direction: column;
        gap: 3rem 0;
        margin-top: 3rem;
    }
}


.page_faq {
    background-color: var(--light-blue);
}

.page-template-page-faq {
    background-color: var(--white);
}

.normHeader {
    margin-top: 7.5rem;
    background-image: url(./images/fv/07.webp);
    background-size: cover;
    background-position-y: 50%;
    height: clamp(12rem, 27.6vw, 40rem);
    max-height: 100%;
    width: 100%;
}

/* supporter header */
.supporterHeader {
    margin-top: 7.5rem;
    background-image: url(./images/product_supporter/supporter_header.webp);
    background-size: cover;
    height: clamp(12rem, 27.6vw, 40rem);
    max-height: 100%;
    width: 100%;
}

/* supporter intro */
.supporterIntro_container {
    margin-top: 5rem;
}

.supporterIntro_h3 {
    text-align: center;
}

.supporterIntro_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.9rem);
    font-weight: 700;
    color: var(--main-blue);
}

.supporterIntro_para {
    text-align: center;
    margin-top: 2rem;
    font-size: clamp(1.5rem, 4.4vw, 1.8rem);
    line-height: 1.8;
}

/* app */
.app {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    align-items: center;
    background-color: var(--light-orange);
    border-radius: 2rem;
    padding: 3rem;
    gap: 0 3rem;
}

.app>* {
    display: flex;
    flex-direction: column;
}

.app_text {
    position: relative;
    flex: 4;
}

.app_contents {
    flex: 6;
}

.app_text::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    background-color: #cacaca;
    right: -1.5rem;
    top: 0;

}

.app_h3 span {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--main-orange);
}

.app_para {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 3rem;
}

.app_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.app_item {
    padding: 1rem 2rem;
    background-color: var(--main-orange);
    border-radius: 5rem;
}

.app_item span {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    .app {
        flex-direction: column;
        gap: 3rem 0;
    }

    .app_text::before {
        content: none;
    }

    .app_contents {
        width: 100%;
    }

    .app_list {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        flex-direction: column;
    }

    .app_item {
        text-align: center;
    }

    .app_item span {
        font-size: 1.8rem;
    }
}