body{
    font-size: 16px;
    color: #FFF;
    font-family:  'Quicksand', sans-serif;
    scroll-behavior: smooth;
    background-color: #1f2e55;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a{
    text-decoration: none;
    color: #fff;
}
li{
    list-style: none;
}
h2{
    font-size: 1.5rem;
}
h3{
    font-size: 40px;
}
p{
    font-size: 20px;
}
/* fade-animation */
.fadeUp{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}
.fadeUp.inView{
    transform: translateY(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeLeft{
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s;
}
.fadeLeft.inView{
    transform: translateX(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeRight{
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s;
}
.fadeRight.inView{
    transform: translateX(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeBlur{
    opacity: 0;
    filter: blur(10px);
    transition: all 1s;
}
.fadeBlur.inView{
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.3s;
}
/* header */
.logo{
    position: fixed;
    top: 0;
    left: 0;
    width: 10%;
    z-index: 100;
}
.logo a{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/* ハンバーガーメニュー */
.hamb {
    position: fixed;
    cursor: pointer;
    z-index: 300;
    right: 70px;
    top: 40px;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    padding: 15px;
    border-radius: 50px;
  }
  
  .black-bg ul{
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .black-bg ul li {
    text-align: center;
    padding: 20px 0;
  }
  
  .black-bg ul li a {
    color: #fff;
    font-size: 18px; 
    font-weight: bold;
    display: block;
    text-decoration: none;
  }
  
  .line {
    position: absolute;
    width: 27px;
    height: 1px;
    background-color: #fff;
    
}
.line:nth-child(1){
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  } 

  .line:nth-child(2)  {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  .line:nth-child(3)  {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);

  }
  
  .black-bg {
    position: fixed;
    background: #6FC6E1;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 100;
  }
  
  .black-bg.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  
  #hamb.active .line {
    background-color: #fff;
  }
  
  /*アニメーション*/
  .black-bg {
    transition: opacity 0.6s, visibility 0.35s, width 0.35s;
  }
  #hamb.active .line:nth-child(1) {
    top: 50%;
    left: 15%;
    transform: translateY(-50%) rotate(-45deg);
  }
  #hamb.active .line:nth-child(2) {
      opacity: 0;
      background: #FFF;
  }
  #hamb.active .line:nth-child(3) {
    bottom: 45%;
    left: 15%;
    transform: rotate(45deg);
  }
  .animation {
    transition: all .9s;
  }
.header-img{
    width: 100%;
    height: 60vh;
    background-image: url(../img/imf.jpg);
    background-size: cover;
    background-position: center;
    /* background: linear-gradient(135deg, rgba(233, 211, 180, 1) 0%,rgba(186,190,179,1) 20%,rgba(126,156,164,1) 70%, rgba(69, 104, 140, 1) 100%);
    background-size: 200% 200%;
    animation: waveBackground 5s ease-in-out infinite; */
    position: relative;
}
@keyframes waveBackground {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 60%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 40%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.header-img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 70%;
    object-fit: cover;
    border-radius: 50px;
}
.header-img h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #FFF;
    font-size: 60px;
    text-shadow: #17212d 1px 1px 2px;
}
.top-menu{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background: #1f2e55;
}
.top-menu-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}
.top-menu h3{
    display: block;
    width: 100%;
    height: 80px;
    text-align: center;
    background-color: #F8F6F0;
    color: #2E3A59;
    line-height: 80px;
    font-size: 30px;
}
.top-menu-left{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 50%;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
}
.top-menu-left p{
    width: 80%;
    line-height: 40px;
}
.top-menu-right{
    display: flex;
    justify-content: center;
    width: 50%;
    height: 70%;
}
.top-menu-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-all{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
.menu-all h4{
    display: block;
    width: 100%;
    height: 80px;
    text-align: center;
    background-color: #F8F6F0;
    color: #2E3A59;
    line-height: 80px;
    font-size: 30px;
}
.menu-all ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.menu-all li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 500px;
    border-bottom: #dddddd 1px solid;
    background: #1f2e55;
}
.li-right{
    flex-direction: row-reverse;
}
.menu-all-p{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.menu-all-p h3{
    width: 100%;
    font-size: 30px;
    margin-bottom: 10px;
}
.menu-all-p p{
    width: 80%;
    line-height: 40px;
}
.menu-all-img{
    width: 50%;
    height: 100%;
}
.menu-all-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-list{
    width: 100%;
    height: 100%;
}
.menu-list h3{
    display: block;
    width: 100%;
    height: 80px;
    text-align: center;
    background-color: #F8F6F0;
    color: #2E3A59;
    line-height: 80px;
    font-size: 30px;
}
.menu-list1{
    width: 60%;
    height: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
}
.list-title{
    width: 100%;
    height: 50px;
    margin: 30px 0;
    background-color: #f5f5f5;
    color: #2E3A59;
    font-size: 30px;
    position: relative;
    padding-left: 20px;
    line-height: 50px;
}
/*アイコンの＋と×*/
.list-title::before,
.list-title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #2E3A59;
}
.list-title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.list-title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
.list-title.active::before {
    transform: rotate(90deg);
}
.list-title.active::after {
    transform: rotate(0deg);
}
.menu-list ul{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.menu-list li{
    width: 45%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}
.menu-img{
    width: 30%;
    height: 100%;
}
.menu-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: #FFF 5px solid;
}
.menu-p{
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}
.menu-p h5{
    width: 100%;
    font-size: 18px;
}
.menu-p p{
    width: 100%;
    font-size: 14px;
    position: relative;
}
.menu-p p::before{
    position: absolute;
    bottom: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 50px;
}
.p1:before{
    content: "01";
}
.p2:before{
    content: "02";
}
.p3:before{
    content: "03";
}
.p4:before{
    content: "04";
}
.p5:before{
    content: "05";
}
.p6:before{
    content: "06";
}

.price-all{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
.price-all h3{
    display: block;
    width: 100%;
    height: 80px;
    text-align: center;
    background-color: #F8F6F0;
    color: #2E3A59;
    line-height: 80px;
    font-size: 30px;
}
.sliderArea {
    max-width: 100%;
    margin: 0 auto;
}

.sliderArea.w300 {
    max-width: 100%;
}

.slick-slide {
    opacity: 0.7; /* デフォルトで全てのスライドを半透明に */
    margin: 0 5px;
}

.slick-slide img {
    width: 100%;
    height: auto;
}

.slick-prev, .slick-next {
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    color: #000;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active, .slick-current {
    opacity: 1;
}

.thumb {
    margin: 20px 0 0;
}

.thumb .slick-slide {
    cursor: pointer;
}

.thumb .slick-slide:hover {
    opacity: .7;
}

.slick-track {
    width: 100%; /* 幅を100%に設定 */
}

.full-screen .slick-list {
    overflow: hidden; /* スライドの外にはみ出た部分を隠す */
}

.full-screen.slider {
    min-width: 100%;
}

.slider li {
    width: 100%;  /* Slickが自動で調整するので幅は100% */
    height: 500px;
    list-style: none;
    box-sizing: border-box;
    padding: 20px; /* スライド間のスペースを調整 */
    margin: 0 20px; /* マージンをリセット */
    background-color: #FFF;
    color: #17212d;
    border-radius: 30px;
    text-align: center;
}

/* スライド間の余白調整 */
.slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.price-all{
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
}
.price-card{
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    margin-top: 50px;
    background-color: #2E3A59;
    border-radius: 50px;
    padding-bottom: 30px;
}
.price-card li{
    width: 30%;
    height: 600px;
    color: #fff;
    /* background-color: #F8F6F0; */
    /* border-radius: 40px; */
    /* box-shadow: 1px 1px 5px rgba(255, 255,255, 0.8); */
    padding-top: 30px;
}
.price-img{
    width: 250px;
    height: 250px;
    margin: 0 auto;
    position: relative;
}
.price-img::before{
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    background-color: #fff;
    width: 30px;
    height: 2px;

}
.price-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: #FFF 6px solid;
}
.price-content{
    width: 70%;
    margin: 0 auto;
    margin-top: 70px;
}
.price-content h4{
    text-align: center;
    color: #FFF;
    font-size: 25px;
}
.price-content h5{
    margin-top: 20px;
    font-size: 20px;
    font-weight: lighter;
}
.price-content p{
    font-weight: bold;
}
footer{
    width: 100%;
    height: 100%;
    background-color: #2E3A59;
}
footer p{
    width: 100%;
    text-align: center;
    font-size: 15px;
}
/* coupon */
.coupon-section{
    width: 100%;
    height: 100%;
  }
  .coupon-all{
    width: 95%;
    margin: 0 auto;
  }
  .coupon{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: #d6d6d6 2px solid;
  }
  .coupon-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    font-weight: bold;
  }
  .coupon-top span:nth-child(1){
    background-color: rgb(242, 118, 139);
    color: #e9ecef;
    padding: 5px;
    font-size: 12px;
  }
  .coupon-top span:nth-child(2){
    font-size: 15px;
    padding-top: 10px;
    padding-right: 10px;
    color: #cc4466;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    font-weight: 700; /* 太さを指定 */
  }
  .coupon-title{
    font-size: 16px;
    padding: 0 15px;
  }
  .coupon-content{
    width: 90%;
    height: 180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
  }
  .coupon-img{
    width: 40%;
    height: 100%;
    border: #dbdbe2 2px solid;
    border-radius: 10px;
  }
  .coupon-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
  .coupon-content p{
    width: 50%;
    font-size: 12px;
    margin: 0;
    line-height: 20px;
}
.coupon a{
    display: block;
    width: 50%;
    height: 40px;
    margin: 20px auto;
    font-size: 12px;
    text-align: center;
    background: linear-gradient(0,#007bff,#79b8fc);
    border-radius: 5px;
    font-weight: bold;
    line-height: 40px;
}
/* モバイル端末（600px以下）のスタイル */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
    h3{
        font-size: 25px;
    }
    p{
        font-size: 12px;
    }
    /* ロゴ */
    .logo {
        width: 20%;
    }
    .logo a{
        width: 100%;
    }

    /* ハンバーガーメニュー */
    .hamb {
        right: 10px;
        top: 30px;
        width: 30px;
        height: 30px;
    }

    /* ヘッダー画像 */
    .header-img {
        height: 40vh;
    }

    .header-img h3 {
        font-size: 30px;
    }
    .h-small{
        font-size: 16px;
    }
    .p-big{
        font-size: 14px;
    }
    .p-bigs{
        font-weight: bold;
        font-size: 16px;
    }
    /* top-menuセクション */
    .top-menu {
        flex-direction: column;
    }
    .top-menu h3{
        font-size: 25px;
        background-color: transparent;
        color: #fff;
        position: relative;
    }
    .top-menu h3::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }
    .top-menu h3::before{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }

    .top-menu-content {
        flex-direction: column;
        text-align: center;
    }

    .top-menu-left, .top-menu-right {
        width: 100%;
    }
    .top-menu-left p{
        margin: 20px 0;
        line-height: 30px;
        width: 90%;
    }

    .top-menu-right img {
        height: auto;
    }

    /* menu-allセクション */
    .menu-all{
        margin-top: 50px;
    }
    .menu-all li {
        flex-direction: column;
        height: auto;
    }
    .menu-all h4{
        background-color: transparent;
        color: #fff;
        position: relative;
        font-size: 25px;
    }
    .menu-all h4::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }
    .menu-all h4::before{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }

    .menu-all-p, .menu-all-img {
        width: 100%;
    }
    .menu-all-p{
        margin: 20px 0;
    }
    .menu-all-p h3{
        font-size: 23px;
    }
    .menu-all-p p {
        width: 90%;
        line-height: 30px;
    }
    /* メニューリスト */
    .menu-list{
        margin-top: 50px;
    }
    .menu-list1{
        width: 100%;
        margin-bottom: 0;
    }
    .menu-list h3{
        background-color: transparent;
        color: #fff;
        position: relative;
        font-size: 25px;
    }
    .menu-list h3::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }
    .menu-list h3::before{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }
    .menu-list1 h4{
        background-color: transparent;
        color: #FFF;
        font-size: 20px;
        border-bottom: #FFF 1px dashed;
    }
    .list-title::before,
    .list-title::after{
        background-color: #FFF;
    }
    .menu-list li{
        width: 70%;
        margin: 0 auto;
        border-bottom: #FFF 1px solid;
        margin-top: 20px;
        align-items: center;
    }
    .menu-img{
        height: 70%;
    }
    .menu-img img{
        border: #FFF 2px solid;
    }
    .menu-p h5{
        font-size: 14px;
    }
    .menu-p p{
        font-size: 12px;
        padding-top: 20px;
    }
    .menu-p p::before{
        bottom: -40%;
    }
    /* 料金セクション */
    .price-all h3{
        background-color: transparent;
        color: #FFF;
        position: relative;
        font-size: 25px;
    }
    .price-all h3::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }
    .price-all h3::before{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 20%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }
    .price-card {
        flex-direction: column;
        align-items: center;
    }
    .price-card{
        background-color:   transparent;
    }
    .price-card li {
        width: 90%;
        height: 500px;
        margin-bottom: 100px;
        background-color: #0377BA;
        border-radius: 50px;
        text-shadow: #333 1px 1px 3px;
        box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.3);
    }
    .price-img{
        width: 200px;
        height: 200px;
    }
    .price-content-all{
        margin-top: 70px;
    }
    .price-content{
        width: 100%;
        margin-top: 10px;
    }
    .price-content h4{
        font-size: 20px;
    }
    .price-content h5{
        text-align: center;
    }
    .price-content p{
        text-align: center;
        font-size: 16px;
    }
    /* フッター */
    footer {
        padding: 20px 0;
    }

    footer p {
        font-size: 12px;
    }
}

