@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

* {box-sizing: border-box;}

body,html{
    background: linear-gradient(95deg,rgb(178, 223, 219),rgb(255, 205, 210));
}

html,
body {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

body {
  font-family: Lato,"Kosugi Maru",Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  color: #fff;
  margin: 0;
  padding: 0;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

img{max-width:100%;display:block;max-height:100%;}

.wrapper {
    height: 100dvh;
    box-sizing: border-box;
}

.menu {
    margin-top: 15%;
    width: 35%;
    position: absolute;
    left: 148px;
    text-align: center;
}
.menu img{
    width: 50px;
    margin: 0 auto 40px;
}
.menu p{
    margin-bottom: 40px;
    line-height: 1.8em;
}
.menu > div > div > ul {
    list-style: none;
    padding: 0 1em;
    margin: 0;
    display: block;
    max-height: 100vh;
  }
.menu > div > div > ul > li {
    padding: 0;
    margin: 1em;
    font-size:18px;
    display: block;
  }
.menu > div > div > ul > li > a {
    position: relative;
    display: block;
    cursor: pointer;
    padding:24px 0;
    transition: color 0.4s ease;
    border:#fff solid 3px;
    font-size: 22px;
    font-weight: bold;
  }
.menu > div > div > ul > li > a:hover {
    color: #e5e5e5;
  }
.menu .sns-link{
width: 24px;
margin-top: 130px;
}
.swiper{
    background: linear-gradient(rgb(255, 205, 210), rgb(178, 223, 219));
    box-shadow: 0px 0px 20px 0px rgba(81, 163, 147, 0.2);
    position: absolute;
    right: 148px;
}
.swiper::before{
    content: "";
    display: block;
    position: absolute;
    top: 40px;
    right: calc(50% - 255px);
    background: linear-gradient(45deg, rgb(255, 205, 210), rgb(178, 223, 219));
    width: 90%;
    height: 90%;
    border-radius: 400px;
}

.logo{
    display: block;
    position:fixed;
    top:20px;
    left: 20px;
    width: 32px;
}

.copyright{
    position: fixed;
    bottom: 140px;
    right: -40px;
    transform: rotate(90deg);
    transform-origin:bottom center;
}

.copyright p{
    font-size: 10px;
    display: block;
    text-align: center;
    margin: 16px 0;
}

.swiper{
    width: 570px;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  
  .swiper-slide,
  .js-modal__btn {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .js-modal__btn {
    height: 100%;
  }
  
  .swiper-slide a,
  .swiper-slide img,
  .js-modal__btn img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
    /*margin-bottom: -40px;*/
  }
  .autoplay-progress {
    position: absolute;
    right: 24px;
    bottom: 40px;
    z-index: 10;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}
  
  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 2px;
    stroke: #fff;
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }
  .swiper-button-next, .swiper-button-prev{
      width: 80px;
      height: 80px;
  }
  .swiper-button-prev{
      left: 0px;
  }
  .swiper-button-next{
      right: 0px;
  }
  
  .swiper-button-prev:after,.swiper-rtl .swiper-button-next:after,
  .swiper-button-next:after,.swiper-button-prev:after{
      content:"";
      display:block;
      width:80px;
      height:3px;
      background-color:#fff;
      position:absolute;
      top:50%;
  }
  
  .swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
      bottom:var(--swiper-pagination-bottom,auto);
      top:var(--swiper-pagination-top,10px);
  }
  
  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
      margin: 0 var(--swiper-pagination-bullet-horizontal-gap,8px);
  }
  
  .swiper-pagination-bullet{
      border-radius: var(--swiper-pagination-bullet-border-radius,10%);
      background: var(--swiper-pagination-bullet-inactive-color,#fff);
      opacity: var(--swiper-pagination-bullet-inactive-opacity, 1.0);
      transform: rotate(45deg);
  }
  .swiper-pagination-bullet-active{
      width: 10px;
      height: 10px;
  }
  

  /* モーダル全体のスタイル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    overflow: hidden;
  }
  
  /* モーダルのコンテンツ */
  .modal-content {
    position: fixed;
    bottom: -100%;
    width: 100%;
    background: linear-gradient(45deg,rgb(255, 205, 210), rgb(178, 223, 219));
    border-radius: 20px 20px 0 0;
    padding: 20px;
    box-shadow: 0px -2px 10px rgba(255, 190, 222, 0.2);
    transition: bottom 0.3s ease-in-out;
  }
  .modal-content::before{
    margin: -4px auto 5px auto;
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(43, 121, 101, 0.4);
  }

  /* 表示時のクラス */
.modal.show .modal-content {
    bottom: 0;
  }
  
  /* 背景オーバーレイ */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
  }
  
  /* モーダルのテキスト */
  .modal-text {
    text-align: center;
    font-size: 16px;
    color: #fff;
  }
  