@charset "utf-8";

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: YuGothic, ‘Yu Gothic’, ‘Roboto’, ‘Hiragino Kaku Gothic ProN’,
        ‘ヒラギノ角ゴ ProN W3’, ‘メイリオ’, Meiryo, ‘ＭＳ Ｐゴシック’,
        ‘MS PGothic’, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    color: #333333;
}

/* -----------font-----------*/
/* Shippori Mincho / SemiBold */
.shippori-mincho-semibold {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
}
/* Cardo/regular */
.cardo-regular {
    font-family: "Cardo", serif;
    font-weight: 400;
    font-style: normal;
}
/* Cardo/bold */
.cardo-bold {
    font-family: "Cardo", serif;
    font-weight: 700;
    font-style: normal;
}
/* Roboto/regular・bold */
.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* -----------icomoon-----------*/
@font-face {
    font-family: "icomoon";
    src: url("../fonts/icomoon.eot?thhrnp");
    src: url("../fonts/icomoon.eot?thhrnp#iefix") format("embedded-opentype"),
        url("../fonts/icomoon.ttf?thhrnp") format("truetype"),
        url("../fonts/icomoon.woff?thhrnp") format("woff"),
        url("../fonts/icomoon.svg?thhrnp#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: "icomoon" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    width: 100%;
    height: auto;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

/* -----------共通-----------*/
.arrow_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
}
.arrow_btn::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.arrow_btn .arrow {
    width: 14px;
    transition: all 0.3s ease;
}

@media (any-hover: hover) {
    .arrow_btn:hover::after {
        width: 100%;
    }
    .arrow_btn:hover .arrow {
        transform: translateX(3px);
    }
}

.sec_title_en {
    font-size: 11px;
    font-weight: bold;
    color: #5c9dd3;
    line-height: 44px;
    letter-spacing: 0.25em;
    position: relative;
    z-index: 1;
}

.sec_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.target {
    opacity: 0;
    transition: all 1.5s ease;
}

.target.show {
    opacity: 1;
}

.lower_mv {
    padding: 100px 20px 0px;
}

.lower_mv_en {
    font-size: 28px;
    color: #08479d;
    letter-spacing: 0.1em;
}

.lower_mv_ja {
    font-size: 12px;
    font-weight: bold;
    color: #08479d;
    letter-spacing: 0.2em;
    padding: 0 0 0 50px;
    position: relative;
}
.lower_mv_ja::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 26px;
    height: 1px;
    background: #08479d;
}

.lower_sec_title {
    font-size: 18px;
    letter-spacing: 0.12em;
    border-left: 6px solid #000a33;
    padding: 0 0 0 12px;
    margin: 0 0 30px;
}

/* -----------SP header-----------*/
header {
    width: 100%;
    position: fixed;
    padding: 16px 0 16px 0px;
    box-sizing: border-box;
    background: #000a33;
    z-index: 100;
    transition: background-color 0.3s ease;
}

header.transparent {
    background: transparent;
}

.header_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_logo {
    width: 15rem;
}

.header_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: #000a33;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

@media screen and (min-width: 960px) {
    .header_nav {
        background: transparent;
    }
}

.header_nav.active {
    transform: translateX(0);
}

.header_list {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    margin: 120px auto;
}

