* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-break: break-all;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
a {
  text-decoration: none;
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #000;
}
a:hover {
  opacity: 0.7;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
.pc {
  display: none;
}
.nowrap {
  white-space: nowrap;
}
.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}
.section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* ─────────── ヘッダーの最低限スタイル ─────────── */

.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}
.header .wrap .block {
  height: 100%;
}
.header .wrap .block:nth-child(1) {
  width: 170px;
  height: auto;
  display: flex;
  align-items: center;
  padding-left: 2rem;
}
.header .wrap .block:nth-child(1) .logo {
  display: block;
  transition: all 0.3s ease-out;
}
.header .wrap .block:nth-child(1) .logo:active {
  opacity: 0.7;
}
.header .wrap .block:nth-child(1) .logo:hover {
  opacity: 0.7;
}
.header .wrap .block:nth-child(1) .logo .site-ttl {
  display: flex;
  align-items: center;
}
.header .wrap .block:nth-child(1) .logo .site-ttl img {
  width: 150px;
  height: auto;
}
.header .wrap .block:nth-child(2) {
  width: 140px;
}
.header .wrap .block:nth-child(2) .header-sp {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.header .wrap .block:nth-child(2) .header-sp .box {
  width: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header .wrap .block:nth-child(2) .header-sp .box:not(:last-child) {
  margin-right: 10px;
}
.header .wrap .block:nth-child(2) .header-sp .box a {
  display: block;
  width: 35px;
  transition: all 0.3s ease-out;
}
.header .wrap .block:nth-child(2) .header-sp .box a:active {
  opacity: 0.7;
}
.header .wrap .block:nth-child(2) .header-sp .box.hamburger {
  background: #006ad5;
  color: #fff;
  width: 50px;
  cursor: pointer;
}
.header .wrap .block:nth-child(2) .header-sp .box.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  margin-bottom: 5px;
}
.header .wrap .block:nth-child(2) .header-sp .box.hamburger p {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.72px;
  text-align: center;
}
.header .wrap .block:nth-child(2) .header-pc {
  display: none;
}
.header .nav-pc {
  display: none;
}
.header .nav-sp {
  margin-top: 50px;
}
.header .nav-sp ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.header .nav-sp ul li {
  width: 33.3333333333%;
  border-bottom: 1px solid #707070;
  height: 40px;
}
.header .nav-sp ul li:not(:nth-child(3n)) {
  border-right: 1px solid #707070;
}
.header .nav-sp ul li:nth-child(1),
.header .nav-sp ul li:nth-child(2),
.header .nav-sp ul li:nth-child(3) {
  border-top: 1px solid #707070;
}
.header .nav-sp ul li a {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  transition: opacity 0.3s ease-out;
  color: #000;
  text-decoration: none;
}
.header .nav-sp ul li a:active {
  opacity: 0.7;
}
.header .menu {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  z-index: 999;
}
.header .menu.active {
  opacity: 1;
  visibility: visible;
}
.header .menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #006ad5;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header .menu .menu-container {
  padding: 10rem 2rem 20rem 2rem;
  position: relative;
  overflow: scroll;
  height: 100%;
}
.header .menu .menu-container .close {
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 38px;
}
.header .menu .menu-container .menu-wrap {
  padding: 2rem;
}
.header .menu .menu-container .menu-wrap .menu-nav ul {
  padding: 0;
  list-style: none;
}
.header .menu .menu-container .menu-wrap .menu-nav ul.list2 {
  margin-top: 1rem;
}
.header .menu .menu-container .menu-wrap .menu-nav ul.list2 li a {
  font-size: 1.6rem;
  font-weight: 400;
}
.header .menu .menu-container .menu-wrap .menu-nav ul li {
  border-bottom: 1px solid #fff;
}
.header .menu .menu-container .menu-wrap .menu-nav ul li:first-child {
  border-top: 1px solid #fff;
}
.header .menu .menu-container .menu-wrap .menu-nav ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  padding: 1.5rem 0;
  transition: all 0.3s ease-out;
}
.header .menu .menu-container .menu-wrap .menu-nav ul li a:active {
  opacity: 0.8;
}
.header .menu .menu-container .menu-wrap .menu-nav ul li a .target {
  width: 14px;
  margin-left: 1rem;
}
.header .menu .menu-container .menu-wrap2 {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
}
.header .menu .menu-container .menu-wrap2 a {
  display: block;
  width: calc((100% - 10px) / 2);
  transition: all 0.3s ease-out;
}
.header .menu .menu-container .menu-wrap2 a:active {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .main {
    padding-top: 125px;
  }
  .header .wrap {
    height: 80px;
    padding: 0 25px 0 40px;
  }
  .header .wrap .block:nth-child(1) {
    width: 16.179775%;
    max-width: 216px;
    padding-left: 0;
  }
  .header .wrap .block:nth-child(1) .logo .site-ttl img {
    width: auto;
    max-width: 202px;
  }
  .header .wrap .block:nth-child(2) {
    width: calc(83.820225% - 20px);
  }
  .header .wrap .block:nth-child(2) .header-sp {
    display: none;
  }
  .header .wrap .block:nth-child(2) .header-pc {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: right;
  }
  .header .wrap .block:nth-child(2) .header-pc .tel-mail {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header .wrap .block:nth-child(2) .header-pc .tel-mail .tel {
    margin-right: 2rem;
  }
  .header .wrap .block:nth-child(2) .header-pc .tel-mail .tel img {
    height: 35px;
  }
  .header .nav-pc {
    display: block;
    width: 100%;
    background: #006ad5;
    height: 45px;
    padding: 0 2rem;
    position: fixed;
    z-index: 1000;
    top: 80px;
  }
  .header .nav-pc ul {
    display: flex;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    list-style: none;
    justify-content: space-between;
    height: 45px;
    align-items: center;
  }
  .header .nav-pc ul li a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
  }
  .header .nav-pc ul li a:hover {
    opacity: 0.7;
  }
  .header .nav-sp {
    display: none;
  }
  .header .menu {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header .wrap .block:nth-child(2) .header-pc .box:nth-child(1) nav ul li:not(:last-child) {
    margin-right: 3.5rem;
  }
  .header .wrap .block:nth-child(2) .header-pc .box:nth-child(1) nav ul li a {
    font-size: 1.5rem;
  }
}
