@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

html {
  color: #24486D;
  background: #E6E5DA;
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: break-word;
}

body {
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}
.inner-block.wi-1280 {
  max-width: 1360px;
}
.inner-block.wi-800 {
  max-width: 880px;
}
.inner-block.wi-900 {
  max-width: 980px;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

.c-en {
  font-family: "Unbounded", sans-serif;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header.is-color, .c-header.is-open {
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .inner-block {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 100%;
  padding: 10px 30px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-header .logo {
  position: relative;
  z-index: 501;
}
.c-header .logo a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}
.c-header .logo img {
  max-height: 49px;
}
.c-header .logo .txt {
  color: #24486D;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.c-header .c-menu-wrap {
  margin-left: auto;
  margin-right: 30px;
}
.c-header .c-menu {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
}
.c-header .c-menu > li {
  position: relative;
}
.c-header .c-menu .inn {
  color: #24486D;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  padding-bottom: 2px;
}
.c-header .c-menu span.inn {
  padding-right: 10px;
}
.c-header .c-menu span.inn::after {
  background: #24486D;
  -webkit-mask-image: url("../img/common/ico-arrow02.svg");
          mask-image: url("../img/common/ico-arrow02.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  content: "";
  height: 5px;
  width: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .c-menu span.inn.is-open {
  color: #4C8FDB;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .c-menu span.inn.is-open::before {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
}
.c-header .c-menu span.inn.is-open::after {
  background: #4C8FDB;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  top: -2px;
}
.c-header .sub-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  padding-right: 22px;
  position: relative;
}
.c-header .sub-menu a::before {
  background: #fff;
  -webkit-mask-image: url("../img/common/ico-arrow.svg");
          mask-image: url("../img/common/ico-arrow.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  content: "";
  height: 12px;
  width: 12px;
  position: absolute;
  top: -10px;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-header .c-link-list span.inn {
  padding-right: 0;
}
.c-header .c-link-list span.inn::after {
  content: none;
}

.btn-menu {
  pointer-events: all;
  width: 30px;
  height: 30px;
  z-index: 999;
  position: relative;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-left: 30px;
}
.btn-menu .inn {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 20px;
}
.btn-menu .line:nth-of-type(2)::after {
  top: 0;
  content: "";
}
.btn-menu .line,
.btn-menu .line:nth-of-type(2)::after {
  border-radius: 2px;
  background: #24486D;
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.btn-menu .line:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.btn-menu .line:nth-of-type(3) {
  bottom: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.btn-menu .line:nth-of-type(2) {
  top: 9px;
}
.btn-menu .line:nth-of-type(1),
.btn-menu .line:nth-of-type(3) {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.btn-menu.is-open .line:nth-of-type(1), .btn-menu.is-open .line:nth-of-type(3) {
  -webkit-transform: scaleX(0) translate3d(0, 0, 0);
          transform: scaleX(0) translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.btn-menu.is-open .line:nth-of-type(2), .btn-menu.is-open .line:nth-of-type(2)::after {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.btn-menu.is-open .line:nth-of-type(2) {
  -webkit-transform: rotate(38deg) translate3d(0, 0, 0);
          transform: rotate(38deg) translate3d(0, 0, 0);
}
.btn-menu.is-open .line:nth-of-type(2)::after {
  -webkit-transform: rotate(105deg) translate3d(0, 0, 0);
          transform: rotate(105deg) translate3d(0, 0, 0);
}

.c-job-section {
  background: url("../img/common/bg-job.jpg.webp") no-repeat center center/cover;
  position: relative;
}
.c-job-section::before {
  background: rgba(76, 143, 219, 0.4);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-job-section .inner-block {
  padding-top: min(205px, 14.6428571429vw);
  padding-bottom: min(202px, 14.4285714286vw);
}
.c-job-section .loop-txt-wrap {
  position: absolute;
  left: 0;
}
.c-job-section .loop-txt-wrap.top {
  top: -3px;
}
.c-job-section .loop-txt-wrap.bottom {
  bottom: -3px;
}
.c-job-section .c-btn04 {
  padding: min(98px, 7vw) min(78px, 5.5714285714vw) min(100px, 7.1428571429vw);
}

.c-footer {
  background: #E6E5DA;
}
.c-footer .inner-block {
  padding: min(130px, 9.2857142857vw) min(40px, 2.8571428571vw) min(66px, 4.7142857143vw);
  max-width: 1340px;
}
.c-footer .c-menu-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(70px, 5vw);
}
.c-footer .c-menu-wrap .bold {
  color: #24486D;
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.1em;
  position: relative;
}
.c-footer .c-menu-wrap .sub-menu a {
  color: #24486D;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer .c-menu-wrap .sub-menu a + a {
  margin-top: min(5px, 0.3571428571vw);
}
.c-footer .logo-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
  margin: min(75px, 5.3571428571vw) 0 min(80px, 5.7142857143vw);
}
.c-footer .logo-wrap img {
  max-width: min(300px, 21.4285714286vw);
}
.c-footer .logo-wrap .txt {
  color: #24486D;
  font-size: 14px;
  font-weight: bold;
  padding-top: min(30px, 2.1428571429vw);
}
.c-footer .bottom-wrap {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: min(129px, 9.2142857143vw);
}
.c-footer .bottom-wrap .c-link-list a {
  line-height: 1.2;
}
.c-footer .bottom-wrap .copyright {
  color: #24486D;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

#pagetop {
  margin: 15px 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#pagetop a {
  color: #24486D;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
  position: relative;
  padding-right: 40px;
}
#pagetop a .inn {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(#4C8FDB), to(#4C8FDB));
  background-image: linear-gradient(90deg, #4C8FDB, #4C8FDB); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s ease-in-out;
  transition: background-size 0.3s ease-in-out;
}
#pagetop a::before {
  background: #24486D;
  content: "";
  border-radius: 100px;
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 14px;
  width: 30px;
}
#pagetop a::after {
  background: #fff;
  content: "";
  -webkit-mask-image: url(../img/common/ico-arrow02.svg);
          mask-image: url(../img/common/ico-arrow02.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 13px;
  margin: auto;
  height: 5px;
  width: 6px;
  z-index: 2;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-ttl-wrap {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.c-ttl01 {
  color: #24486D;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 39px;
}

.c-ttl02 {
  padding-left: min(89px, 6.3571428571vw);
  position: relative;
}
.c-ttl02::before {
  background: #fff;
  -webkit-mask-image: url("../img/common/ico-ttl.svg");
          mask-image: url("../img/common/ico-ttl.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  content: "";
  position: absolute;
  top: min(13px, 0.9285714286vw);
  left: 0;
  height: min(67px, 4.7857142857vw);
  width: min(59px, 4.2142857143vw);
}
.c-ttl02 .en {
  color: #fff;
  display: block;
  font-size: min(80px, 5.7142857143vw);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.c-ttl02 .ja {
  display: block;
  color: #fff;
  font-size: min(24px, 1.7142857143vw);
  font-weight: bold;
  margin-top: min(10px, 0.7142857143vw);
  letter-spacing: 0.1em;
}
.c-ttl02.navy .en, .c-ttl02.navy .ja {
  color: #24486D;
}
.c-ttl02.navy::before {
  background: #24486D;
}

.c-ttl03 {
  padding-left: min(99px, 7.0714285714vw);
  position: relative;
  color: #24486D;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.c-ttl03::before {
  content: "";
  position: absolute;
  background: url("../img/common/ico-ttl.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: min(59px, 4.2142857143vw);
  height: min(67px, 4.7857142857vw);
  top: min(12px, 0.8571428571vw);
  left: 0;
  right: auto;
  z-index: 0;
}
.c-ttl03.mb63 {
  margin-bottom: 63px;
}

.c-ttl04 {
  font-size: 24px;
  font-weight: bold;
  padding-left: 36px;
  position: relative;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.c-ttl04::before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  top: 12px;
  left: 0;
  right: auto;
  margin: auto;
  border-radius: 50%;
  background-color: #EBACBF;
}
.c-ttl04.green::before {
  background-color: #93DCA6;
}
.c-ttl04.blue::before {
  background-color: #4C8FDB;
}

.c-dot-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  padding-left: 1.5em;
  position: relative;
}
.c-dot-ttl.yellow::before {
  background-color: #FFDA4F;
}
.c-dot-ttl.green::before {
  background-color: #93DCA6;
}
.c-dot-ttl.pink::before {
  background-color: #EBACBF;
}
.c-dot-ttl.purple::before {
  background-color: #9691CD;
}
.c-dot-ttl.light-blue::before {
  background-color: #4C8FDB;
}
.c-dot-ttl::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-circle-blue.svg") no-repeat center center/contain;
          mask: url("../img/common/ico-circle-blue.svg") no-repeat center center/contain;
  background-color: #24486D;
  left: 0;
  top: 0;
  width: 0.7em;
  height: 1.5em;
}

.c-mv {
  padding-top: 89px;
  position: relative;
  overflow: hidden;
  padding-bottom: 78px;
}
.c-mv .c-breadcrumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 8px 0 27px 0;
}
.c-mv .c-breadcrumb-list > li {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #24486D;
  line-height: 1;
  padding-bottom: 5px;
}
.c-mv .c-breadcrumb-list > li + li {
  margin-left: 20px;
  padding-left: 26px;
  position: relative;
}
.c-mv .c-breadcrumb-list > li + li::before {
  content: "";
  position: absolute;
  background: url("../img/common/ico-circle-navy.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 6px;
  height: 6px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-mv .c-breadcrumb-list > li > a {
  color: #4C8FDB;
  position: relative;
}
.c-mv .mv-ttl {
  padding: 4px 0 78px;
  max-width: 1120px;
  margin: auto;
}
.c-mv .mv-ttl .ttl {
  color: #24486D;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.c-mv .mv-ttl .ttl::before {
  content: "";
  position: absolute;
  background: url("../img/common/bg_ico01.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: clamp(170px, 197px, min(197px, 14.0714285714vw));
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 194/90;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.c-mv .mv-ttl .ttl .big {
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  font-size: 80px;
  letter-spacing: 0.1em;
  display: block;
  padding-left: clamp(70px, 87px, min(87px, 6.2142857143vw));
  position: relative;
}
.c-mv .mv-ttl .ttl .big::before {
  content: "";
  position: absolute;
  background: url("../img/common/ico-ttl.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 59px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 59/67;
  top: 0;
  left: -3px;
  bottom: 0;
  margin: auto;
}
.c-mv .mv-ttl .ttl .small {
  display: block;
  padding-top: 11px;
  font-size: 24px;
  letter-spacing: 0.05em;
  padding-left: clamp(50px, 87px, min(87px, 6.2142857143vw));
}
.c-mv .mv-ttl + .lead {
  margin-bottom: 80px;
  letter-spacing: 0.05em;
  font-size: 20px;
}
.c-mv .lead {
  color: #24486D;
  max-width: 1120px;
  margin: auto;
}
.c-mv .lead .small {
  font-size: 14px;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 5px;
}
.c-mv .txt {
  font-size: 20px;
  color: #24486D;
  letter-spacing: 0.05em;
  display: block;
  max-width: 1120px;
  margin: auto;
}
.c-mv .mv-img {
  width: 100%;
  margin-bottom: 62px;
}
.c-mv .mv-img > img {
  border-radius: 20px;
}

.c-link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px 10px;
}
.c-link-list li {
  position: relative;
}
.c-link-list li:not(:last-child) {
  padding-right: 10px;
}
.c-link-list li:not(:last-child)::after {
  background: #24486D;
  content: "";
  height: 12px;
  width: 1px;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  margin: auto;
}
.c-link-list a {
  color: #24486D;
  display: block;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-right: 15px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.c-link-list a .inn {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(#4C8FDB), to(#4C8FDB));
  background-image: linear-gradient(90deg, #4C8FDB, #4C8FDB); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.3s ease-in-out;
  transition: background-size 0.3s ease-in-out;
}
.c-link-list a::before {
  background: #24486D;
  -webkit-mask-image: url("../img/common/ico-link.svg");
          mask-image: url("../img/common/ico-link.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 12px;
  width: 10px;
}
.c-link-list a.pdf::before {
  -webkit-mask-image: url("../img/common/ico-pdf.svg");
          mask-image: url("../img/common/ico-pdf.svg");
  width: 12px;
}

.anm-slideText {
  position: relative;
  -webkit-animation: mask 1.2s cubic-bezier(0, 0, 0.2, 1) 1.2s both;
          animation: mask 1.2s cubic-bezier(0, 0, 0.2, 1) 1.2s both;
}
@-webkit-keyframes mask {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes mask {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
.anm-slideText::after {
  content: "";
  position: absolute;
  background: #FFF;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  pointer-events: none;
  -webkit-animation: text-revealer 1.2s cubic-bezier(0, 0, 0.2, 1) 1.2s both;
          animation: text-revealer 1.2s cubic-bezier(0, 0, 0.2, 1) 1.2s both;
}
@-webkit-keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.c-desc {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #24486D;
  padding-left: 26px;
  position: relative;
  margin-bottom: 27px;
}
.c-desc::before {
  content: "";
  position: absolute;
  background: url("../img/common/ico-circle-blue.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.c-section {
  padding-block: 140px;
}
.c-section.bg-white {
  background: #FCFBF0;
  border-radius: 80px 0;
  position: relative;
  z-index: 1;
}
.c-section.bg-white + .related-section {
  margin-top: -140px;
}

.related-section {
  background: url("../img/home/about_bg.png.webp") no-repeat center center/cover;
  padding: 280px 0 200px;
}
.related-section .inn {
  background: #24486D;
  padding: 90px 30px;
  border-radius: 20px;
}
.related-section .ttl {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.related-section .ttl .en,
.related-section .ttl .ja {
  color: #FFF;
  display: block;
  letter-spacing: 0.1em;
}
.related-section .ttl .en {
  font-family: Unbounded, sans-serif;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 600;
}
.related-section .ttl .ja {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 55px;
}

.c-link-box {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.c-link-box .img {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  overflow: hidden;
  width: clamp(300px, 520px, min(520px, 37.1428571429vw));
  height: 100%;
  position: relative;
  z-index: 2;
}
.c-link-box .img > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
}
.c-link-box .txt-wrap {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  color: #24486D;
  background: #FFF;
  padding-top: clamp(40px, 67px, min(67px, 4.7857142857vw));
  padding-right: clamp(19px, 50px, min(50px, 3.5714285714vw));
  padding-left: clamp(19px, 50px, min(50px, 3.5714285714vw));
  padding-bottom: clamp(25px, 78px, min(78px, 5.5714285714vw));
  position: relative;
}
.c-link-box .txt-wrap > .ttl {
  font-size: 24px;
  letter-spacing: 0.05em;
  max-width: 400px;
  margin: 0;
  line-height: 1.5;
  margin-bottom: 23px;
}
.c-link-box .txt-wrap > .txt {
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.c-link-box .txt-wrap > .bg-txt {
  background: #24486D;
  color: #fff;
  font-size: min(14px, 1vw);
  font-weight: 500;
  line-height: 1.75;
  padding: 1px min(10px, 0.7142857143vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: min(40px, 2.8571428571vw);
  letter-spacing: 0.1em;
}
.c-link-box .txt-wrap > .num {
  color: rgba(36, 72, 109, 0.2);
  font-size: min(120px, 8.5714285714vw);
  font-weight: 800;
  line-height: 1;
  position: absolute;
  bottom: max(-15px, -1.0714285714vw);
  right: min(15px, 1.0714285714vw);
}

.c-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(40px, 2.8571428571vw);
}
.c-card-wrap .c-card-link {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.c-card-wrap .btn-wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: min(40px, 2.8571428571vw);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 min(30px, 2.1428571429vw) min(30px, 2.1428571429vw);
  z-index: 6;
}
.c-card-wrap .img {
  position: relative;
  overflow: hidden;
}
.c-card-wrap .img::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(42, 56, 78, 0)), to(rgb(42, 56, 78)));
  background: linear-gradient(180deg, rgba(42, 56, 78, 0) 50%, rgb(42, 56, 78) 100%);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 5;
}
.c-card-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-card-wrap .ttl {
  color: #fff;
  font-size: min(20px, 1.4285714286vw);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-card-wrap .btn {
  display: block;
  background: #fff;
  border-radius: 100px;
  position: relative;
  height: min(54px, 3.8571428571vw);
  width: min(54px, 3.8571428571vw);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-card-wrap .btn::before {
  background: #24486D;
  -webkit-mask-image: url("../img/common/ico-arrow03.svg");
          mask-image: url("../img/common/ico-arrow03.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  margin: auto;
  height: 12px;
  width: 12px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.int-box.green > a {
  background: url("../img/interview/int-bg-green.png.webp") no-repeat no-repeat center center/contain;
  border-radius: 50% 50% 0px 0px/40% 40% 0px 0px;
}
.int-box.pink > a {
  background: url("../img/interview/int-bg-pink.png.webp") no-repeat no-repeat center center/contain;
  border-radius: 50% 50% 0px 0px/40% 40% 0px 0px;
}
.int-box.purple > a {
  background: url("../img/interview/int-bg-purple.png.webp") no-repeat no-repeat center center/contain;
  border-radius: 50% 50% 0px 0px/40% 40% 0px 0px;
}
.int-box.yellow > a {
  background: url("../img/interview/int-bg-yellow.png.webp") no-repeat no-repeat center center/contain;
  border-radius: 50% 50% 0px 0px/40% 40% 0px 0px;
}
.int-box > .int-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  max-width: 520px;
  width: 100%;
  aspect-ratio: 4/5;
  background: url("../img/interview/int-bg-green.png.webp") no-repeat no-repeat center center/contain;
}
.int-box > .int-link .human {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  width: 100%;
}
.int-box > .int-link .human > .img,
.int-box > .int-link .human img {
  width: 100%;
  height: 100%;
}
.int-box > .int-link .human.human01 {
  max-width: 431px;
  width: 82.8846153846%;
}
.int-box > .int-link .human.human02 {
  max-width: 448px;
  width: 86.1538461538%;
}
.int-box > .int-link .human.human02 .img::before {
  background: url("../img/home/interview-human02-filter.svg") no-repeat center center/contain;
}
.int-box > .int-link .human.human03 {
  max-width: 423px;
  width: 81.3461538462%;
}
.int-box > .int-link .human.human03 .img::before {
  background: url("../img/home/interview-human03-filter.svg") no-repeat center center/contain;
}
.int-box > .int-link .human.human04 {
  max-width: 424px;
  width: 81.5384615385%;
}
.int-box > .int-link .human.human04 .img::before {
  background: url("../img/home/interview-human04-filter.svg") no-repeat center center/contain;
}
.int-box > .int-link .img {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.int-box > .int-link .img::before {
  background: url("../img/home/interview-human01-filter.svg") no-repeat center center/contain;
  content: "";
  height: 99%;
  width: 98.5%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  mix-blend-mode: soft-light;
}
.int-box > .int-link .hov {
  position: absolute;
  display: block;
  bottom: 16.1538461538%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.int-box > .int-link .hov.plant {
  width: 20.3846153846%;
  max-width: 130px;
}
.int-box > .int-link .hov.plant .img::before {
  background: url("../img/home/ico-interview01-filter.svg") no-repeat center center/contain;
}
.int-box > .int-link .hov.cat {
  width: 31.1538461538%;
  max-width: 180px;
}
.int-box > .int-link .hov.cat .img::before {
  background: url("../img/home/ico-interview02-filter.svg") no-repeat center center/contain;
}
.int-box > .int-link .hov.plant02 {
  width: 19.6153846154%;
  max-width: 140px;
}
.int-box > .int-link .hov.plant02 .img::before {
  background: url("../img/home/ico-interview03-filter.svg") no-repeat center center/contain;
}
.int-box > .int-link .hov.graph {
  width: 42.3076923077%;
  max-width: 250px;
}
.int-box > .int-link .hov.graph .img::before {
  content: none;
}
.int-box > .int-link .hov.gear {
  width: 42.3076923077%;
  max-width: 250px;
}
.int-box > .int-link .hov.gear .img::before {
  content: none;
}
.int-box > .int-link .hov .img {
  width: 100%;
  height: 100%;
  display: block;
}
.int-box > .int-link .hov .img > img {
  width: 100%;
}
.int-box .txt-area .ttl {
  color: #fff;
  font-size: min(20px, 1.4285714286vw);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: min(10px, 0.7142857143vw);
  margin-bottom: min(5px, 0.3571428571vw);
}
.int-box .txt-area .name {
  color: #fff;
  font-size: min(20px, 1.4285714286vw);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: min(5px, 0.3571428571vw);
}
.int-box .txt-area .info-wrap .l-txt {
  color: #fff;
  font-size: min(14px, 1vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: auto 1fr;
}

.stick-cont-wrap .inner-block {
  max-width: inherit;
  padding: 0;
  position: relative;
}
.stick-cont-wrap .m-adj {
  margin: 0 auto;
  max-width: 1440px;
}
.stick-cont-wrap .sticky-menu-wrap {
  position: absolute;
  top: 140px;
  left: calc(50% - min(635px, 45.3571428571vw));
  z-index: 2;
  height: calc(100% - 280px);
}
.stick-cont-wrap .sticky-menu-wrap .sticky-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  width: min(350px, 25vw);
  max-width: 350px;
  background-color: #24486D;
  color: #fff;
  padding: 51px 30px;
  border-radius: 20px;
  margin-top: 0;
  font-weight: bold;
}
.stick-cont-wrap .sticky-menu-wrap .sticky-menu .ttl {
  border-bottom: dashed 1px #fff;
  padding-bottom: 22px;
  font-size: 16px;
}
.stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li {
  margin-top: 23px;
}
.stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li a {
  display: block;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding-right: 20px;
  letter-spacing: 0.1em;
}
.stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li a::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  background: #fff;
  -webkit-mask-image: url("../img/common/ico-arrow03.svg");
          mask-image: url("../img/common/ico-arrow03.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: block;
  width: clamp(10px, 14px, min(14px, 1vw));
  aspect-ratio: 9/6;
  rotate: 90deg;
}
.stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li + li {
  margin-top: 18px;
}
.stick-cont-wrap .section-wrap {
  width: 100%;
}
.stick-cont-wrap .section-wrap .c-section .inner-block {
  max-width: 970px;
  margin-right: 0;
  margin-left: min(430px, 30.7142857143vw);
  padding-left: 80px;
  padding-right: 80px;
}
.stick-cont-wrap .section-wrap .c-section .lead {
  color: #24486D;
  letter-spacing: 0.05em;
}
.stick-cont-wrap .section-wrap .c-section .white-box {
  margin-top: 54px;
  padding: 80px clamp(55px, 80px, min(80px, 5.7142857143vw));
  background-color: #fff;
  border-radius: 20px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .c-ttl04 + img {
  margin-top: 30px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
}
.stick-cont-wrap .section-wrap .c-section .white-box img {
  width: 100%;
  display: block;
}
.stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap {
  position: relative;
  overflow: scroll;
}
.stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap::-webkit-scrollbar-thumb {
  background: #24486D;
  border-radius: 20px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap::-webkit-scrollbar-button {
  display: none;
}
.stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap::-webkit-scrollbar-track {
  border-radius: 20px;
  background: #91A3B5;
}
.stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap::-webkit-scrollbar {
  height: 6px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.stick-cont-wrap .section-wrap .c-section .white-box .txt-wrap {
  letter-spacing: 0.05em;
}
.stick-cont-wrap .section-wrap .c-section .white-box .txt-wrap p + p {
  margin-top: 1px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont {
  margin-top: 50px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li .ttl {
  font-size: 20px;
  font-weight: bold;
  width: 220px;
  display: block;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}
.stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li .txt {
  display: block;
  width: calc(100% - 200px);
  letter-spacing: 0.05em;
}
.stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li + li {
  margin-top: 34px;
  border-top: 1px solid #24486D;
  padding-top: 28px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li {
  padding: 30px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.h140 {
  min-height: 140px;
  height: 100%;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.gray {
  background-color: #D3DAE2;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.gray .icon {
  background-color: #24486D;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.blue {
  background-color: #E4EEFA;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.blue .icon {
  background-color: #4C8FDB;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.yellow {
  background-color: #FFF8DC;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.yellow .icon {
  background-color: #FFDA4F;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.green {
  background-color: #E9F8ED;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li.green .icon {
  background-color: #93DCA6;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .icon-wrap {
  width: 60px;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .icon-wrap > p {
  text-align: center;
  font-size: 14px;
  color: #93DCA6;
  letter-spacing: 0.05em;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .icon {
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  aspect-ratio: 1/1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .icon > img {
  display: block;
  width: 40px;
  height: 40px;
  margin: auto;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .txt-wrap {
  width: calc(100% - 60px - 30px);
  margin-top: 0;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .txt-wrap p {
  letter-spacing: 0.05em;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .ttl {
  font-size: 20px;
  font-weight: bold;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .ttl + p {
  margin-top: 15px;
  letter-spacing: 0.05em;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li + li {
  margin-top: 60px;
  position: relative;
}
.stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li + li::before {
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 18px;
  background: #24486D;
  height: 15px;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.stick-cont-wrap .section-wrap .c-section .white-box + .white-box {
  margin-top: 10px;
}
.stick-cont-wrap .section-wrap .c-section .white-box.accordion-box {
  padding: 0;
}

.accordion-box + .accordion-box {
  margin-top: 10px;
}

.accordion-btn {
  padding: 80px 80px 70px;
  position: relative;
  display: block;
  width: 100%;
  text-align: start;
}
.accordion-btn .line {
  border-radius: 20px;
  position: absolute;
  top: -2px;
  left: -2px;
  border: 4px solid #24486D;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.accordion-btn::before {
  content: "";
  width: 20px;
  height: 4px;
  position: absolute;
  right: 80px;
  top: 50%;
  background-color: #24486D;
}
.accordion-btn::after {
  content: "";
  width: 20px;
  height: 4px;
  position: absolute;
  right: 80px;
  top: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: #24486D;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.accordion-btn.is-open::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordion-btn .c-ttl04 {
  margin-right: 40px;
}

.accordion-content {
  display: none;
  padding: 0 clamp(55px, 80px, min(80px, 5.7142857143vw)) 80px;
}
.accordion-content .border-box + .border-box {
  padding-top: 28px;
  border-top: 1px solid #24486D;
  margin-top: 32px;
}
.accordion-content .ttl {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.accordion-content .ttl + .txt {
  margin-top: 12px;
}
.accordion-content .ttl + .c-dots-list {
  margin-top: 10px;
}
.accordion-content .txt + .txt {
  margin-top: 15px;
}
.accordion-content p {
  letter-spacing: 0.05em;
}
.accordion-content p + .txt {
  margin-top: 15px;
}
.accordion-content .c-dot-ttl {
  font-size: 16px;
  margin: 16px 0 18px;
}
.accordion-content .c-dot-ttl::before {
  width: 1em;
}
.accordion-content .c-btn02 {
  max-width: inherit;
  margin: 21px auto 25px;
}
.accordion-content .gray-wrap {
  padding: 20px 28px;
  background-color: #F8F7F4;
  width: 100%;
  margin: 22px 0;
}
.accordion-content .gray-wrap .mail {
  position: relative;
}

.c-dots-list li {
  padding-left: 1.5em;
  position: relative;
  letter-spacing: 0.05em;
}
.c-dots-list li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #24486D;
  position: absolute;
  top: 13px;
  left: 10px;
  border-radius: 50%;
}
.c-dots-list li + li {
  margin-top: 5px;
}
.c-dots-list a {
  color: #4C8FDB;
  position: relative;
}
.c-dots-list + .txt {
  margin-top: 15px;
}

.reference {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.reference::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.loop-txt-wrap {
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.loop-txt-wrap .loop-txt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: min(80px, 5.7142857143vw);
  overflow: hidden;
  padding-left: min(30px, 2.1428571429vw);
  color: #D3E6FF;
  line-height: 1;
}
.loop-txt-wrap .loop-txt:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}
.loop-txt-wrap .loop-txt:nth-child(even) {
  -webkit-animation: loop2 50s linear infinite;
          animation: loop2 50s linear infinite;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.sp-scroll.adj .scroll-hint-icon {
  left: calc(50% - 107px) !important;
}

.scroll-hint-icon {
  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: 10px;
  padding: 30px 40px;
  width: 223px;
  height: auto;
  left: calc(50% - 110px);
}
.scroll-hint-icon.adj {
  top: calc(50% - 110px);
  left: calc(50% - 110px);
}

.scroll-hint-text {
  font-size: 14px;
  margin-top: 0;
}

.scroll-hint-icon:before {
  background-image: url("../img/common/ico_pinch.svg");
  background-size: contain;
  height: 30px;
  width: 30px;
  aspect-ratio: 1/1;
  top: 0;
  position: relative;
}

.scroll-hint-icon::after {
  display: none;
}

.scroll-hint-icon {
  top: calc(50% - 68px);
  left: calc(50% - 100px);
}

.c-slidein {
  opacity: 0;
}
.c-slidein.is-animated {
  -webkit-animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
          animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.c-btn01 {
  background: #24486D;
  border: 1px solid #24486D;
  border-radius: 100px;
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 9px 15px;
  text-align: center;
  max-width: 127px;
  min-width: 127px;
  width: 100%;
}

.c-btn02 {
  background: #4C8FDB;
  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: 20px 39px 20px 27px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 900px;
  max-width: 192px;
  border: 1px solid #4C8FDB;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
.c-btn02::before {
  content: "";
  position: absolute;
  background: url("../img/common/ico-arrow.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 15px;
  height: 12px;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn02 > .txt {
  padding-right: clamp(20px, 40px, min(40px, 2.8571428571vw));
  color: #FFF;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn03 {
  display: block;
  color: #fff;
  font-size: min(16px, 1.1428571429vw);
  font-weight: 500;
  position: relative;
  letter-spacing: 0.05em;
  padding-right: min(56px, 4vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn03::before {
  background: #fff;
  border-radius: 100px;
  content: "";
  height: min(36px, 2.5714285714vw);
  width: min(36px, 2.5714285714vw);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-btn03::after {
  background: #24486D;
  content: "";
  -webkit-mask-image: url("../img/common/ico-arrow03.svg");
          mask-image: url("../img/common/ico-arrow03.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: min(12px, 0.8571428571vw);
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: min(12px, 0.8571428571vw);
  width: min(12px, 0.8571428571vw);
}
.c-btn03 .inn {
  position: relative;
}
.c-btn03 .inn::before {
  background: #fff;
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn04 {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #24486D;
  border: 4px solid #24486D;
  border-radius: 20px;
  padding: min(72px, 5.1428571429vw) min(73px, 5.2142857143vw) min(77px, 5.5vw);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: min(54px, 3.8571428571vw);
  position: relative;
}
.c-btn04.white {
  background: #fff;
  border-width: 1px;
}
.c-btn04.white::before {
  background: #24486D;
}
.c-btn04.white::after {
  background: #fff;
}
.c-btn04.white .ttl {
  color: #24486D;
}
.c-btn04.white .line {
  border-radius: 20px;
  position: absolute;
  top: -2px;
  left: -2px;
  border: 4px solid #24486D;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.c-btn04 .ttl {
  color: #fff;
  display: block;
  font-size: min(24px, 1.7142857143vw);
  font-weight: bold;
  margin-bottom: min(1px, 0.0714285714vw);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-btn04 .ttl.medium {
  font-size: min(32px, 2.2857142857vw);
}
.c-btn04 .txt {
  color: #fff;
  display: block;
  font-size: min(16px, 1.1428571429vw);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-btn04::before {
  background: #fff;
  border-radius: 100px;
  content: "";
  height: min(54px, 3.8571428571vw);
  width: min(54px, 3.8571428571vw);
  position: absolute;
  bottom: 0;
  top: 0;
  right: min(101px, 7.2142857143vw);
  margin: auto;
}
.c-btn04::after {
  background: #24486D;
  -webkit-mask-image: url("../img/common/ico-arrow03.svg");
          mask-image: url("../img/common/ico-arrow03.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: min(122px, 8.7142857143vw);
  margin: auto;
  height: min(12px, 0.8571428571vw);
  width: min(12px, 0.8571428571vw);
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .kv-section {
  overflow: hidden;
  padding-bottom: min(140px, 10vw);
  position: relative;
}
.home .kv-section .inner-block {
  padding: 190px min(50px, 3.5714285714vw) min(78px, 5.5714285714vw);
  max-width: 100%;
}
.home .kv-section .kv-ttl {
  color: #24486D;
  font-size: min(60px, 4.2857142857vw);
  font-weight: bold;
  letter-spacing: 0.2em;
  position: relative;
  margin: auto;
  max-width: 1368px;
}
.home .kv-section .kv-ttl::before {
  background: url("../img/common/bg_ico01.svg") no-repeat center center/contain;
  content: "";
  height: min(90px, 6.4285714286vw);
  width: min(194px, 13.8571428571vw);
  position: absolute;
  right: 0;
  top: min(7px, 0.5vw);
  bottom: 0;
  margin: auto;
}
.home .kv-section .mv-item-area {
  position: relative;
  width: min(1396px, 98.6572438163vw);
  margin: 0 auto;
  height: min(1744px, 124.5714285714vw);
}
.home .kv-section .mv-item-area .item {
  position: absolute;
}
.home .kv-section .mv-item-area .item-01, .home .kv-section .mv-item-area .item-02, .home .kv-section .mv-item-area .item-03, .home .kv-section .mv-item-area .item-04, .home .kv-section .mv-item-area .item-05, .home .kv-section .mv-item-area .item-06, .home .kv-section .mv-item-area .item-07, .home .kv-section .mv-item-area .item-09, .home .kv-section .mv-item-area .item-10, .home .kv-section .mv-item-area .item-11 {
  max-width: min(340px, 24.2857142857vw);
  width: 100%;
}
.home .kv-section .mv-item-area .item-01 {
  top: 0;
  left: 0;
}
.home .kv-section .mv-item-area .item-01 .front-card {
  background: url("../img/home/mv_bnr01_bg.png.webp") no-repeat center center/cover;
  padding: min(30px, 2.1428571429vw) min(30px, 2.1428571429vw) 0;
}
.home .kv-section .mv-item-area .item-01 .front-card .txt-img {
  margin-top: min(49px, 3.5vw);
}
.home .kv-section .mv-item-area .item-01 .front-card .txt-img img {
  height: min(159px, 11.3571428571vw);
}
.home .kv-section .mv-item-area .item-01 .illust-area {
  margin-top: auto;
}
.home .kv-section .mv-item-area .item-01 .illust-area .illust {
  position: absolute;
}
.home .kv-section .mv-item-area .item-01 .illust-area .illust.plant {
  left: min(18px, 1.2857142857vw);
  bottom: min(58px, 4.1428571429vw);
  max-width: min(81px, 5.7857142857vw);
}
.home .kv-section .mv-item-area .item-01 .illust-area .illust.cat {
  right: min(7px, 0.5vw);
  bottom: min(51px, 3.6428571429vw);
  max-width: min(158px, 11.2857142857vw);
}
.home .kv-section .mv-item-area .item-01 .illust-area .illust.zzz {
  left: 0;
  right: max(-31px, -2.2142857143vw);
  top: 0;
  margin: auto;
  max-width: min(80px, 5.7142857143vw);
}
.home .kv-section .mv-item-area .item-01 .back-card {
  background: url("../img/home/mv_bnr01_bg.png.webp") no-repeat center center/cover;
}
.home .kv-section .mv-item-area .item-02 {
  top: max(-2px, -0.1413427562vw);
  left: min(352px, 24.8763250883vw);
}
.home .kv-section .mv-item-area .item-02 .front-card {
  background: url("../img/home/mv-bg-green.png.webp") no-repeat center center/cover;
  padding: min(92px, 6.5714285714vw) min(37px, 2.6428571429vw) 0;
}
.home .kv-section .mv-item-area .item-02 .illust {
  margin-top: auto;
}
.home .kv-section .mv-item-area .item-03 {
  overflow: hidden;
  top: 0;
  right: 0;
}
.home .kv-section .mv-item-area .item-03 .front-card {
  background: url("../img/home/mv-bg-blue.png.webp") no-repeat center center/cover;
  padding: min(85px, 6.0714285714vw) min(37px, 2.6428571429vw) 0;
}
.home .kv-section .mv-item-area .item-03 .illust {
  margin-top: auto;
}
.home .kv-section .mv-item-area .item-04 {
  bottom: min(455px, 32.1554770318vw);
  left: 0;
}
.home .kv-section .mv-item-area .item-04 .front-card {
  background: url("../img/home/mv_bnr02_bg.png.webp") no-repeat center center/cover;
  padding: min(30px, 2.1428571429vw) min(14px, 1vw) 0;
}
.home .kv-section .mv-item-area .item-04 .front-card .txt-img {
  margin-top: min(53px, 3.7857142857vw);
  max-width: min(312px, 22.2857142857vw);
}
.home .kv-section .mv-item-area .item-04 .illust-area {
  min-height: min(248px, 17.7142857143vw);
  margin-top: auto;
}
.home .kv-section .mv-item-area .item-04 .illust-area .illust {
  position: absolute;
}
.home .kv-section .mv-item-area .item-04 .illust-area .illust.plant02 {
  left: 0;
  right: 0;
  margin: auto;
  bottom: min(56px, 4vw);
  max-width: min(101px, 7.2142857143vw);
}
.home .kv-section .mv-item-area .item-04 .back-card {
  background: url("../img/home/mv_bnr02_bg.png.webp") no-repeat center center/cover;
}
.home .kv-section .mv-item-area .item-05 {
  top: min(449px, 31.7314487633vw);
  left: min(352px, 24.8763250883vw);
}
.home .kv-section .mv-item-area .item-05 .front-card {
  background: url("../img/home/mv_bnr03_bg.png.webp") no-repeat center center/cover;
  padding: min(69px, 4.9285714286vw) min(10px, 0.7142857143vw) min(80px, 5.7142857143vw);
  height: 100%;
  min-height: min(390px, 27.8571428571vw);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  grid-column: auto;
  -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;
}
.home .kv-section .mv-item-area .item-05 .front-card .txt-img {
  max-width: min(320px, 22.8571428571vw);
}
.home .kv-section .mv-item-area .item-05 .back-card {
  background: url("../img/home/mv_bnr03_bg.png.webp") no-repeat center center/cover;
}
.home .kv-section .mv-item-area .item-06 {
  top: min(246px, 17.3851590106vw);
  right: min(351px, 24.8056537102vw);
  overflow: visible;
}
.home .kv-section .mv-item-area .item-06 .front-card {
  background: url("../img/home/mv_bnr04_bg.png.webp") no-repeat center center/cover;
  padding: min(15px, 1.0714285714vw) min(10px, 0.7142857143vw) min(33px, 2.3571428571vw);
}
.home .kv-section .mv-item-area .item-06 .front-card .txt-img {
  margin-bottom: min(93px, 6.6428571429vw);
  max-width: min(320px, 22.8571428571vw);
}
.home .kv-section .mv-item-area .item-06 .back-card {
  background: url("../img/home/mv_bnr04_bg.png.webp") no-repeat center center/cover;
}
.home .kv-section .mv-item-area .item-07 {
  top: min(449px, 31.7314487633vw);
  right: 0;
}
.home .kv-section .mv-item-area .item-07 .front-card {
  background: url("../img/home/mv_bnr05_bg.png.webp") no-repeat center center/cover;
  padding: min(51px, 3.6428571429vw) min(29px, 2.0714285714vw) min(48px, 3.4285714286vw);
  height: 100%;
  min-height: min(388px, 27.7142857143vw);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  grid-column: auto;
  -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;
}
.home .kv-section .mv-item-area .item-07 .front-card .txt-img {
  max-width: min(269px, 19.2142857143vw);
}
.home .kv-section .mv-item-area .item-07 .front-card .en-img {
  margin-top: min(24px, 1.7142857143vw);
  text-align: center;
}
.home .kv-section .mv-item-area .item-07 .back-card {
  background: url("../img/home/mv_bnr05_bg.png.webp") no-repeat center center/cover;
}
.home .kv-section .mv-item-area .item-07 .back-card .ttl {
  margin-top: min(20px, 1.4285714286vw);
}
.home .kv-section .mv-item-area .item-08 {
  bottom: min(454px, 32.0848056537vw);
  right: 0;
  left: 0;
  margin: auto;
  max-width: min(692px, 48.9045936396vw);
}
.home .kv-section .mv-item-area .item-08 .front-card {
  background: url("../img/home/mv_bnr06_bg.png.webp") no-repeat center center/cover;
  padding: min(59px, 4.2142857143vw) min(28px, 2vw) min(52px, 3.7142857143vw);
  height: 100%;
}
.home .kv-section .mv-item-area .item-08 .front-card .txt-img {
  max-width: min(566px, 40.4285714286vw);
}
.home .kv-section .mv-item-area .item-08 .front-card .en-img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 0;
  right: max(-108px, -7.7142857143vw);
  left: inherit;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(314px, 22.4285714286vw);
}
.home .kv-section .mv-item-area .item-08 .back-card {
  background: url("../img/home/mv_bnr06_bg.png.webp") no-repeat center center/cover;
}
.home .kv-section .mv-item-area .item-09 {
  bottom: min(456px, 32.2261484099vw);
  right: 0;
}
.home .kv-section .mv-item-area .item-10 {
  overflow: hidden;
  bottom: 0;
  left: 0;
}
.home .kv-section .mv-item-area .item-11 {
  overflow: hidden;
  bottom: 0;
  left: min(352px, 24.8763250883vw);
}
.home .kv-section .mv-item-area .item-11 .front-card {
  background: url("../img/home/mv-bg-yellow.png.webp") no-repeat center center/cover;
  padding: min(97px, 6.9285714286vw) 0 0;
}
.home .kv-section .mv-item-area .item-11 .illust {
  margin-top: auto;
}
.home .kv-section .mv-item-area .item-12 {
  bottom: 0;
  right: 0;
  max-width: min(692px, 48.9045936396vw);
  width: 100%;
}
.home .kv-section .mv-item-area .item-12 .front-card {
  background: url("../img/home/mv_bnr07_bg.png.webp") no-repeat center center/cover;
  padding: min(14px, 1vw) min(11px, 0.7857142857vw) 0;
  height: 100%;
}
.home .kv-section .mv-item-area .item-12 .front-card .txt-img {
  max-width: min(670px, 47.8571428571vw);
}
.home .kv-section .mv-item-area .item-12 .front-card .en-img {
  position: absolute;
  bottom: min(97px, 6.9285714286vw);
  left: min(11px, 0.7857142857vw);
  max-width: min(219px, 15.6428571429vw);
}
.home .kv-section .mv-item-area .item-12 .front-card .illust-area {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(20px, 1.4285714286vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: min(238px, 17vw);
  margin: auto min(10px, 0.7142857143vw) 0 auto;
}
.home .kv-section .mv-item-area .item-12 .front-card .illust-area img {
  max-height: min(238px, 17vw);
}
.home .kv-section .mv-item-area .item-12 .back-card {
  background: url("../img/home/mv_bnr07_bg.png.webp") no-repeat center center/cover;
}
.home .kv-section .mv-item-area .item-12 .back-card .ttl {
  margin-top: min(20px, 1.4285714286vw);
}
.home .kv-section .mv-item-area .front-card {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .kv-section .mv-item-area .back-card {
  cursor: pointer;
  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;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: min(116px, 8.2857142857vw) min(12px, 0.8571428571vw) min(20px, 1.4285714286vw);
}
.home .kv-section .mv-item-area .back-card.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .kv-section .mv-item-area .back-card .ico-img {
  margin: min(40px, 2.8571428571vw) auto min(20px, 1.4285714286vw);
  max-width: min(150px, 10.7142857143vw);
}
.home .kv-section .mv-item-area .back-card .ttl {
  color: #24486D;
  font-size: min(40px, 2.8571428571vw);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.home .kv-section .mv-item-area .back-card .close-btn {
  border: 1px solid #fff;
  border-radius: 100px;
  position: absolute;
  top: min(20px, 1.4285714286vw);
  right: min(12px, 0.8571428571vw);
  height: min(36px, 2.5714285714vw);
  width: min(36px, 2.5714285714vw);
}
.home .kv-section .mv-item-area .back-card .close-btn::before, .home .kv-section .mv-item-area .back-card .close-btn::after {
  background: #fff;
  content: "";
  height: min(19px, 1.3571428571vw);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.home .kv-section .mv-item-area .back-card .close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.home .kv-section .mv-item-area .back-card .close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.home .kv-section .mv-item-area .illust-area {
  position: relative;
  min-height: min(266px, 19vw);
}
.home .kv-section .mv-item-area .illust-area::before {
  background: #fff;
  content: "";
  height: min(59px, 4.2142857143vw);
  width: calc(100% + min(60px, 4.2857142857vw));
  position: absolute;
  bottom: 0;
  left: max(-30px, -2.1428571429vw);
}
.home .kv-section .mv-item-area .illust-area.no-before::before {
  content: none;
}
.home .kv-section .mv-item-area .illust {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .kv-section .mv-item-area .noise::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  mix-blend-mode: soft-light;
}
.home .kv-section .mv-item-area .noise.plant::before {
  background: url("../img/home/mv-plant-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .noise.plant02::before {
  background: url("../img/home/mv-plant02-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .noise.cat::before {
  background: url("../img/home/mv-cat-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .noise.woman::before {
  background: url("../img/home/mv-woman-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .noise.woman::before {
  background: url("../img/home/mv-man-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .noise.window::before {
  background: url("../img/home/mv-window-filter.svg") no-repeat center center/contain;
  border-radius: 100% 100% 0 0;
}
.home .kv-section .mv-item-area .noise.talk::before {
  background: url("../img/home/mv-talk-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .noise.woman02::before {
  background: url("../img/home/mv-woman02-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .noise.man02::before {
  background: url("../img/home/mv-man02-filter.svg") no-repeat center center/contain;
}
.home .kv-section .mv-item-area .l-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: min(30px, 2.1428571429vw);
  margin-top: min(40px, 2.8571428571vw);
}
.home .kv-section .mv-item-area .l-flex .ico {
  max-width: min(150px, 10.7142857143vw);
}
.home .kv-section .mv-item-area .panel-btn .front-card {
  cursor: pointer;
}
.home .kv-section .mv-item-area .panel-btn .front-card::before {
  border: 4px solid transparent;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .kv-section .mv-item-area .panel-btn.front-hidden .front-card.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .kv-section .deco {
  position: absolute;
}
.home .kv-section .deco--01 {
  top: min(61px, 4.3571428571vw);
  right: min(462px, 33vw);
  max-width: min(116px, 8.2857142857vw);
}
.home .kv-section .deco--02 {
  bottom: max(-84px, -6vw);
  left: min(116px, 8.2857142857vw);
  max-width: min(116px, 8.2857142857vw);
}
.home .kv-section .deco--03 {
  bottom: max(-280px, -20vw);
  right: min(80px, 5.7142857143vw);
  max-width: min(194px, 13.8571428571vw);
}
.home .about-section {
  background: url("../img/home/about_bg.png.webp") no-repeat center center/cover;
  border-radius: 90px 0 90px 0;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 51;
}
.home .about-section::before {
  background: url("../img/home/light.svg") no-repeat center center/contain;
  content: "";
  height: min(280px, 20vw);
  width: min(369px, 26.3571428571vw);
  position: absolute;
  top: 0;
  right: min(136px, 9.7142857143vw);
}
.home .about-section .inner-block {
  padding-top: min(146px, 10.4285714286vw);
  padding-bottom: min(149px, 10.6428571429vw);
}
.home .about-section .c-ttl02 {
  margin-bottom: min(66px, 4.7142857143vw);
}
.home .about-section .dot-ttl {
  color: #fff;
  font-size: min(24px, 1.7142857143vw);
  font-weight: bold;
  position: relative;
  padding-left: min(36px, 2.5714285714vw);
  margin-top: min(76px, 5.4285714286vw);
  margin-bottom: min(8px, 0.5714285714vw);
  letter-spacing: 0.05em;
}
.home .about-section .dot-ttl::before {
  background: #fff;
  border-radius: 100px;
  content: "";
  height: min(16px, 1.1428571429vw);
  width: min(16px, 1.1428571429vw);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  margin: auto;
}
.home .about-section .txt {
  color: #fff;
  font-size: min(16px, 1.1428571429vw);
  font-weight: 500;
  margin-bottom: min(53px, 3.7857142857vw);
  letter-spacing: 0.05em;
}
.home .about-section .img {
  max-width: 900px;
  margin: auto;
}
.home .about-section .docswell-link {
  display: none;
}
.home .about-section .btn-wrap {
  margin: auto;
  max-width: 900px;
}
.home .about-section .c-btn03 {
  margin-top: min(25px, 1.7857142857vw);
  margin-left: auto;
}
.home .interview-section {
  background: #24486D;
  margin-top: max(-146px, -10.4285714286vw);
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.home .interview-section .inner-block {
  padding-top: min(267px, 19.0714285714vw);
  padding-bottom: min(128px, 9.1428571429vw);
}
.home .interview-section .c-ttl02 + .c-link-box {
  margin-top: min(65px, 4.6428571429vw);
}
.home .interview-section .c-link-box {
  max-width: 100%;
  max-height: 100%;
}
.home .interview-section .c-link-box + .c-link-box {
  margin-top: min(60px, 4.2857142857vw);
}
.home .interview-section .c-link-box + .c-link-box .num {
  right: max(-20px, -1.4285714286vw);
}
.home .interview-section .c-link-box .txt-wrap > .ttl {
  max-width: 100%;
  margin-bottom: min(30px, 2.1428571429vw);
}
.home .interview-section .c-link-box .c-btn02 {
  margin-left: 0;
}
.home .interview-section .c-link-box .c-btn02 .txt {
  font-size: 16px;
}
.home .interview-section .int-box.green .img-area {
  background: url("../img/interview/int-bg-green.png.webp") no-repeat no-repeat center center/contain;
}
.home .interview-section .int-box.pink .img-area {
  background: url("../img/interview/int-bg-pink.png.webp") no-repeat no-repeat center center/contain;
}
.home .interview-section .int-box.purple .img-area {
  background: url("../img/interview/int-bg-purple.png.webp") no-repeat no-repeat center center/contain;
}
.home .interview-section .int-box.yellow .img-area {
  background: url("../img/interview/int-bg-yellow.png.webp") no-repeat no-repeat center center/contain;
}
.home .interview-section .int-box > .int-link {
  background: none;
}
.home .interview-section .int-box .img-area {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  max-width: 520px;
  width: 100%;
  aspect-ratio: 4/5;
  background: url("../img/interview/int-bg-green.png.webp") no-repeat no-repeat center center/contain;
}
.home .interview-section .int-box .img-area .human {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  width: 100%;
}
.home .interview-section .int-box .img-area .human > .img,
.home .interview-section .int-box .img-area .human img {
  width: 100%;
  height: 100%;
}
.home .interview-section .int-box .img-area .human.human01 {
  max-width: 431px;
  width: 82.8846153846%;
}
.home .interview-section .int-box .img-area .human.human02 {
  max-width: 448px;
  width: 86.1538461538%;
}
.home .interview-section .int-box .img-area .human.human02 .img::before {
  background: url("../img/home/interview-human02-filter.svg") no-repeat center center/contain;
}
.home .interview-section .int-box .img-area .human.human03 {
  max-width: 423px;
  width: 81.3461538462%;
}
.home .interview-section .int-box .img-area .human.human03 .img::before {
  background: url("../img/home/interview-human03-filter.svg") no-repeat center center/contain;
}
.home .interview-section .int-box .img-area .human.human04 {
  max-width: 424px;
  width: 81.5384615385%;
}
.home .interview-section .int-box .img-area .human.human04 .img::before {
  background: url("../img/home/interview-human04-filter.svg") no-repeat center center/contain;
}
.home .interview-section .int-box .img-area .img {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .interview-section .int-box .img-area .img::before {
  background: url("../img/home/interview-human01-filter.svg") no-repeat center center/contain;
  content: "";
  height: 99%;
  width: 98.5%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  mix-blend-mode: soft-light;
}
.home .interview-section .int-box .img-area .hov {
  position: absolute;
  display: block;
  bottom: 16.1538461538%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .interview-section .int-box .img-area .hov.plant {
  width: 20.3846153846%;
}
.home .interview-section .int-box .img-area .hov.plant .img::before {
  background: url("../img/home/ico-interview01-filter.svg") no-repeat center center/contain;
}
.home .interview-section .int-box .img-area .hov.cat {
  width: 31.1538461538%;
}
.home .interview-section .int-box .img-area .hov.cat .img::before {
  background: url("../img/home/ico-interview02-filter.svg") no-repeat center center/contain;
}
.home .interview-section .int-box .img-area .hov.plant02 {
  width: 19.6153846154%;
}
.home .interview-section .int-box .img-area .hov.plant02 .img::before {
  background: url("../img/home/ico-interview03-filter.svg") no-repeat center center/contain;
}
.home .interview-section .int-box .img-area .hov.graph {
  width: 42.3076923077%;
}
.home .interview-section .int-box .img-area .hov.graph .img::before {
  content: none;
}
.home .interview-section .int-box .img-area .hov.gear {
  width: 42.3076923077%;
}
.home .interview-section .int-box .img-area .hov.gear .img::before {
  content: none;
}
.home .interview-section .int-box .img-area .hov .img {
  width: 100%;
  height: 100%;
  display: block;
}
.home .interview-section .int-box .img-area .hov .img > img {
  width: 100%;
}
.home .interview-section .interview-swiper {
  overflow: visible;
  margin-top: min(68px, 4.8571428571vw);
  margin-bottom: min(258px, 18.4285714286vw);
}
.home .interview-section .interview-swiper .swiper-slide {
  width: min(300px, 21.4285714286vw);
}
.home .interview-section .control-wrap {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: min(30px, 2.1428571429vw);
  margin-top: min(55px, 3.9285714286vw);
}
.home .interview-section .swiper-button-prev, .home .interview-section .swiper-button-next {
  border: 1px solid #fff;
  border-radius: 100px;
  width: min(38px, 2.7142857143vw);
  height: min(38px, 2.7142857143vw);
  position: relative;
}
.home .interview-section .swiper-button-prev::before, .home .interview-section .swiper-button-next::before {
  background: #fff;
  content: "";
  -webkit-mask-image: url("../img/common/ico-arrow02.svg");
          mask-image: url("../img/common/ico-arrow02.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: min(7px, 0.5vw);
  width: min(12px, 0.8571428571vw);
}
.home .interview-section .swiper-button-prev::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.home .interview-section .swiper-button-next::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.home .interview-section .swiper-scrollbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.home .interview-section .swiper-scrollbar::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.home .interview-section .swiper-scrollbar-drag {
  background: #fff;
  border-radius: 8px;
  height: 6px;
}
.home .environment-section {
  background: url("../img/home/bg-enviroment.jpg.webp") no-repeat center center/cover;
  position: relative;
  padding-top: min(140px, 10vw);
  z-index: 49;
}
.home .environment-section .bg-white {
  background: #fff;
  border-radius: 100px 0 100px 0;
  position: relative;
  overflow: hidden;
}
.home .environment-section .bg-white::before {
  background: rgba(76, 143, 219, 0.2);
  content: "";
  height: min(140px, 10vw);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home .environment-section .bg-white::after {
  background: url("../img/home/ico-plant.svg") no-repeat center center/contain;
  content: "";
  height: min(726px, 51.8571428571vw);
  width: min(170px, 12.1428571429vw);
  position: absolute;
  bottom: min(140px, 10vw);
  right: min(64px, 4.5714285714vw);
  z-index: 1;
}
.home .environment-section .inner-block {
  padding-top: min(140px, 10vw);
  padding-bottom: min(329px, 23.5vw);
}
.home .environment-section .c-card-wrap {
  position: relative;
  margin-top: min(30px, 2.1428571429vw);
  z-index: 5;
}
.home .faq-section {
  background: url("../img/home/bg-enviroment.jpg.webp") no-repeat center center/cover;
  position: relative;
  margin-top: max(-140px, -10vw);
}
.home .faq-section::before {
  background: #E6E5DA;
  content: "";
  height: min(333px, 23.7857142857vw);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home .faq-section .inner-block {
  padding-top: min(285px, 20.3571428571vw);
  padding-bottom: min(200px, 14.2857142857vw);
  z-index: 5;
}
.home .faq-section .c-ttl02 .en {
  letter-spacing: inherit;
}
.home .faq-section .deco {
  position: absolute;
}
.home .faq-section .deco--01 {
  top: min(182px, 13vw);
  left: min(116px, 8.2857142857vw);
  max-width: min(116px, 8.2857142857vw);
}
.home .faq-section .deco--02 {
  top: min(178px, 12.7142857143vw);
  right: min(78px, 5.5714285714vw);
  max-width: min(194px, 13.8571428571vw);
  mix-blend-mode: multiply;
}
.home .faq-section .deco--03 {
  bottom: min(93px, 6.6428571429vw);
  right: min(140px, 10vw);
  max-width: min(194px, 13.8571428571vw);
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.message .mv-section {
  padding-bottom: 140px;
}
.message .mv-section .txt {
  margin: 0;
}
.message .mv-section .mv-img {
  margin-bottom: 0;
}
.message .mv-section .inner-block {
  position: inherit;
}
.message .mv-section .txt-wrap {
  position: absolute;
  bottom: -70px;
  left: clamp(100px, 177px, min(177px, 12.6428571429vw));
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.message .mv-section .txt-wrap .txt {
  display: block;
  background: #FFF;
  color: #24486D;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 32px;
  padding: 3px 10px 5px;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
.message .mv-section .txt-wrap .txt .small {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  left: -13px;
}
.message .mv-section .profile-wrap {
  background: #24486D;
  color: #FFF;
  padding: 26px 25px 27px 30px;
  border-radius: 20px;
  right: clamp(100px, 183px, min(183px, 13.0714285714vw));
  bottom: -80px;
  position: absolute;
}
.message .mv-section .profile-wrap .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding-bottom: 22px;
}
.message .mv-section .profile-wrap .ja {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
}
.message .mv-section .profile-wrap .en {
  font-size: 14px;
  font-family: Unbounded, sans-serif;
  display: inline-block;
  letter-spacing: 0.05em;
}
.message .mv-section .profile-wrap .post {
  line-height: 1.2;
}
.message .mv-section .profile-wrap .post .txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #FFF;
}
.message .message-section .grid-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(50px, 100px, min(100px, 7.1428571429vw));
  margin-bottom: 133px;
}
.message .message-section .grid-box:first-child .c-desc {
  margin-bottom: 19px;
}
.message .message-section .grid-box .img {
  width: clamp(200px, 340px, min(340px, 24.2857142857vw));
}
.message .message-section .grid-box .img > img {
  border-radius: 20px;
}
.message .message-section .grid-box.right {
  grid-template-columns: 1fr auto;
}
.message .message-section .txt-box .txt {
  letter-spacing: 0.05em;
  color: #24486D;
  line-height: 1.75;
}
.message .message-section .txt-box .txt + .txt {
  margin-top: 25px;
}
.message .message-section .box .img {
  width: 100%;
  margin-top: 55px;
}
.message .message-section .box .img > img {
  border-radius: 20px;
  width: 100%;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.interview .interview-box {
  padding-top: 0;
}
.interview .interview-box .int-link {
  overflow: hidden;
}
.interview .interview-box .inn-wrap .int-box .post,
.interview .interview-box .inn-wrap .int-box .txt-wrap {
  position: absolute;
  font-weight: bold;
  left: 0;
  z-index: 7;
}
.interview .interview-box .inn-wrap .int-box .post {
  background: #24486D;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 3px 28px;
  border-radius: 0 60px 60px 0;
  max-width: 357px;
  bottom: 21.5384615385%;
}
.interview .interview-box .inn-wrap .int-box .post::after {
  background: #24486D;
  width: 93%;
}
.interview .interview-box .inn-wrap .int-box .post > .txt {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.interview .interview-box .inn-wrap .int-box .txt-wrap {
  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: 5px;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 0.05em;
  bottom: 6.1538461538%;
}
.interview .interview-box .inn-wrap .int-box .txt-wrap .inn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #FFF;
  color: #24486D;
  padding: 1px 28px 3px 30px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.interview .interview-box .inn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: clamp(40px, 80px, min(80px, 5.7142857143vw));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.interview .interview-box .int-box {
  width: clamp(450px, 520px, min(520px, 37.1428571429vw));
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.interview-detail .detail-section {
  padding-top: 89px;
  padding-bottom: 60px;
}
.interview-detail .inner-block.detail {
  max-width: 100vw;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.interview-detail .inner-block.detail .int-box {
  height: 100%;
  width: 38vw;
}
.interview-detail .inner-block.detail .int-box.green {
  background: #93DCA6;
}
.interview-detail .inner-block.detail .int-box.pink {
  background: #EBACBF;
}
.interview-detail .inner-block.detail .int-box.pink .int-link {
  background: url("../img/interview/int-bg-pink.png.webp") no-repeat no-repeat center bottom/contain;
}
.interview-detail .inner-block.detail .int-box.purple {
  background: #9691CD;
}
.interview-detail .inner-block.detail .int-box.purple .int-link {
  background: url("../img/interview/int-bg-purple.png.webp") no-repeat no-repeat center bottom/contain;
}
.interview-detail .inner-block.detail .int-box.purple .hov.top {
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.interview-detail .inner-block.detail .int-box.yellow {
  background: #FFDA4F;
}
.interview-detail .inner-block.detail .int-box.yellow .int-link {
  background: url("../img/interview/int-bg-yellow.png.webp") no-repeat no-repeat center bottom/contain;
}
.interview-detail .inner-block.detail .int-link {
  background: #93DCA6;
  width: 100%;
  max-width: 532px;
  position: -webkit-sticky;
  position: sticky;
  top: 89px;
  overflow: hidden;
  margin: 0 auto;
}
.interview-detail .c-breadcrumb-list {
  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;
  padding: 18px 0 30px 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.interview-detail .c-breadcrumb-list > li {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #24486D;
  line-height: 1;
  margin-bottom: 5px;
}
.interview-detail .c-breadcrumb-list > li + li {
  margin-left: 20px;
  padding-left: 26px;
  position: relative;
}
.interview-detail .c-breadcrumb-list > li + li::before {
  content: "";
  position: absolute;
  background: url("../img/common/ico-circle-navy.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 6px;
  height: 6px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.interview-detail .c-breadcrumb-list > li > a {
  color: #4C8FDB;
  position: relative;
}
.interview-detail .cont-wrap {
  width: 62vw;
}
.interview-detail .cont-wrap .cont-inn {
  max-width: 808px;
  margin: 0 auto;
  padding: 0 30px;
}
.interview-detail .cont-wrap .name {
  position: relative;
  padding-left: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-bottom: 45px;
}
.interview-detail .cont-wrap .name.pink::before {
  background: #EBACBF;
}
.interview-detail .cont-wrap .name.purple::before {
  background: #9691CD;
}
.interview-detail .cont-wrap .name.yellow::before {
  background: #FFDA4F;
}
.interview-detail .cont-wrap .name::before {
  content: "";
  position: absolute;
  background: #93DCA6;
  display: block;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.interview-detail .cont-wrap .name .txt:not(:first-child) {
  font-size: 20px;
  letter-spacing: 0.1em;
  padding-left: 38px;
  position: relative;
}
.interview-detail .cont-wrap .name .txt:not(:first-child)::before {
  content: "";
  position: absolute;
  background: #24486D;
  display: block;
  width: 2px;
  height: 90%;
  top: 0;
  left: 15px;
  bottom: 0;
  margin: auto;
}
.interview-detail .cont-wrap .c-ttl01 {
  margin-bottom: 13px;
}
.interview-detail .cont-wrap .post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.interview-detail .cont-wrap .post .txt.nowrap {
  white-space: nowrap;
}
.interview-detail .cont-wrap .post .txt:not(:first-child) {
  padding-left: 26px;
  position: relative;
}
.interview-detail .cont-wrap .post .txt:not(:first-child)::before {
  content: "";
  position: absolute;
  background: url("../img/interview/ico-line.svg") no-repeat no-repeat center center/contain;
  width: 10px;
  height: 16px;
  top: 0;
  left: 8px;
  bottom: 0;
  margin: auto;
}
.interview-detail .cont-wrap .prof-wrap {
  margin-top: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(8px, 18px, min(18px, 1.2857142857vw));
  letter-spacing: 0.05em;
}
.interview-detail .cont-wrap .prof-wrap .lead {
  background: #93DCA6;
  color: #FFF;
  font-weight: bold;
  border-radius: 4px;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px 3px;
}
.interview-detail .cont-wrap .prof-wrap .lead.pink {
  background: #EBACBF;
}
.interview-detail .cont-wrap .prof-wrap .lead.purple {
  background: #9691CD;
}
.interview-detail .cont-wrap .prof-wrap .lead.yellow {
  background: #FFDA4F;
}
.interview-detail .cont-wrap .prof-wrap .txt {
  position: relative;
  margin-top: -8px;
}
.interview-detail .cont-wrap .txt-wrap {
  margin-top: 72px;
  background: #FFF;
  padding-top: clamp(60px, 73px, min(73px, 5.2142857143vw));
  padding-bottom: clamp(60px, 75px, min(75px, 5.3571428571vw));
  padding-left: clamp(40px, 80px, min(80px, 5.7142857143vw));
  padding-right: clamp(40px, 75px, min(75px, 5.3571428571vw));
  border-radius: 20px;
}
.interview-detail .cont-wrap .txt-wrap + .txt-wrap {
  margin-top: 40px;
}
.interview-detail .cont-wrap .txt-wrap .c-desc {
  margin-bottom: 20px;
}
.interview-detail .cont-wrap .txt-wrap .c-desc.green::before {
  background: #93DCA6;
  border-radius: 50%;
}
.interview-detail .cont-wrap .txt-wrap .c-desc.pink::before {
  background: #EBACBF;
  border-radius: 50%;
}
.interview-detail .cont-wrap .txt-wrap .c-desc.purple::before {
  background: #9691CD;
  border-radius: 50%;
}
.interview-detail .cont-wrap .txt-wrap .c-desc.yellow::before {
  background: #FFDA4F;
  border-radius: 50%;
}
.interview-detail .cont-wrap .txt-wrap .c-ttl01 {
  margin-bottom: 40px;
}
.interview-detail .cont-wrap .txt-wrap .txt {
  letter-spacing: 0.05em;
}
.interview-detail .cont-wrap .txt-wrap .txt + .txt {
  margin-top: 23px;
}
.interview-detail .chart-section {
  background: url("../img/home/about_bg.png.webp") no-repeat center center/cover;
  padding: 130px 0 140px;
}
.interview-detail .chart-section .c-ttl01,
.interview-detail .chart-section .desc {
  color: #FFF;
  letter-spacing: 0.1em;
}
.interview-detail .chart-section .c-ttl01 {
  margin-bottom: 55px;
}
.interview-detail .chart-section .chart-box {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.interview-detail .chart-section .chart-box > .img {
  background: url("../img/interview/chart01-bg.png.webp") no-repeat no-repeat center center/contain;
  width: 263.626px;
  height: 249.148px;
  position: relative;
}
.interview-detail .chart-section .chart-box > .img.pink::before {
  background: url("../img/interview/chart02-circle.svg") no-repeat no-repeat center center/contain;
  width: 82.794944353%;
  height: 101.3831136513%;
  left: 0;
}
.interview-detail .chart-section .chart-box > .img.purple::before {
  background: url("../img/interview/chart03-circle.svg") no-repeat no-repeat center center/contain;
  width: 77.0041649913%;
  height: 82.2804116429%;
  left: 35.5px;
  top: 22px;
}
.interview-detail .chart-section .chart-box > .img.yellow::before {
  background: url("../img/interview/chart04-circle.svg") no-repeat no-repeat center center/contain;
  width: 92.1760372649%;
  height: 91.913240323%;
  top: -1px;
  left: 11px;
}
.interview-detail .chart-section .chart-box > .img.is-animated::before {
  -webkit-animation: chart 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart 1.5s ease-in-out 0.5s 1 normal forwards;
}
.interview-detail .chart-section .chart-box > .img.is-animated.pink::before {
  -webkit-animation: chart02 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart02 1.5s ease-in-out 0.5s 1 normal forwards;
}
.interview-detail .chart-section .chart-box > .img.is-animated.purple::before {
  -webkit-animation: chart03 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart03 1.5s ease-in-out 0.5s 1 normal forwards;
}
.interview-detail .chart-section .chart-box > .img.is-animated.yellow::before {
  -webkit-animation: chart04 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart04 1.5s ease-in-out 0.5s 1 normal forwards;
}
.interview-detail .chart-section .chart-box > .img::before {
  content: "";
  position: absolute;
  background: url("../img/interview/chart01-circle.svg") no-repeat no-repeat center center/contain;
  display: block;
  width: 86.7315818622%;
  height: 96.091479763%;
  top: -1px;
  left: 11px;
  right: 0;
  margin: auto;
  z-index: 2;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.interview-detail .chart-section .chart-box > .img .chart {
  margin: 0 auto;
  width: 250px;
  height: 250px;
  background: rgba(225, 225, 225, 0.2);
  -webkit-clip-path: polygon(50% 0%, 97% 39%, 76.5% 90%, 21% 94%, 7.5% 40%);
          clip-path: polygon(50% 0%, 97% 39%, 76.5% 90%, 21% 94%, 7.5% 40%);
  -webkit-transform: scale(0);
          transform: scale(0);
}
.interview-detail .chart-section .chart-box > .img .chart.is-animated {
  -webkit-animation: chart 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart 1.5s ease-in-out 0.5s 1 normal forwards;
}
.interview-detail .chart-section .chart-box > .img.pink .chart {
  -webkit-clip-path: polygon(50% 0%, 93% 41%, 82.2% 99.2%, 24% 90%, 7.5% 40%);
          clip-path: polygon(50% 0%, 93% 41%, 82.2% 99.2%, 24% 90%, 7.5% 40%);
}
.interview-detail .chart-section .chart-box > .img.pink .chart.is-animated {
  -webkit-animation: chart02 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart02 1.5s ease-in-out 0.5s 1 normal forwards;
}
.interview-detail .chart-section .chart-box > .img.purple .chart {
  -webkit-clip-path: polygon(50% 10%, 97% 39%, 76.5% 90%, 27% 85%, 17% 43%);
          clip-path: polygon(50% 10%, 97% 39%, 76.5% 90%, 27% 85%, 17% 43%);
}
.interview-detail .chart-section .chart-box > .img.purple .chart.is-animated {
  -webkit-animation: chart03 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart03 1.5s ease-in-out 0.5s 1 normal forwards;
}
.interview-detail .chart-section .chart-box > .img.yellow .chart {
  width: 263px;
  height: 249px;
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 75% 90%, 25% 90%, 10% 40%);
          clip-path: polygon(50% 0%, 100% 38%, 75% 90%, 25% 90%, 10% 40%);
}
.interview-detail .chart-section .chart-box > .img.yellow .chart.is-animated {
  -webkit-animation: chart03 1.5s ease-in-out 0.5s 1 normal forwards;
          animation: chart03 1.5s ease-in-out 0.5s 1 normal forwards;
}
@-webkit-keyframes chart {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 3px;
  }
  40% {
    left: 5px;
  }
  60% {
    left: 6px;
  }
  80% {
    left: 8px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 11px;
  }
}
@keyframes chart {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 3px;
  }
  40% {
    left: 5px;
  }
  60% {
    left: 6px;
  }
  80% {
    left: 8px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 11px;
  }
}
@-webkit-keyframes chart02 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes chart02 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes chart03 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 10px;
  }
  40% {
    left: 15px;
  }
  60% {
    left: 25px;
  }
  80% {
    left: 30px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 35.5px;
  }
}
@keyframes chart03 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 10px;
  }
  40% {
    left: 15px;
  }
  60% {
    left: 25px;
  }
  80% {
    left: 30px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 35.5px;
  }
}
@-webkit-keyframes chart03_1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 10px;
  }
  40% {
    left: 15px;
  }
  60% {
    left: 25px;
  }
  80% {
    left: 30px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 34px;
  }
}
@keyframes chart03_1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 10px;
  }
  40% {
    left: 15px;
  }
  60% {
    left: 25px;
  }
  80% {
    left: 30px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 34px;
  }
}
@-webkit-keyframes chart04 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 5px;
  }
  40% {
    left: 10px;
  }
  60% {
    left: 14px;
  }
  80% {
    left: 18px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 22px;
  }
}
@keyframes chart04 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 5px;
  }
  40% {
    left: 10px;
  }
  60% {
    left: 14px;
  }
  80% {
    left: 18px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 22px;
  }
}
@-webkit-keyframes chart04_1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 5px;
  }
  40% {
    left: 10px;
  }
  60% {
    left: 14px;
  }
  80% {
    left: 18px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 20px;
  }
}
@keyframes chart04_1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    left: 0;
  }
  20% {
    left: 5px;
  }
  40% {
    left: 10px;
  }
  60% {
    left: 14px;
  }
  80% {
    left: 18px;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    left: 20px;
  }
}
.interview-detail .chart-section .chart-box .chart-list {
  position: relative;
  width: 100%;
  margin-top: -100%;
  aspect-ratio: 1/1;
  display: block;
}
.interview-detail .chart-section .chart-box .chart-list > li {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  color: #FFF;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.interview-detail .chart-section .chart-box .chart-list > li:first-child {
  top: -5px;
  left: 0;
  right: 0;
  margin: auto;
}
.interview-detail .chart-section .chart-box .chart-list > li:nth-child(2) {
  left: 104%;
  top: 34%;
}
.interview-detail .chart-section .chart-box .chart-list > li:nth-child(3) {
  left: 87%;
  bottom: -14px;
}
.interview-detail .chart-section .chart-box .chart-list > li:nth-child(4) {
  left: -11%;
  bottom: -14px;
}
.interview-detail .chart-section .chart-box .chart-list > li:nth-child(5) {
  left: -30%;
  top: 34%;
}
.interview-detail .chart-section .inn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 17px 66px 14px 80px;
}
.interview-detail .chart-section .inn-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 80px, min(80px, 5.7142857143vw));
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview-detail .chart-section .inn-wrap .txt {
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.1em;
  max-width: 600px;
}
.interview-detail .chart-section .inn-wrap .txt .inn-txt {
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.1em;
  max-width: 600px;
  display: block;
}
.interview-detail .chart-section .inn-wrap .txt .inn-txt + .inn-txt {
  margin-top: 20px;
}
.interview-detail .related-section {
  background: #E6E5DA;
  padding-top: 140px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.training-career .mv-ttl {
  padding-bottom: 68px;
}
.training-career .training-section.c-section {
  padding-block: 124px 140px;
}
.training-career .related-section {
  margin-top: -140px;
}

/* -----------------------------------------------
* projectstory Module
* projectstoryページ用
-------------------------------------------------- */
.projectstory .c-section {
  padding-block: 120px 130px;
}
.projectstory .mv-section {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-bottom: 0;
}
.projectstory .mv-section .breadcrumb-area {
  overflow-x: auto;
  /* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
  scrollbar-width: thin;
  scrollbar-color: #24486D #FCFBF0;
  /* Chrome, Edge and Safari */
}
.projectstory .mv-section .breadcrumb-area::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
.projectstory .mv-section .breadcrumb-area::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #FCFBF0;
}
.projectstory .mv-section .breadcrumb-area::-webkit-scrollbar-track:hover {
  background-color: #FCFBF0;
}
.projectstory .mv-section .breadcrumb-area::-webkit-scrollbar-track:active {
  background-color: #FCFBF0;
}
.projectstory .mv-section .breadcrumb-area::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #24486D;
}
.projectstory .mv-section .breadcrumb-area::-webkit-scrollbar-thumb:hover {
  background-color: #4C8FDB;
}
.projectstory .mv-section .breadcrumb-area::-webkit-scrollbar-thumb:active {
  background-color: #4C8FDB;
}
.projectstory .mv-section .breadcrumb-area .c-breadcrumb-list {
  padding-block: 20px 0;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.projectstory .mv-section .contents-wrap {
  position: relative;
}
.projectstory .mv-section .contents-wrap > .inner-block {
  padding-top: 140px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.projectstory .mv-section .contents-wrap .ttl-area {
  margin-bottom: 104px;
}
.projectstory .mv-section .contents-wrap .ttl-area .c-dot-ttl {
  color: #FFF;
}
.projectstory .mv-section .contents-wrap .ttl-area .ttl {
  display: inline-block;
  margin-top: 60px;
  margin-bottom: 30px;
}
.projectstory .mv-section .contents-wrap .ttl-area .ttl .inn {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #FFF;
  padding: 0 10px 1px;
}
.projectstory .mv-section .contents-wrap .ttl-area .ttl .inn + .inn {
  margin-top: 6px;
}
.projectstory .mv-section .contents-wrap .ttl-area .sub-ttl .inn {
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #24486D;
  color: #FFF;
  padding: 0 10px 1px;
}
.projectstory .mv-section .contents-wrap .ttl-area .sub-ttl .inn::after {
  background: #24486D;
}
.projectstory .mv-section .contents-wrap .bg-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  padding-bottom: 140px;
}
.projectstory .prologue-section .contents-wrap {
  max-width: 800px;
  margin-inline: auto;
  border-radius: 20px;
  background: #FFF;
  padding-block: 72px;
  padding-inline: 80px;
}
.projectstory .prologue-section .contents-wrap .ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.8em;
  position: relative;
}
.projectstory .prologue-section .contents-wrap .ttl::after {
  position: absolute;
  content: "";
  background-color: #2A2A2A;
  width: 40px;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.projectstory .prologue-section .contents-wrap .desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
.projectstory .profile-section {
  padding-block: 60px 80px;
}
.projectstory .profile-section .contents-wrap {
  display: grid;
  grid-template-columns: min(30%, 160px) 1fr;
  gap: 30px 40px;
}
.projectstory .profile-section .contents-wrap .txt-area .name-txt {
  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: 10px;
}
.projectstory .profile-section .contents-wrap .txt-area .name-txt + .desc {
  margin-top: 10px;
}
.projectstory .profile-section .contents-wrap .txt-area .name-txt .name,
.projectstory .profile-section .contents-wrap .txt-area .name-txt .job {
  display: inline-block;
}
.projectstory .profile-section .contents-wrap .txt-area .name-txt .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.projectstory .profile-section .contents-wrap .txt-area .name-txt .job {
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.05em;
}
.projectstory .profile-section .contents-wrap .txt-area .desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.05em;
}
.projectstory .story-article .inner-block > *:not(img) {
  max-width: 800px;
  margin-inline: auto;
}
.projectstory .story-article .inner-block > * + * {
  margin-top: 24px;
}
.projectstory .story-article .inner-block > * + img {
  margin-top: 130px;
}
.projectstory .story-article .inner-block h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.projectstory .story-article .inner-block h2 + * {
  margin-top: 40px;
}
.projectstory .story-article .inner-block p {
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.05em;
}
.projectstory .story-article .inner-block p + h2 {
  margin-top: 110px;
}
.projectstory .story-article .inner-block img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.projectstory .story-article .inner-block img + * {
  margin-top: 130px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.benefits .mv-ttl {
  padding-bottom: 68px;
}
.benefits .benefits-section.c-section {
  padding-block: 124px 140px;
}
.benefits .benefits-section .white-box .c-ttl04 + .txt-wrap {
  margin-top: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid #24486D;
}
.benefits .benefits-section .white-box .txt-wrap + .c-ttl04 {
  margin-top: 30px;
}
.benefits .benefits-section .white-box .txt-wrap.last {
  border-bottom: none;
  padding-bottom: 0;
}
.benefits .related-section {
  margin-top: -140px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.business .mv-ttl {
  padding-bottom: 68px;
}
.business .business-section .section-ttl {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 39px;
}
.business .business-section .section-txt {
  letter-spacing: 0.05em;
}
.business .business-section .section-img {
  width: 100%;
  margin: auto;
  padding-top: 50px;
}
.business .business-section .section-img > img {
  width: 100%;
}
.business .business-section .note {
  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;
  margin-top: 20px;
  gap: 10px;
}
.business .business-section .note .txt {
  letter-spacing: 0.05em;
}
.business .flex-box {
  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: clamp(30px, 100px, min(100px, 7.1428571429vw));
}
.business .flex-box.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.business .flex-box + .flex-box {
  margin-top: 140px;
}
.business .flex-box .img {
  width: clamp(350px, 510px, min(510px, 36.4285714286vw));
}
.business .flex-box .img > img {
  width: 100%;
  border-radius: 10px;
}
.business .flex-box .txt-wrap {
  width: clamp(350px, 510px, min(510px, 36.4285714286vw));
}
.business .flex-box .txt-wrap > .txt {
  letter-spacing: 0.05em;
}
.business .related-section {
  padding-top: 140px;
  padding-bottom: 200px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.faq .mv-ttl {
  padding-bottom: 68px;
}
.faq .faq-section .accordion-box .c-ttl04 {
  padding-left: 55px;
  display: block;
  max-width: 600px;
}
.faq .faq-section .accordion-box .c-ttl04::before {
  content: "Q";
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  color: #FFF;
  padding: 8px;
  display: block;
  width: 36px;
  top: 2px;
  margin: 0;
}
.faq .faq-section .accordion-box .c-ttl04 .inn::before {
  content: "";
  width: 20px;
  height: 4px;
  position: absolute;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #24486D;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq .faq-section .accordion-box .c-ttl04 .inn::after {
  content: "";
  width: 20px;
  height: 4px;
  position: absolute;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: #24486D;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq .faq-section .accordion-btn::before, .faq .faq-section .accordion-btn::after {
  content: none;
}
.faq .faq-section .accordion-btn.is-open .inn::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq .faq-section .accordion-content {
  padding: 20px 0 0 0;
  max-width: 600px;
}
.faq .faq-section .answer {
  padding-left: 55px;
  position: relative;
  font-size: 16px;
  line-height: 175%;
}
.faq .faq-section .answer .note {
  font-size: 14px;
  display: block;
}
.faq .faq-section .answer::before {
  content: "A";
  position: absolute;
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  color: #FFF;
  padding: 8px 8px 8px 9px;
  display: block;
  width: 36px;
  top: 1px;
  aspect-ratio: 1/1;
  background: #24486D;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
.faq .faq-section#link02 .accordion-box .c-ttl04::before {
  background: #93DCA6;
}
.faq .faq-section#link03 .accordion-box .c-ttl04::before {
  background: #4C8FDB;
}
.faq .faq-section#link04 .accordion-box .c-ttl04::before {
  background: #FFDA4F;
}
.faq .faq-section#link05 {
  margin-bottom: 140px;
}
.faq .faq-section#link05 .accordion-box .c-ttl04::before {
  background: #9691CD;
}
.faq .faq-section#link05 .btn-wrap .c-btn02 {
  max-width: 309px;
}
.faq .faq-section .btn-wrap {
  margin-top: 75px;
}
.faq .faq-section .btn-wrap > .txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.faq .faq-section .btn-wrap .c-btn02 {
  max-width: 225px;
  width: 100%;
  margin: 30px auto 0;
}
.faq .faq-section .btn-wrap .c-btn02 > .txt {
  padding-right: 20px;
}
.faq .related-section {
  margin-top: -140px;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 15px;
    padding-right: 15px;
  }
  .pc {
    display: none !important;
  }
  .c-header .inner-block {
    padding: 5px 15px;
    z-index: 990;
  }
  .c-header .logo a {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .c-header .logo img {
    max-height: 30px;
  }
  .c-header .logo .txt {
    font-size: 10px;
    margin-top: 0;
  }
  .c-header .c-menu-wrap .c-btn01 {
    font-size: 18px;
    max-width: 100%;
    min-width: auto;
    margin: min(40px, 10.2564102564vw) 0;
    padding: 10px 15px;
  }
  .c-header .c-btn01 {
    max-width: 80px;
    min-width: 80px;
  }
  .c-header .w-1280 {
    display: none;
  }
  .btn-menu {
    height: 20px;
    margin-left: 14px;
  }
  .btn-menu .inn {
    width: 32px;
    height: 22px;
  }
  .btn-menu .line:nth-of-type(2) {
    top: 10px;
  }
  .c-job-section {
    background-position: top left;
  }
  .c-job-section .inner-block {
    padding-top: min(140px, 35.8974358974vw);
    padding-bottom: min(140px, 35.8974358974vw);
  }
  .c-job-section .loop-txt-wrap.top {
    top: -1px;
  }
  .c-job-section .loop-txt-wrap.bottom {
    bottom: -1px;
  }
  .c-job-section .c-btn04 {
    border: none;
    border-radius: 10px;
    padding: min(48px, 12.3076923077vw) min(48px, 12.3076923077vw) min(46px, 11.7948717949vw) min(40px, 10.2564102564vw);
  }
  .c-job-section .c-btn04::before, .c-job-section .c-btn04::after {
    bottom: 0;
    top: 0;
  }
  .c-job-section .c-btn04::before {
    right: min(40px, 10.2564102564vw);
  }
  .c-job-section .c-btn04::after {
    right: min(54px, 13.8461538462vw);
  }
  .c-job-section .c-btn04 .ttl {
    padding-left: 0;
  }
  .c-footer .inner-block {
    display: grid;
    padding: 43px 15px 40px;
  }
  .c-footer .c-menu-wrap {
    grid-area: 2/1/3/2;
  }
  .c-footer .c-menu-wrap .wrap:not(:first-child) .bold, .c-footer .c-menu-wrap .wrap:not(:first-child) .aco-btn {
    border-top: 1px solid #24486D;
  }
  .c-footer .c-menu-wrap .wrap:last-child .bold, .c-footer .c-menu-wrap .wrap:last-child .aco-btn {
    border-bottom: 1px solid #24486D;
  }
  .c-footer .c-menu-wrap .wrap:last-child .bold:last-child, .c-footer .c-menu-wrap .wrap:last-child .aco-btn:last-child {
    border-top: none;
  }
  .c-footer .c-menu-wrap .bold {
    font-size: min(14px, 3.5897435897vw);
    padding: min(12px, 3.0769230769vw) 0;
  }
  .c-footer .c-menu-wrap .aco-btn {
    color: #24486D;
    display: block;
    font-size: min(14px, 3.5897435897vw);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.75;
    padding: min(15px, 3.8461538462vw) 0;
    position: relative;
  }
  .c-footer .c-menu-wrap .aco-btn::before {
    background: url("../img/common/ico-arrow02.svg") no-repeat center center/contain;
    content: "";
    height: 7px;
    width: 12px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-footer .c-menu-wrap .aco-btn.active {
    border-color: transparent;
  }
  .c-footer .c-menu-wrap .aco-btn.active::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-footer .c-menu-wrap .sub-menu {
    padding-bottom: min(15px, 3.8461538462vw);
  }
  .c-footer .c-menu-wrap .sub-menu a {
    font-size: min(12px, 3.0769230769vw);
    padding: 0 min(30px, 7.6923076923vw) 0 0;
    width: 100%;
  }
  .c-footer .sub-menu {
    display: none;
    margin-left: auto;
    width: calc(100% - 20px);
  }
  .c-footer .logo-wrap {
    gap: min(20px, 5.1282051282vw);
    grid-area: 1/1/2/2;
    margin: 0 0 min(55px, 14.1025641026vw);
  }
  .c-footer .logo-wrap img {
    max-height: 39px;
  }
  .c-footer .logo-wrap img {
    max-width: min(204px, 52.3076923077vw);
  }
  .c-footer .logo-wrap .txt {
    font-size: min(10px, 2.5641025641vw);
    padding-top: min(15px, 3.8461538462vw);
  }
  .c-footer .bottom-wrap {
    grid-area: 3/1/4/2;
    grid-template-columns: 1fr;
    gap: min(30px, 7.6923076923vw);
    margin-top: min(40px, 10.2564102564vw);
  }
  .c-footer .bottom-wrap .copyright {
    font-size: min(10px, 2.5641025641vw);
  }
  #pagetop {
    display: none;
  }
  #pagetop a {
    padding-right: 35px;
  }
  #pagetop a::after {
    top: 3px;
    right: 12px;
  }
  .c-ttl01 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .c-ttl02 {
    padding-left: min(32px, 8.2051282051vw);
  }
  .c-ttl02::before {
    top: min(7px, 1.7948717949vw);
    height: min(24px, 6.1538461538vw);
    width: min(22px, 5.641025641vw);
  }
  .c-ttl02 .en {
    font-size: min(32px, 8.2051282051vw);
  }
  .c-ttl02 .ja {
    font-size: min(18px, 4.6153846154vw);
    margin-top: 0;
  }
  .c-ttl03 {
    padding-left: 32px;
    font-size: 24px;
    margin-bottom: 25px;
  }
  .c-ttl03::before {
    width: 22px;
    height: 24px;
    top: 10px;
    right: -25px;
    bottom: inherit;
    margin: 0;
  }
  .c-ttl04 {
    font-size: 18px;
    padding-left: 20px;
  }
  .c-ttl04::before {
    width: 12px;
    top: 7px;
    height: 12px;
    aspect-ratio: 1/1;
  }
  .c-dot-ttl {
    font-size: 20px;
  }
  .c-dot-ttl {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.05em;
    padding-left: 1.2em;
  }
  .c-mv {
    padding-bottom: 38px;
    padding-top: 62px;
  }
  .c-mv .c-breadcrumb-list {
    display: none;
  }
  .c-mv .mv-ttl {
    padding: 42px 0 41px;
    max-width: 500px;
    margin-right: auto;
    margin-left: 0;
  }
  .c-mv .mv-ttl .ttl::before {
    width: max(97px, 24vw);
    max-width: 130px;
    height: auto;
    aspect-ratio: 97/45;
    top: -25px;
    right: -25px;
    bottom: inherit;
    margin: 0;
  }
  .c-mv .mv-ttl .ttl .big {
    font-size: 32px;
    padding-left: 32px;
  }
  .c-mv .mv-ttl .ttl .big::before {
    background: url("../img/common/ico-ttl-sp.svg") no-repeat no-repeat center center/contain;
    width: 22px;
    height: 24px;
    aspect-ratio: 22/24;
  }
  .c-mv .mv-ttl .ttl .small {
    padding-top: 5px;
    font-size: 18px;
    padding-left: 28px;
  }
  .c-mv .mv-ttl + .lead {
    margin-bottom: 36px;
    font-size: 16px;
  }
  .c-mv .lead .small {
    font-size: 12px;
    margin-top: 0;
  }
  .c-mv .txt {
    font-size: 14px;
  }
  .c-mv .mv-img {
    margin-bottom: 2px;
  }
  .c-mv .mv-img > img {
    aspect-ratio: 360/360;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  .c-mv .mv-img.mv-02 > img {
    aspect-ratio: 360/270;
    -o-object-position: right -5em bottom 0;
       object-position: right -5em bottom 0;
  }
  .c-mv .mv-img.mv-02.jobs > img {
    -o-object-position: right -12em bottom 0;
       object-position: right -12em bottom 0;
  }
  .c-link-list {
    gap: 8px 10px;
  }
  .c-link-list a {
    font-size: 12px;
    line-height: 1.2;
  }
  .c-desc {
    padding-left: 22px;
    margin-bottom: 13px;
    font-size: 14px;
  }
  .c-desc::before {
    width: 12px;
    height: 12px;
  }
  .c-section {
    padding-block: 70px;
  }
  .c-section.bg-white {
    border-radius: 50px 0;
  }
  .c-section.bg-white + .related-section {
    margin-top: -70px;
  }
  .related-section {
    padding: 140px 0 70px;
  }
  .related-section .inn {
    padding: 40px 15px 15px;
    border-radius: 10px;
  }
  .related-section .ttl .en {
    font-size: 32px;
  }
  .related-section .ttl .ja {
    margin-bottom: 25px;
    font-size: 18px;
    margin-top: 5px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .c-link-box {
    display: block;
    max-height: inherit;
  }
  .c-link-box .img > img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .c-link-box .img {
    width: 100%;
  }
  .c-link-box .txt-wrap {
    padding-top: clamp(15px, 20px, min(20px, 5.1282051282vw));
    padding-bottom: clamp(20px, 27px, min(27px, 6.9230769231vw));
  }
  .c-link-box .txt-wrap > .ttl {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .c-link-box .txt-wrap > .txt {
    margin-bottom: 15px;
  }
  .c-link-box .txt-wrap > .bg-txt {
    font-size: min(12px, 3.0769230769vw);
    padding: 3px min(10px, 2.5641025641vw);
    margin-top: min(25px, 6.4102564103vw);
    margin-bottom: min(30px, 7.6923076923vw);
  }
  .c-link-box .txt-wrap > .num {
    font-size: min(80px, 20.5128205128vw);
    bottom: max(-12px, -3.0769230769vw);
    right: min(18px, 4.6153846154vw);
  }
  .c-card-wrap {
    grid-template-columns: 1fr;
    gap: min(20px, 5.1282051282vw);
  }
  .c-card-wrap .c-card-link {
    border-radius: 10px;
  }
  .c-card-wrap .btn-wrap {
    gap: min(10px, 2.5641025641vw);
    padding: 0 min(20px, 5.1282051282vw) min(20px, 5.1282051282vw);
  }
  .c-card-wrap .ttl {
    font-size: min(18px, 4.6153846154vw);
  }
  .c-card-wrap .btn {
    height: min(40px, 10.2564102564vw);
    width: min(40px, 10.2564102564vw);
  }
  .int-box.green > a .hov.left {
    -webkit-transform: translateX(-100%) translateY(-120%) rotate(-30deg);
            transform: translateX(-100%) translateY(-120%) rotate(-30deg);
  }
  .int-box.green > a .hov.top {
    -webkit-transform: translateX(-95%) translateY(-220%) rotate(-30deg);
            transform: translateX(-95%) translateY(-220%) rotate(-30deg);
  }
  .int-box.green > a .hov.right {
    -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
            transform: translateX(155%) translateY(-100%) rotate(30deg);
  }
  .int-box.pink > a .hov.left {
    -webkit-transform: translateX(-70%) translateY(-70%) rotate(-30deg);
            transform: translateX(-70%) translateY(-70%) rotate(-30deg);
  }
  .int-box.pink > a .hov.top {
    -webkit-transform: translateX(-68%) translateY(-242%) rotate(-30deg);
            transform: translateX(-68%) translateY(-242%) rotate(-30deg);
  }
  .int-box.pink > a .hov.right {
    -webkit-transform: translateX(65%) translateY(-83%) rotate(30deg);
            transform: translateX(65%) translateY(-83%) rotate(30deg);
  }
  .int-box.purple > a .hov.left {
    -webkit-transform: translateX(-150%) translateY(-100%) rotate(-30deg);
            transform: translateX(-150%) translateY(-100%) rotate(-30deg);
  }
  .int-box.purple > a .hov.top {
    -webkit-transform: translateX(-41%) translateY(-140%) rotate(-30deg);
            transform: translateX(-41%) translateY(-140%) rotate(-30deg);
  }
  .int-box.purple > a .hov.right {
    -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
            transform: translateX(155%) translateY(-100%) rotate(30deg);
  }
  .int-box.yellow > a .hov.left {
    -webkit-transform: translateX(-75%) translateY(-60%) rotate(-30deg);
            transform: translateX(-75%) translateY(-60%) rotate(-30deg);
  }
  .int-box.yellow > a .hov.top {
    -webkit-transform: translateX(-93%) translateY(-248%) rotate(-30deg);
            transform: translateX(-93%) translateY(-248%) rotate(-30deg);
  }
  .int-box.yellow > a .hov.right {
    -webkit-transform: translateX(100%) translateY(-210%) rotate(30deg);
            transform: translateX(100%) translateY(-210%) rotate(30deg);
  }
  .int-box .txt-area .ttl {
    font-size: min(20px, 5.1282051282vw);
    margin-top: min(10px, 2.5641025641vw);
    margin-bottom: min(5px, 1.2820512821vw);
    letter-spacing: 0.05em;
  }
  .int-box .txt-area .name {
    font-size: min(18px, 4.6153846154vw);
    margin-bottom: min(10px, 2.5641025641vw);
  }
  .int-box .txt-area .info-wrap .l-txt {
    font-size: min(12px, 3.0769230769vw);
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .ttl {
    font-size: 14px;
    padding-bottom: 13px;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li {
    margin-top: 15px;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li a::before {
    top: 9px;
    width: min(20px, 5.1282051282vw);
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li + li {
    margin-top: 12px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box {
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 10px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .img-wrap {
    border-radius: 10px;
    margin-top: 21px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap {
    padding-bottom: 20px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap .graph {
    min-width: 840px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .graph-wrap .graph.w586 {
    min-width: 586px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .txt-wrap {
    margin-top: 20px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont {
    margin-top: 12px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li {
    gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 23px 20px;
    font-size: 14px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .icon-wrap > p {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .icon {
    width: 50px;
    height: 50px;
    margin: auto;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .icon > img {
    width: 30px;
    height: 30px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .txt-wrap {
    width: calc(100% - 50px - 20px);
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .ttl {
    font-size: 18px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li .ttl + p {
    margin-top: 3px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li + li {
    margin-top: 40px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li + li::before {
    top: -26px;
    width: 16px;
    height: 15px;
  }
  .accordion-btn {
    padding: 23px 20px;
  }
  .accordion-btn::before, .accordion-btn::after {
    content: "";
    right: 20px;
  }
  .accordion-btn.is-open::after {
    right: 20px;
  }
  .accordion-content {
    padding: 0 20px 26px;
  }
  .accordion-content .border-box + .border-box {
    padding-top: 20px;
    margin-top: 22px;
  }
  .accordion-content .ttl {
    font-size: 18px;
  }
  .accordion-content .ttl + .txt {
    margin-top: 13px;
  }
  .accordion-content .ttl + .c-dots-list {
    margin-top: 15px;
  }
  .accordion-content .txt {
    line-height: 1.8em;
  }
  .accordion-content .c-dot-ttl {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 1.6em;
  }
  .accordion-content .c-btn02 {
    padding: 8px 31px 9px 19px;
    margin-bottom: 23px;
  }
  .accordion-content .gray-wrap {
    margin-top: 14px;
    padding: 22px 28px;
    margin-bottom: 15px;
  }
  .c-dots-list li {
    line-height: 1.7em;
  }
  .c-dots-list li + li {
    margin-top: 7px;
  }
  .c-dots-list + .txt {
    margin-top: 5px;
  }
  .reference {
    font-size: 12px;
    padding-left: 16px;
  }
  .loop-txt-wrap .loop-txt {
    font-size: min(32px, 8.2051282051vw);
    padding-left: min(10px, 2.5641025641vw);
  }
  .c-btn01 {
    font-size: 12px;
    padding: 8px 15px;
  }
  .c-btn02 {
    padding: 13px 31px 15px 19px;
    margin: auto;
  }
  .c-btn02::before {
    right: 18px;
  }
  .c-btn02 > .txt {
    padding-right: clamp(20px, 40px, min(40px, 10.2564102564vw));
  }
  .c-btn03::before {
    height: min(32px, 8.2051282051vw);
    width: min(32px, 8.2051282051vw);
  }
  .c-btn03::after {
    right: min(9px, 2.3076923077vw);
    height: min(10px, 2.5641025641vw);
    width: min(10px, 2.5641025641vw);
  }
  .c-btn03 {
    font-size: min(14px, 3.5897435897vw);
    padding-right: min(51px, 13.0769230769vw);
  }
  .c-btn04 .c-ttl02 {
    padding-left: min(43px, 11.0256410256vw);
  }
  .c-btn04 .ttl {
    font-size: min(18px, 4.6153846154vw);
    margin-bottom: min(5px, 1.2820512821vw);
    padding-left: min(43px, 11.0256410256vw);
  }
  .c-btn04 .ttl.medium {
    font-size: min(18px, 4.6153846154vw);
    margin-bottom: 0;
  }
  .c-btn04 .txt {
    font-size: min(12px, 3.0769230769vw);
    padding-left: min(43px, 11.0256410256vw);
  }
  .c-btn04::before {
    height: min(40px, 10.2564102564vw);
    width: min(40px, 10.2564102564vw);
    right: min(19px, 4.8717948718vw);
    bottom: inherit;
    top: min(30px, 7.6923076923vw);
  }
  .c-btn04::after {
    right: min(33px, 8.4615384615vw);
    height: min(12px, 3.0769230769vw);
    width: min(12px, 3.0769230769vw);
    bottom: inherit;
    top: min(44px, 11.2820512821vw);
  }
  .c-btn04 {
    border-radius: 10px;
    padding: min(18px, 4.6153846154vw) min(48px, 12.3076923077vw) min(20px, 5.1282051282vw) min(15px, 3.8461538462vw);
    grid-template-columns: 1fr;
    gap: min(3px, 0.7692307692vw);
  }
  .home .kv-section {
    padding-bottom: min(100px, 25.641025641vw);
  }
  .home .kv-section .inner-block {
    padding: min(110px, 28.2051282051vw) min(15px, 3.8461538462vw) min(35px, 8.9743589744vw);
  }
  .home .kv-section .kv-ttl {
    font-size: min(34px, 8.7179487179vw);
    line-height: 1.5;
  }
  .home .kv-section .kv-ttl::before {
    height: min(36px, 9.2307692308vw);
    width: min(78px, 20vw);
    right: min(5px, 1.2820512821vw);
    bottom: max(-3px, -0.7692307692vw);
    top: inherit;
  }
  .home .kv-section .mv-item-area {
    width: min(386px, 98.9743589744vw);
    height: min(1965px, 503.8461538462vw);
  }
  .home .kv-section .mv-item-area .item {
    overflow: hidden;
  }
  .home .kv-section .mv-item-area .item-01, .home .kv-section .mv-item-area .item-02, .home .kv-section .mv-item-area .item-03, .home .kv-section .mv-item-area .item-04, .home .kv-section .mv-item-area .item-05, .home .kv-section .mv-item-area .item-06, .home .kv-section .mv-item-area .item-07, .home .kv-section .mv-item-area .item-09, .home .kv-section .mv-item-area .item-10, .home .kv-section .mv-item-area .item-11 {
    max-width: min(190px, 48.7179487179vw);
  }
  .home .kv-section .mv-item-area .item-01 .front-card .txt-img {
    margin-top: min(30px, 7.6923076923vw);
  }
  .home .kv-section .mv-item-area .item-01 .front-card .txt-img img {
    height: min(97px, 24.8717948718vw);
  }
  .home .kv-section .mv-item-area .item-01 .front-card .en-img {
    max-width: min(118px, 30.2564102564vw);
  }
  .home .kv-section .mv-item-area .item-01 .front-card {
    padding: min(16px, 4.1025641026vw) min(18px, 4.6153846154vw) 0;
  }
  .home .kv-section .mv-item-area .item-01 .illust-area {
    margin-top: min(40px, 10.2564102564vw);
  }
  .home .kv-section .mv-item-area .item-01 .illust-area .illust.plant {
    left: max(-1px, -0.2564102564vw);
    bottom: min(32px, 8.2051282051vw);
    max-width: min(51px, 13.0769230769vw);
  }
  .home .kv-section .mv-item-area .item-01 .illust-area .illust.cat {
    right: max(-7px, -1.7948717949vw);
    bottom: min(27px, 6.9230769231vw);
    max-width: min(100px, 25.641025641vw);
  }
  .home .kv-section .mv-item-area .item-01 .illust-area .illust.zzz {
    right: max(-20px, -5.1282051282vw);
    max-width: min(60px, 15.3846153846vw);
  }
  .home .kv-section .mv-item-area .item-01 .back-card .en-img {
    max-width: min(118px, 30.2564102564vw);
  }
  .home .kv-section .mv-item-area .item-02 {
    top: 0;
    left: inherit;
    right: 0;
  }
  .home .kv-section .mv-item-area .item-02 .front-card {
    padding: min(52px, 13.3333333333vw) min(21px, 5.3846153846vw) 0;
  }
  .home .kv-section .mv-item-area .item-03 {
    top: min(250px, 64.1025641026vw);
  }
  .home .kv-section .mv-item-area .item-03 .front-card {
    padding: min(51px, 13.0769230769vw) min(21px, 5.3846153846vw) 0;
  }
  .home .kv-section .mv-item-area .item-03 .illust {
    max-width: min(143px, 36.6666666667vw);
  }
  .home .kv-section .mv-item-area .item-04 {
    bottom: inherit;
    top: min(499px, 127.9487179487vw);
  }
  .home .kv-section .mv-item-area .item-04 .front-card .txt-img {
    margin-top: min(34px, 8.7179487179vw);
    max-width: min(146px, 37.4358974359vw);
  }
  .home .kv-section .mv-item-area .item-04 .front-card .en-img {
    max-width: min(120px, 30.7692307692vw);
  }
  .home .kv-section .mv-item-area .item-04 .front-card {
    padding: min(16px, 4.1025641026vw) min(19px, 4.8717948718vw) 0;
  }
  .home .kv-section .mv-item-area .item-04 .illust-area {
    min-height: min(149px, 38.2051282051vw);
    margin-top: min(6px, 1.5384615385vw);
  }
  .home .kv-section .mv-item-area .item-04 .illust-area .illust.plant02 {
    bottom: min(33px, 8.4615384615vw);
    max-width: min(62px, 15.8974358974vw);
  }
  .home .kv-section .mv-item-area .item-04 .back-card .en-img {
    max-width: min(120px, 30.7692307692vw);
  }
  .home .kv-section .mv-item-area .item-05 {
    top: min(500px, 128.2051282051vw);
    left: inherit;
    right: 0;
    min-height: min(216px, 55.3846153846vw);
  }
  .home .kv-section .mv-item-area .item-05 .front-card {
    padding: min(43px, 11.0256410256vw) min(8px, 2.0512820513vw) min(50px, 12.8205128205vw);
    min-height: min(218px, 55.8974358974vw);
  }
  .home .kv-section .mv-item-area .item-05 .front-card .txt-img {
    max-width: min(169px, 43.3333333333vw);
  }
  .home .kv-section .mv-item-area .item-06 {
    top: inherit;
    bottom: min(744px, 190.7692307692vw);
    left: 0;
    right: inherit;
  }
  .home .kv-section .mv-item-area .item-06 .front-card .txt-img {
    margin-bottom: min(43px, 11.0256410256vw);
    max-width: min(178px, 45.641025641vw);
  }
  .home .kv-section .mv-item-area .item-06 .front-card .en-img {
    max-width: min(173px, 44.358974359vw);
  }
  .home .kv-section .mv-item-area .item-06 .front-card {
    padding: min(16px, 4.1025641026vw) min(3px, 0.7692307692vw) min(22px, 5.641025641vw) min(10px, 2.5641025641vw);
  }
  .home .kv-section .mv-item-area .item-06 .back-card .en-img {
    max-width: min(173px, 44.358974359vw);
  }
  .home .kv-section .mv-item-area .item-07 {
    top: min(723px, 185.3846153846vw);
  }
  .home .kv-section .mv-item-area .item-07 .front-card {
    padding: min(26px, 6.6666666667vw) min(4px, 1.0256410256vw) min(33px, 8.4615384615vw);
    min-height: min(240px, 61.5384615385vw);
  }
  .home .kv-section .mv-item-area .item-07 .front-card .txt-img {
    max-width: min(269px, 68.9743589744vw);
  }
  .home .kv-section .mv-item-area .item-07 .front-card .en-img {
    margin-top: min(19px, 4.8717948718vw);
    max-width: min(118px, 30.2564102564vw);
  }
  .home .kv-section .mv-item-area .item-07 .back-card .ttl {
    margin-top: min(15px, 3.8461538462vw);
  }
  .home .kv-section .mv-item-area .item-07 .back-card .en-img {
    max-width: min(118px, 30.2564102564vw);
  }
  .home .kv-section .mv-item-area .item-08 {
    bottom: min(501px, 128.4615384615vw);
    max-width: 100%;
  }
  .home .kv-section .mv-item-area .item-08 .front-card {
    padding: min(28px, 7.1794871795vw) min(9px, 2.3076923077vw) min(20px, 5.1282051282vw);
  }
  .home .kv-section .mv-item-area .item-08 .front-card .txt-img {
    max-width: min(313px, 80.2564102564vw);
  }
  .home .kv-section .mv-item-area .item-08 .front-card .en-img {
    max-width: min(168px, 43.0769230769vw);
    right: max(-64px, -16.4102564103vw);
    top: max(-15px, -3.8461538462vw);
  }
  .home .kv-section .mv-item-area .item-08 .back-card .en-img {
    max-width: min(168px, 43.0769230769vw);
  }
  .home .kv-section .mv-item-area .item-09 {
    bottom: min(745px, 191.0256410256vw);
  }
  .home .kv-section .mv-item-area .item-10 {
    bottom: min(250px, 64.1025641026vw);
  }
  .home .kv-section .mv-item-area .item-11 {
    bottom: min(250px, 64.1025641026vw);
    left: inherit;
    right: 0;
  }
  .home .kv-section .mv-item-area .item-11 .front-card {
    padding: min(54px, 13.8461538462vw) 0 0;
  }
  .home .kv-section .mv-item-area .item-12 {
    max-width: 100%;
  }
  .home .kv-section .mv-item-area .item-12 .front-card {
    padding: min(10px, 2.5641025641vw) min(12px, 3.0769230769vw) 0;
  }
  .home .kv-section .mv-item-area .item-12 .front-card .txt-img {
    max-width: min(360px, 92.3076923077vw);
  }
  .home .kv-section .mv-item-area .item-12 .front-card .en-img {
    bottom: min(39px, 10vw);
    left: min(17px, 4.358974359vw);
    max-width: min(115px, 29.4871794872vw);
  }
  .home .kv-section .mv-item-area .item-12 .front-card .illust-area {
    gap: min(10px, 2.5641025641vw);
    min-height: min(97px, 24.8717948718vw);
    margin: min(40px, 10.2564102564vw) min(5px, 1.2820512821vw) 0 auto;
  }
  .home .kv-section .mv-item-area .item-12 .front-card .illust-area img {
    max-height: min(99px, 25.3846153846vw);
  }
  .home .kv-section .mv-item-area .item-12 .back-card .ttl {
    margin-top: min(23px, 5.8974358974vw);
    text-align: center;
  }
  .home .kv-section .mv-item-area .item-12 .back-card .en-img {
    max-width: min(115px, 29.4871794872vw);
  }
  .home .kv-section .mv-item-area .back-card {
    padding: min(64px, 16.4102564103vw) min(12px, 3.0769230769vw) min(4px, 1.0256410256vw);
  }
  .home .kv-section .mv-item-area .back-card .ico-img {
    margin: min(10px, 2.5641025641vw) auto min(3px, 0.7692307692vw);
    max-width: min(80px, 20.5128205128vw);
  }
  .home .kv-section .mv-item-area .back-card .ttl {
    font-size: min(18px, 4.6153846154vw);
    text-align: left;
  }
  .home .kv-section .mv-item-area .back-card .close-btn {
    top: min(7px, 1.7948717949vw);
    right: min(7px, 1.7948717949vw);
    height: min(30px, 7.6923076923vw);
    width: min(30px, 7.6923076923vw);
  }
  .home .kv-section .mv-item-area .back-card .close-btn::before, .home .kv-section .mv-item-area .back-card .close-btn::after {
    height: min(19px, 4.8717948718vw);
  }
  .home .kv-section .mv-item-area .illust-area {
    min-height: min(172px, 44.1025641026vw);
  }
  .home .kv-section .mv-item-area .illust-area::before {
    height: min(33px, 8.4615384615vw);
    width: calc(100% + min(38px, 9.7435897436vw));
    left: max(-19px, -4.8717948718vw);
    bottom: 0;
  }
  .home .kv-section .mv-item-area .noise.window::before {
    background: url("../img/home/mv-window-filter_sp.svg") no-repeat center center/contain;
  }
  .home .kv-section .mv-item-area .l-flex {
    gap: min(20px, 5.1282051282vw);
    margin-top: min(20px, 5.1282051282vw);
  }
  .home .kv-section .mv-item-area .l-flex .ico {
    max-width: min(80px, 20.5128205128vw);
  }
  .home .kv-section .deco--01 {
    top: min(422px, 108.2051282051vw);
    left: min(73px, 18.7179487179vw);
    right: inherit;
    max-width: min(48px, 12.3076923077vw);
  }
  .home .kv-section .deco--02 {
    bottom: max(-34px, -8.7179487179vw);
    left: min(30px, 7.6923076923vw);
    max-width: min(47px, 12.0512820513vw);
  }
  .home .kv-section .deco--03 {
    bottom: max(-112px, -28.7179487179vw);
    right: min(15px, 3.8461538462vw);
    max-width: min(80px, 20.5128205128vw);
  }
  .home .about-section {
    border-radius: 50px 0 50px 0;
  }
  .home .about-section::before {
    height: min(132px, 33.8461538462vw);
    width: min(180px, 46.1538461538vw);
    right: min(25px, 6.4102564103vw);
  }
  .home .about-section .inner-block {
    padding-top: min(90px, 23.0769230769vw);
    padding-bottom: min(95px, 24.358974359vw);
  }
  .home .about-section .c-ttl02 {
    margin-bottom: min(30px, 7.6923076923vw);
  }
  .home .about-section .dot-ttl {
    font-size: min(18px, 4.6153846154vw);
    padding-left: min(22px, 5.641025641vw);
    margin-top: min(50px, 12.8205128205vw);
    margin-bottom: min(15px, 3.8461538462vw);
  }
  .home .about-section .dot-ttl::before {
    height: min(12px, 3.0769230769vw);
    width: min(12px, 3.0769230769vw);
  }
  .home .about-section .txt {
    margin-bottom: min(33px, 8.4615384615vw);
    font-size: min(14px, 3.5897435897vw);
  }
  .home .about-section .c-btn03 {
    margin-top: min(20px, 5.1282051282vw);
  }
  .home .interview-section {
    margin-top: max(-100px, -25.641025641vw);
  }
  .home .interview-section .inner-block {
    padding-top: min(190px, 48.7179487179vw);
    padding-bottom: min(100px, 25.641025641vw);
  }
  .home .interview-section .c-btn02 + .c-ttl02 {
    margin-top: min(130px, 33.3333333333vw);
  }
  .home .interview-section .c-ttl02 + .c-link-box {
    margin-top: min(30px, 7.6923076923vw);
  }
  .home .interview-section .c-link-box {
    display: block;
  }
  .home .interview-section .c-link-box + .c-link-box {
    margin-top: min(40px, 10.2564102564vw);
  }
  .home .interview-section .c-link-box + .c-link-box .num {
    right: max(-5px, -1.2820512821vw);
  }
  .home .interview-section .c-link-box .img {
    max-height: 239px;
  }
  .home .interview-section .c-link-box .txt-wrap {
    padding-bottom: clamp(36px, 36px, min(36px, 9.2307692308vw));
  }
  .home .interview-section .c-link-box .txt-wrap > .ttl {
    font-size: min(18px, 4.6153846154vw);
  }
  .home .interview-section .interview-swiper {
    margin-top: min(30px, 7.6923076923vw);
    margin-bottom: min(40px, 10.2564102564vw);
    padding-left: min(25px, 6.4102564103vw);
  }
  .home .interview-section .interview-swiper .swiper-slide {
    width: min(280px, 71.7948717949vw);
  }
  .home .interview-section .control-wrap {
    gap: min(10px, 2.5641025641vw);
    margin-top: min(15px, 3.8461538462vw);
    margin-left: max(-18px, -4.6153846154vw);
  }
  .home .interview-section .swiper-button-prev, .home .interview-section .swiper-button-next {
    width: min(38px, 9.7435897436vw);
    height: min(38px, 9.7435897436vw);
  }
  .home .interview-section .swiper-button-prev::before, .home .interview-section .swiper-button-next::before {
    height: min(7px, 1.7948717949vw);
    width: min(12px, 3.0769230769vw);
  }
  .home .interview-section .swiper-button-next {
    margin-left: min(10px, 2.5641025641vw);
  }
  .home .interview-section .swiper-scrollbar-drag {
    height: 5px;
  }
  .home .environment-section {
    padding-top: min(100px, 25.641025641vw);
    margin-top: max(-100px, -25.641025641vw);
  }
  .home .environment-section .bg-white {
    border-radius: 20px 0 50px 0;
  }
  .home .environment-section .bg-white::before {
    height: min(100px, 25.641025641vw);
  }
  .home .environment-section .bg-white::after {
    height: min(336px, 86.1538461538vw);
    width: min(80px, 20.5128205128vw);
    bottom: min(100px, 25.641025641vw);
    right: min(40px, 10.2564102564vw);
  }
  .home .environment-section .inner-block {
    padding-top: min(68px, 17.4358974359vw);
    padding-bottom: min(200px, 51.2820512821vw);
  }
  .home .environment-section .c-card-wrap {
    margin-top: min(28px, 7.1794871795vw);
  }
  .home .faq-section {
    margin-top: max(-100px, -25.641025641vw);
  }
  .home .faq-section::before {
    height: min(180px, 46.1538461538vw);
  }
  .home .faq-section .inner-block {
    padding-top: min(200px, 51.2820512821vw);
    padding-bottom: min(114px, 29.2307692308vw);
  }
  .home .faq-section .deco--01 {
    top: min(142px, 36.4102564103vw);
    left: min(34px, 8.7179487179vw);
    max-width: min(47px, 12.0512820513vw);
  }
  .home .faq-section .deco--02 {
    top: min(140px, 35.8974358974vw);
    right: min(18px, 4.6153846154vw);
    max-width: min(78px, 20vw);
  }
  .home .faq-section .deco--03 {
    bottom: min(56px, 14.358974359vw);
    right: min(44px, 11.2820512821vw);
    max-width: min(74px, 18.9743589744vw);
  }
  .message .mv-section .mv-img {
    margin-bottom: 0;
  }
  .message .mv-section .profile-wrap .name {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 22px;
    padding-bottom: 14px;
  }
  .message .mv-section .profile-wrap .ja {
    font-size: 18px;
  }
  .message .mv-section .profile-wrap .en {
    font-size: 12px;
  }
  .message .mv-section .profile-wrap .post .txt {
    font-size: 12px;
    display: inline;
  }
  .message .message-section .grid-box:first-child .c-desc {
    margin-bottom: 13px;
  }
  .message .message-section .grid-box .img > img {
    border-radius: 10px;
    width: 100%;
  }
  .message .message-section .txt-box .txt + .txt {
    margin-top: 20px;
  }
  .message .message-section .box .img {
    max-width: 550px;
    margin: 43px auto 0;
  }
  .message .message-section .box .img > img {
    border-radius: 10px;
  }
  .message .related-section .c-link-box .txt-wrap > .ttl {
    margin-bottom: 20px;
  }
  .interview .interview-box {
    padding-top: 0;
  }
  .interview .interview-box .inn-wrap .int-box .post {
    padding: 4px 20px 4px 10px;
    bottom: 22.4444444444%;
  }
  .interview .interview-box .inn-wrap .int-box .post::after {
    width: 94%;
  }
  .interview .interview-box .inn-wrap .int-box .txt-wrap {
    font-size: 20px;
    bottom: 4.4444444444%;
  }
  .interview .interview-box .inn-wrap .int-box .txt-wrap .inn {
    padding: 2px 9px 3px;
    letter-spacing: 0.05em;
  }
  .interview .interview-box .inn-wrap {
    -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: 70px;
  }
  .interview .interview-box .int-box {
    width: clamp(280px, 360px, min(360px, 92.3076923077vw));
  }
  .interview-detail .detail-section {
    padding-top: 65px;
    padding-bottom: 70px;
  }
  .interview-detail .inner-block.detail .int-box .hov.cat {
    width: 28.4615384615%;
  }
  .interview-detail .inner-block.detail .int-box .hov.plant {
    width: 18.7179487179%;
  }
  .interview-detail .inner-block.detail .int-box .hov.plant02 {
    width: 17.9487179487%;
  }
  .interview-detail .inner-block.detail .int-box .hov.graph {
    width: 41.0256410256%;
  }
  .interview-detail .inner-block.detail .int-box .hov.gear {
    width: 40.2564102564%;
  }
  .interview-detail .inner-block.detail .int-box.green .hov.left {
    -webkit-transform: translateX(-103%) translateY(-130%) rotate(-30deg);
            transform: translateX(-103%) translateY(-130%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.green .hov.top {
    -webkit-transform: translateX(-96%) translateY(-226%) rotate(-30deg);
            transform: translateX(-96%) translateY(-226%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.green .hov.right {
    -webkit-transform: translateX(162%) translateY(-103%) rotate(30deg);
            transform: translateX(162%) translateY(-103%) rotate(30deg);
  }
  .interview-detail .inner-block.detail .int-box.pink .hov.left {
    -webkit-transform: translateX(-69%) translateY(-66%) rotate(-30deg);
            transform: translateX(-69%) translateY(-66%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.pink .hov.top {
    -webkit-transform: translateX(-70%) translateY(-245%) rotate(-30deg);
            transform: translateX(-70%) translateY(-245%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.pink .hov.right {
    -webkit-transform: translateX(65%) translateY(-80%) rotate(30deg);
            transform: translateX(65%) translateY(-80%) rotate(30deg);
  }
  .interview-detail .inner-block.detail .int-box.purple .hov.left {
    -webkit-transform: translateX(-150%) translateY(-100%) rotate(-30deg);
            transform: translateX(-150%) translateY(-100%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.purple .hov.top {
    -webkit-transform: translateX(-38%) translateY(-125%) rotate(-30deg);
            transform: translateX(-38%) translateY(-125%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.purple .hov.right {
    -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
            transform: translateX(155%) translateY(-100%) rotate(30deg);
  }
  .interview-detail .inner-block.detail .int-box.yellow .hov.left {
    -webkit-transform: translateX(-75%) translateY(-60%) rotate(-30deg);
            transform: translateX(-75%) translateY(-60%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.yellow .hov.top {
    -webkit-transform: translateX(-93%) translateY(-248%) rotate(-30deg);
            transform: translateX(-93%) translateY(-248%) rotate(-30deg);
  }
  .interview-detail .inner-block.detail .int-box.yellow .hov.right {
    -webkit-transform: translateX(100%) translateY(-210%) rotate(30deg);
            transform: translateX(100%) translateY(-210%) rotate(30deg);
  }
  .interview-detail .inner-block.detail .int-link {
    max-height: 450px;
  }
  .interview-detail .c-breadcrumb-list {
    display: none;
  }
  .interview-detail .cont-wrap .cont-inn {
    padding: 0 15px;
  }
  .interview-detail .cont-wrap .name {
    font-size: 18px;
    padding-left: 20px;
    margin-bottom: 19px;
  }
  .interview-detail .cont-wrap .name::before {
    width: 12px;
    height: 12px;
  }
  .interview-detail .cont-wrap .name .txt:not(:first-child) {
    font-size: 18px;
    padding-left: 20px;
  }
  .interview-detail .cont-wrap .name .txt:not(:first-child)::before {
    left: 9px;
  }
  .interview-detail .cont-wrap .c-ttl01 {
    margin-bottom: 16px;
  }
  .interview-detail .cont-wrap .post {
    font-size: 14px;
    line-height: 1.5;
  }
  .interview-detail .cont-wrap .post .txt:not(:first-child) {
    padding-left: 23px;
  }
  .interview-detail .cont-wrap .post .txt:not(:first-child)::before {
    height: 14px;
    left: 7px;
  }
  .interview-detail .cont-wrap .prof-wrap {
    margin-top: 25px;
    display: block;
  }
  .interview-detail .cont-wrap .prof-wrap .txt {
    margin-top: 15px;
  }
  .interview-detail .cont-wrap .txt-wrap {
    padding-top: 32px;
    padding-left: clamp(8px, 15px, min(15px, 3.8461538462vw));
    padding-right: clamp(8px, 15px, min(15px, 3.8461538462vw));
    padding-bottom: 35px;
    border-radius: 10px;
    margin-top: 67px;
  }
  .interview-detail .cont-wrap .txt-wrap .c-desc {
    margin-bottom: 13px;
  }
  .interview-detail .cont-wrap .txt-wrap .c-ttl01 {
    margin-bottom: 25px;
  }
  .interview-detail .cont-wrap .txt-wrap .txt + .txt {
    margin-top: 15px;
  }
  .interview-detail .chart-section {
    padding: 60px 0 65px;
  }
  .interview-detail .chart-section .c-ttl01,
  .interview-detail .chart-section .desc {
    letter-spacing: 0.05em;
  }
  .interview-detail .chart-section .c-ttl01 {
    margin-bottom: 50px;
  }
  .interview-detail .chart-section .chart-box > .img.pink::before {
    width: 82.7947605799%;
    height: 100.3191146498%;
  }
  .interview-detail .chart-section .chart-box > .img.purple::before {
    width: 77.0058234979%;
    height: 82.293449298%;
    top: 20px;
    left: 34px;
  }
  .interview-detail .chart-section .chart-box > .img.yellow::before {
    width: 92.0181789905%;
    height: 91.2404617403%;
    top: -1px;
    left: 16px;
  }
  .interview-detail .chart-section .chart-box > .img.is-animated.purple::before {
    -webkit-animation: chart03_1 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: chart03_1 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  .interview-detail .chart-section .chart-box > .img.is-animated.yellow::before {
    -webkit-animation: chart04_1 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: chart04_1 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  .interview-detail .chart-section .chart-box > .img {
    width: 231.476px;
    height: 220.297px;
    aspect-ratio: 231.476/220.297;
  }
  .interview-detail .chart-section .chart-box > .img::before {
    width: 87.676476179%;
    height: 94.8628442512%;
    top: 0px;
    left: 9px;
  }
  .interview-detail .chart-section .chart-box > .img .chart {
    width: 219px;
    height: 219px;
  }
  .interview-detail .chart-section .chart-box > .img.yellow .chart {
    width: 230px;
    height: 220px;
    -webkit-clip-path: polygon(50% 0%, 100% 38%, 75% 90%, 25% 90%, 9% 40%);
            clip-path: polygon(50% 0%, 100% 38%, 75% 90%, 25% 90%, 9% 40%);
  }
  .interview-detail .chart-section .chart-box .chart-list > li {
    font-size: 12px;
  }
  .interview-detail .chart-section .chart-box .chart-list > li:nth-child(2) {
    top: 33%;
    left: 105%;
  }
  .interview-detail .chart-section .chart-box .chart-list > li:nth-child(3) {
    bottom: -9px;
  }
  .interview-detail .chart-section .chart-box .chart-list > li:nth-child(4) {
    bottom: -9px;
  }
  .interview-detail .chart-section .chart-box .chart-list > li:nth-child(5) {
    top: 33%;
    left: -29%;
  }
  .interview-detail .chart-section .inn-wrap .txt {
    letter-spacing: 0.05em;
  }
  .interview-detail .chart-section .inn-wrap .txt .inn-txt {
    letter-spacing: 0.05em;
  }
  .interview-detail .chart-section .inn-wrap .txt .inn-txt .inn-txt {
    margin-top: 10px;
  }
  .interview-detail .related-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .training-career .mv-ttl {
    padding-top: 38px;
    padding-bottom: 30px;
  }
  .training-career .mv-ttl .big {
    line-height: 1.25em;
  }
  .training-career .mv-ttl .big::before {
    top: 7px !important;
    left: -1px !important;
    bottom: inherit !important;
  }
  .training-career .mv-ttl .small {
    padding-top: 3px !important;
  }
  .training-career .mv-img.mv-02 > img {
    -o-object-position: right -8em bottom 0;
       object-position: right -8em bottom 0;
  }
  .training-career .training-section.c-section {
    padding-block: 47px 50px;
  }
  .training-career .c-section.pt47 {
    padding-top: 47px;
  }
  .training-career .program-section {
    padding-block: 46px 50px;
  }
  .training-career .c-ttl04.mb20 {
    margin-bottom: 23px;
  }
  .training-career .related-section {
    margin-top: -70px;
  }
  .projectstory.projectstory02 .related-section .img {
    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;
  }
  .projectstory .c-section {
    padding-block: 50px 60px;
  }
  .projectstory .mv-section .breadcrumb-area {
    display: none;
  }
  .projectstory .mv-section .contents-wrap > .inner-block {
    padding-top: 100px;
  }
  .projectstory .mv-section .contents-wrap .ttl-area {
    margin-bottom: 150px;
  }
  .projectstory .mv-section .contents-wrap .ttl-area .ttl {
    margin-top: 24px;
    margin-bottom: 30px;
  }
  .projectstory .mv-section .contents-wrap .ttl-area .ttl .inn {
    font-size: 24px;
  }
  .projectstory .mv-section .contents-wrap .ttl-area .sub-ttl .inn {
    font-size: 14px;
  }
  .projectstory .mv-section .contents-wrap .bg-img {
    padding-bottom: 216px;
  }
  .projectstory .prologue-section .contents-wrap {
    padding-block: 30px 40px;
    padding-inline: 20px;
  }
  .projectstory .prologue-section .contents-wrap .ttl {
    font-size: 18px;
  }
  .projectstory .prologue-section .contents-wrap .ttl {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.05em;
  }
  .projectstory .prologue-section .contents-wrap .desc {
    font-size: 14px;
  }
  .projectstory .prologue-section .contents-wrap .desc {
    margin-top: 20px;
  }
  .projectstory .profile-section {
    padding-block: 40px;
  }
  .projectstory .profile-section .contents-wrap {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
  .projectstory .profile-section .contents-wrap .img-area {
    text-align: center;
    max-width: 120px;
    margin-inline: auto;
  }
  .projectstory .profile-section .contents-wrap .txt-area .name-txt {
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .projectstory .profile-section .contents-wrap .txt-area .name-txt + .desc {
    margin-top: 16px;
  }
  .projectstory .profile-section .contents-wrap .txt-area .name-txt .name {
    font-size: 18px;
  }
  .projectstory .profile-section .contents-wrap .txt-area .name-txt .job {
    font-size: 14px;
  }
  .projectstory .profile-section .contents-wrap .txt-area .desc {
    font-size: 12px;
  }
  .projectstory .story-article .inner-block > * + * {
    margin-top: 20px;
  }
  .projectstory .story-article .inner-block > * + img {
    margin-top: 45px;
  }
  .projectstory .story-article .inner-block h2 {
    font-size: 24px;
  }
  .projectstory .story-article .inner-block h2 + * {
    margin-top: 28px;
  }
  .projectstory .story-article .inner-block p {
    font-size: 14px;
  }
  .projectstory .story-article .inner-block p + h2 {
    margin-top: 52px;
  }
  .projectstory .story-article .inner-block img {
    border-radius: 10px;
  }
  .projectstory .story-article .inner-block img + * {
    margin-top: 56px;
  }
  .projectstory .related-section {
    padding-bottom: 70px;
  }
  .projectstory .related-section .txt-wrap .ttl {
    margin-bottom: 20px;
  }
  .benefits .mv-ttl {
    padding-top: 38px;
    padding-bottom: 30px;
  }
  .benefits .mv-ttl .big {
    line-height: 1.25em;
  }
  .benefits .mv-ttl .big::before {
    top: 7px !important;
    left: -1px !important;
    bottom: inherit !important;
  }
  .benefits .mv-ttl .small {
    padding-top: 3px !important;
  }
  .benefits .benefits-section.c-section {
    padding-block: 47px 50px;
  }
  .benefits .c-section.pt47 {
    padding-top: 47px;
  }
  .benefits .related-section {
    margin-top: -70px;
  }
  .business .mv-ttl {
    padding-top: 38px;
    padding-bottom: 30px;
  }
  .business .mv-ttl .big {
    line-height: 1.25em;
  }
  .business .mv-ttl .big::before {
    top: 7px !important;
    left: -1px !important;
    bottom: inherit !important;
  }
  .business .mv-ttl .small {
    padding-top: 3px !important;
  }
  .business .mv-img.mv-02 > img {
    -o-object-position: right -10em bottom 0;
       object-position: right -10em bottom 0;
  }
  .business .business-section .section-ttl {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .business .business-section .section-img {
    max-width: 500px;
    padding-top: 25px;
  }
  .business .flex-box.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 42px;
  }
  .business .flex-box + .flex-box {
    margin-top: 70px;
  }
  .business .flex-box .img {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .business .flex-box .txt-wrap {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .business .flex-box .txt-wrap .c-desc {
    margin-bottom: 15px;
  }
  .business .related-section {
    padding-block: 70px;
  }
  .faq .mv-ttl {
    padding-top: 38px;
    padding-bottom: 30px;
  }
  .faq .mv-ttl .big {
    line-height: 1.25em;
  }
  .faq .mv-ttl .big::before {
    top: 7px !important;
    left: -1px !important;
    bottom: inherit !important;
  }
  .faq .mv-ttl .small {
    padding-top: 3px !important;
  }
  .faq .stick-cont-wrap .section-wrap .c-section .inner-block {
    padding: 0 15px;
  }
  .faq .c-ttl03 {
    margin-bottom: 30px;
  }
  .faq .faq-section .accordion-box .c-ttl04 {
    padding-left: 40px;
    font-size: 20px;
  }
  .faq .faq-section .accordion-box .c-ttl04::before {
    width: 30px;
    font-size: 16px;
    padding: 7px;
    height: 30px;
  }
  .faq .faq-section .accordion-box .c-ttl04 .inn::before {
    right: -41px;
  }
  .faq .faq-section .accordion-box .c-ttl04 .inn::after {
    right: -41px;
  }
  .faq .faq-section .accordion-content {
    padding-top: 5px;
  }
  .faq .faq-section .answer {
    padding-left: 40px;
    font-size: 14px;
    line-height: 1.5;
  }
  .faq .faq-section .answer .note {
    font-size: 12px;
  }
  .faq .faq-section .answer::before {
    width: 30px;
    font-size: 16px;
    padding: 7px;
    height: 30px;
  }
  .faq .faq-section#link05 {
    margin-bottom: 70px;
  }
  .faq .faq-section#link05 .btn-wrap .c-btn02 {
    max-width: 268px;
  }
  .faq .faq-section .btn-wrap {
    margin-top: 30px;
  }
  .faq .faq-section .btn-wrap > .txt {
    text-align: start;
    font-size: 18px;
  }
  .faq .faq-section .btn-wrap .c-btn02 {
    max-width: 195px;
    margin: 15px auto 0;
  }
  .faq .c-section.pt47 {
    padding-top: 47px;
  }
  .faq .related-section {
    margin-top: -70px;
  }
  .faq .stick-cont-wrap .section-wrap .c-section .white-box.mt0 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1200px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .logo a {
    padding-bottom: 20px;
  }
  .c-header .w-768 {
    display: none;
  }
  .c-job-section .c-btn04::before {
    right: min(80px, 5.7142857143vw);
  }
  .c-job-section .c-btn04::after {
    right: min(101px, 7.2142857143vw);
  }
  .c-footer .c-menu-wrap span.bold:hover {
    background: none;
  }
  .c-footer .c-menu-wrap .bold {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-image: -webkit-gradient(linear, left top, right top, from(#24486D), to(#24486D));
    background-image: linear-gradient(90deg, #24486D, #24486D); /* 線の色 */
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.3s ease-in-out;
    transition: background-size 0.3s ease-in-out;
  }
  .c-footer .c-menu-wrap .bold:hover {
    background-size: 100% 1px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-footer .c-menu-wrap .bold + .bold {
    margin-top: min(23px, 1.6428571429vw);
  }
  .c-footer .c-menu-wrap .sub-menu {
    margin-top: min(6px, 0.4285714286vw);
  }
  .c-footer .c-menu-wrap .sub-menu a {
    display: inline;
    background-image: -webkit-gradient(linear, left top, right top, from(#24486D), to(#24486D));
    background-image: linear-gradient(90deg, #24486D, #24486D); /* 線の色 */
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.3s ease-in-out;
    transition: background-size 0.3s ease-in-out;
  }
  .c-footer .c-menu-wrap .sub-menu a:hover {
    background-size: 100% 1px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #pagetop a:hover {
    color: #4C8FDB;
  }
  #pagetop a:hover .inn {
    background-size: 100% 1px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #pagetop a:hover::before {
    background: #4C8FDB;
  }
  .c-ttl03 {
    margin-bottom: 41px;
  }
  .c-ttl03::before {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  @-webkit-keyframes under_line {
    30% {
      opacity: 0;
      width: 100%;
    }
    31% {
      opacity: 1;
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  @keyframes under_line {
    30% {
      opacity: 0;
      width: 100%;
    }
    31% {
      opacity: 1;
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .c-mv .c-breadcrumb-list > li > a:hover {
    color: #4C8FDB;
  }
  .c-mv .c-breadcrumb-list > li > a:hover::before {
    -webkit-animation: under_line 0.4s ease-in-out 0.1s 1 normal forwards;
            animation: under_line 0.4s ease-in-out 0.1s 1 normal forwards;
  }
  .c-mv .c-breadcrumb-list > li > a::before {
    content: "";
    position: absolute;
    background: #4C8FDB;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
  }
  .c-link-list a:hover {
    color: #4C8FDB;
  }
  .c-link-list a:hover .inn {
    color: #4C8FDB;
    background-size: 100% 1px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-link-list a:hover::before {
    background: #4C8FDB;
  }
  .c-link-box {
    display: grid;
    grid-template-columns: 1fr auto;
    max-width: 1040px;
    border-radius: 20px;
    max-height: 358px;
    margin: auto;
  }
  .c-link-box:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-link-box:hover .c-btn02 {
    background: #FFF;
  }
  .c-link-box:hover .c-btn02 > .txt {
    color: #4C8FDB;
  }
  .c-link-box:hover .c-btn02::before {
    background-image: url("../img/common/ico-arrow03.svg");
  }
  .c-card-wrap .c-card-link:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-card-wrap .c-card-link:hover .btn {
    background: #24486D;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-card-wrap .c-card-link:hover .btn::before {
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .int-box.green > a:hover .hov.left {
    -webkit-transform: translateX(-100%) translateY(-120%) rotate(-30deg);
            transform: translateX(-100%) translateY(-120%) rotate(-30deg);
  }
  .int-box.green > a:hover .hov.top {
    -webkit-transform: translateX(-100%) translateY(-212%) rotate(-30deg);
            transform: translateX(-100%) translateY(-212%) rotate(-30deg);
  }
  .int-box.green > a:hover .hov.right {
    -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
            transform: translateX(155%) translateY(-100%) rotate(30deg);
  }
  .int-box.pink > a:hover .hov.left {
    -webkit-transform: translateX(-78%) translateY(-40%) rotate(-30deg);
            transform: translateX(-78%) translateY(-40%) rotate(-30deg);
  }
  .int-box.pink > a:hover .hov.top {
    -webkit-transform: translateX(-100%) translateY(-220%) rotate(-30deg);
            transform: translateX(-100%) translateY(-220%) rotate(-30deg);
  }
  .int-box.pink > a:hover .hov.right {
    -webkit-transform: translateX(75%) translateY(-75%) rotate(30deg);
            transform: translateX(75%) translateY(-75%) rotate(30deg);
  }
  .int-box.purple > a:hover .hov.left {
    -webkit-transform: translateX(-160%) translateY(-90%) rotate(-30deg);
            transform: translateX(-160%) translateY(-90%) rotate(-30deg);
  }
  .int-box.purple > a:hover .hov.top {
    -webkit-transform: translateX(-45%) translateY(-130%) rotate(-30deg);
            transform: translateX(-45%) translateY(-130%) rotate(-30deg);
  }
  .int-box.purple > a:hover .hov.right {
    -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
            transform: translateX(155%) translateY(-100%) rotate(30deg);
  }
  .int-box.yellow > a:hover .hov.left {
    -webkit-transform: translateX(-80%) translateY(-40%) rotate(-30deg);
            transform: translateX(-80%) translateY(-40%) rotate(-30deg);
  }
  .int-box.yellow > a:hover .hov.top {
    -webkit-transform: translateX(-100%) translateY(-220%) rotate(-30deg);
            transform: translateX(-100%) translateY(-220%) rotate(-30deg);
  }
  .int-box.yellow > a:hover .hov.right {
    -webkit-transform: translateX(100%) translateY(-180%) rotate(30deg);
            transform: translateX(100%) translateY(-180%) rotate(30deg);
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active01 {
    color: #EBACBF;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active01 a::before {
    background-color: #EBACBF;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active02 {
    color: #93DCA6;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active02 a::before {
    background-color: #93DCA6;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active03 {
    color: #4C8FDB;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active03 a::before {
    background-color: #4C8FDB;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active04 {
    color: #FFDA4F;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active04 a::before {
    background-color: #FFDA4F;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active05 {
    color: #9691CD;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li.is-active05 a::before {
    background-color: #9691CD;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(1) {
    color: #EBACBF;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(1) a::before {
    background-color: #EBACBF;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(2) {
    color: #93DCA6;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(2) a::before {
    background-color: #93DCA6;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(3) {
    color: #4C8FDB;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(3) a::before {
    background-color: #4C8FDB;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(4) {
    color: #FFDA4F;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(4) a::before {
    background-color: #FFDA4F;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(5) {
    color: #9691CD;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu .anchor-wrap li:hover:nth-child(5) a::before {
    background-color: #9691CD;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .flow-wrap li {
    min-height: 163px;
    height: 100%;
  }
  .accordion-btn:hover .line {
    opacity: 1;
  }
  .accordion-content .gray-wrap .mail:hover {
    color: #4C8FDB;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .accordion-content .gray-wrap .mail:hover::before {
    opacity: 1;
    width: 100%;
  }
  .accordion-content .gray-wrap .mail:hover::after {
    background: #4C8FDB;
  }
  .accordion-content .gray-wrap .mail::before {
    background: #4C8FDB;
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
  }
  .c-dots-list a:hover {
    color: #4C8FDB;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-dots-list a:hover::before {
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 100%;
  }
  .c-dots-list a:hover::after {
    background: #4C8FDB;
  }
  .c-dots-list a::before {
    background: #4C8FDB;
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn01:hover {
    background: #fff;
    color: #24486D;
  }
  .c-btn02:hover {
    background: #FFF;
  }
  .c-btn02:hover > .txt {
    color: #4C8FDB;
  }
  .c-btn02:hover::before {
    background-image: url("../img/common/ico-arrow03.svg");
  }
  .c-btn03:hover .inn::before {
    width: 100%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn03:hover::before {
    background: #24486D;
  }
  .c-btn03:hover::after {
    background: #fff;
  }
  .c-btn04.white:hover {
    border-color: transparent;
  }
  .c-btn04.white:hover .line {
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn04:hover {
    background: #fff;
  }
  .c-btn04:hover .c-ttl02 .en {
    color: #24486D;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn04:hover .c-ttl02::before {
    background: #24486D;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn04:hover .ttl, .c-btn04:hover .txt {
    color: #24486D;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-btn04:hover::before {
    background: #24486D;
  }
  .c-btn04:hover::after {
    background-color: #fff;
  }
  .home .kv-section .mv-item-area .item-01 {
    height: min(630px, 44.5229681979vw);
  }
  .home .kv-section .mv-item-area .item-01 .front-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    height: min(630px, 45vw);
  }
  .home .kv-section .mv-item-area .item-01 .front-card:hover {
    background: url("../img/home/mv_bnr01_bg-hover.png.webp") no-repeat center center/cover;
  }
  .home .kv-section .mv-item-area .item-01 .front-card:hover::before {
    border-color: #D8B937;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .kv-section .mv-item-area .item-01 .back-card {
    height: min(630px, 45vw);
  }
  .home .kv-section .mv-item-area .item-02 {
    height: min(438px, 30.9540636042vw);
  }
  .home .kv-section .mv-item-area .item-03 {
    height: min(438px, 30.9540636042vw);
  }
  .home .kv-section .mv-item-area .item-04 {
    height: min(650px, 45.9363957597vw);
  }
  .home .kv-section .mv-item-area .item-04 .front-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    height: min(650px, 46.4285714286vw);
  }
  .home .kv-section .mv-item-area .item-04 .front-card:hover {
    background: url("../img/home/mv_bnr02_bg-hover.png.webp") no-repeat center center/cover;
  }
  .home .kv-section .mv-item-area .item-04 .front-card:hover::before {
    border-color: #5CCD7B;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .kv-section .mv-item-area .item-04 .illust-area::before {
    width: calc(100% + min(28px, 2vw));
    left: max(-14px, -1vw);
  }
  .home .kv-section .mv-item-area .item-04 .back-card {
    height: min(650px, 46.4285714286vw);
  }
  .home .kv-section .mv-item-area .item-05 {
    height: min(390px, 27.5618374558vw);
  }
  .home .kv-section .mv-item-area .item-05 .front-card:hover {
    background: url("../img/home/mv_bnr03_bg-hover.png.webp") no-repeat center center/cover;
  }
  .home .kv-section .mv-item-area .item-05 .front-card:hover::before {
    border-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .kv-section .mv-item-area .item-06 {
    height: min(591px, 41.7667844523vw);
  }
  .home .kv-section .mv-item-area .item-06 .front-card:hover {
    background: url("../img/home/mv_bnr04_bg-hover.png.webp") no-repeat center center/cover;
  }
  .home .kv-section .mv-item-area .item-06 .front-card:hover::before {
    border-color: #8B93FF;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .kv-section .mv-item-area .item-07 {
    height: min(388px, 27.7142857143vw);
  }
  .home .kv-section .mv-item-area .item-07 .front-card:hover {
    background: url("../img/home/mv_bnr05_bg-hover.png.webp") no-repeat center center/cover;
  }
  .home .kv-section .mv-item-area .item-07 .front-card:hover::before {
    border-color: #D8B937;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .kv-section .mv-item-area .item-08 {
    height: min(440px, 31.0954063604vw);
  }
  .home .kv-section .mv-item-area .item-08 .front-card:hover {
    background: url("../img/home/mv_bnr06_bg-hover.png.webp") no-repeat center center/cover;
  }
  .home .kv-section .mv-item-area .item-08 .front-card:hover::before {
    border-color: #006BE0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .kv-section .mv-item-area .item-09 {
    height: min(440px, 31.0954063604vw);
  }
  .home .kv-section .mv-item-area .item-10 {
    height: min(440px, 31.0954063604vw);
  }
  .home .kv-section .mv-item-area .item-11 {
    height: min(438px, 30.9540636042vw);
  }
  .home .kv-section .mv-item-area .item-12 {
    height: min(440px, 31.0954063604vw);
  }
  .home .kv-section .mv-item-area .item-12 .front-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .home .kv-section .mv-item-area .item-12 .front-card:hover {
    background: url("../img/home/mv_bnr07_bg-hover.png.webp") no-repeat center center/cover;
  }
  .home .kv-section .mv-item-area .item-12 .front-card:hover::before {
    border-color: #F39C9C;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .home .kv-section .mv-item-area .back-card .ttl.small {
    font-size: min(34px, 2.4285714286vw);
  }
  .home .kv-section .mv-item-area .back-card .ttl.medium {
    font-size: min(48px, 3.4285714286vw);
  }
  .home .kv-section .mv-item-area .panel-btn .front-card:hover {
    -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
  }
  .home .interview-section .c-link-box:hover .c-btn02 {
    background: #FFF;
  }
  .home .interview-section .c-link-box:hover .c-btn02 > .txt {
    color: #4C8FDB;
  }
  .home .interview-section .c-link-box:hover .c-btn02::before {
    background-image: url("../img/common/ico-arrow03.svg");
  }
  .home .interview-section .c-link-box:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .home .interview-section .c-link-box .img {
    width: clamp(300px, 540px, min(540px, 38.5714285714vw));
  }
  .home .interview-section .c-link-box .txt-wrap {
    padding-top: clamp(40px, 62px, min(62px, 4.4285714286vw));
    padding-right: clamp(20px, 93px, min(93px, 6.6428571429vw));
    padding-left: clamp(20px, 76px, min(76px, 5.4285714286vw));
    padding-bottom: clamp(25px, 70px, min(70px, 5vw));
  }
  .home .interview-section .int-box.green .img-area:hover .hov.left {
    -webkit-transform: translateX(-100%) translateY(-120%) rotate(-30deg);
            transform: translateX(-100%) translateY(-120%) rotate(-30deg);
  }
  .home .interview-section .int-box.green .img-area:hover .hov.top {
    -webkit-transform: translateX(-100%) translateY(-212%) rotate(-30deg);
            transform: translateX(-100%) translateY(-212%) rotate(-30deg);
  }
  .home .interview-section .int-box.green .img-area:hover .hov.right {
    -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
            transform: translateX(155%) translateY(-100%) rotate(30deg);
  }
  .home .interview-section .int-box.pink .img-area:hover .hov.left {
    -webkit-transform: translateX(-78%) translateY(-40%) rotate(-30deg);
            transform: translateX(-78%) translateY(-40%) rotate(-30deg);
  }
  .home .interview-section .int-box.pink .img-area:hover .hov.top {
    -webkit-transform: translateX(-100%) translateY(-220%) rotate(-30deg);
            transform: translateX(-100%) translateY(-220%) rotate(-30deg);
  }
  .home .interview-section .int-box.pink .img-area:hover .hov.right {
    -webkit-transform: translateX(75%) translateY(-75%) rotate(30deg);
            transform: translateX(75%) translateY(-75%) rotate(30deg);
  }
  .home .interview-section .int-box.purple .img-area:hover .hov.left {
    -webkit-transform: translateX(-160%) translateY(-90%) rotate(-30deg);
            transform: translateX(-160%) translateY(-90%) rotate(-30deg);
  }
  .home .interview-section .int-box.purple .img-area:hover .hov.top {
    -webkit-transform: translateX(-45%) translateY(-130%) rotate(-30deg);
            transform: translateX(-45%) translateY(-130%) rotate(-30deg);
  }
  .home .interview-section .int-box.purple .img-area:hover .hov.right {
    -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
            transform: translateX(155%) translateY(-100%) rotate(30deg);
  }
  .home .interview-section .int-box.yellow .img-area:hover .hov.left {
    -webkit-transform: translateX(-80%) translateY(-40%) rotate(-30deg);
            transform: translateX(-80%) translateY(-40%) rotate(-30deg);
  }
  .home .interview-section .int-box.yellow .img-area:hover .hov.top {
    -webkit-transform: translateX(-100%) translateY(-220%) rotate(-30deg);
            transform: translateX(-100%) translateY(-220%) rotate(-30deg);
  }
  .home .interview-section .int-box.yellow .img-area:hover .hov.right {
    -webkit-transform: translateX(100%) translateY(-180%) rotate(30deg);
            transform: translateX(100%) translateY(-180%) rotate(30deg);
  }
  .message .mv-section .profile-wrap {
    max-width: 204px;
  }
  .message .mv-section .profile-wrap .post .txt {
    display: inline-block;
    margin-top: 7px;
  }
  .message .message-section .grid-box:first-child .img {
    padding-top: 7px;
  }
  .interview-detail .inner-block.detail .int-box.green .hov.left {
    -webkit-animation: gr-left 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: gr-left 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes gr-left {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(-100%) translateY(-120%) rotate(-30deg);
              transform: translateX(-100%) translateY(-120%) rotate(-30deg);
    }
  }
  @keyframes gr-left {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(-100%) translateY(-120%) rotate(-30deg);
              transform: translateX(-100%) translateY(-120%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.green .hov.top {
    -webkit-animation: gr-top 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: gr-top 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes gr-top {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    50% {
      -webkit-transform: translateX(0%) translateY(-140%) rotate(-25deg);
              transform: translateX(0%) translateY(-140%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.green .hov.top {
          -webkit-transform: translateX(-10%) translateY(-120%) rotate(-25deg);
                  transform: translateX(-10%) translateY(-120%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-95%) translateY(-220%) rotate(-30deg);
              transform: translateX(-95%) translateY(-220%) rotate(-30deg);
    }
  }
  @keyframes gr-top {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    50% {
      -webkit-transform: translateX(0%) translateY(-140%) rotate(-25deg);
              transform: translateX(0%) translateY(-140%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.green .hov.top {
          -webkit-transform: translateX(-10%) translateY(-120%) rotate(-25deg);
                  transform: translateX(-10%) translateY(-120%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-95%) translateY(-220%) rotate(-30deg);
              transform: translateX(-95%) translateY(-220%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.green .hov.right {
    -webkit-animation: gr-right 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: gr-right 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes gr-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
              transform: translateX(155%) translateY(-100%) rotate(30deg);
    }
  }
  @keyframes gr-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(155%) translateY(-100%) rotate(30deg);
              transform: translateX(155%) translateY(-100%) rotate(30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.pink .hov.left {
    -webkit-animation: p-left 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: p-left 1.5s ease-in-out 0.5s 1 normal forwards;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  @-webkit-keyframes p-left {
    0% {
      -webkit-transform: translateY(20%);
              transform: translateY(20%);
    }
    100% {
      -webkit-transform: translateX(-73%) translateY(-35%) rotate(-30deg);
              transform: translateX(-73%) translateY(-35%) rotate(-30deg);
    }
  }
  @keyframes p-left {
    0% {
      -webkit-transform: translateY(20%);
              transform: translateY(20%);
    }
    100% {
      -webkit-transform: translateX(-73%) translateY(-35%) rotate(-30deg);
              transform: translateX(-73%) translateY(-35%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.pink .hov.top {
    -webkit-animation: p-top 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: p-top 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes p-top {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    50% {
      -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
              transform: translateX(0%) translateY(-40%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.pink .hov.top {
          -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
                  transform: translateX(0%) translateY(-40%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-90%) translateY(-200%) rotate(-30deg);
              transform: translateX(-90%) translateY(-200%) rotate(-30deg);
    }
  }
  @keyframes p-top {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    50% {
      -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
              transform: translateX(0%) translateY(-40%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.pink .hov.top {
          -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
                  transform: translateX(0%) translateY(-40%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-90%) translateY(-200%) rotate(-30deg);
              transform: translateX(-90%) translateY(-200%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.pink .hov.right {
    -webkit-animation: p-right 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: p-right 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes p-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(75%) translateY(-60%) rotate(30deg);
              transform: translateX(75%) translateY(-60%) rotate(30deg);
    }
  }
  @keyframes p-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(75%) translateY(-60%) rotate(30deg);
              transform: translateX(75%) translateY(-60%) rotate(30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.purple .hov.left {
    -webkit-animation: pr-left 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: pr-left 1.5s ease-in-out 0.5s 1 normal forwards;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  @-webkit-keyframes pr-left {
    0% {
      -webkit-transform: translateY(20%);
              transform: translateY(20%);
    }
    100% {
      -webkit-transform: translateX(-145%) translateY(-85%) rotate(-30deg);
              transform: translateX(-145%) translateY(-85%) rotate(-30deg);
    }
  }
  @keyframes pr-left {
    0% {
      -webkit-transform: translateY(20%);
              transform: translateY(20%);
    }
    100% {
      -webkit-transform: translateX(-145%) translateY(-85%) rotate(-30deg);
              transform: translateX(-145%) translateY(-85%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.purple .hov.top {
    -webkit-animation: pr-top 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: pr-top 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes pr-top {
    0% {
      -webkit-transform: translateY(20%);
              transform: translateY(20%);
    }
    50% {
      -webkit-transform: translateX(0%) translateY(0%) rotate(-25deg);
              transform: translateX(0%) translateY(0%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.purple .hov.top {
          -webkit-transform: translateX(0%) translateY(10%) rotate(-25deg);
                  transform: translateX(0%) translateY(10%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-45%) translateY(-120%) rotate(-30deg);
              transform: translateX(-45%) translateY(-120%) rotate(-30deg);
    }
  }
  @keyframes pr-top {
    0% {
      -webkit-transform: translateY(20%);
              transform: translateY(20%);
    }
    50% {
      -webkit-transform: translateX(0%) translateY(0%) rotate(-25deg);
              transform: translateX(0%) translateY(0%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.purple .hov.top {
          -webkit-transform: translateX(0%) translateY(10%) rotate(-25deg);
                  transform: translateX(0%) translateY(10%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-45%) translateY(-120%) rotate(-30deg);
              transform: translateX(-45%) translateY(-120%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.purple .hov.right {
    -webkit-animation: pr-right 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: pr-right 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes pr-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(150%) translateY(-90%) rotate(30deg);
              transform: translateX(150%) translateY(-90%) rotate(30deg);
    }
  }
  @keyframes pr-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(150%) translateY(-90%) rotate(30deg);
              transform: translateX(150%) translateY(-90%) rotate(30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.yellow .hov.left {
    -webkit-animation: y-left 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: y-left 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes y-left {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(-80%) translateY(-40%) rotate(-30deg);
              transform: translateX(-80%) translateY(-40%) rotate(-30deg);
    }
  }
  @keyframes y-left {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(-80%) translateY(-40%) rotate(-30deg);
              transform: translateX(-80%) translateY(-40%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.yellow .hov.top {
    -webkit-animation: y-top 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: y-top 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes y-top {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    50% {
      -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
              transform: translateX(0%) translateY(-40%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.yellow .hov.top {
          -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
                  transform: translateX(0%) translateY(-40%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-100%) translateY(-220%) rotate(-30deg);
              transform: translateX(-100%) translateY(-220%) rotate(-30deg);
    }
  }
  @keyframes y-top {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    50% {
      -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
              transform: translateX(0%) translateY(-40%) rotate(-25deg);
      @media only screen and (min-width: 768px) and (max-width: 1010px) {
        .interview-detail .inner-block.detail .int-box.yellow .hov.top {
          -webkit-transform: translateX(0%) translateY(-40%) rotate(-25deg);
                  transform: translateX(0%) translateY(-40%) rotate(-25deg);
        }
      }
    }
    100% {
      -webkit-transform: translateX(-100%) translateY(-220%) rotate(-30deg);
              transform: translateX(-100%) translateY(-220%) rotate(-30deg);
    }
  }
  .interview-detail .inner-block.detail .int-box.yellow .hov.right {
    -webkit-animation: y-right 1.5s ease-in-out 0.5s 1 normal forwards;
            animation: y-right 1.5s ease-in-out 0.5s 1 normal forwards;
  }
  @-webkit-keyframes y-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(100%) translateY(-180%) rotate(30deg);
              transform: translateX(100%) translateY(-180%) rotate(30deg);
    }
  }
  @keyframes y-right {
    0% {
      -webkit-transform: inherit;
              transform: inherit;
    }
    100% {
      -webkit-transform: translateX(100%) translateY(-180%) rotate(30deg);
              transform: translateX(100%) translateY(-180%) rotate(30deg);
    }
  }
  @keyframes under_line {
    30% {
      opacity: 0;
      width: 100%;
    }
    31% {
      opacity: 1;
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .interview-detail .c-breadcrumb-list > li > a:hover {
    color: #4C8FDB;
  }
  .interview-detail .c-breadcrumb-list > li > a:hover::before {
    -webkit-animation: under_line 0.4s ease-in-out 0.1s 1 normal forwards;
            animation: under_line 0.4s ease-in-out 0.1s 1 normal forwards;
  }
  .interview-detail .c-breadcrumb-list > li > a::before {
    content: "";
    position: absolute;
    background: #4C8FDB;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
  }
  .interview-detail .cont-wrap .name {
    margin-top: 41px;
  }
  .training-career .c-ttl04.mb20 {
    margin-bottom: 20px;
  }
  .training-career .graph-wrap + .txt-wrap {
    margin-top: 25px;
  }
  .projectstory .mv-section .breadcrumb-area {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .projectstory .profile-section .contents-wrap {
    padding-block: 60px;
  }
  .projectstory .related-section .txt-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .projectstory .related-section .txt-wrap .ttl {
    margin-bottom: 40px;
  }
  .business .flex-box .txt-wrap .c-desc {
    line-height: 1;
    margin-bottom: 25px;
  }
  .faq .faq-section .accordion-btn:hover {
    cursor: pointer;
  }
}
@media only screen and (max-width: 1280px) {
  .c-header .c-menu-wrap {
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    margin-right: 0;
    height: calc(100vh - 60px);
    width: 100%;
    z-index: 500;
    padding: min(149px, 11.640625vw) min(30px, 2.34375vw) min(60px, 4.6875vw);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    overflow: auto;
  }
  .c-header .c-menu-wrap.is-open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-menu {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(60px, 4.6875vw) min(79px, 6.171875vw);
    max-width: 1040px;
    margin: auto;
  }
  .c-header .c-menu div.inn, .c-header .c-menu a.inn {
    border-bottom: 2px solid #24486D;
    display: block;
    font-weight: bold;
    padding-bottom: 8px;
    position: relative;
    font-size: 18px;
    padding-right: 34px;
  }
  .c-header .c-menu div.inn::before, .c-header .c-menu a.inn::before {
    background: #24486D;
    border-radius: 100px;
    content: "";
    height: 24px;
    width: 24px;
    position: absolute;
    bottom: 5px;
    top: 0;
    right: 0;
    margin: auto;
  }
  .c-header .c-menu div.inn::after, .c-header .c-menu a.inn::after {
    background: url("../img/common/ico-arrow.svg") no-repeat center center/contain;
    content: "";
    height: 10px;
    width: 13px;
    position: absolute;
    top: 0;
    bottom: 5px;
    right: 5px;
    margin: auto;
  }
  .c-header .c-menu div.inn {
    cursor: auto;
  }
  .c-header .c-menu div.inn::before, .c-header .c-menu div.inn::after {
    content: none;
  }
  .c-header .sub-menu {
    margin-left: auto;
    width: calc(100% - 20px);
  }
  .c-header .sub-menu a {
    border-bottom: 1px solid #24486D;
    color: #24486D;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px 15px 0;
  }
  .c-header .sub-menu a::before {
    background: #24486D;
    height: 12px;
    width: 12px;
    top: 0;
  }
  .c-header .c-btn01 {
    margin-left: auto;
    position: relative;
    z-index: 501;
  }
  .c-header .copyright {
    color: #24486D;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    max-width: 1040px;
    margin: 58px auto 0;
  }
  .c-header .pc {
    display: none !important;
  }
  .c-header .sp {
    display: block !important;
  }
  .c-footer .c-menu-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1280px) and (max-width: 767px) {
  .c-header .c-menu-wrap {
    padding: min(40px, 10.2564102564vw) min(35px, 8.9743589744vw) min(100px, 25.641025641vw);
    overflow: auto;
  }
  .c-header .c-menu {
    grid-template-columns: 1fr;
    gap: min(40px, 10.2564102564vw);
  }
  .c-header .c-menu div.inn::after, .c-header .c-menu a.inn::after {
    right: 6px;
  }
  .c-header .sub-menu a {
    font-size: 14px;
    padding: 15px 20px 15px 0;
  }
  .c-header .copyright {
    font-size: 10px;
    text-align: left;
    margin: min(40px, 10.2564102564vw) auto 0;
  }
  .c-footer .c-menu-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media only screen and (min-width: 1281px) {
  .c-header .c-menu > li {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .c-header .c-menu .inn:hover {
    color: #4C8FDB;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-menu .inn:hover::before {
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 100%;
  }
  .c-header .c-menu .inn:hover::after {
    background: #4C8FDB;
  }
  .c-header .c-menu .inn::before {
    background: #4C8FDB;
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-menu .aco-pb:hover .inn {
    color: #4C8FDB;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .c-menu .aco-pb:hover .inn::before {
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 100%;
  }
  .c-header .c-menu .aco-pb:hover .inn::after {
    background: #4C8FDB;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    top: -2px;
  }
  .c-header .c-menu .aco-pb:hover .sub-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .sub-menu {
    background: #4C8FDB;
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    top: 50px;
    left: 50%;
    right: 0;
    margin: auto;
    width: 320px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .sub-menu.is-open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .sub-menu li + li {
    margin-top: 20px;
  }
  .c-header .sub-menu a:hover {
    opacity: 0.8;
    border-color: #fff;
  }
  .c-header .sub-menu a:hover::before {
    opacity: 0.8;
  }
  .c-header .copyright {
    display: none;
  }
  .c-header .w-1280 {
    display: none;
  }
  .btn-menu {
    display: none;
  }
  .c-footer .c-menu-wrap {
    padding-right: min(50px, 3.5714285714vw);
  }
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .c-header .c-menu a.inn:hover {
    color: #4C8FDB;
    border-color: #4C8FDB;
  }
  .c-header .c-menu a.inn:hover::before {
    background: #4C8FDB;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .c-header .sub-menu a:hover {
    color: #4C8FDB;
    border-color: #4C8FDB;
  }
  .c-header .sub-menu a:hover::before {
    background: #4C8FDB;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .c-dot-ttl {
    font-size: 18px;
  }
  .interview .interview-box .inn-wrap .int-box .post {
    font-size: 14px;
  }
  .projectstory .prologue-section .contents-wrap .ttl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .stick-cont-wrap .inner-block {
    position: static;
  }
  .stick-cont-wrap .sticky-menu-wrap {
    position: static;
    padding: 0 15px;
  }
  .stick-cont-wrap .sticky-menu-wrap .sticky-menu {
    width: 100%;
    max-width: inherit;
    position: static;
    margin: 0 0 40px;
    border-radius: 10px;
    padding: 30px 30px 35px;
  }
  .stick-cont-wrap .section-wrap .c-section .inner-block {
    padding: 15px;
    margin-left: 0;
  }
  .message .mv-section {
    padding-bottom: 40px;
  }
  .message .mv-section .wi-1000 {
    display: none;
  }
  .message .mv-section .txt-wrap {
    left: 55px;
    bottom: 25px;
    position: relative;
  }
  .message .mv-section .txt-wrap .txt.wi-1000 {
    display: none;
  }
  .message .mv-section .txt-wrap .txt {
    font-size: 28px;
    padding: 5px 10px 7px;
    margin-top: 7px;
  }
  .message .mv-section .profile-wrap {
    max-width: 185px;
    bottom: 50px;
    right: clamp(60px, 90px, min(90px, 9vw));
    padding: 18px 25px;
  }
  .message .message-section .grid-box {
    display: block;
    margin-bottom: 53px;
  }
  .message .message-section .grid-box .img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 40px;
    padding: 0 55px;
  }
  .message .message-section .grid-box.right {
    margin-bottom: 60px;
  }
  .message .message-section .grid-box.right .img {
    margin-bottom: 0;
    margin-top: 45px;
  }
  .interview-detail .chart-section .inn {
    margin: auto;
  }
  .interview-detail .chart-section .inn-wrap {
    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: 31px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .stick-cont-wrap .section-wrap .c-section .inner-block {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li {
    display: block;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li .ttl {
    width: 100%;
    font-size: 18px;
    letter-spacing: 0em;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li .txt {
    width: 100%;
    margin-top: 14px;
  }
  .stick-cont-wrap .section-wrap .c-section .white-box .two-column-cont li + li {
    margin-top: 25px;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .message .mv-section {
    padding-bottom: 0;
  }
  .message .mv-section .txt-wrap {
    left: 0;
    bottom: 68px;
    margin: auto;
  }
  .message .mv-section .txt-wrap .txt {
    font-size: 24px;
  }
  .message .mv-section .profile-wrap {
    width: 100%;
    max-width: 340px;
    padding: 14px 19px;
    bottom: 48px;
    right: 0;
    position: relative;
    border-radius: 10px;
    margin: auto;
  }
}
@media only screen and (min-width: 1001px) {
  .message .mv-section .wi-1001 {
    display: none;
  }
  .message .mv-section .txt-wrap .txt.wi-1001 {
    display: none;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) and (max-width: 389px) {
  .message .mv-section .txt-wrap .txt {
    font-size: 20px;
  }
  .message .mv-section .profile-wrap {
    padding: 18px 25px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) and (max-width: 389px) and (max-width: 340px) {
  .message .mv-section .txt-wrap .txt {
    font-size: 18px;
  }
  .message .mv-section .profile-wrap {
    padding: 18px 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) and (max-width: 380px) {
  .interview .interview-box .inn-wrap .int-box .post {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 380px) {
  .interview .interview-box .inn-wrap .int-box .txt-wrap {
    font-size: 16px;
  }
  .interview .interview-box .inn-wrap .int-box .txt-wrap .inn {
    font-size: 14px;
  }
  .interview .interview-box .int-box {
    width: 280px;
  }
  .interview-detail .chart-section .chart-box .chart-list > li {
    font-size: 11px;
  }
  .interview-detail .chart-section .chart-box .chart-list > li:nth-child(2) {
    top: 35%;
    left: 102%;
  }
  .interview-detail .chart-section .chart-box .chart-list > li:nth-child(5) {
    left: -16%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .interview .interview-box .inn-wrap .int-box .txt-wrap .inn {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1010px) {
  .interview-detail .inner-block.detail {
    display: block;
  }
  .interview-detail .inner-block.detail > .left {
    margin-bottom: 35px;
    overflow: hidden;
  }
  .interview-detail .inner-block.detail .int-box {
    width: 100%;
  }
  .interview-detail .inner-block.detail .int-box .int-link {
    max-width: 500px;
  }
  .interview-detail .cont-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 1010px) and (max-width: 767px) {
  .interview-detail .inner-block.detail .int-box .int-link {
    max-width: 390px;
  }
  .interview-detail .inner-block.detail .int-box .int-link .human.human01 {
    width: 76.9230769231%;
  }
  .interview-detail .inner-block.detail .int-box .int-link .human.human02 {
    width: 79.7435897436%;
  }
  .interview-detail .inner-block.detail .int-box .int-link .human.human03 {
    width: 74.6153846154%;
  }
  .interview-detail .inner-block.detail .int-box .int-link .human.human04 {
    width: 74.6153846154%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1011px) {
  .interview-detail .inner-block.detail .int-link {
    height: calc(100vh - 89px);
  }
}
@media only screen and (min-width: 768px) and (min-width: 1011px) and (max-height: 750px) {
  .interview-detail .inner-block.detail .int-link {
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1011px) and (max-width: 1350px) and (max-height: 750px) {
  .interview-detail .inner-block.detail .int-link {
    top: 25%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1011px) and (max-width: 1350px) and (max-height: 750px) and (max-width: 1300px) and (max-height: 600px) {
  .interview-detail .inner-block.detail .int-link {
    height: auto;
    top: 20%;
    max-width: 400px;
  }
}
@media only screen and (min-width: 381px) {
  .interview-detail .chart-section .chart-box .chart-list > li .wi-380 {
    display: none;
  }
}
@media only screen and (max-width: 899px) {
  .interview-detail .related-section .c-link-box {
    display: block;
    max-height: inherit;
  }
  .interview-detail .related-section .c-link-box .img {
    max-height: inherit;
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .projectstory .mv-section .contents-wrap .ttl-area .ttl .inn {
    font-size: clamp(18px, 6.4vw, 24px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 390px) {
  .projectstory .mv-section .contents-wrap .bg-img {
    padding-bottom: 304px;
  }
}