@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

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

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 1300px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (max-width: 820px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #0D191F;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 820px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

/* ------------------------------------------------
HP
--------------------------------------------------- */
/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 7.8rem;
  background: #fff;
  border-bottom: 1px solid #efefef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 200;
  -webkit-box-shadow: 0 0.2rem 1.2rem rgba(0, 128, 138, 0.08);
          box-shadow: 0 0.2rem 1.2rem rgba(0, 128, 138, 0.08);
}
@media screen and (max-width: 820px) {
  header {
    height: 60px;
  }
}
header .header-inner {
  height: 100%;
}
@media screen and (max-width: 820px) {
  header .header-inner {
    padding-inline: 1rem;
  }
}
header .header-body {
  height: inherit;
  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;
}
header a.logo {
  display: block;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
header a.logo:hover {
  opacity: 0.8;
}
header .logo-name {
  display: block;
  width: 21.9rem;
}
@media screen and (max-width: 820px) {
  header .logo-name {
    width: 193px;
  }
}
header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 820px) {
  header .header-nav.pc-only {
    display: none;
  }
}

.header-menu-link {
  position: relative;
  padding-block: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0D191F;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.header-menu-link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 100%;
  height: 1px;
  background-color: #00608c;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}
@media screen and (max-width: 820px) {
  .header-menu-link::before {
    display: none;
  }
}

.header-menu-link:hover::before {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

/* ------------------------------------------------
hamburger
--------------------------------------------------- */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 820px) {
  .l-hamburger {
    display: block;
    position: fixed;
    z-index: 6000;
    top: 0;
    right: 20px;
    width: 37px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
  }
}

.l-hamburger__inner {
  width: 100%;
  height: 100%;
  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;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2px;
}

.l-hamburger__icon-container {
  position: relative;
  width: 37px;
  height: 17px;
}

.l-hamburger__icon-body {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-hamburger__icon {
  width: 100%;
  height: 1px;
  background-color: #0D191F;
}

.l-hamburger__icon:nth-child(1) {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-hamburger__icon:nth-child(2) {
  margin-top: 15px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-hamburger.is-active .l-hamburger__icon:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(22.07deg);
          transform: translateY(6px) rotate(22.07deg);
}

.l-hamburger.is-active .l-hamburger__icon:nth-child(2) {
  -webkit-transform: translateY(-10px) rotate(-22.07deg);
          transform: translateY(-10px) rotate(-22.07deg);
}

/* ------------------------------------------------
drawer
--------------------------------------------------- */
.l-drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  padding-bottom: 100px;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: none;
  opacity: 0;
  overflow-y: auto;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s;
  transition: opacity 0.6s ease, -webkit-transform 0.6s;
  transition: opacity 0.6s ease, transform 0.6s;
  transition: opacity 0.6s ease, transform 0.6s, -webkit-transform 0.6s;
}

.l-drawer.is-open {
  display: block;
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.l-drawer__inner {
  position: relative;
}

.l-drawer__logo {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-drawer__menu {
  margin-top: 4rem;
}

.l-drawer__nav {
  width: 100%;
}

.l-drawer__lists {
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-drawer__list.mt-70 {
  margin-top: 5rem;
}
.l-drawer__list.mt-40 {
  margin-top: 4rem;
}

.l-drawer__list-contact {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-drawer__link {
  padding: 8px 8px;
  display: block;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-bottom 0.2s;
  transition: border-bottom 0.2s;
  font-size: 16px;
}
.l-drawer__link:hover {
  border-bottom: 1px solid #D9D9D9;
}

.l-drawer__list-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}

.l-drawer__tel-icon {
  width: 2.9rem;
  height: auto;
  aspect-ratio: 1;
}
.l-drawer__tel-icon .icon-svg {
  width: 100%;
  height: 100%;
}
.l-drawer__tel-icon .icon-fill {
  fill: #005F8A;
}

.l-drawer__tel-link {
  width: 22rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 820px) {
  .l-drawer__tel-link:hover {
    opacity: 0.8;
  }
}

/* FOOTER */
.footer {
  background: #F8F8F8;
  color: #0D191F;
  padding-top: 32px;
}

.foot-grid {
  padding-top: 20px;
  margin-bottom: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 56px;
}
@media screen and (max-width: 820px) {
  .foot-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.foot-co {
  padding-bottom: 20px;
  max-width: 400px;
}

.foot-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 46px;
  width: 253px;
}

.foot-co p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.foot-co-address {
  margin-top: 1em;
}

.foot-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .foot-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.foot-nav ul {
  min-width: 159px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  list-style: none;
}
@media screen and (max-width: 820px) {
  .foot-nav ul {
    min-width: initial;
  }
}

.foot-nav a {
  position: relative;
  padding: 4px 4px 4px 0.9em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  color: #0D191F;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .foot-nav a {
    padding: 0.4rem 0.4rem 0.4rem 0.9em;
    font-size: 1.4rem;
  }
}
.foot-nav a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 13px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 6px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
}
.foot-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 100%;
  height: 1px;
  background: #00608c;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.foot-nav a:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.foot-bottom {
  padding-bottom: 20px;
}

.foot-bottom small {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

/* REVEAL */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease, -webkit-transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

main {
  margin-top: 7.8rem;
}
@media screen and (max-width: 820px) {
  main {
    margin-top: 60px;
  }
}

@media screen and (max-width: 820px) {
  .pc-only {
    display: none;
  }
}

.tb-only {
  display: none;
}
@media screen and (max-width: 820px) {
  .tb-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 500px) {
  .sp-only {
    display: block;
  }
}

/* SHARED */
.l-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 30px;
}
@media screen and (max-width: 820px) {
  .l-inner {
    padding-inline: 2rem;
  }
}

.l-second-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 30px;
}
@media screen and (max-width: 820px) {
  .l-second-inner {
    padding-inline: 2rem;
  }
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 44px;
}
@media screen and (max-width: 820px) {
  .wrap {
    padding: 0 22px;
  }
}

.article-wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 44px;
}
@media screen and (max-width: 820px) {
  .article-wrap {
    padding: 0 22px;
  }
}

.small-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 44px;
}
@media screen and (max-width: 820px) {
  .small-wrap {
    padding: 0 22px;
  }
}

.btn {
  display: inline-block;
  padding: 13px 40px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn-fill {
  background: #00608c;
  color: #fff;
  -webkit-box-shadow: 0 4px 18px rgba(0, 128, 138, 0.28);
          box-shadow: 0 4px 18px rgba(0, 128, 138, 0.28);
}

.btn-fill:hover {
  background: #00608c;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-outline {
  z-index: 1;
  position: relative;
  background: transparent;
  border: 2px solid #00608c;
  color: #00608c;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.btn-outline::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.btn-outline.--white {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline.--white::before {
  background: #fff;
}

.btn-outline:hover {
  color: #fff;
}
.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline.--white:hover {
  color: #00608c;
}

.c-button {
  z-index: 1;
  position: relative;
  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;
  padding: 16px 33px 16px 30px;
  max-width: 366px;
  width: 100%;
  border-radius: 9999px;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  -webkit-box-shadow: 3px 3px 6px #D8DBDD;
          box-shadow: 3px 3px 6px #D8DBDD;
}
@media screen and (max-width: 820px) {
  .c-button {
    padding: 1.6rem 3rem 1.6rem 3rem;
    max-width: 350px;
  }
}

.c-button__text {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .c-button__text {
    font-size: 1.8rem;
  }
}

.c-button__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
}

.c-button__line {
  position: relative;
  display: block;
  width: 1px;
  height: 26px;
  background-color: #fff;
}