/* タブレット端末（600px〜900px）のスタイル */
@media (min-width: 601px) and (max-width: 900px) {
    body {
        font-size: 15px;
    }

    /* ロゴ */
    .logo {
        width: 70%;
    }

    /* ハンバーガーメニュー */
    .hamb {
        right: 40px;
        top: 30px;
        width: 35px;
        height: 35px;
    }

    /* ヘッダー画像 */
    .header-img {
        height: 50vh;
    }

    .header-img h3 {
        font-size: 45px;
    }

    /* top-menuセクション */
    .top-menu {
        padding: 20px;
    }

    .top-menu-content {
        flex-direction: column;
        text-align: center;
    }

    .top-menu-left, .top-menu-right {
        width: 90%;
    }

    .top-menu-right img {
        height: auto;
    }

    /* menu-allセクション */
    .menu-all li {
        height: auto;
        flex-direction: column;
    }

    .menu-all-p, .menu-all-img {
        width: 90%;
    }

    .menu-all-p p {
        width: 90%;
        line-height: 35px;
    }

    /* 料金セクション */
    .price-card {
        flex-direction: column;
        align-items: center;
    }

    .price-card li {
        width: 80%;
        height: auto;
        margin-bottom: 30px;
    }

    .price-img img {
        width: 80%;
        height: auto;
    }

    /* フッター */
    footer {
        padding: 30px 0;
    }

    footer p {
        font-size: 14px;
    }
}
