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

.animSlideUp {
  transform: translateY(100px);
}
.animSlideUp.is-anim {
  animation: slideUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slideUp {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
.headline-01 {
  margin-bottom: 2.5em;
}
.headline-01 .label {
  margin-bottom: 0.25em;
  display: block;
  color: #a4daf7;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}
.headline-01 .ttl {
  color: #00a1e9;
  letter-spacing: 0.1em;
  font-size: 4.5rem;
  line-height: 1.3;
}
.headline-02 {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.6rem;
}
.headline-02::before, .headline-02::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #555;
}
.headline-02::before {
  margin-right: 0.5em;
}
.headline-02::after {
  margin-left: 0.5em;
}
.headline-03 {
  margin-bottom: 4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.5384615385;
}

.btn {
  width: var(--button-width, fit-content);
  height: var(--button-height, auto);
  display: block;
}
.btn-01 {
  margin-top: var(--button-margin, 3rem);
  padding: 1em 1em;
  border: 1px solid #d6d4ce;
  border-radius: 1rem;
  background-color: #fff;
  text-align: center;
  font-size: 1.5rem;
}
.btn-01.next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-01.next::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  display: inline-block;
  background: url(../../images/common/arrow_next01.svg) no-repeat center/contain;
}
.btn-fit {
  --button-width: 100%;
}
.btn-center {
  margin-right: auto;
  margin-left: auto;
}
.btn-more {
  width: var(--button-width, 24rem);
  height: var(--button-height, 6.4rem);
  margin-top: var(--button-margin, 4.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a4daf7;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: background 0.3s ease-in-out;
}
.btn-more i {
  margin-left: 0.5em;
  color: #fff;
  line-height: 1;
  transition: transform 0.3s ease-in-out;
}
.btn-more:hover {
  background-color: var(--primary-color);
}
.btn-more:hover i {
  transform: translateX(0.5em);
}

.link-underline {
  text-decoration: underline;
}
.link-block {
  display: block;
}
.link-image {
  display: block;
}
.link-image img {
  transition: opacity 0.3s ease-in-out;
}
.link-image:hover img {
  opacity: 0.7;
}
.link-more {
  padding-right: 2.1rem;
  display: inline-block;
  background: url(../../images/common/arrow_next01.svg) no-repeat right center/1.5rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5rem;
}
.link-more.wh {
  background-image: url(../../images/common/arrow_next01-wh.svg);
}
.link-color {
  color: #2175cb;
}

ol.note {
  list-style-type: none;
  counter-reset: item;
}
ol.note li {
  margin-left: 2.2em;
  text-indent: -2.2em;
}
ol.note li::before {
  content: "※" counter(item);
  margin-right: 0.5em;
  counter-increment: item;
}
ol.note li + li {
  margin-top: 0.6em;
}

ul {
  list-style-type: none;
}
ul.dot li {
  margin-left: 1.2em;
  text-indent: -1em;
}
ul.dot li:before {
  content: "・";
  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: 8rem;
  display: flex;
  gap: 1.4em;
  justify-content: center;
}
.pager-number .page-numbers {
  padding: 0 0.2em;
  text-align: center;
  font-weight: 400;
  line-height: 2;
}
.pager-number .page-numbers.current {
  position: relative;
  font-weight: 600;
}
.pager-number .page-numbers.current::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
}
.pager-number .prev, .pager-number .next {
  width: auto;
  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;
  appearance: none;
}
.form-select::-ms-expand {
  display: none;
}

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

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label {
  display: flex;
  align-items: center;
  line-height: 1;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.5em;
  position: relative;
  top: 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 100%;
  background-color: #fff;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.radio input[type=radio]:checked + .radio-label:before {
  border-color: var(--primary-color, #000);
  background-color: var(--primary-color, #000);
  box-shadow: inset 0 0 0 4px #fff;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--primary-color, #000);
}
.radio input[type=radio]:disabled + .radio-label:before {
  border-color: #b4b4b4;
  background: #b4b4b4;
  box-shadow: inset 0 0 0 4px #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: flex;
  align-items: center;
  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 .error {
  margin-top: 1em;
}

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

.mwform-checkbox-field {
  padding-left: 2em;
  position: relative;
}
.mwform-checkbox-field:before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  margin-top: -0.7em;
  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: 3.6rem;
}
.form-box dt {
  margin-bottom: 1em;
  font-weight: 500;
  line-height: 1;
}
.form-box .required {
  margin-left: 0.8rem;
  padding: 0.2em 0.5em;
  display: inline-block;
  background-color: #d2153d;
  color: #fff;
  font-size: 1.2rem;
}
.form-box .required::before {
  content: "必須";
}
.form-box .error {
  margin-top: 0.5em;
  color: #d2153d;
  font-size: 1.3rem;
}

.form-column {
  display: flex;
}
.form-column .inner {
  width: 100%;
}
.form-column .inner + .inner {
  margin-left: 1em;
}

.form-control {
  width: 100%;
  padding: 0.8em 1.2em;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
}

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

.form-submit {
  background-color: #00a1e9;
}
.form-submit:hover {
  background-color: #a4daf7;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden !important;
  background-color: #fff;
  color: var(--base-font-color, #000);
  word-break: break-all;
  letter-spacing: 0.075em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
body.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

* {
  color: var(--base-font-color, #000);
}

.site-container {
  margin-top: 9rem;
  padding-bottom: 5rem;
}

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

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

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

.mg-y_50 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.mg-b_25 {
  margin-bottom: 2.5rem;
}
.mg-b_30 {
  margin-bottom: 3rem;
}
.mg-b_160 {
  margin-bottom: 16rem;
}

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

.round {
  border-radius: 1rem;
}

.swiper a {
  display: block;
}
.swiper picture {
  display: block;
}
.swiper .swiper-button {
  width: 3.4rem;
  height: 3.4rem;
  position: absolute;
  top: calc(50% - 1.7rem);
  z-index: 9;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208.873%2016.412%22%3E%20%3Cpath%20d%3D%22M.666%2016.412a.668.668%200%200%201-.471-1.138l7.07-7.067-7.07-7.07a.666.666%200%201%201%20.943-.941l7.54%207.54a.665.665%200%200%201%200%20.942l-7.54%207.54c-.13.13-.301.194-.472.194Z%22%20style%3D%22fill%3A%23777%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-size: 0.8rem 1.6rem;
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(119, 119, 119, 0.15);
}
.swiper .swiper-button.prev {
  left: 0;
  transform: rotate(180deg);
}
.swiper .swiper-button.next {
  right: 0;
}

.bg-c01 {
  background-color: #f9f9f9;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.fit {
  width: 100%;
}
img.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

figure {
  margin: 0;
}

picture {
  display: inline-block;
}

.shadowBox-lg {
  display: block;
  filter: drop-shadow(0px 0px 1.8rem rgba(46, 51, 48, 0.1));
}
.shadowBox-md {
  display: block;
  filter: drop-shadow(0px 0px 1rem rgba(46, 51, 48, 0.1));
}

.ratio4_5 img {
  object-fit: cover;
  aspect-ratio: 4/5;
}

.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%;
  object-fit: cover;
}

.hr-01 {
  border: none;
  border-top: 1px solid #ccc;
}

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

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-serif {
  font-family: "Zen Old Mincho", serif;
}
.text-wf01 {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.text-wf02 {
  font-family: "Poppins", sans-serif;
}
.text-en {
  font-family: "Poppins", sans-serif;
}
.text-bold {
  font-weight: 700;
}
.text-xl {
  font-size: 3.2rem;
}
.text-lg {
  font-size: 2.4rem;
}
.text-md {
  font-size: 2rem;
}
.text-sm {
  font-size: 1.2rem;
}
.text-red {
  color: #d4471b;
}
.text-blue {
  color: #1d348b;
}
.text-white {
  --base-font-color: #fff;
}
.text-ls-80 {
  letter-spacing: 0.08em;
}

@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%;
  padding: 0 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 4px 20px rgba(141, 121, 98, 0.15);
}

.header-inner {
  width: 100%;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
}

.custom-logo-link {
  width: 24rem;
  display: block;
}

.site-title-box .site-title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
.site-title-box .site-description {
  margin-top: 0.75em;
  font-size: 1.4rem;
  line-height: 1;
}

.header-navi {
  display: flex;
  align-items: center;
}
.header-navi > li:not(:last-child) {
  margin-right: 3.2rem;
}

.hamburger-menu {
  width: 2.2rem;
  height: 1.8rem;
  position: absolute;
  top: 2.7rem;
  right: 2rem;
  z-index: 9;
  cursor: pointer;
}
.hamburger-menu span {
  width: 100%;
  height: 0.2rem;
  position: absolute;
  left: 0;
  display: block;
  background: #777;
  transition: 0.3s ease-in-out;
}
.hamburger-menu span:nth-child(1) {
  top: 0;
}
.hamburger-menu span:nth-child(2) {
  top: 0.8rem;
}
.hamburger-menu span:nth-child(3) {
  top: 1.6rem;
}
.hamburger-menu.is-open span:nth-child(1) {
  top: 0.8rem;
  transform: rotate(45deg);
}
.hamburger-menu.is-open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.hamburger-menu.is-open span:nth-child(3) {
  top: 0.8rem;
  transform: rotate(-45deg);
}

.site-footer {
  margin-top: 10rem;
  padding-top: 7vw;
  position: relative;
  background-color: #fff;
}
.site-footer::before {
  content: "";
  width: 100%;
  height: 7vw;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../../images/common/footer_visual.png) no-repeat center bottom/100% auto;
}

.footer-column {
  display: flex;
}

.footer-block01 {
  width: 64%;
  padding: 2.5rem 4rem 2.5rem 0;
  display: grid;
  gap: 0 1em;
  grid-template-columns: 1fr 1fr;
}
.footer-block01 .custom-logo-link {
  width: 27.5rem;
  margin-bottom: 2rem;
}
.footer-block01 .address {
  color: #00a1e9;
  font-style: normal;
  font-size: 1.8rem;
}
.footer-block01 .footer-button {
  max-width: 35rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #00a1e9;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.4;
}
.footer-block01 .footer-button + .footer-button {
  margin-top: 2.2rem;
}
.footer-block01 .footer-button span {
  color: #fff;
}
.footer-block01 .footer-button .text01 {
  font-size: 1.5rem;
}
.footer-block01 .footer-button .text02 {
  font-weight: 700;
  font-size: 3rem;
}

.footer-phone dt {
  margin-bottom: 0.5em;
  color: #a4daf7;
}
.footer-phone dd {
  color: #00a1e9;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
}

.sns-link {
  margin-top: 4rem;
  display: flex;
}
.sns-link li + li {
  margin-left: 2rem;
}
.sns-link a {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  transition: background 0.3s ease-in-out;
}
.sns-link a:hover {
  background-color: rgba(164, 218, 247, 0.3);
}
.sns-link i {
  color: #001ed3;
}

.footer-block02 {
  margin-right: calc(50% - 50vw);
  padding: 3rem 2rem 3rem 5rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  background-color: #a4daf7;
  --base-font-color: #767676;
}
.footer-block02 .site-info {
  margin-top: auto;
}

.footer-navigation .ttl {
  margin-bottom: 1em;
  color: #fff;
}

.footer-navi li + li {
  margin-top: 0.8em;
}

.copy-right {
  font-size: 1.4rem;
}

div + .side-block {
  margin-top: 6.4rem;
}

.views-card + .views-card {
  margin-top: 1.5em;
}
.views-card a {
  display: block;
}
.views-card .post-info {
  margin-top: 0.5em;
}

.views-card__thumbnail {
  margin-bottom: 0.5em;
  padding-bottom: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #f9f9f9;
  box-shadow: 0 0 1rem rgba(46, 51, 48, 0.1);
}
.views-card__thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.views-card__thumbnail .num {
  width: 2.7rem;
  width: 2.7rem;
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  border-radius: 0.3rem;
  background-color: #777;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.7rem;
}

.views-card__title {
  font-weight: 400;
  font-size: 1.4rem;
}

.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-type-01 + .l-type-01 {
  margin-top: 12rem;
}
.l-type-01 .visual img {
  width: 100%;
}
.l-type-01 .visual .pic + .pic {
  margin-top: 0.8rem;
}
.l-type-01 .ttl {
  margin-bottom: 1.5em;
  font-size: 2.4rem;
}
.l-type-01 p {
  line-height: 2;
}

.layout-2column {
  margin-top: 4.8rem;
  margin-bottom: 10rem;
}
.layout-2column .layout-main .section-block:first-child {
  padding-top: 0;
}

.l-column {
  display: flex;
  flex-wrap: wrap;
  --button-margin: 0;
}
.l-column.col-2 {
  margin-bottom: calc(var(--col-margin, 3%) * -1);
  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, 2%) * -2.85);
}
.l-column.col-3 > * {
  width: var(--col-width, 32%);
  margin-right: var(--col-margin, 2%);
  margin-bottom: calc(var(--col-margin, 2%) * 2.85);
}
.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, 2%) * -2.5);
}
.l-column.col-4 > * {
  width: var(--col-width, 23.5%);
  margin-right: var(--col-margin, 2%);
  margin-bottom: calc(var(--col-margin, 2%) * 2.5);
}
.l-column.col-4 > *:last-child, .l-column.col-4 > *:nth-child(4n) {
  margin-right: 0;
}
.l-column.x-reverse {
  flex-direction: row-reverse;
}
.l-column.y-reverse {
  flex-direction: column-reverse;
}
.l-column.x-center {
  justify-content: center;
}
.l-column.y-center {
  align-items: center;
}

