@charset "UTF-8";
:root {
  --scale: 0.0694444444vw;
  --max: 1;
}
@media screen and (max-width: 767px) {
  :root {
    --scale: 0.2666666667vw;
    --max: 10;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #1b273a;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
main {
  margin-top: min(calc(87.5 * var(--scale)), calc(87.5px * var(--max)));
}
@media (max-width: 767px) {
  main {
    margin-top: min(calc(60.1 * var(--scale)), calc(60.1px * var(--max)));
  }
}

/* コンテンツ幅
------------------------------*/
.inner {
  margin-inline: auto;
  width: min(calc(1080 * var(--scale)), calc(1080px * var(--max)));
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .inner {
    width: min(calc(340 * var(--scale)), calc(340px * var(--max)));
  }
}

/* セクションタイトル
------------------------------*/
.c-section-title-wrap {
  position: relative;
}

.c-section-title {
  font-size: min(calc(50 * var(--scale)), calc(50px * var(--max)));
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 10;
  color: #1d2957;
}
@media (max-width: 767px) {
  .c-section-title {
    font-size: min(calc(30 * var(--scale)), calc(30px * var(--max)));
    line-height: 1.2;
  }
}

.c-section-title-en {
  font-family: "Roboto Condensed", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: min(calc(120 * var(--scale)), calc(120px * var(--max)));
  font-weight: 700;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .c-section-title-en {
    font-size: min(calc(100 * var(--scale)), calc(100px * var(--max)));
    width: 100%;
    text-align: center;
  }
}

/* 下層ページヒーロー
------------------------------*/
.c-page-hero {
  background: url(../img/page-hero-bg.png) no-repeat center center/cover;
  padding: min(calc(58 * var(--scale)), calc(58px * var(--max))) 0;
}
@media (max-width: 767px) {
  .c-page-hero {
    padding: 11% 0 13%;
  }
}

@media (min-width: 768px) {
  .c-page-title {
    padding: 0 3.2%;
  }
}

.c-page-title__en {
  display: block;
  font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 700;
  color: #d09422;
  padding-left: 3em;
  position: relative;
}
.c-page-title__en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #d09422;
  width: 2.4em;
  height: 1px;
}
@media (max-width: 767px) {
  .c-page-title__en {
    padding-left: 2.6em;
  }
  .c-page-title__en::before {
    width: 1.8em;
  }
}

.c-page-title__ja {
  margin-top: 0.6em;
  display: block;
  font-size: min(calc(45 * var(--scale)), calc(45px * var(--max)));
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .c-page-title__ja {
    margin-top: 0.5em;
    font-size: min(calc(32 * var(--scale)), calc(32px * var(--max)));
  }
}

.c-page-lead {
  margin-top: 1.3em;
  font-size: min(calc(18 * var(--scale)), calc(18px * var(--max)));
  font-weight: 700;
  color: #fff;
  padding: 0 3.2%;
}

/* パンくずリスト
------------------------------*/
.c-breadcrumbs {
  padding-top: min(calc(20 * var(--scale)), calc(20px * var(--max)));
}
.c-breadcrumbs > .inner {
  width: min(calc(1012 * var(--scale)), calc(1012px * var(--max)));
  display: flex;
  align-items: center;
}
.c-breadcrumbs em {
  background: url(../img/dec04.svg) no-repeat center center/100%;
  aspect-ratio: 5/8;
  width: min(calc(5 * var(--scale)), calc(5px * var(--max)));
  margin: 0 min(calc(10 * var(--scale)), calc(10px * var(--max)));
}
.c-breadcrumbs span {
  font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  font-weight: 400;
  color: #484848;
  padding-left: 0;
}
@media (max-width: 767px) {
  .c-breadcrumbs {
    padding-top: 4%;
  }
  .c-breadcrumbs > .inner {
    width: 90%;
  }
  .c-breadcrumbs em {
    margin: 0 min(calc(6 * var(--scale)), calc(6px * var(--max)));
  }
  .c-breadcrumbs span {
    font-size: min(calc(10 * var(--scale)), calc(10px * var(--max)));
  }
} /*------------------------------
header
------------------------------*/
header {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

@media (max-width: 767px) {
  .header__inner {
    width: 100%;
    padding-left: 6%;
  }
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header__content {
    padding: 0 min(calc(10 * var(--scale)), calc(10px * var(--max)));
  }
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0 min(calc(21 * var(--scale)), calc(21px * var(--max)));
}
@media (max-width: 767px) {
  .header__brand {
    gap: 0;
  }
}

.header__logo {
  width: min(calc(136 * var(--scale)), calc(136px * var(--max)));
}
@media (max-width: 767px) {
  .header__logo {
    width: min(calc(90 * var(--scale)), calc(90px * var(--max)));
  }
}

.header__area {
  border: 1px solid #1d2957;
  border-radius: min(calc(5 * var(--scale)), calc(5px * var(--max)));
}
@media (max-width: 767px) {
  .header__area {
    margin-left: min(calc(10 * var(--scale)), calc(10px * var(--max)));
  }
}

.header__area-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 min(calc(3 * var(--scale)), calc(3px * var(--max)));
  font-size: min(calc(12 * var(--scale)), calc(12px * var(--max)));
  font-weight: 400;
  color: #fff;
  background: #1d2957;
  padding: 0.4em 1em;
}
.header__area-label::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_map-marker.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 26/26;
}
@media (max-width: 767px) {
  .header__area-label {
    font-size: min(calc(9 * var(--scale)), calc(9px * var(--max)));
    gap: 0;
    padding: 0.4em 0em;
  }
  .header__area-label::before {
    left: -0.2em;
  }
}

