@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,500;0,700;1,400&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
@media screen and (max-width: 999px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .is-not-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .is-not-sp {
    display: none !important;
  }
}

/******************************** 
   reset.css、共通
*********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
figure,
time,
article,
p,
span {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 400;
  line-height: 1.8;
  color: #1b1f1f;
  word-break: break-all;
  letter-spacing: 0.1em;
  background: #f3f6f5;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
a:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}

dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

/******************************** 
   inner
*********************************/
.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/******************************** 
   Header / drawer
*********************************/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.4s ease 0s;
}
.header::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 1px;
  background-color: rgba(27, 31, 31, 0.12);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease 0s;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header::after {
    left: 24px;
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header::after {
    left: 16px;
    right: 16px;
  }
}
.header.is-scrolled {
  background: #fff;
}
.header.is-scrolled::after {
  opacity: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 40px;
  min-height: 100px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__inner {
    padding: 12px 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 10px 16px;
    min-height: 60px;
  }
}

.header__logo {
  flex-shrink: 0;
  margin: 0;
  line-height: 0;
}
.header__logo a {
  display: inline-block;
  line-height: 0;
}
.header__logo img {
  display: block;
  width: 160px;
  max-width: min(160px, 100vw - 76px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 140px;
    max-width: 140px;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.header__nav {
  flex-shrink: 0;
  margin-right: 32px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}
.header__menu li {
  margin: 0;
}
.header__menu li a {
  display: block;
  line-height: 1.4;
  color: #1b1f1f;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}
.header__menu li a:hover {
  opacity: 0.7;
}

.header__menu-item {
  position: relative;
}

.header__menu-service-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  padding-right: 18px;
  border: 0;
  background: transparent;
  position: relative;
  line-height: 1.4;
  color: #1b1f1f;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.header__menu-service-trigger::before, .header__menu-service-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: #2f7478;
  transition: transform 0.25s ease;
}
.header__menu-service-trigger::after {
  width: 10px;
  height: 1px;
  transform: translateY(-50%);
}
.header__menu-service-trigger::before {
  width: 1px;
  height: 10px;
  right: 4.5px;
  transform: translateY(-50%) rotate(0deg);
}
.header__menu-service-trigger:hover {
  opacity: 0.7;
}

.header__menu-item--service.is-open .header__menu-service-trigger::before {
  transform: translateY(-50%) rotate(90deg);
}

.header__mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -24px;
  right: auto;
  z-index: 120;
  min-width: 380px;
  padding: 40px 24px;
  border: 1px solid rgba(27, 31, 31, 0.12);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.header__mega-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.header__mega-menu .header__mega-menu-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 40px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #1b1f1f;
  transition: opacity 0.3s ease;
}
.header__mega-menu .header__mega-menu-title::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  background: url(../img/arrow-green.webp) no-repeat center center/contain;
}
.header__mega-menu .header__mega-menu-title:hover {
  opacity: 0.7;
}

.header__menu-item--service.is-open .header__mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__mega-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__mega-menu-list li {
  margin: 0;
}
.header__mega-menu-list a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #1b1f1f;
  transition: opacity 0.3s ease;
}
.header__mega-menu-list a:hover {
  opacity: 0.7;
}

.header__mega-menu-item-main {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  white-space: nowrap;
}

.header__mega-menu-num {
  color: #499499;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.header__mega-menu-label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.5;
}
.header__mega-menu-label::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-left: 6px;
  background: url(../img/arrow-green.webp) no-repeat center center/contain;
}

.header__divider {
  flex-shrink: 0;
  align-self: center;
  width: 0.5px;
  height: 46px;
  margin-right: 32px;
  background-color: #a1a1a1;
}

.header__tel {
  flex-shrink: 0;
  text-align: left;
  margin-right: 32px;
}

.header__tel-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1b1f1f;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__tel-main:hover {
  opacity: 0.7;
}

.header__tel-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 26px;
  line-height: 0;
}
.header__tel-icon img {
  width: auto;
  height: 26px;
  max-height: 26px;
  display: block;
  object-fit: contain;
}

.header__tel-num {
  white-space: nowrap;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.header__tel-hours {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #4a4d4d;
  letter-spacing: 0.02em;
}

.header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  width: 170px;
  height: 46px;
  padding: 0 12px;
  line-height: 1;
  background: #499499;
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 4px;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}
.header__contact:hover {
  opacity: 0.7;
}
.header__contact .header__contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
}

.drawer-icon {
  cursor: pointer;
  transition: 0.5s ease 0s;
  width: 60px;
  height: 60px;
  background: #499499;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 301;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .drawer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100px;
  }
}
.drawer-icon.is-active {
  background: transparent;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  top: 14px;
  background: #499499;
  transform: rotate(-45deg);
  transition: all 0.4s ease 0s;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  top: 14px;
  background: #499499;
  transform: rotate(45deg);
  transition: all 0.4s ease 0s;
}

.drawer-icon__bars {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 767px) {
  .drawer-icon .drawer-icon__bars {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: #fff;
  transition: all 0.4s ease 0s;
}

.drawer-icon__bar1 {
  top: 4px;
}

.drawer-icon__bar2 {
  top: 14px;
}

.drawer-icon__bar3 {
  top: 24px;
}

.drawer-content {
  background: #499499;
  position: fixed;
  z-index: 299;
  top: 100px;
  left: 0;
  width: 100%;
  bottom: 0;
  height: auto;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .drawer-content {
    top: 60px;
  }
}
.drawer-content.is-active {
  transition: all 0.5s ease 0s;
  visibility: visible;
  opacity: 1;
}

.drawer__inner {
  position: relative;
  overflow-y: auto;
  height: 100%;
  min-height: 0;
  padding: 24px 16px 12px;
  box-sizing: border-box;
  color: #fff;
}

.drawer__menu {
  margin-top: 0;
}
.drawer__menu li > a {
  text-decoration: none;
  display: block;
  padding: 20px 0 20px 16px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.drawer__menu li > a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow.webp) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.drawer__menu-accordion-trigger {
  text-decoration: none;
  display: block;
  padding: 20px 0 20px 16px;
  width: 100%;
  position: relative;
  border: 0;
  border-bottom: 1px solid #f5f5f5;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.drawer__menu-accordion-trigger::before, .drawer__menu-accordion-trigger::after {
  position: absolute;
  content: "";
  top: 50%;
  background: #fff;
  transition: transform 0.25s ease;
}
.drawer__menu-accordion-trigger::after {
  width: 10px;
  height: 1px;
  right: 16px;
  transform: translateY(-50%);
}
.drawer__menu-accordion-trigger::before {
  width: 1px;
  height: 10px;
  right: 20.5px;
  transform: translateY(-50%) rotate(0deg);
}

.drawer__submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  margin: 0;
  padding: 0;
  list-style: none;
}
.drawer__submenu > .drawer__submenu-inner {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.drawer__submenu li > a {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px 0 20px 28px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #f5f5f5;
}
.drawer__submenu li > a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow.webp) no-repeat center center/contain;
  width: 13px;
  height: 13px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.drawer__menu-item--service.is-open .drawer__menu-accordion-trigger::before {
  transform: translateY(-50%) rotate(90deg);
}
.drawer__menu-item--service.is-open .drawer__submenu {
  grid-template-rows: 1fr;
}