.c-button__icon {
  position: relative;
  width: 20px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-button__icon::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-button.--short {
  max-width: 298px;
}
@media screen and (max-width: 820px) {
  .c-button.--short {
    max-width: 350px;
  }
}
.c-button.--prev {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  gap: 24px;
}
@media screen and (max-width: 820px) {
  .c-button.--prev {
    gap: 2rem;
  }
}
@media screen and (max-width: 820px) {
  .c-button.--prev.--short {
    max-width: 29.8rem;
  }
}
.c-button.--prev .c-button__text {
  font-size: 16px;
}
@media screen and (max-width: 820px) {
  .c-button.--prev .c-button__text {
    font-size: 1.6rem;
  }
}
.c-button.--prev .c-button__icons {
  gap: 24px;
}
@media screen and (max-width: 820px) {
  .c-button.--prev .c-button__icons {
    gap: 2rem;
  }
}
.c-button.--prev .c-button__icon::after {
  right: initial;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.c-button:hover .c-button__icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.c-button:hover.--prev .c-button__icon {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.c-button--reverse {
  -webkit-box-shadow: 3px 3px 7px rgba(216, 219, 221, 0.25);
          box-shadow: 3px 3px 7px rgba(216, 219, 221, 0.25);
}
.c-button--reverse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 9999px;
}
.c-button--reverse .c-button__text {
  color: #00a09d;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(to right, #00608c, #00a09d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-button--reverse .c-button__line {
  background-color: #00a09d;
}
.c-button--reverse .c-button__icon {
  background-color: #00a09d;
}
.c-button--reverse .c-button__icon::after {
  border-top: 1px solid #00a09d;
  border-right: 1px solid #00a09d;
}

header .c-button {
  padding: 1.6rem 2.8rem 1.6rem 3rem;
  width: 25rem;
}
@media screen and (max-width: 820px) {
  header .c-button {
    padding: 16px 20px 16px 30px;
    width: 268px;
  }
}
header .c-button .c-button__text {
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  header .c-button .c-button__text {
    font-size: 18px;
  }
}
header .c-button .c-button__line {
  height: 2.6rem;
}
@media screen and (max-width: 820px) {
  header .c-button .c-button__line {
    height: 26px;
  }
}
header .c-button .c-button__icon {
  width: 2rem;
  height: 1px;
}
@media screen and (max-width: 820px) {
  header .c-button .c-button__icon {
    width: 20px;
  }
}
header .c-button .c-button__icon::after {
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 820px) {
  header .c-button .c-button__icon::after {
    width: 10px;
    height: 10px;
  }
}

.c-button-secondary {
  z-index: 1;
  position: relative;
  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;
  padding: 28px 41px 28px 40px;
  width: 447px;
  border-radius: 9999px;
  background-color: #00608c;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .c-button-secondary {
    width: 410px;
  }
}
@media screen and (max-width: 820px) {
  .c-button-secondary {
    padding: 2.7rem 3.5rem 2.7rem 1.6rem;
    width: 311px;
  }
}
@media screen and (max-width: 500px) {
  .c-button-secondary {
    width: 100%;
    min-width: 100%;
  }
}
.c-button-secondary .c-button__text {
  position: relative;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .c-button-secondary .c-button__text {
    font-size: 1.6rem;
  }
}
.c-button-secondary .c-button__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
}
@media screen and (max-width: 820px) {
  .c-button-secondary .c-button__icons {
    gap: 2.2rem;
  }
}
.c-button-secondary .c-button__line {
  position: relative;
  display: block;
  width: 1px;
  height: 46px;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  .c-button-secondary .c-button__line {
    height: 2.4rem;
  }
}
.c-button-secondary .c-button__icon {
  position: relative;
  width: 20px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 820px) {
  .c-button-secondary .c-button__icon {
    width: 2rem;
  }
}
.c-button-secondary .c-button__icon::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 820px) {
  .c-button-secondary .c-button__icon::after {
    width: 1rem;
    height: 1rem;
  }
}
.c-button-secondary:hover .c-button__icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.portal-card-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 500px) {
  .portal-card-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.portal-btn {
  z-index: 1;
  position: relative;
  padding: 16px 30px;
  max-width: 330px;
  min-width: 240px;
  width: 100%;
  border-radius: 9999px;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  -webkit-box-shadow: 3px 3px 6px #D8DBDD;
          box-shadow: 3px 3px 6px #D8DBDD;
  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;
  gap: 16px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.portal-btn.--short {
  max-width: 280px;
}
@media screen and (max-width: 500px) {
  .portal-btn {
    padding: 14px 20px;
  }
}
.portal-btn .icon-arrow {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.portal-btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.portal-btn-text {
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

.portal-btn-primary .portal-btn-text {
  color: #fff;
}
.portal-btn-primary .portal-icon-fill {
  fill: #fff;
}
.portal-btn-primary .portal-icon-stroke {
  stroke: #fff;
}

.portal-btn-primary:hover .icon-arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.portal-btn-secondary {
  -webkit-box-shadow: 3px 3px 7px rgba(216, 219, 221, 0.25);
          box-shadow: 3px 3px 7px rgba(216, 219, 221, 0.25);
}
.portal-btn-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 9999px;
}
.portal-btn-secondary .portal-btn-text {
  color: #00a09d;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(to right, #00608c, #00a09d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portal-btn-secondary .portal-icon-fill {
  fill: #00a09d;
}
.portal-btn-secondary .portal-icon-svg:first-child .portal-icon-fill {
  fill: #00608c;
}
.portal-btn-secondary .portal-icon-svg:first-child .portal-icon-stroke {
  stroke: #00608c;
}
.portal-btn-secondary .portal-icon-stroke {
  stroke: #00a09d;
}

.portal-btn svg {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 500px) {
  .portal-btn .icon-arrow {
    display: none;
  }
}

.main-head {
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .main-head {
    padding-bottom: 3rem;
  }
}
.main-head::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 128px;
  height: 1px;
  background-color: #D5D5D5;
}
@media screen and (max-width: 820px) {
  .main-head::before {
    width: 12.8rem;
  }
}

.main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 820px) {
  .main-title {
    gap: 1rem;
  }
}
.main-title .--en {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(to right, #00608c, #00a09d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 820px) {
  .main-title .--en {
    font-size: 2.2rem;
  }
}
.main-title .--jp {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 820px) {
  .main-title .--jp {
    font-size: 1.3rem;
  }
}
.main-title.--large .--en {
  font-size: 50px;
}
@media screen and (max-width: 820px) {
  .main-title.--large .--en {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 820px) {
  .main-title.--large .--jp {
    font-size: 1.6rem;
  }
}
.main-title.--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-head.--center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.main-head.--center .main-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 820px) {
  .cta .main-title.--large .--en {
    font-size: 4rem;
  }
}

.main-sub-title {
  margin-top: 3rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #00608c;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .main-sub-title {
    font-size: 2.6rem;
  }
}

.lower-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: max(3rem, 24px);
  font-weight: 500;
  line-height: 1.4;
  color: #00608c;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(to right, #00608c, #00a09d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 820px) {
  .lower-title {
    font-size: 2.8rem;
  }
}
.lower-title.mb-0 {
  margin-bottom: 0;
}

.lower-second-title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  color: #00608c;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 820px) {
  .lower-second-title-en {
    font-size: 2.8rem;
  }
}

.lower-second-title {
  font-family: "Shippori Mincho", serif;
  font-size: max(2.8rem, 22px);
  font-weight: 500;
  color: #00608c;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  .lower-second-title {
    font-size: 2rem;
  }
}

/* ===================== SEPARATOR ===================== */
.section-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .section-separator {
    margin-bottom: 4rem;
  }
}

.section-lead {
  font-size: 15px;
  line-height: 2.1;
  color: #0D191F;
  margin-bottom: 48px;
}
@media screen and (max-width: 820px) {
  .section-lead {
    margin-bottom: 4rem;
  }
}

