@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : base.css
Description : 共通
===================================================================== */
/* ========================================================
    base
======================================================== */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.8;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
  border: none;
}

a {
  text-decoration: none;
  word-break: break-all;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

dt {
  font-weight: 500;
}

em {
  font-style: normal;
}

.sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}

.color_blue {
  color: #306cc7;
}
.color_red {
  color: #e31d1a;
}

.text_align_left {
  text-align: left;
}
.text_align_center {
  text-align: center;
}
.text_align_right {
  text-align: right;
}
.text_indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/* ========================================================
    layout
======================================================== */
html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.546875vw;
    zoom: 95%;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 0.546875vw;
    zoom: 85%;
  }
}

body {
  width: 100%;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5faff;
  z-index: -2;
}

.main {
  position: relative;
  width: 100%;
}

.inner {
  position: relative;
  width: 100%;
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 4rem;
}

.scroll_anime {
  transform: translateY(2rem) !important;
  transition: 1s ease-in-out !important;
  opacity: 0 !important;
}
.scroll_anime.is-appear {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* ========================================================
    header
======================================================== */
.header {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  z-index: 100;
}
.header .headnavi {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  padding: 4.4rem 0;
}
@media screen and (min-width: 768px) {
  .header .headnavi {
    padding: 3rem 0;
  }
}
.header .headnavi.is-appear::before {
  opacity: 1;
}
.header .headnavi::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  transition: 0.5s ease-in-out;
  opacity: 0;
  z-index: -2;
}
.header .headnavi .inner {
  max-width: 1920px;
}
.header .headnavi_column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  z-index: 1;
}
.header .headnavi_column:has(.headnavi_spmenu .headnavi_spmenu_btn.is-show) + .submv_pnavi {
  display: none;
}
.header .headnavi_ttl {
  position: relative;
  width: 44.776119403%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header .headnavi_ttl {
    width: 26.8rem;
  }
}
@media screen and (min-width: 1280px) {
  .header .headnavi_ttl {
    width: 16.1445783133vw;
  }
}
@media screen and (min-width: 1660px) {
  .header .headnavi_ttl {
    width: 26.8rem;
  }
}
.header .headnavi_ttl:has(+ .headnavi_spmenu .headnavi_spmenu_btn.is-show) {
  display: none;
}
.header .headnavi_ttl > a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .headnavi_ttl > a:hover {
    opacity: 1;
  }
}
.header .headnavi_ttl > a > figure {
  display: block;
  width: 100%;
}
.header .headnavi_ttl > a > span {
  display: block;
  margin-top: 1.4rem;
  color: #e31d1a;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .header .headnavi_ttl > a > span {
    margin-top: 1.05rem;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1280px) {
  .header .headnavi_ttl > a > span {
    margin-top: 0.6325301205vw;
    font-size: 1.0240963855vw;
  }
}
@media screen and (min-width: 1660px) {
  .header .headnavi_ttl > a > span {
    margin-top: 1.05rem;
    font-size: 1.7rem;
  }
}
.header .headnavi_spmenu {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .headnavi_spmenu {
    display: none;
  }
}
.header .headnavi_spmenu_btn {
  position: relative;
  width: 10rem;
  margin: 2.4rem 4rem 0 auto;
  z-index: 103;
}
.header .headnavi_spmenu_open {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  font-size: 0;
  background-image: url(../images/common/btn_spmenu_open.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.header .headnavi_spmenu_close {
  position: relative;
  display: none;
  width: 100%;
  aspect-ratio: 1/1;
  font-size: 0;
  background-image: url(../images/common/btn_spmenu_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.header .headnavi_spmenu_cont {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 101;
}
.header .headnavi_spmenu_inner {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 4.4rem 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 102;
}
.header .headnavi_spmenu_ttl {
  position: relative;
  width: 40%;
  margin-left: 4rem;
}
.header .headnavi_spmenu_ttl > a {
  display: block;
  width: 100%;
}
.header .headnavi_spmenu_ttl > a > figure {
  display: block;
  width: 100%;
}
.header .headnavi_spmenu_ttl > a > span {
  display: block;
  margin-top: 1.4rem;
  color: #e31d1a;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.header .headnavi_spmenu_list01 {
  position: relative;
  width: 100%;
  margin-top: 4.4rem;
  border-top: 1px solid #d9d9d9;
}
.header .headnavi_spmenu_list01 > li {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}
.header .headnavi_spmenu_list01 > li > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 4rem 14rem 4rem 4rem;
}
.header .headnavi_spmenu_list01 > li > a::before {
  content: "";
  position: absolute;
  right: 4rem;
  top: 50%;
  display: block;
  width: 6rem;
  aspect-ratio: 60/40;
  background-image: url(../images/common/arrow_bg01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: translateY(-50%);
}
.header .headnavi_spmenu_list01 > li > a > span {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.header .headnavi_spmenu_list02 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 4.4rem;
}
.header .headnavi_spmenu_list02 > li {
  width: 42.6666666667%;
  aspect-ratio: 320/108;
  margin: 0 1.5rem;
}
.header .headnavi_spmenu_list02 > li:first-child > a {
  border: 1px solid #e31d1a;
  background-color: #e31d1a;
}
.header .headnavi_spmenu_list02 > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border: 1px solid #306cc7;
  border-radius: 5.4rem;
  background-color: #306cc7;
}
.header .headnavi_spmenu_list02 > li > a::before {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  display: block;
  width: 1.2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.header .headnavi_spmenu_list02 > li > a > span {
  display: block;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-0.1em);
}
.header .headnavi_pcmenu {
  display: none;
}
@media screen and (min-width: 768px) {
  .header .headnavi_pcmenu {
    display: block;
  }
}
.header .headnavi_pcmenu_cont {
  position: relative;
  width: 100%;
}
.header .headnavi_pcmenu_inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
}
.header .headnavi_pcmenu_list01 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  width: auto;
}
.header .headnavi_pcmenu_list01 > li {
  width: auto;
  margin-left: 2.5rem;
}
.header .headnavi_pcmenu_list01 > li.is-current a::after {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .header .headnavi_pcmenu_list01 > li {
    margin-left: 1.5060240964vw;
  }
}
@media screen and (min-width: 1660px) {
  .header .headnavi_pcmenu_list01 > li {
    margin-left: 2.5rem;
  }
}
.header .headnavi_pcmenu_list01 > li > a {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 0.7em;
}
.header .headnavi_pcmenu_list01 > li > a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 3px solid currentColor;
  transition: width 0.3s ease-in-out;
}
.header .headnavi_pcmenu_list01 > li > a:hover {
  opacity: 1;
}
.header .headnavi_pcmenu_list01 > li > a:hover::after {
  width: 100%;
}
.header .headnavi_pcmenu_list01 > li > a > span {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  paint-order: stroke;
  white-space: nowrap;
}
@media screen and (min-width: 1280px) {
  .header .headnavi_pcmenu_list01 > li > a > span {
    font-size: 1.0843373494vw;
  }
}
@media screen and (min-width: 1660px) {
  .header .headnavi_pcmenu_list01 > li > a > span {
    font-size: 1.8rem;
  }
}
.header .headnavi_pcmenu_list02 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: auto;
  margin-left: 1.5rem;
}
.header .headnavi_pcmenu_list02 > li {
  width: 20rem;
  aspect-ratio: 200/70;
  margin-left: 1.5rem;
}
.header .headnavi_pcmenu_list02 > li:first-child > a {
  border: 1px solid #e31d1a;
  background-color: #e31d1a;
}
@media screen and (min-width: 768px) {
  .header .headnavi_pcmenu_list02 > li:first-child > a:hover::before {
    background-color: #e31d1a;
  }
}
@media screen and (min-width: 768px) {
  .header .headnavi_pcmenu_list02 > li:first-child > a:hover > span {
    color: #e31d1a;
  }
}
.header .headnavi_pcmenu_list02 > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border: 1px solid #306cc7;
  border-radius: 3.5rem;
  background-color: #306cc7;
}
@media screen and (min-width: 768px) {
  .header .headnavi_pcmenu_list02 > li > a:hover {
    background-color: #ffffff;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .header .headnavi_pcmenu_list02 > li > a:hover::before {
    background-color: #306cc7;
    transform: translateY(-50%) scale(1.8);
  }
}
@media screen and (min-width: 768px) {
  .header .headnavi_pcmenu_list02 > li > a:hover > span {
    color: #306cc7;
  }
}
.header .headnavi_pcmenu_list02 > li > a::before {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  display: block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.header .headnavi_pcmenu_list02 > li > a > span {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-0.1em);
  transition: 0.3s ease;
}

