@charset "UTF-8";
/* ===============================================
# ブラウザ幅でフォントサイズを変える関数
=============================================== */
/* ===============================================
# remのclamp
=============================================== */
/* ===============================================
# 共通
=============================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.fixed,
body.fixed {
  overflow-y: hidden;
}

html {
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  overflow-x: clip;
  color: #1A2942;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
  min-width: 960px;
}
body.fixed {
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    min-width: initial;
    line-height: 1.75;
  }
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.6;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

[href^=tel] {
  text-decoration: none !important;
  display: inline-block;
}
@media (min-width: 767px) {
  [href^=tel] {
    pointer-events: none !important;
  }
}

/* ===============================================
# ユーティリティクラス
=============================================== */
.text-small {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .text-small {
    font-size: 1.4rem;
  }
}

.text-large {
  font-size: clamp(1.6rem, 1.2445095168vw, 1.8rem);
}
@media (max-width: 767px) {
  .text-large {
    font-size: 1.4rem;
  }
}

.fw500 {
  font-weight: 500 !important;
}

.fw700 {
  font-weight: 700 !important;
}

.en {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
}

.inner {
  max-width: 81.9912152269%;
  width: 1120px;
  margin: auto;
}
@media (max-width: 767px) {
  .inner {
    width: 89.3333333333%;
    max-width: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 1023px) {
  .tab-none {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp {
    display: inline;
  }
  .pc {
    display: none;
  }
}
.tleft {
  text-align: left;
}

.tright {
  text-align: right;
}

.mt10 {
  margin-top: 10px !important;
}

/* list / link */
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #178CD9;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flex.flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flex.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* section */
section img {
  max-width: 100%;
  height: auto;
  line-height: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 767px) {
  section br.pc {
    display: none;
  }
}
section br.sp {
  display: none;
}
@media (max-width: 767px) {
  section br.sp {
    display: block;
  }
}

/* pc/sp only */
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/* ===============================================
# ヘッダー
=============================================== */
/* main */
main:not(.top_main) {
  margin-top: max(6.25vw, 80px);
}
@media (max-width: 1200px) {
  main:not(.top_main) {
    margin-top: 75px;
  }
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header {
  height: max(6.25vw, 80px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
  -webkit-box-shadow: 0 -8px 34px rgba(26, 41, 66, 0.2);
          box-shadow: 0 -8px 34px rgba(26, 41, 66, 0.2);
}
@media (max-width: 1200px) {
  .header {
    height: 75px;
  }
}
.header.--active {
  height: 80px;
}
@media (max-width: 1200px) {
  .header.--active {
    height: 75px;
  }
}
.header.--upMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
.header.--downMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
.header__inner {
  width: 100%;
  padding: 0 5.2083333333vw;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .header__inner {
    padding: 0 3%;
  }
}
.header .logo {
  height: auto;
  width: clamp(242px, 19.4270833333vw, 373px);
}
@media (max-width: 767px) {
  .header .logo {
    width: 100%;
    max-width: 125px;
  }
}
.header .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.header .overlay {
  bottom: 0;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
}
.header .overlay.active {
  visibility: visible;
  opacity: 1;
}
.header .header_nav {
  height: 100%;
}
@media (max-width: 1200px) {
  .header .header_nav {
    position: absolute;
    width: 50%;
    height: 100vh;
    left: auto;
    right: -140%;
    bottom: 0;
    top: 0;
    background: #fff;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    z-index: 11;
    overflow: scroll;
  }
  .header .header_nav.active {
    right: 0;
    background: #1A2942;
  }
}
@media (max-width: 767px) {
  .header .header_nav {
    width: 100%;
  }
}
.header .nav_inner {
  height: 100%;
}
@media (max-width: 1200px) {
  .header .nav_inner {
    height: auto;
    padding: 80px 40px;
    background: #1A2942;
  }
}
@media (max-width: 767px) {
  .header .nav_inner {
    padding: 80px 15px 50px;
  }
}
.header .gnavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625vw;
  height: 100%;
}
@media (max-width: 1200px) {
  .header .gnavi {
    height: auto;
    position: relative;
    display: block;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
  }
}
.header .nav_ttl {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .header .nav_ttl {
    height: auto;
    position: relative;
    display: block;
  }
  .header .nav_ttl:first-child {
    padding-top: 0;
  }
}
.header .nav_ttl > a,
.header .nav_ttl .dropmenu_ttl {
  color: #1A2942;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.0980966325vw, 1.6rem);
  position: relative;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  display: block;
}
@media (max-width: 1200px) {
  .header .nav_ttl > a,
  .header .nav_ttl .dropmenu_ttl {
    font-size: 1.5rem;
    color: #fff;
    padding: 22px 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
}
@media (min-width: 1201px) {
  .header .nav_ttl > a {
    padding: 0.75em 0;
  }
  .header .nav_ttl > a::after {
    content: "";
    display: block;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    width: 0;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0px;
    z-index: 1;
    background: #178CD9;
  }
  .header .nav_ttl > a:hover {
    color: #178CD9;
  }
  .header .nav_ttl > a:hover:after {
    width: 100%;
    left: 0;
    right: auto;
  }
}
.header .pc_contBtn a {
  display: block;
  width: 180px;
  max-width: 100%;
  margin: auto;
  text-align: center;
  padding: 0.75em;
  border: 2px solid #FFA726;
  border-radius: 100px;
  background-color: #FFA726;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1.5;
  letter-spacing: 0.08em;
  overflow: hidden;
  z-index: 0;
}
.header .pc_contBtn a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 120%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
.header .pc_contBtn a:hover {
  color: #FFA726;
}
.header .pc_contBtn a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.header .hambuger {
  display: none;
}
@media (max-width: 1200px) {
  .header .hambuger {
    display: block !important;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 999;
  }
  .header .hambuger span {
    position: absolute;
    background: #1A2942;
    width: 100%;
    height: 3px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .header .hambuger span:first-child {
    top: 0;
  }
  .header .hambuger span:nth-child(2) {
    top: 9px;
  }
  .header .hambuger span:last-child {
    top: 18px;
  }
  .header .hambuger.active span {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .header .hambuger.active span:first-child {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    top: 8px;
    background: #fff;
  }
  .header .hambuger.active span:nth-child(2),
  .header .hambuger.active span:last-child {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    top: 8px;
    background: #fff;
  }
}
.header .dropmenu {
  position: relative;
}
@media (min-width: 1201px) {
  .header .dropmenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}
.header .dropmenu.is-open .spToggle::after {
  width: 0;
}
.header .dropmenu.is-open .sub-menu {
  display: block;
}
.header .spToggle {
  display: none;
}
@media (max-width: 1200px) {
  .header .spToggle {
    display: block;
    position: absolute;
    right: 0;
    top: 18px;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .header .spToggle::before, .header .spToggle::after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
  }
  .header .spToggle::before {
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header .spToggle::after {
    width: 2px;
    height: 15px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }
}
@media (min-width: 1201px) {
  .header .sub-menu {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 1050px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #1A2942;
    padding: 2.0833333333vw 3.125vw;
    color: #fff;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media (max-width: 1200px) {
  .header .sub-menu {
    background: transparent;
    padding: 22px 5px;
    position: unset;
    width: auto !important;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    display: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 1200px) {
  .header .sub-menu__ttl {
    display: none;
  }
}
@media (min-width: 1201px) {
  .header .sub-menu__ttl {
    font-size: clamp(4rem, 3.2942898975vw, 5rem);
    padding-bottom: 0.2em;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    margin-bottom: 0.6em;
  }
  .header .sub-menu__ttl .ttlInner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .header .sub-menu__ttl p {
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-family: "Heebo", sans-serif;
  }
  .header .sub-menu__ttl span {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.06em;
    display: block;
    opacity: 0.5;
  }
  .header .sub-menu__ttl span .blue {
    display: inline;
    color: #178CD9;
    opacity: 0.5;
  }
}
.header .sub-menu__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 1201px) {
  .header .sub-menu__lists {
    gap: 16px 1.5625vw;
  }
}
@media (max-width: 1200px) {
  .header .sub-menu__lists {
    gap: 18px 10px;
  }
}
.header .sub-menu__list {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media (min-width: 1201px) {
  .header .sub-menu__list {
    width: calc((100% - 1.5625vw * 2) / 3 - 1px);
  }
}
@media (max-width: 1200px) {
  .header .sub-menu__list {
    padding: 0;
    width: calc((100% - 10px) / 2 - 1px);
  }
}
.header .sub-menu__list a {
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  height: 100%;
  padding-left: 0.875em;
  font-size: 1.6rem;
  color: #fff;
  white-space: nowrap;
  font-weight: 400;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header .sub-menu__list a::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 1px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header .sub-menu__list a:hover {
  opacity: 0.7;
}
@media (max-width: 1200px) {
  .header .sub-menu__list a {
    font-size: 1.3rem !important;
  }
}
.header .contact_nav_btn {
  display: none;
}
@media (max-width: 1200px) {
  .header .contact_nav_btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .header .contact_nav_btn {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.header .contact_nav_btn .sp_btn {
  width: 100%;
  max-width: 310px;
  height: 60px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: #FFA726;
  position: relative;
  font-size: 1.7rem;
  font-weight: 500;
}
.header .contact_nav_btn .sp_btn::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  background-image: url(../img/mail.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.header .contact_nav_btn .sp_btn.--line {
  background: #05C755;
}
.header .contact_nav_btn .sp_btn.--line::before {
  background-image: url(../img/massege.svg);
}
.header .contact_nav_btn .tel {
  text-align: center;
  color: #fff;
}
.header .contact_nav_btn .tel a {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  padding-left: 20px;
  color: #fff;
  position: relative;
  font-family: "Heebo", sans-serif;
  letter-spacing: 0.04em;
}
.header .contact_nav_btn .tel a::before {
  position: absolute;
  content: "";
  aspect-ratio: 17/22;
  width: 18px;
  top: 50%;
  left: -6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/tell.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.header .contact_nav_btn .tel p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.header .menu_2 {
  display: none;
}
@media (max-width: 1200px) {
  .header .menu_2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  .header .menu_2 {
    gap: 14px;
  }
}
@media (max-width: 1200px) {
  .header .menu_2 .tel a,
  .header .menu_2 .cta a {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: block;
  }
  .header .menu_2 .tel a {
    background: #178CD9;
    position: relative;
  }
  .header .menu_2 .tel a::before {
    position: absolute;
    content: "";
    aspect-ratio: 17/22;
    width: 16px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    background-image: url(../img/tell.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .header .menu_2 .cta a {
    background: #FFA726;
    position: relative;
  }
  .header .menu_2 .cta a::before {
    position: absolute;
    content: "";
    aspect-ratio: 20/16;
    width: 20px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    background-image: url(../img/mail.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 1200px) {
  .header .contact_cta {
    display: none;
  }
}

/* ------------------------------------------------
  breadcrumb
------------------------------------------------- */
.breadcrumb {
  font-weight: 500;
  margin-top: 75px;
}
@media (max-width: 767px) {
  .breadcrumb {
    margin-top: 40px;
  }
}
.breadcrumb > p,
.breadcrumb > div {
  display: inline;
  list-style: none;
  font-size: 1.4rem;
}
.breadcrumb > p:after,
.breadcrumb > div:after {
  content: ">";
  padding: 0 0.2em;
  color: rgba(26, 41, 66, 0.5);
}
.breadcrumb > p:last-child:after,
.breadcrumb > div:last-child:after {
  content: "";
}
.breadcrumb > p a,
.breadcrumb > div a {
  color: rgba(26, 41, 66, 0.5);
}
@media (hover: hover) {
  .breadcrumb > p a:hover,
  .breadcrumb > div a:hover {
    color: rgba(26, 41, 66, 0.5);
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb div {
    font-size: 1.1rem;
  }
}

/* ------------------------------------------------
  Footer
------------------------------------------------- */
.footer {
  background: #1A2942;
  padding: 100px 0 90px;
}
@media (max-width: 767px) {
  .footer {
    padding: 60px 0 20px;
  }
}
.footer p,
.footer a,
.footer span {
  color: #fff;
}
.footer .footer_out_link {
  background: url(../img/out_link.svg) no-repeat right center/0.875em;
  display: inline-block;
  padding-right: 1.25em;
}
.footer .f_flex {
  max-width: 100%;
  padding: 0 0 100px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .footer .f_flex {
    margin-bottom: 30px;
    padding: 0 0 30px;
    display: block;
  }
}
@media (max-width: 767px) {
  .footer .footer_info_box {
    margin-bottom: 50px;
  }
}
.footer .f_logoLink {
  margin-bottom: 60px;
  display: block;
}
@media (max-width: 767px) {
  .footer .f_logoLink {
    margin-bottom: 20px;
  }
}
.footer .f_logo {
  width: 100%;
  max-width: clamp(162px, 15.5197657394vw, 262px);
  height: auto;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .footer .f_logo {
    max-width: 130px;
  }
}
.footer .company_name {
  font-size: 1.6rem;
  line-height: 1.65;
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer .company_name {
    font-size: 1.4rem;
  }
}
.footer .service_label {
  font-size: 1.2rem;
  font-weight: 500;
}
.footer .tel_map_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.2708333333vw;
}
@media (max-width: 767px) {
  .footer .tel_map_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.footer .address {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.footer .tel {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .footer .tel {
    padding-top: 5px;
  }
}
.footer .map_link a {
  font-size: 1.4rem;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .map_link a:hover {
  opacity: 0.7;
}
.footer .footer-nav {
  width: 45.7142857143%;
}
@media (max-width: 767px) {
  .footer .footer-nav {
    width: 100%;
  }
}
.footer .footerList {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: 20px 4.1666666667vw;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .footer .footerList {
    display: block;
    margin-top: 20px;
  }
}
.footer .footerList__ttl {
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer .footerList__ttl:not(:first-of-type) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .footer .footerList__ttl a {
    display: block;
  }
}
.footer .footerSv__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer .footerSv__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.footer .footerSv__ttl {
  font-size: clamp(1.6rem, 1.317715959vw, 2rem);
  width: 137px;
}
.footer .footerSv__subList {
  width: 335px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 10px;
}
@media (max-width: 767px) {
  .footer .footerSv__subList {
    width: 100%;
    max-width: 375px;
    gap: 12px 8px;
  }
}
.footer .footerSv__subList li {
  font-size: 1.4rem;
  width: calc((100% - 10px) / 2 - 1px);
}
@media (max-width: 767px) {
  .footer .footerSv__subList li {
    width: calc((100% - 8px) / 2 - 1px);
  }
}
.footer .footerSv__subList a {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footerSv__subList.hover-link a::after {
  background: rgba(255, 255, 255, 0.5);
}
.footer .footer_mid {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .footer .footer_mid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 30px;
  }
}
.footer .footer_mid .link_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 374px) {
  .footer .footer_mid .link_box {
    gap: 20px;
  }
}
.footer .footer_mid .link_box a {
  font-size: 1.4rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .footer_mid .link_box a:hover {
  opacity: 0.7;
}
.footer .footer_mid .icon_box a {
  display: block;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .footer_mid .icon_box a:hover {
  opacity: 0.7;
}
.footer .footer_mid .icon_box a img {
  width: 30px;
  height: 30px;
}
.footer .footer_mid .icon_box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer .footer_mid .icon_box ul {
    gap: 20px;
  }
}
.footer .footer_bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .footer .footer_bottom {
    display: block;
  }
}
.footer .footer_bottom__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.footer .footer_bottom__lists li:first-child {
  position: relative;
  padding-right: 16px;
}
.footer .footer_bottom__lists li:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  background: #F5F5F5;
  position: absolute;
  inset: 61% 0 auto auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer .footer_bottom__lists a {
  color: #F5F5F5;
  position: relative;
  font-size: 1.2rem;
  text-align: left;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .footer .footer_bottom__lists a {
    width: 100%;
    display: inline-block;
  }
}
.footer .footer_bottom__lists a:hover {
  opacity: 0.7;
}
.footer .footer_bottom .copy {
  font-size: 1.2rem;
  text-align: left;
  line-height: 1;
  letter-spacing: 0.09em;
  color: #F5F5F5;
}
@media (max-width: 767px) {
  .footer .footer_bottom .copy {
    font-size: 1rem;
    margin-top: 40px;
  }
}

/* ------------------------------------------------
  Cookie banner
------------------------------------------------- */
#cookie {
  display: block;
  margin-top: -160px;
  padding-top: 160px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  visibility: hidden;
  z-index: 10;
}
.cookie-consent .container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1120px) {
  .cookie-consent .container {
    padding: 0 20px;
  }
}
.cookie-consent a {
  color: #fff !important;
  text-decoration: underline;
}
.cookie-consent a:hover {
  opacity: 0.8;
}
.cookie-consent.is-show {
  visibility: visible;
}

.cookie-agree {
  color: #fff;
  background: #178CD9;
  padding: 0.5em 1.5em;
  white-space: nowrap;
  margin-left: 10px;
}
.cookie-agree:hover {
  cursor: pointer;
}

.cc-hide1 {
  display: none;
}

.cc-hide2 {
  -webkit-animation: hide 1s linear 0s forwards;
  animation: hide 1s linear 0s forwards;
}

@-webkit-keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .cookie-consent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}
/* ------------------------------------------------
  Page top / titles
------------------------------------------------- */
.pageTTL {
  padding: 2.3666666667em 5.8333333333%;
  font-size: clamp(5rem, 4.0263543192vw, 6rem);
}
@media (max-width: 767px) {
  .pageTTL {
    padding: 40px 5% 50px;
    font-size: 3.2rem;
  }
}
.pageTTL .ttl-h1 {
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  text-transform: uppercase;
}
.pageTTL .ttl-h1::after {
  content: attr(data-eng);
  font-family: "Heebo", sans-serif;
  text-align: left;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0.75em;
  line-height: 1;
  display: table;
  padding: 0.375em 1.375em 0.25em;
  background: #178CD9;
  font-weight: bold;
  letter-spacing: 0.02em;
  border-radius: 0.375em;
}
@media (max-width: 767px) {
  .pageTTL .ttl-h1::after {
    font-size: 1.4rem;
  }
}

.secTTL {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  .secTTL {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .secTTL {
    font-size: 1.6rem;
  }
}

.secsubTTL {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  display: block;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1200px) {
  .secsubTTL {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .secsubTTL {
    font-size: 3.5rem;
  }
}
.secsubTTL.grd {
  background: -webkit-gradient(linear, left top, right bottom, from(#1b85dc), to(#08b0cb));
  background: -webkit-linear-gradient(left top, #1b85dc 0%, #08b0cb 100%);
  background: linear-gradient(to right bottom, #1b85dc 0%, #08b0cb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* section title */
.c-en-h2 {
  font-family: "Heebo", sans-serif;
  font-size: clamp(6rem, 5.1244509517vw, 8rem);
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .c-en-h2 {
    font-size: 3.4rem;
    margin-bottom: 0.8823529412em;
  }
}
.c-en-h2 .en {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #178CD9;
  line-height: 1.2;
  display: block;
}
.c-en-h2 .ja {
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  font-size: clamp(2.2rem, 1.756954612vw, 2.6rem);
  display: block;
  margin-top: 0.2307692308em;
}
@media (max-width: 767px) {
  .c-en-h2 .ja {
    font-size: 1.4rem;
  }
}
.c-en-h2.--white .en,
.c-en-h2.--white .ja {
  color: #fff;
}
.c-en-h2.--center {
  text-align: center;
}

.c-sec-h2 {
  text-align: left;
  font-weight: 700;
  font-size: clamp(4rem, 3.2210834553vw, 4.8rem);
  line-height: 1.5;
  margin-bottom: 1.25em;
}
@media (max-width: 767px) {
  .c-sec-h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
.c-sec-h2 .sub {
  display: block;
  font-size: clamp(1.5rem, 1.1713030747vw, 1.8rem);
  color: rgba(26, 41, 66, 0.5);
  margin-bottom: 0.8888888889em;
  font-weight: 500;
}

.c-enTtl {
  text-align: left;
  font-weight: 700;
  font-size: clamp(5.6rem, 4.39238653vw, 6.4rem);
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 767px) {
  .c-enTtl {
    font-size: 4rem;
  }
}
.c-enTtl .en {
  line-height: 1;
  letter-spacing: 0.06em;
  display: block;
  font-weight: 700;
  font-family: "Heebo", sans-serif;
}
.c-enTtl .ja {
  font-size: 0.375em;
  display: block;
  line-height: 1.6;
}
.c-enTtl.ttl-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.46875em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0.625em;
  border-bottom: solid 2px rgba(26, 41, 66, 0.1);
  margin-bottom: 0.9375em;
}
@media (max-width: 767px) {
  .c-enTtl.ttl-left {
    font-size: 3.5rem;
  }
}
.c-enTtl.ttl-left::before {
  content: "";
  display: block;
  width: 1.875em;
  height: 2px;
  background: rgba(26, 41, 66, 0.5);
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0;
  right: auto;
}
.c-enTtl.center {
  text-align: center;
}
.c-enTtl.center .en {
  margin-bottom: 0.3125em;
}

.c-h3 {
  font-size: clamp(3.2rem, 2.9282576867vw, 4.8rem);
}
@media (max-width: 767px) {
  .c-h3 {
    font-size: 2rem;
  }
}

.c-sec-h3 {
  text-align: left;
  font-weight: 700;
  font-size: clamp(2.8rem, 2.196193265vw, 3.2rem);
  line-height: 1.5;
  margin-bottom: 1.25em;
}
@media (max-width: 767px) {
  .c-sec-h3 {
    font-size: 2rem;
  }
}
.c-sec-h3.--num {
  position: relative;
}
.c-sec-h3.--num::before {
  display: block;
  content: "0" counter(number);
  counter-increment: number;
  color: #178CD9;
  font-family: "Heebo", sans-serif;
  font-weight: bold;
  opacity: 0.5;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.3333333333em;
}
.c-sec-h3.--en::before {
  content: attr(data-en);
  font-family: "Heebo", sans-serif;
  text-align: left;
  color: #1A2942;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5714285714em;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .c-sec-h3.--en::before {
    font-size: 1.3rem;
  }
}

/* white card shadow helper */
.shadow {
  -webkit-box-shadow: 0px 8px 10px 0 rgba(0, 32, 103, 0.03);
  box-shadow: 0px 8px 10px 0 rgba(0, 32, 103, 0.03);
  border-radius: 12px;
  background: #fff;
}

/* ------------------------------------------------
  Next contents
------------------------------------------------- */
section.next {
  padding-top: 50px;
  padding-bottom: 70px;
  margin-bottom: 0;
}
section.next dt {
  margin-bottom: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  font-size: 3.5rem;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  section.next dt {
    font-size: 3rem;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
section.next dt:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 40px;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0;
}
@media (max-width: 767px) {
  section.next dt:after {
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  section.next .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (max-width: 500px) {
  section.next .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
section.next .flex li {
  width: 366px;
  display: block;
}
@media screen and (max-width: 1200px) {
  section.next .flex li {
    width: 32%;
  }
}
@media screen and (max-width: 500px) {
  section.next .flex li {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
section.next .flex li dd {
  width: 100%;
}
@media screen and (max-width: 500px) {
  section.next .flex li dd {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
section.next .flex li dd > div {
  width: 60%;
  background: #fff;
  padding: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  section.next .flex li dd > div {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  section.next .flex li dd > div {
    width: 60%;
  }
}
section.next .flex li dd > div p {
  font-size: 2rem;
  font-weight: 600;
  padding-left: 25px;
  line-height: 1;
  text-align: left;
  color: #333;
}
@media screen and (max-width: 767px) {
  section.next .flex li dd > div p {
    font-size: 1.9rem;
    padding-left: 15px;
  }
}
section.next .flex li dd > div p.en {
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  color: #009CC9;
}
@media screen and (max-width: 767px) {
  section.next .flex li dd > div p.en {
    font-size: 1.4rem;
  }
}
section.next .flex li figure {
  width: 40%;
  height: auto;
  background: #8E8E8E;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  section.next .flex li figure {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  section.next .flex li figure {
    width: 40%;
  }
}

/* ------------------------------------------------
  404 / maintenance
------------------------------------------------- */
#error {
  padding: max(6.25vw, 100px) 0 max(7.2916666667vw, 120px);
}
@media (max-width: 767px) {
  #error {
    padding: 50px 0 60px;
  }
}
#error h1 {
  color: #178CD9;
  font-size: 7rem;
  font-family: "Heebo", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #error h1 {
    font-size: 4rem;
  }
}
#error h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #error h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
#error .primary-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  #error .primary-btn {
    margin-top: 30px;
  }
}

#maintenance .container {
  margin-top: 130px;
  margin-bottom: 50px;
}
#maintenance .schedule {
  margin-top: 20px;
  font-weight: bold;
  font-size: 20px;
}
#maintenance .number {
  color: #178CD9;
}
#maintenance .contact_box {
  margin-top: 60px;
  background: #F6F6F6;
  padding: 50px 10px;
}
#maintenance h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
#maintenance .link {
  font-size: 20px;
}

/* ===============================================
# contact_sec
=============================================== */
#contact_sec {
  background-position: center;
  text-align: center;
  margin-bottom: 0;
  background: url(../img/logo_bg.webp) no-repeat center 3.8541666667vw/86.3020833333vw #F2F4F8;
  padding: max(7.2916666667vw, 100px) 0;
  position: relative;
}
@media (max-width: 767px) {
  #contact_sec {
    text-align: left;
    background-position: center 40px;
    padding: 60px 5% 70px;
  }
}
#contact_sec .contact_heading img {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10%;
  z-index: -1;
}
#contact_sec .contact_heading span {
  font-size: clamp(30px, 2.5622254758vw, 40px);
  font-weight: bold;
  color: #178CD9;
  letter-spacing: 0.06em;
  display: block;
}
@media (max-width: 767px) {
  #contact_sec .contact_heading span {
    font-size: 19px;
  }
}
#contact_sec .contact_heading span:nth-of-type(2) {
  border-bottom: 1px solid #178CD9;
  display: inline-block;
  letter-spacing: 0.01em;
}
#contact_sec .contact_cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.96875vw;
  margin-top: 90px;
  position: relative;
  z-index: 20;
}
@media (max-width: 767px) {
  #contact_sec .contact_cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
}
#contact_sec .contact_card {
  width: clamp(280px, 27.5vw, 528px);
  /* 色バリエーション */
}
@media (max-width: 767px) {
  #contact_sec .contact_card {
    width: 100%;
  }
}
#contact_sec .contact_card > a {
  display: block;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 24px #B4C2CB;
          box-shadow: 0 10px 24px #B4C2CB;
  padding: 37px 20px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 767px) {
  #contact_sec .contact_card > a {
    padding: 20px;
  }
}
#contact_sec .contact_card > a:hover .contact_orange.contact_button {
  color: #fff;
}
#contact_sec .contact_card > a:hover .contact_orange.contact_button:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
#contact_sec .contact_card > a:hover .contact_green.contact_button {
  color: #fff;
}
#contact_sec .contact_card > a:hover .contact_green.contact_button:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
#contact_sec .contact_card .contact_image {
  width: clamp(140px, 10.41667vw, 200px);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #contact_sec .contact_card .contact_image {
    width: 140px;
    margin-bottom: 30px;
  }
}
#contact_sec .contact_card .contact_button-wrap {
  position: relative;
  width: 100%;
  margin-top: 26px;
}
#contact_sec .contact_card .contact_label {
  font-size: clamp(12px, 0.83333vw, 16px);
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: bold;
  display: block;
  padding: 10px 20px;
  border-radius: 50px;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  letter-spacing: 0.06em;
  z-index: 1;
  white-space: nowrap;
}
#contact_sec .contact_card .contact_label.blue {
  color: #178CD9;
  border: 2px solid #178CD9;
}
#contact_sec .contact_card .contact_label.orange {
  color: #FFA726;
  border: 2px solid #FFA726;
}
#contact_sec .contact_card .contact_label.green {
  color: #05C755;
  border: 2px solid #05C755;
}
#contact_sec .contact_card .contact_label::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
  outline-offset: -1px;
}
#contact_sec .contact_card .contact_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(21px, 1.6837481698vw, 25px);
  padding: 20px 10px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  line-height: 1.75;
  letter-spacing: 0.06em;
  width: 100%;
  max-width: 443px;
  height: 83px;
  z-index: 0;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  border: solid 2px #178CD9;
}
@media (max-width: 767px) {
  #contact_sec .contact_card .contact_button {
    padding: 18px 30px;
    font-size: 16px;
    height: auto;
  }
}
#contact_sec .contact_card .contact_button:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 120%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
#contact_sec .contact_card .contact_blue {
  color: #fff;
  background-color: #178CD9;
}
#contact_sec .contact_card .contact_blue .contact_button {
  font-size: clamp(16px, 1.5625vw, 30px);
}
#contact_sec .contact_card .contact_orange {
  color: #fff;
}
#contact_sec .contact_card .contact_orange.contact_button {
  font-size: clamp(16px, 1.35417vw, 26px);
  background-color: #fba53a;
  border-color: #fba53a;
}
#contact_sec .contact_card .contact_orange.contact_button::after {
  background: rgb(250.3910447761, 151.2985074627, 28.0089552239);
}
#contact_sec .contact_card .contact_green {
  color: #fff;
}
#contact_sec .contact_card .contact_green.contact_button {
  font-size: clamp(16px, 1.35417vw, 26px);
  background-color: #05C755;
  border-color: #05C755;
}
#contact_sec .contact_card .contact_green.contact_button::after {
  background: rgb(4.25, 169.15, 72.25);
}
@media (max-width: 767px) {
  #contact_sec .contact_heading {
    text-align: center;
  }
}