.common-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* ===================== ANIMATIONS ===================== */
.animate-fade-in {
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease forwards;
          animation: fadeIn 0.8s ease forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate-fade-up {
  opacity: 0;
  -webkit-animation: fadeUp 0.8s ease forwards;
          animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-2 {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.delay-3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-4 {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}

.delay-5 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

/* REVEAL */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease, -webkit-transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lower-card {
  position: relative;
  padding: 16px 24px 40px;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 500px) {
  .lower-card {
    padding: 16px 24px 24px;
  }
}

.lower-card-num {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  color: #F7FBFC;
  line-height: 1;
  margin-bottom: -25px;
  display: block;
}

.lower-card-title {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 16px;
  line-height: 1.5;
}

.lower-card-divider {
  width: 32px;
  height: 2px;
  background: #D5D5D5;
  margin-bottom: 16px;
}

.lower-card-text {
  font-size: 15px;
  line-height: 1.8;
  color: #0D191F;
}

.column__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.column__link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(194, 194, 194, 0.25);
          box-shadow: 3px 3px 6px 0 rgba(194, 194, 194, 0.25);
  overflow: hidden;
}

.column__img {
  width: 100%;
  height: auto;
  aspect-ratio: 350/196;
  overflow: hidden;
}
.column__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.column__body {
  padding: 20px;
}

.column__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #0D191F;
}

.column__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 13px;
  font-size: 16px;
  font-weight: 400;
  color: #0D191F;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 500px) {
  .column__text {
    -webkit-line-clamp: 3;
  }
}

.column__bottom {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

.column__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column__date {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #3B3E3F;
  line-height: 1.5;
}

.column__category {
  margin-left: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 6px 5px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  border-radius: 4px;
}

.column__bottom-link {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.column__bottom-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #3B3E3F;
}

.column__bottom-icon {
  position: relative;
  width: 20px;
  height: 1px;
  background-color: #00a09d;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 820px) {
  .column__bottom-icon {
    width: 2rem;
  }
}

.column__bottom-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #00a09d;
  border-right: 1px solid #00a09d;
}
@media screen and (max-width: 820px) {
  .column__bottom-icon::after {
    width: 1rem;
    height: 1rem;
  }
}