@media screen and (max-width: 833px) {
  .l-column.col-1-tab > * {
    width: 100%;
    margin-right: 0;
  }
  .l-column.col-1-tab > *:not(:last-child) {
    margin-bottom: var(--col-margin, 4rem);
  }
  .l-column.col-2-tab {
    margin-bottom: calc(var(--col-tab-margin, 3%) * -1);
    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);
    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-card-01 {
  width: 50rem;
  max-width: 100%;
  padding: 5rem;
  border-top: 7px solid var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0.2rem 2.5rem 0 rgba(0, 33, 91, 0.2);
}
.l-card-01 .ttl {
  font-size: 3rem;
  line-height: 1.3;
}

.card {
  overflow: hidden;
}
.card .c-image {
  position: relative;
}
.card .c-image figcaption {
  position: absolute;
  right: 1.2em;
  bottom: 1em;
  color: #fff;
  font-size: 1.2rem;
}
.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-weight: 700;
  font-size: 1.4rem;
}
.card .c-date + * {
  margin-top: 0.5rem;
}
.card p {
  text-align: justify;
  font-size: 1.4rem;
}

#hero-visual {
  height: 46.875vw;
  position: relative;
}
#hero-visual .swiper, #hero-visual .swiper-wrapper, #hero-visual .swiper-slide, #hero-visual .slide-image, #hero-visual img {
  width: 100%;
  height: 100%;
}
#hero-visual img {
  object-fit: cover;
}
#hero-visual .hero-video {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#hero-visual .hero-video::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 161, 233, 0.25);
}
#hero-visual .hero-video video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-catch {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: translateX(-50%);
}
.hero-catch .text {
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  letter-spacing: 0.1875em;
  font-size: 4.2vw;
  line-height: 1.4;
  --base-font-color: #fff;
}
.hero-catch span {
  display: block;
}
.hero-catch span + span {
  margin-left: 1em;
}
.hero-catch .copy {
  margin-top: 1em;
  font-weight: 700;
  font-size: 2rem;
  --base-font-color: #fff;
}

