@charset "UTF-8";

body {
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    color: #2e2e2e !important;
}

body img {
    width: 60%;
}

.bold {
    font-weight: bold;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

.sp-item {
    display: none;
}

@media screen and (max-width:769px) {
    .pc-item {
        display: none;
    }

    .sp-item {
        display: block;
    }
}

.btn {
    cursor: pointer;
}

.btn:hover {

    transition: 0.3s;
}

.cont-wrap {
    width: 1200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:1300px) {
    .cont-wrap {
        width: 90%;
    }
}

.in_txt {
    text-align: left;
}

/* ここからヘッダー */

.header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.8px;
    font-weight: 400;
}

.logo {
    width: 20%;
    margin-left: 20px;
}

@media screen and (max-width:769px) {
    .logo {
        width: 50%;
        margin-right: 20px;
        margin-left: 5px;
    }
}

.nav {
    text-align: right;

}

.menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.menu li {
    padding: 0 20px;
}


.menu li:last-child {
    padding: 0;
}

@media screen and (max-width:769px) {
    .header {
        position: sticky;
        z-index: 100;
        width: 100%;
    }

    .menu {
        display: none;
    }
}

.menu li a:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.btn_contact {
    padding: clamp(5px, 3.6vw, 50px);
    background-color: #CA1C1D;
    color: #fff;
    margin-left: 20px;
}

.btn_contact:hover {
    background-color: #fff;
    border: #CA1C1D solid 1px;
    color: #CA1C1D;
}

/* ----------------------------------------------------
ハンバーガーメニュー
---------------------------------------------------- */
.hamburger {
    display: none;
}

@media screen and (max-width:769px) {
    .header {
        position: fixed;
        top: 0px;
        /*自分が固定したい位置(例は上から0pxの位置)*/
        right: 0px;
        background-color: #fff;

    }

    .hamburger {
        display: block;
    }
}

/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 70px;
    width: 70px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
    background-color: #CA1C1D;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
    bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
    width: 150px;
    height: 100%;
    padding-top: 150px;
    position: fixed;
    bottom: 100%;
    right: 0;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: .5s;
}

.nav_list {
    line-height: 3;
}

.nav_list li a {
    border-bottom: #715e58 solid 1pt;
}

.nav_list li a:hover {
    opacity: 0.6;
    transition: 0.5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
    bottom: 0;
    /* メニューを画面に入れる */
}

.nav:checked~.nav_content {
    width: 150px;
    height: 100%;
    padding-top: 150px;
    position: fixed;
    bottom: 100%;
    right: 0;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: .5s;
    /* メニューを画面に入れる */
}

/* ヘッダーここまで */

/* ----------------------------------------------------
FV
---------------------------------------------------- */
.FV {
    background-color: #F5F5F5;
    padding-bottom: clamp(100px, 15vw, 380px);
    position: relative;
}

.FV span {
    color: #CA1C1D;
}

.bbr {
    border-bottom: #CA1C1D solid 1.5px;
}

.FV_im {
    width: 90%;
    text-align: right;
    margin-left: auto;
}

.FV_im img {
    position: relative;
}

.FV_txt {
    position: absolute;
    top: 15%;
    left: 13%;
    margin: auto;
    transform: translate(-0%, -0%);
    text-align: left;
    margin-right: auto;
    line-height: 1.6;
}


.FV_catch {
    width: 100%;
    font-size: 3vw;
    font-weight: 500;
    margin-bottom: 20px;
}

.FV_txt ::after {
    content: "";
    position: absolute;
    left: 0;
    top: 150%;
    margin: auto;
    background-color: #DBDBDB;
    width: 1px;
    height: 300px;
    z-index: -1;
}



.FV_sub_catch {
    writing-mode: vertical-rl;
    padding: 1.5vw;
    font-size: 1.5vw;
    font-weight: 500;
    background-color: #FFF;
    position: absolute;
    bottom: 10%;
    right: 10%;
    transform: translate(-10%, -10%);
    text-align: start;
}

