@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  body {
    min-width: 0;
  }
}
a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1025px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

/* // screen
----------------------------------- */
.sp {
  display: none;
}

.md {
  display: none;
}

.pc {
  display: block;
}

.pconly {
  display: block;
}

@media (max-width: 1024px) {
  .sp {
    display: none;
  }
  .md {
    display: block;
  }
  .pc {
    display: block;
  }
  .pconly {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .md {
    display: block;
  }
  .pc {
    display: none;
  }
  .pconly {
    display: none;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s, transform 0.7s;
}

.fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

/* container
----------------------------------- */
#container {
  display: grid;
  grid-template-columns: clamp(200px, 25%, 360px) 1fr;
  grid-template-rows: 1fr max-content;
  min-height: 100vh;
}
#container header {
  grid-column: 1/2;
  grid-row: 1/span 2;
}
#container main {
  grid-column: 2/3;
  grid-row: 1/2;
}
#container footer {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media (max-width: 767px) {
  #container {
    display: block;
  }
}

/* header
----------------------------------- */
header > .header {
  position: sticky;
  top: 0;
  width: fit-content;
  margin: 0 auto;
  padding: 60px 10px 0;
}
header .logo {
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-weight: 700;
  text-align: center;
  color: #005872;
  line-height: 1.3;
  margin-bottom: 50px;
}
header .logo a {
  color: #005872;
}
header .gnav {
  max-width: 200px;
  margin: 0 auto;
}
header .gnav li {
  margin-bottom: 4px;
}
header .gnav li a {
  display: block;
  background: #fff;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  border-radius: 5px;
  padding: 0.5em 1em 0.6em;
  position: relative;
}
header .gnav li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 7px;
  height: 7px;
  border-top: 2px solid #005872;
  border-right: 2px solid #005872;
  transform: rotate(45deg) translateY(-65%);
}
header .gnav li a:hover, header .gnav li a.active {
  font-weight: 500;
  background: #d5e2e1;
}
header .util {
  max-width: 200px;
  margin: 14vh auto 0;
}
header .util .search_box {
  background: #ededed;
  border-radius: 5px;
  padding: 0.7em 1em 0.7em 0.5em;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .util .search_box input[type=search] {
  width: 100%;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  border: none;
  outline: none;
  background: transparent;
}
header .util .search_box input[type=search]::placeholder {
  color: #a2a2a2;
}
header .util .search_box button[type=submit] {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../img/cmn/icon_search.png) no-repeat 0 0/100% auto;
  flex-shrink: 0;
  border: none;
}
header .util .btn_inquiry {
  margin-top: 10px;
}
header .util .btn_inquiry a {
  display: block;
  border: solid 1px #d5e2e1;
  border-radius: 5px;
  padding: 0.7em 1em 0.7em 1em;
  font-size: 1.4rem;
  position: relative;
  background: #fff;
}
header .util .btn_inquiry a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 7px;
  height: 7px;
  border-top: 2px solid #005872;
  border-right: 2px solid #005872;
  transform: rotate(45deg) translateY(-65%);
}
header .util .btn_inquiry a:hover, header .util .btn_inquiry a.active {
  background: #d5e2e1;
}
header #menu {
  display: none;
}
@media (max-width: 767px) {
  header {
    background: #d5e2e1;
  }
  header > .header {
    position: static;
    width: auto;
    padding: 1.5rem 1.1rem 2rem;
  }
  header .logo {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 0;
  }
  header .gnav,
  header .util {
    display: none;
  }
  header #menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #e6eeed;
    overflow-y: auto;
    padding: 6.8rem 2.8rem 8rem;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.3s;
  }
  .js-menuOpen header #menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  header #menu .title {
    text-align: center;
    margin-bottom: 2rem;
    color: #005872;
  }
  header #menu .title .en {
    width: 6.8rem;
    margin: 0 auto;
  }
  header #menu .title .jp {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
  header #menu .menu li a {
    display: flex;
    align-items: center;
    background: #fff;
    color: #005872;
    height: 4.8rem;
    border-radius: 0.8rem;
    font-size: 1.5rem;
    padding: 0 4rem 0 3.2rem;
    position: relative;
  }
  header #menu .menu li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 2px solid #005872;
    border-right: 2px solid #005872;
    transform: rotate(45deg) translateY(-65%);
  }
  header #menu .menu li + * {
    margin-top: 0.4rem;
  }
  header #menu .menu li + *.inquiry {
    margin-top: 3rem;
  }
  header #menu .menu li + *.inquiry a {
    background: #d5e2e1;
    color: #333;
  }
}

