@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/*
    A (more) Modern CSS Reset
    https://piccalil.li/blog/a-more-modern-css-reset/
    @since 25/02/05
    @update t-ooishi
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  line-height: 1.5;
  min-height: 100dvh;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

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

a {
  word-break: break-all;
  text-decoration: none;
}

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

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 2.5ex;
}

.g-font-large {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .g-font-large {
    font-size: 24px;
  }
}

.g-font-middle {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .g-font-middle {
    font-size: 18px;
  }
}

.g-font-small {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .g-font-small {
    font-size: 14px;
  }
}

.-white {
  color: #fff;
}

.l-section-subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
.l-section-subtitle > h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  position: relative;
}
.l-section-subtitle > h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 35px;
  height: 7px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #1c87ce;
}

:root {
  --breadcrumb-color: #222222;
  --header-height: 88px; /* ヘッダー - 高さ */
  --header-top: 2.4rem; /* ヘッダー - 上余白 */
  --inline-guideline: clamp(80px, 10vw, 160px); /* コンテンツガイド */
  --contents-spacer: 120px; /* コンテンツ間隔 */
}
@media screen and (width <= 959px) {
  :root {
    --header-height: 60px; /* ヘッダー - 高さ */
  }
}
@media screen and (width <= 767px) {
  :root {
    --header-top: 0px; /* ヘッダー - 上余白 */
    --inline-guideline: clamp(10px, 4vw, 80px); /* コンテンツガイド */
    --contents-spacer: 104px; /* コンテンツ間隔 */
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #222222;
  min-height: 100vh;
  background-color: #ffffff;
}
@media screen and (width <= 767px) {
  body {
    font-size: 1.4rem;
  }
}

img,
svg {
  vertical-align: bottom;
}

* {
  font-family: "Noto Sans JP";
  color: #101828;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}

.sp-none {
  display: block;
}
@media screen and (width <= 767px) {
  .sp-none {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (width <= 767px) {
  .sp-only {
    display: unset;
  }
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: 90px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #fff;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.js-scroll-fade-up-trr {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header {
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height, 0);
  padding: 11.5px 40px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (width <= 959px) {
  .l-header {
    padding: 7.5px 30px 7.5px 7px;
  }
}
.l-header__inner {
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.l-header__main {
  grid-column: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo {
  display: inline flex;
  -webkit-box-align: self-start;
  -webkit-align-items: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  -webkit-column-gap: clamp(1rem, 0.625vw, 2rem);
     -moz-column-gap: clamp(1rem, 0.625vw, 2rem);
          column-gap: clamp(1rem, 0.625vw, 2rem);
}
@media screen and (width <= 767px) {
  .l-header__logo {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__logo-text {
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (width <= 767px) {
  .l-header__logo-text {
    font-size: 12px;
  }
}
.l-header__logo-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  width: 205px;
}
@media screen and (width <= 767px) {
  .l-header__logo-link {
    width: 128px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.l-header__logo-link > img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__logo-tag {
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #222222;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (width <= 767px) {
  .l-header__logo-tag {
    font-size: 1.2rem;
  }
}
.l-header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (width <= 959px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.l-header__nav-item:hover {
  opacity: 0.7;
}
.l-header__contact {
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#104E64), to(#ABAF85));
  background: -webkit-linear-gradient(left, #104E64 0%, #ABAF85 100%);
  background: linear-gradient(90deg, #104E64 0%, #ABAF85 100%);
  width: 208px;
  height: 51px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
}
.l-header_toggleDrawer {
  display: none;
}
@media screen and (width <= 959px) {
  .l-header_toggleDrawer {
    z-index: 1001;
    display: none;
    position: relative;
    height: 100%;
    aspect-ratio: 1;
    cursor: pointer;
    background: #1c87ce;
    border-radius: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn {
    all: unset;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 0;
    width: 42px;
    height: 2.5px;
    margin: auto;
    background-color: #fff;
    border-radius: 50px;
    -webkit-transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, -webkit-transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, -webkit-transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
    cursor: pointer;
  }
}
@media screen and (width <= 959px) and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span {
    width: 28px;
    height: 2px;
  }
}
@media screen and (width <= 959px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:first-child {
    top: -22.5px;
  }
}
@media screen and (width <= 959px) and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:first-child {
    top: -15px;
  }
}
@media screen and (width <= 959px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:last-child {
    top: 22.5px;
  }
}
@media screen and (width <= 959px) and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:last-child {
    top: 15px;
  }
}
@media screen and (width <= 959px) {
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:first-child {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:last-child {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.l-spmenu {
  display: none;
  position: fixed;
  right: 0;
  top: var(--header-height);
  width: 100%;
  height: calc(100vh - var(--header-height));
}
.l-spmenu.open {
  display: block;
  z-index: 1000;
}
.l-spmenu-nav {
  padding: 24px 5% 120px;
  height: calc(100vh - var(--header-height));
  background: #fff;
  overflow-y: scroll;
}
.l-spmenu .l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  font-size: 18px;
  padding: 0;
  width: 100%;
}
.l-spmenu .l-header__tell {
  display: block;
  margin-top: 40px;
}
.l-spmenu .l-header__tell-link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
}
.l-spmenu .l-header__tell-link img {
  width: 33px;
}
.l-spmenu .l-header__tell-text {
  font-size: 14px;
}

.l-footer {
  background: #19343E;
  padding: 60px 0 25px;
  margin-top: 90px;
}
@media screen and (width <= 767px) {
  .l-footer {
    padding-top: 50px;
    margin-top: 50px;
  }
}
.l-footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 50px;
  gap: 90px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (width <= 959px) {
  .l-footer__inner {
    padding: 0 40px;
  }
}
@media screen and (width <= 959px) {
  .l-footer__inner {
    gap: 45px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__inner {
    padding: 0 4%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.l-footer__title {
  color: #D1D5DC;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.l-footer__text {
  color: #D1D5DC;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-top: 50px;
}
@media screen and (width <= 767px) {
  .l-footer__text {
    margin-top: 20px;
  }
}
.l-footer__text img {
  width: 250px;
}
.l-footer__sns-icon > img {
  width: 100%;
}
.l-footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .l-footer__nav {
    gap: 30px 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
.l-footer__nav-head {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  padding: 0;
  border: none;
  width: auto;
  display: block;
}
.l-footer__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.l-footer nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.l-footer nav > a {
  font-size: 12px;
}
@media screen and (width <= 330px) {
  .l-footer nav > a {
    font-size: 11px;
  }
}
.l-footer__copyright {
  color: #97ACB3;
  text-align: center;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin-top: 55px;
}

.l-glb-menu {
  position: fixed;
  z-index: 9990;
  top: 0px;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  height: 100dvh;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  translate: 100% 0;
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
}
.l-glb-menu.is-active {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}
.l-glb-menu__wrapper {
  overflow: clip;
  width: min(800px, 100%);
  min-height: 100%;
  padding-block: calc(var(--header-height, 0) + var(--header-after, 0)) 56px;
  -ms-overflow-style: none;
}
.l-glb-menu__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (width <= 767px) {
  .l-glb-menu__wrapper {
    padding-inline: var(--inline-outer-size, 0);
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
}
.l-main {
  position: relative;
  width: 100%;
  padding-bottom: var(--footer-before, 0);
}

.l-section__main {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.sp-only {
  display: none;
}
@media screen and (width <= 767px) {
  .sp-only {
    display: unset;
  }
}

.l-page-head {
  display: none;
  background-color: #0068b7;
  position: relative;
  overflow: clip;
  padding-inline: var(--inline-outer-size, 0);
}
.l-page__heading {
  position: relative;
}
.l-page__heading:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media screen and (width <= 767px) {
  .l-page__heading {
    aspect-ratio: 6/2;
  }
}
.l-page__heading-textarea {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  text-align: center;
}
.l-page__heading-head {
  color: #1c87ce;
  font-size: 18px;
}
.l-page__heading-title {
  font-size: 38px;
  font-weight: bold;
}
@media screen and (width <= 767px) {
  .l-page__heading-title {
    font-size: 25px;
  }
}
.l-page__heading-img {
  aspect-ratio: 7/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (width <= 767px) {
  .l-page__heading-img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.l-section {
  width: 100%;
  padding-inline: var(--inline-outer-size, 0);
}
.l-section__inner {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (width <= 959px) {
  .l-section__inner {
    padding: 0 40px;
  }
}
@media screen and (width <= 767px) {
  .l-section__inner {
    padding: 0 4%;
  }
}
.l-single {
  width: 90%;
  margin: 70px auto 0;
}
@media screen and (width <= 767px) {
  .l-single {
    margin-top: 35px;
  }
}
.l-single__head {
  max-width: 960px;
  margin: 0 auto 50px;
}
.l-single__title {
  padding: 0 0 16px;
  position: relative;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 20px;
  border-bottom: 3px solid #1c87ce;
}
@media screen and (width <= 959px) {
  .l-single__title {
    font-size: 22px;
    padding-bottom: 12px;
  }
}
.l-single__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-single__category {
  font-size: 14px;
  font-weight: 500;
  background: #1c87ce;
  color: #F8F4EF;
  border-radius: 5px;
  padding: 1px 20px;
}
.l-single__date {
  font-weight: 500;
}
.l-single__thumbnail {
  max-width: 750px;
  margin: 70px auto 60px;
}
@media screen and (width <= 959px) {
  .l-single__thumbnail {
    margin: 35px 0 30px;
  }
}
.l-single__thumbnail img {
  width: 100%;
  height: auto;
}
.l-single__content {
  max-width: 960px;
  margin: 0 auto;
}
.l-single__content p {
  margin-bottom: 15px;
}
.l-single__content img {
  display: block;
  max-width: 750px;
}
@media screen and (width <= 959px) {
  .l-single__content img {
    max-width: 100%;
  }
}
.l-single__content h2 {
  margin-top: 40px;
  padding: 0 0 15px;
  position: relative;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 20px;
  border-bottom: 1px solid #1c87ce;
}
@media screen and (width <= 959px) {
  .l-single__content h2 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
.l-single__content h3 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 16px;
  margin-bottom: 20px;
  margin-top: 30px;
  line-height: 1.5;
}
@media screen and (width <= 959px) {
  .l-single__content h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
.l-single__content h3:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #1c87ce;
  border-radius: 50px;
  top: 12px;
  left: 0;
}
.l-single__content p {
  font-weight: 500;
}
.l-single__content .c-btn-main {
  margin: 50px auto 0;
}
.l-single__content strong {
  font-weight: bold;
}
.l-single__content p a {
  color: #2271b1;
  text-decoration: underline;
}
.l-single__new {
  margin-top: 150px;
  margin-bottom: 80px;
}
.l-single .c-btn__detail {
  margin: 60px auto;
}
@media screen and (width <= 959px) {
  .l-single .c-btn__detail {
    margin: 30px auto;
    bottom: 0;
  }
}

.l-archive {
  margin-top: 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (width <= 767px) {
  .l-archive {
    margin-top: 30px;
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-archive__head .g-font-middle {
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.75em;
}
@media screen and (width <= 767px) {
  .l-archive__head .g-font-middle {
    text-align: left;
  }
}
.l-archive__head .g-font-small {
  max-width: 984px;
  width: 100%;
  margin: 0 auto;
}
.l-archive__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 230px;
}
@media screen and (width <= 959px) {
  .l-archive__category {
    width: 200px;
  }
}
@media screen and (width <= 767px) {
  .l-archive__category {
    margin-top: 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
    width: 100%;
    max-width: 450px;
  }
}
.l-archive__category .c-card__article-category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  border: 1px solid #1c87ce;
  color: #1c87ce;
  background: #fff;
}
@media screen and (width <= 959px) {
  .l-archive__category .c-card__article-category {
    font-size: 16px;
  }
}
.l-archive__category a:hover {
  background: #1c87ce;
  color: #fff;
}
.l-archive__category a.active {
  background: #1c87ce;
  color: #fff;
}
.l-archive__main {
  width: 100%;
}
.l-archive__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 50px 30px;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (width <= 767px) {
  .l-archive__list {
    gap: 30px;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 16px;
}
.c-pagination__page {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  border: 1px solid #1c87ce;
  color: #1c87ce;
}
.c-pagination__page--now {
  background: #1c87ce;
  color: #fff;
}

.l-archive__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 10px;
  width: 230px;
  margin-top: 20px;
  max-height: 300px;
}
@media screen and (width <= 959px) {
  .l-archive__tag {
    width: 200px;
  }
}
@media screen and (width <= 767px) {
  .l-archive__tag {
    width: 100%;
    max-width: 450px;
    max-height: 200px;
  }
}
.l-archive__tag .active {
  color: #1c87ce;
}
.l-archive__tag a {
  font-size: 14px;
}

.l-single__head .c-card__tag:hover {
  color: #1c87ce !important;
}

.l-single__category:hover {
  opacity: 0.7;
}

.l-form {
  margin-top: 90px;
}
.l-form__step {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}
.l-form__explanation {
  max-width: 450px;
  margin: 35px auto 0;
  width: 100%;
  font-weight: 500;
}
.l-form__body {
  max-width: 725px;
  margin: 70px auto 0;
}
.l-form-input__field {
  margin-top: 42px;
}
.l-form-input__field:first-child {
  margin-top: 0;
}
.l-form-input__field.-sub {
  margin-top: 20px;
  border-top: 1px solid rgba(49, 33, 2, 0.25);
}
.l-form-input__field.-sub .c-form-label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}
.l-form-input__field.-sub .l-form-input__field-lbl {
  margin-bottom: 10px;
}
.l-form-input__field-lbl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9.6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 25px;
}

.c-form-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  counter-reset: cnt 0;
}
@media screen and (width <= 767px) {
  .c-form-step {
    gap: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-form-step__item {
  padding-top: 105px;
  position: relative;
  width: 100px;
  text-align: center;
  color: rgba(49, 33, 2, 0.3);
  counter-increment: cnt;
}
@media screen and (width <= 767px) {
  .c-form-step__item {
    padding-top: 65px;
    width: 60px;
  }
}
.c-form-step__item::before {
  position: absolute;
  top: 0;
  font-size: 33px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: rgba(211, 160, 94, 0.3);
  aspect-ratio: 1;
  width: 100px;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  content: counter(cnt, decimal-leading);
  border-radius: 50%;
  background-color: #F8F4EF;
  grid-area: number;
}
@media screen and (width <= 767px) {
  .c-form-step__item::before {
    font-size: 23px;
    width: 60px;
  }
}
.c-form-step__item::after {
  width: 40px;
  height: 0;
  position: absolute;
  content: "";
  border-top: 1px solid #D3A05E;
  right: -40px;
  top: 50px;
}
@media screen and (width <= 767px) {
  .c-form-step__item::after {
    width: 30px;
    right: -30px;
    top: 30px;
  }
}
.c-form-step__item.active {
  color: #312102;
}
.c-form-step__item.active::before {
  color: #F8F4EF;
  background-color: #D3A05E;
}
.c-form-step__item:last-child::after {
  display: none;
}

.c-form-tag {
  font-size: 16px;
  font-weight: 500;
  padding: 3px 15px;
  background: rgba(49, 33, 2, 0.25);
  color: #F8F4EF;
  border-radius: 5px;
}
.c-form-tag.-req {
  background: #D3A05E;
  color: #F8F4EF;
}
.c-form-label {
  font-size: 18px;
  font-weight: 500;
}
.c-form-field-accept, .c-form-field-checkbox, .c-form-field-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 8px 72px;
}
.c-form-field-accept__item, .c-form-field-checkbox__item, .c-form-field-radio__item {
  display: grid;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(2, auto);
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.c-form-field-accept__item-input, .c-form-field-checkbox__item-input, .c-form-field-radio__item-input {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #D3A05E;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.c-form-field-accept__item-input:hover, .c-form-field-checkbox__item-input:hover, .c-form-field-radio__item-input:hover {
  border-color: #D3A05E;
  outline: 1px solid #D3A05E;
}
.c-form-field-accept__item-input::before, .c-form-field-checkbox__item-input::before, .c-form-field-radio__item-input::before {
  aspect-ratio: 1.3;
  position: absolute;
  inset: 50%;
  display: block;
  width: 60%;
  content: none;
  translate: -10% -45%;
  rotate: -45deg;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  border-bottom: 3.5px solid #D3A05E;
  border-left: 3.5px solid #D3A05E;
}
.c-form-field-accept__item-input:checked::before, .c-form-field-checkbox__item-input:checked::before, .c-form-field-radio__item-input:checked::before {
  content: "";
}
.c-form-field-accept__item-label, .c-form-field-checkbox__item-label, .c-form-field-radio__item-label {
  font-weight: 500;
  line-height: 1.75em;
  cursor: pointer;
}
.c-form-field-accept, .c-form-field-file, .c-form-field-checkbox, .c-form-field-radio, .c-form-field-select2, .c-form-field-select, .c-form-field-textarea, .c-form-field-text {
  font-weight: 500;
  line-height: 1.75em;
  color: #222222;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
.c-form-field-file__wrp, .c-form-field-select2__input, .c-form-field-select__input, .c-form-field-textarea__input, .c-form-field-text__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  -webkit-font-smoothing: antialiased;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  padding: 0.5em 1.25em;
  border: none;
  border: 1px solid #F8F4EF;
  outline-offset: 0;
  background-color: #ffffff;
  border-radius: 10px;
}
.c-form-field-file__wrp:hover, .c-form-field-select2__input:hover, .c-form-field-select__input:hover, .c-form-field-textarea__input:hover, .c-form-field-text__input:hover {
  border-color: #D3A05E;
  outline: 1px solid #D3A05E;
}
.c-form-field-radio__item-input {
  border-radius: 50px;
}
.c-form-field-radio__item-input::before {
  position: absolute;
  width: 60%;
  height: 60%;
  background: #D3A05E;
  border-radius: 50px;
  content: none;
  translate: -50% -50%;
  rotate: none;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  border-bottom: none;
  border-left: none;
}
.c-form-field-radio__item-input:checked::before {
  content: "";
}
.c-form-field-file__input {
  display: none;
}
.c-form-field-file-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  background: #F8F4EF;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  padding: 0.5em calc(25px + 1.25em) 0.5em 0.5em;
  position: relative;
}
.c-form-field-file-wrapper-btn {
  height: 40px;
  padding: 0px 23px;
  border-radius: 5px;
  background: #D3A05E;
  color: #F8F4EF;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.c-form-field-file-wrapper-btn:before {
  position: relative;
  content: url("../images/icon/file.svg");
  top: 5px;
}
.c-form-field-file-wrapper-text {
  font-size: 16px;
  font-weight: 500;
}
.c-form-field-file-wrapper-remove {
  display: none;
  position: absolute;
  content: url("../images/icon/batu.svg");
  cursor: pointer;
  right: 1.25em;
}

.c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 4px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.c-breadcrumb__item {
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75em;
  color: var(--breadcrumb-color, #0068b7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-breadcrumb__item > a {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}
.c-breadcrumb__item::after {
  display: inline-block;
  content: "-";
}
.c-breadcrumb__item:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -webkit-box-orient: vertical;
  text-decoration: none;
  -webkit-line-clamp: 1;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}

.c-btn__detail {
  position: relative;
  height: 56px;
  width: 250px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background: #1c87ce;
}
@media screen and (width <= 767px) {
  .c-btn__detail {
    height: 50px;
    bottom: -25px;
  }
}
.c-btn__detail span {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 15px;
}
.c-btn__detail span:before {
  position: absolute;
  content: "";
  width: 13px;
  height: 9px;
  -webkit-mask-image: url(../images/common/arrow_anker.svg);
          mask-image: url(../images/common/arrow_anker.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #1c87ce;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 55%;
  left: 52%;
}
.c-btn__detail.bg__pink span:before {
  background-color: #F17CB4;
}
.c-btn__detail.-large {
  height: 70px;
  width: 300px;
}
@media screen and (width <= 767px) {
  .c-btn__detail.-large {
    height: 56px;
    width: 250px;
    bottom: 0;
  }
}
.c-btn__detail.-large span:before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  left: 56%;
  top: 50%;
}
@media screen and (width <= 767px) {
  .c-btn__detail.-right {
    bottom: 0;
  }
}
.c-btn__detail.-right span:before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  left: 56%;
}
.c-btn__detail.bg__orange span:before {
  background-color: #FFAA36;
}
.c-btn__detail.-back span {
  right: unset;
  left: 15px;
}
.c-btn__detail.-back span:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  left: 47%;
}
.c-btn__detail.-long {
  width: auto;
  padding: 10px 60px 10px 15px;
  margin-top: 30px;
  height: auto;
  min-height: 56px;
}
.c-btn__detail.-ex {
  max-width: 385px;
  width: 100%;
  height: 88px;
}
.c-btn__detail.-ex span {
  background: none;
  right: 30px;
}
.c-btn__detail.-ex span:before {
  -webkit-mask-image: url(../images/common/ex.svg);
          mask-image: url(../images/common/ex.svg);
  background-color: #fff;
  width: 29px;
  height: 26px;
}
.c-btn__detail.-ex.-normal span {
  background: #fff;
}
.c-btn__detail.-ex.-normal span:before {
  -webkit-mask-image: url(../images/common/arrow_anker.svg);
          mask-image: url(../images/common/arrow_anker.svg);
  background-color: #82B83E;
  width: 13px;
  height: 9px;
  -webkit-transform: translate(-40%, -60%) rotate(-90deg);
          transform: translate(-40%, -60%) rotate(-90deg);
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-pagination__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: clamp(14px, 1rem, 16px);
     -moz-column-gap: clamp(14px, 1rem, 16px);
          column-gap: clamp(14px, 1rem, 16px);
}
.c-pagination__card {
  font-size: clamp(12px, 3.7333333333vw, 16px);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1em;
  color: #0068b7;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(30px, 10.6666666667vw, 40px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border: 1px solid #0068b7;
  background-color: #ffffff;
}
.c-pagination__card:focus-visible {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #ffffff;
  background-color: rgb(0, 132.9836065574, 234);
}
@media (any-hover: hover) {
  .c-pagination__card:hover {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #ffffff;
    background-color: rgb(0, 132.9836065574, 234);
  }
}
.c-pagination__card.is-active {
  pointer-events: none;
  color: #ffffff;
  border-color: #0068b7;
  background-color: #0068b7;
}
.c-pagination__dot {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75em;
  color: #0068b7;
}
.c-pagination--rev .c-pagination__card {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #0068b7;
}
.c-pagination--rev .c-pagination__card:focus-visible {
  color: #0068b7;
  background-color: rgb(229.5, 229.5, 229.5);
}
@media (any-hover: hover) {
  .c-pagination--rev .c-pagination__card:hover {
    color: #0068b7;
    background-color: rgb(229.5, 229.5, 229.5);
  }
}
.c-pagination--rev .c-pagination__card.is-active {
  color: #0068b7;
  border-color: #ffffff;
  background-color: #ffffff;
}
.c-pagination--rev .c-pagination__dot {
  color: #ffffff;
}

.c-card__article {
  width: calc((100% - 60px) / 3);
}
@media screen and (width <= 959px) {
  .c-card__article {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (width <= 767px) {
  .c-card__article {
    width: 100%;
  }
}
.c-card__article-link {
  display: block;
}
.c-card__article-thumbnail {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1c87ce;
}
.c-card__article-thumbnail img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 5/3;
  width: 100%;
  border-radius: 15px;
}
.c-card__article-textarea {
  width: 100%;
}
.c-card__article-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 17px;
}
@media screen and (width <= 767px) {
  .c-card__article-info {
    margin-bottom: 15px;
  }
}
.c-card__article-date {
  font-size: 14px;
  font-weight: 500;
}
.c-card__article-category {
  font-size: 14px;
  font-weight: 500;
  background: #1c87ce;
  color: #F8F4EF;
  border-radius: 5px;
  padding: 1px 20px;
}
.c-card__article-title {
  font-size: 18px;
  font-weight: 500;
  color: #312102;
}
@media screen and (width <= 767px) {
  .c-card__article-title {
    font-size: 16px;
  }
}
.c-card__article-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 5px;
  color: #888888;
}
.c-card__article-tag .c-card__tag {
  color: #888888;
  font-size: 14px;
}

.c-block__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .c-block__flex {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-block__flex-textarea {
  width: calc(50% - 25px);
}
@media screen and (width <= 767px) {
  .c-block__flex-textarea {
    width: 100%;
  }
}
.c-block__flex-img {
  width: calc(50% - 25px);
}
@media screen and (width <= 767px) {
  .c-block__flex-img {
    width: 100%;
    max-width: 390px;
  }
}
.c-block__flex-img--other {
  width: 100%;
  margin-inline: auto;
}
.c-block__flex-reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (width <= 767px) {
  .c-block__flex-reverse {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-block__table {
  max-width: 960px;
  margin: 0 auto;
}
.c-block__table dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  .c-block__table dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-block__table dt {
  padding: 24px 10px;
  border-bottom: 2px solid #1c87ce;
  width: 250px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-weight: bold;
}
@media screen and (width <= 767px) {
  .c-block__table dt {
    padding: 0;
    border: none;
  }
}
.c-block__table dd {
  padding: 24px 20px;
  border-bottom: 2px solid #BCBCBC;
  width: 100%;
}
@media screen and (width <= 767px) {
  .c-block__table dd {
    padding: 12px;
    margin-bottom: 12px;
  }
}
.c-block__table dd a {
  color: #46AFD5;
}

.p-404 {
  padding: 95px 0;
}
@media screen and (width <= 959px) {
  .p-404 {
    padding: 65px 0;
  }
}

.p-front-fv {
  padding-top: 95px;
  background-image: url("../images/FV/FV_bg_PC.png");
  overflow: unset;
}
@media screen and (width <= 959px) {
  .p-front-fv {
    padding-top: 65px;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv {
    overflow: hidden;
    background-image: url("../images/FV/FV_gb_SP.png");
  }
}
.p-front-fv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (width <= 767px) {
  .p-front-fv__inner {
    padding: 0 20px;
  }
}
.p-front-fv__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 55%;
  position: relative;
}
@media screen and (width <= 959px) {
  .p-front-fv__content {
    width: 100%;
  }
}
.p-front-fv__content-head {
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, from(#ABAF85), to(#0E514F));
  background: -webkit-linear-gradient(left, #ABAF85 0%, #0E514F 100%);
  background: linear-gradient(90deg, #ABAF85 0%, #0E514F 100%);
  width: 335px;
  height: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 21.949px;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (width <= 959px) {
  .p-front-fv__content-head {
    position: relative;
    margin-right: auto;
  }
  .p-front-fv__content-head .p-front-fv__img-sp {
    position: absolute;
    right: -360px;
    margin: 0;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__content-head {
    width: 192px;
    height: 30px;
    font-size: 14px;
  }
  .p-front-fv__content-head .p-front-fv__img-sp {
    width: 192px;
    right: -205px;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
.p-front-fv__content-title {
  color: #1F4162;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 58.975px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 42px;
}
.p-front-fv__content-title span {
  color: #1F4162;
  font-family: "Zen Old Mincho";
}
@media screen and (max-width: 1460px) {
  .p-front-fv__content-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
}
.p-front-fv__content-title span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1.092px solid #1F4162;
  margin: 0 auto;
}
@media screen and (width <= 959px) {
  .p-front-fv__content-title {
    margin-right: auto;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__content-title {
    font-size: 22px;
    margin-left: 9px;
    margin-bottom: 70px;
  }
}
.p-front-fv__content-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 40px;
  margin-bottom: 27px;
}
@media screen and (max-width: 1460px) {
  .p-front-fv__content-point {
    gap: 0;
  }
}
.p-front-fv__content-point:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}
.p-front-fv__content-point-item {
  padding: 20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1460px) {
  .p-front-fv__content-point-item {
    width: 11em;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__content-point-item {
    padding: 15px 10px;
    width: 9em;
  }
}
.p-front-fv__content-point-head {
  color: #929A4D;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 8px;
}
@media screen and (width <= 767px) {
  .p-front-fv__content-point-head {
    font-size: 15px;
  }
}
.p-front-fv__content-point-text {
  color: #1F4162;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 26.126px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (width <= 767px) {
  .p-front-fv__content-point-text {
    font-size: 20px;
    line-height: 130%;
  }
  .p-front-fv__content-point-text.tr10 {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.p-front-fv__content-point-text span {
  color: #1F4162;
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (width <= 767px) {
  .p-front-fv__content-point-text span {
    font-size: 14px !important;
  }
}
.p-front-fv__content-contact {
  background: -webkit-linear-gradient(345deg, #0D292D -39.22%, #336B73 49.99%);
  background: linear-gradient(105deg, #0D292D -39.22%, #336B73 49.99%);
  width: 100%;
  padding: 15px 30px 12px;
  position: relative;
}
.p-front-fv__content-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4.2px; /* 枠の太さ */
  background: -webkit-linear-gradient(155deg, #0D292D -39.22%, #336B73 49.99%);
  background: linear-gradient(-65deg, #0D292D -39.22%, #336B73 49.99%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@media screen and (width <= 767px) {
  .p-front-fv__content-contact {
    padding-bottom: 15px;
  }
}
.p-front-fv__content-contact-head {
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 23px;
  font-style: normal;
  font-weight: 900;
  line-height: 29.121px;
  margin-bottom: 15px;
}
@media screen and (width <= 767px) {
  .p-front-fv__content-contact-head {
    font-size: 18px;
  }
}
.p-front-fv__content-contact-head span {
  color: #E2E8A1;
  font-family: "Zen Old Mincho";
  font-size: 23px;
  font-style: normal;
  font-weight: 900;
  line-height: 29.121px;
}
@media screen and (width <= 767px) {
  .p-front-fv__content-contact-head span {
    font-size: 18px;
  }
}
.p-front-fv__content-contact-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front-fv__content-contact-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-front-fv__content-contact-download {
  border-radius: 4px;
  border: 1px solid #0D292D;
  background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#F4F8FF));
  background: -webkit-linear-gradient(left, #FFF 0%, #F4F8FF 100%);
  background: linear-gradient(90deg, #FFF 0%, #F4F8FF 100%);
  padding: 10px;
  width: 250px;
  height: 105px;
  color: #1F4162;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
}
.p-front-fv__content-contact-download span {
  display: block;
  color: #6B7B97;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}
.p-front-fv__content-contact-form {
  padding: 10px;
  width: 250px;
  height: 105px;
  border-radius: 4px;
  border: 1px solid #0D292D;
  background: -webkit-linear-gradient(15deg, #FFF 0%, #F5F7E0 119.36%);
  background: linear-gradient(75deg, #FFF 0%, #F5F7E0 119.36%);
  color: #1F4162;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-front-fv__content-contact-note {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 15px;
}
.p-front-fv__img {
  width: 40%;
}
@media screen and (width <= 959px) {
  .p-front-fv__img {
    display: none;
  }
}
.p-front-fv__img-sp {
  display: none;
}
@media screen and (width <= 959px) {
  .p-front-fv__img-sp {
    display: block;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__img-sp {
    width: 230px;
  }
}
.p-front-fv .p-front-fv__content-contact {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
@media screen and (width <= 767px) {
  .p-front-fv .p-front-fv__content-contact {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-front-risk {
  overflow: hidden;
  position: relative;
}
.p-front-risk::after {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -100px;
  top: 100px;
  width: 859px;
  height: 644px;
  z-index: -1;
}
.p-front-risk__top {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(46.84%, rgba(239, 246, 248, 0)), color-stop(86.27%, #E0EBEE));
  background: -webkit-linear-gradient(top, rgba(239, 246, 248, 0) 46.84%, #E0EBEE 86.27%);
  background: linear-gradient(180deg, rgba(239, 246, 248, 0) 46.84%, #E0EBEE 86.27%);
}
.p-front-risk__top-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-top: 180px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 959px) {
  .p-front-risk__top-title {
    gap: 40px;
    margin-top: 90px;
  }
}
@media screen and (width <= 767px) {
  .p-front-risk__top-title {
    margin-top: 50px;
    gap: 7px;
  }
}
.p-front-risk__top-title-text-l {
  color: #101828;
  font-family: "Zen Old Mincho";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  margin-bottom: 30px;
}
.p-front-risk__top-title-text-l br {
  display: none;
}
@media screen and (width <= 959px) {
  .p-front-risk__top-title-text-l {
    font-size: 40px;
  }
}
@media screen and (width <= 767px) {
  .p-front-risk__top-title-text-l {
    font-size: 22px;
    line-height: 33px;
    text-align: center;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-front-risk__top-title-text-l br {
    display: unset;
  }
}
.p-front-risk__top-title-text-l span {
  color: #929A4D;
  font-family: "Zen Old Mincho";
}
.p-front-risk__top-title-text-s {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1E2939;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-title-text-s {
    font-size: 14px;
  }
}
.p-front-risk__top-title-text-s span {
  color: #217275;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-title-text-s span {
    font-size: 14px;
  }
}
.p-front-risk__top-main {
  margin-top: 75px;
  padding-bottom: 75px;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-main {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}
.p-front-risk__top-main-title {
  background: #214B52;
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  padding: 13px;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-main-title {
    font-size: 18px;
  }
}
.p-front-risk__top-main-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-main-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-front-risk__top-main-item {
  background: #E0EBEE;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 30px;
  width: calc((100% - 40px) / 3);
}
@media screen and (width <= 767px) {
  .p-front-risk__top-main-item {
    width: 100%;
    padding: 20px;
  }
}
.p-front-risk__top-main-item-title {
  color: #104E64;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin: 30px 0 20px;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-main-item-title {
    margin: 20px auto 10px;
  }
}
.p-front-risk__top-main-item-text {
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.p-front-risk__top-note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 65px auto;
  gap: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #0092B8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 5px;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-note.sp-none {
    display: none;
  }
}
.p-front-risk__top-note.sp-only {
  display: none;
}
@media screen and (width <= 767px) {
  .p-front-risk__top-note.sp-only {
    margin: 0 auto 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (width <= 767px) {
  .p-front-risk__top-note-box {
    display: block;
  }
}
.p-front-risk__top-note-box {
  margin: 30px auto;
}
.p-front-risk__bottom {
  background-image: url("../images/risk/bottom.png");
  position: relative;
  padding-bottom: 100px;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom {
    padding-bottom: 50px;
  }
}
.p-front-risk__bottom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #E3E9EF;
  opacity: 0.5;
}
.p-front-risk__bottom .l-section__inner {
  position: relative;
  z-index: 1;
}
.p-front-risk__bottom-lead {
  padding-top: 100px;
  margin-bottom: 50px;
  text-align: center;
  color: #101828;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-lead {
    padding-top: 50px;
    margin-bottom: 30px;
    font-size: 22px;
  }
}
.p-front-risk__bottom-lead-em {
  color: #4563AE;
  font-family: "Zen Old Mincho";
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px;
  border-bottom: 1px solid #4563AE;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-lead-em {
    font-size: 22px;
  }
}
.p-front-risk__bottom-lead br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-front-risk__bottom-lead br {
    display: unset;
  }
}
.p-front-risk__bottom-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px 5%;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.p-front-risk__bottom-item {
  width: 47.5%;
  border-left: 4px solid #104E64;
  background: #F0F3F8;
  padding: 30px 40px;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-item {
    width: 100%;
    padding: 20px;
  }
}
.p-front-risk__bottom-item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-item-head {
    gap: 5px;
  }
  .p-front-risk__bottom-item-head img {
    width: 35px;
  }
}
.p-front-risk__bottom-item-title {
  color: #101828;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-item-title {
    font-size: 18px;
  }
}
.p-front-risk__bottom-item-text {
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 20px;
}
.p-front-risk__bottom-item-tag {
  border-radius: 4px;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 500px;
  padding: 10px 10px 10px 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.5px;
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.p-front-risk__bottom-cta-title {
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 75px auto 25px;
  border-bottom: 1px solid #0092B8;
  padding-bottom: 8px;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-cta-title {
    border-bottom: none;
    font-size: 20px;
    line-height: 40px;
    text-decoration: underline;
    -webkit-text-decoration-color: #0092B8;
            text-decoration-color: #0092B8;
    text-underline-offset: 8px;
    margin: 30px auto 10px;
  }
}
.p-front-risk__bottom-cta-text {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 30px;
}
.p-front-risk__bottom-cta-text-em {
  color: #BB4D00;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-cta-text br {
    display: none;
  }
}
.p-front-risk__bottom-cta-btn {
  background: #E17100;
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  padding: 7px 11px;
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 767px) {
  .p-front-risk__bottom-cta-btn {
    font-size: 18px;
  }
}
.p-front-risk__movie {
  background: -webkit-gradient(linear, left top, left bottom, from(#CFDEE3), color-stop(50%, rgba(223, 234, 237, 0.5)), to(#CFDEE3));
  background: -webkit-linear-gradient(top, #CFDEE3 0%, rgba(223, 234, 237, 0.5) 50%, #CFDEE3 100%);
  background: linear-gradient(180deg, #CFDEE3 0%, rgba(223, 234, 237, 0.5) 50%, #CFDEE3 100%);
  padding: 180px 0 85px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front-risk__movie {
    padding: 85px 0 50px;
  }
}
.p-front-risk__movie-title {
  position: absolute;
  color: #FFF;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 200px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  top: 25px;
}
@media screen and (width <= 767px) {
  .p-front-risk__movie-title {
    font-size: 70px;
    top: 25px;
  }
}
.p-front-risk__movie-video {
  width: 100%;
  max-width: 744px;
  aspect-ratio: 16/9;
  height: auto;
  background: #D9D9D9;
  display: block;
  position: relative;
  margin: 0 auto 55px;
}
.p-front-risk__movie-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  max-width: 744px;
}
@media screen and (width <= 767px) {
  .p-front-risk__movie-video {
    aspect-ratio: 350/200;
    height: auto;
    margin-bottom: 30px;
  }
}
.p-front-risk__movie .p-front-fv__content-contact-note {
  color: #101828;
}

.youtube {
  position: relative;
}

.youtube .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: auto;
  background-size: contain;
  z-index: 1;
  cursor: pointer;
}

.p-front__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 90px;
  margin: 0 auto 22px;
  max-width: 835px;
}
@media screen and (width <= 767px) {
  .p-front__heading {
    padding-top: 50px;
    gap: 25px;
    margin-bottom: 20px;
  }
}
.p-front__heading-en {
  color: #0092B8;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
@media screen and (width <= 767px) {
  .p-front__heading-en {
    font-size: 13px;
  }
}
.p-front__heading-title {
  color: #1F4162;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  margin-top: 20px;
}
@media screen and (width <= 959px) {
  .p-front__heading-title {
    line-height: 180%;
  }
}
@media screen and (width <= 767px) {
  .p-front__heading-title {
    font-size: 22px;
    margin-top: 5px;
    line-height: 36px;
  }
}
.p-front__heading-sub {
  color: #364153;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.p-front__heading-sub span {
  color: #007595;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

.p-front-achievements {
  background-image: url("../images/achievements/background.png");
  padding-bottom: 85px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front-achievements {
    padding-bottom: 50px;
  }
}
.p-front-achievements .l-section__inner {
  position: relative;
  z-index: 1;
}
.p-front-achievements__intro {
  margin-top: 80px;
}
@media screen and (width <= 767px) {
  .p-front-achievements__intro {
    margin-top: 30px;
  }
}
.p-front-achievements__intro-text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-achievements__intro-text-em {
  color: #B23438;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-achievements__intro-text-accent {
  color: #007595;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-achievements__service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 35px;
}
@media screen and (width <= 767px) {
  .p-front-achievements__service-list {
    margin-top: 30px;
  }
}
.p-front-achievements__service-item {
  width: calc((100% - 40px) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  .p-front-achievements__service-item {
    width: 100%;
  }
}
.p-front-achievements__service-item-icon {
  background: #104E64;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 767px) {
  .p-front-achievements__service-item-icon {
    min-height: 56px;
    height: auto;
  }
}
.p-front-achievements__service-item-text {
  border: 1px solid #BECCCF;
  background: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  height: 56px;
  padding: 0 20px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .p-front-achievements__service-item-text {
    padding: 9px 15px;
    height: auto;
  }
}
.p-front-achievements__card-list {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .p-front-achievements__card-list {
    margin-top: 30px;
    gap: 15px;
  }
}
.p-front-achievements__card-item {
  border: 1.25px solid #104E64;
  background: #FFF;
  width: calc((100% - 120px) / 4);
  padding: 40px 20px;
}
@media screen and (width <= 959px) {
  .p-front-achievements__card-item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-front-achievements__card-item {
    width: 100%;
    padding: 20px;
  }
}
.p-front-achievements__card-item-icon {
  margin: 0 auto 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 767px) {
  .p-front-achievements__card-item-icon {
    margin-bottom: 15px;
  }
  .p-front-achievements__card-item-icon svg {
    width: 120px;
    height: 120px;
  }
}
.p-front-achievements__card-item-title {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 34.2px */
  margin-bottom: 12px;
  color: #104E64;
}
@media screen and (width <= 767px) {
  .p-front-achievements__card-item-title {
    margin-bottom: 5px;
  }
}
.p-front-achievements__card-item-text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

li::marker {
  color: #104E64;
}

.p-front-strengths {
  padding: 90px 0;
  position: relative;
}
.p-front-strengths::after {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -100px;
  top: 100px;
  width: 859px;
  height: 644px;
  z-index: -1;
}
.p-front-strengths::before {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case2.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  width: 567px;
  height: 500px;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .p-front-strengths {
    padding: 0 0 40px;
  }
}
.p-front-strengths__list {
  margin-top: 80px;
  margin-bottom: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 50px 40px;
}
@media screen and (width <= 767px) {
  .p-front-strengths__list {
    margin: 30px 0;
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-front-strengths__item {
  width: calc((100% - 80px) / 3);
}
@media screen and (width <= 767px) {
  .p-front-strengths__item {
    width: 100%;
  }
}
.p-front-strengths__item-img {
  margin-bottom: 25px;
}
@media screen and (width <= 767px) {
  .p-front-strengths__item-img {
    margin-bottom: 18px;
  }
}
.p-front-strengths__item-img img {
  display: block;
}
.p-front-strengths__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-front-strengths__item-num {
  color: #929A4D;
  font-family: "Zen Old Mincho";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding-right: 15px;
  border-right: 1px solid #104E64;
}
.p-front-strengths__item-main {
  border-left: 1px solid #E0EBEF;
  padding-left: 15px;
}
.p-front-strengths__item-title {
  color: #104E64;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  margin-bottom: 10px;
}
@media screen and (width <= 767px) {
  .p-front-strengths__item-title {
    font-size: 18px;
  }
}
.p-front-strengths__item-text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-strengths__point-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7.5%;
}
@media screen and (width <= 767px) {
  .p-front-strengths__point-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-front-strengths__point-item-title {
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6; /* 107.692% */
  text-decoration: underline;
  -webkit-text-decoration-color: #0092B8;
          text-decoration-color: #0092B8;
  text-underline-offset: 8px;
  margin-bottom: 25px;
}
@media screen and (width <= 767px) {
  .p-front-strengths__point-item-title {
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 20px;
  }
}
.p-front-strengths__point-item-text {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

.p-front-checklist {
  background-image: url("../images/checklist/background.png");
  padding-bottom: 85px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front-checklist {
    padding-bottom: 50px;
  }
}
.p-front-checklist__category-head {
  margin: 65px 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (width <= 767px) {
  .p-front-checklist__category-head {
    margin: 30px 0 20px;
  }
}
.p-front-checklist__category-head-text {
  color: #1F4162;
  font-family: "Zen Old Mincho";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 128.571% */
}
@media screen and (width <= 767px) {
  .p-front-checklist__category-head-text {
    font-size: 24px;
  }
}
.p-front-checklist__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 37px 50px;
}
@media screen and (width <= 767px) {
  .p-front-checklist__list {
    gap: 15px;
  }
}
.p-front-checklist__item {
  width: calc((100% - 100px) / 3);
  padding: 30px 25px;
  border-left: 4px solid #104E64;
  background: #FFF;
}
@media screen and (max-width: 1100px) {
  .p-front-checklist__item {
    width: calc((100% - 50px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-front-checklist__item {
    padding: 20px;
    width: 100%;
  }
}
.p-front-checklist__item-title {
  color: #104E64;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #929A4D;
}
.p-front-checklist__item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-front-checklist__item-list-item {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  margin-bottom: 3px;
}
.p-front-checklist__item-list-item:before {
  content: url("../images/common/check.svg");
}
.p-front-checklist__footer {
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6; /* 107.692% */
  text-decoration: underline;
  -webkit-text-decoration-color: #0092B8;
          text-decoration-color: #0092B8;
  text-underline-offset: 8px;
  padding-bottom: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 0;
}
@media screen and (width <= 767px) {
  .p-front-checklist__footer {
    line-height: 42px;
    margin-top: 30px;
    font-size: 20px;
  }
}

.p-front-service {
  background: #ECF2F3;
  padding-bottom: 90px;
  position: relative;
}
.p-front-service::before {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case3.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  width: 844px;
  height: 780px;
  z-index: 0;
}
.p-front-service__box {
  margin: 65px auto 75px;
  max-width: 700px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front-service__box {
    margin: 30px auto 30px;
    max-width: 700px;
  }
}
.p-front-service__box-title {
  background: #104E64;
  padding: 6px;
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
@media screen and (width <= 767px) {
  .p-front-service__box-title {
    font-size: 18px;
  }
}
@media screen and (width <= 767px) {
  .p-front-service__box-col {
    padding-left: 1.1em;
    margin: 0;
  }
}
.p-front-service__box-list {
  background: #FFF;
  padding: 30px 40px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media screen and (width <= 767px) {
  .p-front-service__box-list {
    gap: 0;
    padding: 20px 20px 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-front-service__box-item {
  margin-bottom: 15px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-service__flow {
  position: relative;
}
.p-front-service__flow-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  position: relative;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-front-service__flow-list:before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#104E64), to(#219ECA));
  background: -webkit-linear-gradient(left, #104E64 0%, #219ECA 100%);
  background: linear-gradient(90deg, #104E64 0%, #219ECA 100%);
  height: 12px;
  width: 98%;
  left: 1%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (width <= 959px) {
  .p-front-service__flow-list:before {
    display: none;
  }
}
@media screen and (width <= 767px) {
  .p-front-service__flow-list:before {
    display: block;
    height: 100%;
    width: 12px;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#104E64), to(#219ECA));
    background: -webkit-linear-gradient(top, #104E64 0%, #219ECA 100%);
    background: linear-gradient(180deg, #104E64 0%, #219ECA 100%);
  }
}
.p-front-service__flow-item {
  width: calc((100% - 56px) / 5);
  background: #fff;
  padding: 42px 10px 15px;
  position: relative;
}
@media screen and (width <= 959px) {
  .p-front-service__flow-item {
    width: calc((100% - 28px) / 3);
  }
}
@media screen and (width <= 767px) {
  .p-front-service__flow-item {
    width: 100%;
  }
}
.p-front-service__flow-item:first-child:before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#104E64), to(#219ECA));
  background: -webkit-linear-gradient(left, #104E64 0%, #219ECA 100%);
  background: linear-gradient(90deg, #104E64 0%, #219ECA 100%);
  height: 12px;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
@media screen and (width <= 959px) {
  .p-front-service__flow-item:first-child:before {
    display: block;
    z-index: 0;
    width: 14px;
    right: -14px;
    background: #104E64;
  }
}
@media screen and (width <= 767px) {
  .p-front-service__flow-item:first-child:before {
    display: none;
  }
}
.p-front-service__flow-item:nth-child(2):before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#104E64), to(#219ECA));
  background: -webkit-linear-gradient(left, #104E64 0%, #219ECA 100%);
  background: linear-gradient(90deg, #104E64 0%, #219ECA 100%);
  height: 12px;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
@media screen and (width <= 959px) {
  .p-front-service__flow-item:nth-child(2):before {
    display: block;
    z-index: 0;
    width: 14px;
    right: -14px;
    background: #219ECA;
  }
}
@media screen and (width <= 767px) {
  .p-front-service__flow-item:nth-child(2):before {
    display: none;
  }
}
.p-front-service__flow-item:nth-child(4):before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#104E64), to(#219ECA));
  background: -webkit-linear-gradient(left, #104E64 0%, #219ECA 100%);
  background: linear-gradient(90deg, #104E64 0%, #219ECA 100%);
  height: 12px;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
@media screen and (width <= 959px) {
  .p-front-service__flow-item:nth-child(4):before {
    display: block;
    z-index: 0;
    width: 14px;
    right: -14px;
    background: #104E64;
  }
}
@media screen and (width <= 767px) {
  .p-front-service__flow-item:nth-child(4):before {
    display: none;
  }
}
.p-front-service__flow-item-num {
  position: absolute;
  width: 37px;
  height: 37px;
  background: #104E64;
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -3px;
  left: 0;
}
.p-front-service__flow-item-title {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  margin-bottom: 10px;
  height: 3.6em;
  color: #104E64;
}
@media screen and (width <= 767px) {
  .p-front-service__flow-item-title {
    height: auto;
  }
}
.p-front-service__flow-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-front-service__flow-item-list-item {
  border-left: 2px solid #929A4D;
  background: #F4F4F4;
  padding: 7px 10px;
  color: #364153;
  font-family: "Noto Sans CJK JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 27px */
  margin-bottom: 10px;
}

section {
  overflow: hidden;
}

.p-front-form {
  position: relative;
  overflow: hidden;
}
.p-front-form::after {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -100px;
  top: 100px;
  width: 859px;
  height: 644px;
  z-index: -1;
}
.p-front-form::before {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case2.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  width: 567px;
  height: 500px;
  z-index: -1;
}
.p-front-form form {
  margin-top: 55px;
  background: #ECF2F3;
  padding: 60px 80px;
}
@media screen and (width <= 959px) {
  .p-front-form form {
    padding: 40px 60px;
  }
}
@media screen and (width <= 767px) {
  .p-front-form form {
    padding: 30px 20px;
  }
}
.p-front-form form .wp-block-snow-monkey-forms-item {
  margin-bottom: 40px;
}
@media screen and (width <= 767px) {
  .p-front-form form .wp-block-snow-monkey-forms-item {
    margin-bottom: 25px;
  }
}
.p-front-form form .smf-item__label__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 10px;
  color: #104E64;
  font-weight: 500;
}
.p-front-form form .required .smf-item__label__text:before {
  content: "必須";
  color: #fff;
  background: #CC585C;
  font-size: 14px;
  padding: 1px 6px 2px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
}
.p-front-form form input {
  border-radius: 8px !important;
  border: 1.25px solid #D1D5DC !important;
  background: #FFF;
  width: 100%;
  font-size: 14px;
}
.p-front-form form .smf-select-control {
  width: 100%;
}
.p-front-form form select {
  border-radius: 8px !important;
  border: 1.25px solid #D1D5DC !important;
  background: #FFF;
  width: 100%;
  font-size: 14px;
}
.p-front-form form textarea {
  border-radius: 8px !important;
  border: 1.25px solid #D1D5DC !important;
  background: #FFF;
  width: 100%;
  font-size: 14px;
}
.p-front-form form .flex > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
@media screen and (width <= 767px) {
  .p-front-form form .flex > .wp-block-group__inner-container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px 0;
  }
}
@media screen and (width <= 767px) {
  .p-front-form form .label {
    width: 80px;
  }
}
@media screen and (width <= 767px) {
  .p-front-form form [data-name*=date] {
    width: calc(90% - 80px);
  }
}
.p-front-form form .date {
  margin: 0 20px 0 30px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (width <= 767px) {
  .p-front-form form .date {
    margin: 0;
    width: 100%;
    max-width: none;
  }
}
.p-front-form form .time {
  margin: 0 7.5px 0 0px;
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100px;
}
@media screen and (width <= 767px) {
  .p-front-form form .time {
    margin-left: 80px;
  }
}
.p-front-form form .explain {
  color: #4A5565;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
}
.p-front-form__bottom-text {
  text-align: center;
  padding: 20px 0;
  border-top: 1.25px solid #D1D5DC;
  color: #4A5565;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-form__bottom-privacy {
  margin-top: 20px;
}
.p-front-form__bottom-privacy-title {
  color: #104E64;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 36px */
}
.p-front-form__bottom-privacy-heading {
  color: var(--, #104E64);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-form__bottom-privacy-box {
  border: 1.25px solid #D1D5DC;
  background: #FFF;
  padding: 20px;
  overflow-y: scroll;
  height: 208px;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (width <= 767px) {
  .p-front-form__bottom-privacy-box {
    padding: 15px;
  }
}
.p-front-form .smf-button-control__control {
  border-radius: 8px;
  background: #104E64;
  color: #fff;
  width: 100%;
  max-width: 300px;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.p-front-flow__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 75px;
}
@media screen and (width <= 767px) {
  .p-front-flow__list {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 70px;
  }
}
.p-front-flow__item {
  width: calc((100% - 120px) / 4);
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front-flow__item {
    width: 100%;
  }
}
.p-front-flow__item:last-child .p-front-flow__item-arrow {
  display: none;
}
.p-front-flow__item-step {
  color: #929A4D;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.p-front-flow__item-icon {
  margin: 20px auto 25px;
}
.p-front-flow__item-icon img {
  display: block;
  margin: 0 auto;
}
.p-front-flow__item-title {
  color: #104E64;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
}
@media screen and (width <= 959px) {
  .p-front-flow__item-title {
    font-size: 18px;
  }
}
.p-front-flow__item-text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-top: 10px;
  text-align: center;
}
.p-front-flow__item-arrow {
  position: absolute;
  top: 110px;
  right: -20px;
}
@media screen and (width <= 767px) {
  .p-front-flow__item-arrow {
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: unset;
    bottom: -42px;
  }
}
.p-front-flow .p-front-fv__content-contact {
  margin-top: 100px;
  padding: 19px 30px 24px;
}
@media screen and (width <= 767px) {
  .p-front-flow .p-front-fv__content-contact {
    margin-top: 45px;
  }
}
.p-front-flow .p-front-fv__content-contact-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-front-flow .p-front-fv__content-contact-head svg {
  margin-right: 5px;
}
.p-front-flow .p-front-fv__content-contact-text {
  color: #FFF;
  text-align: center;
  margin: 15px 0 10px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

.agree .smf-item__label__text {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.agree .smf-item__col {
  text-align: center;
}
.agree .smf-checkbox-control__control {
  border-radius: 0px !important;
  margin: 0;
}

.p-company__first {
  margin-top: 150px;
}
@media screen and (width <= 959px) {
  .p-company__first {
    margin-top: 75px;
  }
}
@media screen and (width <= 1100px) {
  .p-company__first .p-front__heading-normal {
    font-size: 25px;
  }
}
@media screen and (width <= 959px) {
  .p-company__first .p-front__heading-normal {
    font-size: 20px;
  }
}
@media screen and (width <= 767px) {
  .p-company__first .p-front__heading-normal br {
    display: none;
  }
}

.p-company__second {
  margin-top: 150px;
}
@media screen and (width <= 959px) {
  .p-company__second {
    margin-top: 75px;
  }
}
.p-company__second .g-font__heading {
  margin-bottom: 60px;
}
@media screen and (width <= 959px) {
  .p-company__second .g-font__heading {
    margin-top: 30px;
  }
}

.p-company__third {
  margin-top: 150px;
}
@media screen and (width <= 959px) {
  .p-company__third {
    margin-top: 75px;
  }
}
.p-company__third .g-font__heading {
  margin-bottom: 60px;
}
@media screen and (width <= 959px) {
  .p-company__third .g-font__heading {
    margin-top: 30px;
  }
}

.p-company__partner {
  border: 4px solid #FFEAB9;
  padding: 70px 7.5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  border-radius: 20px;
}
@media screen and (width <= 959px) {
  .p-company__partner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 30px 5%;
    gap: 30px;
  }
}
.p-company__partner-img {
  max-width: 450px;
  width: 50%;
  height: auto;
  border-radius: 20px;
}
@media screen and (width <= 959px) {
  .p-company__partner-img {
    width: 100%;
  }
}
@media screen and (width <= 959px) {
  .p-company__partner-content {
    text-align: center;
  }
}
.p-company__partner-title {
  margin-bottom: 10px;
}
@media screen and (width <= 959px) {
  .p-company__partner .c-btn__detail.-long {
    margin-top: 20px;
    text-align: left;
  }
}
@media screen and (width <= 767px) {
  .p-company__partner .c-btn__detail.-long {
    font-size: 15px;
  }
}

.history-list {
  margin-left: 40px;
  padding-bottom: 50px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.history-list::before {
  content: "";
  display: block;
  background-color: #1c87ce;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 10px;
  left: -30px;
}

.history-head {
  width: 150px;
  font-size: 18px;
  font-weight: bold;
  color: #1c87ce;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.history-head::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #1c87ce;
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

.history-text {
  max-width: 900px;
  width: calc(100% - 150px);
}

.page-history {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .history-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .history-text {
    width: 100%;
  }
}
.title {
  margin-top: 106px;
  padding-bottom: 38px;
  font-size: clamp(1.8rem, 2.5vw, 4rem);
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75;
  color: #1c87ce;
  border-bottom: 1px solid #cdcdcd;
}

.p-company__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 70px;
  gap: 70px;
  position: relative;
}

.p-company__content-summary {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-company__content-summary > p {
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.p-company__content-summary > p:last-of-type {
  margin-left: auto;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
}

.p-company__content-image {
  min-width: 400px;
  width: 35%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding-top: 0px;
  }
  .p-company__content-image {
    max-width: 500px;
    width: 100%;
  }
  .p-company__content-image img {
    width: 100%;
  }
  .title {
    margin-top: 50px;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .p-company__content-image {
    min-width: unset;
    width: 100%;
  }
  .p-company__content-image img {
    width: 100%;
  }
}
.p-contact-form {
  margin-top: 100px;
}
@media screen and (width <= 767px) {
  .p-contact-form .l-form {
    margin-top: 50px;
  }
}

.p-contact-confirm .l-form {
  margin-top: 50px;
}
.p-contact-confirm .l-form__label {
  color: #1c87ce;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.l-form__accept .l-form__error {
  text-align: center;
}

.l-form__submit {
  margin-top: 50px;
}

.p-contact__title {
  color: #1c87ce;
  font-size: 20px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}

.p-contact__text {
  font-size: 16px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}

.p-contact-complete .l-form__button {
  margin: 0 auto;
}

.l-faq {
  background-color: #ecf2f3;
  position: relative;
  overflow-x: clip;
  padding-bottom: 90px;
}
.l-faq::after {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0px;
  top: 250px;
  width: 859px;
  height: 644px;
}
@media screen and (width <= 767px) {
  .l-faq {
    padding-bottom: 50px;
  }
  .l-faq::after {
    right: -25px;
    top: 48px;
    max-width: 859px;
    width: 100%;
    height: unset;
    aspect-ratio: 859/644;
  }
}
.l-faq .l-section__inner {
  position: relative;
  z-index: 1;
}
.l-faq__accordion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 80px;
}
@media screen and (width <= 767px) {
  .l-faq__accordion {
    gap: 15px;
    margin-top: 30px;
  }
}
.l-faq__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: #104e64;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
@media screen and (width <= 767px) {
  .l-faq__header {
    padding: 9px 10px;
    padding-right: 15px;
  }
}
.l-faq__headinner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (width <= 767px) {
  .l-faq__headinner {
    gap: 10px;
  }
}
.l-faq__headinner::before {
  content: "Q";
  color: #e2e8a1;
  font-family: "Zen Old Mincho";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.121px; /* 97.069% */
}
@media screen and (width <= 767px) {
  .l-faq__headinner::before {
    font-size: 25px;
  }
}
.l-faq__q-txt {
  color: #fff;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 36px */
}
@media screen and (width <= 767px) {
  .l-faq__q-txt {
    font-size: 18px;
  }
}
.l-faq__icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background: #104e64;
  -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;
}
.l-faq__icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #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;
}
.l-faq__header[aria-expanded=true] .l-faq__icon::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.l-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
  background: #fff;
}
.l-faq__body.is-open {
  grid-template-rows: 1fr;
}
.l-faq__bodyinner {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 0 20px;
}
.is-open > .l-faq__bodyinner {
  padding: 20px;
}
.l-faq__bodyinner::before {
  content: "A";
  font-size: 1.8rem;
  color: #104e64;
  font-family: "Zen Old Mincho";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.121px; /* 97.069% */
}
@media screen and (width <= 767px) {
  .l-faq__bodyinner::before {
    font-size: 25px;
  }
}
@media screen and (width <= 767px) {
  .l-faq__bodyinner {
    padding-inline: 15px;
  }
  .is-open > .l-faq__bodyinner {
    padding: 15px;
  }
}
.l-faq__a-txt {
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

.p-front-case {
  overflow-x: clip;
  background-color: #ecf2f3;
  position: relative;
  margin-top: 90px;
  padding-bottom: 90px;
}
.p-front-case::after {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_case.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -100px;
  top: 100px;
  width: 859px;
  height: 644px;
}
@media screen and (width <= 767px) {
  .p-front-case {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .p-front-case::after {
    display: none;
  }
}
.p-front-case .l-section__inner {
  position: relative;
  z-index: 1;
}
.p-front-case__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  gap: 24px;
  margin-top: 82px;
}
@media screen and (width <= 767px) {
  .p-front-case__list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
}
.p-front-case__area {
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
  row-gap: 20px;
}
.p-front-case__num {
  background-color: #1a4e64;
  color: #fff;
  font-family: "Zen Old Mincho";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 3px 21px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  translate: 0 20px;
}
.p-front-case__item {
  border: 1px solid rgba(26, 78, 100, 0.15);
  background-color: #fff;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 20px;
}
.p-front-case__item-head {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(26, 78, 100, 0.15);
  margin-top: 25px;
  margin-inline: 20px;
}
@media screen and (width <= 767px) {
  .p-front-case__item-head {
    margin-inline: 15px;
  }
}
.p-front-case__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a4e64;
  line-height: 1.4;
  margin: 0 0 6px;
}
.p-front-case__item-sub {
  font-size: 13px;
  color: #4a5565;
}
.p-front-case__item-body {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-rows: auto auto 1fr;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 20px;
  height: 100%;
}
.p-front-case__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 20px;
  gap: 5px;
}
@media screen and (width <= 767px) {
  .p-front-case__block {
    padding-inline: 15px;
  }
}
.p-front-case__block-head {
  color: #929a4d;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 114.286% */
}
.p-front-case__block-text {
  color: var(--, #101828);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-case__block-text--last {
  font-weight: 500;
}
.p-front-case__block--last {
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: #e0ebee;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front-case__block--last {
    padding-inline: 15px;
  }
}
.p-front-case__block--last::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  translate: -50% 0;
  border-style: solid;
  border-width: 18px 61px 0 61px;
  border-color: #ffffff transparent transparent transparent;
}

.p-front-price {
  overflow-x: clip;
  margin-top: 10px;
  position: relative;
  margin-bottom: 100px;
}
.p-front-price::before {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_price01.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -240px;
  top: 100px;
  width: 918px;
  height: 780px;
}
.p-front-price::after {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/img_back_price02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0px;
  bottom: 100px;
  width: 842px;
  height: 693px;
}
@media screen and (width <= 767px) {
  .p-front-price {
    margin-bottom: 50px;
  }
  .p-front-price::before {
    display: none;
  }
  .p-front-price::after {
    content: "";
    position: absolute;
    background-image: url(../images/achievements/img_back_price02.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    right: -30px;
    bottom: 290px;
    max-width: 842px;
    width: 100%;
    aspect-ratio: 842/693;
    height: unset;
  }
}
.p-front-price .l-section__inner {
  position: relative;
  z-index: 1;
}
.p-front-price-text {
  text-align: center;
  margin-top: 40px;
  color: #364153;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-price-diagnosis {
  max-width: 700px;
  width: 100%;
  border: 1px solid #104e64;
  background: #fff;
  margin-inline: auto;
  margin-top: 70px;
}
.p-front-price-diagnosis__title {
  padding: 6px;
  background-color: #104e64;
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}
@media screen and (width <= 767px) {
  .p-front-price-diagnosis__title {
    font-size: 18px;
  }
}
.p-front-price-diagnosis__box {
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 25.25px;
  margin-bottom: 16px;
}
@media screen and (width <= 767px) {
  .p-front-price-diagnosis__box {
    padding-inline: 15px;
  }
}
.p-front-price-diagnosis__price {
  color: #104e64;
  font-family: "Zen Old Mincho";
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%; /* 50.4px */
}
.p-front-price-diagnosis__price > span {
  color: #104e64;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
}
.p-front-price-diagnosis__detail {
  color: #456393;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  margin-top: 3.75px;
  text-align: center;
}
.p-front-price-diagnosis__month {
  color: #101828;
  margin-top: 16px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  text-align: center;
}
.p-front-price-diagnosis__text {
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-price-flow-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  row-gap: 62px;
  grid-auto-rows: 1fr;
  position: relative;
}
.p-front-price-flow-area::after {
  content: "";
  position: absolute;
  background-image: url(../images/achievements/icon_long_arrow.png);
  max-width: 32px;
  width: 100%;
  aspect-ratio: 32/320;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (width <= 767px) {
  .p-front-price-flow-area {
    grid-template-columns: 1fr;
    row-gap: 40px;
    grid-auto-rows: unset;
  }
  .p-front-price-flow-area::after {
    display: none;
  }
}
.p-front-price-flow-area-box {
  border-left: 4px solid #104e64;
  background: #ecf2f3;
  padding-inline: 40px;
  padding-block: 30px;
}
@media screen and (width <= 767px) {
  .p-front-price-flow-area-box {
    position: relative;
    padding: unset;
    padding: 20px;
  }
  .p-front-price-flow-area-box::after {
    content: "";
    position: absolute;
    bottom: -29px;
    left: 50%;
    translate: -50% 0;
    background-image: url(../images/achievements/icon_arrow_down.png);
    width: 8.11px;
    aspect-ratio: 8.11/20;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .p-front-price-flow-area-box:last-of-type::after {
    display: none;
  }
}
.p-front-price-flow-area-box__title {
  color: #104e64;
  font-family: "Zen Old Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  border-bottom: 1px solid white;
  padding-bottom: 15px;
}
@media screen and (width <= 767px) {
  .p-front-price-flow-area-box__title {
    font-size: 20px;
  }
}
.p-front-price-flow-area-box ul {
  margin: unset;
  padding: unset;
  padding-left: 40px;
  margin-top: 15px;
}
@media screen and (width <= 767px) {
  .p-front-price-flow-area-box ul {
    padding-left: 20px;
  }
}
.p-front-price-flow-area-box li {
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-price-flow-area-box li::marker {
  color: #104e64;
}
.p-front-price-feature {
  margin-top: 100px;
}
.p-front-price-feature ul {
  margin: unset;
  padding: unset;
  padding-left: 40px;
  margin-top: 15px;
}
@media screen and (width <= 767px) {
  .p-front-price-feature ul {
    padding-left: 20px;
  }
}
.p-front-price-feature li {
  color: #101828;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.p-front-price-feature li::marker {
  color: #104e64;
}
.p-front-price-contact {
  margin-top: 90px;
}
.p-front-price-contact__area {
  padding: 20px;
}
.p-front-price-contact__button {
  border-radius: 4px;
  border: 1px solid #0d292d;
  background: -webkit-linear-gradient(15deg, #fff 0%, #f5f7e0 119.36%);
  background: linear-gradient(75deg, #fff 0%, #f5f7e0 119.36%);
  width: 100%;
  max-width: 380px;
  height: 80px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.p-front-price-contact__detail {
  max-width: 390px;
  margin-inline: auto;
  text-align: left;
}

@media screen and (width > 767px) {
  .u-dn-md-min {
    display: none;
  }
}

@media screen and (width <= 767px) {
  .u-dn-md-max {
    display: none;
  }
}

.u-cf::after {
  display: block;
  clear: both;
  content: "";
}/*# sourceMappingURL=style.css.map */