/*
Theme Name: 株式会社NISHIKI
Author: Kunitani
Version: 2.13.0
Tested up to: 6.7
Requires at least: 6.0
Requires PHP: 8.0
Description: 住宅リフォームを行なっております。
Theme URI:
Author URI:
Text Domain: nishiki
*/


@font-face {
    font-family: "NotoSansJP-VariableFont";
    /*任意のフォントファミリー名でOK*/
    src: url("../font/NotoSansJP-VariableFont_wght.ttf") format("truetype");
    /*fontがあるパスを書いて、formatを指定*/
    font-display: swap;
    /*ダウンロード状況に応じてフォントの表示を変える
    (「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。)*/
}

@font-face {
    font-family: "NotoSansJP-Regular";
    /*任意のフォントファミリー名でOK*/
    src: url("../font/NotoSansJP-Regular.ttf") format("truetype");
    /*fontがあるパスを書いて、formatを指定*/
    font-display: swap;
    /*ダウンロード状況に応じてフォントの表示を変える
    (「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。)*/
}

@font-face {
    font-family: "NotoSansJP-Regular";
    /*任意のフォントファミリー名でOK*/
    src: url("../font/NotoSansJP-Regular.ttf") format("truetype");
    /*fontがあるパスを書いて、formatを指定*/
    font-display: swap;
    /*ダウンロード状況に応じてフォントの表示を変える
    (「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。)*/
}

@font-face {
    font-family: "NotoSerifJP-VariableFont";
    /*任意のフォントファミリー名でOK*/
    src: url("../font/serif/NotoSerifJP-VariableFont_wght.ttf") format("truetype");
    /*fontがあるパスを書いて、formatを指定*/
    font-display: swap;
    /*ダウンロード状況に応じてフォントの表示を変える
    (「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。)*/
}

