@charset "UTF-8";
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-wrap: wrap;
  }
}

.min_container {
  width: 960px;
  margin: 0 auto;
}

.container {
  min-width: 1020px;
  margin: 0 auto;
  width: 68.75%;
}

.smallest_container {
  width: 640px;
  margin: 0 auto;
}

br.sp {
  display: none;
}

br.pc {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.non_image {
  background-image: url(../images/common/non_image.jpg);
}

.flex--start {
  justify-content: flex-start;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/*-------------------------
    ボタン
-------------------------*/
.common__btn {
  width: 200px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background-color: #214F69;
  font-weight: bold;
  padding: 18px 0;
  border-radius: 50px;
  border: 2px solid #214F69;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .common__btn {
    margin: auto;
  }
}
.common__btn:hover {
  background-color: #fff;
  color: #214F69;
}

/*-------------------------
    ヘッダー
-------------------------*/
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 5000;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  header {
    position: fixed;
    opacity: 0;
    transition: all 0.5s;
    transform: translate(100%);
  }
}
header .header__wrap {
  width: 100%;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  header .header__wrap {
    background-color: #214F69;
    overflow-y: scroll;
    min-height: 100vh;
  }
}
header .header__wrap a.header__logo {
  width: 300px;
  margin-left: 23px;
}
@media screen and (max-width: 768px) {
  header .header__wrap a.header__logo {
    width: 150px;
    margin-top: 20px;
    margin-left: 20px;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
  }
}
header .header__wrap a.header__logo b {
  color: #214F69;
  font-size: 24px;
  font-weight: 500;
}
header .header__wrap ul#gnav {
  width: 60%;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  header .header__wrap ul#gnav {
    z-index: 5000;
  }
}
header .header__wrap ul#gnav li a {
  color: #3B4043;
  padding: 38px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
header .header__wrap ul#gnav li:last-child {
  width: 172px;
}
header .header__wrap ul#gnav li:last-child a {
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
  background-color: #214F6A;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
header .header__wrap ul#gnav li.course ul.sp-hidden {
  display: none;
  background-color: #fff;
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
}
header .header__wrap ul#gnav li.course ul.sp-hidden li {
  margin-bottom: 10px;
}
header .header__wrap ul#gnav li.course ul.sp-hidden li a {
  color: #214F6A;
  padding: 10px 0;
}
header .header__wrap ul#gnav li.course ul.sp-hidden li a p {
  color: #214F6A;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  header .header__wrap ul#gnav {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 80px;
  }
  header .header__wrap ul#gnav li {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
  }
  header .header__wrap ul#gnav li a {
    color: #fff;
    width: 100%;
    display: block;
    padding: 5px 0;
  }
  header .header__wrap ul#gnav li.course p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
  }
  header .header__wrap ul#gnav li.course p span {
    padding-right: 10px;
  }
  header .header__wrap ul#gnav li:last-child {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 0;
  }
  header .header__wrap ul#gnav li:last-child a {
    color: #204F6A;
    padding: 20px 0;
    background-color: #fff;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}
