@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+Kaku+Gothic+New:wght@300;400;500;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;
}

.bg__orange {
  background: #FFAA36;
}

.bg__green {
  background: #8EC14E;
}

.bg__pink {
  background: #F17CB4;
}

.bg__blue {
  background: #46AFD5;
}

.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;
}

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

.or {
  margin: 0;
  padding: 0;
  list-style: none;
}

* {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}

.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 {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: var(--header-height, 0);
  background: #fff;
}
.l-header__top {
  height: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-header__top div {
  width: 25%;
  height: 100%;
}
.l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  padding-right: 40px;
}
@media screen and (max-width: 1400px) {
  .l-header__nav {
    font-size: 14px;
    gap: 15px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1130px) {
  .l-header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 350px;
  }
}
@media screen and (width <= 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-item.-ex a {
  position: relative;
  padding-right: 20px;
}
.l-header__nav-item.-ex a::before {
  content: url(../images/common/ex.svg);
  position: absolute;
  right: 0;
}
.l-header__nav-item.off {
  opacity: 0.5;
  pointer-events: none;
}
.l-header__nav a:hover {
  opacity: 0.7;
}
@media screen and (width <= 767px) {
  .l-header__tell {
    display: none;
  }
}
.l-header__tell-link {
  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;
  font-weight: 700;
  font-size: 35px;
  line-height: 28.8px;
  text-align: center;
  letter-spacing: 0.03em;
  pointer-events: none;
  gap: 5px;
}
@media screen and (max-width: 1400px) {
  .l-header__tell-link {
    font-size: 22px;
  }
  .l-header__tell-link img {
    width: 25px;
  }
}
@media screen and (width <= 767px) {
  .l-header__tell-link {
    pointer-events: auto;
  }
}
.l-header__tell-text {
  color: #888888;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 1400px) {
  .l-header__tell-text {
    font-size: 12px;
  }
}
.l-header__inner {
  position: relative;
  padding: 0 2.5%;
  -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;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
@media screen and (width <= 767px) {
  .l-header__inner {
    padding: 0;
  }
}
.l-header__main {
  grid-column: 1;
  height: 100%;
  pointer-events: auto;
  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) {
  .l-header__main {
    padding-left: 2.5%;
  }
}
.l-header__logo {
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1rem, 0.625vw, 2rem);
     -moz-column-gap: clamp(1rem, 0.625vw, 2rem);
          column-gap: clamp(1rem, 0.625vw, 2rem);
  height: 60px;
}
@media screen and (width <= 767px) {
  .l-header__logo {
    height: 36px;
  }
}
.l-header__logo-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
@media screen and (width <= 959px) {
  .l-header__logo-link img {
    height: 61px;
  }
}
@media screen and (width <= 767px) {
  .l-header__logo-link img {
    height: 36px;
  }
}
.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__sub {
  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;
  grid-column: 3;
  height: 100%;
  pointer-events: auto;
}
.l-header_toggleDrawer {
  display: none;
}
@media screen and (width <= 767px) {
  .l-header_toggleDrawer {
    z-index: 1001;
    display: block;
    width: 54px;
    position: relative;
    height: 54px;
    cursor: pointer;
    background: #FFAA36;
    border-radius: 0 0 0 20px;
    bottom: 3px;
  }
  .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 <= 767px) and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span {
    width: 28px;
    height: 2px;
  }
}
@media screen and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:first-child {
    top: -22.5px;
  }
}
@media screen and (width <= 767px) and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:first-child {
    top: -15px;
  }
}
@media screen and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:last-child {
    top: 22.5px;
  }
}
@media screen and (width <= 767px) and (width <= 767px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:last-child {
    top: 15px;
  }
}
@media screen and (width <= 767px) {
  .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;
}

.c-side__box {
  position: fixed;
  right: 0;
  top: 150px;
  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: 20px;
  z-index: 5;
}
@media screen and (width <= 1250px) {
  .c-side__box {
    top: 125px;
  }
}
@media screen and (width <= 767px) {
  .c-side__box {
    position: fixed;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    bottom: 0;
    top: unset;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}

.c-side__btn {
  width: 66px;
  height: 260px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  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;
  border-radius: 15px 0 0 15px;
  gap: 15px;
}
@media screen and (width <= 1250px) {
  .c-side__btn {
    height: 225px;
  }
}
@media screen and (width <= 767px) {
  .c-side__btn {
    border-radius: 15px 15px 0 0;
    width: calc((95% - 15px) / 2);
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    font-size: 15px;
    height: 56px;
  }
}
.c-side__btn span {
  position: relative;
  background: #fff;
  border-radius: 50px;
  width: 30px;
  height: 30px;
}
@media screen and (width <= 1250px) {
  .c-side__btn span {
    width: 25px;
    height: 25px;
  }
}
@media screen and (width <= 767px) {
  .c-side__btn span {
    display: none;
  }
}
.c-side__btn 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: #82B83E;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  left: 56%;
  top: 50%;
}
.c-side__btn.bg__blue span:before {
  background-color: #46AFD5;
}