.header_list_item a {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    line-height: 24px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.header_list_item a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

@media (any-hover: hover) {
    .header_list_item:not(.emergency_btn) a:hover::after {
        width: 100%;
    }
}

.emergency_btn a {
    width: 200px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #707070;
    border: 1px solid #707070;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 65px;
    transition: all 0.3s ease;
}

.emergency_btn_arrow {
    width: 14px;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .emergency_btn a:hover {
        background: #000a33;
    }
    .emergency_btn a:hover .emergency_btn_arrow {
        transform: translateX(5px);
    }
}

.header_hamburger {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    position: absolute;
    right: 20px;
    cursor: pointer;
}
.header_hamburger.active {
    gap: 0px;
}

.header_hamburger_line {
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}
.header_hamburger.active .header_hamburger_line {
    transform: translateY(1px) rotate(-45deg);
}
.header_hamburger_line:nth-of-type(2) {
    width: 23px;
}
.header_hamburger.active .header_hamburger_line:nth-of-type(2) {
    width: 30px;
    transform: translateY(-1px) rotate(45deg);
}
.header_hamburger_line:nth-of-type(3) {
    width: 15px;
}
.header_hamburger.active .header_hamburger_line:nth-of-type(3) {
    display: none;
}

/* -----------footer-----------*/
footer {
    width: 100%;
    background: #000a33;
    padding: 20px 20px 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.footer_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer_top {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5c9dd3;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.24em;
    text-decoration: none;
    margin: 0 0 0 auto;
    position: relative;
    transition: all 0.3s ease;
}
.footer_top::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #5c9dd3;
    transition: width 0.3s ease;
}

.footer_top_arrow {
    width: 13px;
    transition: all 0.3s ease;
}

@media (any-hover: hover) {
    .footer_top:hover::after {
        width: 100%;
    }
    .footer_top:hover .footer_top_arrow {
        transform: translateY(-3px);
    }
}

.footer_emergency {
    width: 200px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #707070;
    border: 1px solid #707070;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 15px auto 30px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.footer_emergency_arrow {
    width: 14px;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .footer_emergency:hover {
        background: #000a33;
    }
    .footer_emergency:hover .footer_emergency_arrow {
        transform: translateX(5px);
    }
}

.footer_logo {
    display: block;
    width: 185px;
    margin: 0 auto;
}

.footer_company_info {
    color: #fff;
}

.footer_company {
    font-size: 15px;
    line-height: 2.4;
    text-align: center;
}

.footer_address {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.footer_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 10px;
    row-gap: 0;
    padding: 0 0 10px 0;
    margin: 20px 0 0 0;
    border-bottom: 1px solid #fff;
}

.footer_privacy {
    width: 100%;
}

.footer_list a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
    padding: 0 4px 0 0;
}

.footer_privacy a {
    color: #5c9dd3;
    font-size: 14px;
    letter-spacing: 0.25em;
    pointer-events: none;
}

footer small {
    display: block;
    color: #707070;
    font-size: 10px;
    text-align: center;
    margin: 20px auto 0;
}

/* -----------top-----------*/
/* ローディング画面全体 */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000a33;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ロゴ画像コンテナ */
.loading_logo {
    position: relative;
    width: 200px;
    height: 150px;
}

/* ロゴ画像 */
.loading_logo_icon {
    width: 70%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    animation: rotate 3s 2s ease-in-out infinite;
}
.loading_logo_text {
    width: 100%;
    height: 60px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 上から塗りつぶすカバー */
.loading_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: #000a33; /* 塗りつぶし色（任意で変更） */
    z-index: 2;
    animation: uncover 3s ease-in-out forwards;
}

/* 下に引いて消えていく */
@keyframes uncover {
    to {
        transform: translateY(100%);
    }
}

.top_bg {
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    background: var(--top-bg-after-background, rgba(0, 10, 51, 0));
}
.top_mv {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.top_mv_video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    z-index: -1;
}

.top_mv_title {
    font-size: 43px;
    color: #fff;
    position: absolute;
    bottom: 130px;
    left: 20px;
}
.top_mv_title.target {
    opacity: 0;
    transition: all 1.5s 3.6s ease;
}
.top_mv_title.show {
    opacity: 1;
}


.fixed_contact {
    position: fixed;
    bottom: 0;
    z-index: 10;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fixed_contact.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.top_company {
    /* background: url(../img/top_company_bg.webp) no-repeat center center / cover; */
    padding: 60px 20px 100px;
    /* background: rgba(0, 10, 51, 0.7); */
    /* position: relative; */
    z-index: 5;
    /* opacity: var(--top-bg-after-opacity, 0); */
}


.top_company_content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #fff;
}
.top_company_content.target {
    opacity: 0;
    transition: all 1.5s 0.3s ease;
}
.top_company_content.show {
    opacity: 1;
}

.top_company_content_title {
    font-size: 30px;
    letter-spacing: 0.14em;
    flex-shrink: 0;
}

.top_company_content_text {
    font-size: 13px;
    line-height: 24px;
}

.top_contact_btns {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin: 20px 0 0 auto;
}