header .hidden__menu {
  width: 100%;
  background: #4E829F;
  padding-top: 40px;
  padding-bottom: 40px;
  position: absolute;
  top: 100%; /* 親要素の下に配置 */
  left: 0;
  transition: transform 0.5s ease-out;
  transform: translateY(-150%);
}
header .hidden__menu.show {
  display: block;
  transform: translateY(0);
}
header .hidden__menu .container ul {
  justify-content: space-around;
}
header .hidden__menu .container ul li {
  width: 15%;
}
header .hidden__menu .container ul li a {
  color: #fff;
  display: block;
  overflow: hidden;
  width: 100%;
}
header .hidden__menu .container ul li a .course__thumb {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70%;
  transition: transform 0.5s ease-out;
  overflow: hidden;
  width: 100%;
}
header .hidden__menu .container ul li a .course__thumb.aonodokutsu {
  background-image: url(/wp-content/themes/swordfish/images/common/aonodokutsu-menu.jpg);
}
header .hidden__menu .container ul li a .course__thumb.sup {
  background-image: url(/wp-content/themes/swordfish/images/top/sup.jpg);
}
header .hidden__menu .container ul li a .course__thumb.marinactivity {
  background-image: url(/wp-content/themes/swordfish/images/top/marinactivity.jpg);
}
header .hidden__menu .container ul li a .course__thumb.pala {
  background-image: url(/wp-content/themes/swordfish/images/top/pala.jpg);
}
header .hidden__menu .container ul li a .course__thumb.bbq {
  background-image: url(/wp-content/themes/swordfish/images/top/bbq.jpg);
}
header .hidden__menu .container ul li a .course__thumb.fishing {
  background-image: url(/wp-content/themes/swordfish/images/top/fishing.jpg);
}
header .hidden__menu .container ul li p {
  position: relative;
  color: #fff;
  font-size: 16px;
  padding-top: 40px;
  font-weight: bold;
}
header .hidden__menu .container ul li p::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .open header .header__wrap a.header__logo img.black {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .open header .header__wrap a.header__logo img.white {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  .open header {
    opacity: 1;
    z-index: 5000;
    transform: translate(0%);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  a.header__logo {
    width: 150px;
    margin-top: 20px;
    margin-left: 20px;
    position: fixed;
    z-index: 9999;
    top: 0;
    transition: all 0.3s;
    left: 0;
    font-size: 20px;
    color: #214F6A;
  }
  a.header__logo img {
    width: 100%;
    transition: all 0.3s;
  }
  .open a.header__logo {
    z-index: -5000;
  }
}
@media screen and (max-width: 768px) {
  #toggle {
    display: block;
    position: fixed;
    right: 27px;
    top: 31px;
    z-index: 9999;
    height: 30px;
  }
  #toggle span {
    background: #000;
    height: 2px;
    display: block;
    transition: all 0.3s;
    transform: translateY(0px);
  }
  #toggle span:nth-of-type(1) {
    width: 30px;
    transform: translateX(0px) translateY(0px) rotate(0);
  }
  #toggle span:nth-of-type(2) {
    width: 20px;
    transform: translateX(10px) translateY(10px);
  }
  .open #toggle span {
    background-color: #fff;
  }
  .open #toggle span:nth-of-type(1) {
    width: 30px;
    transform: translateX(0px) translateY(4px) rotate(-45deg);
  }
  .open #toggle span:nth-of-type(2) {
    width: 30px;
    transform: translateX(0px) translateY(2px) rotate(45deg);
  }
}
/*-------------------------
    セクションのタイトル
-------------------------*/
.section__content h2.section__content--ttl {
  margin-bottom: 5.7rem;
}
.section__content h2.section__content--ttl small {
  font-weight: normal;
  font-size: 16px;
  display: inline-block;
  padding-left: 40px;
  position: relative;
  color: #204F6A;
  margin-bottom: 8px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section__content h2.section__content--ttl small {
    font-size: 13px;
  }
}
.section__content h2.section__content--ttl small::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #204F6A;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  margin: auto;
}
.section__content h2.section__content--ttl span {
  display: block;
  font-size: clamp(29px, 3.2rem, 43px);
  font-weight: 900;
  color: #204F6A;
}
@media screen and (max-width: 768px) {
  .section__content h2.section__content--ttl span {
    font-size: 26px;
  }
}
.section__content p.section__content--text {
  font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
  color: #3B4043;
  line-height: 2;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .section__content p.section__content--text {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

/*-------------------------
    流れる文字
-------------------------*/
.scroll__textWrapper {
  white-space: nowrap;
  width: 100%;
  position: relative;
}
.scroll__textWrapper .big__slideText {
  color: #F1F8FE;
  font-size: clamp(160px, 12rem, 200px);
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.06em;
  margin-right: 2rem;
}

/*-------------------------
    中央揃いタイトル
-------------------------*/
h2.sec_ttl--center {
  text-align: center;
}
h2.sec_ttl--center span {
  font-size: 16px;
  display: block;
  text-align: center;
  position: relative;
  font-weight: normal;
  color: #204F6A;
  font-weight: 400;
}
h2.sec_ttl--center span::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #204F6A;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  h2.sec_ttl--center span::before {
    bottom: -15px;
  }
}
h2.sec_ttl--center strong {
  display: block;
  font-size: clamp(2.1rem, 1.336rem + 3.82vw, 42px);
  color: #204F6A;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  h2.sec_ttl--center strong {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .container {
    min-width: 1px;
    width: 89%;
  }
  .order_1 {
    order: 2;
  }
  .order_2 {
    order: 1;
  }
  br.sp {
    display: block;
  }
  a.common_btn {
    margin: auto;
  }
  .smallest_container {
    width: 89%;
  }
  .slick-next {
    width: 30px;
    height: 30px;
    background-image: url(../images/common/point_next.svg) !important;
    background-size: contain;
  }
  .slick-next:before {
    content: "";
  }
  .slick-prev {
    width: 30px;
    height: 30px;
    background-image: url(../images/common/point_prev.svg) !important;
    background-size: contain;
  }
  .slick-prev:before {
    content: "";
  }
}
/*-------------------------
    Footer
-------------------------*/
#footer {
  padding-top: 7rem;
  background-color: #204F6A;
  padding-bottom: 14rem;
}
@media screen and (max-width: 768px) {
  #footer {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
#footer .container {
  width: 68%;
  margin-left: auto;
  margin-right: auto;
}
#footer .container .flex {
  align-items: center;
}
#footer .container .logo {
  color: #fff;
  text-align: center;
  font-size: 32px;
  margin: auto;
  font-weight: 600;
}
#footer .container .logo a {
  color: #fff;
}
#footer .container ul.footer__navigation {
  justify-content: center;
  margin-top: 40px;
}
#footer .container ul.footer__navigation li {
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  #footer .container ul.footer__navigation li {
    padding: 10px 0;
  }
}
#footer .container ul.footer__navigation li a {
  color: #fff;
  font-size: 16px;
}
#footer .container small.copy {
  font-size: 12px;
  color: #fff;
  margin-top: 80px;
  display: block;
  text-align: center;
}