.drawer__buttons {
  margin-top: 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .drawer__buttons {
    width: 100%;
    max-width: 380px;
    margin-left: 0;
    margin-right: auto;
  }
}
.drawer__buttons .contact__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
  padding: 0 16px;
  box-sizing: border-box;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.drawer__buttons .contact__button span {
  margin-left: 0;
}
.drawer__buttons .contact__button--form--drawer {
  gap: 12px;
  font-size: 20px;
}
.drawer__buttons .contact__button--tel--drawer {
  gap: 10px;
  font-size: 24px;
}

.drawer__button-item--tel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.drawer__button-item--tel .drawer__contact-label {
  letter-spacing: 0.12em;
}

.drawer__button-item--tel .drawer__tel-hours {
  margin: 12px 0 0;
  padding: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.drawer__contact-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.drawer__contact-icon--mail {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.drawer__contact-icon--free {
  display: block;
  width: auto;
  height: 26px;
  max-height: 26px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .drawer__contact-icon--free {
    height: 22px;
    max-height: 22px;
  }
}

.contact__button--form--drawer {
  background: #fff !important;
  color: #1b1f1f !important;
}

.contact__button--tel--drawer {
  margin-top: 20px;
  border: 2px solid #fff !important;
  background: #fff !important;
  color: #499499 !important;
  box-sizing: border-box;
}

.drawer__privacy {
  margin-top: 20px;
  margin-left: 16px;
  display: block;
  line-height: 44px;
}

/******************************** 
   util
*********************************/
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.util-title-large {
  text-align: left;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}
.util-title-large .en-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #499499;
}
.util-title-large .en-title::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url(../img/h2-icon.webp) no-repeat center center/contain;
  margin-right: 8px;
}
.util-title-large .en-title--white {
  color: #fff;
}
.util-title-large .jp-title {
  display: block;
  margin-top: 16px;
  letter-spacing: 0.1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .util-title-large {
    font-size: 24px;
  }
}

.front-page .util-title-large {
  text-align: left;
}

.front-page .util-lead {
  text-align: left;
}

.util-lead {
  margin-top: 60px;
  text-align: left;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .util-lead {
    margin-top: 40px;
  }
}

.util-button {
  display: block;
  padding: 0 30px;
  width: 280px;
  height: 70px;
  background: #499499;
  color: #fff !important;
  text-decoration: none !important;
  border: none;
  border-radius: 4px;
  line-height: 70px;
  text-align: center;
  position: relative;
  margin-top: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .util-button {
    width: 220px;
    height: 60px;
    line-height: 60px;
  }
}
.util-button::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/arrow.webp) no-repeat center center/contain;
  filter: brightness(0) invert(1);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
}
.util-button--center {
  margin: 60px auto 0;
}
.util-button--overflow {
  position: relative;
  top: 35px;
  margin: 25px auto 0;
}

