@charset "utf-8";

/* ここからリセット */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  /* ↓　基本のフォント */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #343F40;
  line-height: 150%;
  letter-spacing: 1.5px;
  /* ↑　基本のフォント */
  background-color: #ffffff;
}

img {
  width: 100%;
}

/* ここから見出しのフォントなど */
.ja_ttl2 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}

.en_ttl2 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  color: #31888B;
  text-align: center;
  letter-spacing: 1px;
}

.ttl_under {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  padding-top: 5px;
}

.nav_text {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  color: #31888B;
  letter-spacing: 1px;
}

.nav_small_text {
  font-size: 12px;
  letter-spacing: 1px;
}

/* ここからリンクボタン */
.linkbtn_area {
  /* border: solid 1px #f00; */
  text-align: center;
}

.linkbtn {
  background-color: #31888B;
  display: inline-block;
  min-width: 279px;
  line-height: 60px;
  border-radius: 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: .3s;
}

.linkbtn:hover {
  background-color: #A7D4CA;
  color: #343F40;
}

/* PC背景 */
.bg {
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg_pc.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  position: fixed;
}

.bg_inner {
  display: none;
}


@media (min-width: 1320px) {

  .bg_inner {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .bg_bottom {
    position: absolute;
    bottom: 0;
  }

  .bg_bottom p {
    font-size: 16px;
    padding-left: 42px;
    margin-bottom: -40px;
  }

  .bg_bottom p span {
    color: #897A47;
    font-weight: 500;
  }
}


/* 中央エリア */

.container {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 0px 14px 0px rgba(184, 205, 206, 0.35);
}

/* ここからヘッダー */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px transparent;
}

.header_inner {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_logo {
  width: 23%;
  padding-top: 5px;
}

.header_linkbtn_area {
  text-align: center;
}

.header_linkbtn {
  background-color: #31888B;
  display: inline-block;
  min-width: 148px;
  line-height: 30px;
  border-radius: 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  transition: .3s;
}

.header_linkbtn:hover {
  background-color: #A7D4CA;
  color: #343F40;
  font-weight: 500;
}

#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  padding-top: 140px;
  padding-left: 20px;
  padding-right: 20px;
  background-image: url(/img/hamburger_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
}

#g-nav .nav_logo {
  width: 60%;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 998;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  z-index: 998;
}

#g-nav.panelactive ul {
  display: block;
}

#g-nav li {
  text-align: left
}

#g-nav .nav_text {
  padding-top: 30px;
  display: block;
  letter-spacing: 0.1em;
}

#g-nav .nav_small_text {
  padding-top: 2px;
}

#g-nav .sns_flex {
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

#g-nav .sns_flex a {
  display: block;
  width: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 55px;
  height: 50px;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #343F40;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 11px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
}

.openbtn.active span:nth-of-type(1) {
  top: 11px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  top: 23px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

/* ここからフッター */
footer {
  width: 100%;
}

.footer_inner {
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  background-image: url(/img/footer-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

footer .nav_logo {
  width: 50%;
  margin: -20px;
}

footer .nav_inner {
  padding-top: 40px;
}

footer li {
  text-align: left
}

footer .nav_text {
  padding-top: 23px;
  display: block;
  letter-spacing: 0.1em;
}

footer .nav_small_text {
  padding-top: 2px;
}

footer .sns_flex {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

footer .sns_flex a {
  display: block;
  width: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.copyright {
  font-size: 10px;
  font-weight: 300;
  text-align: center;
  padding-top: 30px;
}

.caution {
  font-size: 10px;
  text-align: center;
  margin-top: -7px;
}