/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #5482c8;
  z-index: -2;
}
.footer .footnavi {
  position: relative;
  width: 100%;
  padding: 12rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi {
    padding: 9rem 0;
  }
}
.footer .footnavi_column {
  position: relative;
  width: 88.0597014925%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_column {
    width: 80%;
  }
}
.footer .footnavi_ttl {
  position: relative;
  width: 100%;
  padding-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_ttl {
    padding-bottom: 2.4rem;
  }
}
.footer .footnavi_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e0e9f3;
}
.footer .footnavi_ttl > a {
  display: block;
  width: 57.9661016949%;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_ttl > a {
    width: 21%;
  }
}
@media screen and (min-width: 768px) {
  .footer .footnavi_ttl > a:hover {
    opacity: 1;
  }
}
.footer .footnavi_ttl > a > figure {
  display: block;
  width: 100%;
}
.footer .footnavi_ttl > a > span {
  display: block;
  margin-top: 1.4rem;
  color: #e0e9f3;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_ttl > a > span {
    margin-top: 1.05rem;
    font-size: 1.6rem;
  }
}
.footer .footnavi_wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_wrap {
    margin-top: 1.8rem;
  }
}
.footer .footnavi_subttl {
  position: relative;
  width: 100%;
}
.footer .footnavi_subttl > a {
  position: relative;
  display: inline-block;
  padding-left: 1.3em;
}
.footer .footnavi_subttl > a::before {
  content: "";
  position: absolute;
  left: 0.1em;
  top: 0.55em;
  display: block;
  width: 0.8em;
  aspect-ratio: 1/1;
  background-color: #e0e9f3;
  clip-path: polygon(0% 35%, 50% 0%, 100% 35%, 100% 100%, 0% 100%);
}
.footer .footnavi_subttl > a > span {
  color: #e0e9f3;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_subttl > a > span {
    font-size: 1.8rem;
  }
}
.footer .footnavi_list {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list {
    flex-direction: column;
    width: auto;
    margin: 0 12rem 0 0;
  }
}
.footer .footnavi_list:last-child {
  margin: 2.4rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list:last-child {
    margin: 0;
  }
}
.footer .footnavi_list > li {
  width: auto;
  margin: 2.4rem 7rem 0 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list > li {
    margin: 1.8rem 0 0 0;
  }
}
.footer .footnavi_list > li > a {
  position: relative;
  display: inline-block;
  padding-left: 1.3em;
}
.footer .footnavi_list > li > a::before {
  content: "";
  position: absolute;
  left: 0.3em;
  top: 0.75em;
  display: block;
  width: 0.4em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #e0e9f3;
}
.footer .footnavi_list > li > a > span {
  color: #e0e9f3;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list > li > a > span {
    font-size: 1.8rem;
  }
}
.footer .footnavi_iso {
  position: relative;
  width: 18rem;
  margin: 4.8rem 0 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_iso {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 22rem;
    margin: 0;
  }
}
.footer .footnavi_pagetop {
  position: absolute;
  right: 0;
  bottom: calc(100% - 7.9rem);
  display: block;
  width: 9rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_pagetop {
    bottom: calc(100% - 4.8rem);
    width: 7.2rem;
  }
}
.footer .footnavi_pagetop > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  background-image: url(../images/common/btn_pagetop.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_pagetop > a:hover {
    transform: translateY(-0.5rem);
    opacity: 1;
  }
}
.footer .copyright {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    padding: 3rem 0;
  }
}
.footer .copyright::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e0e9f3;
}
.footer .copyright_text {
  width: 100%;
  color: #e0e9f3;
  font-family: "Lexend Exa", sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .footer .copyright_text {
    font-size: 1.6rem;
  }
}