.util-title-middle {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .util-title-middle {
    margin-bottom: 20px;
  }
}
.util-title-middle .util-title-middle-jp {
  display: block;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .util-title-middle .util-title-middle-jp {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .util-title-middle .util-title-middle-jp {
    font-size: 20px;
  }
}
.util-title-middle .util-title-middle-en {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #499499;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.24em;
}
.util-title-middle .util-title-middle-sub {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #499499;
  line-height: 1.65;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
}

/* /util */
/******************************** 
   First view（トップ）
*********************************/
.fv {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: 100px;
}
@media screen and (min-width: 1000px) {
  .fv {
    overflow-x: visible;
    overflow-y: hidden;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    padding: 0 0 100px;
  }
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #f2f7f6 0%, #dde9e9 42%, #c9dcda 100%);
}

.fv__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 200px;
  padding-bottom: 0;
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .fv__shell {
    padding-left: calc((100vw - 1200px) / 2 + 40px);
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .fv__shell {
    padding-top: 120px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .fv__shell {
    padding-top: 100px;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.fv__layout {
  display: grid;
  width: 100%;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .fv__layout {
    grid-template-columns: 480px minmax(0, 1fr);
    gap: 60px;
  }
}
@media screen and (max-width: 999px) {
  .fv__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .fv__layout {
    gap: 40px;
  }
}

.fv__left {
  width: 100%;
  max-width: 480px;
  text-align: left;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 999px) {
  .fv__left {
    max-width: 100%;
  }
}

.fv__copy {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.06em;
  color: #1b1f1f;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .fv__copy {
    font-size: clamp(28px, 3.6vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .fv__copy {
    font-size: clamp(24px, 6.5vw, 34px);
  }
}

.fv__copy-line {
  display: block;
}

.fv__lead {
  margin: 50px 0 50px;
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.06em;
  color: #1b1f1f;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .fv__lead {
    margin: 30px 0 30px;
    font-size: 15px;
  }
}

.fv__lead--accent {
  color: #499499;
  font-weight: 700;
}

.fv__cta {
  margin-top: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__cta {
    display: flex;
    width: 100%;
  }
}

.fv__cta-lead {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: #499499;
  letter-spacing: 0.04em;
  text-align: center;
}

.fv__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 15px;
  width: 100%;
  min-width: 300px;
  min-height: 72px;
  padding: 16px 36px;
  background: #499499;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-decoration: none !important;
  line-height: 1.2;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}
.fv__cta-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .fv__cta-btn {
    min-width: 0;
    min-height: 60px;
  }
}

.fv__cta-btn-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fv__right {
  position: relative;
  z-index: 2;
  min-width: 0;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .fv__right {
    width: calc(100% + 24px * 2);
    max-width: none;
    margin-left: -24px;
  }
}
@media screen and (max-width: 767px) {
  .fv__right {
    width: calc(100% + 16px * 2);
    max-width: none;
    margin-left: -16px;
  }
}

.fv__video {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: rgba(27, 31, 31, 0.04);
}
@media screen and (min-width: 1000px) {
  .fv__video {
    height: clamp(440px, 52vh, 680px);
    min-height: 440px;
  }
}
@media screen and (max-width: 999px) {
  .fv__video {
    aspect-ratio: 16/10;
  }
}
@media screen and (max-width: 767px) {
  .fv__video {
    aspect-ratio: 16/11;
  }
}

.fv__video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.fv__fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/******************************** 
   トップ PREMASについて
*********************************/
.home-about {
  background: #fff;
}

.home-about__main {
  display: grid;
  align-items: start;
  gap: 80px;
}
@media screen and (min-width: 1000px) {
  .home-about__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 999px) {
  .home-about__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.home-about__figure {
  margin: 0;
  min-width: 0;
}

.home-about__video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.home-about__content {
  min-width: 0;
}

.home-about__heading {
  margin: 0 0 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 32px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #499499;
}
@media screen and (max-width: 767px) {
  .home-about__heading {
    margin-bottom: 50px;
    font-size: clamp(22px, 5.5vw, 28px);
  }
}

.home-about__heading-line {
  display: block;
}

.home-about__body {
  text-align: left;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: #1b1f1f;
}
.home-about__body p + p {
  margin-top: 1.75em;
}
@media screen and (max-width: 767px) {
  .home-about__body {
    font-size: 14px;
    line-height: 2.2;
  }
}

.home-about__cta {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .home-about__cta {
    text-align: left;
  }
}

.section-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 0;
  padding: 18px 22px 18px 32px;
  background: #499499;
  color: #fff !important;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}
.section-cta__btn:hover {
  opacity: 0.88;
}
@media screen and (max-width: 767px) {
  .section-cta__btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px 16px 28px;
  }
}

.section-cta__label {
  flex: 0 1 auto;
}

.section-cta__icon {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/******************************** 
   flow（ご相談の流れ）
*********************************/
.flow {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #f2f7f6 0%, #dde9e9 42%, #c9dcda 100%);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .flow .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.flow__title {
  text-align: left;
}

.flow__lead {
  text-align: left;
}

.flow__steps {
  list-style: none;
  margin: 48px auto 0;
  padding: 0;
  max-width: 1120px;
}
@media screen and (min-width: 1000px) {
  .flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .flow__steps {
    display: block;
    margin-top: 40px;
    max-width: 640px;
  }
}

.flow__step {
  position: relative;
  background: #fff;
  border: none;
  padding: 24px 20px 40px;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .flow__step:nth-child(1) {
    border-radius: 4px 0 0 4px;
  }
  .flow__step:nth-child(4) {
    border-radius: 0 4px 4px 0;
  }
  .flow__step:not(:nth-child(4))::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    right: 0;
    width: 0.5px;
    background: #ddd;
    pointer-events: none;
    z-index: 1;
  }
  .flow__step:not(:nth-child(4))::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translate(50%, -50%);
    width: 24px;
    height: 24px;
    background: url(../img/step-arrow.webp) no-repeat center center/contain;
    pointer-events: none;
    z-index: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .flow__step {
    padding: 20px 8px 28px;
  }
  .flow__step:nth-child(1) {
    border-radius: 4px 0 0 4px;
  }
  .flow__step:nth-child(4) {
    border-radius: 0 4px 4px 0;
  }
  .flow__step:not(:nth-child(4))::after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 0;
    width: 0.5px;
    background: #ddd;
    pointer-events: none;
    z-index: 1;
  }
  .flow__step:not(:nth-child(4))::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translate(50%, -50%);
    width: 18px;
    height: 18px;
    background: url(../img/step-arrow.webp) no-repeat center center/contain;
    pointer-events: none;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .flow__step {
    text-align: left;
    padding: 24px 18px 40px;
    margin-top: 0;
    background: #fff;
  }
  .flow__step:nth-child(1) {
    border-radius: 4px 4px 0 0;
  }
  .flow__step:nth-child(4) {
    border-radius: 0 0 4px 4px;
  }
  .flow__step:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 0.5px;
    background: #ddd;
    pointer-events: none;
    z-index: 1;
  }
  .flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%) rotate(90deg);
    width: 24px;
    height: 24px;
    background: url(../img/step-arrow.webp) no-repeat center center/contain;
    pointer-events: none;
    z-index: 2;
  }
}

.flow__step__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__step__head {
    align-items: center;
    gap: 4px;
    padding-top: 2px;
  }
}

.flow__step__num {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #499499;
  border: 2px solid #499499;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.06em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
.flow__step__num::before {
  content: "STEP";
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flow__step__num {
    position: static;
    margin: 0 auto 16px;
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  .flow__step__num::before {
    font-size: 14px;
    margin-bottom: 3px;
  }
}

.flow__step__title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  width: 100%;
  color: #1b1f1f;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .flow__step__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .flow__step__title {
    padding-left: 0;
    font-size: 16px;
  }
}

.flow__step__text {
  margin: 40px 0 0;
  font-size: 16px;
  line-height: 1.85;
  text-align: left;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .flow__step__text {
    margin-top: 30px;
    line-height: 1.65;
  }
}
@media screen and (max-width: 767px) {
  .flow__step__text {
    margin-top: 24px;
  }
}

/******************************** 
   service, about
*********************************/
.service__cta {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__cta {
    margin-top: 48px;
  }
}