/* ===============================================
# 制作実績一覧
=============================================== */
.work-item > a:hover img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.work-item picture {
  overflow: hidden;
  display: block;
}
.work-item picture img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 340/500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.work_info {
  margin-top: 16px;
}
.work_info .lbl {
  display: table;
  font-size: 1.2rem;
  background: #178CD9;
  color: #fff;
  padding: 0.0833333333em 0.6666666667em;
  font-weight: 500;
}
.work_info .ttl {
  text-align: left;
  font-size: clamp(1.6rem, 1.1713030747vw, 1.8rem);
  color: #1A2942;
  line-height: 2;
  margin-top: 0.8888888889em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .work_info .ttl {
    font-size: 1.6rem;
  }
}
.work_info .cliant {
  color: rgba(26, 41, 66, 0.5);
  font-size: 1.4rem;
  text-align: left;
  margin-top: 0.7142857143em;
  line-height: 1.75;
  font-weight: normal;
}

/* ===============================================
# table
=============================================== */
.table-overview {
  width: 100%;
}
@media (max-width: 767px) {
  .table-overview {
    display: block;
    border-bottom: 1px solid rgba(26, 41, 66, 0.2);
  }
}
@media (max-width: 767px) {
  .table-overview thead,
  .table-overview tbody {
    display: block;
  }
}
.table-overview tr {
  border-top: 1px solid rgba(26, 41, 66, 0.2);
  border-bottom: 1px solid rgba(26, 41, 66, 0.2);
}
@media (max-width: 767px) {
  .table-overview tr {
    border-top: 1px solid rgba(26, 41, 66, 0.2);
    border-bottom: 0;
    padding: 1em;
    display: block;
  }
}
.table-overview td,
.table-overview th {
  padding: 1em 0;
  text-align: left;
}
@media (max-width: 767px) {
  .table-overview td,
  .table-overview th {
    display: block;
    padding: 0;
  }
}
.table-overview th {
  width: 17%;
  vertical-align: middle;
  font-weight: normal;
}
@media (max-width: 767px) {
  .table-overview th {
    width: 100%;
    margin-bottom: 10px;
    font-weight: 500;
  }
}