/* ========================================================
    submv
======================================================== */
.submv {
  position: relative;
  width: 100%;
}
.submv + section {
  padding-top: 12rem !important;
}
.submv .inner {
  max-width: 1920px;
  padding: 0;
}
.submv_column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 89.3333333333%;
  aspect-ratio: 670/360;
  margin: 0 auto;
  padding: 0;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .submv_column {
    width: 95.8333333333%;
    aspect-ratio: 1840/380;
    padding: 0 56.25% 0 0;
  }
}
.submv_column:has(.submv_ttl2) {
  width: 100%;
  aspect-ratio: 750/630;
  padding: 0;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .submv_column:has(.submv_ttl2) {
    aspect-ratio: 1920/800;
  }
}
.submv_column:has(.submv_ttl2)::before {
  content: none;
}
.submv_column:has(.submv_ttl2)::after {
  content: "";
}
.submv_column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -2;
}
.submv_column::after {
  content: none;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .submv_column::after {
    content: "";
  }
}
.submv_ttl {
  position: relative;
  width: 100%;
  text-align: center;
}
.submv_ttl > span {
  display: block;
  color: #e31d1a;
  font-family: "Aleo", serif;
  font-size: 2.6rem;
  font-weight: 700;
  transform: scale(0.9, 1);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .submv_ttl > span {
    font-size: 2.2rem;
  }
}
.submv_ttl > em {
  display: block;
  margin-top: 0.5em;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .submv_ttl > em {
    margin-top: 0.25em;
  }
}
.submv_ttl2 {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 4rem;
}
@media screen and (min-width: 768px) {
  .submv_ttl2 {
    padding: 0 12rem;
  }
}
.submv_ttl2 > span {
  position: relative;
  display: inline-block;
  margin-top: 0;
  padding: 0.2em 0.4em;
  color: #306cc7;
  font-family: "Lexend Exa", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .submv_ttl2 > span {
    font-size: 1.6rem;
  }
}
.submv_ttl2 > span.bg01 {
  color: #e31d1a;
  background: linear-gradient(225deg, #e7edf8 0%, #dbf0f0 100%);
}
.submv_ttl2 > span.name01 {
  margin: 1.6em 0 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  letter-spacing: inherit;
}
.submv_ttl2 > span.name02 {
  margin: 0.8em 0 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  letter-spacing: inherit;
}
.submv_ttl2 > em.min {
  position: relative;
  display: inline-block;
  margin-top: 0.7em;
  padding: 0 0.4em;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.submv_ttl2 > em.min::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 0.3em;
  aspect-ratio: 1/1;
  background-image: url(../images/common/common_bg03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: scale(1, 1);
}
.submv_ttl2 > em.min::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 0.3em;
  aspect-ratio: 1/1;
  background-image: url(../images/common/common_bg03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: scale(-1, -1);
}
.submv_ttl2 > strong {
  position: relative;
  display: block;
  margin-top: 0.6em;
  color: #ffffff;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .submv_ttl2 > strong {
    font-size: 7.4rem;
  }
}
.submv_ttl2 > strong > small {
  font-size: 65%;
  line-height: 1.6;
}
.submv_wrap {
  display: none;
}
.submv_pnavi {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .submv_pnavi {
    margin-top: 1.5rem;
  }
}
.submv_pnavi > li {
  position: relative;
  width: auto;
  padding-right: 2em;
}
.submv_pnavi > li:last-child {
  padding-right: 0;
}
.submv_pnavi > li:last-child::before {
  content: none;
}
.submv_pnavi > li::before {
  content: "／";
  position: absolute;
  display: block;
  top: 0.25em;
  right: 0.5em;
  line-height: 1;
  color: currentColor;
  pointer-events: none;
}
.submv_pnavi > li a {
  position: relative;
  display: block;
  padding-bottom: 0.3em;
}
.submv_pnavi > li a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 3px solid currentColor;
  transition: width 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .submv_pnavi > li a:hover {
    opacity: 1;
  }
  .submv_pnavi > li a:hover::after {
    width: 100%;
  }
}
.submv_pnavi > li span {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .submv_pnavi > li span {
    font-size: 1.6rem;
  }
}

/* ========================================================
    popup
======================================================== */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
.popup_area {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1010;
}
.popup_bg {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1020;
  cursor: pointer;
}
.popup_inner {
  position: relative;
  align-self: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 5rem 0;
  z-index: 1030;
}
@media screen and (min-width: 768px) {
  .popup_inner {
    width: calc(100% - 8rem);
  }
}
.popup_close {
  position: relative;
  width: 8rem;
  aspect-ratio: 1/1;
  margin: 0 2rem 2rem auto;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .popup_close {
    margin: 0 -4rem -4rem auto;
  }
}
.popup_close::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/btn_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.popup_list > li {
  display: none;
}/*# sourceMappingURL=base.css.map */