/*-------------------------
    固定ページ共通
-------------------------*/
.page__mainVisual {
  margin-bottom: 18.5rem;
}
.page__mainVisual .page__mainVisual--thumb {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 57%;
  height: 600px;
  order: 2;
  border-bottom-left-radius: 50px;
}
@media screen and (max-width: 768px) {
  .page__mainVisual .page__mainVisual--thumb {
    width: 80%;
    height: 300px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.page__mainVisual .page__mainVisual--content {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .page__mainVisual .page__mainVisual--content {
    width: 100%;
    padding-top: 160px;
    padding-bottom: 40px;
  }
}
.page__mainVisual .page__mainVisual--content h1 {
  position: relative;
  right: -12rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  .page__mainVisual .page__mainVisual--content h1 {
    right: 0;
    margin-left: 20px;
  }
}
.page__mainVisual .page__mainVisual--content h1 span {
  font-family: "antro";
  color: #99C8E3;
  line-height: 1.2;
  font-weight: normal;
  display: block;
  font-size: clamp(125px, 10.5rem + 10vw, 18rem);
}
@media screen and (max-width: 768px) {
  .page__mainVisual .page__mainVisual--content h1 span {
    font-size: 45px;
  }
}
.page__mainVisual .page__mainVisual--content h1 b {
  color: #214F6A;
  display: block;
  font-size: clamp(48px, 4.036rem + 3.82vw, 6.9rem);
}
@media screen and (max-width: 768px) {
  .page__mainVisual .page__mainVisual--content h1 b {
    font-size: 30px;
  }
}

/*-------------------------
    MAP
-------------------------*/
#map {
  width: 100%;
}
#map .container .flex {
  align-items: flex-start;
}
#map .container .flex h2 {
  margin-bottom: 4.5rem;
  color: #214F6A;
}
#map .container .flex h2 strong {
  font-size: clamp(21px, 1.336rem + 3.82vw, 4.2rem);
  font-weight: bold;
  margin-right: 3rem;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #map .container .flex h2 strong {
    font-size: 21px;
    display: block;
    margin-bottom: 20px;
  }
}
#map .container .flex h2 span {
  font-size: 16px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #map .container .flex h2 span {
    margin-bottom: 20px;
    display: block;
  }
}
#map .container .flex a.common__btn {
  width: 240px;
}
#map .container .flex a.common__btn .flex {
  justify-content: center;
}
#map .container .flex a.common__btn .flex img {
  padding-right: 10px;
}
#map iframe {
  width: 100%;
  height: 60rem;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  #map iframe {
    height: 250px;
    border-radius: 0px;
    margin-bottom: 40px;
  }
}
#map a.sp-flex {
  display: none;
}
@media screen and (max-width: 768px) {
  #map a.sp-flex {
    display: flex;
    justify-content: center;
  }
}

.page__mainVisual .page__mainVisual--thumb {
  background-image: url(./../../images/infomation/mv02.png);
}

@media screen and (max-width: 768px) {
  .infomation__wrapper {
    padding: 60px 0;
  }
}
.infomation__wrapper ul.flex {
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.infomation__wrapper ul.flex::after {
  content: "";
  width: 24%;
  display: block;
}
.infomation__wrapper ul.flex::before {
  content: "";
  width: 24%;
  display: block;
  order: 1;
}
.infomation__wrapper ul.flex li {
  width: 24%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .infomation__wrapper ul.flex li {
    width: 48%;
  }
}
.infomation__wrapper ul.flex li .thumb {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  width: 100%;
  border: 1px solid #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .infomation__wrapper ul.flex li .thumb {
    height: 150px;
  }
}
.infomation__wrapper ul.flex li .post_ttl {
  color: #000;
}
.infomation__wrapper ul.flex li .post_ttl span {
  font-size: 14px;
}
.infomation__wrapper ul.flex li .post_ttl h3 {
  font-size: 18px;
}

.pagination {
  justify-content: center;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .pagination {
    width: 200px;
  }
}
.pagination span {
  color: #000;
  font-size: 16px;
}
.pagination a {
  color: #000;
  font-size: 16px;
}/*# sourceMappingURL=index.css.map */