.column__link:hover .column__bottom-icon {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.article-not-text {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 852px;
  width: 100%;
  font-size: 20px;
  line-height: 1.8;
  color: #0D191F;
}

.news-block__list {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 852px;
  width: 100%;
}

.news-block__item:not(:first-child) {
  border-top: 1px solid #D5D5D5;
}

.news-block__link {
  padding-bottom: 39px;
  padding-right: 4.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  .news-block__link {
    padding-bottom: 3rem;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.news-block__item:not(:first-child) .news-block__link {
  padding-top: 3rem;
}

.news-block__date {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #9B9B9B;
}

.news-block__texts {
  width: 73.3%;
  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;
  gap: 20px;
}
@media screen and (max-width: 820px) {
  .news-block__texts {
    width: 100%;
    gap: 1.6rem;
  }
}

.news-block__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-block__link .c-button__icon {
  background-color: #00a09d;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news-block__link .c-button__icon::after {
  border-top: 1px solid #00a09d;
  border-right: 1px solid #00a09d;
}
.news-block__link:hover .c-button__icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
@media screen and (max-width: 820px) {
  .news-block__link:hover .c-button__icon {
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
}

.c-list-block {
  padding: 30px 24px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 20px;
  gap: 20px 10px;
}
@media screen and (max-width: 820px) {
  .c-list-block {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 375px) {
  .c-list-block {
    padding: 4rem 2rem;
  }
}

.c-list-item {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  white-space: pre-wrap;
}
@media screen and (max-width: 820px) {
  .c-list-item {
    padding-left: 1.8rem;
  }
}

.c-list-item::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  border-radius: 1px;
}
@media screen and (max-width: 820px) {
  .c-list-item::before {
    top: 0.7rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}

/* 10. CTA */
.cta {
  padding-block: 67px 70px;
}

.cta__container {
  padding: 76px 20px 104px;
  background: -webkit-gradient(linear, left top, right top, from(#F1F9FD), to(#EBF8F8));
  background: linear-gradient(90deg, #F1F9FD 0%, #EBF8F8 100%);
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .cta__container {
    padding: 5rem 2rem;
    border-radius: 3rem;
  }
}

.cta__text {
  margin-top: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .cta__text {
    margin-top: 4rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .cta__text {
    text-align: left;
  }
}

.cta__content {
  margin-top: 59px;
  margin-inline: auto;
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .cta__content {
    margin-top: 5rem;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.5rem;
  }
}

.cta__tel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 3.9rem;
  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;
}
@media screen and (max-width: 1024px) {
  .cta__tel {
    padding-left: 0;
  }
}

.cta__tel-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .cta__tel-text {
    font-size: 14px;
  }
}

.cta__tel-body {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 820px) {
  .cta__tel-body {
    margin-top: 2rem;
    gap: 1.6rem;
  }
}

.cta__tel-icon {
  width: 38px;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 820px) {
  .cta__tel-icon {
    width: 3.2rem;
  }
}
.cta__tel-icon .icon-svg {
  width: 100%;
  height: 100%;
}
.cta__tel-icon .icon-fill {
  fill: #005F8A;
}

.cta__tel-link {
  width: 100%;
  max-width: 288px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 820px) {
  .cta__tel-link {
    width: 24.2rem;
    max-width: initial;
  }
  .cta__tel-link:hover {
    opacity: 0.8;
  }
}

.cta__separator {
  margin-inline: 7rem;
  width: 1px;
  height: 86px;
  background-color: #D5D5D5;
}
@media screen and (max-width: 1024px) {
  .cta__separator {
    margin-inline: 3rem;
  }
}
@media screen and (max-width: 820px) {
  .cta__separator {
    margin-inline: 0;
    width: 25rem;
    height: 1px;
  }
}

.cta__button {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 820px) {
  .cta__button {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------------------------
page-header
--------------------------------------------------- */
/* ===================== PAGE HEADER ===================== */
.page-header {
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  position: relative;
  overflow: hidden;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding-block: 48px 52px;
  min-height: 272px;
}
@media screen and (max-width: 820px) {
  .page-header-inner {
    min-height: 240px;
  }
}

/* breadcrumb */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 28px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.breadcrumb span[property=itemListElement] {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.breadcrumb span[property=itemListElement] {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.breadcrumb span[property=itemListElement]:last-child {
  color: #F7FBFC;
  font-weight: 500;
}

.breadcrumb a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-between {
  content: "/";
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
}

/* header titles */
.page-header-en {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6CD7D5;
  text-transform: uppercase;
}

.page-header-en::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: #6CD7D5;
}

.page-header-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  color: white;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.page-header-title em {
  font-style: normal;
  color: #6CD7D5;
}

/* bottom border accent */
.page-header-bar {
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), color-stop(50%, #00a09d), to(transparent));
  background: linear-gradient(to right, #00608c 0%, #00a09d 50%, transparent 100%);
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
#fv {
  z-index: 1;
  position: relative;
  width: 100%;
}

.fv-visual__image-wrap {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 820px) {
  .fv-visual__image-wrap {
    padding-bottom: 3.8rem;
  }
}

.fv-visual__image {
  position: relative;
  width: 100%;
  height: auto;
}

.fv-visual__text-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fv-visual__inner {
  position: relative;
  padding-bottom: 4.3rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 820px) {
  .fv-visual__inner {
    padding-bottom: 0;
  }
}

.fv-visual__content {
  width: 100%;
}

.fv-visual__catch {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  text-shadow: 0.4rem 0.4rem 0.7rem rgba(92, 92, 92, 0.25);
}
@media screen and (max-width: 820px) {
  .fv-visual__catch {
    font-size: 2.8rem;
  }
}

.fv-visual__sub {
  margin-top: 1.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(to right, #00608c, #00a09d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
@media screen and (max-width: 820px) {
  .fv-visual__sub {
    margin-top: 0.6rem;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 820px) {
  .fv-visual__bar {
    margin-top: 1.3rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.fv-visual__bar-line {
  width: 1px;
  height: 6.5rem;
  background-color: #EFEFEF;
}

/* ------------------------------------------------
index-hero
--------------------------------------------------- */
.index-hero {
  padding-block: 8.8rem 0;
}
@media screen and (max-width: 820px) {
  .index-hero {
    padding: 2.2rem 0;
  }
}

.index-hero__text-container {
  text-align: center;
}

.index-hero__lead {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(to right, #00608c, #00a09d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 820px) {
  .index-hero__lead {
    font-size: 1.6rem;
  }
}

.index-hero__text {
  margin-top: 3.1rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #00608c;
}
@media screen and (max-width: 820px) {
  .index-hero__text {
    font-size: 1.8rem;
  }
}

.index-hero__button-container {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .index-hero__button-container {
    margin-top: 3.5rem;
  }
}

/* ------------------------------------------------
philosophy
--------------------------------------------------- */
.philosophy {
  padding-block: 128px 68px;
}
@media screen and (max-width: 820px) {
  .philosophy {
    padding-block: 5rem;
  }
}

.philosophy__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7.2%;
}
@media screen and (max-width: 820px) {
  .philosophy__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6rem;
  }
}

.philosophy__img-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 6.5%;
}
@media screen and (max-width: 820px) {
  .philosophy__img-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.philosophy__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 298px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.philosophy__img img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 297.85/438.35;
}
@media screen and (max-width: 820px) {
  .philosophy__img img {
    border-radius: 1rem;
  }
}

.philosophy__img--left {
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  .philosophy__img--left {
    margin-bottom: 5.6rem;
  }
}

.philosophy__img--right {
  margin-top: 80px;
}
@media screen and (max-width: 820px) {
  .philosophy__img--right {
    margin-top: 5.6rem;
  }
}

.philosophy__content {
  width: 41.2%;
}
@media screen and (max-width: 820px) {
  .philosophy__content {
    margin-left: 0;
    width: 100%;
  }
}

.philosophy__text {
  margin-top: 3rem;
}

.philosophy__text p:not(:first-child) {
  margin-top: 1em;
}

.philosophy__button-container {
  margin-top: 5rem;
}
@media screen and (max-width: 820px) {
  .philosophy__button-container {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------------------------
business
--------------------------------------------------- */
.business {
  padding-block: 90px;
  background-color: #F7FBFC;
}
@media screen and (max-width: 820px) {
  .business {
    padding-block: 5rem;
  }
}

.business__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4.2%;
}
@media screen and (max-width: 820px) {
  .business__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.business__content {
  width: 53.4%;
}
@media screen and (max-width: 820px) {
  .business__content {
    width: 100%;
  }
}

.business__body {
  margin-top: 55px;
}
@media screen and (max-width: 820px) {
  .business__body {
    margin-top: 3rem;
  }
}

.business__texts {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .business__texts {
    margin-top: 3rem;
  }
}

.business__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
@media screen and (max-width: 820px) {
  .business__list {
    margin-top: 0;
  }
}

.business__button-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  .business__button-container {
    margin-top: 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.business__images {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 80px;
}
@media screen and (max-width: 820px) {
  .business__images {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: 82.8vw;
    padding-bottom: 0;
  }
}

.business__image {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .business__image {
    border-radius: 1rem;
  }
}

.business__image--main {
  top: 0;
  right: 18px;
  width: 79.3%;
}
@media screen and (max-width: 820px) {
  .business__image--main {
    width: 100%;
    right: 2.82vw;
    width: 75.1%;
  }
}

.business__image--sub01 {
  top: 235px;
  left: 0;
  width: 41.7%;
}
@media screen and (max-width: 820px) {
  .business__image--sub01 {
    top: 43.1vw;
    left: 4.87vw;
    width: 39.4%;
  }
}

.business__image--sub02 {
  top: 283px;
  right: 0;
  width: 53.7%;
}
@media screen and (max-width: 820px) {
  .business__image--sub02 {
    top: initial;
    bottom: 0;
    width: 50.9%;
  }
}

/* ------------------------------------------------
news-block
--------------------------------------------------- */
.news-block {
  padding-block: 70px 100px;
}
@media screen and (max-width: 820px) {
  .news-block {
    padding-block: 6rem;
  }
}

.news-block__button-container {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .news-block__button-container {
    margin-top: 3rem;
  }
}

/* ------------------------------------------------
column
--------------------------------------------------- */
.column {
  padding-block: 80px;
  background-color: #F8F8F8;
  overflow-x: hidden;
}

.column__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column__list-wrap {
  position: relative;
  margin-top: 60px;
  overflow: visible;
}

.column__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100vw;
}
@media screen and (max-width: 820px) {
  .column__list {
    width: 100%;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
}

.home .column__item {
  width: calc(33.3333333333% - 40px);
  max-width: 350px;
}
@media screen and (max-width: 820px) {
  .home .column__item {
    margin-right: 0;
    max-width: 500px;
    width: 100%;
  }
}

@media screen and (max-width: 820px) {
  .home .column__item:nth-child(n+4) {
    display: none;
  }
}

.column__nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 820px) {
  .column__nav {
    display: none;
  }
}

.column__nav-button {
  z-index: 1;
  position: relative;
  width: 94px;
  height: 36px;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  border-radius: 999px;
  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;
  cursor: pointer;
}
.column__nav-button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 999px;
}

.column__nav-button--next {
  margin-left: 1rem;
}

.column__nav-button .icon-arrow {
  position: relative;
  width: 20px;
  height: 1px;
  background-color: #00a09d;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 820px) {
  .column__nav-button .icon-arrow {
    width: 2rem;
  }
}
.column__nav-button .icon-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #00a09d;
  border-right: 1px solid #00a09d;
}
@media screen and (max-width: 820px) {
  .column__nav-button .icon-arrow::after {
    width: 1rem;
    height: 1rem;
  }
}

.column__nav-button--prev .icon-arrow::after {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.column__nav-button--prev:hover .icon-arrow {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.column__nav-button--next .icon-arrow::after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.column__nav-button--next:hover .icon-arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.column__button-container {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 820px) {
  .column__button-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------------------------
cta
--------------------------------------------------- */
/* ------------------------------------------------
philosophy
--------------------------------------------------- */
/* ===================== SECTION SHARED ===================== */
section {
  position: relative;
}

/* ===================== VISION / MISSION ===================== */
#vision-mission {
  padding: 120px 0;
}
@media screen and (max-width: 820px) {
  #vision-mission {
    padding: 8rem 0;
  }
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 0;
}
.vm-card {
  z-index: 1;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  color: #0D191F;
  background: #F7FBFC;
  border-radius: 30px;
}
@media screen and (max-width: 820px) {
  .vm-card {
    padding: 48px 22px;
    border-radius: 10px;
  }
}

.vm-subtitle {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0D191F;
  margin-bottom: 28px;
  font-weight: 500;
}

.vm-body {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2.4;
  color: #0D191F;
}

.vm-body p:last-child {
  margin-bottom: 0;
}

.vm-values {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.vm-values-title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #00608c;
  margin-bottom: 14px;
}

.vm-values-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

/* ===================== VALUES ===================== */
#values {
  padding: 120px 0;
  background: #F8F8F8;
}
@media screen and (max-width: 820px) {
  #values {
    padding: 8rem 0;
  }
}

.values-header {
  margin-bottom: 72px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== CEO MESSAGE ===================== */
#ceo-message {
  padding: 120px 0 50px;
}
@media screen and (max-width: 820px) {
  #ceo-message {
    padding: 8rem 0 3rem;
  }
}

.ceo-layout {
  grid-template-columns: 360px 1fr;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 820px) {
  .ceo-layout {
    grid-template-columns: 1fr;
  }
}

.ceo-content {
  padding-top: 8px;
}

.ceo-quote {
  position: relative;
  margin-bottom: 48px;
  padding: 32px 40px;
  background: #F7FBFC;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 500px) {
  .ceo-quote {
    padding: 3.2rem 2rem;
  }
}

.ceo-quote::before {
  content: "“";
  font-family: "Shippori Mincho", serif;
  font-size: 96px;
  color: #00608c;
  opacity: 0.2;
  position: absolute;
  top: -16px;
  left: 16px;
  line-height: 1;
}

.message-body {
  font-size: 15px;
  line-height: 2.1;
  color: #0D191F;
}

.message-body p {
  margin-bottom: 24px;
}

/* ------------------------------------------------
service
--------------------------------------------------- */
/* ===================== 1.Service Hero ===================== */
#service-hero {
  padding: 100px 0 0;
}
@media screen and (max-width: 820px) {
  #service-hero {
    padding: 8rem 0 0;
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 920px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 820px) {
  .hero-layout {
    gap: 4rem;
  }
}

.hero-headline {
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: normal;
}

.hero-text-body {
  font-size: 15px;
  line-height: 2.4;
  color: #0D191F;
}

.hero-visual-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ===================== 2. LIMITS ===================== */
#limits {
  padding: 120px 0 0;
}
@media screen and (max-width: 820px) {
  #limits {
    padding: 10rem 0 0;
  }
}

.limits-intro {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .limits-intro {
    margin-bottom: 4rem;
  }
}

.limits-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 820px) {
  .limits-blocks {
    gap: 3rem;
  }
}

.limit-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .limit-block {
    grid-template-columns: 1fr;
  }
}

.limit-block-label {
  background: #F7FBFC;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 24px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 820px) {
  .limit-block-label {
    padding: 28px 18px;
  }
}
@media screen and (max-width: 500px) {
  .limit-block-label {
    padding: 18px 18px;
  }
}

.limit-block-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #F7FBFC;
  z-index: 2;
}
@media screen and (max-width: 920px) {
  .limit-block-label::after {
    display: none;
  }
}

.limit-block-label-ja {
  font-size: 18px;
  font-weight: 400;
  color: #0D191F;
  line-height: 1.6;
}

.limit-block-body {
  padding: 40px 48px;
}
@media screen and (max-width: 820px) {
  .limit-block-body {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  .limit-block-body {
    padding: 3rem 2rem;
  }
}

.limit-block-title {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .limit-block-title {
    font-size: 20px;
  }
}

.limit-checklist {
  list-style: none;
  margin-bottom: 20px;
}

.limit-checklist li {
  font-size: 15px;
  color: #0D191F;
  padding-left: 20px;
  position: relative;
  line-height: 2;
}

.limit-checklist li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #00608c;
}

.limit-result {
  font-size: 15px;
  color: #0D191F;
  line-height: 2;
  padding-top: 16px;
  border-top: 1px solid #D5D5D5;
}

/* bottom CTA of section */
.limits-cta {
  margin-top: 60px;
  padding: 48px 52px;
  background: -webkit-gradient(linear, left top, right top, from(#F1F9FD), to(#EBF8F8));
  background: linear-gradient(90deg, #F1F9FD 0%, #EBF8F8 100%);
  border-radius: 10px;
  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;
}
@media screen and (max-width: 820px) {
  .limits-cta {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  .limits-cta {
    padding: 3rem 2rem;
  }
}

.limits-cta-text {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #00608c;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (max-width: 500px) {
  .limits-cta-text {
    font-size: 22px;
  }
}

.limits-cta-text em {
  font-style: normal;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(to right, #00608c, #00a09d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.limits-cta-sub {
  font-size: 15px;
  color: #0D191F;
  line-height: 2.1;
}

.limits-cta-sub em {
  font-style: normal;
}

/* ===================== 3. APPROACH ===================== */
#approach {
  padding: 120px 0 100px;
}
@media screen and (max-width: 820px) {
  #approach {
    padding: 10rem 0 8rem;
  }
}

.approach-philosophy {
  background: #F7FBFC;
  padding: 52px;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .approach-philosophy {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  .approach-philosophy {
    padding: 3rem 2rem;
  }
}

.approach-philosophy-text {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  color: #00608c;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .approach-philosophy-text {
    font-size: 17px;
  }
}

.approach-philosophy-text em {
  font-style: normal;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(75%, transparent), color-stop(75%, rgba(0, 160, 157, 0.15)), to(rgba(0, 160, 157, 0.15)));
  background: linear-gradient(to bottom, transparent 0%, transparent 75%, rgba(0, 160, 157, 0.15) 75%, rgba(0, 160, 157, 0.15) 100%);
}

.approach-philosophy-body {
  font-size: 15px;
  color: #0D191F;
  line-height: 2.4;
  position: relative;
}

.approach-philosophy-body em {
  font-style: normal;
}

.approach-mechanisms-title {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  .approach-mechanisms-title {
    margin-bottom: 3rem;
  }
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
@media screen and (max-width: 1024px) {
  .approach-cards {
    grid-template-columns: 1fr;
  }
}

.approach-reporting {
  background: #F7FBFC;
  padding: 40px 32px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 920px) {
  .approach-reporting {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 820px) {
  .approach-reporting {
    padding: 4rem 3rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .approach-reporting {
    padding: 3rem 2rem;
  }
}

.approach-reporting-title {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .approach-reporting-title {
    font-size: 20px;
  }
}

.approach-reporting-body {
  font-size: 15px;
  line-height: 2.4;
  color: #0D191F;
}

.reporting-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.reporting-step {
  position: relative;
  padding: 20px 0 20px 30px;
  border-bottom: 1px solid #D5D5D5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 820px) {
  .reporting-step {
    padding: 2rem 0 2rem 3rem;
  }
}
.reporting-step:last-child {
  border-bottom: none;
}

.reporting-step-dot {
  position: absolute;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  color: rgba(0, 96, 140, 0.25);
}
@media screen and (max-width: 500px) {
  .reporting-step-dot {
    line-height: 1.8;
  }
}

.reporting-step-text {
  font-size: 16px;
  color: #0D191F;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 6px;
}
@media screen and (max-width: 500px) {
  .reporting-step-text {
    padding-top: 2px;
  }
}

/* ===================== 4. EFFECTS ===================== */
#effects {
  padding: 100px 0;
  background: #F8F8F8;
}
@media screen and (max-width: 820px) {
  #effects {
    padding: 8rem 0;
  }
}

.effects-intro {
  margin-bottom: 64px;
}
@media screen and (max-width: 820px) {
  .effects-intro {
    margin-bottom: 4rem;
  }
}

.effects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 920px) {
  .effects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 820px) {
  .effects-grid {
    gap: 3rem;
  }
}

.effects-col {
  background: #fff;
  border: 1px solid #D9D9D9;
  overflow: hidden;
  border-radius: 10px;
}

.effects-col-header {
  padding: 28px 40px 28px 10px;
  background: #F7FBFC;
  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;
  gap: 8px;
}
@media screen and (max-width: 500px) {
  .effects-col-header {
    padding: 26px 20px;
  }
}

.effects-col-header-label {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #00608c;
}

.effects-items {
  padding: 8px 0;
}

.effects-item {
  padding: 24px 32px 24px 16px;
  border-bottom: 1px solid #D9D9D9;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 820px) {
  .effects-item {
    padding: 2.4rem 3rem 2.4rem 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .effects-item {
    padding: 2.4rem 2rem 2.4rem 1rem;
  }
}

.effects-item:last-child {
  border-bottom: none;
}

.effects-item-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: rgba(0, 96, 140, 0.15);
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .effects-item-num {
    font-size: 22px;
    line-height: 1.2;
  }
}

.effects-item-title {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 8px;
}

.effects-item-text {
  font-size: 15px;
  line-height: 2;
  color: #0D191F;
}

/* ===================== 5. VALUE ===================== */
#value {
  padding: 100px 0;
}
@media screen and (max-width: 820px) {
  #value {
    padding: 8rem 0;
  }
}

.value-intro {
  margin-bottom: 64px;
}
@media screen and (max-width: 820px) {
  .value-intro {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 500px) {
  #value .lower-title {
    font-size: 2.4rem;
  }
}

.page-service01 .value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 920px) {
  .page-service01 .value-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.page-service01 .value-card {
  padding: 16px 36px 40px;
}
@media screen and (max-width: 920px) {
  .page-service01 .value-card {
    padding: 16px 36px 40px;
  }
}
@media screen and (max-width: 500px) {
  .page-service01 .value-card {
    padding: 16px 24px 24px;
  }
}

/* ===================== 6. WHISTLEBLOWING ===================== */
#whistleblowing {
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #F7FBFC;
}
@media screen and (max-width: 820px) {
  #whistleblowing {
    padding: 8rem 0;
  }
}

.wb-lead {
  font-size: 15px;
  color: #0D191F;
  line-height: 2.1;
  margin-bottom: 64px;
}
@media screen and (max-width: 820px) {
  .wb-lead {
    margin-bottom: 4rem;
  }
}

.wb-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media screen and (max-width: 920px) {
  .wb-blocks {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.wb-block {
  background: #fff;
  border: 1px solid #D9D9D9;
  padding: 40px 32px;
  border-radius: 10px;
}
@media screen and (max-width: 500px) {
  .wb-block {
    padding: 32px 24px;
  }
}

.wb-block-title {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.wb-list {
  list-style: none;
}

.wb-list li {
  font-size: 15px;
  color: #0D191F;
  padding: 2px 0 2px 18px;
  position: relative;
  line-height: 1.8;
}

.wb-list li:last-child {
  border-bottom: none;
}

.wb-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #00608c;
}

.wb-highlight {
  font-size: 14px;
  color: #0D191F;
  line-height: 2;
  margin-top: 16px;
}

.wb-linkpranity {
  background: #fff;
  border-radius: 10px;
  padding: 40px 32px;
  margin-top: 48px;
}
@media screen and (max-width: 820px) {
  .wb-linkpranity {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  .wb-linkpranity {
    padding: 3rem 2rem;
  }
}

.wb-linkpranity-title {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.wb-linkpranity-body {
  font-size: 15px;
  color: #0D191F;
  line-height: 2.1;
}

.wb-role-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
  border: 1px solid #D9D9D9;
  padding: 20px 24px;
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  .wb-role-items {
    padding: 2.4rem 2rem;
  }
}

.wb-role-item {
  padding-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.wb-role-item::before {
  top: 10px;
}
@media screen and (max-width: 820px) {
  .wb-role-item::before {
    top: 1rem;
  }
}

.wb-role-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00608c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.wb-role-item-text {
  font-size: 15px;
  color: #0D191F;
  line-height: 1.7;
}

/* ===================== 7. STEPS ===================== */
#steps {
  padding: 100px 0 50px;
}
@media screen and (max-width: 820px) {
  #steps {
    padding: 8rem 0 3rem;
  }
}

.steps-intro {
  margin-bottom: 64px;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .steps-track {
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
  }
}

.step-item {
  z-index: 1;
  position: relative;
  padding: 24px 16px 32px;
  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;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .step-item {
    padding: 24px 32px 32px;
  }
}
@media screen and (max-width: 500px) {
  .step-item {
    padding: 2.4rem 2rem 3rem;
  }
}

.step-dot {
  position: absolute;
  top: 24px;
  left: 24px;
}

.step-dot-num {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: rgba(0, 96, 140, 0.15);
  line-height: 1;
}

.step-icon-body {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.step-icon {
  width: 82px;
}

.step-item:nth-child(3) .step-icon {
  width: 68px;
}

.step-title {
  min-height: 60px;
  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;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 12px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .step-title {
    min-height: initial;
  }
}

.step-text {
  font-size: 15px;
  line-height: 1.9;
  color: #0D191F;
}

/* ------------------------------------------------
company
--------------------------------------------------- */
/* ===================== 1. COMPANY INFO ===================== */
#company-info {
  padding: 100px 0;
}
@media screen and (max-width: 820px) {
  #company-info {
    padding: 8rem 0;
  }
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 820px) {
  .info-layout {
    grid-template-columns: 1fr;
  }
}

/* table */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 500px) {
  .info-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.info-table tr:first-child {
  border-top: 1px solid #D9D9D9;
}

.info-table th {
  width: 180px;
  padding: 22px 24px 22px 0;
  font-size: 16px;
  font-weight: 500;
  color: #00608c;
  letter-spacing: 0.06em;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 820px) {
  .info-table th {
    width: 140px;
  }
}
@media screen and (max-width: 500px) {
  .info-table th {
    width: 100%;
  }
}

.info-table th::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #00608c;
  margin-left: -1px;
  display: none;
}

.info-table td {
  padding: 22px 0;
  font-size: 16px;
  font-weight: 400;
  color: #0D191F;
  line-height: 1.9;
  vertical-align: top;
}
@media screen and (max-width: 500px) {
  .info-table td {
    padding: 0 0 22px;
  }
}

.info-table td a {
  color: #00608c;
  text-decoration: none;
  border-bottom: 1px solid #00608c;
  -webkit-transition: color 0.2s, border-bottom 0.2s;
  transition: color 0.2s, border-bottom 0.2s;
}

.info-table td a:hover {
  color: #00a09d;
  border-bottom: 1px solid #00a09d;
}

.info-table td ul {
  list-style: none;
}

.info-table td ul li {
  padding: 3px 0 3px 16px;
  position: relative;
}

.info-table td ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #00a09d;
  font-size: 11px;
}

/* ===================== 2. ACCESS ===================== */
#access {
  padding: 100px 0;
  background: #F7FBFC;
}
@media screen and (max-width: 820px) {
  #access {
    padding: 8rem 0;
  }
}

.access-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 820px) {
  .access-layout {
    grid-template-columns: 1fr;
  }
}