.top_company_btns_btn {
    width: fit-content;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-decoration: none;
    gap: 50px;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.top_company_btns_btn::after {
    width: 100%;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

@media (any-hover: hover) {
    .arrow_btn:hover::after {
        transform: scaleX(0);
    }
}

.top_value {
    background: #000a33;
    padding: 35px 20px 90px;
    position: relative;
    overflow: hidden;
}

.top_value_title_en {
    font-size: 44px;
    line-height: 1.2;
    color: #888b90;
    position: relative;
    margin: 0 auto 40px 0;
    z-index: 1;
}

.top_value_logo {
    width: 100vw;
    object-fit: cover;
    position: absolute;
    top: 20px;
    left: 0;
    animation: maskFade 15s ease-in-out infinite;
}

/* 右からだんだん消えてまた戻る */
@keyframes maskFade {
    40% {
        clip-path: inset(0 0 0 0); /* 全部表示 */
    }
    50% {
        clip-path: inset(0 100% 0 0); /* 右100%カット＝完全に消える */
    }
    70% {
        clip-path: inset(0 100% 0 0); /* 右100%カット＝完全に消える */
    }
    80% {
        clip-path: inset(0 0 0 0); /* 元に戻る */
    }
}

.top_value_content {
    max-width: 560px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.top_value_content_message {
    width: fit-content;
}

.top_value_content_title {
    font-size: 20px;
    letter-spacing: 0.15em;
}
.top_value_content_title_upper {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.top_value_content_name {
    width: fit-content;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.2em;
    margin: 5px 0 20px auto;
}

.top_value_content_text {
    font-size: 13px;
    line-height: 24px;
}

.top_value_btns {
    width: fit-content;
    margin: 20px 0 0 auto;
    position: relative;
    z-index: 1;
}

.top_value_btns_btn {
    width: fit-content;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-decoration: none;
    gap: 50px;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.top_value_btns_btn::after {
    width: 100%;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

@media (any-hover: hover) {
    .top_value_btns_btn:hover::after {
        transform: scaleX(0);
    }
}

.top_effort {
    /* background: url(../img/top_effort_bg.webp) no-repeat center center / cover; */
    background: #A3A6AC;
    padding: 35px 20px 90px;
    position: relative;
}

.top_effort .sec_inner {
    position: relative;
    z-index: 1;
}

.top_effort_content_text {
    font-size: 13px;
    line-height: 2;
    margin: 0 0 10px 0;
    /* color: #fff; */
}

.top_effort_content_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top_effort_content_item_img {
    width: 100%;
    aspect-ratio: 375/250;
    object-fit: cover;
    flex-grow: 1;
    flex-shrink: 0;
    background: #DFE0E2;
}

.top_effort_content_item a {
    text-decoration: none;
}

.top_effort_content_item_title {
    font-size: 13px;
    line-height: 2;
    font-weight: 600;
    color: #333;
}

.top_effort_btns {
    width: fit-content;
    margin: 20px 0 0 auto;
    position: relative;
    z-index: 1;
}

.top_effort_btns_btn {
    width: fit-content;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-decoration: none;
    gap: 50px;
    color: #333;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.top_effort_btns_btn::after {
    width: 100%;
    background: #333;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.top_effort_btns_btn .arrow {
    filter: invert(1);
}

.top_insurance {
    background: #dfe0e2;
    padding: 0px 20px 60px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.top_insurance_flowing_text {
    font-size: 150px;
    line-height: 1.4;
    position: absolute;
    top: 0;
    left: 0;
}

/* アニメーション定義 */
@keyframes flowing-text {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.top_insurance_content_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 10px 0 0 0;
}

.top_insurance_content_item {
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

.top_insurance_content_item_title {
    font-size: 15px;
    line-height: 2;
    font-weight: bold;
    background: #888b90;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 2px 20px 1px;
}

.top_insurance_content_item_company {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 50px;
}

.top_insurance_content_item_company a {
    width: min(120px, calc((100% - 20px) / 2));
}

.top_insurance_content_item_company_img {
    object-fit: cover;
}

.top_insurance_flowing {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0 40px;
    margin: 0 calc(50% - 50vw);
}

.top_insurance_flowing_track {
    display: inline-block;
    font-size: 70px;
    color: #fff;
    padding: 0 50px 0 0;
    animation: flowing-text 15s linear infinite;
}

/* ------ company ------ */
.company_page {
    background: #dfe0e2;
}
.insurance_btn {
    width: 200px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #707070;
    border: 1px solid #707070;
    padding: 14px 20px;
    margin: 30px 0 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.insurance_btn_arrow {
    width: 14px;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .insurance_btn:hover {
        background: #000a33;
    }
    .insurance_btn:hover .insurance_btn_arrow {
        transform: translateX(5px);
    }
}

.company_profile {
    padding: 30px 20px 80px;
}

.company_profile_title {
    font-size: 35px;
    color: #000a33;
}

.company_profile_text {
    font-size: 18px;
    margin: 12px 0 24px;
}

.company_profile_content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
}

.company_profile_content_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company_item_message {
    font-size: 13px;
    color: #333;
    line-height: 1.7;
}

.company_item_info {
    font-size: 14px;
    align-self: flex-end;
}

.company_item_info_name {
    font-size: 19px;
    margin: 0 0 0 20px;
}

.company_profile_content_img {
    padding: 0 40px;
    box-sizing: border-box;
}

.company_info {
    padding: 40px 20px 100px;
    background: #fff;
}

.company_info_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.company_info_content_main {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
}

.company_info_content_item {
    width: 100%;
    border-bottom: 1px solid #707070;
}

.company_info_content_item_title {
    font-size: 15px;
    font-weight: bold;
    color: #888b90;
    margin: 0 0 5px;
}

.company_info_content_item_text {
    font-size: 15px;
    margin: 0 0 5px;
}

.company_info_content_item_text.second_text {
    margin: 10px 0 5px;
}

.company_info_content_item_insurance {
    border: 1px solid #878b91;
    margin: 0 0 5px;
}

.company_info_content_item_insurance_title {
    background: #888b90;
    color: #fff;
    padding: 0 18px;
}

.company_info_content_item_insurance_text {
    padding: 10px 18px;
}

.company_info_map {
    width: 100%;
    aspect-ratio: 1.8;
}

.company_info_iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.company_insurance {
    background: #dfe0e2;
    padding: 40px 20px 60px;
    overflow: hidden;
}

.company_insurance_content_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 10px 0 0 0;
}

.company_insurance_content_item {
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

.company_insurance_content_item_title {
    font-size: 15px;
    line-height: 2;
    font-weight: bold;
    background: #888b90;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 2px 20px 1px;
}

.company_insurance_content_item_company {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 50px;
}

.company_insurance_content_item_company a {
    width: min(120px, calc((100% - 20px) / 2));
}

.company_insurance_content_item_company_img {
    object-fit: cover;
}

.company_insurance_flowing {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0 40px;
    margin: 0 calc(50% - 50vw);
}

.company_insurance_flowing_track {
    display: inline-block;
    font-size: 70px;
    color: #fff;
    padding: 0 50px 0 0;
    animation: flowing-text 15s linear infinite;
}

.company_policy {
    padding: 40px 20px 60px;
    background: #fff;
}

.company_policy_desc {
    font-size: 15px;
    margin: 0 0 30px;
}

.company_policy_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company_policy_content_item_title {
    font-size: 18px;
    line-height: 1.7;
    border-bottom: 1px solid #707070;
    color: #888b90;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}

.company_policy_content_item_number {
    font-size: 36px;
}

.company_policy_content_item_text {
    font-size: 15px;
    margin: 0 0 5px;
}

.company_security {
    padding: 40px 20px 60px;
}

.company_security_desc {
    font-size: 15px;
}

/* ------ ourcompany ------ */
.ourcompany_mission {
    padding: 40px 20px 60px;
    position: relative;
}

.ourcompany_mission_sub {
    font-size: 16px;
    margin: 0 0 20px;
}

.ourcompany_mission_main {
    font-size: 20px;
}

.ourcompany_mission_img {
    position: relative;
    top: 20px;
    right: 0;
    width: 100%;
    height: 100%;
}

.ourcompany_mission_img img {
    height: 100%;
    object-fit: cover;
}

.ourcompany_vision {
    padding: 40px 20px 60px;
}

.ourcompany_vision_main {
    font-size: 18px;
    margin: 0 0 20px;
}

.ourcompany_vision_desc {
    font-size: 14px;
}

.ourcompany_value {
    padding: 40px 20px 60px;
    background: #dfe0e2;
}

.ourcompany_value_head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.ourcompany_value_head_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ourcompany_value_desc {
    font-size: 14px;
    margin: 0 0 20px;
}

.ourcompany_value_point {
    font-size: 14px;
    padding: 0 0 10px;
    display: flex;
}
.ourcompany_value_point::before {
    content: "・";
    display: inline-block;
}

.ourcompany_value_head_img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.ourcompany_value_content {
    background: #fff;
    padding: 30px;
    margin: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ourcompany_value_content_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #707070;
}
.ourcompany_value_content_item:last-child {
    border-bottom: none;
}

.ourcompany_value_item_inner {
    display: flex;
    flex-direction: column;
}

.ourcompany_value_item_title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ourcompany_value_item_title_en {
    font-size: 30px;
}

.ourcompany_value_item_title_ja {
    font-size: 16px;
    font-weight: bold;
}

.ourcompany_value_content_item_text {
    font-size: 14px;
    margin: 0 0 10px;
}

/* ------ csv ------ */
.csv_philosophy {
    padding: 40px 20px 60px;
}

.csv_philosophy_head {
    font-size: 25px;
    margin: 0 0 20px;
    color: #000a33;
}

.csv_philosophy_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.csv_philosophy_message {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.csv_philosophy_message_inner {
    width: fit-content;
}

.csv_philosophy_message_text {
    font-size: 22px;
    color: #000a33;
    letter-spacing: 0.08em;
}

.csv_philosophy_message_name {
    width: fit-content;
    margin: 4px 0 0 auto;
    font-size: 18px;
    font-weight: bold;
}

.csv_philosophy_message_desc {
    font-size: 15px;
}

.csv_family {
    display: block;
}

.csv_introduction {
    padding: 40px 20px 60px;
    background: #dfe0e2;
}

.csv_introduction_desc {
    font-size: 20px;
}

.csv_introduction_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 0 0;
}

.csv_introduction_content_item {
    background: #fff;
    padding: 20px;
}

.csv_introduction_title {
    font-size: 18px;
    font-weight: bold;
    color: #888b90;
    border-bottom: 1px solid #878b91;
    padding: 0 0 4px;
    margin: 0 0 10px;
}

.csv_introduction_text {
    font-size: 14px;
    margin: 0 0 6px;
}

.csv_introduction_btns_btn {
    width: fit-content;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-decoration: none;
    gap: 50px;
    color: #333;
    transition: all 0.3s ease;
    padding: 0 10px;
    margin: 20px 0 20px auto;
}

.csv_introduction_btns_btn::after {
    width: 100%;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.3s ease;
    background-color: #333;
}

.csv_introduction_btns_btn .arrow {
    filter: invert(1);
}

@media (any-hover: hover) {
    .arrow_btn:hover::after {
        transform: scaleX(0);
    }
}

/* ------ contact ------ */
.contact_page {
    background: #dfe0e2;
}

.contact_top {
    padding: 20px 20px 60px;
}

.contact_mv_text {
    font-size: 15px;
}

.contact_top_list {
    width: fit-content;
    font-size: 15px;
    background: #fff;
    border: 1px solid #707070;
    padding: 20px;
    margin: 20px 0 0 0;
}

.contact_top_list_item {
    font-size: 15px;
    font-weight: bold;
}

.contact_top_tel {
    display: block;
    font-size: 30px;
    color: #cc7600;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin: 20px 0 10px auto;
}

.contact_top_tel_text {
    font-size: 15px;
}

.contact_insurance {
    padding: 40px 20px 60px;
}

.contact_insurance_content_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 10px 0 0 0;
}

.contact_insurance_content_item {
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

.contact_insurance_content_item_title {
    font-size: 15px;
    line-height: 2;
    font-weight: bold;
    background: #888b90;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 2px 20px 1px;
}

.contact_insurance_content_item_company {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 50px;
}

.contact_insurance_content_item_title {
    font-size: 18px;
    font-weight: bold;
}

.contact_insurance_label {
    font-size: 15px;
    font-weight: bold;
    color: #888b90;
    border-bottom: 1px solid #707070;
}

.contact_insurance_content_item_wrap {
    background: #fff;
    padding: 18px 30px;
}

.contact_insurance_text {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 10px;
    line-height: 2;
}

.contact_insurance_text.tel_number {
    display: block;
    color: #cc7600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact_insurance_notice {
    font-size: 15px;
}

.contact_insurance_notice_link {
    color: #cc7600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ------ effort ------ */
.effort_list {
    padding: 40px 20px 90px;
}

.effort_grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.effort_title a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    line-height: 2;
}

.effort_thumbnail {
    width: 100%;
    aspect-ratio: 375/250;
    object-fit: cover;
}

.effort_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #DFE0E2;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 0;
}

.page-numbers {
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #1A1311;
}

.page-numbers.current {
    color: #707070;
    pointer-events: none;
}

.prev.page-numbers::after,
.next.page-numbers::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 2px;
}
.prev.page-numbers::after {
    border-top: 2px solid #1A1311;
    border-right: 2px solid #1A1311;
    transform: rotate(-135deg);
}
.next.page-numbers::after {
    border-top: 2px solid #1A1311;
    border-right: 2px solid #1A1311;
    transform: rotate(45deg);
}

/* ------ single ------ */
.single_page {
    padding: 100px 20px 90px;
}

.single_page .sec_inner {
    max-width: 600px;
}

.single_header {
    margin: 0 0 20px;
}

.single_title {
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 5px;
    border-bottom: 1px solid #707070;
}

.single_body {
    font-size: 15px;
}

.single_footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 0;
}

.back_link {
    text-decoration: none;
    color: #707070;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.single_navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.single_navigation a {
    text-decoration: none;
    color: #707070;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.nav_previous a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 2px 8px;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    transform: rotate(-135deg);
}

.nav_next a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 8px 2px ;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    transform: rotate(45deg);
}

.single_pagination {
    width: 100%;
}

.pagination_list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 0;
}

.pagination_list a {
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #1A1311;
}

.pagination_list .current {
    color: #707070;
    pointer-events: none;
}

.pagination_list .prev a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 2px 8px;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    transform: rotate(-135deg);
}

.pagination_list .next a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 8px 2px ;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    transform: rotate(45deg);
}

.single_body img {
    display: block;
    margin: 30px auto;
}

.single_body h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    padding: 6px 0 6px 6px;
    color: #fff;
    background: #000A33;
}

.single_body h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0;
    padding: 6px 0 6px 6px;
    border-left: 4px solid #000A33;
}

