html {
    font-size: 62.5%;
}

body {
    font-family: 'Prompt', 'Noto Sans JP', sans-serif;
    color: #312B27;
    letter-spacing: 0.08rem;
}

a {
    text-decoration: none;
    transition: .2s ease-in-out;
}

h1 {
    font-size: 6.4rem;
    color: #FF6450;
    font-weight: 600;
}

h2 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-top: 4rem;
    line-height: 6rem;
}

h4 {
    font-size: 1.6rem;
    margin-top: 4rem;
    line-height: 3rem;
}

p {
    font-size: 1.4rem;
    line-height: 3rem;
}
i{
    font-family: ;
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 4.4rem;
        color: #FF6450;
        font-weight: 600;

    }

    h2 {
        font-size: 2.4rem;
        margin-top: 2rem;
        line-height: 3.5rem;
        letter-spacing: 0.2rem;

    }

    h4 {
        font-size: 1.4rem;
        margin-top: 2rem;
        line-height: 3rem;
    }

    p {
        font-size: 1.2rem;
        line-height: 2.8rem;
    }
}

/*=== PC none / SP none ===*/
@media screen and (min-width:768px) {
    .pc_none {
        display: none;
    }
}

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


.wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.wrap section {
    padding: 150px 0;
}

.wrap_inner {
    padding: 0 2.5%;
}

@media screen and (min-width:1140px) {
    .wrap_inner {
        padding: 0 25px;
    }
}


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

    .wrap section {
        padding: 110px 0;
    }

    .wrap_inner {
        padding: 0 25px;
    }
}

#header {
    /*fixedで上部固定*/
    position: fixed;
    height: 120px;
    width: 100%;
    z-index: 998;
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    text-align: center;
    padding: 20px;
}

@media screen and (max-width:767px) {
    #header {
        height: 80px;
        width: 100%;
        padding: 15px;
    }
}

/*　上に上がる動き　*/

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

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

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

/*　下に下がる動き　*/

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

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

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

.logo {
    font-size: 2.0rem;
}

.logo img {
    vertical-align: middle;
}

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

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: #312B27;
    padding: 10px;
    padding-left: 64px;
}

.nav-contact {
    width: 239px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 80px;

}

.contact-btn-wrap {
    padding: 0;
    width: 230px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.24, .45, .32, 1);
    will-change: transform;
    position: relative;
    font-weight: 600;
}

.contact-btn-wrap:hover .contact-btn {
    background-color: white;
    color: #FF6450;
}

.contact-btn-wrap .contact-btn {
    width: 230px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF6450;
    border: 1px solid #FF6450;
    border-radius: 99px;
    font-size: 1.6rem;
    line-height: 1;
    color: #FFF;
    transition: all .3s cubic-bezier(.24, .45, .32, 1);
}

.arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 6px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    margin-left: 40px;
}

.arrow::before,
.arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.btn-arrow::before {
    left: 6px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.btn-arrow::after {
    left: 7px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 2px;
}

.contact-btn-wrap:hover .btn-arrow::before {
    background: #FF6450;
}

.contact-btn-wrap:hover .btn-arrow::after {
    border-top: 2px solid #FF6450;
    border-right: 2px solid #FF6450;
}

/*========= SP ナビゲーションのためのCSS ===============*/

#sp-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 80px;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #FFF;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#sp-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#sp-nav-wrap {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    top: 80px;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    /* overflow: auto;
        -webkit-overflow-scrolling: touch; */
}

/*ナビゲーション*/

#sp-nav .sp-menu-wrap {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    z-index: 999;
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #FF6450;
    padding: 20px;
}


#sp-nav .sp-menu-wrap .sp-menu {
    width: 100%;
    display: block;
    position: relative;
    text-align: center;
}

#sp-nav .sp-menu-wrap p {
    color: #FFF;
    font-size: 1.6rem;
}

/*リストのレイアウト設定*/

#sp-nav .sp-menu-wrap .sp-menu ul {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    height: auto;
}

#sp-nav .sp-menu-wrap .sp-menu ul:before,
#sp-nav .sp-menu-wrap .sp-menu ul:after {
    content: "";
    clear: both;
    display: block;
}

#sp-nav .sp-menu-wrap .sp-menu ul li {
    display: flex;
    float: left;
    width: 50%;
    padding-top: 10px;
}

