@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
*{
    /* border: 1px solid red;; */
}
body{
    font-family: "Noto Sans JP","Noto SansJP","Noto Sans Japanese","メイリオ",sans-serif;
    /* font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif; */
    scroll-behavior: smooth;
}
body.no-scroll {
  /* スクロールを禁止 */
  overflow: hidden;
  /* iOSでオーバーレイの要素がはみ出すのを防ぐ */
  position: fixed;
  width: 100%;
}
.bg{
    background: #FFF6E5;
}
.bg_wh{
    background: #fff;
}
.bg_navy{
    background: #005BA9;
}
.bg_yellow{
    background: #FFF600;
}
.bg_orange{
    background: #F4D13F;
}
.bg_lb{
    background: #EEF0F2;
}
section{
    max-width: 750px;
    margin: 25px auto 18px;
}
.max90{
    width: 90%;
    margin: 0 auto;
}

h3{
    font-size: 15px;
    line-height: 27px;
    text-align: center;
    margin: 20px 0;
}
h4{
    font-size: 13px;
    line-height: 30px;
    text-align: center;
    margin: 20px 0;
}

#head{
    display: flex;
    flex-wrap: ;
}
/* メニュー */
.header {
    position: relative;
    padding: 10px;
    background: #fff;
    position: fixed;
    left: 50%;
    top: 0%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    opacity: 0.95;
    z-index: 1000;
}
.header .logo{
width: auto;
    height: 45px;
  position: relative;
  z-index: 100;
}

.hamburger {
  position: relative;
  top: 0px;
  right: 10px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 34px;
  height: 3px;
  background-color: #255AA5;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 25px;
}
.hamburger__line:nth-of-type(3) {
  top: 36px;
  left: 20px;
  width: 25px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
    left: 11px;
    width: 34px;
  transform: translateY(-12px) rotate(45deg);
}

.nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 4px rgba(0,0,0,.1);
    transform: translateY(-100%);
    transition: transform .4s;
    z-index: 90;
    overflow-y: scroll;
}
/* .nav::before{
    content: "";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    opacity: 0.95;
} */

.nav.active {
  transform: translateX(0);
}
.nav h2{
    color: #005BA9;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 22px; /* 110% */
    /* padding: 100px 0 0; */
}

.nav__list {
    margin: 0;
    padding: 0px 0 0;
    list-style: none;
    position: relative;
    z-index: 91;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 5px;
    padding: 75px 0 0;
}

.nav__item_h{
    width: 100%;
    padding: 5px 15px;
}
.nav__item {
    width: calc(50% - 42.5px);
    display: block;
    padding: 0 20px;
    position: relative;
}
.nav__list::after {
    display: block;
    content:"";
    width: calc(50% - 5px);
}
.nav__link_h{
    width: 100%;
    display: block;
    padding: 10px 0;
    color: #005BA9;
    font-family: "Noto Sans JP";
    font-size: 20px !important;
    font-style: normal;
    font-weight: 900;
    line-height: 22px; /* 110% */
}
.nav__link {
    display: block;
    padding: 12px 0;
    color: #005BA9;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 129.412% */
}
.nav__item_img{
    width: 100%;
    padding: 5px 0;
}
.nav_img{
    max-width: 170px;
    display: block;
    margin: 0 auto;
}

/* index */
/* .in */
.fas{
    color: #898989;
    padding-left: 30px;
}
.fas:before{
    color: #000;
}
/* .index li::after{
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    content: '\f078';
    right: 10%;
    bottom: 50%;
} */
/* .index li a{
    color: #000;
} */

/* 各セクションの見出し */
/* .title{
    text-align: center;
}
.title h2{
    margin: 18px 0 5px;
    font-size: 25px;
}
.title p{
    margin: 5px 0 20px;
    font-size: 13px;
} */
.tab_text{
    color: #000;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 164.706% */
    margin: 0;
}
.container{
    max-width: 500px;
    margin: 0 auto;
    display: block;
}
.container + .container{
    margin-top: 25px;
}
.container img{
    text-align: center;
}
.container .inner{
    padding: 0 15px;
    margin: 15px 0;
    display: block;
}
.container p{
    padding: 0 15px;
    font-size: 16px;
    line-height: 20px;
    margin: 15px 0;
}
.container p img{
    width: auto;
    height: 20px;
    padding: 0 2px;
}