/* main
----------------------------------- */
main {
  background: #d5e2e1;
  padding: 55px clamp(5px, 3.6vw, 52px) 120px 20px;
}
main article {
  max-width: 904px;
  margin: 0 auto;
}
main article > section + * {
  margin-top: 50px;
}
main article > section > p + * {
  margin-top: 1em;
}
main article > section section:has(> .htype02) + * {
  margin-top: 50px;
}
main article p {
  line-height: 2.2;
}
main:has(.not_found) {
  display: grid;
  place-content: center;
}
@media (max-width: 1024px) {
  main {
    padding: 55px 20px 120px;
  }
}
@media (max-width: 767px) {
  main {
    padding: 0 1.1rem 6.5rem;
  }
  main article > section + * {
    margin-top: 5rem;
  }
  main article > section section:has(> .htype02) + * {
    margin-top: 4rem;
  }
  main article p {
    line-height: 1.8;
  }
}

/* footer
----------------------------------- */
footer {
  background: linear-gradient(to right, #2e80ac 0%, #005872 68%);
  color: #fff;
  padding: 36px clamp(5px, 3.6vw, 52px) 36px 20px;
  position: relative;
}
footer > .pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 48px;
  border-radius: 10px 0 0 0;
  background: #fff;
  display: grid;
  place-content: center;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #005872;
  padding-top: 5px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
footer > .pagetop.show {
  visibility: visible;
  opacity: 1;
}
footer > .pagetop::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 9px;
  height: 9px;
  border-top: 2px solid #005872;
  border-right: 2px solid #005872;
  transform: rotate(45deg) translateY(-65%);
  position: static;
  transform: rotate(-45deg);
}
footer > .pagetop.bottom {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
footer > .footer {
  max-width: 904px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer > .footer .links {
  width: 65%;
  max-width: 410px;
}
footer > .footer .links h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
footer > .footer .links .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: 130px;
}
footer > .footer .links .box ul {
  display: grid;
}
footer > .footer .links .box ul li a {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  font-weight: 500;
  border-radius: 5px;
  padding-left: 20px;
  color: #fff;
  line-height: 1;
  transition: 0.3s;
}
footer > .footer .links .box ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-65%);
}
footer > .footer .links .box ul li a:hover {
  background: rgba(255, 255, 255, 0.5);
}
footer > .footer .links .box ul:nth-child(1) {
  gap: 8px;
  grid-template-rows: repeat(3, 1fr);
}
footer > .footer .links .box ul:nth-child(2) {
  gap: 6px;
  grid-template-rows: repeat(4, 1fr);
}
footer > .footer .address h2 {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 10px;
}
footer > .footer .address p {
  line-height: 1.5;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}
