@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 100px;
}

body {
    color: #343434;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    background-color: #FAF9F6;
}

.container {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

figure {
    margin: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a[href^=tel] {
    color: inherit;
}

ul, ol {
    list-style: none;
}

img, video, iframe {
    display: block;
}

.clearfix:after {
    display: block;
    clear: both;
    text-decoration: none;
    content: "";
}

::placeholder {
    font-weight: 500;
}

input:not(input[type="checkbox"]), textarea, select {
    display: block;
    width: 100%;
    padding: 0.5em;
    border-style: solid;
    border-color: #e6e6e6;
    border-radius: 0;
    font-size: 1em;
    outline: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="radio"] {
    display: inline-block !important;
    /* radioは標準でinline-block */
    width: auto !important;

    all: initial;
    /* すべて初期値に戻す */
    appearance: auto !important;
    /* UAのデフォルトUIに戻す */
}

input:focus, textarea:focus, select:focus {
    border-width: 2px;
    border-color: #313131;
    border-radius: 5px;
}

select {
    background-repeat: no-repeat;
    background-position: right 10px center;
}

select::-ms-expand {
    display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="reset"], input[type="button"] {
    box-sizing: border-box;
    cursor: pointer;

    -webkit-appearance: button;
    appearance: button;
}

input[type="submit"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus, input[type="reset"]::focus, input[type="button"]::focus {
    outline-offset: -2px;
}

/* ヘッダー */

body.admin-bar .header_container {
    top: var(--wp-admin--admin-bar--height);
}

.header_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 1000;
}

.header-flex_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 50px;
}

.header-logo-img {
    max-width: 254px;
}

.header-logo-img.z-index-1001 {
    position: relative;
    z-index: 1001;
}

.header-nav_container {
    display: flex;
    align-items: center;
    column-gap: 33px;
}

.header-link-list {
    display: flex;
    column-gap: 43px;
}

.header-link {
    font-size: 18px;
    font-weight: 500;
    color: initial;
    padding: 0 3px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.header-link:hover {
    border-bottom: 3px solid #4B8DCA;
}

.header-link .icon-anchor {
    margin-left: 5px;
    font-weight: 700;
}

.instagram-icon {
    max-width: 51px;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 23px 15px;
    background-color: #F0931F;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 17px;
    border: 3px solid #F0931F;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #FFFFFF;
    color: #F0931F;
}

.contact-link .icon-mail {
    margin-left: 5px;
    font-size: 27px;
}

.icon-mail:before {
    transition: all 0.3s ease;
}

.contact-link:hover .icon-mail:before {
    color: #F0931F;
}

/* ハンバーガー */

.menu-toggle {
    display: none;
    width: 40px;
    height: 28px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
}

.menu-toggle-bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #4B8DCA;
    left: 0;
    transition: .3s;
}

.menu-toggle-bar:nth-child(1) {
    top: 0;
}

.menu-toggle-bar:nth-child(2) {
    top: 12px;
}

.menu-toggle-bar:nth-child(3) {
    top: 24px;
}


/* × */

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
}


/* SPメニュー */

.sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

.sp-menu.active {
    opacity: 1;
    visibility: visible;
}

.sp-menu-inner {
    padding: 120px 20px;
}

.sp-menu-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.sp-menu-list a {
    font-size: 16px;
    color: #343434;
    transition: all 0.3s ease;
}

.sp-menu-list a .icon-anchor {
    margin-left: 5px;
    font-weight: 700;
}

.sp-menu-list a:hover {
    color: #4B8DCA;
}

.menu-button-flex {
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-top: 20px;
}

.menu-contact-link {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 14px 14px;
    background-color: #F0931F;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    border: 3px solid #F0931F;
    transition: all 0.3s ease;
}

.menu-contact-link:hover {
    background-color: #FFFFFF;
    color: #F0931F;
}

.menu-contact-link .icon-mail {
    transition: all 0.3s ease;
}

.menu-contact-link:hover .icon-mail:before {
    color: #F0931F;
}

/* 1200px以下 */

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

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

}

@media screen and (max-width: 1650px) {
    .header-flex_container {
        padding: 14px 30px;
    }

    .header-logo-img {
        max-width: 214px;
    }

    .header-nav_container {
        column-gap: 20px;
    }

    .header-link-list {
        column-gap: 26px;
    }

    .header-link {
        font-size: 15px;
    }

    .instagram-icon {
        max-width: 36px;
    }

    .contact-link {
        padding: 17px 15px;
        font-size: 15px;
    }
}

@media screen and (max-width: 1400px) {
    [id] {
        scroll-margin-top: 80px;
    }

    .header-logo-img {
        max-width: 194px;
    }

    .header-link-list {
        column-gap: 20px;
    }

    .header-link-list {
        column-gap: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .header-nav_container {
        display: none;
    }
    [id] {
        scroll-margin-top: 75px;
    }
}

@media screen and (max-width: 768px) {
    .header-flex_container {
        padding: 14px 20px;
    }
    [id] {
        scroll-margin-top: 85px;
    }
}

/* フッター */

.footer_container {
    height: 188px;
    background-color: rgba(255, 255, 255, 0.8);
}

.footer-flex_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: auto;
    padding: 0 50px;
}

.footer-nav_container {
    display: flex;
    align-items: center;
    column-gap: 33px;
}

.footer-link-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 43px;
    justify-content: end;
    align-items: center;
}

.footer-link {
    font-size: 18px;
    font-weight: 500;
    color: initial;
    padding: 0 3px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.footer-link .icon-anchor {
    margin-left: 5px;
    font-weight: 700;
}

.footer-link:hover {
    border-bottom: 3px solid #343434;
}

.footer-contact-link {
    width: 69px;
    height: 69px;
    flex: 0 0 69px;
    border-radius: 50%;
    background-color: #F0931F;
    border: 2px solid #F0931F;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact-link .icon-mail {
    font-size: 27px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    background-color: #FFFFFF;
}

.footer-contact-link:hover .icon-mail:before {
    color: #F0931F;
}

@media screen and (max-width: 1650px) {
    .footer-flex_container {
        padding: 0 30px;
    }

    .footer-link-list {
        column-gap: 26px;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-contact-link {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }

    .footer-contact-link .icon-mail {
        font-size: 24px;
    }
}

@media screen and (max-width: 1440px) {
    .footer-link-list {
        justify-content: end;
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .footer-link {
        font-size: 15px;
    }
}

@media screen and (max-width: 1300px) {
    .footer-link {
        font-size: 15px;
    }
}

.footer-icon_flex {
    display: none;
}

@media screen and (max-width: 1200px) {
    .footer_container {
        height: auto;
        padding: 20px 0;
    }

    .footer-flex_container {
        flex-direction: column;
        row-gap: 20px;
        align-items: flex-start;
    }

    .header-logo-img {
        max-width: 154px;
    }

    .footer-nav_container {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 16px;
    }

    .footer-link-list {
        flex-wrap: wrap;
        row-gap: 12px;
        justify-content: start;
    }

    .instagram-link.pc-footer,
    .footer-contact-link.pc-footer {
        display: none;
    }

    .footer-icon_flex {
        display: flex;
        align-items: center;
        column-gap: 16px;
    }

    .footer-contact-link {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .footer-contact-link .icon-mail {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .header-logo-img {
        max-width: 130px;
    }

    .footer-flex_container {
        padding: 0 20px;
    }

    .footer-link-list {
        column-gap: 0px;
    }

    .footer-link-item {
        width: calc(100% / 2 - 10px);
    }

    .footer-link-item:last-child {
        width: 100%;
    }

    .footer-link {
        font-weight: 400;
    }
}