@font-face {
    font-family: "NotoSerifJP-Medium";
    /*任意のフォントファミリー名でOK*/
    src: url("../font/serif/NotoSerifJP-Medium.ttf") format("truetype");
    /*fontがあるパスを書いて、formatを指定*/
    font-display: swap;
    /*ダウンロード状況に応じてフォントの表示を変える
    (「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。)*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "NotoSansJP-Regular", sans-serif;
    font-weight: normal;
}

body {
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

h1 {}

img {
    vertical-align: bottom;
}


/*======================================================

ヘッダー

======================================================*/

header {
    position: fixed;
    padding: 20px;
    width: 100%;
    z-index: 2;
    transition: color 0.4s ease-out;
}

/* スクロールしたらヘッダーメニューのフォントカラー変更 */
header.headerColorScroll {
    /*background-color: #444b4c;*/
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* 影をつけて浮いた感じに */
    transition: all 0.4s ease-out;
}

/* スクロール後はカラーロゴを表示 */
header.headerColorScroll .logo-white {
    opacity: 0;
}

header.headerColorScroll .logo-color {
    opacity: 1;
}

/*電話アイコン*/
header.headerColorScroll .icon-white {
    opacity: 0;
}

header.headerColorScroll .icon-color {
    opacity: 1;
}


/*ナビゲーション*/
header.headerColorScroll .nav02 li a {
    color: #333;
}


/* スクロール時のリンク色を変更 */
header.headerColorScroll .top-nav01 a {
    color: #333;
}

header.headerColorScroll .nav02 li a {
    color: #333;
}

.h_logo {
    margin-right: auto;
    position: relative;
}

.h_logo a {
    display: block;
    position: relative;
}

.h_logo img {
    max-width: 200px;
    width: 100%;
    display: block;
    transition: opacity 0.4s ease-out;
}

/* デフォルトは白いロゴを表示 */
.logo-white {
    opacity: 1;
}

.logo-color {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}


.top-nav01 {
    display: flex;
    justify-content: space-between;
}

.top-nav01 ul {
    display: flex;
    align-items: center;
}

.top-nav01 li {
    list-style: none;
    margin-right: 30px;
}

.top-nav01 a {
    color: #fff;
    text-decoration: none;
}

.top-tel a {
    font-size: 28px;
    position: relative;
}

.top-tel span {
    display: block;
    font-size: 12px !important;
    text-align: right;
    margin-right: 12px;
}

.top-line a {
    color: #fff !important;
    text-decoration: none;
    display: block;
    background-color: #1b5c5c;
    border: 1px solid #1b5c5c;
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
    transition: 0.3s;
}

.top-tel {
    margin-right: 30px;
    position: relative;
}

.top-line {
    margin-right: 10px;
}

.top-mail a {
    color: #fff !important;
    text-decoration: none;
    display: block;
    background-color: #f08c1e;
    border: 1px solid #f08c1e;
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
    transition: 0.3s;
}

.top-line a:hover {
    color: #fff;
    background-color: #2a7084;
    border: 1px solid #1b5c5c;
}

.top-mail a:hover {
    color: #fff;
    background-color: #f0bb1f;
    border: 1px solid #f08c1e;
}

.top-tel img {
    max-width: 30px;
    margin: 0 2px 5px;
    display: inline-block;
    transition: opacity 0.4s ease-out;
}

/* デフォルトは白いロゴを表示 */
.icon-white {
    opacity: 1;
}

.icon-color {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.top-line img {
    max-width: 25px;
}

.top-mail img {
    max-width: 25px;
}

.nav02 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.nav02 li {
    list-style: none;
}

.nav02 li a {
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
}


@media screen and (min-width:1200px) and (max-width:1430px) {
    .h_logo img {
        max-width: 170px;
        padding-right: 20px;
    }

    .top-nav01 li {
        margin-right: 10px;
    }

    .nav01 a {
        font-size: clamp(12px, 3vw, 14px);
    }

    .top-tel {
        margin-right: 10px;
    }

    .top-tel a {
        font-size: 20px;
    }

    .top-tel img {
        max-width: 25px;
    }

    .top-line a {
        padding: 10px 10px;
    }

    .top-mail a {
        padding: 10px 10px;
    }
}

@media screen and (max-width:767px) {
    .h_logo img {
        max-width: 120px;
    }

    .mobile-contact .top-tel a {
        font-size: 26px;
    }
}


@media screen and (max-width:560px) {
    .h_logo img {
        max-width: 120px;
    }

    .mobile-contact .top-tel a {
        font-size: 26px;
    }
}

/*======================================================

ハンバーガーメニュー

======================================================*/




/* PC表示用 */
.pc-only {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ハンバーガーメニューボタン */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #cf844d;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* スクロール時のハンバーガーメニューの色 */
header.headerColorScroll .hamburger span {
    background-color: #333;
}

/* ハンバーガーメニューが開いている時 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* モバイル用のナビゲーション（デフォルトは非表示） */
.mobile-nav01,
.mobile-contact {
    display: none;
}

.sp-only {
    margin-right: 20px;
}

/* PC対応 */
@media screen and (min-width: 1200px) {
    .h_logo_sp {
        display: none;
    }

    /* PC表示用を非表示 */
    .sp-only {
        display: none;
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 1199px) {

    /* PC表示用を非表示 */
    .pc-only {
        display: none;
    }

    /* ハンバーガーメニューボタンを表示 */
    .hamburger {
        display: flex;
        position: relative;
    }

    /* モバイル用のナビゲーションを表示 */
    .mobile-nav01,
    .mobile-contact {
        display: block;
    }

    /* ナビゲーションメニュー */

    .h_logo_sp img {
        max-width: 100px;
    }

    .h_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 60px 20px 20px;
    }

    .h_nav.active {
        right: 0;
    }

    /* モバイルナビゲーションのスタイル */
    .nav02 {
        flex-wrap: wrap;
    }

    .mobile-nav01 li,
    .nav02 li {
        list-style: none;
        width: 100%;
    }

    .mobile-nav01 li a,
    .nav02 li a {
        color: #333333;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
        display: block;
        text-decoration: none;
    }

    /* モバイル用連絡先 */
    .mobile-contact {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #ddd;
    }

    .mobile-contact .top-tel,
    .mobile-contact .top-line,
    .mobile-contact .top-mail {
        margin-bottom: 15px;
    }

    .mobile-contact .top-line {
        margin-right: 0;
    }

    .mobile-contact .top-tel {
        margin-right: 0;
    }

    .mobile-contact .top-tel a,
    .mobile-contact .top-line a,
    .mobile-contact .top-mail a {
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        border-radius: 5px;
    }

    .mobile-contact .top-tel a {
        display: block;
        text-decoration: none;
        background-color: #444b4c;
    }

    .mobile-contact img {
        width: 24px;
        height: 24px;
    }

    /* マスク（背景オーバーレイ） */
    .mask {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mask.active {
        display: block;
    }
}

/* スクロール防止 */
body.no-scroll {
    overflow: hidden;
}



@media screen and (min-width:1200px) {
    #sp-fixed-menu {
        display: none;
    }

    .fadein {
        background-color: #62bec9;
        position: fixed;
        top: 50%;
        right: 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
        z-index: 1000;
    }

    .scrollin {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    /*スマホ版のみ予約ボタン下部*/
    /*メニューをページ下部に固定*/
    #sp-fixed-menu {
        position: fixed;
        width: 100%;
        bottom: 0;
        font-size: 0;
        opacity: 1;
        z-index: 99;
        overflow: hidden;
    }

    #sp-fixed-menu a {
        text-decoration: none;
    }

    /*メニューを横並びにする*/
    #sp-fixed-menu ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #sp-fixed-menu li {
        justify-content: center;
        align-items: center;
        width: 50%;
        padding: 0;
        margin: 0;
        font-size: 14px;
        border-right: 1px solid #fff;
    }

    /*左側メニューを水色に*/
    #sp-fixed-menu li:first-child {
        background: #333;
    }

    #sp-fixed-menu li {
        background: #333;
    }

    /*左側メニューを黒色に*/
    #sp-fixed-menu li:last-child {
        /*background: #62bec9;*/
        border-right: 0 solid #000;
    }

    /*ボタンを調整*/
    #sp-fixed-menu li a {
        color: #fff;
        text-align: center;
        display: block;
        width: 100%;
        padding: 14px 20px;
    }

    .contact_sp {
        /*width: 25% !important;*/
        width: 33.33% !important;
    }

    .contact_sp a {
        font-size: 12px !important;
        padding: 14px 2px !important;
    }

    .tel_sp {
        /*width: 25% !important;*/
        width: 33.33% !important;
    }

    .tel_sp a {
        font-size: 12px !important;
        padding: 14px 6px !important;
    }
}

