@charset "UTF-8";
:root {
  --font-size-base:15px;
  --font-size-large:calc(var(--font-size-base) * 1.25);
  --font-size-small:calc(var(--font-size-base) * 0.875);
  --border-radius-common:5px;
}

.din-condensed {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter- {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udpgothic-bold {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  font-size: var(--font-size-base);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.page-transition {
  position: fixed;
  inset: 0;
  background: #0085CE; /* フェードに使う背景色 */
  transition: opacity 0.6s ease;
  z-index: 9999;
  pointer-events: none;
  opacity: 1; /* 初期状態：背景色で覆う */
}
.page-transition.hide {
  opacity: 0; /* フェードアウトしてコンテンツを出す */
}

section .f_inner {
  width: min(82.0105820106vw, 1240px);
  margin: auto;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  section .f_inner {
    width: 100%;
    padding: 0 20px;
    gap: 20px;
  }
}
section .flexWrap {
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: min(3.9682539683vw, 60px);
}
@media screen and (max-width: 820px) {
  section .flexWrap {
    gap: 20px;
  }
}

.inquiry_cnt {
  width: calc(50% - min(1.9841269841vw, 30px));
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: column;
  gap: min(1.9841269841vw, 30px);
  background: #006DA8;
  border-radius: 5px;
  padding: min(1.9841269841vw, 30px);
  color: #FFF;
}
@media screen and (max-width: 820px) {
  .inquiry_cnt {
    width: 100%;
    gap: 20px;
    padding: 30px;
  }
}
.inquiry_cnt h3 {
  padding: 0.5em 0 0.75em;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: min(2.1164021164vw, 32px);
}
@media screen and (max-width: 820px) {
  .inquiry_cnt h3 {
    font-size: 26px;
  }
}
.inquiry_cnt strong {
  font-size: min(1.1904761905vw, 18px);
  text-align: center;
  line-height: 200%;
}
@media screen and (max-width: 820px) {
  .inquiry_cnt strong {
    font-size: 14px;
  }
}
.inquiry_cnt p {
  line-height: 200%;
  font-family: Inter;
  font-size: min(0.9259259259vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
}
@media screen and (max-width: 820px) {
  .inquiry_cnt p {
    font-size: 14px;
  }
}

.button_wrap {
  text-align: center;
}

p.btn_more a {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: min(0.6613756614vw, 10px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  width: min(5.9523809524vw, 90px);
  min-width: min(5.9523809524vw, 90px);
  height: min(0.9920634921vw, 15px);
  line-height: min(0.9920634921vw, 15px);
  margin-left: min(0.9920634921vw, 15px);
  padding-right: min(1.3227513228vw, 20px);
}
@media screen and (max-width: 820px) {
  p.btn_more a {
    font-size: 10px;
    width: 90px;
    min-width: 90px;
    height: 15px;
    line-height: 15px;
    margin-left: 15px;
    padding-right: 20px;
  }
}
p.btn_more a:before {
  content: "";
  width: min(1.9841269841vw, 30px);
  height: min(1.9841269841vw, 30px);
  border-radius: min(0.9920634921vw, 15px);
  background: rgba(0, 0, 0, 0.1);
  left: max(-0.9920634921vw, -15px);
  top: 50%;
  position: absolute;
  z-index: 0;
  transform: translate(0, -50%) scale(0.85);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 820px) {
  p.btn_more a:before {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    left: -15px;
  }
}
p.btn_more a:hover:before {
  background: rgba(0, 0, 0, 0.4);
  transform: translate(0, -50%) scale(1);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.btn_more a:after {
  content: "\e90c";
  display: block;
  width: min(0.7936507937vw, 12px);
  height: min(0.7936507937vw, 12px);
  font-size: min(0.7936507937vw, 12px);
  font-family: "icomoon";
  position: absolute;
  right: 0;
  bottom: min(0.1653439153vw, 2.5px);
  opacity: 0.6;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 820px) {
  p.btn_more a:after {
    width: 12px;
    height: 12px;
    font-size: 12px;
    right: 0;
    bottom: 2.5px;
  }
}
p.btn_more a:hover:after {
  opacity: 1;
  transform: translate(3px, -3px);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.btn_more._b a {
  color: #0085CE;
}
p.btn_more._b a:before {
  background: rgba(0, 0, 0, 0.1);
}
p.btn_more._b a:hover:before {
  background: rgba(0, 0, 0, 0.4);
}
p.btn_more._b a:after {
  color: #0085CE;
}
p.btn_more._w a {
  color: #FFF;
}
p.btn_more._w a:before {
  background: rgba(255, 255, 255, 0.1);
}
p.btn_more._w a:hover:before {
  background: rgba(255, 255, 255, 0.4);
}
p.btn_more._w a:after {
  color: #FFF;
}
p.button {
  text-align: center;
}
p.button.min a {
  min-width: min(15.2116402116vw, 230px);
}
@media screen and (max-width: 820px) {
  p.button.min a {
    min-width: 230px;
  }
}
p.button a {
  text-align: center;
  min-width: min(23.1481481481vw, 350px);
  height: min(3.3068783069vw, 50px);
  display: inline-block;
  line-height: min(3.3068783069vw, 50px);
  color: #FFF;
  border-radius: min(1.6534391534vw, 25px);
  text-align: center;
  text-decoration: none;
  padding: 0 min(3.3068783069vw, 50px) 0 min(1.6534391534vw, 25px);
  font-family: "Inter", sans-serif;
  font-size: min(0.9920634921vw, 15px);
  font-style: normal;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 820px) {
  p.button a {
    min-width: 250px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    padding: 0 50px 0 25px;
    font-size: 15px;
  }
}
p.button a:before {
  width: min(0.6613756614vw, 10px);
  height: min(0.6613756614vw, 10px);
  border-radius: min(0.3306878307vw, 5px);
  background: #FFF;
  content: "";
  display: block;
  position: absolute;
  right: min(1.4880952381vw, 22.5px);
  top: 50%;
  transform: translate(0, -50%) scale(1);
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media screen and (max-width: 820px) {
  p.button a:before {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    right: 22.5px;
  }
}
p.button a:after {
  font-family: "icomoon";
  content: "\e907";
  font-size: min(0.6613756614vw, 10px);
  display: block;
  width: min(0.6613756614vw, 10px);
  height: min(0.6613756614vw, 10px);
  line-height: min(0.6613756614vw, 10px);
  position: absolute;
  right: min(1.4880952381vw, 22.5px);
  top: 50%;
  transform-origin: center;
  transform: translate(0, -50%) scale(1);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  color: #333333;
}
@media screen and (max-width: 820px) {
  p.button a:after {
    font-size: 10px;
    width: 10px;
    height: 10px;
    line-height: 10px;
    right: 22.5px;
  }
}
p.button a:hover:before {
  transform: translate(0, -50%) scale(2);
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.button a:hover:after {
  transform: translate(0, -50%) scale(1);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
p.button.blue a {
  background: #0085CE;
}
p.button.yellow a {
  background: #FFBB00;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.button.yellow a:hover {
  background: #FF9900;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.button.white a {
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.button.white a:hover {
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.button.vm a {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: min(0.6613756614vw, 10px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  width: min(4.6296296296vw, 70px);
  min-width: min(4.6296296296vw, 70px);
  height: min(0.9920634921vw, 15px);
  line-height: min(0.9920634921vw, 15px);
  margin-left: min(0.9920634921vw, 15px);
}
@media screen and (max-width: 820px) {
  p.button.vm a {
    font-size: 10px;
    width: 70px;
    min-width: 70px;
    height: 15px;
    line-height: 15px;
    margin-left: 15px;
  }
}
p.button.vm a:before {
  content: "";
  width: min(1.9841269841vw, 30px);
  height: min(1.9841269841vw, 30px);
  border-radius: min(0.9920634921vw, 15px);
  background: rgba(0, 0, 0, 0.1);
  left: max(-0.9920634921vw, -15px);
  top: 50%;
  position: absolute;
  z-index: 0;
  transform: translate(0, -50%) scale(0.85);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 820px) {
  p.button.vm a:before {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    left: -15px;
  }
}
p.button.vm a:hover:before {
  background: rgba(0, 0, 0, 0.4);
  transform: translate(0, -50%) scale(1);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.button.vm a:after {
  content: "\e90c";
  display: block;
  width: min(0.7936507937vw, 12px);
  height: min(0.7936507937vw, 12px);
  font-size: min(0.7936507937vw, 12px);
  font-family: "icomoon";
  position: absolute;
  right: max(-1.3227513228vw, -20px);
  bottom: min(0.1653439153vw, 2.5px);
  opacity: 0.6;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 820px) {
  p.button.vm a:after {
    width: 12px;
    height: 12px;
    font-size: 12px;
    right: -20px;
    bottom: 2.5px;
  }
}
p.button.vm a:hover:after {
  opacity: 1;
  transform: translate(3px, -3px);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
p.button.vm._b a {
  color: #0085CE;
}
p.button.vm._b a:before {
  background: rgba(0, 0, 0, 0.1);
}
p.button.vm._b a:hover:before {
  background: rgba(0, 0, 0, 0.4);
}
p.button.vm._b a:after {
  color: #0085CE;
}
p.button.vm._w a {
  color: #FFF;
}
p.button.vm._w a:before {
  background: rgba(255, 255, 255, 0.1);
}
p.button.vm._w a:hover:before {
  background: rgba(255, 255, 255, 0.4);
}
p.button.vm._w a:after {
  color: #FFF;
}
@media screen and (max-width: 820px) {
  p.button.btn_inquiry {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 25px;
    position: relative;
  }
}
p.button.btn_inquiry span {
  display: block;
}
@media screen and (max-width: 820px) {
  p.button.btn_inquiry span {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  p.button.btn_inquiry:after {
    font-family: icomoon;
    content: "\e922";
    display: block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    color: #0085CE;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

a.btn_menu, button.btn_menu {
  width: min(3.3068783069vw, 50px);
  height: min(3.3068783069vw, 50px);
  border-radius: min(1.6534391534vw, 25px);
  border: none;
  background: #0085CE;
  position: relative;
}
a.btn_menu span, button.btn_menu span {
  width: min(1.3227513228vw, 20px);
  height: 2px;
  background: #FFF;
  position: absolute;
}
a.btn_menu span:nth-child(1), button.btn_menu span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -1px);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}
a.btn_menu span:nth-child(2), button.btn_menu span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -7px);
  transform-origin: 0 0;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}
a.btn_menu span:nth-child(3), button.btn_menu span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 5px);
  transform-origin: 0 0;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}
a.btn_menu.active span, button.btn_menu.active span {
  width: min(1.421957672vw, 21.5px);
}
a.btn_menu.active span:nth-child(1), button.btn_menu.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(0, -1px);
  opacity: 0;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}
a.btn_menu.active span:nth-child(2), button.btn_menu.active span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 3.5px), -7.5px) rotate(45deg);
  transform-origin: 0 0;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}
a.btn_menu.active span:nth-child(3), button.btn_menu.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 3.5px), 6px) rotate(-45deg);
  transform-origin: 0 2px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s all;
}
@media screen and (max-width: 820px) {
  a.btn_menu, button.btn_menu {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
  a.btn_menu span, button.btn_menu span {
    width: 20px;
    height: 2px;
  }
  a.btn_menu.active span, button.btn_menu.active span {
    width: 20px;
    height: 2px;
  }
}
a.sp_toggle_btn, button.sp_toggle_btn {
  display: none;
}
@media screen and (max-width: 820px) {
  a.sp_toggle_btn, button.sp_toggle_btn {
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    right: 36px;
    top: 15px;
    background: none;
    border: none;
    padding: 0;
  }
  a.sp_toggle_btn span, button.sp_toggle_btn span {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: #0085CE;
  }
  a.sp_toggle_btn span:before, a.sp_toggle_btn span:after, button.sp_toggle_btn span:before, button.sp_toggle_btn span:after {
    display: block;
    width: 17px;
    height: 2px;
    background: #FFF;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
  }
  a.sp_toggle_btn span:after, button.sp_toggle_btn span:after {
    transform: rotate(90deg);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
}
a.sp_toggle_btn.active span:after, button.sp_toggle_btn.active span:after {
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a.btn_more, button.btn_more {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: min(0.6613756614vw, 10px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  width: min(5.9523809524vw, 90px);
  min-width: min(5.9523809524vw, 90px);
  height: min(0.9920634921vw, 15px);
  line-height: min(0.9920634921vw, 15px);
  margin-left: min(0.9920634921vw, 15px);
  padding-right: min(1.3227513228vw, 20px);
}
@media screen and (max-width: 820px) {
  a.btn_more, button.btn_more {
    font-size: 10px;
    width: 90px;
    min-width: 90px;
    height: 15px;
    line-height: 15px;
    margin-left: 15px;
    padding-right: 20px;
  }
}
a.btn_more:before, button.btn_more:before {
  content: "";
  width: min(1.9841269841vw, 30px);
  height: min(1.9841269841vw, 30px);
  border-radius: min(0.9920634921vw, 15px);
  background: rgba(0, 0, 0, 0.1);
  left: max(-0.9920634921vw, -15px);
  top: 50%;
  position: absolute;
  z-index: 0;
  transform: translate(0, -50%) scale(0.85);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 820px) {
  a.btn_more:before, button.btn_more:before {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    left: -15px;
  }
}
a.btn_more:hover:before, button.btn_more:hover:before {
  background: rgba(0, 0, 0, 0.4);
  transform: translate(0, -50%) scale(1);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a.btn_more:after, button.btn_more:after {
  content: "\e90c";
  display: block;
  width: min(0.7936507937vw, 12px);
  height: min(0.7936507937vw, 12px);
  font-size: min(0.7936507937vw, 12px);
  font-family: "icomoon";
  position: absolute;
  right: 0;
  bottom: min(0.1653439153vw, 2.5px);
  opacity: 0.6;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 820px) {
  a.btn_more:after, button.btn_more:after {
    width: 12px;
    height: 12px;
    font-size: 12px;
    right: 0;
    bottom: 2.5px;
  }
}
a.btn_more:hover:after, button.btn_more:hover:after {
  opacity: 1;
  transform: translate(3px, -3px);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 820px) {
  a.btn_more.sp, button.btn_more.sp {
    text-indent: -9999px;
    font-size: 1px;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 15px;
    background: rgba(173, 226, 255, 0.57);
    margin-left: 10px;
  }
  a.btn_more.sp:before, button.btn_more.sp:before {
    display: none;
  }
  a.btn_more.sp:after, button.btn_more.sp:after {
    text-indent: 0;
    font-size: 12px;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
a.btn_more._b, button.btn_more._b {
  color: #0085CE;
}
a.btn_more._b:before, button.btn_more._b:before {
  background: rgba(0, 0, 0, 0.1);
}
a.btn_more._b:hover:before, button.btn_more._b:hover:before {
  background: rgba(0, 0, 0, 0.4);
}
a.btn_more._b:after, button.btn_more._b:after {
  color: #0085CE;
}
a.btn_more._w, button.btn_more._w {
  color: #FFF;
}
a.btn_more._w:before, button.btn_more._w:before {
  background: rgba(255, 255, 255, 0.1);
}
a.btn_more._w:hover:before, button.btn_more._w:hover:before {
  background: rgba(255, 255, 255, 0.4);
}
a.btn_more._w:after, button.btn_more._w:after {
  color: #FFF;
}
a.button, button.button {
  min-width: min(23.1481481481vw, 350px);
  height: min(3.3068783069vw, 50px);
  display: inline-block;
  line-height: min(3.3068783069vw, 50px);
  color: #FFF;
  border-radius: min(1.6534391534vw, 25px);
  text-align: center;
  text-decoration: none;
  padding: 0 min(3.3068783069vw, 50px) 0 min(1.6534391534vw, 25px);
  font-family: "Inter", sans-serif;
  font-size: min(0.9920634921vw, 15px);
  font-style: normal;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 820px) {
  a.button, button.button {
    min-width: 350px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    padding: 0 50px 0 25px;
    font-size: 15px;
  }
}
a.button.min, button.button.min {
  min-width: min(15.2116402116vw, 230px);
}
@media screen and (max-width: 820px) {
  a.button.min, button.button.min {
    min-width: 230px;
  }
}
a.button:before, button.button:before {
  width: min(0.6613756614vw, 10px);
  height: min(0.6613756614vw, 10px);
  border-radius: min(0.3306878307vw, 5px);
  background: #FFF;
  content: "";
  display: block;
  position: absolute;
  right: min(1.4880952381vw, 22.5px);
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media screen and (max-width: 820px) {
  a.button:before, button.button:before {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    right: 22.5px;
  }
}
a.button:after, button.button:after {
  transform: translate(0, -50%) scale(1);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
a.button:hover:before, button.button:hover:before {
  transform: translate(0, -50%) scale(2);
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a.button:hover:after, button.button:hover:after {
  transform: translate(0, -50%) scale(1);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
a.button.blue, button.button.blue {
  background: #0085CE;
}
a.button.yellow, button.button.yellow {
  background: #FFBB00;
}
a.button.w_b, button.button.w_b {
  border: 1px solid #FFF;
}
@media screen and (max-width: 820px) {
  a.button.btn_inquiry, button.button.btn_inquiry {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 25px;
    position: relative;
    padding: 0;
  }
}
a.button.btn_inquiry span, button.button.btn_inquiry span {
  display: block;
}
@media screen and (max-width: 820px) {
  a.button.btn_inquiry span, button.button.btn_inquiry span {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  a.button.btn_inquiry:before, button.button.btn_inquiry:before {
    font-family: icomoon;
    content: "\e922";
    display: block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    color: #0085CE;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
  }
}

.ticker {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.ticker ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.ticker ul li {
  display: inline-block;
  margin-right: 3em; /* 項目間の間隔 */
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.horizontal {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.horizontal-wrapper {
  display: flex;
  height: 100%;
}

.panel {
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel img {
  max-width: 80%;
  height: auto;
}

.reveal-wrap {
  display: block; /* 必須：テキストにぴったりマスクする */
  overflow: hidden; /* 枠外を隠す */
}

.reveal-text {
  display: block;
  transform: translateY(100%); /* 初期は下に隠す */
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  /* ↑ イージングを自然にすると「せり上がる感」アップ */
}

.reveal-text.show {
  transform: translateY(0); /* せり上がって表示 */
}

.header {
  width: 100%;
  position: fixed;
  z-index: 10;
}
@media screen and (max-width: 820px) {
  .header {
    width: 100vw;
  }
}
.header_inner {
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: min(1.9841269841vw, 30px) min(3.3068783069vw, 50px);
}
@media screen and (max-width: 820px) {
  .header_inner {
    padding: 20px;
  }
}
.header h1 {
  width: min(18.8492063492vw, 285px);
  height: min(1.3227513228vw, 20px);
  z-index: 4;
}
.header h1 svg {
  width: min(18.8492063492vw, 285px);
  height: min(1.3227513228vw, 20px);
}
.header h1 span {
  display: none;
}
@media screen and (max-width: 820px) {
  .header h1 {
    width: calc(100% - 130px);
    height: auto;
    aspect-ratio: 260/18;
  }
  .header h1 svg {
    width: 100%;
    height: 100%;
  }
}
.header nav.pcMenu {
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header nav.pcMenu .gnav {
  width: min(37.037037037vw, 560px);
  height: min(3.3068783069vw, 50px);
  flex-shrink: 0;
  border-radius: min(1.6534391534vw, 25px);
  background: #FFF;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* 初期状態ではサブメニューを非表示に */
}
.header nav.pcMenu .gnav > li {
  position: relative;
  display: inline-block;
  position: relative;
  line-height: min(3.3068783069vw, 50px);
}
.header nav.pcMenu .gnav > li:hover {
  color: #FFBB00;
  background: #F3F3F3;
  border-radius: min(1.6534391534vw, 25px) min(1.6534391534vw, 25px) 0 0;
}
.header nav.pcMenu .gnav > li:hover .gnav_sub, .header nav.pcMenu .gnav > li:focus-within .gnav_sub, .header nav.pcMenu .gnav > li.open .gnav_sub {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto; /* この時だけクリック可 */
  transition-delay: 0s, 0s, 0s;
}
.header nav.pcMenu .gnav > li > a {
  width: auto;
  height: 100%;
  text-align: center;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: stretch;
  align-items: stretch;
  white-space: nowrap;
  color: #0085CE;
  padding: 0 min(1.3227513228vw, 20px) 0 min(1.9841269841vw, 30px);
  font-family: "Inter", sans-serif;
  font-size: min(0.9920634921vw, 15px);
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.header nav.pcMenu .gnav > li > a:before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #D9D9D9;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.header nav.pcMenu .gnav_sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: min(11.2433862434vw, 170px);
  margin: 0;
  background: #F3F3F3;
  border-radius: 0 0 min(1.6534391534vw, 25px) min(1.6534391534vw, 25px);
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden; /* 非表示時はヒットテストから外すために使う */
  pointer-events: none; /* クリック不可にする */
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s; /* フェードアウトが終わってから非表示に切替 */
  will-change: opacity, transform;
  overflow: hidden;
  /* サブメニュー内リンクのスタイル調整（必要に応じて） */
}
.header nav.pcMenu .gnav_sub > li {
  line-height: min(3.3068783069vw, 50px);
  margin: 0;
}
.header nav.pcMenu .gnav_sub > li a {
  width: 100%;
  height: 100%;
  text-align: left;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: stretch;
  align-items: stretch;
  white-space: nowrap;
  color: #0077B8;
  text-decoration: none;
  font-size: min(0.9920634921vw, 15px);
  padding: 0 min(1.9841269841vw, 30px);
}
.header nav.pcMenu .gnav_sub > li a:hover {
  background: #FFF;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .header nav.pcMenu {
    display: none;
  }
}
.header nav.buttons {
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: min(20.5026455026vw, 310px);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 820px) {
  .header nav.buttons {
    width: 110px;
  }
}
.header nav.spMenu {
  display: block;
  visibility: hidden;
  width: 100vw;
  height: auto;
  background: #0085CE;
  padding: min(8.5978835979vw, 130px) min(3.3068783069vw, 50px) min(3.3068783069vw, 50px) min(3.3068783069vw, 50px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, -100px, 0);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
}
@media screen and (max-width: 820px) {
  .header nav.spMenu {
    width: 100%;
    height: 100vh;
    padding: 80px 0 0;
  }
}
.header nav.spMenu a {
  color: #333333;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.header nav.spMenu .spGnav {
  width: calc(100vw - min(6.6137566138vw, 100px));
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  gap: min(1.9841269841vw, 30px);
}
@media screen and (max-width: 820px) {
  .header nav.spMenu .spGnav {
    width: 100%;
    margin: 0;
    gap: 0;
  }
}
.header nav.spMenu .spGnav > li {
  width: calc((100% - min(5.9523809524vw, 90px)) / 4);
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  flex-direction: column;
  gap: min(1.3227513228vw, 20px);
  position: relative;
}
@media screen and (max-width: 820px) {
  .header nav.spMenu .spGnav > li {
    width: 100%;
    margin: 0;
    gap: 0;
  }
}
.header nav.spMenu .spGnav > li > a {
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0 min(1.3227513228vw, 20px);
  color: #FFF;
}
@media screen and (max-width: 820px) {
  .header nav.spMenu .spGnav > li > a {
    padding: 0 0 20px;
    padding: 15px;
    font-size: 18px;
  }
}
.header nav.spMenu .spGnav_sub {
  width: 100%;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
}
@media screen and (max-width: 820px) {
  .header nav.spMenu .spGnav_sub {
    gap: 0;
    margin: 0;
    background: #0077B8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: none;
  }
}
.header nav.spMenu .spGnav_sub li {
  width: 100%;
  font-size: min(0.9920634921vw, 15px);
}
@media screen and (max-width: 820px) {
  .header nav.spMenu .spGnav_sub li {
    font-size: 14px;
  }
}
.header nav.spMenu .spGnav_sub li > a {
  font-weight: 400;
  color: #FFF;
  border: none;
  position: relative;
  display: block;
  padding: 15px;
  opacity: 0.8;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.header nav.spMenu .spGnav_sub li > a:before {
  display: block;
  content: "";
  width: 5px;
  height: 1px;
  background-color: #D9D9D9;
  position: absolute;
  left: 2px;
  top: 50%;
}
.header nav.spMenu .spGnav_sub li > a:hover {
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  text-decoration: underline;
}
.header nav.spMenu.active {
  display: block;
  visibility: visible;
  width: 100vw;
  transform: translate3d(0, 0, 0);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 1;
}
.footer {
  color: #FFF;
  background: #0085CE;
}
.footer .inquiry {
  background: #0077B8;
  padding: min(5.291005291vw, 80px) 0;
}
.footer .inquiry .f_inner {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.footer_inner {
  width: min(82.0105820106vw, 1240px);
  padding: min(3.9682539683vw, 60px) 0;
  margin: auto;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .footer_inner {
    width: 100%;
    padding: 50px 30px;
    gap: 20px;
  }
}
.footer_cnt {
  width: calc(50% - min(1.9841269841vw, 30px));
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  flex-direction: column;
  gap: min(1.9841269841vw, 30px);
}
@media screen and (max-width: 820px) {
  .footer_cnt {
    width: 100%;
    gap: 20px;
  }
}
.footer_cnt .f_nav {
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  flex-direction: column;
  gap: min(1.6534391534vw, 25px);
}
@media screen and (max-width: 820px) {
  .footer_cnt .f_nav {
    gap: 20px;
  }
}
.footer_cnt .f_nav_main {
  width: 100%;
  padding: 0 0 min(1.6534391534vw, 25px);
  gap: min(1.9841269841vw, 30px);
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 820px) {
  .footer_cnt .f_nav_main {
    padding: 0 0 20px;
    gap: 20px;
  }
}
.footer_cnt .f_nav_main > li {
  position: relative;
  display: inline-block;
  position: relative;
}
.footer_cnt .f_nav_main > li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: stretch;
  align-items: stretch;
  white-space: nowrap;
  color: #FFF;
  font-family: inter;
  font-size: min(0.9920634921vw, 15px);
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  .footer_cnt .f_nav_main > li a {
    font-size: 14px;
  }
}
.footer_cnt .f_nav_main > li a:hover {
  color: #FFBB00;
}
.footer_cnt .f_nav_sub {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
  /* サブメニュー内リンクのスタイル調整（必要に応じて） */
}
.footer_cnt .f_nav_sub > li {
  line-height: min(3.3068783069vw, 50px);
}
.footer_cnt .f_nav_sub > li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: stretch;
  align-items: stretch;
  white-space: nowrap;
  color: #0077B8;
}
.footer_cnt .f_nav_sub > li a:hover {
  color: #FFBB00;
}
.footer_cnt .f_nav_etc {
  padding: 0;
  gap: min(1.9841269841vw, 30px);
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .footer_cnt .f_nav_etc {
    padding: 0 0 20px;
    gap: 20px;
  }
}
.footer_cnt .f_nav_etc > li {
  position: relative;
  display: inline-block;
}
.footer_cnt .f_nav_etc > li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: stretch;
  align-items: stretch;
  white-space: nowrap;
  color: #FFF;
  font-family: inter;
  font-size: min(0.9920634921vw, 15px);
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  .footer_cnt .f_nav_etc > li a {
    font-size: 14px;
  }
}
.footer_cnt .f_nav_etc > li a:hover {
  color: #FFBB00;
}
.footer_cnt .offices {
  display: flex; /* Safari */
  display: -webkit-flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  gap: min(3.3068783069vw, 50px);
}
.footer_cnt .offices > div {
  width: calc(50% - min(1.6534391534vw, 25px));
  font-size: min(0.6613756614vw, 10px);
  line-height: 200%;
}
@media screen and (max-width: 820px) {
  .footer_cnt .offices > div {
    font-size: 10px;
  }
}
.footer picture {
  width: calc(50% - min(1.9841269841vw, 30px));
  display: block;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 820px) {
  .footer picture {
    width: 100%;
  }
}
.footer picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}/*# sourceMappingURL=core.css.map */