@charset "UTF-8";

/* CSS Document */

/* WordPress管理バー　下 */
#wpadminbar {
  top: initial !important;
  position: fixed !important;
  bottom: 0;
}

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #333;
  /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}

section h2 {
  font-size: 2.4rem;
}

a:hover {
  opacity: 0.5;
}

.none {
  display: none;
}

/* classでnoneと指定するだけで消せる設定 */
*,
*:before,
*:after {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* header */
.header {
  width: 100%;
  height: auto;
  background-color: #fff;
}

.header-container {
  position: relative;
  margin: 0 auto;
  padding-top: 3.4666666667vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container__nav {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: -170%;
  background-color: #93CBD8;
  transition: all 0.6s;
}

.header-container__nav_head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 16vw;
  background-color: #fff;
}

.header-container__nav_head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8vw;
  max-height: 30px;
  bottom: -3.355704698vw;
  background-image: url(..//images/decoration/header_bg2.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.header-container__nav_head img {
  display: block;
  width: 100%;
  padding: 0 16px;
}

.header-container__nav_head a {
  position: absolute;
  display: block;
  width: 34.666%;
  z-index: 2;
}

.header-container__nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 30px 0 30px;
  padding: 0 16px;
  gap: 30px;
}

.header-container__nav__list-item {
  text-align: left;
}

.header-container__nav__list-item:last-child {
  margin-bottom: 0;
}

.header-container__nav__list-item a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.header-container__nav__sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  position: absolute;
  z-index: 1;
  bottom: 30%;
}

.header-container__nav__sns-list-item {
  width: 50px;
  margin: 0 20px;
}

.header-container__nav__sns-list-item:first-child {
  margin-left: 0;
}

.header-container__nav__sns-list-item:last-child {
  margin-right: 0;
}

.header-container__nav__sns-list-item a {
  display: block;
}

.header-container__nav__sns-list-item a img {
  display: block;
  width: 100%;
  padding: 7px;
  border-radius: 10px;
  background-color: #71acb9;
}

.header-container__nav .nav-decoration {
  position: absolute;
  display: block;
  width: 100%;
  height: 20%;
  bottom: 0;
}

.header-container__nav .nav-decoration img {
  display: block;
  position: absolute;
}

.header-container__nav .nav-decoration-left {
  width: 70%;
  height: 28vw;
  max-height: 105px;
  left: -10%;
}

.header-container__nav .nav-decoration-right {
  width: 60%;
  height: 24vw;
  max-height: 90px;
  right: -10%;
  bottom: calc(-30/375*100vw);
}

.header-container .logo {
  position: relative;
  width: 21.3333333333vw;
  margin-left: 16px;
  z-index: 1;
}

.header-container .logo a {
  display: block;
}

.header-container .logo a img {
  width: 100%;
}

.header-container__hamburger {
  position: relative;
  width: 10.6666666667vw;
  height: auto;
  max-width: 60px;
  margin-right: 30px;
  z-index: 999;
  cursor: pointer;
  transform: rotate(-360deg);
  transition: all 1s;
}

.header-container__hamburger span {
  display: block;
  width: 100%;
  height: 5px;
  background-color: #93CBD8;
  border-radius: 3px;
}

.header-container__hamburger span:nth-child(2) {
  margin-top: 2.9333333333vw;
}

.header-container__hamburger span:nth-child(3) {
  margin-top: 2.9333333333vw;
}

.header-container__nav.panelactive {
  position: fixed;
  top: 0;
}

.header-container__hamburger.active {
  position: fixed;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  max-width: 60px;
  max-height: 60px;
  margin-right: 30px;
  right: 0;
  z-index: 999;
  cursor: pointer;
  background-color: #FFE178;
  border-radius: 15%;
  transform: rotate(360deg);
  transition: all 1s;
}

.header-container__hamburger.active span {
  position: absolute;
  transition: all 0.4s;
}

.header-container__hamburger.active span:nth-child(1) {
  top: 50%;
  left: 0;
  margin: 0;
  transform: translateY(-50%) rotate(-45deg);
  background-color: #fff;
}

.header-container__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header-container__hamburger.active span:nth-child(3) {
  top: 50%;
  left: 0;
  margin: 0;
  transform: translateY(-50%) rotate(45deg);
  background-color: #fff;
}

/* －－－－－－－－－－－スマホ、タブレット横向き－－－－－－－－－－－ */
@media (min-width: 300px) and (orientation: landscape) {
  .header-container__nav {
    top: 0;
  }
  .header {
    padding: 0 160px;
  }

  .header-container {
    max-width: 1120px;
    padding-top: 2.0833333333vw;
    justify-content: center;
  }

  .header-container h1 {
    max-width: 150px;
    min-width: 150px;
    margin: 0 !important;
  }

  .header-container__nav {
    display: block;
    background-color: initial;
    width: initial;
    height: initial;
    position: initial;
  }

  .header-container__nav_head {
    display: none;
  }

  .header-container__nav__list {
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
    padding: 0;
    gap: 10px;
  }

  .header-container__nav__list-item {
    margin: 0 0 0 3.4722222222vw;
  }

  .header-container__nav__list-item a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: #54B8CC;
  }

  .header-container__nav__sns-list {
    display: none;
  }

  .header-container__nav .nav-decoration {
    display: none;
  }

  .header-container__hamburger {
    display: none;
  }
}

