@charset "UTF-8";

/* 共通パーツ */
html {
  font-size: 16px;
}

body {
  color: #624649;
  font-family: "YuGothic", sans-serif;
  font-size: 1.25rem;
}

ul, li, ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition: 0.6s;
}

a:hover {
  transition: 0.6s;
}

.container {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

/* 見出しの設定 */
h1 {
  font-family: 'Yusei Magic', sans-serif;
  font-size: 5rem;
  letter-spacing: 10px;
  color: #F5CD46;
  font-weight: normal;
  text-shadow: 0px 0px 4px #fff;
  filter: drop-shadow(4px 2px 4px #fff);
}

h2 {
  font-size: 3rem;
  margin-bottom: -5px;
  font-family: 'Yusei Magic', sans-serif;
  font-weight: normal;
  letter-spacing: 4px;
  color: #C17340;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Yusei Magic', sans-serif;
  font-weight: normal;
  letter-spacing: 4px;
}

/* 各セクションタイトル */
.title {
  text-align: center;
  margin-bottom: 40px;
}
.ja-title {
  font-size: 1.25rem;
  color: #C17340;
}

/* 文字色 */
.color-red { color: #D93415; }
.color-yellow { color: #EEAD15; }
.color-orange { color: #E2710D; }
.color-green { color: #186434; }
.color-yellowgreen { color: #3F8439; }
.color-white { color: #fff; }

/* header */
.g-navi {
  z-index: 20;
  position: fixed;
  background-color: rgba(245, 242, 222, 0.9);
  width: 100%;
  height: 75px;
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  border-top: solid 6px #E57F42;
  font-size: 1rem;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.nav-wrapper img {
  padding: 3px;
  height: 70px;
}
.nav-wrapper img:hover {
  filter: drop-shadow(3px 3px 2px #A8A8A8);
  transition: 0.4s;
  opacity: 0.8;
}

.g-navi ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  /* margin-right: 1%; */
}
.g-navi ul li {
  width: 120px;
  text-align: center;
  transform: skewX(165deg);
}
.g-navi ul li a {
  font-weight: bold;
  padding: 23px 0;
  display: block;
  transform: skewX(-165deg);
  color: #E57F42;
}
.g-navi ul li:hover {
  color: #fff;
  background-color: #E57F42;
  transition: 0.8s;
  /* opacity: 0.5; */
}
.g-navi ul li:hover a {
  color: #fff;
  transition: 0.8s;
}

/* footer */
footer {
  background: #E88E3B;
  color: #fff;
  padding-top: 5px;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sns-links {
  position: absolute;
  right: 2rem;
  display: flex;
  justify-content: end;
}
.sns-link {
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: center;
  padding: 0.5rem;
}
.sns-link:hover {
  color: #ccc;
  background-color: #E57F42;
  opacity: 0.5;
}

.sns-link p {
  margin-left: 0.5rem;
  text-align: start;
  line-height: 1;
  font-size: 15px;
  font-weight: bold;
}

.copyright {
  padding: 5px;
  display: block;
  text-align: center;
}

@media screen and (min-width:960px) {
  .g-navi-sp {
    display: none;
  }
}


/* レスポンシブ対応：タブレット */
@media screen and (max-width:960px) {

  /* header */
  .g-navi {
    transform: translateY(-100%);
    transition: .5s ease-in-out;
    display: block;
    position: fixed;
    z-index: 20;
    padding-top: 60px;
    height: 100vh;
    width: 100vw;
  }

  .g-navi ul {
    display: block;
    font-size: 30px;
    width: 100%;
  }
  .g-navi ul li {
    width: 100%;
    text-align: center;
  }

  .g-navi img {
    display: none;
  }

  .g-navi.active {
    transform: translateY(0%);
    transition: .5s ease-in-out;
  }

  .g-navi-sp {
    
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(245, 242, 222);
    border-top: solid 8px #E57F42;
    width: 100vw;
    height: 78px;
    padding: 4%;
    z-index: 20;
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  }

  .sp-logo img {
    height: 60px;
  }

  .menu-trigger {
    position: relative;
    width: 30px;
    height: 42px;
    cursor: pointer;
  }
  .menu-trigger span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #624649;
    border-radius: 3px;
    transition: .35s ease-in-out;
  }
  .menu-trigger span:nth-child(1) { top: 6px; }
  .menu-trigger span:nth-child(2) { top: 18px; }
  .menu-trigger span:nth-child(3) { top: 30px; }

  /* ハンバーガーメニュークリック時のCSS */
  .menu-trigger.active span:nth-child(1) {
    top: 18px;
    transform: rotate(-45deg);
  }
  .menu-trigger.active span:nth-child(2), .menu-trigger.active span:nth-child(3) {
    top: 18px;
    transform: rotate(45deg);
  }

  /* footer */
  .footer-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .sns-links {
    position: relative;
    right: 0;
    display: flex;
    justify-content: end;
    text-align: center;
  }

}

/* レスポンシブ対応：スマートフォン */
@media screen and (max-width:767px) {

  /* 共通 */
  body {
    font-size: 0.75rem;
  }

  h1 {
    font-size: 3.5rem;
    letter-spacing: 5px;
    font-weight: bold;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1rem;
  }

  .ja-title {
    font-size: 1rem;
    color: #C17340;
  }

  .title {
    margin-bottom: 20px;
  }

  /* グローバルナビゲーション */
  .g-navi ul {
    font-size: 20px;
  }

  .sp-logo img {
    height: 50px;
  }

  .footer-content {
    font-size: 0.7rem;
  }
  .sns-links {
    padding-right: 20px;
  }
  .sns-link {
    padding: 0.25rem 0.5rem;
  }
  .sns-link img {
    width: 20px;
  }
  .sns-link p {
    font-size: 0.7rem;
  }

  small {
    font-size: 50%;
  }
}