@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
}
body {
    color: #333; /* RGB */
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 1.8;
    margin: 0;
}

/* 背景 */
#body-bg {
    position: fixed;
    z-index: -999;
    top: 0;
}

/* ヘッダー */
.open-button , .close-button {
    display: none;
}
.header-nav ul li a {
    text-decoration: none;
}
@media (min-width :960px) {
    .header {
        margin:10px 50px 0 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-logo {
        display: inline-block;
    }
    .header-logo img {
        width: 183px;
    }
    .header-nav__column {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 822px;
        width: 65%;
    }
    .header-nav__column li {
        display: inline-block;
        list-style: none;
        margin-left:50px ;
        text-align: center;
    }
    .header-nav__contact {
        height: 120px;
        width: 120px;
        border-radius: 100%;
        background-color: #FFC631;
    }
    .header-nav__title-main {
        margin: 0;
        font-size: 2.4rem;
        font-family: "Heebo";
        font-weight: bold;
        color: #4E3E00;
    }
    .header-nav__title-main__contact {
        padding-top: 32px;
        font-size: 2.4rem;
        font-family: "Heebo";
        font-weight: bold;
        color: #4E3E00;
    }
    .header-nav__title-sub {
        margin: 0;
        font-size: 1.2rem;
        color: #4E3E00;
    }
    .open-button {
        display: none;
    }
    .header-sns__list {
        display: none;
    }
}

@media (max-width: 960px) {
    .header {
        margin:30px 20px 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-logo {
        display: inline-block;
    }
    .header-logo img {
        width: 140px;
    }
    .open-button {
        display: block;
        position: absolute;
        background-color: #FFC631;
        height: 73px;
        width: 73px;
        border-radius: 100%;
        top: 15px;
        right: 20px;
        cursor: pointer;
    }
    .open-button span {
        position: absolute;
        top: 36px;
        right: 24px;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #4E3E00;
        display: block;
        content: "";
    }
    .open-button span:nth-last-child(2) {
        top: 44px;
    }
    .open-button span:nth-last-child(3) {
        top: 28px;
    }
    .close-button {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 30px;
        padding: 25px 40px;
    }
    .close-button span {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 3px;
        border-radius: 3px;
        transform: rotate(45deg);
        vertical-align: middle;
        background: #4E3E00;
    }
    .close-button span::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 3px;
        background: #4E3E00;
        transform: rotate(90deg);
    }
    .header-nav {
        display: none;
        z-index: 1000;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #FFC631;
        width:100%;
        height: 100%;
        padding-top: 80px;
    }
    .header-nav__title-main , .header-nav__title-main__contact {
        font-family: "heebo", sans-serif;
        font-size: 2.4rem;
        font-weight: bold;
        color: #4E3E00;
        text-align: center;
    }
    .header-nav__title-sub {
        font-size: 1.2rem;
        color: #4E3E00;
        text-align: center;
        margin-bottom: 20px;
    }
    .header-nav__contact .header-nav__title-sub {
        margin-bottom: 70px;
    }
    .header-sns__list {
        display: flex;
        justify-content: center;
        margin: 0 50px;
        width: auto;
        padding-top: 40px;
        border-top: solid 2px #4E3E00;
    }
    .header-sns__list li {
        list-style: none;
    }
    .header-sns__list li img {
        width: 30px;
        height: auto;
        margin:0 12px;
    }
    .header-nav.is-open {
        display: block;
    }
}

/* コンタクト */
.section-contact {
    background-image: url("../images/top/section-contact__bg.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    max-width: 1002px;
    width: 80%;
    height: 460px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 90px;
}
.section-contact h2 {
    padding-top: 110px;
    color: #4E3E00;
    font-size: 8.2rem;
    font-family: "heebo", sans-serif;
    font-weight: 700;
}
.section-contact h3 {
    margin-bottom: 20px;
    font-size:1.8rem;
    margin-top: -25px;
    color: #4E3E00;
}
.section-contact p {
    color: #4E3E00;
    font-weight: 400;
}
.section-contact__img {
    max-width: 306px;
    width: 30%;
    position: absolute;
    top: 130px;
    left: 0;
}
.section-contact__button {
    position: absolute;
    top: 30%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 207px;
    height: 207px;
    background-color: #FFC631;
    border-radius: 100%;
}
.section-contact__button-arrow {
    position: relative;
    width: 84px;
    height: auto;
}

/* ふわふわ動き */
.section-contact__img {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    transition: 1.5s ease-in-out;
}
@keyframes fuwafuwa {
    50% {
      transform:translate(0, -10px) rotate(0deg);
    }
}

@media (max-width: 960px) {
    .section-contact {
        margin-bottom: 50px;
    }
    .section-contact h2 {
        padding-top: 110px;
        font-size: 4.8rem;
        font-family: "heebo", sans-serif;
        font-weight: 700;
    }
    .section-contact h3 {
        margin-bottom: 20px;
        font-size:1.6rem;
        margin-top: -10px;
        color: #4E3E00;
    }
    .section-contact p {
        color: #4E3E00;
        font-weight: 400;
        font-size: 1.4rem;
    }
    .section-contact__img {
        position: absolute;
        top: 250px;
        left: 0;
    }
    .section-contact__button {
        position: absolute;
        top: 60%;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 150px;
        height: 150px;
        background-color: #FFC631;
        border-radius: 100%;
    }
    .section-contact__button-arrow {
        position: relative;
        width: 60px;
        height: auto;
    }
}
@media (max-width: 750px) {
    .section-contact {
        background-image: url("../images/top/section-contact__bg.png");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
        width: 700px;
        width: 100%;
        height: 400px;
    }
    .section-contact h2 {
        padding-top: 90px;
    }
    .section-contact__img {
        display: none;
    }
    .section-contact__button {
        position: absolute;
        top: 75%;
        right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 150px;
        height: 150px;
        background-color: #FFC631;
        border-radius: 100%;
    }
}

/* フッター */
.footer {
    position: relative;
}
.footer-contents__wrapper {
    background-color: #FFC631;
    background-size: 100%;
    padding-left: 80px;
    margin-top: 320px;
}
.footer-bg {
    position: absolute;
    margin-top: -250px;
    width: 100%;
    max-height: 1000px;
    z-index: -99;
}
.footer-contents {
    display: flex;
    align-items: center;
    margin-bottom: 90px;
}
.footer-logo img {
    height: 100px;
    width: auto;
}
.footer-site-map {
    display: flex;
}
.footer-site-map__first-items li , .footer-site-map__second-items li {
    list-style: none;
}
.footer-site-map__first-items {
    margin-left: 170px;
}
.footer-site-map__second-items {
    margin-left: 150px;
}
.footer-site-map a {
    text-decoration: none;
}
.site-map__title-main {
    color: #4E3E00;
    font-family: "heebo", sans-serif;
    font-weight: 700;
    font-size: 3.6rem;
}
.site-map__title-sub {
    color: #4E3E00; 
    font-size: 1.4rem;
    margin-left: 5px;
    margin-bottom: 25px;
}
.footer-sns__list {
    display: flex;
    margin-bottom: 30px;
    padding-top: 15px;
}
.footer-sns__list li {
    list-style: none;
}
.footer-sns__list li img {
    width:30px ;
    height: auto;
    margin-right: 15px;
}
.footer-site-map__privacy-policy {
    color: #4E3E00;
}
.footer-copyright {
    display: block;
    text-align: center;
    font-weight: 700;
    padding-bottom: 50px;
}

/* コンタクト ボタン縮小 */
.zoomOut img {
    transform: scale(1.3);
	transition: .2s ease-in-out;
}
.zoomOut a:hover img {
    transform: scale(1);
}
.section-contact__button {
    line-height: 0;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .footer-contents__wrapper {
        background-color: #FFC631;
        background-size: 100%;
        padding-left: 40px;
        margin-top: 280px;
    }
    .footer-contents {
        display: flex;
        align-items: center;
        margin-bottom: 90px;
    }
    .footer-logo img {
        height: 50px;
        width: auto;
    }
    .footer-site-map {
        display: flex;
    }
    .footer-site-map__first-items li , .footer-site-map__second-items li {
        list-style: none;
    }
    .footer-site-map__first-items {
        margin-left: 80px;
    }
    .footer-site-map__second-items {
        margin-left: 50px;
    }
    .footer-site-map a {
        text-decoration: none;
    }
    .site-map__title-main {
        color: #4E3E00;
        font-family: "heebo", sans-serif;
        font-weight: 700;
        font-size: 3.6rem;
    }
    .site-map__title-sub {
        color: #4E3E00; 
        margin-top: -8px;
        font-size: 1.4rem;
        margin-left: 5px;
        margin-bottom: 25px;
    }
    .footer-sns__list {
        display: flex;
        margin-bottom: 30px;
        padding-top: 15px;
    }
    .footer-sns__list li {
        list-style: none;
    }
    .footer-sns__list li img {
        width:30px ;
        height: auto;
        margin-right: 15px;
    }
    .footer-site-map__privacy-policy {
        color: #4E3E00;
    }
    .footer-copyright {
        display: block;
        text-align: center;
        font-weight: 700;
        padding-bottom: 50px;
    }
}
@media (max-width: 750px) {
    .footer-bg {
        margin-top: -150px;
    }
    .footer-contents__wrapper {
        background-color: #FFC631;
        background-size: 100%;
        padding: 0 40px 0;
        margin-top: 250px;
    }
    .footer-contents {
        display: block;
        align-items: center;
        margin-bottom: 90px;
    }
    .footer-logo img {
        display: block;
        height: 70px;
        width: auto;
        margin: 0 auto 60px;
    }
    .footer-site-map {
        display: block;
    }
    .footer-site-map__first-items li , .footer-site-map__second-items li {
        list-style: none;
    }
    .footer-site-map__first-items {
        margin-left: 0;
    }
    .footer-site-map__second-items {
        margin-left: 0;
    }
    .footer-sns__list {
        display: flex;
        margin-bottom: 30px;
        padding-top: 60px;
    }
    .footer-sns__list li img {
        width:30px ;
        height: auto;
        margin-right: 15px;
    }
    .footer-site-map__privacy-policy {
        color: #4E3E00;
    }
    .footer-copyright {
        display: block;
        text-align: center;
        font-weight: 700;
        padding-bottom: 50px;
    }
}