.FV_btm {
    position: absolute;
    bottom: -2%;
    left: 0;
    width: 60%;
}

.br2 {
    display: none;
}

@media screen and (max-width:769px) {
    .FV {
        margin-top: 70px;
    }

    .FV_txt ::after {
        display: none;
    }

    .FV_txt {
        position: absolute;
        top: 55%;
        left: 16%;
        transform: translate(-10%, -16%);
    }

    .FV_catch {
        width: 100%;
        font-size: 5vw;
    }

    .FV_sub_catch {
        padding: 1.5vw;
        font-size: 3vw;
        font-weight: 700;
        background-color: #FFF;
        position: absolute;
        bottom: 10%;
        right: 10%;
        transform: translate(-10%, -10%);
        text-align: start;
    }

    .FV_im2 {
        margin-top: clamp(100px, 5vw, 100px);
        ;
    }
}

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

    /* .FV_txt {
        position: absolute;
        top: 51%;
        left: 40%;
        transform: translate(-51%, -40%);
    }

    .FV_catch {
        font-size: 26px;

    } */
}

/* ----------------------------------------------------
sec01
---------------------------------------------------- */
.sec01 {
    padding-bottom: 300px;
    padding-top: clamp(100px, 15vw, 380px);
}

.sec01 h2 {
    font-size: 3vw;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 50px;
}

.sec01 .cont-wrap {
    text-align: left;
    line-height: 2;
}

@media screen and (max-width:769px) {
    .sec01 h2 {
        font-size: 4.8vw;
        letter-spacing: -1px;
    }
}

/* ----------------------------------------------------
sec02
---------------------------------------------------- */
.sec02 {
    padding-bottom: 200px;
    position: relative;

}

.sec02::after {
    content: "";
    position: absolute;
    height: 30%;
    width: 80%;
    top: -20%;
    right: 0;
    margin-right: 0;
    aspect-ratio: 871/541;
    transform: translate(-0, 0);
    /* max-height: 70vh; */
    /* transform: translate(0, calc(-50% + 56.25px)); */
    background-color: #E8D8D8;
    z-index: -1;
}

.sec02_sttl {
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 25px;
}

