html {
    overflow-x: hidden !important;
    ;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
figure,
ul,
ol,
li,
dl,
dt,
dd,
article,
a,
nav,
section {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    overflow-x: hidden !important;
    ;
}

.sp-header {
    display: none;
}

header {
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.header_inner {
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px 40px;
    background-color: #ffffffee;
    width: 100%;
    margin: 0 auto;
    height: 120px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

/* ロゴ */
.logo {
    position: relative;
    bottom: -20px;
}

.logo img {
    width: 260px;
    height: auto;
}

@media (max-width: 1400px) {
    .logo img {
        width: 180px;
        height: auto;
    }
}

@media (max-width: 1200px) {
    .logo {
        bottom: -25px;
    }

    .logo img {
        width: 160px;
        height: auto;
    }
}

/* ナビ */
.pc_nav {
    display: flex;
    gap: 30px;
    font-size: 15px;
    align-items: center;
    position: relative;
    bottom: -30px;
}

@media (max-width: 1400px) {
    .pc_nav {
        gap: 10px;
        font-size: 13px;
    }
}

@media (max-width: 1140px) {
    .pc_nav {
        gap: 5px;
        font-size: 12px;
    }
}

.pc_nav a {
    text-decoration: none;
    color: #2d2d2d;
    transition: color 0.3s;
}

.pc_nav a:visited {
    color: #2d2d2d;
}

.pc_nav a:hover {
    color: #00a8ff;
}

/* サービス＋アイコン */
.nav-item {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item .toggle-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 3px 0 0 0;
    padding: 0;
}

.nav-item .toggle-icon::before,
.nav-item .toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #00B4FF;
    transform: translate(-50%, -50%);
}

.nav-item .toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.nav-item.active .toggle-icon::after {
    opacity: 0;
}

/* メガメニュー */
.mega-menu {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 115px 0 0 0;
    padding: 0;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.mega-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mega-content {
    display: flex;
    justify-content: center;
    gap: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0 50px 0;
}

@media (max-width: 1200px) {
    .mega-content {
        max-width: 1000px;
    }
}

/* 左側タイトル */
.mega-left {
    width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-left h4 {
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 19.6px;
    text-align: left;
    color: #cecece;
    margin: 0;
    padding: 0;
    margin-bottom: 16px;
}

.mega-left h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 45px;
    text-align: left;
    color: #001432;
    margin: 0;
    padding: 0;
}

@media (max-width: 1200px) {
    .mega-left h4 {
        font-size: 16px;
    }

    .mega-left h2 {
        font-size: 24px;
    }
}

/* 右側カラム2列 */
.mega-right {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 140px;
    flex: 1;
}

.mega-column {
    width: 30%;
}

.mega-column h3,
.mega-column h4 {
    position: relative;
    /* ← 一時追加 */
    font-weight: 500;
    font-size: 16px;
    /* line-height: 45px; */
    text-align: left;
    color: #001432;
    border-bottom: 1px solid #001432;
    padding-bottom: 4px;
    padding-right: 26px;
    margin-bottom: 16px;
}

@media (max-width: 1200px) {

    .mega-column h3,
    .mega-column h4 {
        font-size: 14px;
    }
}

.mega-column a {
    text-decoration: none;
    color: #001432;
    transition: color 0.3s;
}

.mega-column a:visited {
    color: #001432;
}

.mega-column a:hover {
    color: #00a8ff;
}

/* .mega-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url('https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/icon_mega_arrow.png') no-repeat center / contain;
} */

.mega-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url(../img/re/btn-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.mega-column h4::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url('https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/icon_link.png') no-repeat center / contain;
}

.mega-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-column ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 25px 0;
    padding: 0;
}

.mega-column ul li a {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #001432;
    text-decoration: none;
    transition: color 0.3s;
}

.mega-column ul li a:hover {
    color: #00a8ff;
}

.mega-column ul li::after {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: url('https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/icon_mega_arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.mega-column ul li.menu-arrow::after {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: url('../img/re/menu-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* 電話・ボタンまわり */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.tel-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tel-box img {
    height: 20px;
}

.tel-number {
    color: #00a8ff;
    font-size: 25px;
    font-weight: bold;
    margin-right: 10px;
    line-height: 1;
}

.tel-info {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
}

.btn-area {
    display: flex;
    gap: 10px;
    margin: 6px auto 0;
    font-size: 14px;
}


.btn-area a.btn-dl:visited,
.btn-area a.btn-contact:visited {
    color: #fff;
}

.btn-dl {
    width: 180px;
    height: 38px;
    background-color: #00B4FF;
    border: 1px solid #00B4FF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 19px;
    padding-left: 10px;
    position: relative;
}

.btn-dl:hover {
    background-color: #FFF;
    color: #00B4FF;
}

.btn-dl::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 52%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../img/re/nav-bord.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-dl:hover::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 52%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url('../img/re/nav-bord2.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-contact {
    position: relative;
    width: 180px;
    height: 38px;
    background-color: #FF5000;
    border: 1px solid #FF5000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 19px;
    padding-left: 10px;
}

.btn-contact:hover {
    background-color: #FFF;
    color: #FF5000;
}


.btn-contact::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 52%;
    transform: translateY(-50%);
    width: 20px;
    height: 13px;
    background: url('../img/re/nav-mail.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-contact:hover::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 52%;
    transform: translateY(-50%);
    width: 20px;
    height: 13px;
    background: url('../img/re/nav-mail2.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-area a.btn-dl:hover:visited {
    color: #00B4FF;
}

.btn-area a.btn-contact:hover:visited {
    color: #FF5000;
}


/* 未使用 */
.btn-area img {
    height: 48px;
}

/* 背景クリック用 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 50;
    transition: .5s;
    opacity: 0;
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 900px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-right {
        align-items: center;
    }

    .btn-area {
        justify-content: center;
    }
}

@media screen and (max-width: 1080px) {
    header {
        display: none;
    }

    .sp-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        height: 70px;
        background-color: #fff;
        position: fixed;
        margin: 0;
        padding: 0;
        z-index: 999;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.16);
    }

    .sp-header h1,
    .menu-header h1 {
        margin: 0;
        padding: 0;
    }

    #logo {
        margin: 0 0 10px 15px;
        padding: 0;
    }

    #logo img {
        width: 180px;
        margin: 0;
        padding: 0;
    }

    /* ハンバーガーメニューのスタイル */
    .hamburger {
        position: fixed;
        top: 10px;
        right: 20px;
        width: 30px;
        cursor: pointer;
        z-index: 10;
        /* メニューより前に表示 */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hamburger-label {
        font-size: 10px;
        color: #111111;
        text-align: center;
        margin-top: 35px;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .hamburger span {
        display: block;
        height: 1px;
        width: 100%;
        background-color: #111111;
        /* ボタンの色 */
        margin: 4px 0;
        transition: 0.4s;
        position: absolute;
    }

    /* メニューのスタイル */
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        /* 初期状態は透明 */
        pointer-events: none;
        /* クリック不可 */
        transition: opacity 0.5s ease;
        /* フェードインのアニメーション */
        padding: 0;
        box-sizing: border-box;
        z-index: 5;
    }

    .menu-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        height: 70px;
        position: fixed;
        margin: 0;
        padding: 0;
        padding-top: 20px;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.16);
        background-color: #FFF;
        z-index: 10;
    }

    .menu-sp-container {
        width: 100%;
        background-color: #fff;
    }

    .menu_grid.sp-box {
        display: flex;
        flex-wrap: wrap;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
        padding: 20px 0px 8px;
    }

    .menu_grid.sp-box li {
        margin: 0;
        width: 50%;
    }

    .menu_grid.sp-box li::before,
    .menu_grid.sp-box li::after {
        content: none;
    }

    .menu-sp-container {
        min-height: calc(100vh - 70px);
        margin-top: 70px;
    }

    .menu-sp-container ul.g-nav-list {
        margin: 0;
    }

    .menu-sp-container ul.g-nav-list li.g-nav-item_plus {
        border-top: 1px solid #001432;
        padding-left: 8px;
    }

    .menu-sp-container ul.g-nav-list li.g-nav-item_plus.g-nav-bb {
        border-bottom: 1px solid #001432;
    }

    .menu-sp-container ul.g-nav-list li.g-nav-item_plus ul {
        padding-left: 24px;
    }

    .menu ul {
        margin: 0px 0 0 0;
        padding: 0;
    }

    .menu ul li {
        text-decoration: none;
        list-style: none;
        margin: 0 auto;
        padding: 16px 0;
        width: 90%;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        text-align: left;
        color: #001432;
    }

    .menu ul li a {
        text-decoration: none;
        color: #001432;

    }

    .menu_grid.sp-box li {
        width: 50%;
    }

    /* メニューが開いたとき */
    .menu.open {
        opacity: 1;
        /* 不透明にする */
        pointer-events: auto;
        /* クリック可能にする */
        width: 100%;
        height: 100vh;
        overflow: auto;
        /* background-color: #fff; */

    }

    /* バツ印に変わるハンバーガーボタン */
    /* 初期状態：上下にずらして配置 */
    .hamburger span:nth-child(1) {
        transform: translateY(-8px);
    }

    .hamburger span:nth-child(2) {
        transform: translateY(0);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(8px);
    }

    /* メニューが開いたときのアニメーション */
    .hamburger.active span:nth-child(1) {
        transform: rotate(30deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-30deg);
    }

    .contact-box:first-child::after {
        display: none;
    }

    .g-nav-list {
        margin: 25px 0 0 0;
        padding: 1px 2px 5px 2px;
    }

    .g-nav-item,
    .g-nav-link {
        list-style: none;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .menu_grid li,
    .g-nav-item,
    .g-nav-link {
        position: relative;
        padding-right: 40px;
        /* アイコン分の余白 */
    }

    /* .menu_grid li::before,
    .g-nav-item::before {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-color: #00B4FF;
        border-radius: 50%;
    } */

    /* 白い「＞」 */
    /* .menu_grid li::after,
    .g-nav-item::after {
        content: ">";
        position: absolute;
        right: 21px;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
    } */

    .g-nav-link::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background: url('https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/icon_link.png')no-repeat center / contain;
    }

    .g-nav-item a,
    .g-nav-link a {
        text-align: left;
        line-height: 1;
        color: #fff;
        text-decoration: none;
        display: block;
        position: relative;
        padding: 10px 10px;
    }

    .g-nav-item a:hover,
    .g-nav-link a:hover {
        opacity: 0.6;
    }

    .g-nav-item_plus p {
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
        font-weight: 500;
        font-size: 16px;
        line-height: 45px;
        text-align: left;
        color: #001432;
        text-decoration: none;
        margin: 0;
        padding: 5px 0;
    }

    .g-nav-item_plus p::before {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-color: #00B4FF;
        border-radius: 50%;
    }

    /* 横棒（＋の横 / −） */
    .g-nav-item_plus p::after {
        content: "";
        position: absolute;
        right: 21px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
    }

    /* 縦棒（＋の縦） */
    .g-nav-item_plus p span {
        position: absolute;
        right: 21px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        width: 10px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
    }

    .g-nav-item_plus p.is-open span {
        opacity: 0;
    }

    .g-nav-item_plus ul {
        display: none;
        background-color: #fff;
    }

    .g-nav-item_plus ul.open {
        display: block;
    }

    .g-nav-item_plus ul li a {
        position: relative;
        display: block;
        font-weight: 300;
        font-size: 14px;
        line-height: 50px;
        text-align: left;
        color: #001432;
        text-decoration: none;
        padding: 0;
    }

    .g-nav-item_plus a {
        text-align: left;
        line-height: 1;
        color: #001432;
        text-decoration: none;
        display: block;
        font-weight: 500;
        position: relative;
        margin: 0;
        padding: 6px 0;
    }

    .form_bg {
        background: #fff;
        width: 100%;
        margin: 0;
        padding: 1px 0 30px 0;
    }

    .form_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
        width: 90%;
        margin: 0 auto;
        margin-top: 25px;
    }

    .form_grid img {
        width: 100%;
    }
}


.layout {
    display: flex;
    justify-content: center;
    background: #f5f5f5;
}

.layout_bg00 {
    background: #f5f5f5;
    margin: 0;
    padding: 100px 0 0 0;
}

.layout_bg01,
.layout_bg02 {
    display: flex;
    justify-content: center;
    background: #f5f5f5;
    margin: 0;
    padding: 100px 0 0 0;
}

.layout_bg00,
.layout_bg01 {
    background-image: url("https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/bg_proteinum_logo.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 600px) 150px;
    background-size: 80% auto;
}

.layout_bg02 {
    background-image: url("https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/bg_proteinum_logo.png");
    background-repeat: no-repeat;
    background-position: calc(100% - -600px) 150px;
    background-size: 80% auto;
}

.layout_fff {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 100px 0 0 0;
}

.view-btn {
    display: inline-block;
    margin: 56px auto;
}

.view-btn a {
    color: #fff;
    text-decoration: none;
}

.view-btn a:visited {
    color: #fff;
}

.view-cta {
    display: block;
    width: 394px;
    max-width: 100%;
    height: 58px;
    line-height: 55px;
    border-radius: 29px;
    background: linear-gradient(to left, #0586D7, #33B1FF);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: 0px solid #0586d7;
    transition: all 0.7s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.view-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* ホバー時の色 */
    z-index: -1;
    /* テキストの背面に配置 */
    opacity: 0;
    /* 通常時は透明 */
    transition: opacity 0.7s ease;
    /* ここでアニメーションさせる */
}

.view-cta:hover {
    /* background: linear-gradient(to left, #fff, #fff); */
    border: 1px solid #0586d7;
    color: #0586d7;
}

.view-cta a:hover,
.view-cta a:hover:visited {
    color: #0586d7;
}

.view-btn a:hover,
.view-btn a:hover:visited {
    color: #0586d7;
}

.view-cta:hover a,
.view-cta:hover a:visited {
    color: #0586d7;
}

.view-cta:hover::before {
    opacity: 1;
}

.view-btn-right {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    width: 10px;
    height: 10px;
    border: 0.15em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    top: -1px;
    left: 75px;
    position: relative;
    transition: .7s;
}

.view-btn:hover .view-btn-right {
    color: #0586d7;
}

.br-pc {
    display: block;
}

.br-sp {
    display: none;
}

.ec_service {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 0;
}

.ec_service_hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}

.ec_service_hero-left {
    width: 28%;
    border-right: 1px solid #001432;
}

.ec_service_hero-right {
    width: 70%;
    padding-left: 40px;
}

.ec_service_hero-left h2 {
    font-weight: 500;
    font-size: clamp(20px, 5vw, 72px);
    line-height: 1.3;
    text-align: left;
    margin: 0;
    padding: 0;
}

.ec_service_hero_mini {
    display: block;
    font-family: Roboto;
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    color: #00b4ff;
}

.ec_service_hero-right p {
    font-weight: 300;
    font-size: clamp(15px, 14.2px + 0.26vw, 18px);
    letter-spacing: 0.04em;
    line-height: 27px;
    text-align: left;
    margin: 0;
    padding: 0 0 0 25px;
}

@media screen and (max-width: 1080px) {
    .ec_service {
        padding-top: 80px;
    }
}

/* 全てのサービスを見る */
.service_cta {
    display: inline-block;
    margin: 60px auto 80px;
}

.service_cta a {
    color: #195daa;
    text-decoration: none;
}

.service_cta a:visited {
    color: #195daa;
    text-decoration: none;
}

.service_cta_btn {
    display: block;
    width: 400px;
    height: 64px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid #195daa;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 60px;
    color: #195daa;
    transition: all 0.3s ease;
    position: relative;
}

.service_cta:hover .service_cta_btn {
    background: #195daa;
    border: 1px solid #195daa;
    color: #fff;
}

.service_btn_right {
    display: inline-block;
    vertical-align: middle;
    color: #195daa;
    width: 10px;
    height: 10px;
    border: 0.15em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    top: -1px;
    left: 75px;
    position: relative;
}

.service_cta:hover .service_btn_right {
    color: #fff;
}

.ec_service_main {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 14px #dbdbdb;
    padding-top: 120px;
    padding-bottom: 60px;
}

.ec_service_main_ribbon {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    top: 0;
    left: 0;
    background: #195DAA;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 0px;
    width: 58%;
    padding: 8px 40px;
}

.ec_service_main h3 {
    color: #fff;
    font-weight: 500;
    font-size: clamp(18px, 1px + 2vw, 30px);
    text-align: left;

}

.ec_service_tag {
    position: relative;
    top: 80px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 11px;
    width: 1024px;
    margin: auto;
}

.ec_tag {
    font-weight: 500;
    font-size: 10px;
    line-height: 27px;
    text-align: center;
    color: #fff;
}

.rakuten-t {
    width: 78px;
    border-radius: 14.5px;
    background-color: #bf0000;
}

.amazon-t {
    width: 76px;
    border-radius: 14.5px;
    background-color: #232f3e;
}

.yahoo-t {
    width: 130px;
    border-radius: 14.5px;
    background-color: #f1702a;
}

.qoo10-t {
    width: 68px;
    border-radius: 14.5px;
    background: linear-gradient(#fc4234 10%, #a033ff 100%);
}

.own-t {
    width: 58px;
    border-radius: 14.5px;
    background-color: #195daa;
}

.tiktok-t {
    width: 68px;
    border-radius: 14.5px;
    background-color: #000000;
}

.ec_service_lead {
    width: 92%;
    margin: 0 auto 40px;
}

.ec_service_lead p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #001432;
}

.ec_service_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 92%;
    gap: 22px;
    margin: auto;
}

.ec_service_tile {
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
    /* height: 246px; */
    position: relative;
}

.brand-rakuten {
    border: 3px solid #bf0000;
}

.brand-amazon {
    border: 3px solid #232f3e;
}

.brand-yahoo {
    border: 3px solid #f1702a;
}

.brand-qoo {
    border: 3px solid #c439b2;
}

.brand-tiktok {
    border: 3px solid #121212;
}

.brand-own {
    border: 3px solid #195daa;
}

.ec_service_tile .top {
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    background: #fff;
    border-bottom: 0;
    aspect-ratio: 9 / 3;
}

.ec_service_tile .top img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    display: block;
}

.ec_service_tile .bottom {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 24px;
    text-align: left;
    color: #fff;
    padding: 15px 20px 30px;
}

.brand-rakuten .bottom {
    background: #bf0000;
}

.brand-amazon .bottom {
    background: #232f3e;
}

.brand-yahoo .bottom {
    background: #f1702a;
}

.brand-qoo .bottom {
    background: linear-gradient(#fc4234 0%, #a033ff 100%);
}

/* pink/purple */
.brand-tiktok .bottom {
    background: #121212;
}

.brand-own .bottom {
    background: #195daa;
}

.ec_service_tile .bottom p {
    margin: 0;
}

.service_content {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: space-around;
    width: 100%;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 14px #dbdbdb;
    margin: 60px 0 0 0;
    /* padding: 120px 30px 60px; */
}

.service_content_right {
    width: 46%;
    /* height: 100%; */
}

.service_content_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service_content_left {
    width: 54%;
    display: flex;
    flex-direction: column;
    padding-left: 7%;
    padding-right: 2%;
    /* width: 720px; */
    padding-bottom: 30px;
}

.service_content_left h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 22px;
}

.service_content_title {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    background: #195DAA;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 0px;
    width: 44%;
    height: 78px;
}

.service_content_title h3 {
    color: #fff;
    font-weight: 500;
    font-size: clamp(18px, 1px + 2vw, 30px);
    text-align: left;
    padding: 0 40px;
}

.service_content_tag {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 11px;
    width: 75%;
    /* margin: 0 auto; */
    margin-top: 120px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1080px) {
    .service_content_tag {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service_content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    color: #001432;
    padding: 0;
    margin-bottom: 30px;
}

.service_content_right img {
    width: 100%;
}

.ec_service_main .service_btn {
    margin: 40px auto 0;
}



/* サービス詳細ページ */
.service_btn {
    display: inline-block;
}

.service_btn a,
.service_btn a:visited {
    color: #fff;
    text-decoration: none;
}

.service_btn:hover a,
.service_btn:hover a:visited {
    color: #195DAA;
}

/* .service_btn:hover .view-cta {
    background: #fff;
    border: 1px solid #0586d7;
    color: #0586d7;
} */

.service_btn:hover .view-btn-right {
    color: #0586d7;
}

.reason_for {
    width: 92%;
    max-width: 1200px;
    height: 1069px;
    margin: 0;
    padding: 0;
}

.reason_for h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 84px;
    text-align: left;
    color: #001432;
    margin: 0 0 30px 0;
    padding: 0;
}

.reason_for p {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 27px;
    text-align: left;
    color: #001432;
    margin: 0 0 60px 0;
    padding: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    /* 各行の黒い隙間 */
}

.feature {
    display: flex;
    align-items: center;
    border-radius: 22px;
    overflow: visible;
}

/* 左側の番号パネル */
.num {
    position: absolute;
    width: 67px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #195daa;
    border-radius: 20px 0px;
    z-index: 2;
    top: 0;
    color: #fff;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 23.4px;
    text-align: left;
    font-family: Roboto;
}

/* 右側の白いボックス */
.card {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 100px;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    box-sizing: border-box;
}

.card p {
    font-weight: 300;
    font-size: 24px;
    line-height: 31.2px;
    text-align: left;
    margin: 0 0 0 125px;
    padding: 0;
}

.card_bold {
    font-weight: 700;
}

.abundant_results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 92%;
    max-width: 1200px;
    padding: 120px 0;
    /* height: 1000px; */
}