@media screen and (max-width:359px) {
    .sp-only {
        margin-right: 20px;
    }
}

/*======================================================

トップイメージ画像

======================================================*/

/*front-page.php*/


.top_images {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.top_left {
    width: 50%;
    height: 100vh;
    background: url(assets/images/top01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.top_right {
    width: 50%;
    height: 100vh;
    background: url(assets/images/top02.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.top_bk {
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    transition: 0.3s;
}

.top_bk:hover {
    background-color: rgba(0, 0, 0, 0.0);
}

.top_left h2 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: clamp(32px, 3vw, 48px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
}

.top_left span {
    display: block;
    font-size: 20px;
}


.top_right h2 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: clamp(32px, 3vw, 48px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
}

.top_right span {
    display: block;
    font-size: 20px;
}


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

    .top_left {
        width: 100%;
        height: 50vh;
    }

    .top_bk {
        height: 50vh;
    }

    .top_right {
        width: 100%;
        height: 50vh;
    }
}


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

    .top_left {
        width: 100%;
        height: 50vh;
    }

    .top_bk {
        height: 50vh;
    }

    .top_right {
        width: 100%;
        height: 50vh;
    }
}

/*======================================================

パンくずリスト

======================================================*/

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 12px;
    color: #333;
    font-weight: bold;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "»";
    margin: 0 .6em;
    color: #777;
}

.breadcrumb li a {
    text-decoration: none;
    color: #333;
}


/*======================================================

メインコンテンツ

======================================================*/

.main_bk01 {
    background-color: #f6f7f8;
}

.main_1500 {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 20px;
}

.main_1500_01 {
    padding: 100px 20px 250px;
}

.section_title img {
    max-width: 100px;
    margin-bottom: 30px;
}

.section_title_jp {
    display: flex;
    align-items: flex-end;
}

.section_title_jp h2 {
    font-size: clamp(22px, 3vw, 48px);
    color: #333333;
}

.section_title_jp p {
    margin-left: 50px;
}

.main_bk02 {
    background: url(assets/images/bk01.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 65%;
}

.section_txt_flex01 {
    display: flex;
}

.section_txt {
    width: 50%;
}

.section_txt h2 {
    font-size: clamp(22px, 3vw, 48px);
    margin-bottom: 50px;
    color: #333333;
}

.section_txt p {
    line-height: 3;
    color: #333333;
}

.section_right_img01 {
    width: 50%;
}

.message_right_img01 {
    text-align: right;
    margin-bottom: 20px;
}

.message_right_img01 img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
}

.message_right_img {
    display: flex;
    justify-content: space-between;
}

.message_right_img02 {
    margin-left: 50px;
}

.message_right_img02 img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.message_right_img03 {
    text-align: right;
    margin: 100px 20px 0 0;
}

.message_right_img03 img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

@media screen and (max-width:767px) {
    .main_bk02 {
        background-position: right bottom;
        background-size: 100%;
    }

    .section_txt_flex01 {
        flex-direction: column;
    }

    .section_txt {
        width: 100%;
    }

    .section_right_img01 {
        width: 100%;
    }

    .message_right_img01 {
        margin: 20px 0;
    }

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

    .message_right_img02 {
        margin: 0 20px 0 0;
    }

    .message_right_img03 {
        margin: 100px 0 0 0;
    }
}

@media screen and (max-width:560px) {
    .main_bk02 {
        background-position: right bottom;
        background-size: 100%;
    }

    .section_txt_flex01 {
        flex-direction: column;
    }

    .section_txt {
        width: 100%;
    }

    .section_right_img01 {
        width: 100%;
    }

    .message_right_img01 {
        margin: 20px 0;
    }

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

    .message_right_img02 {
        margin: 0 20px 0 0;
    }

    .message_right_img03 {
        margin: 100px 0 0 0;
    }
}

/*======================================================

サービス

======================================================*/

.service_bk {
    display: flex;
    margin-top: -100px;
}

.service_bk_i {
    flex: 1;
    margin-right: calc(50% - 50vw);
}

.service_bk img {
    width: 100%;
    border-radius: 100px 0 0 0;
}

.service_bk_w {
    margin-top: -100px;
    padding-top: 100px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    width: 70%;
    height: 100px;
    border-radius: 0 30px 0 0;
}

.service_main_1500_b {
    border-radius: 0 0 50px 0;
    position: relative;
    z-index: 0;
    background-color: #fff;
}

.service_title {
    margin-top: -250px;
    padding-top: 150px;
    position: relative;
    z-index: 1;
}

.service_title_jp {
    align-items: center;
    line-height: 2;
}

.service_title_jp p {
    color: #333333;
}


@media screen and (min-width:1501px) {
    .service_bk {
        margin-left: calc((100vw - 1500px) * 0.04);
        margin-right: 0;
        margin-top: -150px;
        overflow: hidden;
    }

    .service_bk_m {
        width: calc((100vw - 1500px) * 0.5);
        flex-shrink: 0;
        max-width: calc((2500px - 1500px) * 0.5);
    }

    .service_bk_i {
        width: 1500px;
        flex-shrink: 0;
    }
}

@media screen and (max-width:1500px) {
    .service_bk_m {
        width: 20px;
    }
}


@media screen and (max-width:767px) {
    .service_bk img {
        height: 25vh;
        border-radius: 60px 0 0 0;
    }

    .service_bk_w {
        margin-top: -100px;
        height: 100px;
    }

    .service_title {
        margin-top: -280px;
    }

    .service_title_jp {
        flex-wrap: wrap;
    }

    .service_title_jp h2 {
        width: 100%;
    }

    .service_title_jp p {
        margin-left: 0;
    }
}


@media screen and (max-width:560px) {
    .service_bk img {
        height: 25vh;
        border-radius: 60px 0 0 0;
    }

    .service_bk_w {
        margin-top: -100px;
        height: 100px;
    }

    .service_title {
        margin-top: -280px;
    }

    .service_title_jp {
        flex-wrap: wrap;
    }

    .service_title_jp h2 {
        width: 100%;
    }

    .service_title_jp p {
        margin-left: 0;
    }
}



/*画像ボックス*/

.service_container {
    margin-top: 50px;
}

.service_box_area01 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, calc(50% - 10px));
    margin-bottom: 20px;
}