.l-footer__contact {
  margin: 120px 0;
}
@media screen and (width <= 959px) {
  .l-footer__contact {
    margin: 60px 0;
  }
}
.l-footer__contact .g-font__heading {
  margin-bottom: 70px;
}
.l-footer__contact > p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  max-width: 90%;
}
.l-footer__contact-content {
  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: 40px;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .l-footer__contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__contact-item {
  width: calc(50% - 20px);
  border: 4px solid #82B83E;
  border-radius: 15px;
  background: #E9F4DC;
  padding: 20px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 180px;
}
.l-footer__contact-item.-blue {
  background: #EAF7FC;
  border: 4px solid #46AFD5;
}
@media screen and (width <= 767px) {
  .l-footer__contact-item {
    width: 100%;
    padding: 15px;
    height: 120px;
  }
}
.l-footer__contact-head {
  position: absolute;
  top: -20px;
  width: 160px;
  height: 40px;
  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-weight: bold;
  font-size: 18px;
  border-radius: 50px;
}
@media screen and (width <= 767px) {
  .l-footer__contact-head {
    height: 40px;
  }
}
.l-footer__contact-tell {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (width <= 767px) {
  .l-footer__contact-tell {
    font-size: 25px;
  }
}
.l-footer__contact-form {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-right: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}
.l-footer__contact-form span {
  position: absolute;
  background: #46AFD5;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
}
.l-footer__contact-form 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: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  top: 50%;
  left: 56%;
}
.l-footer__partner {
  background: #FFFAEE;
  border-radius: 50px;
  padding: 120px 0;
}
@media screen and (width <= 959px) {
  .l-footer__partner {
    padding: 60px 0;
  }
}
.l-footer__partner .c-block__flex {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.l-footer__partner .p-front__heading-large {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}
.l-footer__partner .p-front__heading-large span {
  font-size: 28px;
}
.l-footer__partner .p-front__heading-large span:before {
  height: 14px;
}
@media screen and (width <= 959px) {
  .l-footer__partner .p-front__heading-large span {
    font-size: 23px;
  }
}
.l-footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 5% 50px;
  gap: 90px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 959px) {
  .l-footer__inner {
    gap: 45px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__inner {
    padding: 30px 5% 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.l-footer__logo {
  max-width: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.l-footer__logo > img {
  width: 100%;
}
@media screen and (width <= 959px) {
  .l-footer__logo > img {
    width: 180px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__logo > img {
    margin: 0 auto;
  }
}
.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;
  }
}
.l-footer__nav-head {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 15px;
  padding-right: 35px;
  display: block;
  border-bottom: 1px solid #DBD6CE;
  width: 150px;
  margin-bottom: 15px;
  position: relative;
}
.l-footer__nav-head.off {
  opacity: 0.5;
  pointer-events: none;
}
.l-footer__nav-head.top {
  margin-top: 15px;
}
@media screen and (width <= 360px) {
  .l-footer__nav-head {
    padding-right: 20px;
    width: 140px;
  }
}
@media screen and (width <= 330px) {
  .l-footer__nav-head {
    width: 130px;
    font-size: 13px;
  }
}
.l-footer__nav-head: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: #333;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 5px;
  right: 0;
}
.l-footer__nav-head:nth-child(2) {
  margin-top: 30px;
}
.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 {
  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;
  background: #FFAA36;
  height: 80px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (width <= 767px) {
  .l-footer__copyright {
    padding: 20px 5%;
    height: auto;
  }
}

.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-top: var(--header-height, 0);
  padding-bottom: var(--footer-before, 0);
}

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

.g-font__heading {
  color: #333;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  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;
  gap: 60px;
}
@media screen and (width <= 959px) {
  .g-font__heading {
    gap: 30px;
    font-size: 20px;
    word-break: auto-phrase;
  }
}
@media screen and (width <= 767px) {
  .g-font__heading {
    width: 90%;
    margin: 0 auto;
    gap: 15px;
  }
}
.g-font__heading-side {
  width: 200px;
  height: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 959px) {
  .g-font__heading-side {
    height: 3px;
    width: 100px;
  }
}
@media screen and (width <= 767px) {
  .g-font__heading-side {
    width: 60px;
  }
}
.g-font__heading-side div {
  width: 25%;
  height: 100%;
}
.g-font__heading .c-tag {
  margin: 0 auto 10px;
  font-size: 22px;
  padding: 10px 22px;
}
@media screen and (width <= 767px) {
  .g-font__heading .c-tag {
    font-size: 18px;
    padding: 5px 15px;
    line-height: 1.5em;
  }
}

.g-font__heading2 {
  color: #fff;
  border-radius: 50px;
  padding: 15px;
  font-size: 28px;
  text-align: center;
}
@media screen and (width <= 959px) {
  .g-font__heading2 {
    font-size: 22px;
  }
}
@media screen and (width <= 767px) {
  .g-font__heading2 {
    padding: 10px;
    font-size: 20px;
  }
}
.g-font__heading2 span {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 7.5px;
}
@media screen and (width <= 767px) {
  .g-font__heading2 span {
    font-size: 16px;
  }
}

.g-font__support {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
  position: relative;
  font-size: 18px;
  text-align: center;
}
@media screen and (width <= 767px) {
  .g-font__support {
    max-width: 75%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    margin-bottom: 60px;
  }
}
.g-font__support:before {
  position: absolute;
  content: url(../images/common/support_left.svg);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -45px;
}
@media screen and (width <= 767px) {
  .g-font__support:before {
    -webkit-transform: translateY(-50%) scale(0.75);
            transform: translateY(-50%) scale(0.75);
    left: -40px;
  }
}
.g-font__support:after {
  position: absolute;
  content: url(../images/common/support_right.svg);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -45px;
}
@media screen and (width <= 767px) {
  .g-font__support:after {
    -webkit-transform: translateY(-50%) scale(0.75);
            transform: translateY(-50%) scale(0.75);
    right: -40px;
  }
}

.p-front__heading-normal {
  font-size: 28px;
  line-height: 1.5em;
  margin-bottom: 25px;
}
@media screen and (width <= 959px) {
  .p-front__heading-normal {
    font-size: 22px;
  }
}
@media screen and (width <= 767px) {
  .p-front__heading-normal {
    font-size: 20px;
  }
}

.p-front__heading-large {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.8;
  margin: 0;
}
@media screen and (width <= 959px) {
  .p-front__heading-large {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media screen and (width <= 767px) {
  .p-front__heading-large {
    font-size: 24px;
  }
}
.p-front__heading-large span {
  position: relative;
  z-index: 0;
  font-weight: bold;
}
.p-front__heading-large span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 20px;
  bottom: 0;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .p-front__heading-large span:before {
    height: 15px;
  }
}
.p-front__heading-large span.-green:before {
  background: #D9EDBF;
}
.p-front__heading-large span.-pink:before {
  background: #FFEAF4;
}
.p-front__heading-large span.-orange:before {
  background: #FFEAB9;
}

.g-font__small {
  font-size: 14px;
}

.c-tag {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (width <= 767px) {
  .c-tag {
    font-size: 16px;
  }
}

.c-list__check li {
  margin-bottom: 31px;
  padding-left: 55px;
  font-size: 18px;
  position: relative;
}
@media screen and (width <= 767px) {
  .c-list__check li {
    font-size: 16px;
    margin-bottom: 25px;
    padding-left: 40px;
  }
}
.c-list__check li:last-child {
  margin-bottom: 0;
}
.c-list__check li::before {
  position: absolute;
  content: url(../images/common/check.svg);
  left: 0;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (width <= 767px) {
  .c-list__check li::before {
    left: -7px;
    -webkit-transform: translateY(-50%) scale(0.75);
            transform: translateY(-50%) scale(0.75);
  }
}

.l-page-head {
  display: none;
  background-color: #0068b7;
  position: relative;
  overflow: clip;
  padding-inline: var(--inline-outer-size, 0);
}
.l-page__heading {
  position: relative;
}
@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: #FFAA36;
  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;
  }
}
@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%, 1200px);
  margin: 0 auto;
}
.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;
}
.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 #FFAA36;
}
@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: #FFAA36;
  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 #FFAA36;
}
@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: #FFAA36;
  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: 300px;
}
@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;
  }
}
.l-archive__category .c-card__article-category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  border: 1px solid #FFAA36;
  color: #FFAA36;
  background: #fff;
}
@media screen and (width <= 959px) {
  .l-archive__category .c-card__article-category {
    font-size: 16px;
  }
}
.l-archive__category a:hover {
  background: #FFAA36;
  color: #fff;
}
.l-archive__category a.active {
  background: #FFAA36;
  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 #FFAA36;
  color: #FFAA36;
}
.c-pagination__page--now {
  background: #FFAA36;
  color: #fff;
}