/* ------ privacypolicy ------ */
.privacypolicy_solicitation,
.privacypolicy_business,
.privacypolicy_personal {
    padding: 80px 20px 0px;
}
.privacypolicy_contact {
    padding: 80px 20px 60px;
}

.privacypolicy_btns {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 auto;
}

.privacypolicy_btn {
    width: 200px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #707070;
    border: 1px solid #707070;
    padding: 14px 20px;
    margin: 15px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

.privacypolicy_btn_arrow {
    width: 14px;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .privacypolicy_btn:hover {
        background: #000a33;
    }
    .privacypolicy_btn:hover .privacypolicy_btn_arrow {
        transform: translateX(5px);
    }
}

.privacypolicy_desc {
    font-size: 15px;
    margin: 0 0 20px;
}

.privacypolicy_label {
    font-size: 18px;
    font-weight: bold;
    color: #888b90;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #878B91;
    padding: 0 0 2px;
    margin: 0 0 6px;
}

.privacypolicy_text {
    font-size: 15px;
    line-height: 24px;
    margin: 0 0 20px;
}

.privacypolicy_list {
    border: 1px solid #878B8F;
    padding: 20px;
    margin: 0 0 30px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}

.privacypolicy_list_link {
    display: inline-block;
    color: #CC7600;
    text-decoration: none;
    margin: 0 0 4px;
}

.privacypolicy_contact_link {
    color: #333;
    text-decoration: none;
}

/* -----------iphon5/se-----------*/

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

/* -----------iphon6~-----------*/

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

/* -----------ipad-----------*/

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

    .pc {
        display: none;
    }

    /* -----------共通-----------*/

    /* -----------SP header-----------*/

    /* -----------footer-----------*/
    .footer_company_info {
        flex-shrink: 0;
    }

    .footer_company_content {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
    }

    .footer_list {
        width: fit-content;
        gap: 20px;
        row-gap: 12px;
    }

    /* -----------top-----------*/
    .top_mv_title {
        font-size: clamp(60px, 10vw, 96px);
        bottom: 10%;
        left: 10%;
    }

    .fixed_contact {
        display: none;
    }

    .top_company_content {
        flex-direction: row;
    }

    .top_company_content_text .sp {
        display: none;
    }

    .top_value {
        padding: 60px 40px 90px;
    }

    .top_value_title_en {
        font-size: 60px;
    }

    .top_effort_content_list {
        flex-direction: row;
    }

    .top_effort_content_item {
        width: calc((100% - 40px) / 3);
    }

    .top_insurance_content_list {
        flex-direction: row;
    }

    .top_insurance_content_item {
        width: calc((100% - 30px) / 2);
    }

    .top_insurance_content_item_company {
        padding: 20px;
    }

    /* ------ company ------ */

    .company_profile_title {
        font-size: 50px;
    }

    .company_profile_text {
        font-size: 34px;
    }

    .company_item_message {
        font-size: 15px;
    }

    .company_item_info {
        font-size: 16px;
    }

    .company_item_info_name {
        font-size: 22px;
    }

    .company_profile_content {
        flex-direction: row;
    }

    .company_profile_content_item {
        width: 70%;
    }

    .company_profile_content_img {
        width: 30%;
        padding: 0;
    }

    /* ------ ourcompany ------ */
    .ourcompany_mission_img {
        width: 50%;
        aspect-ratio: 1.7;
        max-height: 380px;
        position: absolute;
    }

    /* ------ csv ------ */
    .csv_philosophy_head {
        font-size: 34px;
    }

    .csv_philosophy_content {
        flex-direction: row;
        align-items: flex-start;
    }

    .csv_philosophy_content_img {
        width: 45%;
    }

    .csv_introduction_images {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .csv_introduction_content_item_img {
        width: calc((100% - 10px) / 2);
        object-fit: cover;
    }

    /* ------ contact ------ */
    .company_insurance_content_list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 20px;
    }

    .contact_insurance_content_item {
        width: calc((100% - 20px) / 2);
    }

    /* ------ effort ------ */
    .effort_grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
    }

    .effort_item {
        width: calc((100% - 50px) / 3);
    }
    
}

