@charset "UTF-8";

/* --------------------------------------
ヘッダー・ナビゲーションメニュー
---------------------------------------*/
header {
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.header_mgn {
    width: 100%;
    height: 140px;
}

.header_inner {
    width: 1100px;
    height: auto;
    margin: auto;
}

.header_inner ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.header_inner ul li:first-child {
    width: 30%;
}
h1.header_logo img {
    height: 100px;
    object-fit: contain;
}
.header_inner ul li {
    width: 22%;
}
a.tel_btn {
    position: relative;
    display: block;
    width: 100%;
    height: 73px;
    color: #fff!important;
    visibility: hidden;
}
a.tel_btn::before {
    position: absolute;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/home/head_tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    visibility: visible;
}
a.tel_btn:hover {
    color: #fff;
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .header_inner {
        width: 96%;
        height: auto;
        margin: auto;
    }
    .header_inner ul li {
            width: 40%;
    }
    .header_inner ul li.sp {
            width: 11%;
    }
}

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/

#header {
    /*fixedで上部固定*/
    position: fixed;
    z-index: 999;
    /*最前面へ*/
    /*以下はレイアウトのためのCSS*/
}

/*　上に上がる動き　*/

#header.UpMove {
    animation: HeaderUpAnime 0.5s forwards;
}

@keyframes HeaderUpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/

#header.DownMove {
    animation: HeaderDownAnime 0.5s forwards;
}

@keyframes HeaderDownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header_bar {
    width: 100%;
    background-color: #00B400;
}

h2.header_text {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    h2.header_text {
        font-size: 0.75rem;
    }
}


/* --------------------------------------
TOP トップイメージ
---------------------------------------*/
.top_image {
    overflow: hidden;
    width: 100%;
    margin: auto;
    height: 600px;
}

.top_image img {
    width: 100%;
    height: 600px;
    object-position: center;
    object-fit: cover;
}


@media only screen and (max-width: 768px) {
    .top_image {
        overflow: hidden;
        width: 100%;
        margin: auto;
        height: auto;
    }

    .top_image img {
        width: 100%;
        height: auto;
        object-position: center;
        object-fit: cover;
    }
}