.service__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 60px;
  counter-reset: service-item;
}
@media screen and (min-width: 1000px) {
  .service__list {
    justify-content: flex-start;
    gap: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .service__list {
    justify-content: flex-start;
    gap: 28px;
  }
}
@media screen and (max-width: 767px) {
  .service__list {
    display: block;
    margin-top: 40px;
  }
}

.service__item {
  width: calc((100% - 56px) / 3);
  background: #fff;
  border: none;
  counter-increment: service-item;
  position: relative;
  border-radius: 4px;
}
.service__item:nth-child(n+4):nth-child(-n+7) {
  width: calc((100% - 84px) / 4);
}
@media screen and (min-width: 1000px) {
  .service__item:nth-child(-n+3) {
    width: calc((100% - 56px) / 3);
  }
  .service__item:nth-child(n+4):nth-child(-n+7) {
    width: calc((100% - 84px) / 4);
  }
}
.service__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 30px 24px;
  position: relative;
}
.service__item .util-title-middle::before {
  content: counter(service-item, decimal-leading-zero);
  display: block;
  margin-bottom: 4px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #499499;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .service__item:nth-child(-n+3) {
    width: calc((100% - 56px) / 3);
  }
  .service__item:nth-child(n+4):nth-child(-n+7) {
    width: calc((100% - 28px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
  .service__item:nth-child(n+4):nth-child(-n+7) {
    width: 100%;
  }
  .service__item:nth-child(n+2) {
    margin-top: 28px;
  }
  .service__item a {
    padding: 30px 16px;
  }
}

.service__item--wide {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .service__item--wide {
    width: calc((100% - 84px) / 4);
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .service__item--wide {
    width: 100%;
  }
}

.service__item__points {
  margin-top: 16px;
  padding-left: 0.75em;
}
.service__item__points li {
  margin-top: 6px;
  list-style: disc;
  line-height: 1.65;
}
.service__item__points li::marker {
  font-size: 0.7em;
}

.service__item__text {
  text-align: justify;
  margin-bottom: 40px;
}
.service__item__text p {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.service__item__text p + p {
  margin-top: 20px;
}
.service__item__text .service__item__points {
  margin-top: 0;
}
.service__item__text .service__item__points li {
  font-size: 16px;
  letter-spacing: 0.06em;
}
.service__item__text .service__item__partner-note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #4a4d4d;
}

.service__item__more {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 24px;
}
.service__item__more::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/arrow-green.webp) no-repeat center center/contain;
  flex-shrink: 0;
}

.service__section-note {
  margin-top: 20px;
  color: #499499;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/******************************** 
   news
*********************************/
.news__list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .news__list {
    margin-top: 40px;
  }
}

.news__item {
  border-top: 1px solid #d0e2e2;
}
.news__item a {
  display: flex;
  padding: 45px 70px 45px 30px;
}
@media screen and (max-width: 999px) {
  .news__item a {
    display: block;
    padding: 30px 10px 30px 0px;
  }
}
.news__item:last-child {
  border-top: 1px solid #d0e2e2;
}
.news__item {
  position: relative;
}
.news__item::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  background: url(../img/arrow.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .news__item::after {
    right: 10px;
    top: calc(100% - 24px);
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .news__item::after {
    right: 10px;
    top: calc(100% - 24px);
  }
}

.news__meta {
  display: flex;
}

.news__date {
  white-space: nowrap;
  width: 90px;
}

.news__cat {
  white-space: nowrap;
  margin-left: 40px;
  padding: 1px 10px 3px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  text-align: center;
  color: #499499;
  border: 1px solid #499499;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .news__cat {
    margin-left: 30px;
  }
}

.news__title {
  margin-left: 80px;
  width: calc(100% - 330px);
}
@media screen and (max-width: 999px) {
  .news__title {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

/******************************** 
   contact
*********************************/
.contact {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: url(../img/contact-bg.webp) no-repeat center center/cover;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(18, 19, 19, 0.75);
  pointer-events: none;
}
.contact > .inner {
  position: relative;
  z-index: 1;
}

.contact__title,
.contact__lead {
  text-align: center;
}

.contact__title .jp-title {
  color: #fff;
}

.contact__hours {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.92);
}

.contact__button__area {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  max-width: 776px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .contact__button__area {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
  }
}

.contact__cta-card {
  flex: 0 1 380px;
  width: 100%;
  max-width: 380px;
  text-decoration: none !important;
  border-radius: 4px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.contact__cta-card:hover {
  opacity: 0.92;
}
.contact__cta-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.contact__cta-card--tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 8px 16px 10px;
  background: #d9e6e6;
  color: #1b1f1f;
}
@media screen and (max-width: 767px) {
  .contact__cta-card--tel {
    min-height: 80px;
    height: 80px;
    max-height: 80px;
    padding: 5px 10px 6px;
    box-sizing: border-box;
  }
}

.contact__cta-card__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.contact__cta-card__free-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.contact__cta-card__free-icon {
  display: block;
  width: auto;
  height: 22px;
  max-height: 22px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .contact__cta-card__free-icon {
    height: 18px;
    max-height: 18px;
  }
}

.contact__cta-card__tel-num {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.15;
  color: #1b1f1f;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact__cta-card__tel-num {
    font-size: 18px;
  }
}

.contact__cta-card__tel-hours {
  margin: 4px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #4a4d4d;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact__cta-card__tel-hours {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.25;
  }
}

.contact__cta-card--form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 90px;
  min-height: 90px;
  padding: 0 20px;
  background: #499499;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .contact__cta-card--form {
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    padding: 0 16px;
    box-sizing: border-box;
  }
}

.contact__cta-card__mail-icon {
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact__cta-card__form-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .contact__cta-card__form-label {
    font-size: 20px;
  }
}

.contact__button {
  width: 320px;
  height: 70px;
  border-radius: 4px;
  line-height: 70px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .contact__button {
    display: block;
    width: 100%;
    height: 70px;
  }
  .contact__button + .contact__button {
    margin-top: 30px;
  }
}
.contact__button .mail-icon {
  width: 20px;
  position: relative;
  top: 3px;
}
.contact__button .tel-icon {
  width: 20px;
  position: relative;
  top: 3px;
}
.contact__button span {
  margin-left: 10px;
}
.contact__button--form {
  background: #499499;
  color: #fff;
}
.contact__button--tel {
  background: #fff;
  border: 2px solid #fff;
  color: #499499;
  box-sizing: border-box;
}
.contact__button--tel .tel-icon {
  filter: none;
}

/******************************** 
   footer
*********************************/
.footer {
  background: #f5f5f5;
  padding: 100px 0 20px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 80px 0 20px 0;
  }
}

.footer__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
  }
}

.footer__left {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .footer__left {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
}

.footer__right {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .footer__right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
}

.footer__nav {
  flex: 0 1 auto;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    width: 100%;
  }
}

.footer__logo {
  margin-top: 0;
}
.footer__logo a {
  display: inline-block;
  line-height: 0;
}
.footer__logo img {
  display: block;
  width: min(300px, 100%);
  height: auto;
}

.footer__menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu__list li {
  margin-top: 6px;
}
.footer__menu__list li:first-child {
  margin-top: 0;
}
.footer__menu__list li a {
  display: block;
  line-height: 44px;
}

.footer__copy {
  margin-top: 100px;
  font-size: 12px;
}

