@charset "UTF-8";
:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

.reveal-text,
.reveal-text::after {
  -webkit-animation-duration: var(--duration, 800ms);
          animation-duration: var(--duration, 800ms);
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  -webkit-animation-delay: var(--animation-delay, 2s);
          animation-delay: var(--animation-delay, 2s);
  -webkit-animation-iteration-count: var(--iterations, 1);
          animation-iteration-count: var(--iterations, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.reveal-text {
  position: relative;
  color: var(--text-color, #000);
  white-space: nowrap;
  --animation-duration: var(--duration, 800ms);
  --animation-delay: var(--delay, 0);
  --animation-iterations: var(--iterations, 1);
}
.reveal-text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  background-color: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}
.reveal-text.is-animated {
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
}
.reveal-text.is-animated::after {
  -webkit-animation-name: text-revealer;
          animation-name: text-revealer;
}

@-webkit-keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-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);
  }
}
.anime_wrap {
  position: relative;
  overflow: hidden;
}

.anime_wrap p {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 40px;
  font-weight: bold;
}

.pattern6:hover::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.pattern6:hover img {
  opacity: 1;
}
.pattern6:hover p {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.pattern6:hover p::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.pattern6::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pattern6.show::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.pattern6 img {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pattern6.show img {
  opacity: 1;
}

.pattern6 p {
  z-index: 1;
  overflow: hidden;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.pattern6.show p {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.pattern6 p::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.pattern6.show p::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.headline-01 {
  margin-bottom: 0.8em;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1.5;
}

.btn {
  width: var(--button-width, -webkit-fit-content);
  width: var(--button-width, -moz-fit-content);
  width: var(--button-width, fit-content);
  display: block;
}
.btn-01 {
  height: 9rem;
  margin-top: var(--button-margin, 6rem);
  padding: 1em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2rem;
  background: -webkit-gradient(linear, left top, right top, from(#32afd5), to(#2c61af));
  background: linear-gradient(90deg, #32afd5 0%, #2c61af 100%);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.btn-center {
  margin-right: auto;
  margin-left: auto;
}

ul {
  list-style-type: none;
}
ul.dot li {
  margin-left: 1.2em;
  text-indent: -1em;
}
ul.dot li:before {
  content: "・";
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
ul.dot li + li {
  margin-top: 0.5em;
}
ul.circle li {
  margin-left: 1.2em;
  text-indent: -1em;
}
ul.circle li:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.2em;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--primary-color, #000);
}
ul.circle li + li {
  margin-top: 0.5em;
}
ul.note li {
  margin-left: 1.2em;
  text-indent: -1.1em;
}
ul.note li:before {
  content: "※";
  margin-right: 0.2em;
  font-family: initial;
}
ul.note li + li {
  margin-top: 0.5em;
}

.pager-number {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager-number .page-numbers {
  width: 4rem;
  height: 4rem;
  margin: 0 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-weight: 400;
  font-size: 1.4rem;
}
.pager-number .page-numbers.current {
  background-color: var(--primary-color, #000);
  color: #fff;
}
.pager-number .prev, .pager-number .next {
  white-space: nowrap;
}

*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.form-select {
  width: 100%;
  padding: 0.8em 1.2em;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22select_arr%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2011.4%206.2%22%20style%3D%22enable-background%3Anew%200%200%2011.4%206.2%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23BFBFBF%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22path01%22%20class%3D%22st0%22%20d%3D%22M10.7%2C0.6l-5%2C5l-5-5%22%2F%3E%3C%2Fsvg%3E");
  background-position: right 2rem center;
  background-size: 1.6rem;
  background-repeat: no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-select::-ms-expand {
  display: none;
}

.radio-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.radio-wrap.horizon .radio {
  margin-bottom: 2rem;
}
.radio-wrap.horizon .radio:not(:last-of-type) {
  margin-right: 3.8rem;
}
.radio-wrap.vertical .radio + .radio {
  margin-top: 1.2rem;
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  width: 3rem;
  height: 3rem;
  margin-right: 1.2rem;
  position: relative;
  top: 0;
  display: inline-block;
  border: 1px solid #707070;
  border-radius: 100%;
  background-color: #fff;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #2c61af;
  -webkit-box-shadow: inset 0 0 0 0.8rem #fff;
          box-shadow: inset 0 0 0 0.8rem #fff;
}
.radio input[type=radio]:disabled + .radio-label:before {
  border-color: #b4b4b4;
  background: #b4b4b4;
  -webkit-box-shadow: inset 0 0 0 0.8rem #f4f4f4;
          box-shadow: inset 0 0 0 0.8rem #f4f4f4;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.checkbox-wrap.horizon {
  margin-bottom: -2rem;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkbox-wrap.horizon .checkbox {
  margin-bottom: 2rem;
}
.checkbox-wrap.horizon .checkbox:not(:last-of-type) {
  margin-right: 2rem;
}
.checkbox-wrap.vertical .checkbox + .checkbox {
  margin-top: 1.2rem;
}

.checkbox {
  line-height: 1;
}

.checkbox-input {
  display: none;
}
.checkbox-input:checked + .checkbox-parts:after {
  content: "";
  width: 0.8rem;
  height: 1.2rem;
  margin-top: -0.8rem;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  display: block;
  border-right: 3px solid var(--primary-color, #000);
  border-bottom: 3px solid var(--primary-color, #000);
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.checkbox-parts {
  padding-left: 2.5rem;
  position: relative;
}
.checkbox-parts:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  margin-top: -0.9rem;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
}

.form-box + .form-box {
  margin-top: 2.4rem;
}
.form-box dt {
  margin-bottom: 1rem;
  line-height: 1;
}
.form-box .required {
  margin-left: 1.2rem;
}

.validation-error {
  margin-top: 0.8em;
  color: #ee5253;
  font-size: 1.4rem;
}

.form-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form-column .mark {
  margin: auto 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1.2em 1.2em;
  border-radius: 1.4rem;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
}

textarea.form-control {
  height: 20rem;
  padding: 1.2em;
  resize: none;
}

.form-submit {
  --button-width: 32.0rem;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color, #fff);
  color: var(--base-font-color, #000);
  word-break: break-all;
  letter-spacing: 0;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
body.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  overflow: hidden;
}

.section-block {
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}

.page-width {
  width: calc(var(--main-width) + 10rem);
  max-width: 100%;
  margin: 0 auto;
  padding-right: 5rem;
  padding-left: 5rem;
}

.w-md {
  width: 98rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.w-sm {
  width: 68rem;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pd-x_none {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.pd-y_none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pd-t_none {
  padding-top: 0 !important;
}
.pd-b_none {
  padding-bottom: 0 !important;
}

.round {
  border-radius: 1rem;
}

a {
  color: rgba(var(--primary-color), 0.75);
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.link-underline {
  text-decoration: underline;
}
.link-block {
  display: block;
}
.link-image {
  display: block;
}
.link-image img {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.link-image:hover img {
  opacity: 0.7;
}
.link-color {
  color: #2175cb;
}

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

svg {
  vertical-align: bottom;
}

.variableBox {
  position: relative;
}
.variableBox > .inner {
  width: 100%;
  padding-bottom: var(--vertical-percent, 62.5%);
}
.variableBox .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

p {
  line-height: 2;
}
p:not(:last-of-type) {
  margin-bottom: 1em;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-serif {
  font-family: "游明朝", yumincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
.text-cf01 {
  font-family: "IBM Plex Sans", sans-serif;
}
.text-bold {
  font-weight: 700;
}
.text-xl {
  font-size: 3.2rem;
}
.text-lg {
  font-size: 2.4rem;
}
.text-md {
  font-size: 1.8rem;
}
.text-sm {
  font-size: 1.2rem;
}
.text-red {
  color: #b33f4c;
}
.text-blue {
  color: #1d348b;
}

@media screen and (max-width: 833px) {
  .pcOnly {
    display: none;
  }
}
@media screen and (min-width: 834px) {
  .tabOnly {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .spOnly {
    display: none;
  }
}
.site-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.header-navi {
  position: absolute;
  top: 7.5rem;
  right: 12rem;
  letter-spacing: 0;
}
.header-navi a {
  color: #fff;
}

.site-footer {
  padding: 4.4rem 0;
  position: relative;
}
.site-footer::before {
  content: "";
  width: 61.6rem;
  height: 53.4rem;
  position: absolute;
  right: -7.8rem;
  bottom: -4.4rem;
  display: block;
  background: url(../../images/common/footer_logo.svg) no-repeat center/contain;
}

.copy-light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.copy-light img {
  margin-right: 1.8rem;
}
.copy-light span {
  font-weight: 600;
  font-size: 1.2rem;
}

.breakThrough-right {
  margin-right: calc(50% - 50vw);
}
.breakThrough-right.keep-child {
  padding-right: calc(50vw - 50%);
}
.breakThrough-left {
  margin-left: calc(50% - 50vw);
}
.breakThrough-left.keep-child {
  padding-left: calc(50vw - 50%);
}

.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-column.col-2 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-column.col-2 > * {
  width: var(--col-width, 48.5%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-3 {
  margin-bottom: calc(var(--col-margin, 3.5%) * -1);
}
.l-column.col-3 > * {
  width: var(--col-width, 31%);
  margin-right: var(--col-margin, 3.5%);
  margin-bottom: var(--col-margin, 3.5%);
}
.l-column.col-3 > *:last-child, .l-column.col-3 > *:nth-child(3n) {
  margin-right: 0;
}
.l-column.col-4 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
}
.l-column.col-4 > * {
  width: var(--col-width, 22.75%);
  margin-right: var(--col-margin, 3%);
  margin-bottom: var(--col-margin, 3%);
}
.l-column.col-4 > *:last-child, .l-column.col-4 > *:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 833px) {
  .l-column.col-1-tab > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-tab {
    margin-bottom: calc(var(--col-tab-margin, 3%) * -1);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col-2-tab > * {
    width: var(--col-tab-width, 48.5%);
    margin-right: 0;
    margin-bottom: var(--col-tab-margin, 3%);
  }
}
@media screen and (max-width: 575px) {
  .l-column.col-1-sp > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-2-sp {
    margin-bottom: calc(var(--col-sp-margin, 3%) * -1);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-column.col-2-sp > * {
    width: var(--col-sp-width, 48.5%);
    margin-right: 0;
    margin-bottom: var(--col-sp-margin, 3%);
  }
}
.l-column.x-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-column.y-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.l-column.x-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-column.y-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card {
  overflow: hidden;
}
.card .c-image {
  position: relative;
}
.card .c-image figcaption {
  position: absolute;
  right: 1.2em;
  bottom: 1em;
  font-size: 1.2rem;
  color: #FFF;
}
.card .c-body {
  padding: 2rem;
  background-color: #FFF;
}
.card .c-title {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
}
.card .c-date {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
}
.card .c-date + * {
  margin-top: 0.5rem;
}
.card p {
  font-size: 1.4rem;
  text-align: justify;
}

.fixed-entry-button {
  width: 30rem;
  height: 6rem;
  position: fixed;
  bottom: 0;
  left: calc(50% - 15rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1d348b;
  color: #fff;
}

#hero-visual {
  width: 100%;
  height: 100vh;
  position: relative;
  background: linear-gradient(102deg, #3a6cb5 20%, #3ebbdb 85%);
}

.hero-catch {
  position: absolute;
  top: 50%;
  left: 5rem;
  color: #fff;
  text-shadow: 0 2px 5px #125fac;
  font-size: 5.6rem;
}

.hero-logo {
  width: 110vw;
  position: absolute;
  bottom: 0.8rem;
  left: 1.2rem;
  mix-blend-mode: screen;
}

.hero-scroll {
  width: 7.8rem;
  height: 7.8rem;
  position: absolute;
  right: 5rem;
  bottom: 8.6rem;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
}

.headline-logo {
  width: 76.8rem;
  max-width: 100%;
  height: 24.6rem;
  margin: 0 auto 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e6e6e6;
  border-radius: 12.3rem;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(121, 121, 121, 0.16);
          box-shadow: 0 3px 12px rgba(121, 121, 121, 0.16);
}
.headline-logo img {
  width: 80%;
}

.service-lead {
  padding: 3.2rem 0;
  background: url(../../images/common/text_service.svg) no-repeat center/contain;
  text-align: center;
  font-size: 2rem;
  line-height: 2.5;
}

.service-top {
  width: 110rem;
  max-width: 100%;
  margin-top: 1rem;
  padding-top: 4.4rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-top::before {
  content: "";
  width: 2px;
  height: 4.4rem;
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  background-color: #2f82bf;
}
.service-top .line {
  width: 50%;
  height: 13rem;
  display: block;
  border-top: 2px solid #2f82bf;
}
.service-top .line.left {
  border-left: 2px solid #2f82bf;
  border-radius: 9rem 0 0 0;
}
.service-top .line.right {
  border-right: 2px solid #2f82bf;
  border-radius: 0 9rem 0 0;
}

.service-slider-main {
  overflow: visible !important;
}

.service-list {
  max-width: 100rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-list li {
  position: relative;
}

.service-head {
  width: 32rem;
  height: 32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1rem solid #fff;
  border-radius: 50%;
  background-color: #2f82bf;
  color: #fff;
  text-align: center;
  -webkit-filter: drop-shadow(0px 0.3rem 0.6rem rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 0.3rem 0.6rem rgba(0, 0, 0, 0.16));
}
.service-head dt {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4615384615;
}
.service-head dd {
  margin-top: 0.5em;
  color: #e7ebef;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.4rem;
}

.service-body .ttl01 {
  width: 100%;
  height: 11.8rem;
  margin-bottom: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
}
.service-body dt {
  height: 6.4rem;
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}
.service-body dt a {
  text-decoration: underline;
}
.service-body dd {
  color: #4e4d4d;
}
.service-body dd p {
  line-height: 2.25;
}
.service-body .link-more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: block;
  border-bottom: 1px solid #707070;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.service01 .service-head {
  background: linear-gradient(45deg, #32afd5 0%, #2c61af 80%);
}
.service01 .service-body::before {
  content: "";
  width: 2px;
  height: 6rem;
  position: absolute;
  bottom: calc(100% + 3rem);
  left: calc(50% - 1px);
  background-color: #2f82bf;
}
.service01 .service-body .ttl01 {
  background: linear-gradient(45deg, #32afd5 0%, #2c61af 80%);
  font-size: 1.8rem;
}
.service01 .service-body dt {
  color: #2d6cb5;
}
.service01 .service-body .link-more {
  margin-top: 2.4rem;
  padding-right: 1.8rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.128%22%20height%3D%2219.128%22%3E%20%3Cpath%20fill%3D%22%232d6cb5%22%20d%3D%22m5.192%2015.09%207.517-7.517-.235%206.695%201.705-.09.336-9.564-9.564.336-.06%201.672%206.664-.203-7.517%207.517Z%22%20data-name%3D%22Icon%20ionic-md-arrow-forward%22%2F%3E%3C%2Fsvg%3E");
  background-position: right center;
  background-size: 1.6rem;
  background-repeat: no-repeat;
}

.service02 .service-head {
  background: linear-gradient(45deg, #32afd5 0%, #b1ce90 80%);
}
.service02 .service-body dt {
  color: #a0c379;
}
.service02 .service-body .link-more {
  margin-top: 2.4rem;
  padding-right: 1.8rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.128%22%20height%3D%2219.128%22%3E%20%3Cpath%20fill%3D%22%23a0c379%22%20d%3D%22m5.192%2015.09%207.517-7.517-.235%206.695%201.705-.09.336-9.564-9.564.336-.06%201.672%206.664-.203-7.517%207.517Z%22%20data-name%3D%22Icon%20ionic-md-arrow-forward%22%2F%3E%3C%2Fsvg%3E");
  background-position: right center;
  background-size: 1.6rem;
  background-repeat: no-repeat;
}

.food-box .pic {
  margin-bottom: 3rem;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

.service03 .service-head {
  background: linear-gradient(45deg, #f79090 0%, #f0eab7 120%);
}
.service03 .service-body::before {
  content: "";
  width: 2px;
  height: 6rem;
  position: absolute;
  bottom: calc(100% + 3rem);
  left: calc(50% - 1px);
  background-color: #f69793;
}
.service03 .service-body .ttl01 {
  background: linear-gradient(45deg, #f79090 0%, #f0eab7 120%);
  font-size: 1.8rem;
}
.service03 .service-body dt {
  color: #f69a94;
}
.service03 .service-body .link-more {
  margin-top: 4rem;
  padding-right: 1.8rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219.128%22%20height%3D%2219.128%22%3E%20%3Cpath%20fill%3D%22%23f79090%22%20d%3D%22m5.192%2015.09%207.517-7.517-.235%206.695%201.705-.09.336-9.564-9.564.336-.06%201.672%206.664-.203-7.517%207.517Z%22%20data-name%3D%22Icon%20ionic-md-arrow-forward%22%2F%3E%3C%2Fsvg%3E");
  background-position: right center;
  background-size: 1.6rem;
  background-repeat: no-repeat;
}

#company {
  background: linear-gradient(45deg, #3a6cb5 20%, #3ebbdb 80%);
  color: #fff;
}

.headline-company {
  margin-bottom: 8rem;
  padding: 8rem 0;
  background: url(../../images/common/text_company.svg) no-repeat center/contain;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
}

.company-table dl {
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}
.company-table dl:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}
.company-table dt, .company-table dd {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}
.company-table dt {
  color: #78cefa;
}
.company-table ul li:not(:last-child) {
  margin-bottom: 0.6em;
}

.headline-contact {
  margin-bottom: 8rem;
  padding: 8rem 0;
  background: url(../../images/common/text_contact.svg) no-repeat center/contain;
  color: #2c61af;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
}

.contact-lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
}
.contact-lead .text01 {
  color: #2c61af;
  text-align: center;
  font-size: 2.2rem;
}
.contact-lead .text02 {
  color: #5a5a5c;
}
.contact-lead .required {
  margin-right: 1rem;
}

.required {
  width: 4.4rem;
  padding: 0.3rem;
  position: relative;
  display: inline-block;
  color: #ee5253;
  vertical-align: text-top;
  text-align: center;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
}
.required::before, .required::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ee5253;
  border-radius: 0.9rem;
}
.required::before {
  left: -0.2rem;
}
.required::after {
  width: 4.5rem;
  left: 0.1rem;
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (min-width: 834px) {
  .header-navi li:not(:last-child) {
    margin-bottom: 0.2em;
  }
  #hero-visual {
    min-height: 90rem;
  }
  .service-list-detail {
    padding-bottom: 115rem;
  }
  .service-head dt.sm {
    font-size: 2.6rem;
  }
  .service-list-main li {
    width: 32rem;
  }
  .service-list-detail li {
    width: auto !important;
    height: auto !important;
  }
  .service01 .service-body {
    width: 38.4rem;
    position: absolute;
    top: calc(100% + 11.2rem);
    left: 0;
  }
  .service02::before {
    content: "";
    width: 2px;
    height: 63.2rem;
    position: absolute;
    top: calc(100% + 3rem);
    left: calc(50% - 1px);
    background-color: #46b4ca;
  }
  .service02 .service-body {
    width: 100rem;
    position: absolute;
    top: calc(100% + 68.4rem);
    left: calc(50% - 50rem);
  }
  .service02 .service-body::before {
    content: "";
    width: 62rem;
    height: 4rem;
    position: absolute;
    bottom: calc(100% + 2.2rem);
    left: calc(50% - 31rem);
    border: 2px solid #46b4ca;
    border-bottom: 0;
  }
  .food-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .food-box {
    width: 32%;
  }
  .service03 .service-body {
    width: 38.4rem;
    position: absolute;
    top: calc(100% + 11.2rem);
    right: 0;
  }
  .company-table dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .company-table dt {
    width: 27.5%;
    padding-right: 1em;
    padding-left: 6rem;
  }
  .company-table dd {
    width: 72.5%;
  }
}
@media screen and (max-width: 833px) {
  html {
    font-size: 1.3333333333vw;
  }
  body {
    font-size: 3rem;
  }
  .page-width {
    padding-right: 5rem;
    padding-left: 5rem;
  }
  .header-navi {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    top: 1.2rem;
    left: 0;
  }
  .header-navi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 3.8rem;
  }
  .site-footer {
    margin-top: 12rem;
  }
  .site-footer::before {
    bottom: -12rem;
  }
  .copy-light img {
    width: 5.4rem;
  }
  .copy-light span {
    font-size: 1.6rem;
  }
  .btn-01 {
    height: 12rem;
    font-size: 3.2rem;
  }
  #hero-visual {
    max-height: -webkit-fill-available;
  }
  .hero-catch {
    width: 100%;
    left: 0;
    text-align: center;
    font-size: 4.4rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hero-logo {
    bottom: 2.5rem;
    left: 0;
  }
  .hero-scroll {
    width: 11.4rem;
    height: 11.4rem;
    right: 4.6rem;
    bottom: 4.6rem;
  }
  .headline-logo {
    width: 65rem;
    margin-bottom: 8rem;
  }
  .service-lead {
    margin-right: -5rem;
    margin-left: -5rem;
    padding-top: 7.4rem;
    padding-right: 5rem;
    padding-left: 5rem;
    background-position: center top;
    background-size: auto 15.2rem;
    text-align: left;
    font-size: 3.2rem;
  }
  .service-lead br {
    display: none;
  }
  .service-top::before {
    width: 1px;
    height: 17.4rem;
  }
  .service-top .line {
    border-top-width: 1px;
  }
  .service-top .line.left {
    border-left-width: 1px;
  }
  .service-top .line.right {
    border-right-width: 1px;
  }
  .service-list-main {
    margin-top: 4rem;
  }
  .service-list-main li {
    width: 46rem;
  }
  .service-slider-thumbnail {
    overflow: visible !important;
  }
  .service-list-detail {
    margin-top: 13.5rem;
    display: block;
  }
  .service-list-detail li {
    background-color: #edf9fd;
  }
  .service-list-detail .service-body::before {
    width: 1px;
  }
  .service-head {
    width: 46rem;
    height: 46rem;
  }
  .service-head dt {
    font-size: 3.6rem;
  }
  .service-head dd {
    font-size: 2rem;
  }
  .service-body .ttl01 {
    height: 20rem;
  }
  .service-body dt {
    height: auto;
    font-size: 4rem;
  }
  .service-body .link-more {
    font-size: 2.8rem;
  }
  .service01 .service-body .ttl01 {
    font-size: 3rem;
  }
  .service01 .service-body .link-more {
    padding-right: 3.6rem;
    background-size: 3.2rem;
  }
  .service02 .service-body .link-more {
    padding-right: 3.6rem;
    background-size: 3.2rem;
  }
  .service-list-detail .service02::before {
    content: "";
    width: 1px;
    height: 6rem;
    position: absolute;
    bottom: calc(100% + 3rem);
    left: calc(50% - 1px);
    background-color: #46b4ca;
  }
  .food-box + .food-box {
    margin-top: 8rem;
  }
  .food-box .pic {
    margin-bottom: 4rem;
    border-width: 0.8rem;
  }
  .food-box .pic img {
    width: 100%;
  }
  .service03 .service-body .ttl01 img {
    width: 21.2rem;
  }
  .service03 .service-body .link-more {
    padding-right: 3.6rem;
    background-size: 3.2rem;
  }
  .headline-company {
    background-size: auto 15.2rem;
    font-size: 3.6rem;
  }
  .company-table dt {
    padding-bottom: 0;
  }
  .company-table dd {
    padding-top: 1.8rem;
  }
  .headline-contact {
    background-size: auto 15.2rem;
    font-size: 3.6rem;
  }
  .contact-lead .text01 {
    text-align: left;
    font-size: 3.2rem;
  }
  .contact-lead .text01 br {
    display: none;
  }
  .contact-lead .text02 {
    margin-top: 0.5em;
    font-size: 2.8rem;
  }
  .required {
    width: 8.8rem;
    padding: 0.6rem;
    font-size: 2.4rem;
  }
  .required::before, .required::after {
    border-radius: 1.8rem;
  }
  .required::before {
    left: -0.4rem;
  }
  .required::after {
    width: 9rem;
    left: 0.2rem;
  }
  .form-box + .form-box {
    margin-top: 4.8rem;
  }
  .form-box dt {
    margin-bottom: 2rem;
  }
  .form-control {
    padding: 0.8em 1.2em;
    font-size: 3.2rem;
  }
  .validation-error {
    font-size: 2.4rem;
  }
  .radio input[type=radio] + .radio-label {
    font-size: 2.8rem;
  }
  .radio input[type=radio] + .radio-label:before {
    width: 4rem;
    height: 4rem;
  }
  textarea.form-control {
    height: 30rem;
  }
  .form-submit {
    --button-width: 48.0rem;
  }
}