.section-news-home {
  border-top: 1rem solid #00a1e9;
  background-color: #8c8c8c;
  --base-font-color: #fff;
}
.section-news-home .headline-01 {
  margin-bottom: 0;
}
.section-news-home .headline-01 .label {
  color: #fff;
}
.section-news-home .headline-01 .ttl {
  color: #fff;
  font-size: 3.5rem;
}
.section-news-home .news-list .category {
  border-color: #fff;
  background-color: #fff;
}
.section-news-home .news-button {
  margin-top: 1em;
  text-align: right;
}
.section-news-home .news-button a {
  display: inline-flex;
  gap: 0 0.5rem;
  align-items: center;
}

.section-business .approach-list {
  margin-bottom: 3rem;
  display: grid;
  gap: 0 5rem;
  grid-template-columns: repeat(3, 1fr);
}
.section-business .approach-list dl {
  width: 100%;
  padding: 3.6rem 1.5rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  box-shadow: 0 0.4rem 1.9rem 0.2rem rgba(0, 161, 233, 0.35);
  text-align: center;
  letter-spacing: 0;
  aspect-ratio: 1;
}
.section-business .approach-list dt {
  margin-bottom: 1em;
  color: #00a1e9;
  font-weight: 700;
  font-size: 1.25rem;
}
.section-business .approach-list dd {
  font-size: 1rem;
}