.header__area-name {
  font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  font-weight: 500;
  color: #1d2957;
  padding: 0.4em 0.7em;
}
@media (max-width: 767px) {
  .header__area-name {
    font-size: min(calc(10 * var(--scale)), calc(10px * var(--max)));
    padding: 0.4em 0.6em;
  }
}

.header__contact {
  background: linear-gradient(180deg, #f38d3b 0%, #e8713a 100%);
  box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.1), inset 2px 2px 2px #ffb462;
  padding: min(calc(10 * var(--scale)), calc(10px * var(--max))) min(calc(10 * var(--scale)), calc(10px * var(--max)));
}
@media (min-width: 768px) {
  .header__contact {
    margin-right: calc(min(calc(15 * var(--scale)), calc(15px * var(--max))) * -1);
  }
}
@media (max-width: 767px) {
  .header__contact {
    padding: 0;
    width: min(calc(103 * var(--scale)), calc(103px * var(--max)));
  }
}

.header__contact-info {
  display: flex;
  gap: 0 min(calc(7 * var(--scale)), calc(7px * var(--max)));
}
@media (min-width: 768px) {
  .header__contact-info {
    margin-left: min(calc(7 * var(--scale)), calc(7px * var(--max)));
  }
}

.header__contact-text {
  font-size: min(calc(13 * var(--scale)), calc(13px * var(--max)));
  font-weight: 500;
  color: #ec7b3a;
  background: #fff;
  padding: 0.1em 1em;
}
.header__contact-text strong {
  font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
  font-family: "Roboto Condensed", sans-serif;
}

.header__contact-number {
  margin-top: min(calc(5 * var(--scale)), calc(5px * var(--max)));
  font-size: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0 min(calc(3 * var(--scale)), calc(3px * var(--max)));
}
.header__contact-number::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_tel.png) no-repeat center center/contain;
  width: 0.75em;
  aspect-ratio: 61/79;
}

/*------------------------------
cta
------------------------------*/
.cta {
  background: url(../img/cta-bg.png) no-repeat center center/contain, #1D2957;
  padding-bottom: min(calc(60 * var(--scale)), calc(60px * var(--max)));
}
@media (max-width: 767px) {
  .cta {
    padding: 1.3% 0 8%;
  }
}

@media (max-width: 767px) {
  .cta__inner {
    width: 100%;
  }
}

.cta__image {
  width: 62%;
  margin: 0 auto 0;
  transform: translate(1.5%, -8%);
}
@media (max-width: 767px) {
  .cta__image {
    width: 100%;
    margin: 0 auto 0;
    transform: unset;
  }
}

.cta__text {
  font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
  color: #fff;
  letter-spacing: 0.05em;
  width: min(calc(610 * var(--scale)), calc(610px * var(--max)));
  margin: -0.5em auto 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .cta__text {
    font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
    width: 86%;
    margin-top: 0.9em;
    line-height: 1.6;
  }
}