.footer__to-top {
  position: absolute;
  top: 0;
  right: 40px;
  transform: translateY(-50%);
  line-height: 0;
}
.footer__to-top img {
  display: block;
  width: 48px;
  height: auto;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .footer__to-top {
    right: 16px;
  }
}

/* /footer */
/******************************** 
   下層ページ共通
*********************************/
/* page-head */
.page-head {
  width: 100%;
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .page-head {
    margin-top: 140px;
  }
}

@media screen and (min-width: 1000px) {
  .page-head--with-hero .page-head__lead {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto auto;
    align-items: stretch;
    column-gap: 0;
  }
}
@media screen and (min-width: 1000px) {
  .page-head--with-hero .page-head__text-side {
    grid-column: 1;
    grid-row: 1;
    padding-left: 40px;
    align-self: center;
    min-width: 0;
  }
}
@media screen and (min-width: 1000px) {
  .page-head--with-hero .page-head__inner {
    padding: 0;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .page-head--with-hero .page-head__breadcrumb {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .page-head--with-hero .page-head__hero {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    margin-right: 0;
    min-height: 280px;
    display: flex;
    align-self: stretch;
  }
  .page-head--with-hero .page-head__hero picture {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
  .page-head--with-hero .page-head__hero img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
  }
}

.page-head__inner {
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head__inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .page-head__inner {
    padding: 0 16px;
  }
}

.page-head__title__en {
  margin-top: 0;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
  color: #499499;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .page-head__title__en {
    font-size: 32px;
  }
}

.page-head__title__jp {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-head__title__jp {
    font-size: 20px;
  }
}

.page-head__img-wrapper {
  max-width: calc(50vw + 600px);
  margin-top: 100px;
  margin-left: auto;
  padding-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head__img-wrapper {
    max-width: 100vw;
    padding-left: 24px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-head__img-wrapper {
    margin-top: 60px;
    max-width: 100vw;
    padding-left: 0;
  }
}

.page-head__img {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .page-head__img {
    aspect-ratio: 1320/500;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head__img {
    aspect-ratio: 1320/500;
  }
}
@media screen and (max-width: 767px) {
  .page-head__img {
    height: 240px;
  }
}
.page-head__img--about {
  background: url(../img/about-head.webp) no-repeat left center/cover;
}
.page-head__img--service {
  background: url(../img/service-head.webp) no-repeat center bottom/cover;
}
.page-head__img--news {
  background: url(../img/news-head.webp) no-repeat right center/cover;
}
.page-head__img--contact {
  background: url(../img/contact-head.webp) no-repeat right center/cover;
}

.page-head__hero {
  margin-top: 60px;
  padding: 0;
  overflow: hidden;
}
.page-head__hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page-head__hero img {
    aspect-ratio: 1/1;
  }
}

/* /page-head */
/* breadcrumb */
.breadcrumb {
  text-align: left;
  margin-top: 60px;
  padding: 0 40px;
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .breadcrumb {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 60px;
    padding: 0 16px;
  }
}
.breadcrumb span {
  display: inline-block;
  margin-right: 40px;
}
.breadcrumb span:last-of-type {
  margin-right: 0;
}
.breadcrumb span a {
  position: relative;
  text-decoration: none !important;
}
.breadcrumb span a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #b3b3b3;
}
.breadcrumb span a::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-green.webp) no-repeat center center/contain;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
}

.first-section {
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .first-section {
    padding-top: 80px;
  }
}

