@charset "utf-8";

.header{
    position: relative;
    z-index: 999;
}

.header-fixed.header-bg.active{
    background-color: rgba(255, 255, 255, 0.95);
}

.header-fixed{
    position: fixed;
    width: 100%;
    height: 112px;
    padding: 10px 4%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.header-icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
}

.header-icon-image{
    width: 80px;
}

.header-icon-text p{
    color: #fff;
}

.header-icon-text.active p{
    color: #333;
}

.header-fixed-nav{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.header-fixed-nav-list{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 20px;
    max-width: 100%;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 8px gray;
}

.header-fixed.header-bg.active .header-fixed-nav-list{
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
}

.header-fixed-nav-item{
    font-size: 1.2rem;
    white-space: nowrap;
}

.header-fixed-nav-item strong{
    transition: all 0.2s ease;
}

.header-fixed-nav-item:hover strong{
    color: #F09397;
}

.header-fixed-nav-item.active strong{
    color: #F09397;
}

@media screen and (max-width: 800px) {
    .header-fixed-nav{
        display: none;
    }
}

/* header-side */
.header-side{
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.header-side-box{
    margin: 0 0 20px 30px;
    padding: 0 25px 20px;
    background-color: rgba(240, 147, 151, 0.7);
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.4); /* ボーダー */
    border-right-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
    backdrop-filter: blur(3px);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* 薄い影 */
}

.header-side-box p{
    font-weight: 600;
    margin: 10px 0;
}

.header-side-pickup-link{
    background-color: #fff;
    width: fit-content;
    margin: 15px auto 0;
    padding: 2px 10px;
    border-radius: 10px;
    box-shadow: 0 0 4px gray;
}

.header-side-pickup-link:hover,.header-side-pickup-link:hover span{
    background-color: #F09397;
    color: #fff;
    transition: all 0.2s ease;
}

@media screen and (max-width: 800px) {
    .header-side{
        display: none;
    }
}


/* header-sp */
.header-sp {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS用 */
}

.header-sp-menu{
    position: fixed;
    z-index: 700;
    overflow-x: auto;
    bottom: 35px;
    right: 0;
    width: 100%;
    height: 95px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

@media screen and (min-width: 750px) {
    .header-sp-menu{
        right: auto;        
    }
    .header-sp-menu-box{
        left: 50%;
        transform: translateX(-50%);
    }
}

.header-sp-menu-box {
    position: relative;
    width: max-content; 
    padding: 10px 15px;
    margin: 0 20px;
    background-color: rgba(0, 0, 0, 0.1); /* 背景色 */
    border: 1px solid rgba(255, 255, 255, 0.4); /* ボーダー */
    border-right-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
    backdrop-filter: blur(3px);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* 薄い影 */
}

.header-sp-menu-nav .site-nav-list{
    display: flex;
    flex-wrap: nowrap; 
    gap: 10px;
}

.site-nav-list>li.header-sp-menu-nav-item{
    width: 75px;
    max-width: 75px;
    margin: 0;
    display: flex;
    scroll-snap-align: center;
}

.site-nav-list>li.header-sp-menu-nav-item>.site-nav-item-box{
    display: block;
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
    border: 0;
    box-shadow: 0;
    color: #F09397;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    padding: 45px 5px 10px 5px;
    transition: 0.3s;
    cursor: pointer;
}

.header-nav-list>li.header-sp-menu-nav-item>.header-nav-item-box:hover{
    background-color: rgba(240, 147, 151, 0.7);
    color: #fff;
    transition: 0.3s;
}

.header-nav-list>li.header-sp-menu-nav-item.active>.header-nav-item-box{
    background-color: rgba(240, 147, 151, 0.7);
    border-color: #F09397;
    color: #fff;
}

.site-nav-list>li.header-sp-menu-nav-item>.site-nav-item-box::before{
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    top: 15px;
    left: calc(50% - 15px);
}

.header-nav-list>li.header-sp-menu-nav-item.header-sp-menu-button>.header-nav-item-box::before{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 0;
}

.header-sp-menu-nav-item-title{
    font-size: 0.5rem
}

.header-menu-modal{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    cursor: pointer;
}

.menu-modal-open-button{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 30px;
    height: 30px;
    z-index: 999;
}

.menu-modal-open{
    content: "";
    position: center;
    z-index: 999;
    width: 10px;
    display: block; 
}

.menu-modal-open i{
    content: "";
    position: absolute;
    background-color: #F09397;
    top: calc(50% - 0px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open::before{
    content: "";
    position: absolute;
    background-color: #F09397;
    top: calc(50% - 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open::after{
    content: "";
    position: absolute;
    background-color: #F09397;
    top: calc(50% - -5px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.site-nav-list>.site-nav-item.header-sp-menu-nav-item.header-sp-menu-button:hover .menu-modal-open i,.site-nav-list>.site-nav-item.header-sp-menu-nav-item.header-sp-menu-button:hover .menu-modal-open::before,.site-nav-list>.site-nav-item.header-sp-menu-nav-item.header-sp-menu-button:hover .menu-modal-open::after{
    background-color: #fff;
    transition: .25s;
}

.site-nav-item.header-sp-menu-nav-item.header-sp-menu-button.active .menu-modal-open i{
    display: none;
}

.site-nav-item.header-sp-menu-nav-item.header-sp-menu-button.active .menu-modal-open::before{
    background-color: #fff;
    transform: rotate(45deg);
    transition: .25s;
    top: 15px;
    left: 0;
}

.site-nav-item.header-sp-menu-nav-item.header-sp-menu-button.active .menu-modal-open::after{
    background-color: #fff;
    transform: rotate(-45deg);
    transition: .25s;
    top: 15px;
    left: 0;
}

.menu-modal-overlay{
    display: none;
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.header-sp{
    display: none;
}

@media screen and (max-width: 800px) {
    .header-sp{
        display: block;
    }
}

@media screen and (min-width: 800px) {
    .menu-modal-overlay{
        display: none !important;
    }
}

.header-sp-swiper {
    position: fixed !important;
    display: none !important; /* JSのクラス追加まで非表示 */
    bottom: 140px; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    height: 70%;
    z-index: 800 !important;
}

.header-sp-swiper.is-active {
    display: block !important;
}


.header-sp-swiper .swiper-slide {
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header-sp-swiper-slide-header {
    flex-shrink: 0;
    margin: 0 auto 10px;
    width: fit-content;
}

.header-sp-swiper-slide-header p{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    padding: 0 0 5px;
    border-bottom: 2px solid #F09397;
}

.header-sp-swiper-slide-body{
    flex-grow: 1;
    overflow-y: auto;
}

.swiper-slide .header-nav-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, 100px);
    gap: 10px 10px;
    margin: 0 auto;
    justify-content: center;
}

.swiper-slide .header-nav-item{
    width: 200px;
}

.menu-modal-overlay.is-visible {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-sp-swiper-slide-item{
    position: relative;
    margin: 15px 3%;
    padding: 10px 5px;
    border: 2px solid #F09397;
    border-radius: 5px;
    box-shadow: 4px 4px gray;
    font-size: 1.1rem;
    font-weight: 600;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.header-sp-swiper-slide-item>a{
    display: block;
}

.header-sp-swiper-slide-item:hover{
    box-shadow: 0 0 rgba(255, 255, 255, 0);
    top: 2px;
    left: 2px;
}

.header-sp-swiper-slide-body-contact-desc{
    font-size: 1.0rem;
    font-weight: 500;
    margin-bottom: 10px;
}

@media screen and (max-width: 343px) {
    .header-sp-swiper-slide-header p{
        font-size: 1.0rem;
    }
    .header-sp-swiper-slide-item{
        font-size: 0.8rem;
    }
}

.page-top{
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #F09397;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: transform 0.3s ease-in-out; /* スライドイン・アウトのアニメーション */
    transform: translateY(600%); /* 画面上部から隠す */
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #F09397;
    border-right: 3px solid #F09397;
    transform: translateY(20%) rotate(-45deg);
}

.page-top.visible{
    transform: translateY(0); /* 画面内に表示 */
}

@media screen and (max-width: 800px) {
    .page-top{
        right: 7.5px;
        bottom: 175px;
    }
}

.site-nav-list>li.home>.site-nav-item-box::before{
    background-image: url(../images/header/home-pink.webp);
}

.site-nav-list>li.home:hover>.site-nav-item-box::before{
    background-image: url(../images/header/home-white.webp);
}

.site-nav-list>li.active.home>.site-nav-item-box::before{
    background-image: url(../images/header/home-white.webp);
}

.site-nav-list>li.sns>.site-nav-item-box::before{
    background-image: url(../images/header/sns-pink.webp);
}

.site-nav-list>li.sns:hover>.site-nav-item-box::before{
    background-image: url(../images/header/sns-white.webp);
}

.site-nav-list>li.active.sns>.site-nav-item-box::before{
    background-image: url(../images/header/sns-white.webp);
}

.site-nav-list>li.contact>.site-nav-item-box::before{
    background-image: url(../images/header/contact-pink.webp);
}

.site-nav-list>li.contact:hover>.site-nav-item-box::before{
    background-image: url(../images/header/contact-white.webp);
}

.site-nav-list>li.active.contact>.site-nav-item-box::before{
    background-image: url(../images/header/contact-white.webp);
}

.site-nav-list>li.others>.site-nav-item-box::before{
    background-image: url(../images/header/others-pink.webp);
}

.site-nav-list>li.others:hover>.site-nav-item-box::before{
    background-image: url(../images/header/others-white.webp);
}

.site-nav-list>li.active.others>.site-nav-item-box::before{
    background-image: url(../images/header/others-white.webp);
}

.header-sp-menu-nav .site-nav-list>li.ff-nadasaki-2026>.site-nav-item-box::before{
    width: 60px;
    height: 60px;
    top: 2px;
    left: calc(50% - 30px);
}



.background{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
}

.js-background-swiper {
  /* margin: 0 calc(50% - 50vw); は fixed の中にある場合は不要になることが多いですが、
     現状のデザインを維持するため一旦残すか、width: 100% 指定にします */
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.js-background-swiper .slide-images img {
  display: block; /* 隙間防止 */
  object-fit: cover;
  height: 100vh;
  width: 100vw;
  animation-name: zoomIn;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes zoomIn {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}

.swiper-scrollbar-horizontal{
  display: none;
}



/* .form-table tbody{
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
}

.form-table tr{
    text-align: start;
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
    border-bottom: 1px solid #00A556;
} */


.form-table th{
    text-align: start;
    display: block !important;
    padding: 3px 0;

}

.form-table td{
    display: flex !important;
    gap: 2%;
    padding: 3px 0;
}

.form-table td .m-input-horizontal-col2{
    width: 48%;
}

.m-required{
    display: inline-block;
    background-color: #E71324;
    width: 40px;
    padding: 5px 0 6px;
    margin-left: 20px;
    color: #fff;
    font-size: 13px;
    font-size: .8125rem;
    text-align: center;
    line-height: 1;
    border-radius: 3px;
}

.wpcf7-form-control{
    width: 100%;
    margin: 3px 0;
    padding: 1px 3px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

.contact-form-button{
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 15px auto 5px;
}

.contact-form-button-box{
    padding: 2px 5px;
    background-color: #fff;
    border: 2px solid #F09397;
    border-radius: 10px;
    font-size: 1.0rem;
    box-shadow: 0 0 8px gray;
}

.contact-form-button-box:hover{
    background-color: #CCEDDD;
    color: #333;
    font-weight: 600;
}