@charset "UTF-8";
/*
/* Mixin
/*
----------------------------------------------------------------- */
:root {
  --header-height: 80px;
  --padding-side: 40px;
  --scroll-bar: 0;
}
@media screen and (max-width: 992px) {
  :root {
    --padding-side: 40px;
    --header-height: 120px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --padding-side: 20px;
    --header-height: 64px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 400;
  background-color: #f5f5f5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

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

a:link, a:visited {
  color: #222;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
.is-laptop a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

sup {
  font-size: 75%;
  vertical-align: top;
  position: relative;
  top: 0;
}

sub {
  font-size: 75%;
  vertical-align: bottom;
  position: relative;
  bottom: 0;
}

/*
/* Reset
/*
----------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  line-height: 0;
  vertical-align: bottom;
}

input,
button,
textarea,
select {
  font: inherit;
}

.site-container {
  padding-top: var(--header-height);
}
.site-container.-top {
  padding-top: 0;
}

/** Show icons only. */
/** Displayed with square background. */
/** Shown with circular background. */
/** Style settings for the box. */
/** style settings for the background. */
/** style settings related to borders. */
/**
 * Calculate the size of the svg.
 *
 * If $priority-size is specified, it takes precedence.
 * If $priority-size is not specified, the size of the SVG is a fixed percentage of $element-size.
 */
.site-footer {
  padding-left: var(--padding-side);
  padding-right: var(--padding-side);
  color: #0A4175;
  font-family: "Sorts Mill Goudy", serif;
}
.site-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 1280px;
  min-height: 96px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .site-footer__inner {
    min-height: 64px;
  }
}
.site-footer__copy {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .site-footer__copy {
    font-size: 0.75rem;
  }
}

.site-header {
  position: fixed;
  left: 40px;
  top: 40px;
  z-index: 10;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  padding-left: 40px;
  padding-right: 40px;
  -webkit-transition: height 400ms ease, background-color 400ms ease;
  transition: height 400ms ease, background-color 400ms ease;
  width: calc(100% - var(--padding-side) * 2);
  border-radius: 8px;
}
@media screen and (max-width: 992px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    top: 20px;
    left: 20px;
  }
}
.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
  -webkit-transition: height 400ms ease;
  transition: height 400ms ease;
}
@media screen and (max-width: 768px) {
  .site-header__inner {
    padding-top: 0;
  }
}
.site-header__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.site-header-logo__link {
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.site-header-logo__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .site-header-logo__link img {
    width: 120px;
  }
}
@media screen and (max-width: 992px) {
  .site-header-logo__mark img {
    width: 60px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .site-header-logo__mark img {
    width: 40px;
  }
}
.site-header-logo__text {
  color: #222;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
}
@media screen and (max-width: 992px) {
  .site-header-logo__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .site-header-logo__text {
    font-size: 1.25rem;
  }
}
body.-bg-black .site-header-logo__text {
  color: #fff;
}
body.-scrolled .site-header-logo__text {
  color: #222;
}
.site-header__nav {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
  .site-header__nav.is-expanded {
    display: block;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    overflow: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    background-color: rgba(10, 65, 117, 0.9);
  }
}
.site-header__menu-button {
  display: none;
  line-height: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .site-header__menu-button {
    display: block;
  }
}

.box-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .box-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px 0;
  }
}
.box-img.-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-img:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .box-img:not(:first-child) {
    margin-top: 20px;
  }
}
.box-img__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box-img__item {
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 769px) {
  .box-img__item.-left {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 769px) {
  .box-img__item.-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.box-img__item.-radius img {
  border-radius: 6px;
}
.box-img__caption {
  text-align: center;
  line-height: 1.5;
  margin-top: 12px;
}
.box-img__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.box-img__body > *:first-child {
  margin-top: 0;
}
.box-img__body > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .box-img.-sm-reverse .box-img__item {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.box-img.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.box-img.-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.button:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .button {
    margin-top: 32px;
  }
}
.button a,
.button button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 240px;
  min-height: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #0A4175;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  line-height: 1.5;
  padding: 12px 16px;
  -webkit-transition: color 400ms ease, background-color 400ms ease;
  transition: color 400ms ease, background-color 400ms ease;
  cursor: pointer;
  border: none;
  font-weight: 500;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button a,
  .button button {
    min-height: 48px;
  }
}
@media (any-hover: hover) {
  .button a:hover,
  .button button:hover {
    background-color: #577b9e;
  }
}
.button__label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
}
.button.-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button.-r {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .buttons {
    gap: 10px;
  }
}
.buttons:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .buttons:not(:first-child) {
    margin-top: 30px;
  }
}
.buttons > .button {
  width: 250px;
  margin: 0;
}
.buttons.-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .buttons.-col-2 {
    grid-template-columns: 1fr;
  }
}
.buttons.-col-2 > .button {
  width: 100%;
}
.buttons.-col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .buttons.-col-3 {
    grid-template-columns: 1fr;
  }
}
.buttons.-col-3 > .button {
  width: 100%;
}
.buttons.-col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 992px) {
  .buttons.-col-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .buttons.-col-4 {
    grid-template-columns: 1fr;
  }
}
.buttons.-col-4 > .button {
  width: 100%;
}

