@charset "utf-8";

/*CSSライブラリのインポート*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p, h2 {
  /* font-family: "Sawarabi Mincho", serif; */
  font-family: sans-serif;
}

/* PC */
@media screen and (min-width: 960px) {
  header {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 2%;
  }

  .logo a {
    display: grid;
  }

  .logo-img {
    border-radius: 40px;
    width: 130px;
    height: 70px;
  }

  .right-menu {
    margin: 0 0 0 auto;
  }

  .header-menu {
    display: flex;
    list-style: none;
    gap: 40px;
  }

  .header-menu-list a {
    text-decoration: none;
    color: black;
    font-weight: 700;
  }

  #section1 {
    width: 100%;
    height: 500px;
    margin-bottom: 40px;
  }

  .section1-title {
    width: 97%;
    height: 100%;
    background-image: url(../img/beach.png);
    background-size: cover;
    border-radius: 50px;
    margin: 0 auto;
    padding-left: 100px;
    padding-top: 140px;
  }

  .section1-title-text {
    color: white;
    font-size: 48px;
    border-bottom: 5px solid white;
    letter-spacing: 8px;
    width: fit-content;
  }

  .section1-title-detail {
    color: white;
    margin-top: 30px;
  }

  #section2 {
    width: 100%;
    height: auto;
    margin-bottom: 70px;
  }

  .section2-content {
    width: 97%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section2-title {
    margin-bottom: 60px;
  }

  .fee-list {
    display: flex;
    border-radius: 40px;
    margin-bottom: 150px;
  }

  .fee-item {
    width: 300px;
    height: 80px;
    list-style: none;
    background-color: #D9D9D9;
  }

  .fee-item:first-child, .fee-item:first-child .fee-button {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .fee-item:last-child, .fee-item:last-child .fee-button {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .fee-button {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .fee-button:hover {
    transform: scale(1.1);
  }

  .select {
    background-color: #24CFFF;
    color: white;
  }

  .fee-item:nth-child(2) {
    border-left: 1px solid #8C8C8C;
    border-right: 1px solid #8C8C8C;
  }

  .fee-table {
    width: 500px;
    height: 110px;
    position: absolute;
    transform: translate(-250px, -100px);
  }

  .fee-table th {
    width: 150px;
    height: auto;
  }

  .fee-table tr:first-child th:first-child {
    background-image: linear-gradient(to right top,
    transparent calc(50% - 0.5px),
     #ffffff 50%, #ffffff calc(50% + 0.5px),
      transparent calc(50% + 1px));
  }

  .fee-table td {
    text-align: center;
    font-weight: 700;
  }

  .per {
    background-color: #B0B0B0;
  }

  .weekdays {
    background-color: #82E898;
  }

  .holiday {
    background-color: #F2BC48;
  }

  /*ローディング*/
  /* .animoSpinner{ 
    border:4px solid #E5EDFF;
    border-left-color:#f39c12;
    border-radius:50%;
    width:50px;
    height:50px;
    animation:spinner1 1.2s linear infinite;
    display: none;
  }

  @keyframes spinner1{
    0%{
      transform:rotate(0)
    }
    100%{
      transform:rotate(360deg)
    }
  } */
  /*↑ローディング処理*/

  .donutSpinner {
    display: inline-block;
    border: 4px solid #E5EDFF;
    border-left-color: #5850EB;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: donut-spin 1.2s linear infinite;
  }

  @keyframes donut-spin {
    to {
      transform: rotate(1turn);
    }
  }


  #section3 {
    width: 100%;
    height: auto;
    margin-bottom: 70px;
  }

  .section3-content {
    width: 97%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF0F0;
    border-radius: 50px;
  }

  .section3-title {
    margin-top: 60px;
  }

  .section3-detail {
    margin-top: 75px;
    font-size: 24px;
  }

  .section3-mein {
    margin-top: 75px;
    margin-bottom: 50px;
    color: red;
    font-size: 36px;
  }





  footer {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
  }

  .footer-content {
    width: 97%;
    height: 100%;
    background-image: url(../img/footer.png);
    background-size: cover;
    margin: 0 auto;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 25%;
  }

  .footer-logo {
    margin-left: 170px;
  }

  .footer-menu-list {
    list-style: none;
    margin-bottom: 20px;
    transition: .4s ease-out;
  }

  .footer-menu-list a {
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 700;
    transition: .4s ease-out;
  }

  .footer-menu-list a:hover {
    text-decoration: underline;
  }
}