.business-lead .headline-01 {
  margin-bottom: 2.5rem;
}
.business-lead .sub-ttl {
  margin-bottom: 0.5em;
}
.business-lead .visual-area {
  position: relative;
}
.business-lead .visual-area .visual {
  display: inline-block;
  border: 1.5rem solid #fff;
  box-shadow: 0 0.2rem 2.5rem 0 rgba(0, 33, 91, 0.21);
}
.business-lead .visual-area .visual01 {
  bottom: 0;
  left: 0;
  z-index: 2;
}
.business-lead .visual-area .visual02 {
  top: 0;
  right: 0;
}

.business-list {
  height: 47rem;
  margin-top: 12rem;
}
.business-list ul {
  height: 100%;
  display: flex;
  gap: 1rem;
  flex: 1;
}
.business-list li {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.business-list li:nth-child(odd) a {
  background: rgba(0, 161, 233, 0.85);
}
.business-list li:nth-child(odd) .icon {
  background-color: #a4daf7;
}
.business-list li:nth-child(even) a {
  background: rgba(164, 218, 247, 0.85);
}
.business-list li:nth-child(even) .icon {
  background-color: #00a1e9;
}
.business-list a {
  width: 100%;
  height: 100%;
  padding: 3rem 1.5rem;
  position: relative;
  display: block;
  transition: backdrop-filter 0.3s ease-in-out;
}
.business-list a:hover {
  backdrop-filter: blur(2px);
}
.business-list a:hover .icon {
  transform: scale(1.2);
}
.business-list .text {
  color: #fff;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 2.1rem;
}
.business-list .icon {
  width: 3.125vw;
  height: 3.125vw;
  position: absolute;
  right: 3rem;
  bottom: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}
.business-list .icon i {
  color: #fff;
  font-size: 1.35vw;
}

.company-grid {
  margin-right: auto;
  margin-left: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.company-grid picture {
  width: 100%;
  height: 100%;
  display: block;
}
.company-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-grid .box {
  position: relative;
  aspect-ratio: 1/0.842;
}
.company-grid .box:hover .text {
  backdrop-filter: blur(2px);
}
.company-grid .box:hover .icon {
  transform: scale(1.2);
}
.company-grid .text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: backdrop-filter 0.3s ease-in-out;
}
.company-grid .text .headline-01 {
  margin-bottom: 1.5rem;
}
.company-grid .text .headline-01 .ttl {
  font-size: 3.2rem;
}
.company-grid .text .icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  display: block;
  background-color: #fff;
  text-align: center;
  line-height: 4rem;
  transition: transform 0.3s ease-in-out;
}