@media (min-width: 895px) {
  .header {
    padding: 0 160px;
  }

  .header-container {
    max-width: 1120px;
    padding-top: 2.0833333333vw;
    justify-content: space-between;
  }

  .header-container h1 {
    max-width: 150px;
  }

  .header-container__nav {
    display: block;
    background-color: initial;
    width: initial;
    height: initial;
    position: initial;
  }

  .header-container__nav_head {
    display: none;
  }

  .header-container__nav__list {
    flex-direction: initial;
    margin: 0;
    padding: 0;
  }

  .header-container__nav__list-item {
    margin: 0 0 0 3.4722222222vw;
  }

  .header-container__nav__list-item a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: #54B8CC;
  }

  .header-container__nav__sns-list {
    display: none;
  }

  .header-container__nav .nav-decoration {
    display: none;
  }

  .header-container__hamburger {
    display: none;
  }
}

  /* headerホバーアニメーション */
  .line li a {
    position: relative;
  }

  .line .line-item a:hover {
    color: #FFE178;
  }

  .line .line-item a::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFE178;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }

  .line .line-item a:hover:after {
    transform: scale(1, 1);
  }

/* footer */
.footer {
  position: relative;
  background-color: #93CBD8;
}

.footer::before {
  content: "";
  display: block;
  position: absolute;
  top: -39px;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 40px;
  background: url(..//images/decoration/footer_bg.svg) no-repeat top center/100% 100%;
}

.footer__container {
  padding: 16vw 16px 30px;
  text-align: left;
}

.footer__container h2 {
  width: 21.3333333333vw;
  margin-bottom: 60px;
}

.footer__container h2 a {
  display: block;
  width: 100%;
}

.footer__container h2 a img {
  width: 100%;
}

.footer__container__nav__list {
  margin-bottom: 40px;
  list-style: none;
}

.footer__container__nav__list-item {
  margin-bottom: 30px;
}

.footer__container__nav__list-item a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.footer__container__nav__list-item:last-child {
  margin-bottom: 40px;
}

.footer__container__nav__snslist {
  display: flex;
  list-style: none;
  align-items: center;
  margin-bottom: 70px;
}

.footer__container__nav__snslist-item {
  width: 8%;
  margin-right: 20px;
}

.footer__container__nav__snslist-item a {
  display: block;
}

.footer__container__nav__snslist-item a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__container__nav__snslist-item:last-child {
  margin-right: 0;
}

.footer__container .footer__decoration {
  display: none;
}

.footer small {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  padding-bottom: 30px;
}

@media (min-width: 1120px) {
  .footer {
    padding: 60px 160px;
  }

  .footer__container {
    display: flex;
    padding: 0;
    max-width: 1120px;
    margin: 0 auto 60px;
  }

  .footer__container h2 {
    width: 150px;
    text-align: left;
    margin-right: 19.4444444444vw;
  }

  .footer__container h2 a {
    display: block;
  }

  .footer__container__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 50%;
    transform: translate(50%);
  }

  .footer__container__nav__list {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }

  .footer__container__nav__list-item {
    margin: 0 50px 0 0;
  }

  .footer__container__nav__list-item:last-child {
    margin: 0;
  }

  .footer__container__nav__snslist {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }

  .footer__container__nav__snslist-item {
    width: 30px;
  }

  .footer__container .footer__decoration {
    display: flex;
    position: relative;
    right: -56%;
    top: -9.7222222222vw;
  }

  .footer__container .footer__decoration-yellow {
    position: absolute;
    width: 6.9444444444vw;
    top: 0vw;
  }

  .footer__container .footer__decoration-yellow img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .footer__container .footer__decoration-turquoise {
    position: absolute;
    width: 4.3055555556vw;
    transform: translate(-13.1944444444vw, 6.9444444444vw);
  }

  .footer__container .footer__decoration-turquoise img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .footer__container .footer__decoration-white {
    position: absolute;
    width: 2.9861111111vw;
    transform: translate(-5.5555555556vw, 12.5vw);
  }

  .footer__container .footer__decoration-white img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* －－－－－－－－－－－ページtopへ戻るボタン－－－－－－－－－－－ */
#page-top {
  position: fixed;
  right: 5%;
  bottom: 20%;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(..//images/decoration/decoration_dark-turquoise.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  text-decoration: none;
  text-align: center;
  width: 80px;
  height: 80px;
  font-size: 1.6rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background-image: url(..//images/decoration/decoration_yellow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #585F62;
  opacity: 1;
  width: 100px;
  height: 100px;
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(100px);
  }
}

/* ※※※load画面用※※※ */
/* #splash {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
} */


/* Loadingバー */
/* #splash_text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 999;
  width: 456px;
  border-radius: 10px;
  transform: translateY(-50%);
  color: #fff;
}

@media (max-width: 460px) {
  #splash_logo #splash_text {
    width: 220px;
  }
} */




/* load画像 */
/* #splash_image {
  position: relative;
  top: 32%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
  height: 152px;
  z-index: 999;
  animation: UnicornAnime 2s forwards;
  opacity: 0;
}

#splash_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
} */

/* #splash {
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
background:#333;
text-align:center;
color:#fff;
display: none;
}

#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
} */

/* Loading アイコンの大きさ設定　*/
/* #splash_logo img {
	width:40px;
}

@keyframes UnicornAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
} */