.map-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.access-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.access-address-block {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}

.access-address-title {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  color: #0D191F;
  margin-bottom: 14px;
}

.access-address-text {
  font-size: 13px;
  color: #0D191F;
  line-height: 2;
}

/* ===================== 3. PARTNERS ===================== */
#partners {
  padding: 100px 0 50px;
}
@media screen and (max-width: 820px) {
  #partners {
    padding: 8rem 0 3rem;
  }
}

.partners-lead {
  font-size: 15px;
  line-height: 2.1;
  color: #0D191F;
  max-width: 720px;
  margin-bottom: 64px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media screen and (max-width: 920px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 500px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  padding: 30px 20px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.partner-card-iconBody {
  height: 60px;
  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;
  margin-bottom: 20px;
}

.partner-card:nth-child(1) .partner-card-icon {
  width: 62px;
}

.partner-card:nth-child(2) .partner-card-icon {
  width: 40px;
}

.partner-card:nth-child(3) .partner-card-icon {
  width: 52px;
}

.partner-card:nth-child(4) .partner-card-icon {
  width: 48px;
}

.partner-card-title {
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  font-weight: 500;
  color: #00608c;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .partner-card-title .pc-only {
    display: none;
  }
}

.partner-card-text {
  font-size: 15px;
  color: #0D191F;
  line-height: 1.9;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ------------------------------------------------
News
--------------------------------------------------- */
/* ===================== News List ===================== */
#news-list {
  padding: 100px 0 50px;
}
@media screen and (max-width: 820px) {
  #news-list {
    padding: 8rem 0 3rem;
  }
}