.contactbtn{
    border-radius: 30px;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;

    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 900;
    line-height: 38px; /* 104.762% */
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    margin: 15px auto;
    position: relative;
}

.contactbtn img{
    display: inline-block;
    width: 40px;
    height: auto;
    text-align: right;
}
.contactbtn p{
    margin: 0;
}
.contactbtn p.note{
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 157.143% */
}
.arrow{
    width: 15px !important;
    /* height: 20px !important; */
}
.webbtn{
    border: 2px solid #208822;
    background: #2AAE2D;
}
.telbtn{
    border: 2px solid #03467E;
    background: #005BAC;
}
.telbtn p{
    line-height: 30px;
}
.text{
    width: 70%;
    display: inline-block;
    text-align: left;
}

/* reformfair */
#reformfair h1{
    color: #CF1C24;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 900;
    line-height: 40px; /* 114.286% */
    text-align: center;
}
.beta{
    background: #D9D9D9;
    max-width: 300px;
    color: #000;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 147.368% */
    margin: 0 auto;
}
#reformfair p{
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    max-width: 380px;
    margin: 0 auto;
}
#reformfair p .bold{
    color: #000;
    text-align: left;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px; /* 135.294% */
}
#reformfair img{
    text-align: center;
    margin: 20px auto;
    display: block;
}
#reformfair hr{
    max-width: 380px;
    height: 1px;
    background: #000;
    margin: 20px auto;
}

.contant{
    padding: 30px 0;
}
.contant h4{
    color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 900;
    line-height: 33px;
}
.contant h4 span{
    color: #CF1C24;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 900;
    line-height: 33px; /* 132% */
}
#menusection .flex{
    margin: 0 auto;
    max-width: 370px;
    gap: 10px;
    padding: 10px;
}
#menusection .flex img{
    width: 50%;
    height: 50%;
}
#menusection .flex p{
    width: 50%;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: 23px; /* 135.294% */
    margin: 0;
}
#menusection .flex p span{
    color: #CF1C24;
    font-size: 25px;
    font-style: normal;
    font-weight: 900;
    line-height: 29px;
}
.menubtn {
    width: 90%;
    margin: 20px auto;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* about */
#about h3{
    color: #005BA9;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    padding-bottom: 10px;
}
#about h3:after{
    content: "";
    width: 90%;
    height: 2px;
    background: #005BA9;
    position: relative;
    display: block;
    margin: 0 auto;
    bottom: -5px;
}
#about p{
    color: #000;
    font-family: Inter;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#about p span.bold{
    font-weight: 700;
    /* line-height: 27px; */
}
#about p span.large{
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
#about p span.notes{
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    /* line-height: 15px; */
}

#about h4{
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 142.105% */
}

#other p{
    color: #255AA5;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 105% */
}
.bannarbtn{
    width: 90%;
    margin: 20px auto;
    /* border-radius: 5px; */
    /* background: #FFF; */
    /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); */
}
#reform{
    width: 75%;
    margin: 0 auto;
    padding-bottom: 20px;
}


.listtitle{
    background: #005BA9;
    width: 95%;
    /* height: 22px; */
    flex-shrink: 0;
    margin: 0 auto;
}
.listtitle h3{
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 17px */
    margin: 0;
}
.subtitle{
    content: '';
    position: relative;
    display: block;
    top: 50%;
    /* display: inline-block; */
    width: 90%;
    height: 2px;
    border-top: solid 1px black;
    /* border-bottom: solid 1px black; */
    margin: 50px auto 20px;
}
.subtitle h3{
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 25.5px */
    position: absolute;
    background: #EEF0F2;
    display: inline-block;
    z-index: 5;
    /* width: 100%; */
    top: 50%;
    right: 50%;
    transform: translateY(-50%) translateX(50%);
    -webkit-transform: translateY(-50%) translateX(50%);
    margin: 0;
    padding: 0px 10px;
}