.service_box01 {
    position: relative;
}

.service_box01::before {
    content: "";
    width: 100%;
    height: 50%;
    display: block;
    background: linear-gradient(rgba(0, 0, 0, 0) 0, #274848 99%);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.service_box01 a {
    display: block;
    position: relative;
}

.service_box01 img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    display: block;
}






.service_box_area02 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, calc(33% - 9px));
    margin-bottom: 20px;
}

.service_box02 {
    position: relative;
}

.service_box02::before {
    content: "";
    width: 100%;
    height: 50%;
    display: block;
    background: linear-gradient(rgba(0, 0, 0, 0) 0, #274848 99%);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.service_box02 a {
    display: block;
    position: relative;
}


.service_box02 img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    display: block;
}





.service_tit_box {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service_tit {
    color: #fff;
    font-weight: bold;
    font-size: clamp(15px, 3vw, 18px);
}

.service_btn {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-image: linear-gradient(180deg, #2a6f7a, #1b5c5c);
    transition: transform .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.service_btn p {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin: 0;
}

.service_btn::before {
    position: absolute;
    right: 16.5px;
    top: 24.5px;
    display: block;
    content: "";
    width: 15px;
    height: 1.5px;
    background: #fff;
}

.service_btn::after {
    position: absolute;
    right: 17px;
    top: 20.6px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #fff;
    border-top: 1.5px solid #fff;
    transform: rotate(45deg);
}







.service_box01:hover .service_btn {
    transform: translateX(8px);
}

.service_box01:active .service_btn {
    transform: scale(0.8);
}


.service_box02:hover .service_btn {
    transform: translateX(8px);
}

.service_box02:active .service_btn {
    transform: scale(0.8);
}

@media screen and (max-width:767px) {
    .service_btn {
        width: 30px;
        height: 30px;
    }

    .service_btn::after {
        top: 10.6px;
        right: 8px;
    }

    .service_btn::before {
        top: 14.5px;
        right: 7.5px;
    }

    .service_box_area01 {
        grid-template-columns: auto;
    }

    .service_box_area02 {
        grid-template-columns: repeat(2, calc(50% - 10px))
    }
}

@media screen and (max-width:560px) {
    .service_btn {
        width: 30px;
        height: 30px;
    }

    .service_btn::after {
        top: 10.6px;
        right: 8px;
    }

    .service_btn::before {
        top: 14.5px;
        right: 7.5px;
    }

    .service_box_area01 {
        grid-template-columns: auto;
    }

    .service_box_area02 {
        grid-template-columns: repeat(2, calc(50% - 10px))
    }
}


/*======================================================

実績・お客様の声

======================================================*/

.main_bk03 {
    background-color: #444b4c;
    margin-top: -50px;
    border-radius: 0 0 50px 0;
}

.main_bk04 {
    background: url(assets/images/bk02.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 25%;
    padding-top: 50px;
    overflow: hidden;
}

.main_bk04::before {
    content: "";
    display: block;
    background: url(assets/images/curve_bk.png);
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: cover;
}

.voices_main_1500 {
    padding-top: 30px;
}

.voices_title_jp h2 {
    color: #fff;
}

.voices_flex {
    display: flex;
}

.voices_left {
    margin-top: 50px;
    width: 45%;
}

.voices_right {
    width: min(100%, 1000px);
    position: relative;
}

.voices_left .voices_button {
    cursor: pointer;
    font-weight: 700;
    font-family: Helvetica, "sans-serif";
    transition: all .2s;
    padding: 12px 20px;
    max-width: 200px;
    width: 100%;
    border-radius: 100px;
    background: #444b4c;
    border: 1px solid #fff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.voices_left .voices_button:hover {
    background: #1b5c5c;
}

.voices_left .voices_button > .btn_border_box {
    color: #fff;
    width: 34px;
    height: 34px;
    margin-left: 10px;
    transition: transform .3s ease-in-out;
    border: 1.5px solid #fff;
    background-color: #fff;
    display: block;
    border-radius: 50px;
    position: relative;
}

.btn_border_box::before {
    position: absolute;
    right: 9.5px;
    top: 15.5px;
    display: block;
    content: "";
    width: 15px;
    height: 1.5px;
    background: #1b5c5c;
}

.btn_border_box::after {
    position: absolute;
    right: 10px;
    top: 11.4px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #1b5c5c;
    border-top: 1.5px solid #1b5c5c;
    transform: rotate(45deg);
}




.voices_left .voices_button:hover .btn_border_box {
    transform: translateX(8px);
}

.voices_left .voices_button:active {
    /*transform: scale(0.8);*/
}

/*slider.cssに一部設定済み*/

/*スライドショー文言白背景部分*/

.slider_figcaption {
    padding: 20px;
}

.slider_figcaption time {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.slider_figcaption h3 {
    color: #333333;
}

.tag_area {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tagbox {
    border: 1px solid #1b5c5c;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: bold;
    color: #1b5c5c;
}

@media screen and (max-width:767px) {
    .voices_main_1500 {
        padding: 30px 20px 100px;
    }

    .main_bk04 {
        background-size: 70%;
    }

    .voices_flex {
        flex-direction: column-reverse;
    }

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

@media screen and (max-width:560px) {
    .voices_main_1500 {
        padding: 30px 20px 100px;
    }

    .main_bk04 {
        background-size: 70%;
    }

    .voices_flex {
        flex-direction: column-reverse;
    }

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

/*======================================================

選ばれる理由

======================================================*/


.feature_bk {
    display: flex;
    margin-top: -150px;
}

.feature_bk_b {
    margin-top: 300px;
    flex: 1;
    margin-right: calc(50% - 50vw);
    background-color: #f1f3f3;
    width: 100%;
    border-radius: 50px 0 0 50px;
}

.main_bk05 {
    background: url(assets/images/bk01.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 35%;
    padding: 50px 0;
}


.feature_main {
    position: relative;
}

.feature_main::before {
    content: "";
    display: block;
    background: url(assets/images/curve_bk_b.png);
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}




.feature_bk_w {
    margin-top: -150px;
    padding-top: 100px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    width: 70%;
    height: 150px;
    border-radius: 0 30px 0 0;
}

.feature_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1265px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature_box {
    background-color: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    max-width: 270px;
    width: 100%;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.no01,
.no02,
.no03,
.no04,
.no05 {
    position: relative;
    left: -45px;
}

.no01 {
    left: -52px;
}

.no01 img,
.no02 img,
.no03 img,
.no04 img,
.no05 img {
    max-width: 80px;
}

.no01_icon,
.no02_icon,
.no03_icon,
.no04_icon,
.no05_icon {
    text-align: center;
    margin-top: -30px;
}

.no01_icon img,
.no02_icon img,
.no03_icon img,
.no04_icon img,
.no05_icon img {
    max-width: 120px;
    margin-bottom: 20px;
}

.feature_textarea h3 {
    color: #333333;
    margin-bottom: 30px;
}

.feature_textarea p {
    color: #333333;
}

.feature_box01 {
    position: relative;
    top: -200px;
}

.feature_box01::before {
    font-size: 12px;
    position: absolute;
    left: -20px;
    bottom: 0;
    display: block;
    content: "FEATURE01";
    width: auto;
    height: auto;
    color: #1b5c5c;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    writing-mode: sideways-lr;
}

.feature_box02 {
    position: relative;
    top: -150px;
}

.feature_box02::before {
    font-size: 12px;
    position: absolute;
    left: -20px;
    bottom: 0;
    display: block;
    content: "FEATURE02";
    width: auto;
    height: auto;
    color: #1b5c5c;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    writing-mode: sideways-lr;
}

.feature_box03 {
    position: relative;
    top: -100px;
}

.feature_box03::before {
    font-size: 12px;
    position: absolute;
    left: -20px;
    bottom: 0;
    display: block;
    content: "FEATURE03";
    width: auto;
    height: auto;
    color: #1b5c5c;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    writing-mode: sideways-lr;
}

.feature_box04 {
    position: relative;
    top: -150px;
}

.feature_box04::before {
    font-size: 12px;
    position: absolute;
    left: -20px;
    bottom: 0;
    display: block;
    content: "FEATURE04";
    width: auto;
    height: auto;
    color: #1b5c5c;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    writing-mode: sideways-lr;
}

.feature_box05 {
    position: relative;
    top: -100px;
}

.feature_box05::before {
    font-size: 12px;
    position: absolute;
    left: -20px;
    bottom: 0;
    display: block;
    content: "FEATURE05";
    width: auto;
    height: auto;
    color: #1b5c5c;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    writing-mode: sideways-lr;
}


@media screen and (min-width:1501px) {
    .feature_bk {
        margin-left: calc((100vw - 1500px) * 0.04);
        margin-right: 0;
        margin-top: -150px;
        overflow: hidden;
    }

    .feature_bk_m {
        width: calc((100vw - 1500px) * 0.5);
        flex-shrink: 0;
        max-width: calc((2500px - 1500px) * 0.5);
    }

    .feature_bk_b {
        width: 1500px;
        flex-shrink: 0;
    }
}

@media screen and (max-width:1500px) {
    .feature_bk_m {
        width: 20px;
    }
}

@media screen and (max-width:767px) {
    .main_bk05 {
        background-size: 70%;
    }

    .feature_bk_b {
        margin-top: 200px;
    }

    .feature_flex {
        margin: 0 auto -100px;
    }

    .feature_box {
        max-width: 350px;
        padding: 70px 25px;
    }

    .feature_box01 {
        top: -150px;
    }

    .feature_box02 {
        top: -150px;
    }

    .feature_box03 {
        top: -150px;
    }

    .feature_box04 {
        top: -150px;
    }

    .feature_box05 {
        top: -150px;
    }

    .no01,
    .no02,
    .no03,
    .no04,
    .no05 {
        position: relative;
        top: -40px;
        left: -45px;
    }

    .no01 {
        left: -52px;
    }

    .no01_icon img,
    .no02_icon img,
    .no03_icon img,
    .no04_icon img,
    .no05_icon img {
        max-width: 140px;
    }
}

@media screen and (max-width:560px) {
    .main_bk05 {
        background-size: 70%;
    }

    .feature_bk_b {
        margin-top: 200px;
    }

    .feature_flex {
        margin: 0 auto -100px;
    }

    .feature_box {
        max-width: 350px;
        padding: 70px 25px;
    }

    .feature_box01 {
        top: -150px;
    }

    .feature_box02 {
        top: -150px;
    }

    .feature_box03 {
        top: -150px;
    }

    .feature_box04 {
        top: -150px;
    }

    .feature_box05 {
        top: -150px;
    }

    .no01,
    .no02,
    .no03,
    .no04,
    .no05 {
        position: relative;
        top: -40px;
        left: -45px;
    }

    .no01 {
        left: -52px;
    }

    .no01_icon img,
    .no02_icon img,
    .no03_icon img,
    .no04_icon img,
    .no05_icon img {
        max-width: 140px;
    }
}

/*======================================================

お知らせ

======================================================*/



.news_flex {
    display: flex;
}

.news_left {
    margin-top: 50px;
    width: 45%;
}

.news_right {
    width: min(100%, 1000px);
    position: relative;
}

.news_left .news_button {
    cursor: pointer;
    font-weight: 700;
    font-family: Helvetica, "sans-serif";
    /*transition: all .2s;*/
    padding: 12px 20px;
    max-width: 200px;
    width: 100%;
    border-radius: 100px;
    background-image: linear-gradient(180deg, #2a6f7a, #1b5c5c);
    border: 1px solid #fff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.news_left .news_button:hover {
    background: #1b5c5c;
}

.news_left .news_button > .btn_border_box {
    color: #fff;
    width: 34px;
    height: 34px;
    margin-left: 10px;
    transition: transform .3s ease-in-out;
    border: 1.5px solid #fff;
    background-color: #fff;
    display: block;
    border-radius: 50px;
    position: relative;
}

.news_button .btn_border_box::before {
    position: absolute;
    right: 9.5px;
    top: 15.5px;
    display: block;
    content: "";
    width: 15px;
    height: 1.5px;
    background: #1b5c5c;
}

.news_button .btn_border_box::after {
    position: absolute;
    right: 10px;
    top: 11.4px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #1b5c5c;
    border-top: 1.5px solid #1b5c5c;
    transform: rotate(45deg);
}




.news_left .news_button:hover .btn_border_box {
    transform: translateX(8px);
}

.news_left .news_button:active {
    /*transform: scale(0.8);*/
}


.news-list {
    list-style: none outside;
    margin: 0;
    padding: 0;
}

.news-list .item {
    margin-bottom: 20px;
}

.news-list .item a {
    text-decoration: none;
    color: #333;
    padding: 50px;
    display: block;
    background-color: #f6f7f8;
    border-radius: 10px;
}

.news-list .item .date {
    margin: 0;
    min-width: 140px;
    font-size: 16px;
    color: #cbcbcb;
    padding: 0 20px 20px 0;
}

.news-list .item .category {
    margin: 0;
    min-width: 140px;
    padding: 20px 20px 0 0;
}

.news-list .item .category span {
    color: #1b5c5c;
    border: 1px solid #1b5c5c;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1;
}

.news-list .item .title {
    margin: 0;
    width: 100%;
    font-weight: bold;
}

.news-list .item a:hover .title {
    color: #1b5c5c;
}

@media screen and (max-width: 767px) {
    .news_flex {
        flex-direction: column-reverse;
    }

    .news_right {
        margin-top: 30px;
    }

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

    .news-list .item a {
        padding: 40px 20px;
        flex-wrap: wrap;
    }

    .news-list .item .date {
        min-width: 100px;
    }

    .news-list .item .title {
        margin-top: 10px;
    }
}


@media screen and (max-width:560px) {
    .news_flex {
        flex-direction: column-reverse;
    }

    .news_right {
        margin-top: 30px;
    }

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

    .news-list .item a {
        padding: 40px 20px;
    }
}

/*======================================================

フッター

======================================================*/

/*お問い合わせ*/

.gradation {
    background-image: linear-gradient(180deg, #2a6f7a, #1b5c5c);
}

.contact_area {
    padding: 100px 20px;
    border-radius: 50px 50px 0 0;
    color: #fff;
}

.contact_area_1500 {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}


.contact_title img {
    max-width: 100px;
    margin-bottom: 30px;
}

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

.contact_title_jp h2 {
    font-size: clamp(22px, 3vw, 48px);
}

.contact_title_jp p {
    margin-left: 50px;
    line-height: 2;
}

.contact_flex_area {
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.contact_flex_area img {
    max-width: 40px;
}

.contact_tel {
    text-align: center;
    flex-grow: 1;
    position: relative;
    padding: 0 40px;
}

.contact_tel img {
    margin-bottom: 20px;
}

.contact_tel h3 {
    margin-bottom: 25px;
}

.contact_tel p {
    font-size: 12px;
}

.contact_tel a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    transition: 0.3s;
}

.contact_tel a:hover {
    color: #f08c1e;
}

.contact_tel::after {
    position: absolute;
    top: 0;
    left: 100%;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.line_tel {
    text-align: center;
    flex-grow: 1;
    position: relative;
    padding: 0 40px;
}

.line_tel img {
    margin-bottom: 20px;
}

.line_tel h3 {
    margin-bottom: 25px;
}

.line_tel a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 20px;
    transition: 0.3s;
}

.line_tel a:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #1b5c5c;
}

.line_tel::after {
    position: absolute;
    top: 0;
    left: 100%;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.mail_tel {
    text-align: center;
    flex-grow: 1;
    position: relative;
    padding: 0 40px;
}

.mail_tel img {
    margin-bottom: 20px;
}

.mail_tel h3 {
    margin-bottom: 25px;
}

.mail_tel a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 20px;
    transition: 0.3s;
}

.mail_tel a:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #1b5c5c;
}

.mail_tel::after {
    position: absolute;
    top: 0;
    left: 100%;
    content: "";
    width: 1px;
    height: 100%;
    background-color: none;
}

@media screen and (max-width:767px) {
    .contact_title_jp {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_title_jp p {
        margin-top: 30px;
        margin-left: 0;
    }

    .contact_flex_area {
        flex-direction: column;
    }

    .contact_tel {
        padding: 0 40px 40px;
    }

    .contact_tel::after {
        top: 100%;
        left: 0;
        width: 100%;
        height: 1px;
    }

    .line_tel {
        padding: 40px;
    }

    .line_tel::after {
        top: 100%;
        left: 0;
        width: 100%;
        height: 1px;
    }

    .mail_tel {
        padding: 40px 40px 0;
    }
}

@media screen and (max-width:560px) {
    .contact_title_jp {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_title_jp p {
        margin-top: 30px;
        margin-left: 0;
    }

    .contact_flex_area {
        flex-direction: column;
    }

    .contact_tel {
        padding: 0 40px 40px;
    }

    .contact_tel::after {
        top: 100%;
        left: 0;
        width: 100%;
        height: 1px;
    }

    .line_tel {
        padding: 40px;
    }

    .line_tel::after {
        top: 100%;
        left: 0;
        width: 100%;
        height: 1px;
    }

    .mail_tel {
        padding: 40px 40px 0;
    }
}




/*トップへ戻る*/
#page_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
}

.pagetop {
    height: 70px;
    width: 70px;
    background: #206265;
    border: solid 2px #206265;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}


/*footer*/

footer {
    background-color: #444b4c;
    padding: 100px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto 100px;
}

.footer-container-right ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 190px;
}

.footer-container-right li {
    list-style: none;
}

.footer-container-right a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-container-left img {
    max-width: 250px;
}

.footer-container-left p {
    color: #fff;
}

.f-logo {
    margin-bottom: 30px;
}

.f-tel a {
    color: #fff;
    text-decoration: none;
}

hr {
    border: 0.5px solid #fff;
    margin: 30px auto;
    max-width: 1500px;
}

.copy_area {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.nav_copy_footer {
    display: flex;
}

.copy_menu .nav_copy_footer li {
    list-style: none;
    margin-right: 20px;
}

.copy_menu .nav_copy_footer a {
    color: #888888;
    text-decoration: none;
}

.copy {
    color: #888888;
}

@media screen and (max-width:1199px) {
    footer {
        margin-bottom: 45px;
    }
}

@media screen and (max-width:767px) {

    .pagetop {
        height: 50px;
        width: 50px;
    }

    .footer-container {
        flex-direction: column;
        margin: 0 auto 30px;
    }

    .footer-container-left {
        text-align: center;
        margin-bottom: 50px;
    }

    .footer-container-right ul {
        flex-direction: row;
        height: auto;
    }

    .footer-container-right li {
        width: 50%;
    }

    .footer-container-right a {
        font-size: 15px;
    }

    .footer-container-left img {
        max-width: 200px;
    }

    .copy_area {
        flex-direction: column;
        text-align: center;
    }

    .nav_copy_footer {
        flex-direction: column;
    }

    .copy_menu .nav_copy_footer li {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .copy {
        margin-top: 20px;
        font-size: 10px;
    }
}


@media screen and (max-width:560px) {

    .pagetop {
        height: 50px;
        width: 50px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-container-left {
        text-align: center;
        margin-bottom: 50px;
    }

    .footer-container-right ul {
        flex-direction: row;
    }

    .footer-container-right li {
        width: 50%;
    }

    .footer-container-left img {
        max-width: 200px;
    }

    .copy_area {
        flex-direction: column;
        text-align: center;
    }

    .nav_copy_footer {
        flex-direction: column;
    }

    .copy_menu .nav_copy_footer li {
        margin-bottom: 20px;
    }

    .copy {
        margin-top: 20px;
        font-size: 10px;
    }
}

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

@media screen and (max-width:359px) {
    .footer-container-left img {
        max-width: 150px;
    }

    .footer-container-left p {
        font-size: 14px;
    }

    .copy_menu .nav_copy_footer li {
        margin-bottom: 10px;
    }

    .copy_menu .nav_copy_footer a {
        font-size: 14px;
    }

    .footer-container-right {
        display: none;
    }
}