footer > .footer .address p.copy {
  font-size: 1rem;
}
footer > .footer .address p + * {
  margin-top: 1em;
}
footer .fixed_footer {
  display: none;
}
@media (max-width: 1024px) {
  footer {
    padding: 36px 20px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 2.7rem 1.1rem 8rem;
  }
  footer > .pagetop {
    display: none;
  }
  footer > .footer {
    display: block;
  }
  footer > .footer .links {
    width: auto;
    max-width: none;
  }
  footer > .footer .links h2 {
    font-size: 2.4rem;
    margin: 0 0 1rem 0.8rem;
  }
  footer > .footer .links .box {
    gap: 1rem;
    min-height: 14.8rem;
  }
  footer > .footer .links .box ul li a {
    font-size: 1.4rem;
    border-radius: 0.5rem;
    padding-left: 0.5rem;
  }
  footer > .footer .links .box ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.6rem;
    height: 0.6rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-65%);
  }
  footer > .footer .address {
    margin-top: 3rem;
    position: relative;
  }
  footer > .footer .address h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  footer > .footer .address p {
    font-size: 1.2rem;
  }
  footer > .footer .address p.copy {
    font-size: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  footer > .footer .address p + * {
    margin-top: 0;
  }
  footer .fixed_footer {
    display: block;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 10;
  }
  footer .fixed_footer .search_box {
    position: absolute;
    width: 100%;
    left: 0;
    background: #d5d5d5;
    padding: 0.9rem 2.8rem;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 0;
  }
  footer .fixed_footer .search_box .box {
    border-radius: 0.5rem;
    background: #fff;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    gap: 1rem;
  }
  footer .fixed_footer .search_box .box input[type=search] {
    width: 100%;
    font-size: 1.6rem;
    border: none;
    outline: none;
    background: transparent;
  }
  footer .fixed_footer .search_box .box input[type=search]::placeholder {
    color: #a2a2a2;
  }
  footer .fixed_footer .search_box .box button[type=submit] {
    width: 7.8rem;
    height: 5.2rem;
    border: none;
    display: grid;
    place-content: center;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 0 0.5rem 0.5rem 0;
    flex-shrink: 0;
    background: #333;
  }
  footer .fixed_footer.search_on .search_box {
    transform: translateY(-100%);
    visibility: visible;
    opacity: 1;
  }
  footer .fixed_footer.search_on > ul li.search a span:nth-child(1) {
    display: none;
  }
  footer .fixed_footer.search_on > ul li.search a span:nth-child(2) {
    display: inline-block;
  }
  footer .fixed_footer > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: solid 1px #005872;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  footer .fixed_footer > ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0;
    height: 6rem;
    font-size: 1.1rem;
    position: relative;
    color: #005872;
  }
  footer .fixed_footer > ul li + * a::after {
    content: "";
    width: 1px;
    position: absolute;
    left: 0;
    top: 1.2rem;
    bottom: 1.2rem;
    background: #d5e2e1;
  }
  footer .fixed_footer > ul li.search a {
    gap: 1.2rem;
  }
  footer .fixed_footer > ul li.search a::before {
    content: "";
    flex-shrink: 0;
    width: 1.6rem;
    aspect-ratio: 1/1;
    background: url(../img/cmn/icon_search.png) no-repeat 0 0/100% auto;
  }
  footer .fixed_footer > ul li.search a span {
    display: inline-block;
  }
  footer .fixed_footer > ul li.search a span:nth-child(2) {
    display: none;
  }
  footer .fixed_footer > ul li.pagetop a {
    gap: 1.2rem;
  }
  footer .fixed_footer > ul li.pagetop a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1rem;
    height: 1rem;
    border-top: 0.2rem solid #005872;
    border-right: 0.2rem solid #005872;
    transform: rotate(45deg) translateY(-65%);
    transform: rotate(-45deg) translateY(50%);
    position: static;
  }
  footer .fixed_footer > ul li.btn_menu a {
    gap: 1rem;
  }
  footer .fixed_footer > ul li.btn_menu a div {
    width: 1.7rem;
    height: 1.2rem;
    position: relative;
  }
  footer .fixed_footer > ul li.btn_menu a div span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #005872;
    transition: 0.3s;
  }
  footer .fixed_footer > ul li.btn_menu a div span:nth-child(1) {
    top: 0;
  }
  footer .fixed_footer > ul li.btn_menu a div span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  footer .fixed_footer > ul li.btn_menu a div span:nth-child(3) {
    bottom: 0;
  }
  .js-menuOpen footer .fixed_footer > ul li.btn_menu a div span:nth-child(1) {
    top: 50%;
    transform: rotate(135deg);
  }
  .js-menuOpen footer .fixed_footer > ul li.btn_menu a div span:nth-child(2) {
    opacity: 0;
  }
  .js-menuOpen footer .fixed_footer > ul li.btn_menu a div span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: rotate(-135deg);
  }
  footer .fixed_footer > ul li.btn_menu a p span {
    display: inline-block;
    width: 4em;
  }
  footer .fixed_footer > ul li.btn_menu a p span:nth-child(2) {
    display: none;
    padding-left: 0.1em;
  }
  .js-menuOpen footer .fixed_footer > ul li.btn_menu a p span:nth-child(1) {
    display: none;
  }
  .js-menuOpen footer .fixed_footer > ul li.btn_menu a p span:nth-child(2) {
    display: inline-block;
  }
}