@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  color: #333;
  font-feature-settings: "palt";
  line-height: 1.6;
}

a {
  color: #1e90ff;
  text-decoration: none;
}
a:hover {
  color: #00bfff;
}

.font-en {
  font-family: "Inter", "Century Gothic", "Futura", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.nondisp {
  display: none !important;
}

h1, h2, h3 {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* =========================
   Header
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 1000;
  /* =========================
     ロゴエリア
  ========================= */
  /* =========================
     右側ナビエリア
  ========================= */
  /* =========================
     電話
  ========================= */
  /* =========================
     お問い合わせ
  ========================= */
  /* =========================
     トグル
  ========================= */
}
.header .header-inner {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}
.header .logo {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  margin: 0;
  padding-left: 110px;
  overflow: visible;
}
.header .logo a {
  display: inline-block;
}
.header .logo img {
  display: block;
  height: 28px;
  width: auto;
  margin: 0;
}
.header .logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: #249cad;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: -1;
}
.header .h-nav-wrap {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px 0 64px;
  background: #249cad;
  /* 左側45度斜めカット */
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
}
.header .h-tel a {
  font-family: "Inter", "Century Gothic", "Futura", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .h-tel a::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/elements/h-tel.svg") no-repeat center/contain;
}
.header .h-contact a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .h-contact a::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("../images/elements/h-mail.svg") no-repeat center/contain;
}
.header .h-nav-toggle {
  position: relative;
  z-index: 1100;
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.header .h-nav-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =========================
   グローバルナビ
========================= */
.global-nav {
  position: fixed;
  top: 80px;
  right: 0;
  height: calc(100vh - 80px);
  background: #fff;
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 24px 20px;
}
.global-nav ul li {
  border-bottom: 1px solid #e5e5e5;
}
.global-nav ul li:last-child {
  border-bottom: none;
}
.global-nav ul li a {
  display: block;
  padding: 16px 8px;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}
.global-nav ul li a:hover, .global-nav ul li a:focus {
  color: #249cad;
}

/* =========================
   ナビ開いた状態
========================= */
body.is-nav-open {
  overflow: hidden;
  /* トグル → × */
  /* ナビ表示 */
}
body.is-nav-open .h-nav-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
body.is-nav-open .h-nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.is-nav-open .h-nav-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
body.is-nav-open .global-nav {
  transform: translateX(0);
}

/* =========================
   背景マスク
========================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 800;
}

body.is-nav-open::before {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   固定ヘッダー分オフセット
========================= */
body {
  padding-top: 80px;
}

@media (max-width: 767px) {
  .header {
    height: 60px;
  }

  .header .header-inner {
    height: 60px;
  }

  body {
    padding-top: 60px;
  }

  .header .logo {
    height: 56px;
    padding-left: 12px;
  }

  .header .logo::before {
    display: none;
  }

  .header .logo img {
    height: 18px;
  }

  .header .h-nav-wrap {
    height: 60px;
    gap: 12px;
    padding: 0 12px 0 56px;
    clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .h-tel a,
  .header .h-contact a {
    font-size: 0;
  }

  .header .h-tel a::before,
  .header .h-contact a::before {
    margin: 0;
  }

  .global-nav {
    width: 100%;
    top: 60px;
    height: calc(100vh - 60px);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* =========================
     Header（タブレット）
  ========================= */
  .header {
    height: 60px;
  }

  .header .header-inner {
    height: 60px;
  }

  body {
    padding-top: 60px;
  }

  /* =========================
     ロゴ（タブレット）
  ========================= */
  .header .logo {
    height: 60px;
    padding-left: 72px;
  }

  .header .logo::before {
    width: 72px;
    height: 72px;
  }

  .header .logo img {
    height: 22px;
  }

  /* =========================
     右側ナビエリア（タブレット）
  ========================= */
  .header .h-nav-wrap {
    height: 60px;
    gap: 16px;
    padding: 0 20px 0 48px;
    clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
  }

  /* =========================
     電話・お問い合わせ（タブレット）
  ========================= */
  .header .h-tel a {
    font-size: 16px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .header .h-contact a {
    font-size: 15px;
    white-space: nowrap;
  }

  .global-nav {
    width: 40%;
    top: 60px;
    height: calc(100vh - 60px);
  }
}
@media (min-width: 1025px) {
  .global-nav {
    width: 30%;
    max-width: 420px;
  }
  .global-nav ul > li > a {
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.25s ease, color 0.25s ease, padding 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 8px 16px 8px;
  }
  .global-nav ul > li > a:hover, .global-nav ul > li > a:focus {
    background-color: rgba(36, 156, 173, 0.08);
    color: #249cad;
    padding: 16px 8px 16px 16px;
  }
}
.def-footer {
  margin: 0;
  padding: 0;
}
.def-footer .f-contact {
  background-color: #249cad;
  color: #fff;
  padding: 2em 0;
}
.def-footer .f-contact .fc-inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.def-footer .f-contact .fc-inner .fci-contact,
.def-footer .f-contact .fc-inner .tel-mail {
  width: 48%;
}
.def-footer .f-contact .fc-inner .fci-contact .fci-head {
  font-family: "Inter", "Century Gothic", "Futura", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3rem;
}
.def-footer .f-contact .fc-inner .fci-contact .fci-subhead {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .2em;
}
.def-footer .f-contact .fc-inner .fci-contact .fci-note {
  font-size: .8rem;
  line-height: 2;
  letter-spacing: .2em;
}
.def-footer .f-contact .fc-inner .tel-mail .tm-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 0 32px 0;
  margin: 0 0 32px 0;
  border-bottom: 1px solid #fff;
}
.def-footer .f-contact .fc-inner .tel-mail .tm-box a {
  color: #fff;
}
.def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact,
.def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
  display: inline-block;
  width: 48%;
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 1.1rem;
}
.def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact {
  background-image: url("../images/elements/h-mail.svg");
  background-repeat: no-repeat;
  background-size: 55px auto;
  background-position: 0;
  padding: 0 0 0 70px;
}
.def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
  background-image: url("../images/elements/home.svg");
  background-repeat: no-repeat;
  background-size: 55px auto;
  background-position: 0;
  padding: 0 0 0 70px;
}
.def-footer .f-contact .fc-inner .tel-contact {
  background-image: url("../images/elements/mobile.svg");
  background-repeat: no-repeat;
  background-size: 55px auto;
  background-position: 0;
  padding: 0 0 0 70px;
  line-height: 1.3;
}
.def-footer .f-contact .fc-inner .tel-contact .tc-head {
  font-weight: 700;
  letter-spacing: .2em;
}
.def-footer .f-contact .fc-inner .tel-contact .tc-number {
  font-weight: 400;
  font-family: "Inter", "Century Gothic", "Futura", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  letter-spacing: .1em;
}
.def-footer .f-contact .fc-inner .tel-contact .tc-number a {
  color: #fff;
}
.def-footer .f-contact .fc-inner .tel-contact .tc-note {
  font-size: .88rem;
}
.def-footer .ootomi-info {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5em 0 1em 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/top/footer-info-bk.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.def-footer .ootomi-info .oi-inner {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.def-footer .ootomi-info .oi-inner .company-info {
  width: 30%;
}
.def-footer .ootomi-info .oi-inner .company-info figure img {
  width: auto;
  height: 28px;
}
.def-footer .ootomi-info .oi-inner .company-info address {
  font-style: normal;
  font-size: .9rem;
}
.def-footer .ootomi-info .oi-inner .f-navi {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: .8rem;
}
.def-footer .ootomi-info .oi-inner .f-navi ul {
  width: 200px;
}
.def-footer .ootomi-info .oi-inner .f-navi ul li {
  padding: 0 0 1rem 0;
}
.def-footer .ootomi-info .oi-inner .f-navi ul li a {
  color: #fff;
}
.def-footer .ootomi-info .copyright {
  max-width: 90%;
  margin: 5em auto 0 auto;
  font-family: "Inter", "Century Gothic", "Futura", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .8rem;
  text-align: left;
}
.def-footer .ootomi-info .ptop {
  width: 224px;
  height: 224px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #249cad;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 36px 20px 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.def-footer .ootomi-info .ptop img {
  width: 54px;
  height: auto;
}
.def-footer .access-map {
  border-bottom: 10px solid #249cad;
}
.def-footer .access-map iframe {
  width: 100%;
  height: 250px;
}

@media (max-width: 767px) {
  .def-footer .f-contact {
    padding: 2em 0 3m 0;
  }
  .def-footer .f-contact .fc-inner {
    max-width: 92%;
    margin: 0 auto;
  }
  .def-footer .f-contact .fc-inner .fci-contact,
  .def-footer .f-contact .fc-inner .tel-mail {
    width: 100%;
  }
  .def-footer .f-contact .fc-inner .fci-contact {
    width: 80%;
    margin: 0 auto 2em auto;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-head {
    font-size: 2.8rem;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-subhead {
    font-size: 1.1rem;
    line-height: 1.3;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-note {
    font-size: .8rem;
    line-height: 2;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .tel-mail {
    width: 92%;
    margin: 0 auto;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box {
    padding: 0 0 24px 0;
    margin: 0 0 24px 0;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact,
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
    width: 50%;
    letter-spacing: .1em;
    font-size: .85rem;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact,
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
    background-size: 40px auto;
    padding: 0 0 0 52px;
  }
  .def-footer .f-contact .fc-inner .tel-contact {
    background-size: 40px auto;
    padding: 0 0 0 52px;
    line-height: 1.3;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-head {
    font-weight: 700;
    letter-spacing: .2em;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-number {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-note {
    font-size: .7rem;
  }
  .def-footer .ootomi-info {
    padding: 3em 0 1em 0;
  }
  .def-footer .ootomi-info .oi-inner {
    max-width: 90%;
    margin: 0 auto;
  }
  .def-footer .ootomi-info .oi-inner .company-info {
    width: 80%;
    margin: 0 auto 2em auto;
  }
  .def-footer .ootomi-info .oi-inner .company-info address {
    font-style: normal;
    font-size: .8rem;
  }
  .def-footer .ootomi-info .oi-inner .f-navi {
    width: 100%;
    font-size: .8rem;
  }
  .def-footer .ootomi-info .oi-inner .f-navi ul {
    width: 50%;
  }
  .def-footer .ootomi-info .oi-inner .f-navi ul li {
    padding: 0 0 .7rem 0;
  }
  .def-footer .ootomi-info .copyright {
    margin: 4em auto 0 auto;
    font-family: "Inter", "Century Gothic", "Futura", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .65rem;
  }
  .def-footer .ootomi-info .ptop {
    width: 100px;
    height: 100px;
    padding: 0 16px 10px 0;
  }
  .def-footer .ootomi-info .ptop img {
    width: 32px;
  }
}
@media (min-width: 768px) {
  .def-footer .f-contact {
    padding: 2em 0;
  }
  .def-footer .f-contact .fc-inner {
    max-width: 92%;
    margin: 0 auto;
  }
  .def-footer .f-contact .fc-inner .fci-contact,
  .def-footer .f-contact .fc-inner .tel-mail {
    width: 50%;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-head {
    font-size: 2.5rem;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-subhead {
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-note {
    font-size: .7rem;
    line-height: 2;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box {
    padding: 0 0 24px 0;
    margin: 0 0 24px 0;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact,
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
    width: 48%;
    letter-spacing: .1em;
    font-size: .9rem;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact,
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
    background-size: 40px auto;
    padding: 0 0 0 52px;
  }
  .def-footer .f-contact .fc-inner .tel-contact {
    background-size: 40px auto;
    padding: 0 0 0 52px;
    line-height: 1.3;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-head {
    font-weight: 700;
    letter-spacing: .2em;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-number {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-note {
    font-size: .8rem;
  }
  .def-footer .ootomi-info {
    padding: 3em 0 1em 0;
  }
  .def-footer .ootomi-info .oi-inner {
    max-width: 90%;
    margin: 0 auto;
  }
  .def-footer .ootomi-info .oi-inner .company-info {
    width: 30%;
  }
  .def-footer .ootomi-info .oi-inner .company-info address {
    font-style: normal;
    font-size: .8rem;
  }
  .def-footer .ootomi-info .oi-inner .f-navi {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: .8rem;
  }
  .def-footer .ootomi-info .oi-inner .f-navi ul {
    width: 50%;
  }
  .def-footer .ootomi-info .oi-inner .f-navi ul li {
    padding: 0 0 1rem 0;
  }
  .def-footer .ootomi-info .copyright {
    margin: 4em auto 0 auto;
    font-family: "Inter", "Century Gothic", "Futura", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: .8rem;
  }
  .def-footer .ootomi-info .ptop {
    width: 180px;
    height: 180px;
    padding: 0 36px 20px 0;
  }
  .def-footer .ootomi-info .ptop img {
    width: 48px;
  }
}
@media (min-width: 1025px) {
  .def-footer {
    margin: 0;
    padding: 0;
  }
  .def-footer .f-contact .fc-inner {
    width: 840px;
  }
  .def-footer .f-contact .fc-inner .fci-contact,
  .def-footer .f-contact .fc-inner .tel-mail {
    width: 50%;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-head {
    font-size: 2.8rem;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-subhead {
    font-size: 1.1rem;
    line-height: 1.3;
    letter-spacing: .2em;
  }
  .def-footer .f-contact .fc-inner .fci-contact .fci-note {
    font-size: .8rem;
    line-height: 2;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box {
    padding: 0 0 24px 0;
    margin: 0 0 24px 0;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact,
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
    width: 48%;
    letter-spacing: .1em;
    font-size: 1rem;
  }
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .email-contact,
  .def-footer .f-contact .fc-inner .tel-mail .tm-box .consul-app {
    background-size: 56px auto;
    padding: 8px 0 8px 72px;
  }
  .def-footer .f-contact .fc-inner .tel-contact {
    background-size: 56px auto;
    padding: 0 0 0 72px;
    line-height: 1.3;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-head {
    font-weight: 700;
    letter-spacing: .2em;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-number {
    font-weight: 400;
    font-size: 2.3rem;
    letter-spacing: .1em;
  }
  .def-footer .f-contact .fc-inner .tel-contact .tc-note {
    font-size: .9rem;
  }

  .tc-number a {
    pointer-events: none;
  }
}
html {
  background-color: #fff;
}
html * {
  box-sizing: border-box;
}
html body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

html, body {
  margin: 0;
}
