@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Reem+Kufi+Fun:wght@400..700&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic&display=swap');
@media(max-width:767px) {
    .hide-for-small {
        display: none !important;
    }
}

@media(min-width:768px) {
    .show-for-small {
        display: none !important;
    }
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    color: #333333;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
    line-height: 1.75;
    letter-spacing: 0.05em;
}

a {
    transition: all 0.5s;
}

a:not(.btn):hover {
    opacity: 0.6;
}

#go-top {
    position: fixed;
    bottom: -120px;
    right: 15px;
    opacity: 0;
    transition: all .3s;
    z-index: 99;
    border-radius: 50%;
    right: 0;
    border-radius: 20px 0 0 20px;
}

#go-top.show {
    opacity: 1;
    bottom: 15px;
}

#go-top a {
    display: flex;
    flex-direction: column;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

#go-top a:hover {
    opacity: 0.7;
}

#go-top a img {
    margin: 0 auto;
}


/*FONT*/


/*ANIMATION*/

.anim {
    opacity: 0;
}

.anim.blur {
    opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.anim.fade {
    opacity: 0;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.slideinBottom.is-animated {
    opacity: 1;
    animation-name: slideinBottom;
    animation-duration: 0.5s;
}

@keyframes slideinBottom {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

.anim.faderight.is-animated {
    opacity: 1;
    animation-name: faderight;
    animation-duration: 2s;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.fadeleft.is-animated {
    opacity: 1;
    animation-name: fadeleft;
    animation-duration: 2s;
}

.anim.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    opacity: 1;
}

.anim.fadeup-2.is-animated {
    opacity: 1;
    animation-name: fadeup-2;
    animation-duration: 0.5s;
}

.home .anim.fadedown.is-animated {
    opacity: 1;
    animation-name: fadedown;
    animation-duration: 0.5s;
}

.anim.zoomin.is-animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadedown {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeup-2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.anim.effectfade {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease;
}

.anim.effectfade.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}


/*HEADER*/


/* .header-wrapper:after {
    content: "";
    height: 713px;
    width: 713px;
    background-image: url(../images/index/bg-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    border-radius: 50%;
    top: -202px;
    left: -108px;
    z-index: -5;
} */

.header-main .logo-left .logo {
    margin-right: 0px;
    width: 316px;
    line-height: 1;
    padding: 0;
    position: relative;
}

.header-inner {
    position: static;
    padding-left: 60px;
    padding-right: 10px;
}

#logo .header-logo {
    width: 100%;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
}

.header-main .main-menu .nav {
    position: static;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 5px;
}

.header-main .main-menu .nav>li {
    margin: 0;
    position: relative;
    transition: .3s;
    padding-bottom: 0px;
    margin-right: 50px;
}

.header-main .main-menu .nav>li:last-child {
    margin-right: 50px;
}

.header-main .main-menu .nav>li>a {
    font-weight: 400;
    padding: 0;
    color: #4d4d4d;
    text-align: center;
    transition: .3s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    letter-spacing: 0.05em;
    min-height: 48px;
}

.header-main .main-menu .nav>li:nth-last-child(1) {
    border-right: none;
    margin-right: 0;
}

.box-menu-phone {
    position: static;
}

body.general .nav li.nav-item span {
    font-family: "Zen Maru Gothic", sans-serif;
}

.header-main .main-menu .nav>li>a:hover,
.header-main .main-menu .nav>li.current>a {
    opacity: 1;
}

@media (min-width: 768px) {
    .box-menu-phone {
        justify-content: flex-end;
        padding-right: 0px;
    }
    .header-main .main-menu .nav>li.current>a::after,
    .header-main .main-menu .nav>li:hover>a::after {
        opacity: 1;
        width: 100%;
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }
}

@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.main-menu li.nav-item:hover>a span::after,
.main-menu li.nav-item.current>a span::after {
    left: 50%;
    opacity: 1;
}

.loading-active main {
    opacity: 0;
}

.loading-active header {
    opacity: 0;
}

.loading-active footer {
    opacity: 0;
}

.box-btn-top-header {
    display: flex;
    align-items: center;
}

a.btn.btn-header {
    min-width: 123px;
    height: 50px;
    padding: 0 20px;
    background-color: #f2f2f2;
    border-radius: 0 0 10px 10px;
    margin-left: 7px;
    font-size: 1.4rem;
    color: #7f5b3d;
}

.box-top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

a.btn.btn-header img {
    margin-right: 17px;
}

.box-top-header>a {
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #725d06;
    font-family: "Shippori Mincho B1", serif;
    margin-right: 10px;
}

.mega-menu {
    left: 0;
    position: absolute;
    text-align: left;
    width: 100%;
    text-align: center;
    padding-top: 0px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    visibility: hidden;
    top: 117px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-main .main-menu .nav>li.nav-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 135px;
    z-index: 12;
}

.box-mega-menu {
    display: flex;
}

.mega-menu-left {
    width: 493px;
}

.mega-menu-right {
    flex: 1;
    padding: 35px 50px 50px;
}

.box-flex-mega {
    display: flex;
}

.flex-mega-left {
    width: 342px;
    padding-top: 10px;
}

.flex-mega-right {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
}

a.btn.btn-mega {
    font-size: 2.5rem;
    color: #725d06;
    padding: 15px 0;
    border-bottom: 1px solid;
    justify-content: flex-start;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    letter-spacing: 0.2em;
}

a.btn.btn-mega::after {
    width: 27px;
    height: 24px;
    background-image: url(../images/index/icon-right.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    right: 23px;
}

.box-sub-link-mega {
    width: 50%;
    max-width: 225px;
}

a.sub-link {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #7f5b3d;
    text-align: left;
    display: block;
    padding-left: 25px;
    margin-bottom: 16px;
    position: relative;
}

a.sub-link::after {
    content: "";
    width: 16px;
    height: 5px;
    background-image: url(../images/index/icon-right-mini.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

a.btn.btn-mega:first-child {
    margin-bottom: 60px;
}

.img-mega {
    position: relative;
}

.img-mega p {
    font-size: 3.5rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    letter-spacing: 0.1em;
}


/* .header-main {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 2;
} */

.footer-right {
    display: flex;
    justify-content: center;
}

.box-link-footer {
    width: 250px;
}

.box-link-footer:last-child {
    width: 200px;
}

a.link-footer {
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
}

.home-contact-top {
    text-align: center;
}

footer {
    position: relative;
}

footer::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/index/bg-footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.color-5 {
    color: #f24c8f;
}

.box-home-banner {
    display: flex;
}

.home-banner-right {
    width: 761px;
}

.home-banner-left {
    flex: 1;
    padding-top: 60px;
}

.box-banner-cont {
    max-width: 310px;
    margin: 0 auto;
}

.banner-item img {
    border-radius: 270px;
}

.index-03 .item-img img {
    width: 100%;
    height: auto;
}