.figure {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .figure {
    margin-bottom: 15px;
  }
}
.figure:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .figure:not(:first-child) {
    margin-top: 30px;
  }
}
.figure figcaption {
  text-align: center;
  margin-top: 15px;
}
.figure > a {
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.figure > a:hover {
  opacity: 0.7;
}

.list-dot li {
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
.list-dot li::before {
  content: "";
  background: #222;
  width: 0.25em;
  height: 0.25em;
  position: absolute;
  left: 0;
  top: 0.7em;
  border-radius: 50%;
}
.list-dot li + li {
  margin-top: 8px;
}
.list-dot ul {
  margin-top: 16px;
}

.menu-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: var(--header-height);
  height: var(--header-height);
  background: none;
  border: none;
  cursor: pointer;
}
.menu-button::before, .menu-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  background-color: #222;
  -webkit-transition: background-color 400ms ease, -webkit-box-shadow 400ms ease, -webkit-transform 400ms ease;
  transition: background-color 400ms ease, -webkit-box-shadow 400ms ease, -webkit-transform 400ms ease;
  transition: background-color 400ms ease, box-shadow 400ms ease, transform 400ms ease;
  transition: background-color 400ms ease, box-shadow 400ms ease, transform 400ms ease, -webkit-box-shadow 400ms ease, -webkit-transform 400ms ease;
}
.menu-button::before {
  -webkit-transform: translate(-50%, -6px);
          transform: translate(-50%, -6px);
  -webkit-box-shadow: 0 6px 0 0 #222222;
          box-shadow: 0 6px 0 0 #222222;
}
.menu-button::after {
  -webkit-transform: translate(-50%, 6px);
          transform: translate(-50%, 6px);
}
.menu-button.is-expanded::before, .menu-button.is-expanded::after {
  background-color: #fff;
}
.menu-button.is-expanded::before {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
  -webkit-box-shadow: 0 5px 0 0 rgba(34, 34, 34, 0);
          box-shadow: 0 5px 0 0 rgba(34, 34, 34, 0);
}
.menu-button.is-expanded::after {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .nav {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    display: block;
    padding: calc(var(--header-height) + 80px) 20px 0;
    height: calc(100dvh + 1px);
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .nav__list {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .nav__list {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
  }
}
.nav__list-item {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .nav__list-item {
    width: 100%;
  }
}
.nav__list-item > a, .nav__list-item > button {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: #222;
  line-height: 1.5;
  -webkit-transition: color 400ms ease, opacity 400ms ease;
  transition: color 400ms ease, opacity 400ms ease;
  font-family: "Shippori Mincho", serif;
}
@media (any-hover: hover) {
  .nav__list-item > a:hover, .nav__list-item > button:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .nav__list-item > a, .nav__list-item > button {
    font-size: 1.125rem;
    color: #fff;
    width: 100%;
    padding: 20px 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.nav__list-item > a {
  display: block;
}
@media screen and (max-width: 768px) {
  .nav__list-item.-contact {
    margin-top: 40px;
    border-bottom: none;
  }
}
.nav__list-item.-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0A4175;
  min-height: 50px;
  padding: 0.5em 2em;
  border-radius: 50px;
  color: #fff;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.nav__list-item.-contact a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .nav__list-item.-contact a {
    background: #fff;
    color: #0A4175;
    border-top: none;
  }
}

.sa-default {
  -webkit-transition: opacity 0.7s linear, -webkit-transform 0.7s ease;
  transition: opacity 0.7s linear, -webkit-transform 0.7s ease;
  transition: opacity 0.7s linear, transform 0.7s ease;
  transition: opacity 0.7s linear, transform 0.7s ease, -webkit-transform 0.7s ease;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
}
.sa-default.-run {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.site-body {
  padding-top: 60px;
  padding-bottom: 160px;
}
@media screen and (max-width: 992px) {
  .site-body {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .site-body {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.site-container.-top .site-body {
  padding-top: 0;
}
#dcms_layoutPageBlock > *:first-child {
  margin-top: 0 !important;
}
#dcms_layoutPageBlock > *:lasy-child {
  margin-bottom: 0 !important;
}

.site-content {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-template-columns: 1fr 245px;
  gap: 50px;
}
@media screen and (max-width: 992px) {
  .site-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.site-content__main {
  min-width: 0;
}
.site-pagetop {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 400ms ease, visibility 400ms ease;
  transition: opacity 400ms ease, visibility 400ms ease;
}
body.-scrolled .site-pagetop {
  opacity: 1;
  visibility: visible;
}
.site-pagetop__link {
  --icon-size: 28px;
  --icon-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #222;
  border: 1px solid #222;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .site-pagetop__link {
    --icon-size: 20px;
    width: 48px;
    height: 48px;
  }
}
.site-pagetop__link::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: var(--icon-color);
  mask-image: url("../image/common/icon_cret_pagetop.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../image/common/icon_cret_pagetop.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
}
@media (any-hover: hover) {
  .site-pagetop__link:hover {
    --icon-color: #222;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .swipe {
    position: relative;
    overflow: auto;
  }
}
.swipe:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .swipe:not(:first-child) {
    margin-top: 30px;
  }
}
.swipe::before {
  display: none;
  content: "横スクロールできます。";
  position: absolute;
  left: 50%;
  top: 50px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(34, 34, 34, 0.85);
  color: #fff;
  font-size: 0.75rem;
  pointer-events: none;
  padding: 10px 15px;
  border-radius: 4px;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 768px) {
  .swipe::before {
    display: block;
  }
}
.swipe.-scrolled::before {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .swipe__inner {
    width: 800px;
  }
}
.swipe__inner > *:first-child {
  margin-top: 0;
}
.swipe__inner > *:last-child {
  margin-bottom: 0;
}

.table-border {
  width: 100%;
  border-top: 1px solid #222;
}
.table-border:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .table-border:not(:first-child) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .table-border table,
  .table-border thead,
  .table-border tbody,
  .table-border tfoot,
  .table-border tr,
  .table-border th,
  .table-border td {
    display: block;
  }
  .table-border th,
  .table-border td {
    width: 100% !important;
  }
}
.table-border th,
.table-border td {
  text-align: left;
  line-height: 1.5;
  vertical-align: middle;
  padding: 16px 32px;
}
@media screen and (max-width: 768px) {
  .table-border th,
  .table-border td {
    padding: 16px 12px;
  }
}
.table-border th.-l,
.table-border td.-l {
  text-align: left;
}
.table-border th.-c,
.table-border td.-c {
  text-align: center;
}
.table-border th.-r,
.table-border td.-r {
  text-align: right;
}
.table-border th.-va-t,
.table-border td.-va-t {
  vertical-align: top;
}
.table-border th.-va-b,
.table-border td.-va-b {
  vertical-align: bottom;
}
.table-border th.-fw-b,
.table-border td.-fw-b {
  font-weight: 700;
}
.table-border th.-fw-r,
.table-border td.-fw-r {
  font-weight: 400;
}
.table-border th {
  font-weight: 700;
  border-bottom: 1px solid #222;
}
@media screen and (max-width: 768px) {
  .table-border th {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.table-border td {
  border-bottom: 1px solid #222;
}
.table-border a {
  word-break: break-all;
}

.table {
  width: 100%;
  border-top: 1px solid #222;
  border-left: 1px solid #222;
}
.table:not(:first-child) {
  margin-top: 20px;
}
.table th,
.table td {
  line-height: 1.8;
  vertical-align: middle;
  padding: 15px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
}
@media screen and (max-width: 768px) {
  .table th,
  .table td {
    padding: 15px 10px;
  }
}
.table th.-l,
.table td.-l {
  text-align: left;
}
.table th.-c,
.table td.-c {
  text-align: center;
}
.table th.-r,
.table td.-r {
  text-align: right;
}
.table th.-va-t,
.table td.-va-t {
  vertical-align: top;
}
.table th.-va-b,
.table td.-va-b {
  vertical-align: bottom;
}
.table th.-fw-b,
.table td.-fw-b {
  font-weight: 700;
}
.table th.-fw-r,
.table td.-fw-r {
  font-weight: 400;
}
.table th {
  color: #fff;
  text-align: center;
  font-weight: 700;
  background-color: #222;
}
.table td {
  text-align: center;
  font-weight: 500;
  background-color: #fff;
}
.table a {
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .table.-sm-col table,
  .table.-sm-col thead,
  .table.-sm-col tbody,
  .table.-sm-col tfoot,
  .table.-sm-col tr,
  .table.-sm-col th,
  .table.-sm-col td {
    display: block;
  }
  .table.-sm-col th,
  .table.-sm-col td {
    width: 100% !important;
  }
}
.table__text-sm {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .table__text-sm {
    font-size: 0.6875rem;
  }
}
.table.-border {
  border-left: none;
  border-top: none;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .table.-border {
    margin-bottom: 30px;
  }
}
.table.-border th, .table.-border td {
  background: #fff;
  color: #222;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
}

.text {
  line-height: 1.8;
}
.text.-c {
  text-align: center;
}
.text.-b {
  font-weight: 700;
}
.text:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .text:not(:first-child) {
    margin-top: 16px;
  }
}

.thx-block {
  padding-left: var(--padding-side);
  padding-right: var(--padding-side);
}
.thx-block__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.thx-lead {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .thx-lead {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.thx-footer {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .thx-footer {
    margin-top: 48px;
  }
}

.top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .top-header {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.top-header__en {
  font-size: 3rem;
  color: #0A4175;
  line-height: 1.2;
  font-family: "Sorts Mill Goudy", serif;
}
@media screen and (max-width: 768px) {
  .top-header__en {
    font-size: 2rem;
  }
}
.top-header__title {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  color: #0A4175;
}
@media screen and (max-width: 768px) {
  .top-header__title {
    font-size: 1rem;
  }
}
.top-header.-company {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 992px) {
  .top-header.-company {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-header.-company__title {
  color: #fff;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.top-header.-vision {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0;
}
.top-header.-vision h2 {
  color: #fff;
  position: relative;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .top-header.-vision h2 {
    font-size: 2.5rem;
  }
}
.top-header.-vision h2::after {
  content: "";
  display: block;
  background: url("/assets/image/top/vision_img_2.webp") no-repeat left top/cover;
  width: 155px;
  height: 152px;
  position: absolute;
  top: -20px;
  left: 0;
  aspect-ratio: 155/152;
}
@media screen and (max-width: 768px) {
  .top-header.-vision h2::after {
    top: -15px;
    width: 100px;
    height: auto;
  }
}
.top-subtitle {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 32px;
  padding-left: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
.top-subtitle:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top-subtitle:not(:first-child) {
    margin-top: 48px;
  }
}
.top-subtitle::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: #0A4175;
  position: absolute;
  left: 0.3333em;
  top: 0.5em;
  -webkit-transform: translate();
          transform: translate();
}
.top-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 80px;
  padding-right: 80px;
  background-color: #101c25;
  padding-top: var(--header-height);
  height: 100vh;
  min-height: 800px;
  max-height: 880px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-hero {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 992px) {
  .top-hero {
    min-height: 720px;
    max-height: 840px;
  }
}
@media screen and (max-width: 768px) {
  .top-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-left: 20px;
    padding-right: 20px;
    min-height: 600px;
    height: auto;
    max-height: none;
  }
}
.top-hero.sa-custom .top-hero__en {
  opacity: 0;
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
}
.top-hero.sa-custom .top-hero__text {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.7s;
  transition: transform 0.7s, opacity 0.7s, -webkit-transform 0.7s;
}
.top-hero.sa-custom .top-hero__text {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.top-hero.sa-custom.-run .top-hero__en {
  opacity: 1;
}
.top-hero.sa-custom.-run .top-hero__text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.top-hero__body {
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-hero__body {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.top-hero__copy {
  font-size: 6rem;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 56px;
}
@media screen and (max-width: 1280px) {
  .top-hero__copy {
    font-size: 7.5vw;
    margin-bottom: 4.375vw;
  }
}
@media screen and (max-width: 768px) {
  .top-hero__copy {
    font-size: 3.25rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 350px) {
  .top-hero__copy {
    font-size: 2.75rem;
  }
}
.top-hero__copy strong {
  color: #222;
  font-weight: 900;
  text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
}
.top-hero__text {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .top-hero__text img {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}
.top-hero__cover {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.top-hero__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 62% 70%;
     object-position: 62% 70%;
}
@media screen and (max-width: 768px) {
  .top-hero__cover img {
    -o-object-position: 60% 100%;
       object-position: 60% 100%;
  }
}
.top-hero__en {
  font-size: 10rem;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: "Sorts Mill Goudy", serif;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .top-hero__en {
    font-size: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-hero__en {
    font-size: 4.25rem;
  }
}
.top-hero__en__body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-animation: scroll-left 100s linear infinite;
          animation: scroll-left 100s linear infinite;
  gap: 80px;
}
.top-hero__en__text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 5rem;
  line-height: 1;
}
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top-vision {
  padding-top: 160px;
  padding-left: var(--padding-side);
  padding-right: var(--padding-side);
  background: url("/assets/image/top/vision_img_1.webp") no-repeat right bottom/cover;
}
@media screen and (max-width: 992px) {
  .top-vision {
    padding-top: 80px;
  }
}
.top-vision__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.top-vision__body {
  padding: 108px 0 320px 0;
}
@media screen and (max-width: 992px) {
  .top-vision__body {
    padding: 64px 0 140px 0;
  }
}
.top-vision .text {
  color: #fff;
  font-size: 1.125rem;
  line-height: 3;
  font-weight: 500;
  text-shadow: 2px 2px 2px rgba(31, 50, 67, 0.9);
}
@media screen and (max-width: 768px) {
  .top-vision .text {
    font-size: 0.9375rem;
    line-height: 2.5;
  }
}
.top-company {
  background: #fff;
  width: 100%;
  width: calc(100% - var(--padding-side) * 2);
  border-radius: 8px;
  padding: 80px 20px;
  margin: -80px auto 0;
}
@media screen and (max-width: 992px) {
  .top-company {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-company {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.top-company__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .top-company__inner {
    display: block;
  }
}
.top-company__table {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 980px;
}
.top-company__table table th, .top-company__table table td {
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding: 16px;
}
@media screen and (max-width: 992px) {
  .top-company__table table tbody, .top-company__table table tr, .top-company__table table th, .top-company__table table td {
    display: block;
  }
}
.top-company__table table th {
  font-weight: 600;
  width: 30%;
}
@media screen and (max-width: 992px) {
  .top-company__table table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 992px) {
  .top-company__table table td {
    width: 100%;
  }
}
.top-company__table__ring {
  position: relative;
  padding-left: 24px;
}
.top-company__table__ring::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #B99246;
  border: 5px solid #F2DFBA;
  border-radius: 15px;
  aspect-ratio: 17/17;
}
@media screen and (max-width: 768px) {
  .top-company__table__ring::before {
    top: 0px;
    width: 17px;
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  .top-company a[href^="tel:"] {
    pointer-events: none;
    cursor: not-allowed;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .top-company a[href^="tel:"] {
    text-decoration: underline;
  }
}
.top-service {
  padding-top: 160px;
  padding-bottom: 160px;
  padding-left: var(--padding-side);
  padding-right: var(--padding-side);
}
@media screen and (max-width: 992px) {
  .top-service {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-service {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.top-service__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.top-service-list {
  display: grid;
  gap: 120px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 992px) {
  .top-service-list {
    gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-service-list {
    gap: 48px;
  }
}
.top-service-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.8125%;
}
@media screen and (max-width: 768px) {
  .top-service-list__item {
    gap: 32px;
    display: block;
  }
}
.top-service-list__item img {
  width: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-service-list__item img {
    min-height: auto;
  }
}
.top-service-list__item.-image-left {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .top-service-list__item.-image-left {
    grid-template-columns: 1fr;
  }
}
.top-service-list__item.-image-right {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .top-service-list__item.-image-right {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 769px) {
  .top-service-list__item.-image-right .top-service-list__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.top-service-list__image {
  margin-right: calc((100vw - var(--scroll-bar) - 100%) / -2);
  max-width: 50vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .top-service-list__image {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.top-service-list__image2 {
  margin-left: calc((100vw - var(--scroll-bar) - 100%) / -2);
  max-width: 50vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .top-service-list__image2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.top-service-list__body {
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .top-service-list__body {
    padding-top: 32px;
    display: block;
    min-height: auto;
  }
}
.top-service-list__title {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service-list__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.top-service-list__title::before {
  content: attr(data-num);
  display: block;
  color: #F2E0BA;
  font-size: 8.75rem;
  line-height: 1.2;
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  position: absolute;
  left: -48px;
  top: 60%;
  -webkit-transform: translateY(-54%);
          transform: translateY(-54%);
}
@media screen and (max-width: 992px) {
  .top-service-list__title::before {
    font-size: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .top-service-list__title::before {
    font-size: 3.75rem;
    left: -8px;
  }
}
.top-service-list__title-inner {
  position: relative;
  font-family: "Shippori Mincho", serif;
}
.top-service-def {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .top-service-def {
    gap: 16px;
  }
}
.top-service-def__item {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .top-service-def__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.top-service-def__title {
  font-weight: 700;
}
.top-service-def__title::before {
  content: "・";
}
.top-contact {
  background: #fff;
  width: 100%;
  width: calc(100% - var(--padding-side) * 2);
  border-radius: 8px;
  margin-top: 160px;
  padding: 80px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .top-contact {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-contact {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.top-contact__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.top-contact-form__container {
  display: grid;
  gap: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .top-contact-form__container {
    gap: 24px;
  }
}
.top-contact-form__item {
  display: grid;
  grid-template-columns: 1fr 78%;
  gap: 64px 24px;
}
@media screen and (max-width: 768px) {
  .top-contact-form__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.top-contact-form__label {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  .top-contact-form__label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-weight: 700;
    padding-top: 0;
  }
}
.top-contact-form__label.-no-padding {
  padding-top: 0;
}
.top-contact-form__input {
  width: 100%;
  font-size: 1rem;
  background-color: #f2f2f2;
  border-radius: 8px;
  border: 1px solid #dddddd;
  min-height: 56px;
  padding: 12px 16px;
}
@media screen and (max-width: 768px) {
  .top-contact-form__input {
    min-height: 48px;
    padding: 8px 16px;
  }
}
.top-contact-form__textarea {
  display: block;
  resize: none;
  width: 100%;
  height: 285px;
  font-size: 1rem;
  background-color: #f2f2f2;
  border-radius: 8px;
  border: 1px solid #dddddd;
  padding: 12px 16px;
}
@media screen and (max-width: 768px) {
  .top-contact-form__textarea {
    height: 200px;
    padding: 8px 16px;
  }
}
.top-contact-form__footer {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top-contact-form__footer {
    margin-top: 48px;
  }
}
.top-contact-form__button {
  background-color: transparent;
  border: solid 1px #222;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
}
.top-contact-form__error {
  color: #FF5757;
  line-height: 1.5;
  margin-top: 8px;
}
.top-contact-form__error:empty {
  display: none;
}
.top-contact-form__error::before {
  content: "※";
}
.top-contact-radio-list {
  display: grid;
  gap: 8px;
}
.top-contact-radio-list__item {
  line-height: 1.5;
}
.top-contact-radio-list__input {
  display: none;
}
.top-contact-radio-list__label {
  padding-left: 26px;
  cursor: pointer;
  position: relative;
}
.top-contact-radio-list__label::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #222;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0px;
}
.top-contact-radio-list__input:checked + .top-contact-radio-list__label::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #222;
  position: absolute;
  left: 6px;
  top: 6px;
}
@media screen and (max-width: 768px) {
  .top-contact-radio-list__input:checked + .top-contact-radio-list__label::after {
    top: 4px;
  }
}