@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

:root {
  --mc: #0A0A0A;
  --sc: #00073F;
  --max-width: 1540px;
  --pad: 10px;
}

@media print, screen and (min-width: 1080px) {
  :root {
    --max-width: 1540px;
    --pad: 30px;
  }
}
a {
  color: var(--sc);
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.scroll-target {
  scroll-margin-top: 50px;
}

@media print, screen and (min-width: 880px) {
  .scroll-target {
    scroll-margin-top: 80px;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "a-otf-ryumin-pr6n", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  color: var(--sc);
}
body main {
  flex: 1;
}

@media print, screen and (min-width: 880px) {
  body {
    font-size: 17px;
  }
}
.inner {
  max-width: 1540px;
  padding: 0 10px;
  margin: 0 auto;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.mb-9 {
  margin-bottom: 90px !important;
}

.mb-10 {
  margin-bottom: 100px !important;
}

.left {
  width: 100%;
  height: auto;
}

.right {
  width: 100%;
}

.col2-19 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-28 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-37 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-46 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-55 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-64 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-73 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-82 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.col2-91 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media print, screen and (min-width: 1000px) {
  .col2-19 {
    grid-template-columns: 1fr 9fr;
  }
  .col2-28 {
    grid-template-columns: 2fr 8fr;
  }
  .col2-37 {
    grid-template-columns: 3fr 7fr;
  }
  .col2-46 {
    grid-template-columns: 4fr 6fr;
  }
  .col2-55 {
    grid-template-columns: 5fr 5fr;
  }
  .col2-64 {
    grid-template-columns: 6fr 4fr;
  }
  .col2-73 {
    grid-template-columns: 7fr 3fr;
  }
  .col2-82 {
    grid-template-columns: 8fr 2fr;
  }
  .col2-91 {
    grid-template-columns: 9fr 1fr;
  }
}
.font-FOTUD {
  font-family: "fot-udkakugo-large-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.contents {
  width: 100%;
}
.contents .inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 30px var(--pad);
}

section {
  overflow: hidden;
}

header {
  width: 100%;
  font-family: arial;
  font-weight: 400;
  z-index: 9999;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 5px 15px rgba(10, 10, 10, 0.0745098039);
}
header .header-wrap {
  max-width: 1630px;
  display: flex;
  align-items: center;
  height: 75px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 15px;
}
header .header-wrap .h1-top a {
  display: inline-block;
  height: 55px;
  vertical-align: middle;
}
header .header-wrap .h1-top a img {
  width: 100px;
}
header .header-wrap .menu-wrap .global-menu {
  display: flex;
}
header .header-wrap .menu-wrap .global-menu li {
  font-size: 19px;
  padding: 20px 20px 20px 40px;
  letter-spacing: 0.15em;
  position: relative;
}
header .header-wrap .menu-wrap .global-menu li::before {
  content: url(../img/menu-button.png);
  position: absolute;
  left: 0;
  top: 22px;
}

@media print, screen and (min-width: 1000px) {
  header .header-wrap {
    height: 160px;
  }
  header .header-wrap .h1-top {
    margin-right: 20px;
  }
  header .header-wrap .h1-top a {
    height: 103px;
  }
  header .header-wrap .h1-top a img {
    width: 205px;
  }
}
.hamb {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 23px;
  cursor: pointer;
  z-index: 9999;
}
.hamb span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0A0A0A;
  position: absolute;
  transition: all 0.3s ease;
}
.hamb span:nth-child(1) {
  top: 0;
}
.hamb span:nth-child(2) {
  top: 50%;
}
.hamb span:nth-child(3) {
  top: 100%;
}

@media print, screen and (min-width: 1000px) {
  .hamb {
    display: none;
  }
}
.hamb.open span {
  background: #ffffff;
}
.hamb.open span:nth-last-child(1) {
  transform: rotate(-45deg) translate(7px, -9px);
}
.hamb.open span:nth-last-child(2) {
  display: none;
}
.hamb.open span:nth-last-child(3) {
  transform: rotate(45deg) translate(7px, 10px);
}

.menu-wrap.sp {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.menu-wrap.sp.open {
  display: block;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #00073F, #9CF2F2);
  overflow: auto;
}
.menu-wrap.sp.open .global-menu {
  display: block;
  margin-top: 50px;
}
.menu-wrap.sp.open .global-menu .pc-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4039215686);
  position: relative;
  height: auto;
  padding: 0;
}
.menu-wrap.sp.open .global-menu .pc-list a {
  padding: 15px 19px;
  color: #fff;
  font-size: 16px;
}
.menu-wrap.sp.open .global-menu .pc-list::before {
  display: none;
}