#sp-nav .sp-menu-wrap .sp-menu ul li a {
    width: 95%;
    height: 80px;
    border-radius: 99px;
    background-color: #FFF;
    text-align: center;
    line-height: 80px;
    margin: 0 auto;
    color: #FF6450;
    padding: 0;
    font-weight: 600;
    font-size: 1.8rem;
}

#sp-nav .sp-menu-contact {
    display: block;
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 20px;
}

#sp-nav .sp-menu-contact p {
    color: #000;
    padding: 10px 0;
    font-size: 1.2rem;
}

#sp-nav .sp-menu-contact .nav-contact {
    margin: 0 auto;
}

.gray {
    color: #BBBBBB !important;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 15px;
    right: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #FF6450;
    border-radius: 50%;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



section {
    padding: 100px 0;
}

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




#footer {
    width: 100%;
    background-color: #FF6450;

}

#footer .f-contact-contents,
#footer .f-contact-contents h1 {
    display: flex;
    color: #FFF;
}

#footer .f-contact-contents .contact-text,
#footer .f-contact-contents .contact-ttl {
    width: 50%;
    padding: 150px 0 100px 0;
}

#footer .f-contact-contents h4 {
    margin-top: 0;
}

#footer .f-txt-m {
    font-size: 1.4rem;
    line-height: 3rem;
}

#footer .f-txt-s {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFBEB6;
}


#footer .nav-contact {
    margin: 0;
}


#footer .contact-btn-wrap:hover .contact-btn {
    background-color: #FF6450;
    color: #fff;
}

#footer .contact-btn-wrap .contact-btn {
    background-color: #FFF;
    border: 1px solid #FFF;
    color: #FF6450;
}

#footer .btn-arrow::before {
    background: #FF6450;
}

#footer .btn-arrow::after {
    border-top: 2px solid #FF6450;
    border-right: 2px solid #FF6450;
}

#footer .contact-btn-wrap:hover .btn-arrow::before {
    background: #FFF;
}

#footer .contact-btn-wrap:hover .btn-arrow::after {
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
}


#footer .f-line {
    width: 100%;
    color: #fff;
}

#footer .f-menu {
    display: flex;
    height: 97px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

#footer .f-logo img {
    width: 127px;
    height: 24px;
}

#footer .f-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .f-menu .f-link {
    font-size: 1rem;
    font-weight: 400;
    color: #FFBEB6;
    padding: 10px;
    padding-right: 20px;
    text-decoration: underline;

}

#footer .f-menu ul li:last-child {
    text-decoration: none;
    color: #FFF;
    padding-right: 0;
}

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

    #footer .f-contact-contents,
    #footer .f-contact-contents h1 {
        display: block;
    }

    #footer .f-contact-contents .contact-ttl {
        width: 100%;
        padding: 60px 0 30px 0;
    }

    #footer .f-contact-contents .contact-text {
        width: 100%;
        padding: 0px 0 30px 0;
        text-align: center;
    }

    #footer .f-contact-contents .contact-text :nth-child(2) {
        margin-top: 20px;
    }

    #footer .f-contact-contents .f-contact-btn .nav-contact {
        margin: 0 auto;
        margin-top: 20px;
    }

    #footer .f-menu {
        display: block;
        height: auto;
        padding: 0;
    }

    #footer .f-menu .f-logo-sp {
        width: 150px;
        padding: 45px 0 0 0;
        margin: 0 auto;
    }

    #footer .f-menu .f-logo img {
        width: 100%;
    }

    #footer .f-menu ul {
        width: 100%;
        display: block;
        margin-top: 20px;
    }

    #footer .f-menu ul li {
        display: inline-block;
        width: auto;
    }

    #footer .f-menu ul :last-child {
        width: 100%;
        margin-bottom: 20px;
    }

    #footer .f-menu .f-link {
        padding-right: 5px;
    }
}

/* ぱんくず */
.breadcrumb {
    position: relative;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    top: 130px;
    float: left;
    z-index: 97;
}

.breadcrumb li {
    display: inline;
    list-style: none;
    font-weight: 400;
    font-size: 1.1rem;
}

.breadcrumb li:after {
    /* >を表示*/
    content: '>';
    padding: 0 0.2em;
    color: #555;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #555;
    /*色*/
}

.breadcrumb li a:hover {
    opacity: 0.6;
}