.cta__button {
  width: 50%;
  margin: 2.8% auto 0;
}
@media (max-width: 767px) {
  .cta__button {
    width: 90%;
    margin: 6.5% auto 0;
  }
}

/*------------------------------
footer
------------------------------*/
.footer__content {
  background: #e6ecf2;
  padding: min(calc(30 * var(--scale)), calc(30px * var(--max))) 0;
}
@media (max-width: 767px) {
  .footer__content {
    padding: 9% 0 7%;
  }
}

.footer__wrapper {
  display: flex;
  align-items: center;
  gap: 0 min(calc(95 * var(--scale)), calc(95px * var(--max)));
  width: calc(1020 / 1080 * 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: min(calc(5 * var(--scale)), calc(5px * var(--max)));
  padding: min(calc(22 * var(--scale)), calc(22px * var(--max))) min(calc(44 * var(--scale)), calc(44px * var(--max))) 3%;
  padding-left: 5.8%;
}
@media (max-width: 767px) {
  .footer__wrapper {
    flex-direction: column;
    width: 100%;
    padding: 1% 5% 5%;
  }
}

.footer__brand {
  width: min(calc(480 * var(--scale)), calc(480px * var(--max)));
  position: relative;
}
.footer__brand::before {
  content: "";
  position: absolute;
  background: #CEDDE8;
  transform: translate(0%, -50%);
  border-radius: min(calc(3 * var(--scale)), calc(3px * var(--max)));
  width: min(calc(3 * var(--scale)), calc(3px * var(--max)));
  top: 50%;
  height: 113%;
  left: 109%;
}
@media (max-width: 767px) {
  .footer__brand {
    width: 90%;
  }
  .footer__brand::before {
    top: unset;
    border-radius: min(calc(3 * var(--scale)), calc(3px * var(--max)));
    width: 100%;
    height: min(calc(3 * var(--scale)), calc(3px * var(--max)));
    transform: translate(-50%, 100%);
    width: 111%;
    left: 50%;
    bottom: calc(min(calc(21 * var(--scale)), calc(21px * var(--max))) * -1);
  }
}

.footer__logo {
  width: min(calc(286 * var(--scale)), calc(286px * var(--max)));
  margin-top: -5%;
  margin-left: -4%;
}

.footer__catch {
  font-weight: 700;
  font-size: min(calc(16 * var(--scale)), calc(16px * var(--max)));
  color: #DBB35A;
  margin-top: -1em;
}

.footer__description {
  font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  font-weight: 500;
  line-height: 1.2857142857;
  color: #8ba4b7;
  margin-top: 0.6em;
}
@media (max-width: 767px) {
  .footer__description {
    font-size: min(calc(13 * var(--scale)), calc(13px * var(--max)));
    text-align: center;
    line-height: 1.4;
  }
}

.footer__contact {
  margin-top: min(calc(14 * var(--scale)), calc(14px * var(--max)));
}
@media (max-width: 767px) {
  .footer__contact {
    margin-top: 7%;
  }
}

.footer__contact-text {
  font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  font-weight: 500;
  color: #fff;
  background: #7d99ad;
  padding: 0 0.6em;
}
.footer__contact-text strong {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.04em;
  font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__contact-text {
    font-size: min(calc(13 * var(--scale)), calc(13px * var(--max)));
    padding: 0.15em 1.2em;
  }
}

.footer__contact-number {
  display: flex;
  align-items: center;
  font-size: min(calc(39 * var(--scale)), calc(39px * var(--max)));
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  color: #7d99ad;
  margin-top: 0.2em;
}
.footer__contact-number::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_tel-blue.png) no-repeat center center/contain;
  width: 0.7em;
  aspect-ratio: 55/71;
  margin-right: 0.2em;
}
@media (max-width: 767px) {
  .footer__contact-number {
    padding-left: 0.2em;
  }
}

.footer__details {
  width: min(calc(370 * var(--scale)), calc(370px * var(--max)));
  align-self: flex-start;
  padding-top: 3%;
}
@media (max-width: 767px) {
  .footer__details {
    width: 100%;
    padding: 11% 2% 0%;
  }
}