/* -----------PC-----------*/

@media screen and (min-width: 960px) {
    body {
        font-size: 15px;
    }

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    .company_info_map.sp {
        display: block;
    }

    /* -----------共通-----------*/
    .sec_title_en {
        font-size: 18px;
    }

    /* -----------PC header-----------*/

    /* -----------footer-----------*/
    .footer_emergency {
        width: 230px;
        font-size: 14px;
    }

    /* -----------top-----------*/
    .top_company_content_title {
        width: 50%;
        font-size: 50px;
    }

    .top_company_content_text {
        width: 50%;
        font-size: 15px;
        line-height: 26px;
        padding: 100px 0 0 0;
    }

    .top_contact_btns {
        gap: 20px;
        margin: 30px 0 0 auto;
    }

    .top_company_btns_btn {
        font-size: 14px;
    }

    .top_value_content_title {
        font-size: 37px;
    }

    .top_value_content_name {
        font-size: 28px;
        margin: 12px 0 20px auto;
    }

    .top_value_content_text {
        font-size: 15px;
    }

    .top_effort {
        padding: 60px 0 90px;
    }

    .top_insurance_content_item_company {
        padding: 40px 55px;
    }

    .top_insurance_content_item_title {
        font-size: 18px;
    }

    .top_insurance_flowing_track {
        font-size: 150px;
    }

    /* ------ company ------ */

    .company_profile_title {
        font-size: 50px;
    }

    .company_insurance_content_list {
        flex-direction: row;
    }

    .company_insurance_content_item {
        width: calc((100% - 40px) / 2);
    }

    /* ------ ourcompany ------ */

    .ourcompany_mission_sub {
        font-size: 25px;
    }

    .ourcompany_mission_main {
        font-size: 35px;
    }

    .ourcompany_vision_main {
        font-size: 24px;
    }

    .ourcompany_vision_desc {
        font-size: 15px;
        margin: 0 0 46px;
    }

    .ourcompany_value_head {
        flex-direction: row;
        gap: 50px;
    }

    .ourcompany_value_desc {
        font-size: 15px;
        margin: 0 0 20px;
    }

    .ourcompany_value_point {
        font-size: 15px;
        padding: 0 0 10px;
        display: flex;
    }

    .ourcompany_value_head_img {
        width: 40%;
        max-width: 500px;
        margin: -20px auto 0;
    }

    .ourcompany_value_content {
        padding: 60px;
        gap: 20px;
    }

    .ourcompany_value_content_item {
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 40px;
        padding: 0 0 20px;
    }

    .ourcompany_value_item_inner {
        gap: 10px;
    }

    .ourcompany_value_item_title_en {
        font-size: 44px;
    }

    .ourcompany_value_item_title_ja {
        font-size: 18px;
    }

    .ourcompany_value_content_item_img {
        width: 40%;
    }

    /* ------ csv ------ */
    .csv_philosophy {
        padding: 60px 20px 100px;
    }

    .csv_philosophy_head {
        margin: 0 0 40px;
        letter-spacing: 0.15em;
    }

    .csv_philosophy_content {
        gap: 50px;
    }

    .csv_philosophy_message_text {
        font-size: 25px;
    }

    /* ------ effort ------ */
    .effort_grid {
        gap: 50px;
    }

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

    /* ------ privacypolicy ------ */
    .privacypolicy_btns {
        flex-direction: row;
        gap: 20px;
    }
    .privacypolicy_list {
        padding: 40px 80px;
    }
}