/* ===================== news Detail ===================== */
#news-detail {
  padding: 100px 0 50px;
}
@media screen and (max-width: 820px) {
  #news-detail {
    padding: 8rem 0 3rem;
  }
}
#news-detail .news-texts {
  width: 100%;
}
#news-detail .news-texts-head {
  margin-bottom: 16px;
}
#news-detail .news__date {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
#news-detail .news-detail-title {
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  color: #00608c;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  #news-detail .news-detail-title {
    font-size: 24px;
  }
}

.news-detail-body {
  padding-bottom: 50px;
}

.news-detail-content > *:first-child {
  margin-top: 0;
}
.news-detail-content h2 {
  position: relative;
  margin-block: 60px 32px;
  padding: 4px 8px;
  background: #F7FBFC;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #00608c;
  line-height: 1.8;
}
.news-detail-content h3 {
  position: relative;
  margin-block: 32px 24px;
  padding-left: 5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  color: #00608c;
  line-height: 1.8;
}
.news-detail-content h3::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: rgba(0, 96, 140, 0.3);
}
.news-detail-content h4 {
  position: relative;
  margin-block: 32px 24px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  color: #00608c;
  line-height: 1.8;
}
.news-detail-content p,
.news-detail-content ul {
  margin-block: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #0D191F;
}
.news-detail-content li {
  position: relative;
  padding-left: 0.8em;
  font-size: 15px;
  line-height: 1.8;
  color: #0D191F;
}
.news-detail-content li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #00608c;
  font-size: 14px;
}
.news-detail-content a {
  font-size: 15px;
  line-height: 1.8;
  color: #00a09d;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.news-detail-content a:hover {
  opacity: 0.8;
}
.news-detail-content img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-detail-pagination {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-detail-prev,
.news-detail-next {
  padding: 13px 40px;
  border: 2px solid #D5D5D5;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 820px) {
  .news-detail-prev,
  .news-detail-next {
    padding: 13px 24px;
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .news-detail-prev,
  .news-detail-next {
    padding: 13px 16px;
  }
}
.news-detail-prev:hover,
.news-detail-next:hover {
  opacity: 0.8;
}

.news-detail-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
Column
--------------------------------------------------- */
/* ===================== COLUMN List ===================== */
#column-list {
  padding: 100px 0 50px;
}
@media screen and (max-width: 820px) {
  #column-list {
    padding: 8rem 0 3rem;
  }
}