.table-list li:not(:first-of-type) {
  margin-top: 0.25em;
}

a.out-link {
  color: #1A2942;
  display: inline-block;
  padding-right: 1.5em;
  position: relative;
}
a.out-link::before {
  content: "";
  display: block;
  width: 0.875em;
  height: 0.875em;
  background: url(../../base/img/out_link_main.svg) no-repeat center/contain;
  position: absolute;
  top: 52%;
  bottom: auto;
  left: auto;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ===============================================
# ボタン
=============================================== */
.primary-btn a {
  display: block;
  width: 260px;
  max-width: 100%;
  margin: auto;
  text-align: center;
  padding: 1em;
  border: 2px solid #178CD9;
  border-radius: 100px;
  background-color: #178CD9;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 1.5;
  overflow: hidden;
  z-index: 0;
}
.primary-btn a:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 120%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
.primary-btn a:hover {
  color: #178CD9;
}
.primary-btn a:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.primary-btn a.arrow::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  right: 3.8461538462%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-mask-image: url(../img/arrow-icon.svg);
          mask-image: url(../img/arrow-icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
}
.primary-btn a.arrow:hover::before {
  -webkit-animation: arrow-right 0.5s ease-in-out;
          animation: arrow-right 0.5s ease-in-out;
  background: #178CD9;
}
.primary-btn.--navy a {
  background: #1A2942;
  border-color: #fff;
}
.primary-btn.--navy a:hover {
  color: #1A2942;
}
.primary-btn.--navy a:hover::before {
  background: #1A2942;
}
.primary-btn.--pc-left a {
  margin-left: 0;
}
@media (max-width: 767px) {
  .primary-btn.--pc-left a {
    margin: auto;
  }
}

@-webkit-keyframes arrow-right {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%) translate3d(0, 0, 0);
            transform: translateY(-50%) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translate3d(10px, 0, 0);
            transform: translateY(-50%) translate3d(10px, 0, 0);
  }
  50.1% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translate3d(-10px, 0, 0);
            transform: translateY(-50%) translate3d(-10px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%) translate3d(0, 0, 0);
            transform: translateY(-50%) translate3d(0, 0, 0);
  }
}