.af_h0::after{
    height: 0;
}
/* stores */
#stores .container + .container{
    margin-top: 0px;
}
#stores{
    padding: 20px 0;
}
.prefectures{
    margin: 0px auto;
    padding: 0;
}
.stores_list{
    margin: 0 auto;
    /* display: flex; */
    flex-wrap: wrap;
    max-width: 768px;
    width: 100%;
    padding: 0px 0;
}
.stores_list.area{
    background: #EEF0F2;
}
.stores_list .store_set{
    max-width: 450px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    /* margin-inline: 10px; */
}
.wards{
    padding: 30px 0 30px;
    display: flex;
    width: 95%;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 auto;
}
.wards a{
    display: flex;
    width: calc(25% - 7px);
    /* height: 30px; */
    padding: 2px 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;

    border: 1px solid #005BA9;
    color: #005BA9;
    background-color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

.municipalities{
    width: 100%;
    /* margin-inline: 10px; */
    background: #CAE6FF;
    text-align: center;
    display: inline-block;

    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 19.5px */
    position: relative;
    margin: 20px auto 0;
}
.municipalities:empty{
    width: 100%;
    height: 1px;
    background: #B3B3B3;
    /* top: -20px */
}
.store__name{
    color: #005BAC;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    margin: 5px auto 10px;
    padding: 10px 0px;
    text-align: left !important;
}

.store__group{
    display: flex;
}
.store_img{
    width: 40%;
}

.store__button{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 0px;
    padding: 0 10px;
    gap: 10px;
}
.store__button .flex{
    /* height: 100%; */
    /* flex-grow: 3; */
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    gap: 10px;
}
/* .store__chirashi{
    display: flex;
    width: 100%;
    margin-inline: 5px;
    height: calc(60% - 15px);
    padding: 0 0 2px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex-shrink: 0;
    color: #fff;
    flex-grow: 7;
    font-size: 16px;
} */

.store__map,
.store__LINE{
    display: flex;
    /* width: calc(50% - 5px); */
    width: 100%;
    /* height: 100%; */
    height: auto;
    margin-inline: 5px;
    padding: 0 0 2px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
}
.store__chirashi{
    background: #E71029;
}
.store__map{
    background: #868686;
}
.store__LINE{
    background: #1DCD00;
}


/* snsfollow */
.snsfollow{
    max-width: 500px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
}
.snsfollow .flex{
    flex-direction: row;
    justify-content: center;
    padding-top: 10px;
    width: 100%;
}
.snsfollow .logo{
    padding-top: 5px;
    width: 200px;
    height: 56px;
    margin-right: auto;
}
.snsfollow .flex a{
    max-width: 50px;
    width: 15%;
    padding: 0 2%;
}
/* youtube */
.youtube{

}

/* tenmei */
.tenmei{
    /* padding: 0 10px; */
    max-width: 500px;
    margin: 0 auto;
}
.tenmei__head {
    font-size: 18px;
    margin: 5px 0;
}
.tenmei__content {
    font-size: 20px;
    margin: 5px 0;
}
.tenmei__head + .tenmei__content{
    border-top: solid 1px #000;
    margin: 0;
    padding-top: 10px;
    width: 100%;
}
.tenmei__content + .tenmei__head{
    padding-top: 15px;
}
.tenmei__content .flex{
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    font-size: 20px;
}
.youbi{
    width: 20%;
    text-align: center;
    font-size: 20px;
    padding-right: 5%;
}
.jikan{
    width: 75%;
    font-size: 20px;
    /* texta-align: center; */
}

/* footer */
footer p{
    color: #fff;
    font-size: 18px;
    text-align: center;
    display: block;
}

.fullmg10{
    width: 90%;
    margin: 2vw auto;
    display: block;
}
.in_btn{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.paddh30{
    content: '';
    display: block;
    padding: 0 0 30px;
    margin: 0 auto;
}
.paddh20{
    content: '';
    display: block;
    padding: 0 0 20px;
    margin: 0 auto;
}
.paddh10{
    content: '';
    display: block;
    padding: 0 0 10px;
    margin: 0 auto;
}
.paddw10{
    padding: 0 20px;
    margin: 0 auto;
}
.btn{
    max-width: 320px;
    width: calc(100% - 100px);
    text-align: center;
    margin: 10px auto;
    border-radius: 40px;
    font-size: 16px;
    line-height: 25px;
    display: block;
    padding: 8px 40px 8px;
    left: 0;
    bottom: 0;
    position: relative;
    text-align: center;
}
#insta .btn{
    /* width: 100%; */
    position: absolute;
    left: 50%;
    bottom: 14.5%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.fas{
    color: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) translateX(0%);
    -webkit- transform: translateY(-50%) translateX(0%);
}
.share{
    position: relative;
    margin: 0px auto 20px;
}
.sns_set{
  margin: 0px auto;
  padding:  1% 0 1%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.twbtn img, .fbbtn img, .linebtn img{
  width: 100%;
}
.linebtn{
  display: block;
  width: 100%;
  font-size: 0;
}
.fbbtn{
    display: block;
    width: 100%;
    font-size: 0;
}
.twbtn{
  display: block;
  width: 100%;
  font-size: 0;
}

.wrap{
    display: flex;
    align-items: center;
    /* height: 340px; */
    overflow: hidden;
    margin: 0 0 0px;
}
.slideanim{
    width: 100%;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 0px;
    animation: loop-slide 20s infinite linear 1s both;
}
.slideanim.count30{
    width: 850%;
    animation: loop-slide 30s infinite linear 1s both;
    margin: 5px 0;
}
.slideanim.count21{
    width: 280%;
    animation: loop-slide 21s infinite linear 1s both;
    margin: 5px 0;
}
.slideanim.count20{
    width: 360%;
    animation: loop-slide 20s infinite linear 3s both;
    margin: 20px 0;
}
.content {
    width: 220px;
    /* height: 300px; */
    margin: 0 3px;
}
.content img{
    width: 100vw;
    height: auto;
}
@keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}
#map{
    background: #005BA9;
    padding: 20px 0 0;
}
#map p{
    margin: 0 25px;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