.company-address {
  margin-top: 10rem;
}
.company-address .key-visual {
  width: 100%;
  height: 32rem;
}
.company-address .key-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-address .company-info {
  display: flex;
  align-items: flex-end;
}
.company-address .address-info {
  margin-top: -8rem;
  position: relative;
}
.company-address .address-info .ttl {
  margin-bottom: 1em;
  font-size: 1.8rem;
}
.company-address .address-info p {
  font-size: 2.4rem;
  line-height: 1.5;
}
.company-address .phones-info {
  margin-left: 6rem;
  padding-left: 8rem;
  flex: 1;
}
.company-address .phones-info dt {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 1.8rem;
}
.company-address .phones-info dd {
  font-size: 2.4rem;
  line-height: 1.5;
}
.company-address .phones-info .inner {
  margin-left: -8rem;
  padding-left: 8rem;
  background: url(../../images/home/icon_phone.svg) no-repeat left bottom 0.6rem/6rem;
}

.section-bottom-movie {
  width: 100%;
  height: 55rem;
  margin-top: 10rem;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.section-bottom-movie video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  filter: grayscale(100%);
  transform: translate(-50%, -50%);
}

.lower-headline {
  width: 100%;
  height: 42rem;
  margin-bottom: 10rem;
  position: relative;
  background-color: #00a1e9;
  --base-font-color: #fff;
}
.lower-headline .headline-text {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.lower-headline .ttl {
  font-size: 5.5rem;
}
.lower-headline .breadcrumbs {
  margin-top: 0.5em;
  font-size: 1.4rem;
}
.lower-headline .breadcrumbs > * {
  margin: 0 0.5em;
}
.lower-headline .breadcrumbs > *:first-child {
  margin-left: 0;
}
.lower-headline .headline-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lower-headline .headline-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lower-headline .lower-contact-info {
  position: absolute;
  top: 32rem;
  right: 0;
}

.lower-contact-info {
  max-width: 48rem;
  --base-font-color: #000;
}
.lower-contact-info dt {
  font-size: 1.4rem;
}
.lower-contact-info dd {
  font-weight: 700;
  font-size: 4rem;
}

.mission-block {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 12rem 0;
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  position: relative;
  background: url(../../images/company/mission_bg.jpg) no-repeat center/cover;
}
.mission-block::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.mission-block .inner {
  position: relative;
  z-index: 2;
}
.mission-block .ttl {
  margin-bottom: 1em;
  color: #00a1e9;
  font-size: 5rem;
  line-height: 1.4;
}
.mission-block p {
  max-width: 68rem;
}

.company-profile {
  padding-left: 5rem;
  font-size: 2rem;
}
.company-profile dl {
  display: flex;
  border-bottom: 2px solid #cfe1e9;
}
.company-profile dl + dl {
  margin-top: 3rem;
}
.company-profile dt, .company-profile dd {
  padding: 0.2em 0;
}
.company-profile dt {
  width: 30rem;
  margin-right: 5rem;
  position: relative;
  color: #00a0e9;
}
.company-profile dt::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #00a0e9;
}
.company-profile dd {
  flex: 1;
}