/******************************** 
   PREMASについてページ（about）
*********************************/
.about-page .util-title-large .en-title::before {
  display: none;
}
.about-page .about-intro__title {
  text-align: left;
}
.about-page .message-block {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(73, 148, 153, 0.3);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .message-block {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .message-block {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
  }
}
.about-page .message-block:first-of-type {
  margin-top: 60px;
  padding-top: 0;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .about-page .message-block:first-of-type {
    margin-top: 40px;
  }
}
.about-page .message-block:last-of-type {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(73, 148, 153, 0.3);
}
@media screen and (max-width: 767px) {
  .about-page .message-block:last-of-type {
    padding-bottom: 40px;
  }
}
.about-page .message-block__left {
  flex-shrink: 0;
  width: 180px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .about-page .message-block__left {
    width: 100%;
  }
}
.about-page .message-block__img {
  width: 180px;
  aspect-ratio: 3/4;
  margin: 0 auto 0 0;
  overflow: hidden;
  background: #f5f5f5;
}
.about-page .message-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .about-page .message-block__img {
    width: 200px;
    margin: 0 auto;
  }
}
.about-page .message-block__name {
  margin-top: 16px;
  text-align: center;
}
.about-page .message-block__role {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #499499;
  background: rgba(73, 148, 153, 0.08);
  letter-spacing: 0.1em;
}
.about-page .message-block__name-jp {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .about-page .message-block__name-jp {
    font-size: 16px;
  }
}
.about-page .message-block__name-en {
  font-size: 13px;
  font-family: "Lato", sans-serif;
  color: #499499;
  letter-spacing: 0.24em;
}
.about-page .message-block__body {
  flex: 1;
  min-width: 0;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.about-page .message-block__body p + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .about-page .message-block__body {
    font-size: 14px;
  }
}
.about-page .message-block__headline {
  font-size: 20px;
  font-weight: 500;
  color: #499499;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .about-page .message-block__headline {
    font-size: 15px;
  }
}
.about-page .message-block__quote {
  font-size: 20px;
  font-weight: 500;
  color: #499499;
  letter-spacing: 0.08em;
}
.about-page .profile {
  display: flex;
  align-items: stretch;
  padding-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .about-page .profile {
    gap: 60px;
  }
}
@media screen and (max-width: 999px) {
  .about-page .profile {
    display: block;
    padding-bottom: 40px;
  }
}
.about-page .about-profile {
  padding-top: 40px;
  overflow-x: clip;
}
.about-page .about-profile__inner .profile.about-profile__columns {
  margin-top: 40px;
}
@media screen and (min-width: 1000px) {
  .about-page .about-profile__inner .profile.about-profile__columns {
    margin-top: 50px;
  }
}
.about-page .profile__inner {
  width: 580px;
  max-width: 100%;
  padding: 0 0 0 40px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .profile__inner {
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__inner {
    padding: 0 16px;
  }
}
.about-page .about-profile__inner .profile__inner {
  margin-left: 0;
  padding-left: 0;
}
@media screen and (min-width: 1000px) {
  .about-page .profile__inner.profile__left {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 0;
  }
}
.about-page .profile__left {
  margin-right: 20px;
}
@media screen and (min-width: 1000px) {
  .about-page .profile__left {
    margin-right: 0;
  }
}
@media screen and (max-width: 999px) {
  .about-page .profile__left {
    margin-right: auto;
  }
}
.about-page .profile__right {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  margin-left: 20px;
  min-height: 0;
  align-self: stretch;
}
@media screen and (min-width: 1000px) {
  .about-page .profile__right {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 999px) {
  .about-page .profile__right {
    display: block;
    margin-left: 0;
    margin-top: 48px;
    width: 100%;
    min-height: auto;
  }
}
.about-page .profile__title {
  text-align: left;
}
.about-page .profile__details {
  margin-top: 40px;
}
@media screen and (min-width: 1000px) {
  .about-page .profile__details {
    margin-top: 50px;
  }
}
.about-page .about-profile__columns .profile__details {
  margin-top: 0;
}
.about-page .profile__row {
  position: relative;
  padding: 24px 16px;
  border-bottom: none;
  display: flex;
}
.about-page .profile__row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, #499499 0, #499499 150px, #ddd 150px, #ddd 100%);
}
@media screen and (max-width: 999px) {
  .about-page .profile__row::after {
    background: #499499;
  }
}
.about-page .profile__row dt {
  font-weight: 500;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 999px) {
  .about-page .profile__row dt {
    width: 160px;
  }
}
.about-page .profile__row dd {
  width: calc(100% - 200px);
  margin: 0;
  line-height: 1.85;
}
@media screen and (max-width: 999px) {
  .about-page .profile__row dd {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__row dd {
    width: 100%;
    margin-top: 10px;
  }
}
.about-page .profile__row dd a {
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .about-page .profile__row {
    display: block;
    padding: 16px;
  }
}
.about-page .profile__list {
  margin: 0;
  padding-left: 1.2em;
}
.about-page .profile__list li {
  margin-top: 6px;
  list-style: disc;
}
.about-page .profile__list li:first-child {
  margin-top: 0;
}
.about-page .profile__map {
  width: 100%;
  min-height: 360px;
  height: auto;
  position: relative;
  top: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.about-page .profile__map--about {
  position: relative;
  width: 100%;
  min-height: 320px;
}
@media screen and (min-width: 1000px) {
  .about-page .profile__map--about {
    flex: 1 1 auto;
    min-height: 0;
    width: calc(100% + max(40px, 50vw - 560px));
    border-radius: 4px 0 0 4px;
  }
}
@media screen and (max-width: 999px) {
  .about-page .profile__map--about {
    flex: none;
    height: 360px;
    min-height: 360px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__map--about {
    height: 280px;
    min-height: 280px;
  }
}
.about-page .profile__map--about iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.about-page .profile__access {
  margin-top: 16px;
  padding: 16px 0 0 16px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .about-page .profile__access {
    margin-top: 12px;
    padding-top: 12px;
    padding-left: 0;
  }
}
.about-page .profile__access-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  color: #499499;
  letter-spacing: 0.05em;
}
.about-page .profile__access-list {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.7;
}
.about-page .profile__access-list li {
  margin-top: 4px;
  list-style: disc;
}
.about-page .profile__access-list li:first-child {
  margin-top: 0;
}

/******************************** 
   パートナー企業のご紹介
*********************************/
.about-partners {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .about-partners {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.about-partners__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 48px;
}
@media screen and (max-width: 767px) {
  .about-partners__title {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

.about-partners__title-bar {
  display: block;
  width: 4px;
  height: 28px;
  background: #499499;
}

.about-partners__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-partners__list + .about-partners__title {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .about-partners__list + .about-partners__title {
    margin-top: 48px;
  }
}

.partner-card {
  display: flex;
  border: 1px solid #d0e2e2;
  border-bottom: none;
}
.partner-card:last-child {
  border-bottom: 1px solid #d0e2e2;
}
@media screen and (max-width: 767px) {
  .partner-card {
    flex-direction: column;
  }
}

.partner-card__name {
  width: 300px;
  min-width: 280px;
  flex-shrink: 0;
  background: #499499;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .partner-card__name {
    width: 100%;
    min-height: 80px;
    padding: 24px 16px;
    font-size: 15px;
  }
}

.partner-card__details {
  flex: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.partner-card__row {
  display: flex;
  border-bottom: 1px solid #fff;
}
.partner-card__row:last-child {
  border-bottom: none;
}
.partner-card__row dt {
  width: 140px;
  flex-shrink: 0;
  padding: 16px 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1b1f1f;
  background: rgba(73, 148, 153, 0.08);
}
@media screen and (max-width: 767px) {
  .partner-card__row dt {
    width: 110px;
    padding: 12px 16px;
    font-size: 13px;
  }
}
.partner-card__row dd {
  flex: 1;
  margin: 0;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  background: #fafafa;
}
@media screen and (max-width: 767px) {
  .partner-card__row dd {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/******************************** 
   対応業務ページ（service）
*********************************/
.service-page [id^=service0] {
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .service-page [id^=service0] {
    scroll-margin-top: 72px;
  }
}
.service-page .service__container {
  margin-top: 160px;
  margin-bottom: 160px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .service-page .service__container {
    display: block;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.service-page .side-nav {
  display: block;
  width: 270px;
  flex-shrink: 0;
}
@media screen and (max-width: 999px) {
  .service-page .side-nav {
    display: none;
  }
}
.service-page .service-nav-list {
  position: sticky;
  top: 100px;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .service-page .service-nav-list {
    position: static;
  }
}
.service-page .side-nav-button {
  display: block;
  position: relative;
  padding: 30px 30px 30px 30px;
  background: #ebf6f3;
  border-bottom: 1px solid #d0e2e2;
}
.service-page .side-nav-button::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/arrow-green.webp) no-repeat center center/contain;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}
.service-page .side-nav-button.active {
  background: #499499;
  color: #fff;
}
.service-page .side-nav-button.active::after {
  background: url(../img/arrow.webp) no-repeat center center/contain;
}
.service-page .service-nav-num {
  display: inline-block;
  margin-right: 10px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1000px) {
  .service-page .service__sp-nav {
    display: none;
  }
}
.service-page .service__sp-nav {
  padding-top: 0;
  padding-bottom: 40px;
}
.service-page .service__sp-nav__item {
  display: block;
  padding: 16px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.service-page .service__sp-nav__item.active {
  background: rgba(73, 148, 153, 0.12);
  color: #499499;
  font-weight: 500;
}
.service-page .service__sp-nav__item::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/arrow-green.webp) no-repeat center center/contain;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
}
.service-page .main-content {
  width: calc(100% - 250px - 8%);
  max-width: 100%;
  padding: 0 40px 0 8%;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .service-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .service-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.service-page .service-page__inner {
  max-width: 800px;
  margin: 0;
  padding-top: 0;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__inner {
    padding-bottom: 80px;
  }
}
.service-page .service-page__section {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #d0e2e2;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__section {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.service-page .service-page__section h2 {
  margin: 0 0 60px;
  padding: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #499499;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__section h2 {
    font-size: 24px;
    margin: 0 0 40px;
  }
}
.service-page .service-page__section h2 .service-h2-num {
  font-size: 16px;
}
.service-page .service-page__section h3 {
  margin: 60px 0 30px;
  padding: 0 0 0 14px;
  border-left: 3px solid #499499;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .service-page .service-page__section h3 {
    font-size: 18px;
    margin: 50px 0 24px;
  }
}
.service-page .service-page__section p {
  margin: 0 0 1.8em;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: justify;
}
.service-page .service-page__section p:last-child {
  margin-bottom: 0;
}

/******************************** 
   お知らせページ(news, single)
*********************************/
.news-page .single__title,
.single-page .single__title {
  margin-top: 16px;
}
.news-page .single__content,
.single-page .single__content {
  margin-top: 60px;
  word-break: break-all;
}
.news-page .single__content p,
.single-page .single__content p {
  margin-bottom: 1.8em;
}
.news-page .single__content h2,
.single-page .single__content h2 {
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
}
.news-page .single__content h3,
.single-page .single__content h3 {
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
  padding: 0px 0 0px 10px;
  border-left: 2px solid #499499;
}
.news-page .single__content a,
.single-page .single__content a {
  color: #499499;
  text-decoration: underline;
}
.news-page .single__content figure,
.single-page .single__content figure {
  margin: 0 0 1em;
}
.news-page .single__content .wp-block-file__button,
.single-page .single__content .wp-block-file__button {
  background: #499499;
  color: #fff;
  text-decoration: none;
}
.news-page .news__content,
.single-page .news__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news-page .news__content,
  .single-page .news__content {
    display: block;
  }
}
.news-page .news-main,
.single-page .news-main {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .news-page .news-main,
  .single-page .news-main {
    width: 100%;
  }
}
.news-page .news-main .news__list,
.single-page .news-main .news__list {
  margin-top: 0;
}
.news-page .news-main .news__item a,
.single-page .news-main .news__item a {
  display: block;
  padding: 30px 10px 30px 0px;
}
@media screen and (max-width: 999px) {
  .news-page .news-main .news__item a,
  .single-page .news-main .news__item a {
    display: block;
    padding: 30px 10px 30px 0px;
  }
}
.news-page .news-main .news__item::after,
.single-page .news-main .news__item::after {
  right: 10px;
  top: calc(100% - 24px);
}
.news-page .news-main .news__title,
.single-page .news-main .news__title {
  margin-left: 0;
  margin-top: 20px;
  width: 100%;
}
.news-page .news-side,
.single-page .news-side {
  width: 20%;
  margin-left: 10%;
  margin-top: -10px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .news-page .news-side,
  .single-page .news-side {
    width: 22%;
    margin-left: 8%;
  }
}
@media screen and (max-width: 767px) {
  .news-page .news-side,
  .single-page .news-side {
    width: 100%;
    margin: 80px 0;
  }
}
.news-page .news-side__head,
.single-page .news-side__head {
  font-size: 20px;
  font-weight: 500;
}
.news-page .news-side__list li,
.single-page .news-side__list li {
  padding-left: 20px;
  margin-top: 10px;
  font-size: 16px;
  position: relative;
}
.news-page .news-side__list li::before,
.single-page .news-side__list li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 2px;
  background: #499499;
  top: 15px;
  left: 10px;
}
.news-page .news-side__list li .news-side__link,
.single-page .news-side__list li .news-side__link {
  display: block;
  line-height: 2;
  transition: all 0.4s ease 0s;
}
.news-page .news-side__list li .news-side__link:hover,
.single-page .news-side__list li .news-side__link:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}
.news-page .news-side__list,
.single-page .news-side__list {
  margin-top: 10px;
  margin-bottom: 60px;
}
.news-page .news__pagination-wrapper,
.single-page .news__pagination-wrapper {
  margin: 80px auto 0;
  text-align: center;
}
.news-page .page-numbers,
.single-page .page-numbers {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-left: 2px;
}
.news-page .page-numbers.current,
.single-page .page-numbers.current {
  background: #499499;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .news-page .page-numbers,
  .single-page .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 0px;
  }
}
.news-page .single__more-news,
.single-page .single__more-news {
  margin-top: 80px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

/******************************** 
   問い合わせページ(contact)
*********************************/
.contact-form__intro p {
  margin-bottom: 1.8em;
}
.contact-form__intro > p:first-child {
  margin-bottom: 0;
}
.contact-form__intro span {
  color: #499499;
}
.contact-form__intro a {
  text-decoration: underline;
}

.contact-form__tel-box {
  margin-top: 60px;
  padding: 24px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .contact-form__tel-box {
    margin-top: 40px;
    padding: 20px 16px;
  }
}
.contact-form__tel-box p {
  margin-bottom: 0.75em;
}
.contact-form__tel-box p:last-child {
  margin-bottom: 0;
}

.contact-form__tel-box-heading {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1b1f1f;
}
@media screen and (max-width: 767px) {
  .contact-form__tel-box-heading {
    font-size: 16px;
  }
}

.contact-form__tel-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 0.5em !important;
}

.contact-form__free-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.contact-form__free-icon {
  display: block;
  width: auto;
  height: 22px;
  max-height: 22px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .contact-form__free-icon {
    height: 18px;
    max-height: 18px;
  }
}

.contact-form__tel-link {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #499499 !important;
  text-decoration: none !important;
}

.contact-form__hours {
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}

.contact-form__wrapper {
  margin: 100px auto 0;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  padding: 0 60px 0;
}
@media screen and (max-width: 767px) {
  .contact-form__wrapper {
    padding: 0 16px 0;
  }
}

.contact-form__content {
  width: 760px;
  max-width: 100%;
  padding: 60px 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-form__content {
    padding: 20px 0 40px;
  }
}

.form-note {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.contact-form__privacy {
  margin-top: 40px;
  padding: 28px 24px;
  border: 1px solid rgba(73, 148, 153, 0.18);
  border-radius: 4px;
  background: rgba(73, 148, 153, 0.03);
}
@media screen and (max-width: 767px) {
  .contact-form__privacy {
    margin-top: 32px;
    padding: 20px 16px;
  }
}
.contact-form__privacy p {
  margin-top: 0 !important;
  margin-bottom: 1.2em;
  font-size: 14px;
  line-height: 2;
}
.contact-form__privacy p:last-of-type {
  margin-bottom: 0;
}
.contact-form__privacy p br {
  display: none;
}
.contact-form__privacy a {
  color: #499499;
  text-decoration: underline;
}

.contact-form__privacy-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 500;
  color: #499499;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-title {
    font-size: 16px;
  }
}

.contact-form__privacy-check {
  display: block;
  margin-top: 14px;
  font-weight: 500;
  cursor: pointer;
}
.contact-form__privacy-check .wpcf7-checkbox {
  display: block;
}
.contact-form__privacy-check .wpcf7-list-item {
  margin: 0;
}
.contact-form__privacy-check .wpcf7-list-item-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-left: 38px;
  line-height: 1.7;
  cursor: pointer;
}
.contact-form__privacy-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.contact-form__privacy-check .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(73, 148, 153, 0.55);
  border-radius: 4px;
  background: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-form__privacy-check .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 3px solid #2e9c58;
  border-bottom: 3px solid #2e9c58;
  transform: translateY(-65%) rotate(-45deg) scale(0);
  transition: transform 0.2s ease;
}
.contact-form__privacy-check input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #2e9c58;
  background: rgba(46, 156, 88, 0.08);
}
.contact-form__privacy-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  transform: translateY(-65%) rotate(-45deg) scale(1);
}