.margincenter{
    width: 90%;
    margin: 20px auto;
    /* padding: 15px 0; */
    display: block;
}
.margincenter iframe{
    margin: 0px 0;
}

.linefriend{
    width: 100%;
}

/* footer */
footer{
    background: #005BA9;
    margin: 0px auto;
    padding: 0px 0 12px;
    padding: 0px 0 75px;
}
footer small{
    display: block;
    text-align: center;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
}

/* tabmenu */
.map-select{
    padding: 0 20px 20px;
}
.map-select p{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 128.571% */
    /* padding-bottom: 20px; */
}
.map-select .searchbtn{
    max-width: 400px;
    margin: 0 auto;

    width: 274.137px;
    height: 44.322px;
    flex-shrink: 0;
    border: 1px solid #005BA9;
    background: #FFF;

    color: #0059A7;
    text-align: center;
    /* font-family: "Noto Sans JP"; */
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 105.263% */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.tab-menu {
    display: flex;
    /* border-bottom: 2px solid #ccc; */
}
.map-select .flex{
    gap: 10px;
    justify-content: center;
    /* padding: 20px 0 5px; */
}
.map-select h4{
    color: #005BAC;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 31px; /* 140.909% */
    margin: 0;
}
.map-select .flex img{
    border-radius: 10px;
    border: 2px solid #FFF;
    /* background: url(<path-to-image>) lightgray 50% / cover no-repeat; */

    width: 96px;
    height: 96px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}
.aobeta{
    background: #005BAC;
    width: 90%;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 29px;
    font-style: normal;
    font-weight: 900;
    line-height: 117%; /* 33.93px */
    margin: 10px auto;
    padding: 10px;
}

/* タブのスタイル */
.tab {
    flex-grow: 1; /* 可変幅 */
    text-align: center;
    padding: 5px;
    cursor: pointer;
    background-color: #fff;
    /* color: #B6B6B6; */
    /* border-right: 10px solid #0059A7; */
    margin-top: 10px;
    transition: background-color 0.3s;
    font-size: 15px;

    color: #80ADD6;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 180% */
    border-radius: 10px 10px 0 0;
    border: 1px solid #80ADD6;
    background: #FFF;
}
.tab + .tab {
    margin-left: 5px;
}

/* 最後のタブの右の線を消す */
.tab:last-child {
    border-right: none;
}

/* アクティブなタブ */
.tab.active {
    margin-top: 0px;

    color: #FFF;
    text-align: center;
    /* font-family: "Noto Sans JP"; */
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 128.571% */

    border-radius: 10px 10px 0 0;
    border: 1px solid #FFF;
    background: #005BA9;
}

/* コンテンツのスタイル */
.tab-content {
    display: none;
    padding: 0px;
    /* border: 1px solid #ccc; */
    margin-top: -1px;
}

/* アクティブなコンテンツを表示 */
.tab-content.active {
    display: block;
}

.area_button{
    border-radius: 70px;
    border: 2px solid #FFF;
    background: var(--Linear, linear-gradient(180deg, #FE0 0%, #F7D600 100%));
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

    width: 274px;
    height: 70px;
    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}
.area_button span{
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    vertical-align: middle;
    width: inherit;
    padding-left: 5%;
    padding-top: 1%;
}
.area_button img{
    width: 18%;
    padding-top: 3%;
    padding-right: 5%;
}

/* slider */
.swiper-container {
    opacity: 0;
}
.swiper-container.swiper-initialized {
    opacity: 1;
}

.swiper-slide{
    background: #fff;
    opacity: 0; /* すべてのスライドを初期状態で透明に */
    transition: opacity 0.3s;
    /* pointer-events: none; */
    visibility: hidden;
}

.swiper-slide-active {
    opacity: 1 !important; /* 最初のスライドを強制的に表示 */
    /* pointer-events: auto; */
    visibility: visible;
}
.swiper-container.slider1 {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0px auto 25px;
}

.slider1 .swiper-slide {
    text-align: center;
    background-position: center;
    background-size: cover;
    max-width: 768px;
    width: 100%;
    /* max-height: 160px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: contain;
    padding: 0 0px;
    margin: 0 -10px;
    /* box-shadow: 0 0 15px 0 #ddd */
}
.slider1 .swiper-slide-active{
    position: relative;
    /* top: -30px; */
    transition: all 300ms 0s ease;
}


.swiper-container.slider3 {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0px auto 10px;
}

.slider3 .swiper-slide {
    text-align: center;
    background-position: center;
    background-size: cover;
    max-width: 768px;
    width: 100%;
    /* max-height: 160px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: contain;
    padding: 0 0px;
    margin: 0 -10px;
    /* box-shadow: 0 0 15px 0 #ddd */
}
.slider3 .swiper-slide-active{
    position: relative;
    /* top: -30px; */
    transition: all 300ms 0s ease;
}
.imgbtns{
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 0 20px 50px;
}
.imgbtns .slider3btn{
    cursor: pointer;
}
.imgbtns .slider3btn img{
    max-width: 120px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}


/* slider */
.swiper-container.slider2 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0px auto
}

.slider2 .swiper-slide {
    text-align: center;
    background-position: center;
    background-size: cover;
    max-width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: contain;
    padding: 0 0px;
    margin: 0 0px;
}
.slider2 .swiper-slide-active{
    position: relative;
    /* top: -30px; */
    transition: all 300ms 0s ease;
}

/* .slider2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
} */


.nav-buttons{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 10px;
}
.nav-button {
    border: 2px solid #005BAC;
    background: #FFF;
    color: #005BAC;

    display: flex;
    width: calc(33% - 10px);
    /* height: 30px; */
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-button.active{
    border: 2px solid #005BAC;
    background: #005BAC;
    color: #fff;
}

#teikei{
    filter: drop-shadow( 0px 4px 4px rgba(0, 0, 0, 0.25));
}


/* fix button */
#fix_contact{
    max-width: 700px;
    width: 100%;
    position: fixed;
    left: 50%;
    bottom: 0%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    z-index: 999;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
#fix_contact a img{
    margin-top: auto;
    vertical-align: bottom;
}
.contact00{
    margin-top: auto;
    vertical-align: bottom;
    width: 42%;
}
.scrollup{
    width: 9%;
}

/* map */
.mapheader{
    background: #005BAC;
    display: flex;
    width: 90%;
    height: 44px;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    flex-shrink: 0;

    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
}
#map{
    /* background: #005BA9; */
    padding: 20px 0 0;
    width: 90%;
    margin: 0 auto;
    height: 450px;
}
#map p{
    /* margin: 0 25px;
    font-size: 16px;
    line-height: 25px;
    color: #fff; */
}
#locate-btn{
    position: absolute;
    top: 3%;
    right: 6%;
    z-index: 1000;
    background: #000;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
}
.leaflet-control-container a{
    display: initial;
}

.leaflet-tile {
  image-rendering: pixelated;
  background-color: transparent;
}