.access-block p {
  margin-bottom: 1em;
  font-size: 2rem;
}
.access-block .map {
  width: 100%;
  height: 44rem;
}
.access-block .map iframe {
  width: 100%;
  height: 100%;
}

.lower-business-list {
  margin-top: 5rem;
}
.lower-business-list .business-box {
  display: flex;
  --base-font-color: #fff;
}
.lower-business-list .business-box:nth-child(even) {
  flex-direction: row-reverse;
}
.lower-business-list .business-box > * {
  width: 50%;
}
.lower-business-list .pic {
  aspect-ratio: 1/0.74;
}
.lower-business-list .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lower-business-list .text {
  padding: 4.8rem;
  display: flex;
  align-items: center;
  background-color: #00a1e9;
}
.lower-business-list .ttl {
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #fff;
  font-size: 2.4rem;
}

.news-list li {
  padding-top: 1.4em;
  padding-bottom: 1.4em;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c5c5c5;
  font-size: 1.4rem;
}
.news-list .date {
  width: 17rem;
}
.news-list .category {
  width: 13.5rem;
  margin-right: 4.8rem;
  padding: 0.2em 0.5em;
  border: 1px solid #00a1e9;
  border-radius: 0.75rem;
  color: #00a1e9;
  text-align: center;
}
.news-list .title {
  flex: 1;
}

.entry-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cfe1e9;
}