.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;
}
@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: #82B83E;
  -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;
}
.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: #FFAA36;
  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__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 #FFAA36;
  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-front-fv {
  margin-top: 40px;
}
.p-front-fv__inner {
  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: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  position: relative;
}
@media screen and (width <= 959px) {
  .p-front-fv__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-front-fv__inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  background: #FFF6E0;
  top: 5%;
  z-index: -1;
}
.p-front-fv__main {
  width: auto;
}
.p-front-fv__main-head {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 18px;
  margin: 0 auto 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 25px;
}
@media screen and (width <= 959px) {
  .p-front-fv__main-head {
    font-size: 20px;
    word-break: auto-phrase;
    text-align: center;
    max-width: 90%;
  }
}
.p-front-fv__main-logo {
  margin: 0 auto 40px;
}
@media screen and (width <= 959px) {
  .p-front-fv__main-logo {
    margin-bottom: 20px;
    max-width: 90%;
  }
}
.p-front-fv__main-tag {
  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;
  color: #888888;
  font-weight: bold;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-front-fv__main-tag span {
  padding: 4px 18px;
  font-size: 18px;
  color: #fff;
  border-radius: 50px;
}
@media screen and (width <= 959px) {
  .p-front-fv__main-tag span {
    font-size: 16px;
  }
}
.p-front-fv__main-achievements {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (width <= 767px) {
  .p-front-fv__main-achievements {
    gap: 5px;
  }
}
.p-front-fv__main-achievements-item {
  position: relative;
}
.p-front-fv__main-achievements-item p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
@media screen and (width <= 959px) {
  .p-front-fv__main-achievements-item p {
    font-size: 16px;
  }
}
.p-front-fv__main-achievements-item p span {
  color: #F0632C;
  font-size: 45px;
}
@media screen and (width <= 959px) {
  .p-front-fv__main-achievements-item p span {
    font-size: 30px;
  }
}
.p-front-fv__main-subtext {
  text-align: center;
  color: #5E5E5E;
  font-size: 16px;
  margin-top: 25px;
  font-weight: bold;
}
@media screen and (width <= 767px) {
  .p-front-fv__main-subtext {
    margin-top: 15px;
    font-size: 15px;
  }
}
.p-front-fv__img {
  width: 50%;
}
@media screen and (width <= 959px) {
  .p-front-fv__img {
    display: none;
  }
}

.p-front__examples {
  overflow: hidden;
  margin-top: 135px;
}
@media screen and (width <= 959px) {
  .p-front__examples {
    margin-top: 65px;
  }
}
.p-front__examples .swiper {
  margin-top: 70px;
  width: 120%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (width <= 959px) {
  .p-front__examples .swiper {
    width: 100%;
    margin-top: 35px;
  }
}
@media screen and (width <= 767px) {
  .p-front__examples .swiper {
    width: 100%;
  }
}

.swiper-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media screen and (width <= 959px) {
  .swiper-button {
    margin-top: 20px;
  }
}
.swiper-button div {
  cursor: pointer;
}
@media screen and (width <= 959px) {
  .swiper-button div img {
    width: 45px;
  }
}

.p-front__case {
  margin-top: 130px;
  margin-bottom: 120px;
}
@media screen and (width <= 959px) {
  .p-front__case {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.p-front__case-heading {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  position: relative;
  margin-bottom: 120px;
}
@media screen and (width <= 959px) {
  .p-front__case-heading {
    margin-bottom: 60px;
    font-size: 20px;
  }
}
.p-front__case-heading span {
  color: #FFAA36;
}
.p-front__case-heading:after {
  position: absolute;
  content: url(../images/front/heading-under.svg);
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (width <= 959px) {
  .p-front__case-heading:after {
    bottom: -50px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
  }
}
.p-front__case-list {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  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__case-list {
    gap: 20px;
  }
}
.p-front__case-list-item {
  width: calc(50% - 20px);
  border-radius: 15px;
  background: #EAF7FC;
}
@media screen and (width <= 767px) {
  .p-front__case-list-item {
    width: 100%;
  }
}
.p-front__case-list-head {
  padding: 20px 30px 0px;
  font-size: 18px;
  color: #46AFD5;
  font-weight: bold;
}
@media screen and (width <= 767px) {
  .p-front__case-list-head {
    padding: 15px 20px 0;
    font-size: 16px;
  }
}
.p-front__case-list-text {
  padding: 20px 30px 30px;
  font-size: 18px;
}
@media screen and (width <= 767px) {
  .p-front__case-list-text {
    padding: 15px 20px;
    font-size: 16px;
  }
}
.p-front__case-list-text span {
  color: #46AFD5;
}

.p-front__service {
  background: #FFEAB9;
  padding: 120px 0;
}
@media screen and (width <= 959px) {
  .p-front__service {
    padding: 60px 0 80px;
  }
}
.p-front__service-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
  margin: 110px auto 0;
}
@media screen and (width <= 959px) {
  .p-front__service-box {
    gap: 90px 20px;
  }
}
@media screen and (width <= 767px) {
  .p-front__service-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 75px;
  }
}
.p-front__service-item {
  background: #fff;
  border: 5px solid #82B83E;
  border-radius: 20px;
  padding: 95px 3% 60px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-front__service-item {
    padding-top: 50px;
  }
}
.p-front__service-item.-full {
  border: 5px solid #F17CB4;
}
.p-front__service-item figure {
  aspect-ratio: 1/0.95;
  width: 90%;
  max-width: 387px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-front__service-item img {
  margin: 0 auto;
}
.p-front__service-item .g-font__heading2 {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95%;
}
@media screen and (width <= 767px) {
  .p-front__service-item .g-font__heading2 {
    top: -40px;
    width: 90%;
  }
}
.p-front__service .c-btn__detail {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -28px;
}
@media screen and (width <= 767px) {
  .p-front__service .c-btn__detail {
    bottom: -25px;
  }
}

.p-front__self {
  background: #E9F4DC;
  padding: 120px 0;
}
@media screen and (width <= 959px) {
  .p-front__self {
    padding: 60px 0 80px;
  }
}
.p-front__self .p-front__heading-normal {
  word-break: auto-phrase;
}
.p-front__self-box {
  width: 90%;
  max-width: 1200px;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  padding: 115px 5% 70px;
}
@media screen and (width <= 959px) {
  .p-front__self-box {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
.p-front__self-box .g-font__heading2 {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 522px;
}
@media screen and (width <= 959px) {
  .p-front__self-box .g-font__heading2 {
    top: -40px;
  }
}
@media screen and (width <= 767px) {
  .p-front__self-box .g-font__heading2 {
    top: -40px;
    width: 90%;
  }
}
.p-front__self-block {
  margin-top: 120px;
  overflow: hidden;
}
@media screen and (width <= 959px) {
  .p-front__self-block {
    margin-top: 60px;
  }
}
.p-front__self-block .p-front__heading-large {
  margin-bottom: 70px;
}
@media screen and (width <= 959px) {
  .p-front__self-block .p-front__heading-large {
    margin-bottom: 35px;
    word-break: auto-phrase;
  }
}
.p-front__self-block .p-front__case-list-item {
  background: none;
  border-radius: 0;
  position: relative;
}
.p-front__self-block .p-front__case-list-item:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0;
  border-right: 1px solid #CAE0AC;
  top: 0;
  right: -20px;
}
.p-front__self-block .p-front__case-list-item:nth-child(2n):before {
  display: none;
}
.p-front__self-block .p-front__case-list-item:after {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  border-top: 1px solid #CAE0AC;
  top: -25px;
  right: 0;
}
@media screen and (width <= 767px) {
  .p-front__self-block .p-front__case-list-item:after {
    top: -15px;
  }
}
.p-front__self-block .p-front__case-list-item:nth-child(1):after {
  display: none;
}
.p-front__self-block .p-front__case-list-item:nth-child(2):after {
  display: none;
}
@media screen and (width <= 767px) {
  .p-front__self-block .p-front__case-list-item:nth-child(2):after {
    display: block;
  }
}
.p-front__self-block .p-front__case-list-head {
  padding: 20px 0 0px;
  color: #8EC14E;
}
@media screen and (width <= 767px) {
  .p-front__self-block .p-front__case-list-head {
    padding: 15px 0 0px;
  }
}
.p-front__self-block .p-front__case-list-text {
  padding: 20px 0 0;
  min-height: calc(20px + 4.5em);
}
@media screen and (width <= 767px) {
  .p-front__self-block .p-front__case-list-text {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
.p-front__self .swiper {
  width: 100%;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
@media screen and (width <= 959px) {
  .p-front__self .swiper {
    width: 140%;
  }
}
@media screen and (width <= 767px) {
  .p-front__self .swiper {
    width: 175%;
  }
}
.p-front__self .swiper p {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}
.p-front__self-detail {
  margin-top: 80px;
  text-align: center;
}
@media screen and (width <= 959px) {
  .p-front__self-detail {
    margin-top: 40px;
  }
}
.p-front__self-detail .c-btn__detail {
  margin: 15px auto 0;
}
.p-front__self-detail .p-front__heading-large {
  margin-bottom: 20px;
}
@media screen and (width <= 767px) {
  .p-front__self-detail .p-front__heading-large span {
    font-size: 20px;
  }
  .p-front__self-detail .p-front__heading-large span:before {
    display: none;
  }
}
.p-front__self .p-front__case-list {
  width: 100%;
}
@media screen and (width <= 767px) {
  .p-front__self .p-front__case-list {
    gap: 30px;
  }
}
.p-front__self.-full {
  background: #FFEAF4;
  margin-bottom: 120px;
}
.p-front__self.-full .p-front__self-block .p-front__case-list-item:before {
  border-right: 1px solid #F0D2E0;
}
.p-front__self.-full .p-front__self-block .p-front__case-list-item:after {
  border-top: 1px solid #F0D2E0;
}
.p-front__self.-full .p-front__self-block .p-front__case-list-head {
  color: #F17CB4;
}
.p-front__self.-full .p-front__self-block .p-front__heading-normal {
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}
@media screen and (width <= 959px) {
  .p-front__self.-full .p-front__self-block .p-front__heading-normal {
    font-size: 20px;
  }
}
.p-front__self.-full .p-front__self-block .tyui {
  text-align: center;
  margin-bottom: 25px;
}
.p-front__self.-full .swiper {
  width: 100%;
}
@media screen and (width <= 959px) {
  .p-front__self.-full {
    margin-bottom: 60px;
  }
}

.p-front__table .g-font__heading {
  line-height: 1.5;
}
.p-front__table-box {
  width: 90%;
  max-width: 1200px;
  margin: 70px auto 30px;
}
@media screen and (width <= 959px) {
  .p-front__table-box {
    margin: 40px auto 30px;
  }
}
.p-front__table-inner {
  width: 100%;
}
@media screen and (width <= 959px) {
  .p-front__table-inner {
    overflow-x: scroll;
  }
}
.p-front__table table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  border: none;
  margin: 0 auto 30px;
}
@media screen and (width <= 959px) {
  .p-front__table table {
    width: 960px;
  }
}
@media screen and (width <= 767px) {
  .p-front__table table {
    margin-bottom: 15px;
    width: 777px;
  }
}
.p-front__table th {
  border: none;
}
.p-front__table th.bg__green {
  text-align: center;
  border-radius: 7.5px 7.5px 0 0;
  border: none;
  width: 40%;
}
.p-front__table th.bg__pink {
  text-align: center;
  border-radius: 7.5px 7.5px 0 0;
  border: none;
  width: 40%;
}
.p-front__table .head {
  font-size: 13px;
  color: #fff;
}
.p-front__table .title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.p-front__table td:first-child {
  background: #F4F4F4;
  font-weight: bold;
}
.p-front__table td {
  border: 1px solid #BCBCBC;
  padding: 15px 20px;
}
@media screen and (width <= 767px) {
  .p-front__table td {
    padding: 10px 15px;
  }
}
.p-front__table .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.p-front__table .flex span {
  width: 4em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-front__table .flex:last-child {
  margin-bottom: 0;
}
@media screen and (width <= 959px) {
  .p-front__table {
    margin-bottom: 60px;
  }
}

.p-front__orange {
  padding: 120px 0;
  background: #FFFAEE;
  border-radius: 50px;
  margin-bottom: 120px;
}
@media screen and (width <= 959px) {
  .p-front__orange {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}
.p-front__orange .c-block__flex {
  max-width: 1200px;
  width: 90%;
  margin: 70px auto 0;
}
@media screen and (width <= 767px) {
  .p-front__orange .c-block__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 40px;
  }
}
.p-front__orange .c-btn__detail {
  margin-top: 50px;
}
@media screen and (width <= 767px) {
  .p-front__orange .c-btn__detail {
    margin: 25px auto 10px;
  }
}
@media screen and (width <= 767px) {
  .p-front__orange.company .c-block__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
@media screen and (width <= 1100px) {
  .p-front__orange.company .p-front__heading-normal {
    font-size: 25px;
  }
}
@media screen and (width <= 959px) {
  .p-front__orange.company .p-front__heading-normal {
    font-size: 20px;
  }
}
@media screen and (width <= 767px) {
  .p-front__orange.company .p-front__heading-normal br {
    display: none;
  }
}
.p-front__orange li span {
  display: block;
  color: #FFAA36;
  font-weight: bold;
}
.p-front__orange .c-list__check li::before {
  top: -5px;
  -webkit-transform: unset;
          transform: unset;
}
@media screen and (width <= 767px) {
  .p-front__orange .c-list__check li::before {
    top: -8px;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}

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

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

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

.p-about__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-about__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-about__partner-img {
  max-width: 450px;
  width: 50%;
  height: auto;
  border-radius: 20px;
}
@media screen and (width <= 959px) {
  .p-about__partner-img {
    width: 100%;
  }
}
@media screen and (width <= 959px) {
  .p-about__partner-content {
    text-align: center;
  }
}
.p-about__partner-title {
  margin-bottom: 10px;
}
@media screen and (width <= 959px) {
  .p-about__partner .c-btn__detail.-long {
    margin-top: 20px;
    text-align: left;
  }
}
@media screen and (width <= 767px) {
  .p-about__partner .c-btn__detail.-long {
    font-size: 15px;
  }
}

.p-recpittan__first {
  margin-top: 60px;
}
@media screen and (width <= 959px) {
  .p-recpittan__first {
    margin-top: 30px;
  }
}
.p-recpittan__first .g-font__support {
  margin-bottom: 30px;
  word-break: auto-phrase;
  text-align: center;
}
@media screen and (width <= 767px) {
  .p-recpittan__first .g-font__support {
    margin-bottom: 20px;
  }
}
.p-recpittan__first .c-block__flex h1 {
  text-align: center;
  font-weight: bold;
  font-size: 56px;
  color: #82B83E;
  margin-bottom: 30px;
}
@media screen and (width <= 1060px) {
  .p-recpittan__first .c-block__flex h1 {
    font-size: 50px;
  }
}
@media screen and (width <= 959px) {
  .p-recpittan__first .c-block__flex h1 {
    font-size: 36px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__first .c-block__flex h1 {
    margin-bottom: 15px;
  }
}
.p-recpittan__first .c-block__flex h1 span {
  font-weight: bold;
  font-size: 36px;
  color: #82B83E;
  display: block;
  margin-bottom: 20px;
}
@media screen and (width <= 959px) {
  .p-recpittan__first .c-block__flex h1 span {
    font-size: 24px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__first .c-block__flex h1 span {
    margin-bottom: 15px;
  }
}
.p-recpittan__first .c-block__flex {
  margin-bottom: 80px;
  margin-top: 50px;
}
@media screen and (width <= 959px) {
  .p-recpittan__first .c-block__flex {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__first .c-block__flex {
    gap: 20px;
  }
}
@media screen and (width <= 959px) {
  .p-recpittan__first .g-font__heading {
    margin-bottom: 50px;
  }
}

.p-recpittan__second {
  margin-top: 150px;
}
@media screen and (width <= 959px) {
  .p-recpittan__second {
    margin-bottom: 75px;
  }
}
.p-recpittan__second .g-font__small {
  text-align: center;
  margin: 30px auto 80px;
}
@media screen and (width <= 767px) {
  .p-recpittan__second .p-front__heading-large {
    word-break: auto-phrase;
  }
}

@media screen and (width <= 959px) {
  .p-recpittan__second {
    margin-top: 75px;
  }
}

.p-recpittan__recreation {
  max-width: 960px;
  margin: 70px auto 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 50px 25px;
}
@media screen and (width <= 959px) {
  .p-recpittan__recreation {
    margin-top: 40px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__recreation {
    gap: 30px 20px;
  }
}
.p-recpittan__recreation-item {
  width: calc((100% - 50px) / 3);
}
@media screen and (width <= 767px) {
  .p-recpittan__recreation-item {
    width: calc((100% - 20px) / 2);
  }
}
.p-recpittan__recreation-item figure {
  aspect-ratio: 4/3;
  background: gray;
  border-radius: 20px;
  margin-bottom: 10px;
  overflow: hidden;
}
.p-recpittan__recreation-item figure img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recpittan__recreation-item p:nth-child(2) {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (width <= 767px) {
  .p-recpittan__recreation-item p:nth-child(2) {
    font-size: 16px;
  }
}

.p-recpittan__download {
  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: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
@media screen and (width <= 767px) {
  .p-recpittan__download {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.p-recpittan__download p {
  color: #82B83E;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (width <= 959px) {
  .p-recpittan__download p {
    font-size: 24px;
  }
}
.p-recpittan__download figure {
  width: 100%;
  max-width: 300px;
  height: auto;
  background: gray;
}

.p-recpittan__review {
  margin-bottom: 75px;
}
.p-recpittan__review .g-font__heading2 {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
}
@media screen and (width <= 767px) {
  .p-recpittan__review .g-font__heading2 {
    margin-bottom: 20px;
  }
}
.p-recpittan__review ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (width <= 767px) {
  .p-recpittan__review ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-recpittan__review ul li {
  width: calc((100% - 10px) / 3);
  border: 1px solid #CAE0AC;
  padding-top: 15px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding-bottom: 15px;
  background: #E9F4DC;
}
@media screen and (width <= 767px) {
  .p-recpittan__review ul li {
    width: 100%;
    padding-bottom: 0;
  }
}
.p-recpittan__review ul li .title {
  padding: 0 15px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #82B83E;
}
.p-recpittan__review ul li p {
  padding: 0 15px;
}
.p-recpittan__review ul li .date {
  padding: 0 15px;
  font-size: 14px;
  margin-top: 15px;
  color: #888888;
}
.p-recpittan__review ul li div {
  display: none;
}
@media screen and (width <= 767px) {
  .p-recpittan__review ul li div {
    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;
    padding: 10px 15px;
    gap: 10px;
    background: #8EC14E;
    margin-top: 15px;
  }
  .p-recpittan__review ul li div figure {
    aspect-ratio: 4/3;
    width: 75px;
    overflow: hidden;
    background: rgb(174, 174, 174);
    border-radius: 5px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .p-recpittan__review ul li div figure img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-recpittan__review ul li div p {
    padding: 0;
    color: #fff;
  }
}
.p-recpittan__review ul.bottom {
  border-top: none;
}
@media screen and (width <= 767px) {
  .p-recpittan__review ul.bottom {
    display: none;
  }
}
.p-recpittan__review ul.bottom li {
  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;
  padding: 10px 15px;
  gap: 10px;
  background: #8EC14E;
}
.p-recpittan__review ul.bottom li figure {
  aspect-ratio: 4/3;
  width: 75px;
  overflow: hidden;
  background: rgb(174, 174, 174);
  border-radius: 5px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-recpittan__review ul.bottom li figure img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recpittan__review ul.bottom li p {
  padding: 0;
  color: #fff;
}

.p-recpittan__third {
  margin-bottom: 150px;
}
@media screen and (width <= 959px) {
  .p-recpittan__third {
    margin-bottom: 75px;
  }
}
.p-recpittan__third .p-front__case-heading span {
  color: #46AFD5;
}
.p-recpittan__third .g-font__large {
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 25px;
}
@media screen and (width <= 959px) {
  .p-recpittan__third .g-font__large {
    font-size: 22px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__third .g-font__large {
    margin-bottom: 3dvb;
    font-size: 20px;
  }
}

.p-recpittan__comparison {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .p-recpittan__comparison {
    gap: 30px;
  }
}
.p-recpittan__comparison div {
  width: 50%;
  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;
}
@media screen and (width <= 767px) {
  .p-recpittan__comparison div {
    width: 100%;
  }
}
.p-recpittan__comparison p {
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 15px 15px 0 0;
  font-size: 20px;
}
@media screen and (width <= 767px) {
  .p-recpittan__comparison p {
    font-size: 18px;
  }
}
.p-recpittan__comparison ul {
  border: 1px solid #BCBCBC;
  padding: 20px;
  height: 100%;
}
.p-recpittan__comparison ul li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 15px;
}
.p-recpittan__comparison ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  color: #82B83E;
}
.p-recpittan__comparison ul.recpittan {
  border-left: none;
}
@media screen and (width <= 767px) {
  .p-recpittan__comparison ul.recpittan {
    border-left: 1px solid #BCBCBC;
  }
}
.p-recpittan__comparison ul.recpittan li:before {
  color: #F17CB4;
}

.p-recpittan__fourth {
  margin-bottom: 75px;
}
.p-recpittan__fourth .p-front__heading-normal {
  text-align: center;
  margin-top: 50px;
}
@media screen and (width <= 959px) {
  .p-recpittan__fourth .p-front__heading-normal {
    font-size: 18px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__fourth .p-front__heading-normal {
    margin-top: 30px;
  }
}
.p-recpittan__fourth .p-front__heading-normal span {
  font-size: 20px;
}
@media screen and (width <= 959px) {
  .p-recpittan__fourth .p-front__heading-normal span {
    font-size: 16px;
  }
}
.p-recpittan__fourth .g-font__small {
  text-align: center;
  margin: 20px auto 40px;
}

.p-recpittan__price {
  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: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .p-recpittan__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-recpittan__price div {
  border: 2px solid #82B83E;
  padding: 15px;
  width: 300px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  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;
  height: 90px;
}
@media screen and (width <= 767px) {
  .p-recpittan__price div {
    width: 100%;
    max-width: 300px;
  }
}
.p-recpittan__price div p {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (width <= 959px) {
  .p-recpittan__price div p {
    font-size: 20px;
  }
}
.p-recpittan__price div p span {
  font-size: 16px;
  font-weight: bold;
}
.p-recpittan__price .plus {
  font-size: 36px;
  color: #82B83E;
}

.p-recpittan__sum {
  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: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (width <= 959px) {
  .p-recpittan__sum {
    font-size: 28px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__sum {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-recpittan__sum .sum {
  background: #82B83E;
  color: #fff;
  font-size: 24px;
  padding: 15px;
  border-radius: 50px;
  aspect-ratio: 1;
  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;
  letter-spacing: 0;
}
@media screen and (width <= 959px) {
  .p-recpittan__sum .sum {
    font-size: 20px;
  }
}
.p-recpittan__sum .small {
  font-size: 20px;
  position: relative;
  top: 10px;
}
@media screen and (width <= 767px) {
  .p-recpittan__sum .small {
    top: 0;
  }
}

.p-recpittan__fifth .p-front__case-list {
  width: 100%;
  margin-top: 60px;
  gap: 30px 20px;
}
.p-recpittan__fifth .p-front__case-list-item {
  width: calc((100% - 40px) / 3);
  background: #E9F4DC;
  padding-bottom: 20px;
}
@media screen and (width <= 959px) {
  .p-recpittan__fifth .p-front__case-list-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__fifth .p-front__case-list-item {
    width: 100%;
  }
}
.p-recpittan__fifth .p-front__case-list-title {
  color: #82B83E;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 30px 10px;
}
.p-recpittan__fifth .p-front__case-list-text {
  padding: 0 30px 20px;
  font-size: 16px;
}
.p-recpittan__fifth .p-front__case-list a {
  display: block;
  padding: 0 25px 5px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 30px;
  border-bottom: 1px solid #000;
  position: relative;
  font-size: 14px;
  font-weight: bold;
}
.p-recpittan__fifth .p-front__case-list a:after {
  position: absolute;
  content: "";
  width: 13px;
  height: 25px;
  -webkit-mask-image: url(../images/common/arrow_step.svg);
          mask-image: url(../images/common/arrow_step.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #333333;
  right: 0;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  top: -2px;
}

.p-recpittan__match {
  margin: 80px auto 80px;
  text-align: center;
}
@media screen and (width <= 767px) {
  .p-recpittan__match {
    margin: 40px auto;
  }
}
.p-recpittan__match .c-btn__detail.-ex {
  margin: 15px auto 50px;
}
@media screen and (width <= 767px) {
  .p-recpittan__match .c-btn__detail.-ex {
    bottom: unset;
    margin-bottom: 30px;
    height: 56px;
  }
}

.p-front__case .c-btn__detail.-ex {
  margin: 50px auto 70px;
}
@media screen and (width <= 767px) {
  .p-front__case .c-btn__detail.-ex {
    bottom: unset;
    margin: 50px auto 70px;
    height: 56px;
  }
}

.p-recpittan__first.-full {
  margin-bottom: 150px;
}
@media screen and (width <= 959px) {
  .p-recpittan__first.-full {
    margin-bottom: 75px;
  }
}
.p-recpittan__first.-full .c-block__flex h1 {
  color: #F17CB4;
  font-size: 49px;
}
@media screen and (width <= 1300px) {
  .p-recpittan__first.-full .c-block__flex h1 {
    font-size: 36px;
  }
}
@media screen and (width <= 959px) {
  .p-recpittan__first.-full .c-block__flex h1 {
    font-size: 29px;
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__first.-full .c-block__flex h1 {
    font-size: 8vw;
  }
}
.p-recpittan__first.-full .c-block__flex h1 span {
  color: #F17CB4;
}
.p-recpittan__first.-full .p-front__case-heading span {
  color: #46AFD5;
}
.p-recpittan__first.-full .p-front__case-list {
  width: 100%;
  margin-top: 60px;
  gap: 30px 20px;
}
.p-recpittan__first.-full .p-front__case-list-item {
  width: calc((100% - 40px) / 3);
  background: #EAF7FC;
  padding-bottom: 20px;
}
@media screen and (width <= 959px) {
  .p-recpittan__first.-full .p-front__case-list-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__first.-full .p-front__case-list-item {
    width: 100%;
  }
}
.p-recpittan__first.-full .p-front__case-list-title {
  color: #46AFD5;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 30px 10px;
}
.p-recpittan__first.-full .p-front__case-list-text {
  padding: 0 30px 20px;
  font-size: 16px;
}
.p-recpittan__first.-full .p-front__heading-normal {
  word-break: auto-phrase;
}
.p-recpittan__first.-full .g-font__heading {
  word-break: auto-phrase;
}

.p-recpittan__third.-full {
  margin-top: 150px;
}
@media screen and (width <= 959px) {
  .p-recpittan__third.-full {
    margin-top: 75px;
  }
}
.p-recpittan__third.-full .p-front__case-list {
  width: 100%;
  margin-top: 60px;
  gap: 30px 20px;
}
.p-recpittan__third.-full .p-front__case-list-item {
  width: calc((100% - 40px) / 3);
  background: #FFEAF4;
  padding-bottom: 20px;
}
@media screen and (width <= 959px) {
  .p-recpittan__third.-full .p-front__case-list-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (width <= 767px) {
  .p-recpittan__third.-full .p-front__case-list-item {
    width: 100%;
  }
}
.p-recpittan__third.-full .p-front__case-list-item.-long {
  width: 100%;
}
.p-recpittan__third.-full .p-front__case-list-title {
  color: #F17CB4;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 30px 10px;
}
.p-recpittan__third.-full .p-front__case-list-text {
  padding: 0 30px 20px;
  font-size: 16px;
}
.p-recpittan__third.-full .c-block__flex {
  margin-top: 30px;
}

.p-recpittan__third .p-front__table td span {
  font-size: 14px;
}

@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 */