.abundant_results h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 27px;
    text-align: left;
    margin: 0 0 50px 0;
    padding: 0;
}

.abundant_results_box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 11px 0 11px 0;
    padding: 0;
}

.abundant_results_box img {
    width: 100%;
}

.company_overview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 92%;
    max-width: 1200px;
    height: 1000px;
}

.company_overview h2 {
    font-weight: 500;
    font-size: clamp(20px, 4vw, 48px);
    line-height: 84px;
    text-align: left;
    margin: 0 0 50px 0;
    padding: 0;
}

.company_overview_box {
    display: flex;
    flex-direction: row;
}

.overview_box_1 {
    width: 56%;
    margin: 0;
    padding: 0;
}

.overview_box_2 {
    width: 44%;
    margin: 0;
    padding: 0;
}

.overview_box_1 p {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 53px;
    text-align: left;
    color: #111;
}

.overview_box_big {
    font-weight: 700;
    font-size: 20px;
}

.overview_box_2 img {
    width: 120%;
    margin: -100px 0 0 0;
}


@media screen and (max-width: 768px) {
    .layout_bg00 {
        margin: 0 0 0 0;
        padding: 50px 0 0 0;
    }

    .layout_bg01,
    .layout_bg02 {
        margin: 0;
        padding: 50px 0 50px 0;
    }

    .layout_bg00,
    .layout_bg01 {
        background-position: calc(100% - 100%) 50px;
        background-size: 120% auto;
    }

    .layout_bg02 {
        background-position: calc(100% - -600px) 50px;
        background-size: 80% auto;
    }

    .layout_fff {
        margin: 0;
        padding: 50px 0 25px 0;
    }

    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }

    .view-btn {
        display: inline-block;
        margin: 26px auto 46px;
    }

    .view-btn a {
        color: #fff;
        text-decoration: none;
    }

    .view-btn a:visited {
        color: #fff;
    }

    .view-cta {
        display: block;
        width: 240px;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
        background: linear-gradient(to left, #0586D7, #33B1FF);
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        /* border: 1px solid #0586d7; */
        transition: all 0.3s ease;
        position: relative;
    }

    .view-btn:hover .view-cta {
        background: #fff;
        border: 1px solid #0586d7;
        color: #0586d7;
    }

    .view-btn-right {
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        width: 8px;
        height: 8px;
        border: 0.15em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;
        transform: translateX(-25%) rotate(45deg);
        top: -1px;
        left: 30px;
        position: relative;
    }

    .view-btn:hover .view-btn-right {
        color: #0586d7;
    }

    .ec_service {
        width: 100%;
        max-width: 90%;
        height: auto;
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .ec_service_hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 16px;
    }

    .ec_service_hero-left {
        width: 100%;
        border: none;
    }

    .ec_service_hero-right {
        width: 100%;
        padding: 0;
    }

    .ec_service_hero-left h2 {
        font-weight: 500;
        font-size: 32px;
        line-height: 32px;
        text-align: left;
        color: #001432;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .ec_service_hero_mini {
        font-family: Roboto;
        font-weight: 500;
        font-size: 12px;
        line-height: 23.4px;
        text-align: left;
        color: #00b4ff;
    }

    .ec_service_hero-right p {
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 1.6;
        text-align: left;
        color: #001432;
        margin: 0;
        padding: 0;
        border-left: inherit;
    }

    .ec_service_main .service_btn {
        margin: 0px auto 30px;
    }

    /* 全てのサービスを見る */
    .service_cta {
        display: inline-block;
        margin: 0px 0 50px;
    }

    .service_cta a {
        color: #195daa;
        text-decoration: none;
    }

    .service_cta a:visited {
        color: #195daa;
        text-decoration: none;
    }

    .service_cta_btn {
        display: block;
        width: 240px;
        height: 40px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid #195daa;
        text-align: center;
        font-weight: 500;
        font-size: 14px;
        line-height: 36px;
        color: #195daa;
        transition: all 0.3s ease;
        position: relative;
    }

    .service_cta:hover .service_cta_btn {
        background: #195daa;
        border: 1px solid #195daa;
        color: #fff;
    }

    .service_btn_right {
        display: inline-block;
        vertical-align: middle;
        color: #195daa;
        width: 8px;
        height: 8px;
        border: 0.15em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;
        transform: translateX(-25%) rotate(45deg);
        top: -2px;
        left: 25px;
        position: relative;
    }

    .service_cta:hover .service_btn_right {
        color: #fff;
    }

    .ec_service_main {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0px 0px 14px #dbdbdb;
        padding: 0;
    }

    .ec_service_main_ribbon {
        position: absolute;
        display: flex;
        align-items: center;
        top: 0;
        left: 0;
        background: #195DAA;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 0px;
        width: 90%;
        padding: 0;
        height: 52px;
    }

    .ec_service_main_ribbon .pc-only {
        display: none;
    }

    .ec_service_main h3 {
        color: #fff;
        font-weight: 500;
        font-size: 1rem;
        line-height: 1.4;
        /* letter-spacing: 0px; */
        text-align: left;
        margin: 0;
        padding: 0 8px;
    }

    .ec_service_tag {
        position: relative;
        top: 60px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        width: 90%;
        margin: 10px auto;
    }

    .ec_tag {
        font-weight: 500;
        font-size: 8px;
        line-height: 27px;
        text-align: center;
        color: #fff;
    }

    .rakuten-t {
        width: 100%;
        border-radius: 12.5px;
        background-color: #bf0000;
    }

    .amazon-t {
        width: 100%;
        color: #f90;
        border-radius: 12.5px;
        background-color: #232f3e;
    }

    .yahoo-t {
        width: 100%;
        font-size: 5px;
        border-radius: 12.5px;
        background-color: #f1702a;
    }

    .qoo10-t {
        width: 100%;
        border-radius: 12.5px;
        background: linear-gradient(#fc4234 10%, #a033ff 100%);
    }

    .own-t {
        width: 100%;
        border-radius: 12.5px;
        background-color: #195daa;
    }

    .tiktok-t {
        width: 100%;
        border-radius: 12.5px;
        background-color: #000000;
    }

    .ec_service_lead {
        position: relative;
        top: 65px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        margin: auto;
    }

    .ec_service_lead p {
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 15.6px;
        text-align: left;
        color: #001432;
    }

    .ec_service_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        gap: 11px;
        margin: auto;
        margin-top: 90px;
        margin-bottom: 30px;
    }

    .ec_service_tile {
        border-radius: 10px;
        overflow: hidden;
        background: transparent;
        display: flex;
        flex-direction: column;
        height: 169px;
        position: relative;
    }

    .brand-rakuten {
        border: 2px solid #bf0000;
    }

    .brand-amazon {
        border: 2px solid #232f3e;
    }

    .brand-yahoo {
        border: 2px solid #f1702a;
    }

    .brand-qoo {
        border: 2px solid #c439b2;
    }

    .brand-tiktok {
        border: 2px solid #121212;
    }

    .brand-own {
        border: 2px solid #195daa;
    }

    .ec_service_tile .top {
        flex: 0 0 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 25px;
        background: #fff;
        border-bottom: 0;
    }

    .ec_service_tile .top img {
        max-width: 100%;
        max-height: 55px;
        object-fit: contain;
        display: block;
    }

    .ec_service_tile .bottom {
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 15.6px;
        text-align: left;
        color: #fff;
        padding: 5px 10px;
    }

    .service_content {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0px 0px 14px #dbdbdb;
        margin: 50px 0 0 0;
        padding: 0 0 30px;
    }

    .service_content_left {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .service_content_title {
        position: absolute;
        top: 0;
        left: 0;
        background: #195DAA;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 0px;
        width: 304px;
        height: 48px;
    }

    .service_content_title h3 {
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        text-align: left;
        margin: 0;
        padding: 0 10px;
        line-height: 45px;
    }

    .service_content_tag {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 11px;
        width: 100%;
        margin: 15px auto;
    }

    .service_content p {
        font-weight: 300;
        font-size: 12px;
        line-height: 18px;
        text-align: left;
        color: #111;
        width: 100%;
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

    .service_content_right {
        width: 100%;
    }

    .service_content_right img {
        width: 100%;
        height: 100%;
    }

    .service_content_left {
        order: 2;
        padding: 0 4%;
    }

    .service_content_right {
        order: 1;
        margin-bottom: 12px;
        aspect-ratio: 6 / 4;
    }

    .service_content_right picture {
        width: 100%;
        height: 100%;
    }

    .service_content_left h4 {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .service_content.mb24 {
        margin-bottom: 24px;
    }

    /* サービス詳細ページ */
    .service_btn {
        display: inline-block;
        margin: 0 auto;
        margin-top: 25px;
        /* margin-bottom: 25px; */
    }

    .service_btn a {
        color: #fff;
        text-decoration: none;
    }

    .service_btn a:visited {
        color: #fff;
    }

    .service_btn:hover .view-cta {
        background: #fff;
        border: 1px solid #0586d7;
        color: #0586d7;
    }

    .service_btn:hover .view-btn-right {
        color: #0586d7;
    }

    .reason_for {
        width: 100%;
        max-width: 90%;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .reason_for h2 {
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .reason_for p {
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 15.6px;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .num {
        width: 40px;
        height: 48px;
        border-radius: 10px 0px;
        font-weight: 500;
        font-size: 24px;
        letter-spacing: 0.04em;
        line-height: 23.4px;
    }

    .card {
        min-height: 90px;
        margin: 0;
        padding: 0;
        border-radius: 10px;
    }

    .card p {
        font-size: 14px;
        line-height: 21px;
        margin: 0 0 0 60px;
        padding: 0 30px 0 0;
    }

    .abundant_results {
        width: 100%;
        max-width: 90%;
        height: auto;
        padding: 20px 0;
    }

    .abundant_results h2 {
        font-size: 24px;
        line-height: 31.2px;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .abundant_results_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
        margin: 11px 0 0 0;
        padding: 0;
    }

    .company_overview {
        width: 100%;
        max-width: 90%;
        height: auto;
    }

    .company_overview h2 {
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .company_overview_box {
        display: flex;
        flex-direction: column;
    }

    .overview_box_1 {
        width: 100%;
        order: 2;
        margin: 25px 0 0 0;
        padding: 0;
    }

    .overview_box_2 {
        width: 86%;
        margin: 0 auto;
        order: 1;
        /* margin: 0; */
        padding: 0;
    }

    .overview_box_2 img {
        width: 100%;
        margin: 0;
    }

    .overview_box_1 p {
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 29px;
    }

    .overview_box_big {
        font-weight: 700;
        font-size: 12px;
    }
}


.fo_overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 440px;
    /* aspect-ratio: 192 / 44; */
    position: relative;
    overflow: hidden;
}

.fo_overview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
.fo_overview img:hover {
    filter: brightness(0.8);
}
*/
.img-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    z-index: 0;
}

.img-wrap img {
    display: block;
}

.img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #195daa;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-wrap:hover::after {
    opacity: 0.8;
}

.fo_overview_tile {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    padding: 4% 8%;
}

.fo_overview_tile h3 {
    position: relative;
    /* bottom: 30%;
    left: 40px; */
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0.04em;
    /* line-height: 24px; */
    text-align: left;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1;
    pointer-events: none;
}

.fo_tile_mini {
    position: relative;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    text-align: left;
    color: #fff;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
    pointer-events: none;
}

.fo_tile_bottom {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    z-index: 2;
    align-items: center;
    pointer-events: none;
}

.fo_tile_bottom_l {
    width: 86%;
}

.fo_tile_bottom_r {
    width: 14%;
    aspect-ratio: 1 /1;
}

.fo_tile_bottom_l p {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.7;
    text-align: left;
    color: #fff;
}

@media screen and (max-width: 1600px) {
    .fo_overview_tile h3 {
        font-size: clamp(16px, 9vw, 24px);
    }

    .fo_tile_mini {
        font-size: clamp(14px, 9vw, 16px);
    }

    .fo_tile_bottom {
        bottom: 5%;
    }

    .fo_tile_bottom_l p {
        font-size: clamp(11px, 9.5vw, 12.5px);
    }
}

.fo_tile_bottom_r img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fo_site {
    background: #001432;
    color: #fff;
    margin: 0;
    padding: 0;
}

.fo_logo {
    display: flex;
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 20px 0;
}

.fo_logo img {
    width: 353px;
}

.fo_inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    align-items: flex-end;
}

.fo_address {
    font-weight: 500;
    font-size: 18px;
    line-height: 23.4px;
    text-align: left;
    color: #fff;
    font-style: normal;
    margin: 0 0 15px 0;
    padding: 0;
}

.map-btn {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    width: 162px;
    height: 37px;
    margin-top: 20px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 37px;
    color: #fff;
    margin: 0 0 30px 0;
}

.fo_tel {
    font-family: Roboto;
    font-weight: 500;
    font-size: 39px;
    line-height: 23.4px;
    text-align: left;
    color: #00b4ff;
    margin-top: 30px;
}

.fo_time {
    font-weight: 500;
    font-size: 16px;
    line-height: 23.4px;
    text-align: left;
    color: #fff;
    margin-top: 10px;
}

.contact-btn {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    width: 238px;
    height: 37px;
    margin-top: 30px;
    padding: 0;
    background: #ff5000;
    border: 1px solid #ff5000;
    border-radius: 18.5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 37px;
    text-align: left;
    color: #fff;
}

.map-btn,
.contact-btn {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.map-btn:hover {
    background: #fff;
    color: #001432;
    border-color: #fff;
}

.contact-btn:visited {
    color: #fff;
}

/* map-btn 内の > アイコンも反転 */
.map-btn:hover span {
    color: #001432;
}

/* contact-btn：オレンジ → 白背景＋オレンジ文字 */
.contact-btn:hover {
    background: transparent;
    color: #ff5000;
    border: 1px solid #ff5000;
}

/* contact-btn 内の > アイコンも反転 */
.contact-btn:hover span {
    color: #ff5000;
}

.fo_col h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 45px;
    text-align: left;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin: 0 0 10px 0;
    padding: 0;
}

.fo_col h4.mt {
    margin-top: 20px;
}

.fo_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fo_list li {
    margin-bottom: 14px;
}

.fo_list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    line-height: 34px;
    text-align: left;
    color: #fff;
}

.fo_list a:hover {
    color: #00b4ff;
}

.fo_list a::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url('../img/re/btn-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.fo_list a.link-box::after {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url('../img/re/btn-link.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.fo_list.external a::after {
    background-image: url('../img/re/btn-link.png');
    background-repeat: no-repeat;
}

.fo_bottom {
    width: 100%;
    max-width: 90%;
    border-top: 1px solid #fff;
    margin: 0 auto;
    padding: 20px;
    font-size: 12px;
}

.fo_bottom_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fo_bottom_inner p {
    font-weight: 500;
    font-size: 10px;
    line-height: 27px;
    text-align: left;
    color: #fff;
}

.fo_bottom_inner nav {
    display: flex;
    gap: 20px;
}

.fo_bottom_inner nav a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #fff;
    text-decoration: none;
}

.fo_inner_sp {
    display: none;
}

.fo_sp_end {
    display: none;
}

@media screen and (max-width: 768px) {
    .fo_inner {
        display: none;
    }

    .fo_bottom {
        display: none;
    }

    .fo_overview {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        position: relative;
    }

    .fo_overview_tile h3 {
        bottom: 30%;
        left: 20px;
        margin: 0;
        padding: 0;
        font-weight: 500;
        font-size: 28px;
        letter-spacing: 0.04em;
        line-height: 1;
        text-align: left;
        color: #fff;
    }

    .fo_tile_mini {
        font-family: Roboto;
        font-weight: 500;
        font-size: 14px;
        line-height: 19.6px;
        text-align: left;
        color: #fff;
    }

    .fo_tile_bottom {
        position: absolute;
        display: flex;
        flex-direction: row;
        align-items: center;
        bottom: 10%;
        left: 20px;
        width: 100%;
    }

    .fo_tile_bottom_l {
        width: 80%;
    }

    .fo_tile_bottom_r {
        width: 20%;
    }

    .fo_tile_bottom_l p {
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 15.6px;
        text-align: left;
        color: #fff;
    }

    .fo_tile_bottom_r img {
        width: 32px;
    }

    .fo_logo {
        display: flex;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 80px 0 20px 0;
    }

    .fo_logo img {
        width: 60%;
    }

    .fo_inner_sp {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 10px 0 40px 0;
    }

    .fo_address {
        font-weight: 500;
        font-size: 16px;
        line-height: 20.8px;
        text-align: left;
        color: #fff;
        font-style: normal;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .map-btn {
        display: inline-flex;
        justify-content: center;
        gap: 8px;
        width: 162px;
        height: 37px;
        margin-top: 20px;
        padding: 0;
        border: 1px solid #fff;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        line-height: 37px;
        color: #fff;
        margin: 0;
        padding: 0;
    }

    .fo_tel {
        font-family: Roboto;
        font-weight: 500;
        font-size: 32px;
        line-height: 23.4px;
        text-align: left;
        color: #00b4ff;
        margin-top: 30px;
    }

    .fo_time {
        font-weight: 500;
        font-size: 12px;
        line-height: 23.4px;
        text-align: left;
        color: #fff;
        margin-top: 10px;
    }

    .contact-btn {
        display: inline-flex;
        justify-content: center;
        gap: 10px;
        width: 238px;
        height: 37px;
        margin-top: 30px;
        padding: 0;
        background: #ff5000;
        border-radius: 18.5px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        line-height: 37px;
        text-align: left;
        color: #fff;
    }

    .fo-nav-list {
        margin: 0;
        padding: 10px 0 0 0;
        list-style: none;
        border-bottom: 1px solid #fff;
    }

    .fo-nav-item {
        list-style: none;
        margin: 0 !important;
        padding: 0 !important;
    }

    .fo-nav-item a {
        text-align: left;
        line-height: 1;
        color: #fff;
        text-decoration: none;
        display: block;
        position: relative;
        padding: 10px 10px;
    }

    .fo-nav-item a:hover {
        opacity: 0.6;
    }

    .fo-nav-item_plus {
        border-bottom: 1px solid #001432;
        padding: 0 !important;
    }

    .fo-nav-item_plus p {
        position: relative;
        display: flex;
        align-items: center;
        cursor: pointer;
        font-weight: 500;
        font-size: 16px;
        line-height: 45px;
        text-align: left;
        color: #fff;
        text-decoration: none;
        margin: 0;
        padding: 5px 0;
    }

    .fo-nav-item_plus p::before {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-color: #00B4FF;
        border-radius: 50%;
    }

    /* 横棒（＋の横 / −） */
    .fo-nav-item_plus p::after {
        content: "";
        position: absolute;
        right: 21px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
    }

    /* 縦棒（＋の縦） */
    .fo-nav-item_plus p span {
        position: absolute;
        right: 21px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        width: 10px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
    }

    .fo-nav-item_plus p.is-open span {
        opacity: 0;
    }

    .fo-nav-item_plus ul {
        display: none;
    }

    .fo-nav-item_plus ul.open {
        display: block;
    }

    .fo-nav-item_plus ul li a {
        position: relative;
        display: block;
        font-weight: 300;
        font-size: 14px;
        line-height: 45px;
        text-align: left;
        color: #fff;
        text-decoration: none;
        margin: 0;
        padding: 0;
    }

    .fo-nav-item_plus a {
        position: relative;
        display: block;
        font-weight: 500;
        font-size: 16px;
        line-height: 45px;
        text-align: left;
        color: #fff;
        text-decoration: none;
        margin: 0;
        padding: 10px 0 10px 0;
    }

    .fo_bottom_sp {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 20px;
        margin: 0 auto;
    }

    .fo_bottom_sp a {
        font-weight: 500;
        font-size: 12px;
        line-height: 24px;
        text-align: left;
        color: #fff;
        text-decoration: none;
    }

    .fo_sp_end {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .fo_sp_end p {
        font-weight: 500;
        font-size: 10px;
        line-height: 45px;
        text-align: left;
        color: #001432;
    }
}

.fv_2025_sp {
    display: none;
}

.fv_2025 {
    position: relative;
    width: 100%;
    /* aspect-ratio: 16 / 8; */
    height: auto;
    /* height: 90vh; */
    /* padding: 140px 0 0 0; */
    /* background: url(../img/firstview_pc.jpg); */
    background: url(../img/re/fv_pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 200px;
    padding-bottom: 40px;
}

.fv_2025 img.fv_2025_img-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.fv_2025_inner {
    width: 60%;
    margin-left: 6%;
}

.fv_2025 h2 {
    /* position: absolute; */
    top: 8%;
    left: 70px;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1920px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: clamp(20px, 5.2vw + 0.75rem, 110px);
    /* font-size: 48px; */
    line-height: 1.2;
    text-align: left;
    color: #fff;
    padding-top: 140px;
    padding-top: 16vh;
    /* line-height: 1.4; */
    margin-bottom: 30px;
}

/* @media (max-width: 1500px) {
    .fv_2025 h2 {
        font-size: clamp(20px, 2.1vw + 0.75rem, 60px);
    }
} */

@media (max-width: 1400px) {
    /* .fv_2025 h2 {
        font-size: clamp(20px, 2vw + 0.75rem, 60px);
        padding-top: 140px;
        margin-bottom: 20px;

    } */

    .fv_2025 p {
        margin-bottom: 20px;
    }
}

@media (max-width: 1240px) {
    /* .fv_2025_inner {
        width: 38%;
    } */

    /* .fv_2025 h2 {
        font-size: clamp(20px, 1.4vw + 0.75rem, 60px);
        padding-top: 132px;
    } */
}

@media (max-width: 1080px) {
    /* .fv_2025_inner {
        width: 38%;
    } */

    /* .fv_2025 h2 {
        font-size: clamp(20px, 1.2vw + 0.75rem, 60px);
        padding-top: 100px;
    } */
}

.fv_2025 p {
    /* position: absolute; */
    top: 18%;
    left: 70px;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1920px;
    font-family: "Noto Sans JP";
    font-weight: bold;
    /* font-size: 32px; */
    font-size: clamp(18px, 1.5vw + 0.75rem, 40px);
    line-height: 93.6px;
    text-align: left;
    color: #FFF;
    line-height: 1.3;
    margin-bottom: 30px;
}

.fv_emblem {
    /* position: absolute; */
    display: flex;
    flex-direction: row;
    top: 33%;
    left: 60px;
    width: 100%;
    margin: 0;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
    width: 60%;
}

.fv_emblem img {
    width: 48%;
    margin: 0 15px 0;
    padding: 0;
}

.fv_btn {
    /* position: absolute; */
    display: flex;
    flex-direction: row;
    top: 58%;
    left: 60px;
    width: auto;
    margin: 0;
    width: 70%;
}

.fv_btn img {
    width: 100%;
    margin: 0;
    padding: 0;
}

.fv_btn a {
    width: 380px;
    margin: 0 15px 0;
}

.fv_2025 .splide {
    position: absolute;
    bottom: -90px;
}

.fv_2025 .splide.splide-pc2 {
    bottom: -180px;
}

.splide img {
    margin: 0;
    padding: 0;
}


@media screen and (max-width: 768px) {
    .fv_2025 {
        display: none;
    }

    .fv_2025_sp {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        background-image: url(../img/re/firstview_sp.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 14px;
        padding-bottom: 0px;
        margin-bottom: 220px;
        line-height: 1.1;
    }

    .fv_2025_sp_inner {
        padding-top: 24vh;
        width: 94%;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .fv_2025_sp img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .fv_2025_sp h2 {
        /* position: absolute; */
        margin: 0;
        padding: 0 !important;
        width: 100%;
        font-family: "Noto Sans JP";
        font-weight: 700;
        font-size: clamp(22px, 15.8vw, 100px);
        line-height: 1.1;
        text-align: left;
        color: #FFF;
        margin-bottom: 8px;
    }

    .fv_2025_sp p {
        /* position: absolute; */
        margin: 0;
        padding: 0;
        width: 100%;
        font-family: "Noto Sans JP";
        font-weight: bold;
        font-size: clamp(14px, 4.8vw, 32px);
        line-height: 1.6;
        text-align: left;
        color: #FFF;
        margin-bottom: 10px;
    }

    .fv_emblem_sp {
        /* position: absolute; */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(8px, 2vw, 12px);
        width: 100%;
        top: auto;
        bottom: 2%;
    }

    .fv_emblem_sp img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .center {
        display: flex;
        justify-content: center;
    }

    .fv_btn_sp {
        margin-top: 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: clamp(10px, 3vw, 14px);
        justify-content: center;
        align-items: center;
        /* margin-bottom: 20px; */
    }

    .fv_btn_sp a {
        width: 90%;
        margin: 0;
        padding: 0;
    }

    .fv_btn_sp img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .splide.splide-sp {
        position: absolute;
        top: auto;
        bottom: -100px;
        width: 100%;
    }

    .splide.splide-sp2 {
        position: absolute;
        top: auto;
        bottom: -200px;
        width: 100%;
    }

    .splide img {
        margin: 0;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .fv_2025 {
        display: none;
    }

    .fv_2025_sp {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        background-image: url(../img/re/firstview_sp.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 14px;
        padding-bottom: 0px;
        margin-bottom: 140px;
        line-height: 1.1;
    }

    .fv_2025_sp_inner {
        padding-top: 44vh;
        width: 94%;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .fv_2025_sp img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .fv_2025_sp h2 {
        /* position: absolute; */
        margin: 0;
        padding: 0 !important;
        width: 100%;
        font-family: "Noto Sans JP";
        font-weight: 700;
        font-size: clamp(22px, 13.8vw, 60px);
        line-height: 1.1;
        text-align: left;
        color: #FFF;
        margin-bottom: 8px;
    }

    .fv_2025_sp p {
        /* position: absolute; */
        margin: 0;
        padding: 0;
        width: 100%;
        font-family: "Noto Sans JP";
        font-weight: bold;
        font-size: clamp(14px, 4.8vw, 32px);
        line-height: 1.6;
        text-align: left;
        color: #FFF;
        margin-bottom: 10px;
    }

    .fv_emblem_sp {
        /* position: absolute; */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(8px, 2vw, 12px);
        width: 100%;
        top: auto;
        bottom: 2%;
    }

    .fv_emblem_sp img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .center {
        display: flex;
        justify-content: center;
    }

    .fv_btn_sp {
        margin-top: 12px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: clamp(10px, 3vw, 14px);
        justify-content: center;
        align-items: center;
        /* margin-bottom: 20px; */
    }

    .fv_btn_sp a {
        width: 90%;
        margin: 0;
        padding: 0;
    }

    .fv_btn_sp img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .splide.splide-sp {
        position: absolute;
        top: auto;
        bottom: -60px;
        width: 100%;
    }

    .splide.splide-sp2 {
        position: absolute;
        top: auto;
        bottom: -124px;
        width: 100%;
    }

    .splide img {
        margin: 0;
        padding: 0;
    }
}


/* @media screen and (max-width: 380px) {
    .fv_btn_sp {
        margin-top: 40vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: clamp(10px, 3vw, 14px);
        justify-content: center;
        align-items: center;
    }

    .fv_2025_sp h2 {
        margin: 0;
        padding: 0 !important;
        width: 100%;
        font-family: "Noto Sans JP";
        font-weight: 700;
        font-size: clamp(22px, 5.8vw, 40px);
        line-height: 1.25;
        text-align: left;
        color: #001432;
        margin-bottom: 6px;
    }

    .fv_2025_sp {
        position: relative;
        display: block;
        width: 100%;
        height: 100vh;
        background-image: url(../img/re/firstview_sp.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 70px;
    }


    .fv_2025_sp_inner {
        padding-top: 20px;
        width: 94%;
        margin: 0 auto;
    }

} */

.cta-section_sp,
.cta-content_sp {
    display: none;
}

.cta-section {
    position: relative;
    display: inline-block;
    width: 100%;
    background: linear-gradient(#006fb4 0%, #008ade 100%);
    padding: 0;
    /* overflow: hidden; */
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    background-color: #f5f5f5;
    top: 0px;
    left: 0;
    z-index: 1;
}

.cta-image {
    position: absolute;
    width: 63%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateX(-20%);
}

.cta-image img {
    width: 100%;
    /* aspect-ratio: 1.123 / 1; */
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.cta-content {
    position: relative;
    width: 100%;
    padding: 140px 0 120px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 2;
    left: auto;
    right: 5%;
}

.cta-content h2 {
    width: 1000px;
    max-width: 92%;
    font-weight: 500;
    font-size: clamp(1.125rem, 0.81rem + 2.31vw, 48px);
    color: #fff;
    /* line-height: 78px; */
    text-align: center;
    margin: 0;
    margin-left: auto;
    padding: 0;
}

.cta-content p {
    width: 1000px;
    max-width: 92%;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    margin: 10px 0 10px auto;
    padding: 0;
}

.cta-box {
    width: 1000px;
    max-width: 92%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;

}

.cta-left::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #195daa;
    border-radius: 50%;
    top: 50%;
    left: auto;
    right: -30px;
    transform: translateY(-50%);
    z-index: -1;
}

.cta-left {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 339px;
    height: 100%;
    padding: 40px 0;
    background: #195daa;
    /* border-radius: 18px 80px 80px 18px; */
    /* ← 右を半円に */
    font-weight: 500;
    font-size: 24px;
    text-align: left;
    color: #fff;
    position: relative;
}

.cta-left img {
    width: 32px;
    padding: 0;
}

.cta-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 54px;
}

.cta-right p {
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    text-align: left;
    color: #111;
    text-shadow: initial;
    width: 40%;
    margin: 0;
}

.cta-btn {
    position: relative;
    width: 280px;
    max-width: 100%;
    height: 58px;
    border-radius: 29px;
    background: linear-gradient(to left, #0586D7, #33B1FF);
    white-space: nowrap;
    transition: 0.2s;
    border: 0px solid #2daaff;
    font-weight: 500;
    font-size: 18px;
    line-height: 58px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin: 0;
    margin-left: auto;
    z-index: 1;
    overflow: hidden;
}

.cta-btn:hover {
    /* background: #ffffff; */
    color: #0586d7;
    border: 1px solid #2daaff;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* ホバー時の色 */
    z-index: -1;
    /* テキストの背面に配置 */
    opacity: 0;
    /* 通常時は透明 */
    transition: opacity 0.3s ease;
    /* ここでアニメーションさせる */
}

.cta-btn:hover::before {
    opacity: 1;
    /* ホバー時に白い背景を浮き上がらせる */
}

a.cta-btn:visited {
    color: #fff;
}

a.cta-btn:hover:visited {
    /* background: #ffffff; */
    color: #0586d7;
    border: 1px solid #2daaff;
}


.cta-btn::after {
    content: "›";
    position: absolute;
    right: 20px;
    top: 27px;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.cta-btn::after {
    color: #fff;
    transition: 0.2s;
    top: 44%;
}

.cta-btn:hover::after {
    color: #0586d7;
}


.phone-box .phone-number {
    font-family: Roboto;
    font-weight: 500;
    font-size: clamp(18px, 1.31rem + 1vw, 40px);
    line-height: 23.4px;
    text-align: left;
    color: #00b4ff;
}

.phone-box .phone-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.phone-box .phone-number {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-box .phone-number::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url("https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/icon_tel.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
}



@media screen and (max-width: 1540px) {
    .cta-content h2 {
        width: 800px;
    }

    .cta-content p {
        width: 800px;
    }

    .cta-box {
        width: 900px;
    }

    .cta-left {
        width: 30%;
    }

    .cta-right p {
        width: 40%;
    }
}

@media screen and (max-width: 1280px) {
    .cta-content h2 {
        width: 600px;
    }

    .cta-content p {
        width: 600px;
    }

    .cta-box {
        width: 700px;
    }

    .cta-left {
        width: 36%;
        padding: 20px 0;
        font-size: 18px;
        min-width: 0;
    }

    .cta-right p {
        width: 50%;
        font-size: 13px;
        line-height: 1.4;
    }

    .cta-right {
        padding: 0 16px 0 43px;
    }

    .cta-btn {
        width: 180px;
        font-size: 12px;
        height: 42px;
        line-height: 42px;
    }

    .phone-box .phone-number {
        font-size: 24px;
        position: relative;
    }

    .phone-box .phone-number::before {
        position: absolute;
        top: 50%;
        left: -26px;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 980px) {
    .cta-content h2 {
        width: 500px;
    }

    .cta-content p {
        width: 500px;
    }

    .cta-box {
        width: 600px;
    }

    .cta-left {
        width: 28%;
        padding: 18px 0;
        font-size: 14px;
        min-width: 0;
    }

    .cta-left img {
        width: 22px;
    }

    .cta-right p {
        width: 50%;
        font-size: 13px;
        line-height: 1.4;
    }



}

/* 
@media screen and (max-width: 1600px) {
    .cta-content {
        left: 30%
    }
}

@media screen and (max-width: 1400px) {
    .cta-content {
        left: 20%
    }
}

@media screen and (max-width: 1200px) {
    .cta-content {
        width: 900px;
        left: 10%
    }

    .phone-box .phone-number {
        font-size: 30px;
    }
} */

@media screen and (max-width: 768px) {
    .cta-section {
        display: none;
    }

    .cta-content_sp {
        display: flex;
        flex-direction: column;
        background: linear-gradient(#006fb4 0%, #008ade 100%);
        gap: 22px;
        margin: 0;
        padding: 50px 0 0 0;
        position: relative;
    }

    .cta-content_sp::before {
        content: "";
        display: block;
        width: 100%;
        height: 20px;
        background: #f5f5f5;
        position: absolute;
        top: atuo;
        bottom: 0;
        left: 0;
        z-index: 0;
    }

    .cta-section_sp {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    .cta-section_sp h2 {
        font-weight: 500;
        font-size: 24px;
        line-height: 31.2px;
        text-align: left;
        color: #fff;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .cta-section_sp p {
        font-weight: 300;
        font-size: 12px;
        line-height: 24px;
        text-align: left;
        color: #fff;
        margin: 0 auto;
        padding: 0;
    }

    .cta-box_sp {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        /* height: 185px; */
        margin: 0 auto;
        padding: 0 0 20px 0;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .cta-above {
        width: 100%;
        background: #195daa;
        border-radius: 9px 9px 0px 0px;
        font-weight: 500;
        font-size: 18px;
        line-height: 52px;
        text-align: left;
        color: #fff;
    }

    .cta-above img {
        width: 22px;
        margin: 0 0 13px 0;
        padding: 0 10px 0 30px;
    }

    .cta-below {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0px auto;
    }

    .cta-below p {
        font-weight: 300;
        font-size: 12px;
        line-height: 15.6px;
        text-align: left;
        color: #111;
        margin: 0 0 15px 0;
        padding: 0;
        margin: 20px 0;
    }

    .cta-btn {
        position: relative;
        width: 80%;
        height: 40px;
        border-radius: 20px;
        background: linear-gradient(to left, #0586D7, #33B1FF);
        white-space: nowrap;
        transition: 0.2s;
        /* border: 2px solid transparent; */
        font-weight: 500;
        font-size: 14px;
        line-height: 36px;
        text-align: center;
        color: #fff;
        text-decoration: none;
        margin: 0 auto;
    }

    .cta-btn:hover {
        background: #ffffff;
        color: #0586d7;
        border-color: #2daaff;
    }

    .cta-btn::after {
        content: "›";
        position: absolute;
        right: 20px;
        top: 40%;
        transform: translateY(-50%);
        font-size: 22px;
        font-weight: 500;
        line-height: 1;
    }

    .cta-btn::after {
        color: #fff;
        transition: 0.2s;
    }

    .cta-btn:hover::after {
        color: #0586d7;
    }

    .phone-number {
        font-family: Roboto;
        font-weight: 500;
        font-size: 32px;
        line-height: 23.4px;
        text-align: left;
        color: #00b4ff;
        margin: 0 auto;
        text-align: center;
    }

    .phone-number::before {
        content: "";
        display: inline-block;
        width: 22px;
        height: 22px;
        background-image: url("https://proteinum.co.jp/wp-content/themes/proteinum_renewal/img/re/icon_tel.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0;
        padding: 0 0 0 15px;
    }
}

.interview {
    width: 92%;
    max-width: 1200px;
    height: 1500px;
    margin: 0;
    padding: 0;
}

.interview_hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 50px 0;
    padding: 0;
}

.interview_hero-left {
    width: 32%;
}

.interview_hero-right {
    width: 68%;
}

.interview_hero-left h2 {
    font-weight: 500;
    font-size: clamp(20px, 4vw, 60px);
    ;
    line-height: 78px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.interview_hero-left h2 span {
    display: block;
}

.interview_hero_mini {
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 23.4px;
    text-align: left;
    color: #00b4ff;
}

.interview_hero-right p {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 27px;
    text-align: left;
    margin: 0;
    padding: 10px 0 10px 60px;
    border-left: 1px solid #001432;
}

.interview_main {
    display: flex;
    flex-direction: row;
    width: 1200px;
    max-width: 100%;
    /* height: 433px; */
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 14px #dbdbdb;
}

.interview_main_left {
    display: flex;
    flex-direction: column;
    width: 60%;
    /* max-width: 50%; */
}

.interview_main_title {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 35px auto;
    padding: 0;
    border-bottom: 1px solid #001432;
}

.interview_main_title h3 {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.04em;
    text-align: left;
}

.interview_main_title img {
    width: 163px;
}

.interview_main_left p {
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    text-align: left;
    color: #111;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.interview_main_right {
    /* width: 480px; */
    width: 40%;
}

.interview_main_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview_text_link {
    width: 90%;
    text-align: end;
    margin-top: auto;
    margin-bottom: 15px;
    padding: 0;
}

.interview_text_link a {
    font-weight: 500;
    font-size: 14px;
    line-height: 23.4px;
    text-align: center;
    color: #00b4ff;
    text-decoration: none;
    border-bottom: 1px solid #00b4ff;
}

.interview_text_link a:visited {
    color: #00b4ff;
}

.interview_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.interview_tile {
    display: flex;
    flex-direction: column;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 14px #dbdbdb;
}

.interview_top img {
    display: block;
    max-width: 384px;
    max-height: 233px;
    object-fit: contain;
}

.interview_tile_logo {
    height: auto;
    text-align: center;
    margin: 10px 0 0 0;
}

.interview_tile_logo img {
    max-width: 180px;
}

.interview_tile_name {
    display: flex;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    min-height: 30px;
}

.interview_bottom {
    display: flex;
    flex: 1;
    width: 90%;
    margin: 0 auto;
}

.interview_tile_name p {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: #111;
    margin: 10px 0 0 0;
    padding: 0;
}

.interview_bottom p {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    color: #111;
    margin: 20px 0 0 0;
    padding: 0;
}

.sp_interview_grid {
    display: none;
}

.interview-btn {
    display: inline-block;
    margin: 56px auto;
    position: relative;
    z-index: 0;
}

.interview-btn a {
    color: #fff;
    text-decoration: none;
}

.interview-btn a:visited {
    color: #fff;
}

.interview-cta {
    display: block;
    width: 394px;
    height: 58px;
    line-height: 55px;
    border-radius: 29px;
    background: linear-gradient(to left, #0586D7, #33B1FF);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: 0px solid #0586d7;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.interview-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* ホバー時の色 */
    z-index: -1;
    /* テキストの背面に配置 */
    opacity: 0;
    /* 通常時は透明 */
    transition: opacity 0.7s ease;
    /* ここでアニメーションさせる */
}

.interview-cta:hover {
    /* background: #fff; */
    border: 1px solid #0586d7;
    color: #0586d7;
}

.interview-cta:hover::before {
    opacity: 1;
    /* ホバー時に白い背景を浮き上がらせる */
}

.interview-btn-right {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    width: 10px;
    height: 10px;
    border: 0.15em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    top: -1px;
    left: 60px;
    position: relative;
}

.interview-btn:hover .interview-btn-right {
    color: #0586d7;
}

@media screen and (max-width: 768px) {
    .interview {
        width: 100%;
        max-width: 90%;
        height: auto;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .interview_hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .interview_hero-left {
        width: 100%;
    }

    .interview_hero-right {
        width: 100%;
    }

    .interview_hero-left h2 {
        font-weight: 500;
        font-size: 32px;
        line-height: 32px;
        text-align: left;
        color: #001432;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .interview_hero_mini {
        font-family: Roboto;
        font-weight: 500;
        font-size: 12px;
        line-height: 23.4px;
        text-align: left;
        color: #00b4ff;
    }

    .interview_hero-right p {
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 15.6px;
        text-align: left;
        color: #001432;
        padding: 0;
        border-left: inherit;
    }

    .interview_main,
    .interview_grid {
        display: none;
    }

    .sp_interview_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
        width: 100%;
        margin: 0 auto;
    }

    .interview_tile {
        display: flex;
        flex-direction: column;
        height: auto;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        background: #fff;
        box-shadow: 0px 0px 14px #dbdbdb;
    }

    .interview_top {
        margin: 0;
        padding: 0;
        width: 100%;
        aspect-ratio: 7 / 4;
    }

    .interview_top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .interview_tile_logo {
        height: 40px;
        text-align: center;
        margin: 10px 0 0 0;
    }

    .interview_tile_logo img {
        max-width: 107px;
    }

    .interview_tile_name,
    .interview_bottom {
        width: 90%;
        margin: 0 auto;
    }

    .interview_tile_name p {
        font-weight: 500;
        font-size: 10px;
        line-height: 15px;
        text-align: left;
        color: #111;
        margin: 0 0 10px 0;
        padding: 0;
    }

    .interview_bottom p {
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        font-weight: 300;
        font-size: 10px;
        line-height: 13px;
        text-align: left;
        color: #001432;
        margin: 0;
        padding: 0;
    }

    .interview_text_link {
        width: 90%;
        text-align: end;
        margin: 10px auto;
        padding: 0;
    }

    .interview_text_link a {
        font-weight: 500;
        font-size: 10px;
        line-height: 15px;
        text-align: center;
        color: #00b4ff;
        text-decoration: none;
        border-bottom: 1px solid #00b4ff;
    }

    .interview_text_link a:visited {
        color: #00b4ff;
    }

    .interview-btn {
        display: inline-block;
        margin: 26px auto 0;
    }

    .interview-btn a {
        color: #fff;
        text-decoration: none;
    }

    .interview-btn a:visited {
        color: #fff;
    }

    .interview-cta {
        display: block;
        width: 240px;
        height: 40px;
        line-height: 36px;
        border-radius: 20px;
        background: linear-gradient(to left, #0586D7, #33B1FF);
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        border: 1px solid #0586d7;
        transition: all 0.3s ease;
        position: relative;
    }

    .interview-btn:hover .interview-cta {
        background: #fff;
        border: 1px solid #0586d7;
        color: #0586d7;
    }

    .interview-btn-right {
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        width: 8px;
        height: 8px;
        border: 0.15em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        box-sizing: border-box;
        transform: translateX(-25%) rotate(45deg);
        top: -2px;
        left: 12px;
        position: relative;
    }

    .interview-btn:hover .interview-btn-right {
        color: #0586d7;
    }
}

.layout_195daa {
    display: flex;
    justify-content: center;
    border-radius: 60px;
    background: #195daa;
    margin: -2.5em 0 0 0;
    padding: 0 0 50px 0;
}

.know_how {
    width: 92%;
    max-width: 1200px;
    height: 2200px;
}

.know_how_hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 100px 0;
    padding: 100px 0 0;
}

.know_how_hero-left {
    width: 40%;
}

.know_how_hero-right {
    width: 60%;
}

.know_how_hero-left h2 {
    font-weight: 500;
    font-size: clamp(20px, 4vw, 60px);
    text-align: left;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.know_how_hero-left h2 span {
    display: block;
    margin-bottom: 12px;
}

.know_how_hero_mini {
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 23.4px;
    text-align: left;
    color: #00b4ff;
}

.know_how_hero-right p {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 27px;
    text-align: left;
    margin: 0;
    padding: 25px 0 25px 40px;
    border-left: 1px solid #fff;
    color: #fff;
}

.know_how h3 {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 48px;
    line-height: 52px;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
}

.know_how_text_link {
    width: 90%;
    text-align: end;
    padding: 0;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.know_how_text_link a {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 14px;
    line-height: 23.4px;
    text-align: center;
    color: #00b4ff;
    text-decoration: none;
    border-bottom: 1px solid #00b4ff;
}

.know_how_text_link a:visited {
    color: #00b4ff;
}

.know_how_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.know_how_tile {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding-bottom: 50px;
}

.know_how_thum {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    aspect-ratio: 10 / 5;
    overflow: hidden;
    margin-bottom: 8px;
}

.know_how_thum a {
    display: block;
    width: 100%;
    height: 100%;
}

.know_how_thum a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.know_how_thum img {
    width: 100%;
}

.know_how_text {
    display: flex;
    width: 90%;
    /* min-height: 105px; */
    margin: 0 auto;
    padding: 0;
}




.know_how_text p {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    color: #111;
    margin: 0;
    padding: 0;
}

.know_how_date {
    width: 90%;
    margin-top: auto;
    margin: 0 auto 12px;
}

.know_how_tag {
    width: 90%;
    min-height: 30px;
    margin: 0 auto;
    padding: 0;
}

.know_how_tag ul {
    display: flex;
    flex-direction: row;
    margin: 5px 0 0 0;
    padding: 0;
}

.know_how_tag ul li {
    margin: 5px;
    padding: 0;
    list-style-type: none;
    font-weight: 500;
    font-size: 10px;
    line-height: 18.2px;
    text-align: left;
    color: #00b4ff;
}

.know_how_tag ul li a {
    text-decoration: none;
}

.know_how_tag ul li a:hover {
    color: #00b4ff;
}

.know_how_tag a:link,
a:visited {
    color: #00b4ff;
}

.know_how_tag.tiger ul li {
    color: #fff;
    background-color: rgb(143, 143, 143);
    border-radius: 12px;
}

.know_how_tag.tiger ul li.rakuten {
    background-color: orange;
}

.know_how_tag.tiger ul li.ec {
    background-color: rgb(102, 202, 219);
}

.know_how_tag.tiger ul li.yahoo {
    background-color: rgb(189, 18, 18);
}

.know_how_tag.tiger ul li a {
    color: #fff;
    padding: 2px 6px;
}

.know_how_date p {
    font-family: Roboto;
    font-weight: 500;
    font-size: 12px;
    line-height: 19.6px;
    text-align: left;
    color: #cecece;
    margin: 0;
    padding: 0;
}

.know_how_line {
    width: 1200px;
    border-bottom: 1px solid #fff;
    margin: 0 0 50px 0;
    padding: 0;
}

.youtube_tile {
    display: flex;
    flex-direction: column;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.youtube_thum {
    display: block;
    max-width: 285px;
    max-height: 160px;
    object-fit: contain;
}

.youtube_thum img {
    width: 100%;
}

.youtube_text {
    width: 100%;
    margin: 0 auto;
}

.youtube_text p {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    color: #fff;
    margin: 10px 0 0 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .layout_195daa {
        border-radius: 40px;
        margin: -2em 0 0 0;
        padding: 50px 0 0 0;
    }

    .know_how {
        width: 100%;
        max-width: 90%;
        height: auto;
    }

    .know_how_hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 20px 0;
        padding: 0;
    }

    .know_how_hero-left {
        width: 100%;
    }

    .know_how_hero-right {
        width: 100%;
    }

    .know_how_hero-right .pc-only {
        display: none;
    }

    .know_how_hero-left h2 {
        font-weight: 500;
        font-size: 32px;
        line-height: 32px;
        text-align: left;
        color: #fff;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .know_how_hero_mini {
        font-family: Roboto;
        font-weight: 500;
        font-size: 12px;
        line-height: 1;
        text-align: left;
        color: #00b4ff;
        margin-bottom: 8px;
    }

    .know_how_hero-right p {
        font-weight: 300;
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 15.6px;
        text-align: left;
        color: #fff;
        margin: 0;
        padding: 0;
        border-left: inherit;
    }

    .know_how h3 {
        font-weight: 500;
        font-size: 20px;
        line-height: 52px;
        text-align: left;
        color: #fff;
        margin: 0;
        padding: 0;
    }

    .know_how_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
        margin-top: 12px;
    }

    .know_how_tile {
        display: flex;
        flex-direction: column;
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        background: #fff;
        padding-bottom: 0px;
        padding-bottom: 44px;
    }

    .know_how_text_link {
        bottom: 0;
        right: 10px;
    }

    .know_how_thum {
        display: flex;
        align-items: end;
        justify-content: center;
        aspect-ratio: 10 / 5;
    }

    .know_how_thum img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .know_how_text {
        display: flex;
        /* min-height: 72px; */
    }

    .know_how_text.tiger {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        /* heightを指定している場合は削除するか、line-height × 3 の高さにする */
    }

    .know_how_text p {
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        font-weight: 300;
        font-size: 10px;
        line-height: 13px;
        text-align: left;
        color: #001432;
        margin: 10px 0 0 0;
        padding: 0;
    }

    .know_how_text.tiger p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        /* heightを指定している場合は削除するか、line-height × 3 の高さにする */
    }

    .know_how_tag {
        min-height: 24px;
    }

    .know_how_tag ul {
        display: flex;
        flex-direction: row;
        margin: 8px 0 0 0;
        padding: 0;
    }

    .know_how_tag ul li {
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-weight: 500;
        font-size: 10px;
        line-height: 18.2px;
        text-align: left;
        color: #00b4ff;
    }

    /* 
.know_how_tag ul li:last-child {
    display: none;
}
*/
    .know_how_date p {
        font-family: Roboto;
        font-weight: 500;
        font-size: 10px;
        line-height: 19.6px;
        text-align: left;
        color: #cecece;
        margin: 0;
        padding: 0;
    }

    .know_how_text_link {
        width: 90%;
        text-align: end;
        margin-top: auto;
        padding-bottom: 10px;
    }

    .know_how_text_link a {
        font-weight: 500;
        font-size: 10px;
        line-height: 23.4px;
        text-align: center;
        color: #00b4ff;
        text-decoration: none;
        border-bottom: 1px solid #00b4ff;
    }

    .know_how_line {
        width: 100%;
        border-bottom: 1px solid #fff;
        margin: 0 0 25px 0;
        padding: 0;
    }

    .youtube_tile {
        display: flex;
        flex-direction: column;
        height: auto;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
    }

    .youtube_thum {
        display: block;
        max-width: 100%;
        max-height: inherit;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .youtube_text p {
        font-weight: 300;
        font-size: 10px;
        line-height: 13px;
        text-align: left;
        color: #fff;
        margin: 0;
        padding: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

.layout_bg00.news-container {
    background-image: none;
}

.renewal_news {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

.renewal_news-text span {
    color: #00b4ff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    line-height: 1;
    margin-bottom: 8px;
}

.renewal_news-text h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 84px;
    text-align: left;
    margin: 0 0 50px 0;
    padding: 0;
    line-height: 1;
}

.renewal_news-list-item {
    display: flex;
    border-top: 1px solid #cecece;
    padding: 26px 40px;
    line-height: 1;
    /* gap: 40px; */
}

.renewal_news-list-item:hover {
    opacity: .7;
}

.renewal_news-list .renewal_news-list-item:last-child {
    border-bottom: 1px solid #cecece;
}

.renewal_news-list-item-date {
    width: 14%;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.renewal_news-list-item-title {
    width: 86%;
    position: relative;
}

.renewal_news-list-item-title::after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    background-image: url('../img/re/btn-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
}


.renewal_news-list-item-title a {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
    font-weight: 300;
    color: #001432;
}

@media screen and (max-width: 768px) {

    .renewal_news {
        padding: 20px 0;
    }

    .renewal_news-text span {
        font-size: 12px;
    }

    .renewal_news-text h2 {
        font-size: 32px;
    }

    .renewal_news-list-item {
        flex-direction: column;
        padding: 22px 8px;
    }

    .renewal_news-list-item-date,
    .renewal_news-list-item-title {
        width: 100%;
        margin-bottom: 6px;
    }

    .renewal_news-list-item-title::before {
        right: 4px;
    }

    .renewal_news-list-item-title::after {
        right: 0;
    }

    .renewal_news-list-item-title a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        /* 3行で省略 */
        white-space: normal;
        /* PC用の1行固定を解除して折り返すようにする */
        overflow: hidden;
        width: 90%;
        /* 必要に応じて幅を調整 */
        font-size: 14px;
        line-height: 1.5;
    }

    .fo_overview_tile {
        aspect-ratio: 5 /3;
    }

    .fo_overview {
        height: auto;
    }

    .fo_tile_bottom {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        justify-content: space-between;
    }

    .fo_overview_tile h3 {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
    }


    .fo_tile_bottom_r {
        width: 14%;
        aspect-ratio: 1/1;
    }

    .fo_tile_bottom_r img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fo_tile_bottom_l {
        padding-right: 10px;
        width: 86%;
    }

    .fo_tile_bottom_l .pc-only {
        display: none;
    }

    .fo_bottom_sp a:link,
    .fo_bottom_sp a:visited {
        color: #fff;
    }
}

.archive-news .renewal_news-list-item:hover {
    background-color: #fff;
}

.archive-news .news-pagination {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.archive-news .news-pagination ul {
    display: flex;
    gap: 20px;
}

.archive-news .news-pagination ul li {
    line-height: 1;
    color: #00b4ff;
}

.archive-news .news-pagination ul li .page-numbers.current {
    opacity: .8;
    color: #a1a1a1;
}

.archive-news .news-pagination ul li .page-numbers {}

.single-news-renewal {
    padding: 100px 0;
}

.single-news-renewal-date {
    font-size: 18px;
    margin-bottom: 20px;
}

h2.single-news-renewal-title {
    font-size: 32px;
    font-weight: normal;
    line-height: 1.3;
    border-bottom: 1px solid #cecece;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.single-news-renewal-body {
    margin-bottom: 120px;
}

.single-news-renewal-body h2,
.single-news-renewal-body h3,
.single-news-renewal-body h4 {
    margin-bottom: 12px;
}

.single-news-renewal-body p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 12px;
}

.single-news-renewal-body p b,
.single-news-renewal-body p strong {
    font-weight: 600;
}

.single-news-renewal-body ul,
.single-news-renewal-body ol {
    padding-left: 22px;
}

.single-news-renewal-body ul {
    list-style: disc;
}

.single-news-renewal-body ol {
    list-style: decimal;
}

@media screen and (max-width: 768px) {
    .single-news-renewal-date {
        font-size: 15px;
        margin-bottom: 20px;
    }

    h2.single-news-renewal-title {
        font-size: 24px;
        font-weight: normal;
        line-height: 1.3;
        border-bottom: 1px solid #cecece;
        padding-bottom: 20px;
        margin-bottom: 50px;
    }

    .single-news-renewal-body {
        margin-bottom: 60px;
    }

    .single-news-renewal {
        padding-bottom: 60px;
    }

    .layout_bg00.news-container.archive-news,
    .layout_bg00.news-container.single-news {
        padding-top: 100px;
    }

}

/* 
@media screen and (max-width: 480px) {
    .fv_2025_sp h2 {
        top: 11%;
        font-size: clamp(16px, 8vw, 28px);
    }

    .fv_2025_sp p {
        top: 15%;
        font-size: clamp(12px, 4vw, 16px);
    }

    .fv_emblem_sp {
        top: 27%;
    }

    .fv_emblem_sp img {
        width: 95%;
        margin: 0;
        padding: 0;
    }

    .fv_btn_sp {
        top: 65%;
    }

    .splide-sp {
        top: 90%;
    }
} 
    */