.column-list__tab {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .column-list__tab {
    margin-bottom: 40px;
    gap: 8px;
  }
}

.tab__link {
  z-index: 1;
  position: relative;
  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: 12px 20px;
  min-width: 96px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  -webkit-box-shadow: 3px 3px 7px rgba(216, 219, 221, 0.25);
          box-shadow: 3px 3px 7px rgba(216, 219, 221, 0.25);
  font-size: 14px;
  font-weight: 500;
  color: #00a09d;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 820px) {
  .tab__link {
    min-width: 8.2rem;
    padding: 0.8rem 1.6rem;
  }
}
.tab__link::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 9999px;
}
.tab__link.is-active {
  -webkit-box-shadow: 3px 3px 6px #D8DBDD;
          box-shadow: 3px 3px 6px #D8DBDD;
  color: #fff;
  pointer-events: none;
}
.tab__link.is-active::before {
  display: none;
}
.tab__link:not(.is-active):hover {
  -webkit-box-shadow: 3px 3px 6px #D8DBDD;
          box-shadow: 3px 3px 6px #D8DBDD;
}

.column-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 16px;
}
@media screen and (max-width: 1024px) {
  .column-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 820px) {
  .column-list__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .column-list__list {
    grid-template-columns: 1fr;
  }
}

#column-list .column__bottom-link {
  margin-left: auto;
}

.pagination {
  margin-top: 40px;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers:not(.prev):not(.next) {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #00608c;
  color: #00608c;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  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;
}

.page-numbers:not(.prev):not(.next).current {
  color: #fff;
  background: #00608c;
}

.page-numbers.prev,
.page-numbers.next {
  width: auto;
  font-size: 16px;
  font-weight: 500;
  color: #0D191F;
  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;
}

.page-numbers:not(.current) {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.page-numbers:not(.current):hover {
  opacity: 0.8;
}

.screen-reader-text {
  display: none;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

/* ===================== COLUMN Detail ===================== */
#column-detail {
  padding: 100px 0 50px;
}
@media screen and (max-width: 820px) {
  #column-detail {
    padding: 8rem 0 3rem;
  }
}
#column-detail .column-detail-body {
  margin-bottom: 60px;
}
#column-detail .col-thumbnail-body {
  width: 100%;
}
#column-detail .col-detail-header {
  margin-bottom: 42px;
}
#column-detail .col-detail-head {
  margin-bottom: 16px;
}
#column-detail .col-detail-title {
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  color: #00608c;
  line-height: 1.5;
}
@media screen and (max-width: 820px) {
  #column-detail .col-detail-title {
    font-size: 24px;
  }
}
#column-detail .col-thumbnail {
  aspect-ratio: initial;
  border: 1px solid #F7FBFC;
  margin-bottom: 24px;
}
#column-detail .col-thumbnail img {
  height: auto;
}
#column-detail .col-texts {
  margin-top: 50px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  #column-detail .col-texts {
    margin-top: 4rem;
  }
}

.column-detail-body {
  padding-bottom: 50px;
}

.col-detail-content > *:first-child {
  margin-top: 0;
}
.col-detail-content h2 {
  position: relative;
  margin-block: 60px 32px;
  padding: 4px 8px;
  background: #F7FBFC;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #00608c;
  line-height: 1.8;
}
.col-detail-content h3 {
  position: relative;
  margin-block: 32px 24px;
  padding-left: 5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 22px;
  color: #00608c;
  line-height: 1.8;
}
.col-detail-content h3::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: rgba(0, 96, 140, 0.3);
}
.col-detail-content h4 {
  position: relative;
  margin-block: 32px 24px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  color: #00608c;
  line-height: 1.8;
}
.col-detail-content p,
.col-detail-content ul {
  margin-block: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #0D191F;
}
.col-detail-content li {
  position: relative;
  padding-left: 0.8em;
  font-size: 15px;
  line-height: 1.8;
  color: #0D191F;
}
.col-detail-content li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #00608c;
  font-size: 14px;
}
.col-detail-content a {
  font-size: 15px;
  line-height: 1.8;
  color: #00a09d;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.col-detail-content a:hover {
  opacity: 0.8;
}
.col-detail-content img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.column-detail-pagination {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.column-detail-prev,
.column-detail-next {
  padding: 13px 40px;
  border: 2px solid #D5D5D5;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 820px) {
  .column-detail-prev,
  .column-detail-next {
    padding: 13px 24px;
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .column-detail-prev,
  .column-detail-next {
    padding: 13px 16px;
  }
}
.column-detail-prev:hover,
.column-detail-next:hover {
  opacity: 0.8;
}

.column-detail-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ------------------------------------------------
Contact
--------------------------------------------------- */
/* ------------------------------------------------ contact --------------------------------------------------- */
/* ===================== FORM SECTION ===================== */
#p-contact {
  padding: 100px 0 120px;
}
@media screen and (max-width: 820px) {
  #p-contact {
    padding: 8rem 0;
  }
}

.form-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #0D191F;
  text-align: center;
  margin-bottom: 32px;
}

/* form block */
.form-block {
  padding: 64px 60px;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}
@media screen and (max-width: 920px) {
  .form-block {
    padding: 40px 18px;
  }
}

/* field */
.form-field {
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form-field:last-of-type {
  margin-bottom: 0;
}

.form-label {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #0D191F;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.badge-required {
  margin-left: 10px;
  margin-bottom: 2px;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: white;
  background: #00608c;
  border-radius: 2px;
  padding: 2px 8px;
  line-height: 1.6;
  vertical-align: middle;
}

.badge-optional {
  margin-left: 10px;
  margin-bottom: 2px;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #6a8080;
  background: #F7FBFC;
  border-radius: 2px;
  padding: 2px 8px;
  line-height: 1.6;
  vertical-align: middle;
}

input.form-input,
select.form-select,
textarea.form-textarea {
  width: 100%;
  font-size: 15px;
  color: #0D191F;
  background: #F7FBFC;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 14px 18px;
  -webkit-transition: border-color 0.2s, background 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, background 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  border-radius: 0;
}

textarea.form-textarea,
.form-data {
  overflow-wrap: break-word;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #00608c;
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(42, 138, 138, 0.08);
          box-shadow: 0 0 0 3px rgba(42, 138, 138, 0.08);
}

.form-input::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #aababa;
  font-size: 14px;
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #aababa;
  font-size: 14px;
}

.form-input:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #aababa;
  font-size: 14px;
}

.form-input::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #aababa;
  font-size: 14px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #aababa;
  font-size: 14px;
}

/* select arrow */
.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #00608c;
  pointer-events: none;
}

.form-select {
  padding-right: 44px;
  cursor: pointer;
}

/* radio */
.form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: #0D191F;
}

.form-radio label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-radio .wpcf7-list-item-label {
  z-index: 1;
  position: relative;
  padding-left: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-radio .wpcf7-list-item-label::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 17px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #6a8080;
}