.sec02 .cont-wrap {
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.about_l {
    width: 50%;
    text-align: left;
    line-height: 2;
    position: relative;
}

.sec02_h2 img{
    width: 60%;
}

.border {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40%;
    background-color: #DBDBDB;
    width: 1px;
    height: 30%;
    z-index: 10;
}

.about_r {
    width: 45%;
}

@media screen and (max-width:769px) {
    .sec02 .cont-wrap {
        display: block;
    }

    .about_l {
        width: 100%;
    }

    .border {
        display: none;
    }

    .sec02::after {
        display: none;
    }

}


/* ----------------------------------------------------
  sec03
---------------------------------------------------- */
.sec03 {
    padding-bottom: clamp(80px, 18vw, 500px);
    position: relative;
}

.sec03::after {
    content: "";
    position: absolute;
    height: 96%;
    width: 52%;
    bottom: 0;
    left: 0;
    /* aspect-ratio: 871/541; */
    /* transform: translate(-0%, -0%); */
    /* max-height: 70vh; */
    transform: translate(0, calc(-0% + 0px));
    background-color: #E8D8D8;
    z-index: -1;
}

.sec03 .cont-wrap {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.sec03 h2 {
    width: 35%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: clamp(20px, 3.6vw, 90px);
}

.sec03 h3 {
    color: #CA1C1D;
    font-weight: bold;
    font-size: 20px;
    text-align: left;
}

.sec03 .li_item {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    align-items: start;
    line-height: 1.8;
    box-shadow: 3px 3px 3px #999999;
    position: relative;
}

.sec03 .li_num {
    content: "";
    position: absolute;
    width: 35px;
    top: 0;
    left: 0;
    z-index: 10;
}

.sec03 .li_l {
    text-align: center;
    width: 25%;
    margin-right: 10px;
}


.sec03 .in_txt {
    width: 62%;
    line-height: 1.8;
}

.li_im {
    text-align: center;
    margin: auto;
    width: 55%;
}

@media screen and (max-width:769px) {
    .sec03 h2 {
        width: 70%;
    }
    .li_im {
        width: 80%;
    }
}


@media screen and (max-width:769px) {
    .sec03 .li_item {
        display: block;
        border: solid 1px #DBDBDB;
    }

    .sec03 .li_l {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .li_im {

        width: 150px;
    }

    .sec03 .in_txt {
        width: 100%;
    }

    .sec03 .li_num {
        width: 50px;
        top: 0;
        left: 20px;
        z-index: 10;
    }

    .sec03::after {
        display: none;
    }

}

/* ----------------------------------------------------
sec04
---------------------------------------------------- */
.sec04 {
    padding:50px 0 200px;
}

.sec04 h2 {
    margin-top: 100px;
    font-size: 24px;
    letter-spacing: 10px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.sec04 h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -220px;
    background-color: #DBDBDB;
    width: 1px;
    height: 200px;
    z-index: -1;
}

.sec04 h3 {
    width: 200px;
}

.sec04 h3 img {
    width: 100%;
}

.service_list {
    /* display: flex;
    flex-wrap: wrap; */
}

.service {
    width: 45%;
}

.ser_l {
    text-align: left;
    margin-top: -20%;
}

.ser_l:first-child {
    margin-top: 0px;
}

.ser_r {
    text-align: right;
    margin-left: auto;
    margin-top: -20%;
}

.sec04_txt_wrap {
    text-align: right;
    margin-left: auto;
}

.sec04_txt_cont {
    display: inline-block;
    text-align: left;
    line-height: 3;
}

.sec04_txt {
    display: inline;
    border-bottom: #B3B3B3 solid 1px;
}

.sec04_txt_b {
    display: inline;
    border-bottom: #B3B3B3 solid 1px;
}


@media screen and (max-width:769px) {
    .service {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
    }

    .mt-80 {
        margin-top: 0px;
    }

    .mt-100 {
        margin-top: 0px;
    }

    .ser_l {
        text-align: left;
        margin-right: auto;
    }

    .ser_r {
        text-align: right;
        margin-left: auto;
    }

    .sec04_txt_wrap_sp {
        text-align: center;
        margin: auto;
    }

    .sec04_txt_cont_sp {
        display: inline-block;
        text-align: center;
        margin: auto;
        margin-top: 30px;
        line-height: 3;
    }
}

/* .sec04 .li_item {
    width: 45%;
    text-align: center;
    margin: auto;
    color: #fff;
    padding: 80px;
}

.sec04 .li_1 {
    position: relative;
}

.sec04 .li_bg {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
} */

/* ----------------------------------------------------
sec05
---------------------------------------------------- */

.sec05 .cont-wrap {
    width: 900px;
    padding-bottom: 200px;
}

@media screen and (max-width:980px) {
    .sec05 .cont-wrap {
        width: 90%;
    }
}

.sec05 h2 {
    width: 28%;
    margin-bottom: 50px;
}

.date {
    color: #B6B6B6;
    font-size: 10px;
    margin-right: 40px;
}

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

@media screen and (max-width:769px) {
    .sec05 h2 {
        width: 30%;
    }
    .news_item {
        display: block;
        text-align: left;
    }
}

/* ----------------------------------------------------
sec06
---------------------------------------------------- */
.sec06 {
    text-align: right;
    margin-left: auto;
    background: url(../img/sec06_bg.jpg);
    background-position: center;
    background-size: cover;
    padding-top: 500px;
}

.sec06 h2 {
    color: #fff;
    font-size: 10vw;
    font-weight: lighter;
    text-align: right;
    margin-left: auto;
    position: relative;
}

.sec06 p {
    line-height: 2;
    text-align: left;
}

.sec06_top p {
    font-size: 18px;
}

.sec06_txt_l {
    text-align: left;
}

.sec06_txt_r p {
    text-align: right;
}

.sec06_txt_r {
    margin-top: 30px;
}

.sec06 h3 {
    font-size: 2.4vw;
    font-size: clamp(20px, 2.4vw, 30px) !important;
    font-weight: 500;
    line-height: 2;
}

.sec06 .sec06_cont {
    width: 82%;
    margin-top: -4%;
    text-align: right;
    margin-left: auto;
    padding-top: clamp(20px, 5vw, 80px);
    padding-bottom: clamp(20px, 5vw, 80px);
    padding-left: clamp(20px, 7vw, 150px);
    padding-right: clamp(20px, 7vw, 150px);
    background-color: rgba(255, 255, 255, 0.9);
}

.br1 {
    display: none;
}

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

    .sec06 h2 {
        width: 500px;
    }
}

@media screen and (max-width:769px) {
    .sec06 {
        padding-top: 200px;
    }
    .sec06 .sec06_cont {
        width: 88%;
        margin-top: -8%;
    }

    .sec06 h2 {
        font-size: 20vw;
        width: 100%;

    }

    .sec06 h3 {
        /* font-size: 30px; */
    }
}

.sec06_top {
    margin-bottom: 40px;
}

.sec06 h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 10px;
}

.sec06_txt_r {
    width: 100%;
    text-align: right;
    margin-left: auto;
    /* margin-right: auto; */
}

.sec06_btm {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    margin-top: 30px;
}

.small {
    font-size: 10px;
    color: #8B8989;
    margin-right: 10px;
}

.sec06_btm a p {
    border-bottom: #333333 solid 1px;
    display: inline;
}

.komon p {
    display: inline-block;
}

.sec06_btm a:hover {
    opacity: 0.5;
}

@media screen and (max-width:769px) {
    .sec06_btm {
        margin-top: 10px;
    }
}

/* ----------------------------------------------------
sec07
---------------------------------------------------- */

.sec07 {
    background-color: #444;
    color: #fff;
    padding-top: 130px;
    padding-bottom: 150px;
}

.sec07 h2 {
    font-size: 60px;
    font-weight: lighter;
    text-align: left;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-box p {
    text-align: left;
}

.btn_contact2 {
    display: inline-block;
    padding: 30px 130px;
    border: #fff solid 1px;
    border-radius: 50px;
}

.btn_contact2:hover {
    color: #444;
    background-color: #fff;

}

@media screen and (max-width:769px) {
    .contact-box {
        display: block;
        text-align: left;
    }

    .btn_contact2 {
        margin-top: 60px;
        width: 100%;
        padding: 30px 0px;
        text-align: center;
    }
}


/* ----------------------------------------------------
  フッター
---------------------------------------------------- */

footer {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

footer p {
    /* color: #3d3f3e; */
    text-align: center;
}

.footer-txt {
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.footer-txt p {
    text-align: left;
}

.footer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow-up {
    padding: clamp(20px, 5vw, 30px)clamp(20px, 5vw, 30px);
    background-color: #CA1C1D;
}

.arrow-up a {
    padding: clamp(10px, 5vw, 20px)clamp(10px, 5vw, 30px);
}

.dli-arrow-up {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    position: relative;
    width: 0.08em;
    height: 2.5em;
    background: currentColor;
}

.dli-arrow-up::before {
    content: '';
    width: 0.4em;
    height: 0.4em;
    border: 0.08em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(-45deg);
    transform-origin: top right;
    position: absolute;
    top: -0.05em;
    right: 50%;
    box-sizing: border-box;
}

@media screen and (max-width:769px) {
    .footer-txt {
        margin-left: 5%;
    }
}


/* ----------------------------------------------------
お問合せフォーム
---------------------------------------------------- */
.contact {
    padding-top: 100px;
    display: flex;
    align-items: start;
}

.contact p {
    text-align: left;
}

.l_wrap {
    width: 20%;
    height: auto;
}

.l_wrap img {
    width: 100%;
}

.r_wrap {
    width: 75%;
    margin-left: 100px;
    text-align: left;
    margin-right: auto;
}

.r_wrap h2 {
    margin-top: 100px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 500;
}

.contact_top p {
    line-height: 2;
}


@media screen and (max-width:1300px) {
    .r_wrap {
        margin-left: 50px;
    }
}

@media screen and (max-width:950px) {
    .contact {
        display: block;
        width: 90%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .l_wrap {
        width: 40%;
    }

    .r_wrap {
        width: 100%;
        margin-left: 0;
    }
}


.form {
    text-align: left;
    margin-right: auto;
    margin-left: 20px;
    padding-bottom: 300px;
}

.form__catch {
    text-align: center;
    margin-top: 30px;
    font-size: 1.4rem;
}

.form__wrap {
    text-align: left;
    max-width: 790px;
    width: 90%;
    margin: 80px auto 0;
}

.form__row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.form__row--start {
    align-items: flex-start;
}

.form__left--start {
    margin-top: 18px;
}

.form__left {
    width: 140px;
    color: #333333;
    position: relative;
}

.form__left.arbitrary::before {
    content: "任意";
    color: #fff;
    display: inline-block;
    width: 50px;
    text-align: center;
    height: 22px;
    line-height: 22px;
    background: #999999;
    font-size: 13px;
    border-radius: 0px;
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
}

.form__left.must::before {
    color: #fff;
    display: inline-block;
    width: 50px;
    text-align: center;
    height: 22px;
    line-height: 22px;
    font-size: 13px;
    border-radius: 0px;
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
    content: "必須";
    background: #CA1C1D;
}


.form__right {
    width: calc(100% - 260px);
    /* font-size: 1.5rem; */
}

.form__radio {
    display: flex;
    align-items: center;
    gap: 9px;
}

.form__radio--first {
    margin-bottom: 12px;
}

.form__ttl {
    /* font-size: 1.6rem; */
    /* font-weight: bold; */
}

.form__label {
    font-size: 1.5rem;
    line-height: 1em;
}

.form__input {
    height: 50px;
    background-color: #F5F5F5;
    width: 500px;
    padding: 0 1em;
    /* font-size: 1.5rem; */
}

.address {
    width: 100px;
    margin-bottom: 10px;
}

.form__textarea {
    background-color: #F5F5F5;
    width: 500px;
    padding: 1em;
    /* font-size: 1.5rem; */
}

.submit {
    text-align: center;
    margin: auto;
    padding: 20px 100px;
    color: #fff;
    background-color: #444444;
    margin-bottom: 50px;
    /* margin-left: 220px; */

}

.submit:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.pri_check {
    font-size: 12px;
}

.pri {
    border-bottom: #707070 solid 1px;
}

.form_btm {
    text-align: center;
    margin: auto;
}

@media screen and (max-width:950px) {
    .form {
        width: 100%;
        margin-left: 0px;
    }

    .form__input {
        width: 100%;
    }

    .form__row {
        display: block;
    }

    .form__left {
        margin-left: 70px;
    }

    .form__right {
        width: 100%;
        margin-top: 10px;
    }

    .form__wrap {
        width: 100%;
        /* margin: 80px auto 0; */
    }

    .form__textarea {
        width: 100%;
        /* font-size: 1.5rem; */
    }

    .submit {
        width: 100%;
        padding: 50px;
        margin-left: 0px;
    }

    .address {
        width: 200px;
    }

}

/* ----------------------------------------------------
プライバシーポリシー
---------------------------------------------------- */
.prpoli {
    padding-bottom: 100px;
}

.prpoli h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
}

.prpoli div {
    margin-bottom: 20px;
    text-align: left;
}

.prpoli h3 {
    font-size: 16px;
    font-weight: 500;
}

.prpoli_imfo p {
    margin-bottom: 5px;
}

.mb40 {
    margin-bottom: 40px;
}