.entry-meta {
  margin-bottom: 0.5em;
  display: flex;
  gap: 0 1em;
  align-items: center;
  font-size: 1.4rem;
}
.entry-meta .category {
  margin-right: 4.8rem;
  padding: 0.2em 1em;
  border: 1px solid #00a1e9;
  border-radius: 0.75rem;
  color: #00a1e9;
  text-align: center;
}

.entry-title {
  font-size: 3.2rem;
}

.post-thumbnail {
  margin-bottom: 3rem;
}

.entry-content p {
  line-height: 1.8;
}
.entry-content p:not(:last-of-type) {
  margin-bottom: 1.5em;
}

.mw_wp_form_confirm .form-box + .form-box {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #cfe1e9;
}
.mw_wp_form_confirm .required {
  display: none;
}
.mw_wp_form_confirm .privacy-box {
  display: none;
}

.form-thanks .ttl {
  margin-bottom: 1em;
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (min-width: 834px) {
  .hamburger-menu {
    display: none;
  }
  .content-approach {
    margin-top: -20rem;
    margin-left: auto;
  }
  .section-business {
    margin-top: 10rem;
  }
  .business-lead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .business-lead .text-area {
    width: 48%;
  }
  .business-lead .visual-area {
    width: 42%;
    height: 60rem;
  }
  .business-lead .visual-area .visual {
    position: absolute;
  }
}
@media screen and (max-width: 833px) {
  html {
    font-size: 2.6666666667vw;
  }
  body {
    font-size: 1.4rem;
  }
  .site-container {
    margin-top: 7.2rem;
    padding-bottom: 0;
  }
  .section-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .page-width {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .l-card-01 {
    padding: 2rem;
    box-shadow: 0 0.2rem 1.25rem 0 rgba(0, 33, 91, 0.1);
  }
  .l-card-01 .ttl {
    font-size: 2rem;
  }
  .pager-number {
    margin-top: 4rem;
  }
  .headline-01 .label {
    font-size: 1.4rem;
  }
  .headline-01 .ttl {
    font-size: 3.2rem;
  }
  .site-header {
    padding: 0 2rem;
  }
  .header-inner {
    height: 7.2rem;
  }
  .custom-logo-link {
    width: 10rem;
  }
  #site-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 7.2rem;
    left: 0;
    display: none;
    background-color: #fff;
  }
  .header-navi {
    padding: 4rem 2rem;
    display: block;
    font-size: 1.8rem;
  }
  .header-navi > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
  .site-footer {
    margin-top: 5rem;
    padding-top: 14vw;
  }
  .site-footer::before {
    height: 14vw;
    background-size: cover;
  }
  .footer-column {
    display: block;
  }
  .footer-block01 {
    width: 100%;
    padding: 4rem 0 3.6rem 0;
    display: block;
  }
  .footer-block01 .custom-logo-link {
    margin-bottom: 2rem;
  }
  .footer-block01 .comment {
    margin-top: 3rem;
  }
  .footer-block01 .area02 {
    margin-top: 3rem;
  }
  .sns-link {
    margin-top: 3rem;
  }
  .footer-block02 {
    padding: 4rem 2rem 3.6rem 4rem;
  }
  .copy-right {
    margin-top: 2em;
    font-size: 1.2rem;
  }
  #hero-visual {
    height: 80vw;
  }
  #hero-visual .hero-video video {
    width: auto;
    height: 100%;
  }
  .hero-catch .text {
    font-size: 3rem;
  }
  .hero-catch .copy {
    font-size: 1.5rem;
  }
  .section-news-home {
    border-top-width: 0.5rem;
  }
  .section-news-home .headline-01 .ttl {
    font-size: 2.8rem;
  }
  .section-business {
    margin-top: 2rem;
  }
  .section-business .approach-list {
    display: flex;
    gap: 1.5rem 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-business .approach-list li {
    width: 45%;
  }
  .section-business .approach-list dl {
    padding-top: 0;
    justify-content: center;
  }
  .business-lead .headline-01 {
    margin-bottom: 108vw;
  }
  .business-lead .visual-area {
    width: calc(100% - 4rem);
    height: 96vw;
    position: absolute;
    top: 8rem;
    left: 2rem;
  }
  .business-lead .visual-area .visual {
    position: absolute;
    border-width: 0.8rem;
  }
  .business-lead .visual-area .visual01 {
    width: 50vw;
  }
  .business-lead .visual-area .visual02 {
    width: 65vw;
  }
  .business-list {
    height: auto;
    display: block;
  }
  .business-list .key-visual {
    width: 100%;
    height: 50vw;
  }
  .business-list ul {
    flex-direction: column;
  }
  .business-list li {
    height: 50vw;
  }
  .business-list .text {
    font-size: 2rem;
  }
  .business-list .icon {
    width: 4rem;
    height: 4rem;
    right: 2rem;
    bottom: 2rem;
    display: flex;
  }
  .business-list .icon i {
    font-size: 1.4rem;
  }
  .company-grid {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }
  .company-grid .box {
    aspect-ratio: 1/0.6;
  }
  .company-grid .text .headline-01 .label {
    font-size: 1.2rem;
  }
  .company-grid .text .headline-01 .ttl {
    font-size: 2.4rem;
  }
  .company-grid .text .icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    line-height: 3rem;
  }
  .company-address {
    margin-top: 6rem;
  }
  .company-address .key-visual {
    height: 50vw;
  }
  .company-address .company-info {
    display: block;
  }
  .company-address .address-info {
    margin-top: -5rem;
  }
  .company-address .address-info .ttl {
    font-size: 1.6rem;
  }
  .company-address .address-info p {
    font-size: 1.8rem;
  }
  .company-address .phones-info {
    margin-top: 4rem;
    margin-left: 0;
    padding-left: 6rem;
  }
  .company-address .phones-info dt {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
  }
  .company-address .phones-info dd {
    font-size: 2rem;
  }
  .company-address .phones-info .inner {
    margin-left: -6rem;
    padding-left: 6rem;
    background-size: 4.4rem;
  }
  .section-bottom-movie {
    height: 60vw;
    margin-top: 2rem;
  }
  .section-bottom-movie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lower-headline {
    height: 50vw;
    margin-bottom: 5rem;
  }
  .lower-headline .ttl {
    font-size: 3.6rem;
  }
  .lower-headline .lower-contact-info {
    top: 90%;
    right: 2rem;
  }
  .lower-contact-info {
    width: 60%;
  }
  .lower-contact-info dt {
    font-size: 1.4rem;
  }
  .lower-contact-info dd {
    font-size: 2.4rem;
  }
  .mission-block {
    padding: 6rem 2rem;
  }
  .mission-block .ttl {
    font-size: 3.6rem;
  }
  .company-profile {
    padding-left: 0;
    font-size: 1.6rem;
  }
  .company-profile dl {
    display: block;
  }
  .company-profile dl + dl {
    margin-top: 2rem;
  }
  .company-profile dt, .company-profile dd {
    padding: 0;
  }
  .company-profile dt {
    margin-bottom: 0.3em;
  }
  .company-profile dt::after {
    content: none;
  }
  .company-profile dd {
    padding-bottom: 0.5em;
  }
  .access-block p {
    margin-bottom: 2em;
    font-size: 1.6rem;
  }
  .access-block .map {
    height: 60vw;
  }
  .news-list li {
    display: block;
  }
  .news-list .date {
    width: auto;
    margin-bottom: 0.3em;
    display: inline-block;
  }
  .news-list .category {
    margin-right: 0;
    margin-left: 0.5em;
    font-size: 1.2rem;
  }
  .news-list .title {
    display: block;
    font-size: 1.6rem;
  }
  .entry-meta {
    font-size: 1.2rem;
  }
  .entry-title {
    font-size: 2.4rem;
  }
  .lower-business-list {
    margin-top: 0;
  }
  .lower-business-list .business-box {
    display: block;
  }
  .lower-business-list .business-box + .business-box {
    margin-top: 2rem;
  }
  .lower-business-list .business-box > * {
    width: 100%;
  }
  .lower-business-list .text {
    padding: 2.4rem 2rem;
  }
  .lower-business-list .ttl {
    font-size: 2rem;
  }
}