/* --------------------------------------
TOP トップイメージ下メッセージ
---------------------------------------*/
.mess_wrap {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
h3.message {
    width: 100%;
    max-width: 500px;
    line-height: 60px;
    position: relative;
    height: 60px;
    /* margin: 1rem 50px 1rem; */
    padding: 0 2rem;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    background: #00B400;
    margin-bottom: 0;
}

h3.message:before,
h3.message:after {
    position: absolute;
    top: 0;
    display: block;
    /* height: 48px; */
    content: '';
    border: 30px solid #00B400;
}

h3.message:before {
    left: -40px;
    border-left-width: 15px;
    border-left-color: transparent;
}

h3.message:after {
    right: -40px;
    border-right-width: 15px;
    border-right-color: transparent;
}

h3.message span {
    position: relative;
    display: block;
}
@media only screen and (max-width: 768px) {
    h3.message {
        font-size: 1.25rem;
        width: 80%;
    }
}


/* リンクボタン */
.btn_center {
    text-align: center;
}

a.link_btn_orange {
    background-color: #e78054;
    padding: 0.5rem 2rem;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    border: #e78054 1px solid;
    transition: .5s;
    margin-top: 3rem;
}

a.link_btn_orange:hover {
    color: #e78054;
    background-color: #fff;
    transition: .5s;
}


/* --------------------------------------
タイトル
---------------------------------------*/
h3.page_title {
    position: relative;
    overflow-y: hidden;
    width: 100%;
    height: 150px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}
.page_title_tx {
    font-size: 2.2rem;
    text-align: center;
}
.page_title_tx span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

h3.page_title::after {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 600px;
    height: 300px;
    background-color: #FFCD00;
    margin: auto;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    z-index: -1;
}


/* --------------------------------------
ポイント
---------------------------------------*/
ul.point {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

ul.point li {
    width: 32%;
}


/* --------------------------------------
タイトル設定
---------------------------------------*/
.title_center h3 img {
    height: 120px;
}

.light_blue_bg {
    background-color: #EFFAE3;
}

@media screen and (max-width: 768px) {
    .title_center h3 img {
        height: auto;
    }
}


/* --------------------------------------
問い合わせボタン
---------------------------------------*/
.customer_title {
    text-align: center;
}
.customer_title img {
    width: 60%;
}
ul.customer_btn {
    width: 100%;
}
ul.customer_btn li {
    width: 32%;
    margin-top: 1rem;
}
ul.customer_btn li img {
    width: 100% !important;
}
@media screen and (max-width: 768px) {
    ul.customer_btn li {
        width: 60%;
    }
    ul.customer_btn li.sp {
        width: 18%;
    }
}
.customer_title.please img {
    width: 80%;
}
.please ul.customer_btn {
    display: flex;
    align-items: center;
}
ul.customer_btn li a.tel_btn {
    position: relative;
    display: block;
    width: 100%;
    height: 87.5px;
    color: #fff;
}
.please ul.customer_btn li img {
    margin-top: 0;
}
@media screen and (max-width: 768px) {
    .please ul.customer_btn li {
        width: 60%;
    }

    .please ul.customer_btn li.sp {
        width: 18%;
    }
    ul.customer_btn li a.tel_btn {
        height: 128px;
    }
}


/* --------------------------------------
Footer 
---------------------------------------*/
footer {
    height: auto;
    width: 100%;
    padding: 50px 0;
    border-top: 1px solid #b0b0b0;
}
.foot_flex {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.foot_logo {
    width: 25%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.foot_logo p {
   font-size: 0.7rem;
}

.foot_add {
    width: 40%;
}
a.foot_tel {
    font-size: 2rem;
    font-weight: 600;
}
.foot_content {
    width: 20%;
    white-space: nowrap;
}
ul.foot_content_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.foot_content p {
    font-size: 0.8rem;
 }

/* コピーライト */
.copylight {
    color: #fff;
    font-size: 0.8rem;
    position: absolute;
    bottom: -50px;
    left: 0;
}

@media screen and (max-width: 768px) {
    .foot_flex {
        width: 100%;
        flex-direction: column;
    }
    .foot_logo {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .foot_add {
        width: 100%;
    }
    .foot_content {
        width: 100%;
        white-space: nowrap;
    }
}

/* --------------------------------------
モバイルボタン
---------------------------------------*/
.foot_sp_btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .foot_space {
        width: 100%;
        height: 100px;
        background-color: #fff;
    }
    .foot_sp_btn {
        display: flex;
        justify-content: center;
        width: 100%;
        position: fixed;
        bottom: 0;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
        z-index: 100;
    }

    /*　上に上がる動き　*/
    .foot_sp_btn.UpMove {
        animation: UpAnime 0.5s forwards;
    }
    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/
    .foot_sp_btn.DownMove {
        animation: DownAnime 0.5s forwards;
    }
    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }
    .foot_sp_btn_tel {
        width: 96%;
        text-align: center;
    }
    .foot_sp_btn_tel a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2rem 0;
        font-size: 1.25rem;
        font-weight: 600;
        background-color: #00B400;
        color: #fff;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
        transition: 0.3s;
    }
    .foot_sp_btn_tel a::before {
        font-family: "Font Awesome 5 Free";
        content: "今すぐ連絡！ \f095" ;
        margin-right: 0.3rem;
    }
    .foot_sp_btn_tel a:hover {
        background-color: #de5c1b;
        color: #fff;
    }
    .foot_sp_btn_tel a i {
        font-size: 1.5rem;
        margin-right: 5px;
    }
}


/* 画像光る */

.reflection-img {
    position: relative;
    overflow: hidden;
}

.reflection {
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-moz-keyframes reflection {
    0% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -moz-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -moz-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -moz-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-ms-keyframes reflection {
    0% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -ms-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -ms-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -ms-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-o-keyframes reflection {
    0% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -o-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -o-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -o-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* プライバシーポリシー */
a.policy_link {
    text-decoration: underline;
}
ul.policy_wrap {
    width: 100%;
    margin: 3rem auto;
}
ul.policy_wrap li{
    width: 100%;
    margin-bottom: 3rem;
}
ul.policy_wrap li p{
    margin-bottom: 0.5rem;
}
.policy-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.link_btn {
    font-size: 16px;
    font-weight: 500;
    background: #00B400;
    width: 300px;
    height: 40px;
    line-height: 40px;
    margin: 30px auto;
    display: block;
    border: 1px #00B400 solid;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
}

.link_btn:hover {
    background: #fff;
    color: #000;
}
@media only screen and (max-width:767px) {
    .link_btn {
        width: 100%;
    }
}