@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 {
    transition: .4s ease-out;
  }

  .header-menu-list a {
    text-decoration: none;
    color: black;
    font-weight: 700;
    transition: .4s ease-out;
  }

  .header-menu-list a:hover {
    text-decoration: underline;
  }

  #section1 {
    width: 100%;
    height: 500px;
    margin-bottom: 40px;
  }

  .section1-title {
    width: 97%;
    height: 100%;
    background-image: url(../img/dolphinsshow.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: 120px;
  }

  .section2-content {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
  }

  .recruitment {
    display: flex;
    align-items: center;
  }

  .recruitment-title {
    padding-right: 20px;
    border-right: 1px solid rgb(129, 126, 126);
  }

  .recruitment-status-button {
    background-color: transparent;
    border: 1px solid black;
    border-radius: 20px;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
  }

  .choice-tag {
    color: #0EC3D7;
    border-color: #0EC3D7;
  }

  hr {
    width: 100%;
    margin: 50px 0;
  }

  hr:last-child {
    margin-bottom: 60px;
  }

  .pagination_block {
    width: 100%;

  }

  .pagination-container {
    margin: 0 auto;
  }

  .pagination-container li {
    list-style: none;
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pagination-container li:first-child, .pagination-container li:last-child{
    width: auto;
  }

  /*フェードイン */
  .fadeIn {
    opacity: 0;
    transition: 2s;
  }

  .fadeIn.is-show {
    opacity: 1;
  }

  .pagination-container a {
    text-decoration: none;
    color: inherit;
  }

  .pagination {
    display: flex;
    gap: 30px;
  }

  .page.active {
    color: #0EC3D7;
    border-color: #0EC3D7;
  }

  .page:hover {
    cursor: pointer;
  }

  .event-gp {
    width: 100vh;
    display: flex;
    margin: 0 auto;
  }

  .event-img {
    width: 360px;
    min-width: 360px;
    height: 220px;
    min-height: 220px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }

  .event-detail {
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .event-detail-1, .event-detail-2, .event-detail-3 {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .event-detail-tag {
    padding: 10px 50px;
    background-color: #E67171;
    border-radius: 30px;
    color: white;
    font-weight: 700;
  }

  .event-normal-tag {
    padding: 7px 14px;
    border: 1px solid black;
    border-radius: 10px;
    width: fit-content;
  }

  .prev::before {
    display: inline-block;
    content: "";
    width: 35px;
    height: 11px;
    background-image: url(../img/arrow.png);
    background-size: cover;
    background-position: center;
    transform: rotate(180deg);
  }

  .prev:hover {
    cursor: pointer;
    transform: scale(1.1);
  }

  .next::after {
    display: inline-block;
    content: "";
    width: 35px;
    height: 11px;
    background-image: url(../img/arrow.png);
    background-size: cover;
    background-position: center;
  }

  .next:hover {
    cursor: pointer;
    transform: scale(1.1);
  }


/** フッター */
  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: .3s ease-out;
  }

  .footer-menu-list a {
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 700;
    transition: .3s ease-out;
  }

  .footer-menu-list a:hover {
    text-decoration: underline;
  }


}