@media screen and (min-width: 1025px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    .company_info_map.sp {
        display: none;
    }

    /* -----------共通-----------*/

    .lower_mv {
        padding: 120px 20px 0;
    }

    /* -----------PC header-----------*/
    header {
        padding: 16px 0 16px 40px;
    }

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

    .header_logo {
        width: 20rem;
    }

    .header_nav {
        position: relative;
        top: unset;
        left: unset;
        z-index: 1;
        width: fit-content;
        height: unset;
        transform: translateX(0);
    }

    .header_list {
        width: unset;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        margin: 0;
    }

    .header_hamburger {
        display: none;
    }

    /* -----------footer-----------*/
    .footer_list {
        justify-content: flex-end;
        line-height: 45px;
    }

    .footer_privacy {
        width: unset;
    }

    .footer_privacy a {
        margin: 0 60px 0 0;
        line-height: 30px;
    }

    /* -----------top-----------*/
    .top_effort_content_list {
        gap: 50px;
    }

    /* ------ company ------ */

    .company_info_content {
        flex-direction: row;
    }

    .company_info_content_main {
        gap: 14px;
    }

    .company_info_content_item {
        display: flex;
    }

    .company_info_content_item_title {
        width: 160px;
        flex-shrink: 0;
        margin: 0 0 14px;
    }

    .company_info_content_item_text {
        margin: 0 0 14px;
    }
    .company_info_content_item_text.second_text {
        margin: 0 0 14px 10px;
    }

    .company_info_map {
        width: 60%;
    }

    .csv_introduction_content_item {
        display: flex;
        flex-direction: row;
        gap: 30px;
        padding: 44px 30px;
    }

    .csv_introduction_content_item_main {
        width: 45%;
    }

    .csv_introduction_images {
        width: 50%;
    }

    .csv_introduction_title {
        font-size: 20px;
    }

    .csv_introduction_desc {
        font-size: 25px;
    }

    /* ------ contact ------ */
    .company_insurance_content_list {
        gap: 30px;
    }

    .contact_insurance_content_item {
        width: calc((100% - 60px) / 3);
        flex-grow: 1;
    }

    /* ------ single ------ */
    .single_page {
        padding: 140px 20px 90px;
    }

}
