@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
/* 共通 ------------------------------*/
*[class*="cp-"],
*[class*="cp-"] * {
    box-sizing: border-box;
}
body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
  }
.container-wrap{
    max-width: 1300px;
    margin: 0 auto;
}
p{
    font-family: 'Noto Serif JP', serif;
}
/* 画像 */
img {
    vertical-align: bottom;
}
/* ヘッダー ------------------------------*/
.cp-header01 {
    height: 120px;
    width: 100%;
}

.cp-header01__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1310px;
    margin: auto;
    padding:30px 50px 30px 100px;*/
}

/* ロゴ */
.cp-header01__logo {
    line-height: 60px;
}

.cp-header01__logo img {
    width: 155px;
    height: 100%;
    vertical-align: middle;
}
.cp-header01__logo img:hover {
    opacity: 0.7;
    transition: .2s ease-in-out;
}

/* ナビゲーション */
.cp-header01__navi {
    line-height: 60px;
}

.cp-header01__items {
    display: flex;
    list-style: none;
}
.cp-header01__item:not(:last-child) {
    margin-right: 32px;
}
.cp-header01__item a {
    display: inline-block;
    transition: .2s ease-in-out;
    color: #8F9A93;
    text-decoration: none;
    font-family: minion-pro, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}
.noto{
    font-family: 'Noto Serif JP', serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}
.cp-header01__item a:hover {
    opacity: .7;
}

/* ハンバーガーメニュー */
.cp-header01__hamburger__button,
.cp-header01__hamburger__content {
    display: none;
}
.cp-header01__hamburger__item a {
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    html{
        overflow-x: hidden !important;
    }
    .cp-header01 {
        height: 60px;
    }
    .cp-header01__logo{
        line-height: unset;
        margin-top: -10px;
    }
    .cp-header01__logo img{
        width: 81px;
        height: 100%;
    }
    /* ナビゲーション */
    .cp-header01__navi {
        display: none;
    }

    /* ハンバーガーメニュー */
    .contact-btn{
        margin: 0 auto;
    }
    .contact-btn a{
        margin-top: 80px;
        display: block;
        text-align: center;
        width: 300px;
        height: 60px;
        background: linear-gradient(180deg, #B2CEC4 0%, #ABCBC4 0.01%, #ABCBC4 0.02%, #ABCBC4 0.03%, #87C0CA 100%);
        box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
        border-radius: 3px;
        color: white;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        font-size: 20px;
        line-height: 60px;
        font-weight: bold;
    }
    .cp-header01__hamburger__button {
        display: block;
        position: absolute;
        top: 9px;
        right: 15px;
        width: 42px;
        height: 42px;
        z-index: 3;
        cursor: pointer;
        text-align: center;
    }
    .cp-header01__hamburger__button span {
        display: block;
        position: absolute;
        width: 25px;
        height: 3px;
        left: 11px;
        background: #8F9A93;
        transition: 0.2s ease-in-out;
        border-radius: 5px;
    }
    .cp-header01__hamburger__button span:nth-child(1) {
        top: 10px;
    }
    .cp-header01__hamburger__button span:nth-child(2) {
        top: 20px;
    }
    .cp-header01__hamburger__button span:nth-child(3) {
        top: 30px;
        width: 15px;
        left: 20px;
    }
    .cp-header01__hamburger__button.active span {
        background: #8F9A93;
    }
    .cp-header01__hamburger__button.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        transform: rotate(-45deg);
    }
    .cp-header01__hamburger__button.active span:nth-child(2) {
        top: 16px;
        left: 7px;
        transform: rotate(45deg);
    }
    .cp-header01__hamburger__button.active span:nth-child(3) {
       display: none;
    }
    .cp-header01__hamburger__content {
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
        position: fixed;
        z-index: 4;
        top: 0;
        left: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100%;
        padding: 40px;
        transition: all 0.2s;
        background-color: #fff;
    }
    .cp-header01__hamburger__content.active {
        transform: translateX(0%);
    }
    .cp-header01__hamburger__item {
        text-align: left;
        position: relative;
    }
    .cp-header01__hamburger__item::before{
        content: ">";
        position: absolute;
        top: 15px;
        left: 0;
        color: #8F9A93;
    }
    .cp-header01__hamburger__item a {
        display: inline-block;
        padding: 16px;
        color: #8F9A93;
        padding-left: 25px;
        font-family: 'Noto Serif JP', sans-serif;
    }
}

@media screen and (max-width: 599px) {
    .cp-header01__container {
        padding-right: 15px;
        padding-left: 15px;
    }
    
    /* ハンバーガーメニュー */
    .cp-header01__hamburger__button {
        right: 10px;
    }
}
.title-wrap{
    background-image: url(../img/title_back.png);
    background-repeat: no-repeat;
    width: 211px;
    height: 79px;
    margin: 0 auto;
    position: relative;
}
.section-title{
    font-size: 23px;
    color: #fff;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
.section-text{
    text-align: center;
    line-height: 28px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.025rem
}
footer{
    background-color: #F0EDE8;
    height: 350px;
}
.footer-container{
    max-width: 1310px;
    margin: 0 auto;
    padding: 50px 50px 30px 100px;
}
.footer-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo img{
    width: 125px;
    height: 60px;
    vertical-align: middle;
}
.footer-list{
    display: flex;
}
.footer-item a{
    text-decoration: none;
    color: #8F9A93;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.footer-item:nth-of-type(n + 2){
    margin-left: 20px;
}
.sns-wrap{
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 30px 0 50px;
}
.inst-img a img{
    width: 36px;
    height: 36px;
}
.inst-img{
    margin-right: 20px;
}
.line-img a img{
    width: 45px;
    height: 45px;
}
.copy{
    color: #8F9A93;
    text-align: center;
    margin-top: 120px;
    font-family: minion-pro, serif;
    font-style: normal;
    font-weight: 400;
}
.sp{
    display: none;
}
.btn{
    transition: all 1s;
    font-family: 'Noto Serif JP', serif;
}
.btn:hover{
    transform: scale(1.2);
}

@media (max-width:767px){
    .section-text{
        padding: 0 10px;
        font-size: 11px;
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    footer{
        height: 280px;
    }
    .footer-container{
        padding: 0;
        padding-top: 20px;
    }
    .footer-logo{
        margin: 0 auto;
    }
    .sns-wrap{
        justify-content: center;
    }
    .copy{
        margin-top: 20px;
    }
}

/*アニメーション*/
.fade-in {
    opacity: 0;
    transition-duration: 1500ms;
    transition-property: opacity, transform;
}
.fade-in-up {
    transform: translate(0, 50px);
}
.fade-in-down {
    transform: translate(0, -50px);
}
.fade-in-left {
    transform: translate(-150%, 0);
}
.fade-in-right {
    transform: translate(50px, 0);
}
.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}
/*1.フェードインアニメーションの指定*/
.scrollanime-load {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown-load {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    
    }
}
 