.footer {
  width: 100%;
  background: linear-gradient(to right, #00073F, #9CF2F2);
  padding: 40px 0;
  margin: 0 auto;
}
.footer .footer-wrap {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
.footer .footer-wrap img {
  width: 140px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.footer .footer-wrap .address {
  margin-bottom: 20px;
  text-align: center;
}
.footer .footer-wrap .address p {
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: lighter;
}
.footer .footer-wrap .address p span {
  display: inline-block;
}
.footer .footer-wrap .numazu-city {
  width: 170px;
  height: 58px;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  text-align: center;
  margin: 0 auto;
}
.footer .footer-wrap .numazu-city a {
  background-color: #fff;
  display: block;
  height: 100%;
  margin: 0px 9px;
  font-size: 13px;
  justify-content: space-around;
  letter-spacing: 0.2em;
  padding: 10px;
}

@media print, screen and (min-width: 920px) {
  .footer .footer-wrap {
    flex-direction: row;
    align-items: flex-end;
    max-width: 1000px;
    padding: 0 15px;
  }
  .footer .footer-wrap img {
    margin: 0;
  }
  .footer .footer-wrap .address {
    margin-bottom: 0px;
    text-align: left;
  }
  .footer .footer-wrap .address p {
    font-size: 15px;
    font-weight: 300;
  }
  .footer .footer-wrap .numazu-city {
    width: 242px;
    height: 67px;
    text-align: left;
    margin: 0;
  }
  .footer .footer-wrap .numazu-city a {
    font-size: 15px;
    margin: 0px 15px;
    padding: 10px 40px;
  }
}
@media print, screen and (min-width: 1460px) {
  .footer .footer-wrap {
    max-width: 1350px;
  }
  .footer .footer-wrap img {
    width: 230px;
  }
  .footer .footer-wrap .address p {
    font-size: 20px;
  }
  .footer .footer-wrap .numazu-city {
    width: 345px;
    height: 110px;
    border-left: 6px solid #fff;
    border-right: 6px solid #fff;
  }
  .footer .footer-wrap .numazu-city a {
    font-size: 20px;
    padding: 24px 57px;
    margin: 0px 25px;
  }
}
.hidden {
  transform: translateY(-100%);
}

ul.koukoku {
  width: 95%;
  max-width: 1020px;
  margin: 0 auto;
  margin-bottom: 30px;
}
ul.koukoku li {
  float: left;
  width: 150px;
  height: 60px;
  font-size: 0;
  margin: 0 0 8px 8px;
}

p#koukoku_lt {
  width: 95%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 0 8px 1em;
  border-bottom: solid 5px #CCC;
  margin-bottom: 10px;
  margin-top: 20px;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

#koukoku_lt {
  padding: 0 0 8px 1em;
  border-bottom: solid 5px #CCC;
  margin-bottom: 10px;
  font-size: 14px;
}
#koukoku_lt a {
  text-decoration: underline;
}
#koukoku_lt span {
  margin-left: 30px;
  font-size: 0.857em;
}

#foot_wrap {
  width: 100%;
  background-color: #F5F2F0;
}
#foot_wrap #footer_in {
  width: 95%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 25px 0 20px 0;
  position: relative;
  font-size: 14px;
}
#foot_wrap #footer_in #footlogo {
  font-size: 20px;
  margin-bottom: 10px;
}
#foot_wrap #footer_in #footadd {
  margin-bottom: 10px;
  font-size: 13px;
}
#foot_wrap #footer_in .goTop {
  text-align: right;
  font-size: 0;
  position: fixed;
  right: 20px;
  bottom: 200px;
  z-index: 500;
  width: 64px;
  height: 64px;
  opacity: 0;
  cursor: default;
  transition: opacity 0.5s ease;
  cursor: pointer;
}
#foot_wrap #footer_in .goTop img {
  width: 100%;
  height: auto;
}
#foot_wrap #footer_in .goTop.show {
  opacity: 1;
}
#foot_wrap #footer_in ul li {
  float: left;
  font-size: 90%;
  margin: 0 14px 0 0;
  padding: 0 14px 0 0;
  border-right: solid 1px #444;
}
#foot_wrap #footer_in ul li a {
  text-decoration: underline;
  color: #1d4589;
  font-weight: normal;
}

footer p.copyright {
  width: 100%;
  text-align: center;
  background-color: #C1AFA4;
  padding: 16px 0 14px 0;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 0 !important;
}

.inform {
  display: grid;
  place-items: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.inform .inquiry {
  padding: 30px 60px;
  border: solid 1px #ccc;
  border-radius: 12px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.0549019608);
  gap: 50px;
}
.inform .inquiry .iq-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.inform .inquiry .iq-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1em;
  border-radius: 2px;
  background-color: var(--mc);
  transform: translateY(2px);
  margin-right: 10px;
}
.inform .inquiry .iqbox .iq-section {
  font-weight: bold;
  margin-bottom: 5px;
}