@media screen and (min-width: 1000px) {
  form label .form-note {
    flex-basis: 100%;
    width: 100%;
    padding-left: 220px;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 1000px) {
  form p > .form-note {
    margin-left: 220px;
    max-width: 500px;
  }
}

@media screen and (min-width: 1000px) {
  form p {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  form p {
    margin-top: 30px;
  }
}
form p label {
  position: relative;
  color: #1b1f1f;
}
@media screen and (min-width: 1000px) {
  form p label {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  form p label .label-head {
    margin-top: 16px;
  }
}
form p .label-head {
  width: 220px;
  min-width: 220px;
}
@media screen and (min-width: 1000px) {
  form p .label-head {
    padding-left: 0px;
  }
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  color: inherit;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: inherit;
  padding: 16px 12px;
  width: 500px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=date],
  form select {
    width: 500px;
  }
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=date],
  form select {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=date],
  form select {
    margin-top: 8px;
    width: 100%;
  }
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=date]:focus,
form select:focus {
  border: 1px solid rgba(73, 148, 153, 0.32);
  box-shadow: 0px 0px 3px rgba(73, 148, 153, 0.32);
  outline: none;
}
form input[type=date] {
  width: 200px;
  padding: 10px 12px;
}
form select {
  background-color: #fff;
  background-image: none;
  padding: 16px 36px 16px 12px;
  cursor: pointer;
}
form select::-ms-expand {
  display: none;
}
form select:focus {
  border: 1px solid rgba(73, 148, 153, 0.32);
  box-shadow: 0px 0px 3px rgba(73, 148, 153, 0.32);
  outline: none;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form select {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  form select {
    margin-top: 10px;
  }
}
form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  color: inherit;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  padding: 12px;
  width: 500px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    width: 500px;
  }
}
form textarea {
  max-width: 100%;
  height: 240px;
  resize: vertical;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form textarea {
    margin-top: 8px;
    width: 100%;
  }
}
form textarea:focus {
  border: 1px solid rgba(73, 148, 153, 0.32);
  box-shadow: 0px 0px 3px rgba(73, 148, 153, 0.32);
  outline: none;
}
form textarea.textarea-small {
  height: 76px;
}
@media screen and (max-width: 767px) {
  form textarea.textarea-small {
    height: 100px;
  }
}
form .wpcf7-form-control-wrap {
  width: 500px;
  display: block;
}
@media screen and (max-width: 767px) {
  form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
form .wpcf7-form-control-wrap:has(select) {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
form .wpcf7-form-control-wrap:has(select)::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-right: 2px solid #499499;
  border-bottom: 2px solid #499499;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  form .contact-form__turnstile-wrap,
  form .wpcf7-turnstile {
    margin-left: 224px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1000px) {
  form p:has(.cf-turnstile),
  form p:has(iframe[src*="challenges.cloudflare.com"]) {
    margin-left: 224px;
  }
}

.wpcf7-submit {
  -webkit-appearance: none;
  background-color: #499499;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  background-image: none;
  border: 1px solid #499499;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 80px;
}
@media screen and (min-width: 1000px) {
  .wpcf7-submit {
    margin-left: 224px;
  }
}
.wpcf7-submit {
  padding: 0.8em 4em;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    width: 100%;
  }
}
.wpcf7-submit:hover, .wpcf7-submit:focus {
  outline: none;
}
.wpcf7-submit:hover, .wpcf7-submit:focus-visible {
  background-color: #fff;
  color: #499499;
}
.wpcf7-submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.required {
  display: inline-block;
  color: #499499;
  font-size: 14px;
  line-height: 1;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 12px;
  }
}

/******************************** 
   固定ページ
*********************************/
.page__content {
  margin-top: 60px;
  word-break: break-all;
}
.page__content p {
  margin-bottom: 1.8em;
}
.page__content h1 {
  line-height: 1.8;
  font-size: 2em;
  margin: 0 0 0.7em;
}
@media screen and (max-width: 767px) {
  .page__content h1 {
    font-size: 1.7em;
  }
}
.page__content h2 {
  line-height: 1.8;
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
}
.page__content h3 {
  line-height: 1.8;
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
  padding: 0px 0 0px 10px;
  border-left: 2px solid #499499;
}
.page__content a {
  color: #499499;
  text-decoration: underline;
}
.page__content figure {
  margin: 0 0 1em;
}

/******************************** 
   404ページ
*********************************/
.not-found-page .not-found {
  margin-top: 80px;
}
.not-found-page .not-found-title {
  font-size: 38px;
  font-weight: 500;
  color: #499499;
  text-align: center;
}
.not-found-page .not-found-text {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}
.not-found-page .not-found__cta {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .not-found-page .not-found__cta {
    margin-top: 48px;
  }
}