@keyframes arrow-right {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%) translate3d(0, 0, 0);
            transform: translateY(-50%) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translate3d(10px, 0, 0);
            transform: translateY(-50%) translate3d(10px, 0, 0);
  }
  50.1% {
    opacity: 0;
    -webkit-transform: translateY(-50%) translate3d(-10px, 0, 0);
            transform: translateY(-50%) translate3d(-10px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-50%) translate3d(0, 0, 0);
            transform: translateY(-50%) translate3d(0, 0, 0);
  }
}
@media (min-width: 768px) {
  .hover-link a {
    position: relative;
  }
  .hover-link a::after {
    content: "";
    display: block;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    width: 0;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0px;
    z-index: 1;
    background: #178CD9;
  }
  .hover-link a:hover:after {
    width: 100%;
    left: 0;
    right: auto;
  }
  .hover-link.white a:after {
    background: #fff;
  }
}

/* ===============================================
# アニメーション
=============================================== */
.js-trigger.fadeIn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.js-trigger.fadeIn.animated {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* ===============================================
# cta
=============================================== */
.c-cta {
  background: url(../img/ftr_bg001.webp) no-repeat center center/cover;
  padding: max(6.7708333333vw, 100px) 0 max(5.2083333333vw, 90px);
}
@media (max-width: 767px) {
  .c-cta {
    background: url(../img/sp_ftr_bg001.webp) no-repeat center center/cover;
    padding: 60px 0 40px;
  }
}
.c-cta__ttl {
  font-size: clamp(6rem, 5.1244509517vw, 8.4rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.4285714286em;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .c-cta__ttl {
    font-size: 3rem;
    margin-bottom: 24px;
  }
}
.c-cta__p p {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: clamp(1.6rem, 1.317715959vw, 1.8rem);
  line-height: 1.7;
}
@media (max-width: 767px) {
  .c-cta__p p {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.75;
    font-weight: 500;
  }
}
.c-cta__btns {
  margin: max(5.2083333333vw, 50px) auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 3.125vw;
  max-width: 1120px;
}
@media (max-width: 767px) {
  .c-cta__btns {
    margin-top: 30px;
  }
}
.c-cta__btn {
  width: calc((100% - 3.125vw * 1) / 2 - 1px);
}
@media (max-width: 767px) {
  .c-cta__btn {
    width: 100%;
  }
}
.c-cta .cta-btn {
  display: block;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  padding: 1.625em 10px;
  line-height: 1.5;
  text-align: center;
  font-size: clamp(2.8rem, 2.196193265vw, 3.2rem);
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .c-cta .cta-btn {
    font-size: 2.4rem;
    padding: 20px 10px;
  }
}
.c-cta .cta-btn:hover .txt {
  color: #178CD9;
}
.c-cta .cta-btn .txt {
  position: relative;
  color: #1A2942;
  font-weight: bold;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-cta .cta-btn .txt:before {
  content: attr(data-en);
  display: block;
  font-weight: bold;
  font-family: "Heebo", sans-serif;
  color: #178CD9;
  font-size: 0.5625em;
  letter-spacing: 0.08em;
  height: auto;
  width: auto;
  background: transparent;
  position: static;
  line-height: 1;
  margin-bottom: 0.3125em;
}
.c-cta .cta-btn .out-link {
  position: relative;
}
.c-cta .cta-btn .out-link::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/out_link_p.svg) no-repeat center/contain;
  position: absolute;
  top: 57%;
  bottom: auto;
  left: calc(100% + 12px);
  right: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-cta .cta-btn.contact {
  background: url(../img/cta_icon_001.webp) no-repeat right center/3em #fff;
}
.c-cta .cta-btn.line {
  background: url(../img/cta_icon002.webp) no-repeat right center/2.5625em #fff;
}
.c-cta .cta-btn.line:hover .txt {
  color: #05C755;
}
.c-cta .cta-btn.line .txt::before {
  color: #05C755;
}
.c-cta__tel {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-cta__tel {
    margin-top: 30px;
  }
}
.c-cta__tel .tel {
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  font-size: 5rem;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-cta__tel .tel {
    font-size: 3.6rem;
  }
}
.c-cta__tel .tel .telTxt {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .c-cta__tel .tel .telTxt {
    font-size: 2rem;
  }
}
.c-cta__tel .tel a {
  color: #fff;
}
.c-cta__tel .time {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0.7142857143em;
  line-height: 1.7;
  color: #fff;
}/*# sourceMappingURL=common.css.map */