.form-radio .wpcf7-list-item-label::after {
  z-index: 1;
  position: absolute;
  content: "";
  top: 7px;
  left: 7px;
  width: 9px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #00608c;
  opacity: 0;
}

/* checkbox */
.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: #0D191F;
}

.form-checkbox label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-checkbox .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 2px;
  width: 18px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #0D191F;
}

.form-checkbox .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  width: 12px;
  height: auto;
  aspect-ratio: 23/15;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #0D191F;
  border-left: 2px solid #0D191F;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* textarea */
.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.9;
}

.form-hint {
  font-size: 12px;
  color: #6a8080;
  margin-top: 8px;
  line-height: 1.7;
}

/* divider */
.form-divider {
  border: none;
  border-top: 1px solid #D9D9D9;
  margin: 44px 0;
}

/* ===================== PRIVACY ===================== */
.privacy-block {
  background: #F7FBFC;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 28px;
}
@media screen and (max-width: 820px) {
  .privacy-block {
    padding: 20px 16px;
  }
}

.privacy-text {
  margin-bottom: 24px;
  font-size: 15px;
  color: #0D191F;
  line-height: 2;
  letter-spacing: 0.01em;
}

.privacy-text a {
  color: #00608c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-text a:hover {
  color: #00608c;
}

.privacy-agree label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  color: #0D191F;
  font-weight: 500;
}

.privacy-agree .wpcf7-list-item-label {
  position: relative;
  padding-left: 38px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .privacy-agree .wpcf7-list-item-label {
    padding-left: 32px;
  }
}

.privacy-agree .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 28px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #0D191F;
}
@media screen and (max-width: 820px) {
  .privacy-agree .wpcf7-list-item-label::before {
    top: 1px;
    width: 24px;
  }
}

.privacy-agree .wpcf7-list-item-label::after {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 16px;
  height: auto;
  aspect-ratio: 23/15;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #0D191F;
  border-left: 2px solid #0D191F;
}
@media screen and (max-width: 820px) {
  .privacy-agree .wpcf7-list-item-label::after {
    left: 9px;
    width: 14px;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 4px;
  color: #f22323;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.43;
}
@media screen and (max-width: 820px) {
  .wpcf7-not-valid-tip {
    font-size: 12px;
  }
}

.wpcf7-response-output {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .wpcf7-response-output {
    font-size: 12px;
  }
}

.wpcf7-spinner {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* ===================== SUBMIT BUTTONS ===================== */
.form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
@media screen and (max-width: 820px) {
  .form-actions {
    -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;
  }
}

.btn-confirm-back {
  max-width: 300px;
  width: 100%;
  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;
  gap: 10px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 999px;
  color: #00608c;
  padding: 20px 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.btn-confirm-back:hover {
  opacity: 0.8;
}

.btn-submit-confirm,
.btn-submit {
  z-index: 1;
  position: relative;
  max-width: 300px;
  width: 100%;
  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;
  gap: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#00608c), to(#00a09d));
  background: linear-gradient(90deg, #00608c 0%, #00a09d 100%);
  border-radius: 999px;
  color: white;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.btn-submit-confirm:hover,
.btn-submit:hover {
  opacity: 0.8;
}

.form-data .js-error {
  color: #DC0000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 4px;
}

/* ------------------------------------------------
Confirm
--------------------------------------------------- */
.confirm,
.wpcf7-response-output,
.confirm .wpcf7-spinner {
  display: none;
}

.confirm .form-data {
  width: 100%;
  font-size: 15px;
  color: #0D191F;
  line-height: 1.8;
}

/* ------------------------------------------------
thanks
--------------------------------------------------- */
/* ===================== MAIN ===================== */
.thanks {
  padding: 100px 0 120px;
}
@media screen and (max-width: 820px) {
  .thanks {
    padding: 8rem 0 10rem;
  }
}

.thanks-title {
  margin-bottom: 32px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 500;
  color: #00608c;
  line-height: 1.6;
  position: relative;
  text-align: center;
}

/* complete card */
.thanks-card {
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

/* body area */
.thanks-body {
  padding: 48px 60px 52px;
}
@media screen and (max-width: 820px) {
  .thanks-body {
    padding: 36px 18px 40px;
  }
}

.thanks-body-text {
  font-size: 15px;
  color: #0D191F;
  line-height: 2.1;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 820px) {
  .thanks-body-text .pc-only {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .thanks-body-text .pc-only {
    display: none;
  }
}

.thanks-body-text:last-of-type {
  margin-bottom: 0;
}

.thanks-contact-link {
  padding: 0 0.25em;
  color: #00608c;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.thanks-contact-link:hover {
  opacity: 0.8;
}

/* button */
.thanks-btn-wrap {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .thanks-btn-wrap {
    margin-top: 5rem;
  }
}

/* ------------------------------------------------
Privacy Policy
--------------------------------------------------- */
/* ===================== CONTENT ===================== */
#policy-content {
  padding: 80px 0 120px;
  background: #fff;
}
@media screen and (max-width: 820px) {
  #policy-content {
    padding: 8rem 0;
  }
}

/* ---- BODY ---- */
.policy-body {
  min-width: 0;
}

/* company info block */
.company-info-block {
  background: #F7FBFC;
  border: 1px solid #D9D9D9;
  padding: 28px 32px;
  margin-bottom: 56px;
}
@media screen and (max-width: 820px) {
  .company-info-block {
    padding: 24px 18px;
  }
}

.company-info-block table {
  border-collapse: collapse;
  width: 100%;
}

.company-info-block td {
  padding: 8px 0;
  font-size: 15px;
  color: #0D191F;
  line-height: 1.8;
  vertical-align: top;
}

.company-info-block td:first-child {
  width: 80px;
  font-weight: 500;
  color: #00608c;
  white-space: nowrap;
}
@media screen and (max-width: 820px) {
  .company-info-block td:first-child {
    width: 70px;
  }
}

/* article */
.policy-article {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

.policy-article:last-child {
  margin-bottom: 0;
}

.article-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #D9D9D9;
}

.article-num {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #00608c;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.article-title {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #00608c;
  line-height: 1.5;
}

.article-body {
  font-size: 15px;
  line-height: 2.1;
  color: #0D191F;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.policy-article strong {
  font-weight: 500;
}

.article-body ol {
  list-style: none;
  padding-left: 0;
  counter-reset: item;
  margin-bottom: 16px;
}

.article-body ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.9;
  font-size: 15px;
}
@media screen and (max-width: 820px) {
  .article-body ol li {
    padding-left: 20px;
  }
}

.article-body ol li::before {
  content: counter(item, decimal) "　";
  counter-increment: item;
  position: absolute;
  top: 3px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  color: #00608c;
  font-weight: 500;
  font-size: 13px;
}

.article-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.article-body ul li {
  padding-left: 16px;
  margin-bottom: 8px;
  line-height: 1.9;
  position: relative;
}

.article-body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #00608c;
}

.article-body .indent {
  margin-left: 20px;
}
@media screen and (max-width: 820px) {
  .article-body .indent {
    margin-left: 8px;
  }
}

/* contact block in article */
.article-contact {
  background: #F7FBFC;
  border: 1px solid #D9D9D9;
  padding: 24px 28px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
  color: #0D191F;
}

.article-contact strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #00608c;
  margin-bottom: 8px;
}

.article-contact a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.article-contact a:hover {
  color: #00a09d;
}

/* enactment note */
.enactment-note {
  margin-top: 72px;
  font-size: 15px;
  color: #3B3E3F;
  text-align: right;
  letter-spacing: 0.06em;
}

/* ------------------------------------------------
404 error
--------------------------------------------------- */
/* ===================== MAIN ===================== */
.error {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .error {
    padding: 8rem 0 10rem;
  }
}

.error-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 500;
  color: #0D191F;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}

.error-text {
  font-size: 15px;
  color: #0D191F;
  line-height: 2;
  margin-bottom: 48px;
  text-align: center;
}

/* divider */
.error-divider {
  margin: 0 auto 48px;
}

/* links */
.error-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}/*# sourceMappingURL=style.css.map */