.footer__company {
  font-size: min(calc(14 * var(--scale)), calc(14px * var(--max)));
  font-weight: 400;
  line-height: 1.4285714286;
  padding-bottom: min(calc(15 * var(--scale)), calc(15px * var(--max)));
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .footer__company {
    padding-bottom: 0;
  }
}

.footer__info {
  margin-top: min(calc(15 * var(--scale)), calc(15px * var(--max)));
}
.footer__info dt,
.footer__info dd {
  font-size: min(calc(13 * var(--scale)), calc(13px * var(--max)));
  line-height: 1.3846153846;
  font-weight: 500;
}
.footer__info dt {
  display: inline-block;
  color: #fff;
  background: #1b273a;
  border-radius: 0.8em;
  padding: 0.1em 1.5em;
}
.footer__info dt:nth-of-type(n+2) {
  margin-top: 1em;
}
.footer__info dd {
  margin-top: min(calc(5 * var(--scale)), calc(5px * var(--max)));
  padding-left: 1em;
}
@media (max-width: 767px) {
  .footer__info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: min(calc(6 * var(--scale)), calc(6px * var(--max))) 0;
    margin-top: 4%;
  }
  .footer__info dt {
    width: 32%;
    padding: 0.1em 0em;
    text-align: center;
  }
  .footer__info dt:nth-child(n) {
    margin: 0;
  }
  .footer__info dd {
    width: 68%;
    padding-left: 0.2em;
    margin-top: 0;
  }
}

.footer__bottom {
  background: #1b273a;
  padding: min(calc(10 * var(--scale)), calc(10px * var(--max))) 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.footer__bottom .totop {
  position: absolute;
  top: 0%;
  left: calc(50% + min(calc(500 * var(--scale)), calc(500px * var(--max))));
  transform: translate(-50%, -53%);
  width: min(calc(55.5 * var(--scale)), calc(55.5px * var(--max)));
}
@media (max-width: 767px) {
  .footer__bottom .totop {
    position: absolute;
    top: 0%;
    left: 89.95%;
    transform: translate(-50%, -83%);
    width: 14.9%;
  }
}

.footer__privacy a {
  display: inline-block;
  font-size: min(calc(13 * var(--scale)), calc(13px * var(--max)));
  font-weight: 400;
  line-height: 1.5384615385;
}

.footer__copyright {
  font-size: min(calc(11 * var(--scale)), calc(11px * var(--max)));
  font-weight: 400;
  line-height: 1.8181818182;
}

/*------------------------------
float
------------------------------*/
.float {
  position: fixed;
  z-index: 500;
  right: 0;
  bottom: calc(10% + 20px);
  width: min(calc(80 * var(--scale)), calc(80px * var(--max)));
  width: min(calc(60 * var(--scale)), calc(60px * var(--max)));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: min(calc(10 * var(--scale)), calc(10px * var(--max))) 0;
  transition: opacity 0.3s;
}
.float.act {
  opacity: 0;
  pointer-events: none;
}
.float a {
  transform: translateX(16%);
  width: 100%;
  display: block;
  margin-left: auto;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .float a:hover {
    opacity: 1;
    transform: translateX(0%);
  }
}
@media (max-width: 767px) {
  .float {
    width: 100%;
    flex-direction: row;
    top: unset;
    bottom: env(safe-area-inset-bottom);
  }
  .float a {
    width: 50%;
    transform: unset;
  }
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: min(calc(300 * var(--scale)), calc(300px * var(--max))) 0;
  text-align: center;
}
.error-page h2 {
  font-size: min(calc(60 * var(--scale)), calc(60px * var(--max)));
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}
.error-page p {
  padding-top: min(calc(72 * var(--scale)), calc(72px * var(--max)));
  font-size: min(calc(20 * var(--scale)), calc(20px * var(--max)));
}
@media (max-width: 767px) {
  .error-page {
    padding: min(calc(200 * var(--scale)), calc(200px * var(--max))) 0;
  }
  .error-page h2 {
    font-size: min(calc(40 * var(--scale)), calc(40px * var(--max)));
  }
  .error-page p {
    font-size: min(calc(16 * var(--scale)), calc(16px * var(--max)));
  }
}
/*# sourceMappingURL=common.css.map */