@charset "UTF-8";
/*
Theme Name: xOperationGroup 1.00
Theme URI: 
Author: xOperationGroup
Author URI: 
Description: xOperationGroup WordPress Themes
Version: 1.00
License: 
License URI: 
*/
/**
 * Variable
 * ==========================================================================
 */
:root {
  --color-blue: #27294E;
  --color-white: #ffffff;
  --color-white2: #DCDCDC;
  --color-black: #242424;
  --color-yellow: #A89A00;
  --color-grayLight: #EEEEF3;
  --color-grayLight2: #B3B5CC;
  --color-graymiddle: #686983;
  --color-gray555: #555;
  --color-grayAAA: #aaa;
  --fontJpSanSerif: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  --fontEnSerif: "gelato-fresco-variable", sans-serif;
}

/**
 * Reset
 * https://unpkg.com/modern-css-reset/dist/reset.min.css
 * ==========================================================================
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

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

button {
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * Base
 * ==========================================================================
 */
/**
 * WordPress
 */
@media screen and (max-width: 600px) {
  html #wpadminbar {
    position: fixed;
  }
}
/**
 * General
 */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 32rem;
  margin: 0 auto;
  overflow-x: hidden;
  word-wrap: break-word;
  line-height: 1.5;
  letter-spacing: 0;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--fontJpSanSerif);
  -webkit-font-smoothing: antialiased;
  color: var(--color-blue);
  opacity: 0;
}
body.welcome {
  opacity: 1;
}

::-moz-selection {
  color: var(--color-white);
  background: var(--color-black);
}

::selection {
  color: var(--color-white);
  background: var(--color-black);
}

::-moz-placeholder {
  color: var(--color-grayAAA);
}

::placeholder {
  color: var(--color-grayAAA);
}

/**
 * Library
 * ==========================================================================
 */
/**
 * swiper
 */
.swiper-slide {
  height: auto;
}

.swiper-button {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .swiper-button {
    gap: 1.6rem;
  }
}
.swiper-button .u-link {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .swiper-button .u-link {
    font-size: 2.6rem;
  }
}
.swiper-button .u-link.swiper-button-disabled::after {
  background-color: var(--color-white2) !important;
}
.swiper-button__prev {
  transform: rotate(180deg);
}

/**
 * Animation
 * ==========================================================================
 */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floating {
  0% {
    transform: translateY(-10%) translateX(-6%);
  }
  25% {
    transform: translateY(4%) translateX(-3%);
  }
  50% {
    transform: translateY(-4%) translateX(0%);
  }
  75% {
    transform: translateY(10%) translateX(3%);
  }
  100% {
    transform: translateY(-4%) translateX(6%);
  }
}
/**
 * Utility
 * ==========================================================================
 */
/**
 * unused elements
 */
.u-no_click {
  pointer-events: none;
}

/**
 * show / hide
 */
.u-show-laptop {
  display: none;
}
@media (max-width: 1024px) {
  .u-show-laptop {
    display: block;
  }
}

.u-show-tablet {
  display: none;
}
@media (max-width: 768px) {
  .u-show-tablet {
    display: block;
  }
}

.u-show-mobile {
  display: none;
}
@media (max-width: 425px) {
  .u-show-mobile {
    display: block;
  }
}

@media (max-width: 1024px) {
  .u-hide-laptop {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-hide-tablet {
    display: none;
  }
}

@media (max-width: 425px) {
  .u-hide-mobile {
    display: none;
  }
}

/**
 * inside
 */
.u-inside {
  max-width: 144rem;
  position: relative;
  margin: 0 auto;
  padding: 0 5rem;
}
@media (max-width: 1440px) {
  .u-inside {
    max-width: none;
  }
}
@media (max-width: 1024px) {
  .u-inside {
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .u-inside {
    padding: 0 3rem;
  }
}
@media (max-width: 425px) {
  .u-inside {
    padding: 0 2.5rem;
  }
}

/**
 * gray_box
 */
.u-gray_box {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: var(--color-grayLight);
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .u-gray_box {
    width: calc(100% + 6rem);
    margin-left: -3rem;
    border-radius: 0;
  }
}
@media (max-width: 425px) {
  .u-gray_box {
    width: calc(100% + 5rem);
    margin-left: -2.5rem;
  }
}
.u-gray_box__inner {
  padding: 6rem;
}
@media (max-width: 768px) {
  .u-gray_box__inner {
    padding: 5rem 3rem;
  }
}
@media (max-width: 425px) {
  .u-gray_box__inner {
    padding: 5rem 2.5rem;
  }
}
.u-gray_box .l-section-head .u-link {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .u-gray_box .l-section-head .u-link {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .u-gray_box .l-section-head .u-link {
    margin-top: 4rem;
    position: static;
  }
}

/**
 * zoom_image
 */
.u-zoom_image {
  overflow: hidden;
}
.u-zoom_image img {
  transition: transform ease 2s;
}
a:hover .u-zoom_image img {
  transform: scale(1.05);
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.43, 0.05, 0.17, 1);
}

/**
 * link
 */
.u-link {
  display: inline-block;
  transition: color ease 0.3s;
}
.u-link:hover, a:hover .u-link, .u-link.--current, .--current .u-link {
  color: var(--color-yellow);
}
.u-link span {
  padding-bottom: 0.1rem;
  background-image: linear-gradient(var(--color-blue), var(--color-blue));
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 0.1rem;
  display: inline;
  transition: background-image ease 0.3s, background-size 0.5s cubic-bezier(0.43, 0.05, 0.17, 1) 0s;
}
.u-link:hover span, a:hover .u-link span, .u-link.--current span, .--current .u-link span {
  background-image: linear-gradient(var(--color-yellow), var(--color-yellow));
  background-position: 0 100%;
  background-size: 100% 0.1rem;
}
.u-link.--white {
  color: var(--color-white);
}
.u-link.--white span {
  background-image: linear-gradient(var(--color-white), var(--color-white));
}
.u-link.--white:hover span, a:hover .u-link.--white span, .u-link.--white.--current span, .--current .u-link.--white span {
  color: var(--color-white);
  background-image: linear-gradient(var(--color-white), var(--color-white));
}
.u-link.--arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
}
.u-link.--arrow::after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: block;
  flex-shrink: 0;
  background: var(--color-blue) url(images/icon-arrow-white.svg) no-repeat center/65%;
  border-radius: 100%;
  transition: background-color ease 0.3s;
}
.u-link.--arrow:hover::after, a:hover .u-link.--arrow::after, .u-link.--arrow.--current::after, .--current .u-link.--arrow::after {
  background-color: var(--color-yellow);
}
.u-link.--arrow.--arrow_vertical::after {
  transform: rotate(90deg);
}
.u-link.--icon::before {
  content: "";
  width: 1.6em;
  height: 1.6em;
  margin-right: 0.4em;
  display: inline-block;
  position: relative;
  top: -0.1rem;
  vertical-align: middle;
  line-height: 0;
  background: no-repeat center/contain;
}
.u-link.--icon.--x::before {
  background-image: url(images/icon-x.png);
}
.u-link.--icon.--facebook::before {
  background-image: url(images/icon-facebook.png);
}

/**
 * button
 */
.u-button {
  padding: 1.1rem 8.5rem 1.1rem 6rem;
  display: inline-block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: left;
  font-weight: bold;
  background-color: var(--color-yellow);
  border: 0.1rem solid var(--color-blue);
  border-radius: 3.5em;
  transition: color ease 0.3s, border-color ease 0.3s;
}
@media (max-width: 1440px) {
  .u-button {
    padding: 1rem 6.5rem 1rem 5rem;
  }
}
.u-button:hover {
  color: var(--color-white);
  border-color: var(--color-yellow);
}
.u-button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-white);
  border-radius: 3.5em;
  transform-origin: left center;
  transition: transform cubic-bezier(0.4, 0.2, 0.05, 1) 0.6s;
}
.u-button:hover::before {
  transform: scale(0, 1);
  transform-origin: right center;
}
.u-button::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  position: absolute;
  top: calc(50% - 1.2rem);
  right: 1rem;
  background: var(--color-yellow) url(images/icon-arrow-white.svg) no-repeat center/65%;
  border-radius: 100%;
  transition: background-color ease 0.3s 0.3s, background-image ease 0.3s 0.3s;
}
@media (max-width: 768px) {
  .u-button::after {
    width: 2.8rem;
    height: 2.8rem;
    top: calc(50% - 1.4rem);
  }
}
.u-button:hover::after {
  background-color: var(--color-white);
  background-image: url(images/icon-arrow-yellow.svg);
}
.u-button.--blue {
  color: var(--color-white);
}
.u-button.--blue::before {
  background-color: var(--color-blue);
}
.u-button.--blue:hover {
  color: var(--color-white);
  background-color: var(--color-yellow);
}

/**
 * tag_label
 */
.u-tag_label {
  padding: 0.4em 1em;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  line-height: 1.2;
  font-weight: 800;
  font-family: var(--fontEnSerif);
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 0 0 1rem 0;
}

/**
 * Component
 * ==========================================================================
 */
/**
 * circle
 */
.c-circle {
  margin: auto;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.c-circle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: no-repeat center/contain;
  animation: rotate 25s linear infinite;
}
.c-circle.--large::before {
  background-image: url(images/circle-large.png);
}
.c-circle.--middle::before {
  background-image: url(images/circle-middle.png);
}
.c-circle.--short::before {
  background-image: url(images/circle-short.png);
}
.c-circle.--blur::before {
  filter: blur(0.6rem);
}
.c-circle.--center {
  width: 136rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .c-circle.--center {
    width: 124rem;
  }
}
@media (max-width: 768px) {
  .c-circle.--center {
    width: 100rem;
  }
}
@media (max-width: 425px) {
  .c-circle.--center {
    width: 54rem;
  }
}

/**
 * ball
 */
.c-ball {
  margin: auto;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  animation: floating 12s ease-in-out infinite alternate-reverse;
}
.c-ball::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(images/ball.png) no-repeat center/contain;
  animation: rotate 60s linear infinite;
}
.c-ball.--blur::before {
  filter: blur(0.5rem);
}
.c-ball.--center {
  margin: 0 auto;
  left: 0;
  right: 0;
}

/**
 * cta_box
 */
.c-cta_box {
  padding: 8rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-grayLight2);
  border-radius: 3rem;
}
@media (max-width: 1440px) {
  .c-cta_box {
    padding: 7rem;
  }
}
@media (max-width: 1024px) {
  .c-cta_box {
    padding: 5rem 3rem;
  }
}
@media (max-width: 768px) {
  .c-cta_box {
    padding: 3rem 2rem;
    border-radius: 2rem;
  }
}
.c-cta_box.--white {
  color: var(--color-blue);
  background-color: var(--color-white);
}
.c-cta_box__inner {
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3.6rem 2rem;
}
@media (max-width: 1440px) {
  .c-cta_box__inner {
    max-width: 88rem;
  }
}
@media (max-width: 768px) {
  .c-cta_box__inner {
    flex-direction: column;
    align-items: center;
  }
}
.c-cta_box__item {
  width: 50%;
  text-align: center;
}
@media (max-width: 1024px) {
  .c-cta_box__item {
    width: auto;
  }
}
@media (max-width: 768px) {
  .c-cta_box__item {
    width: 100%;
  }
}
.c-cta_box__item p {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .c-cta_box__item p {
    margin-bottom: 2.6rem;
    font-size: 2.2rem;
  }
}
@media (max-width: 1024px) {
  .c-cta_box__item p {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .c-cta_box__item p {
    margin-bottom: 1.8rem;
  }
}
.c-cta_box__item .u-button {
  font-size: 2rem;
}
@media (max-width: 1440px) {
  .c-cta_box__item .u-button {
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .c-cta_box__item .u-button {
    font-size: 1.7rem;
  }
}
@media (max-width: 425px) {
  .c-cta_box__item .u-button {
    width: 100%;
  }
}

.c-menu_tab {
  padding: 3.2rem 0;
  background-color: var(--color-grayLight);
}
@media (max-width: 768px) {
  .c-menu_tab {
    display: none;
  }
}
.c-menu_tab__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 7rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1440px) {
  .c-menu_tab__inner {
    gap: 2rem 4rem;
  }
}
.c-menu_tab__item {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .c-menu_tab__item {
    font-size: 1.8rem;
  }
}

/**
 * list-thumbnail
 */
.c-list-thumbnail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 3.4rem;
}
@media (max-width: 768px) {
  .c-list-thumbnail {
    max-width: 42.4rem;
    margin: 0 auto;
    flex-direction: column;
    gap: 3rem;
  }
}
.c-list-thumbnail .c-list-thumbnail-item {
  width: calc((100% - 6.8rem) / 3);
}
@media (max-width: 1024px) {
  .c-list-thumbnail .c-list-thumbnail-item {
    width: calc((100% - 3.4rem) / 2);
  }
}
@media (max-width: 768px) {
  .c-list-thumbnail .c-list-thumbnail-item {
    width: 100%;
  }
}

.c-list-thumbnail-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.c-list-thumbnail-item .u-tag_label {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .c-list-thumbnail-item .u-tag_label {
    font-size: 1.4rem;
  }
}
.c-list-thumbnail-item__img {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .c-list-thumbnail-item__img {
    margin-bottom: 1.8rem;
  }
}
.c-list-thumbnail-item.--border .c-list-thumbnail-item__img {
  border: 1px solid var(--color-grayLight2);
}
.c-list-thumbnail-item .u-link {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .c-list-thumbnail-item .u-link {
    font-size: 1.8rem;
  }
}
.c-list-thumbnail-item.--gray_out .u-link {
  opacity: 0.6;
}
.c-list-thumbnail-item.--gray_out .c-list-thumbnail-item__img {
  background-color: var(--color-gray555);
}
.c-list-thumbnail-item.--gray_out .c-list-thumbnail-item__img img {
  opacity: 0.6;
}

/**
 * list-split
 */
.c-list-split {
  display: flex;
  flex-wrap: wrap;
  gap: 3.4rem;
}
@media (max-width: 768px) {
  .c-list-split {
    max-width: 42.4rem;
    margin: 0 auto;
    flex-direction: column;
    gap: 3rem;
  }
}
.c-list-split .c-list-split-item {
  width: calc((100% - 6.8rem) / 3);
}
@media (max-width: 1024px) {
  .c-list-split .c-list-split-item {
    width: calc((100% - 3.4rem) / 2);
  }
}
@media (max-width: 768px) {
  .c-list-split .c-list-split-item {
    width: 100%;
  }
}

.c-list-split-item {
  background-color: var(--color-white);
}
.c-list-split-item a {
  height: 100%;
  display: flex;
  overflow: hidden;
  border: 0.1rem solid var(--color-white2);
  border-radius: 1rem;
}
.c-list-split-item__img {
  width: 14.1rem;
  flex-shrink: 0;
}
@media (max-width: 425px) {
  .c-list-split-item__img {
    width: 10.1rem;
  }
}
.c-list-split-item__content {
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .c-list-split-item__content {
    padding: 2.6rem 1.8rem 1.8rem;
  }
}
@media (max-width: 425px) {
  .c-list-split-item__content {
    padding: 1.8rem 1.8rem 1.2rem;
  }
}
.c-list-split-item__content .u-link.--arrow {
  margin-left: auto;
  margin-right: 0;
  font-size: 1.7rem;
}
.c-list-split-item__content p {
  margin-bottom: 1.8rem;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.4rem;
}
@media (max-width: 1440px) {
  .c-list-split-item__content p {
    font-size: 1.3rem;
  }
}
@media (max-width: 425px) {
  .c-list-split-item__content p {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
}
.c-list-split-item__content h2 {
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .c-list-split-item__content h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 425px) {
  .c-list-split-item__content h2 {
    -webkit-line-clamp: 3;
    font-size: 1.4rem;
  }
}

/**
 * list-box
 */
.c-list-box {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 768px) {
  .c-list-box {
    max-width: 42.4rem;
    margin: 0 auto;
    flex-direction: column;
    gap: 2rem;
  }
}
.c-list-box .c-list-box-item {
  width: calc((100% - 4rem) / 2);
}
@media (max-width: 768px) {
  .c-list-box .c-list-box-item {
    width: 100%;
  }
}

.c-list-box-item a {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: var(--color-blue);
  border: 0.6rem solid var(--color-blue);
  border-radius: 1rem;
}
.c-list-box-item .u-tag_label {
  top: -0.6rem;
  left: -0.6rem;
  font-size: 2.6rem;
}
@media (max-width: 1440px) {
  .c-list-box-item .u-tag_label {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .c-list-box-item .u-tag_label {
    font-size: 2rem;
  }
}
.c-list-box-item__img {
  position: relative;
}
.c-list-box-item__img img {
  width: 100%;
  height: auto;
  display: block;
}
.c-list-box-item p {
  font-weight: bold;
  color: var(--color-white);
}
.c-list-box-item.--image p {
  position: absolute;
  bottom: 0.4rem;
  left: 1rem;
  line-height: 1.1;
  font-size: min(4.2vw, 6.4rem);
}
@media (max-width: 768px) {
  .c-list-box-item.--image p {
    left: 0.4rem;
    font-size: min(8vw, 4rem);
  }
}
.c-list-box-item.--only_text a {
  height: 12.1rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 1440px) {
  .c-list-box-item.--only_text a {
    height: 11rem;
  }
}
@media (max-width: 768px) {
  .c-list-box-item.--only_text a {
    height: 8rem;
  }
}
.c-list-box-item.--only_text .u-tag_label {
  background-color: transparent;
}
.c-list-box-item.--only_text p {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 2rem;
}
@media (max-width: 1440px) {
  .c-list-box-item.--only_text p {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .c-list-box-item.--only_text p {
    font-size: 1.6rem;
  }
}
.c-list-box-item.--only_text .u-link.--arrow {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .c-list-box-item.--only_text .u-link.--arrow {
    bottom: 0.4rem;
    right: 0.4rem;
  }
}

/**
 * list-frame
 */
.c-list-frame {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .c-list-frame {
    max-width: 42.4rem;
    margin: 0 auto;
    flex-direction: column;
  }
}
.c-list-frame .c-list-frame-item {
  width: calc((100% - 2rem) / 2);
}
@media (max-width: 768px) {
  .c-list-frame .c-list-frame-item {
    width: 100%;
  }
}

.c-list-frame-item {
  padding: 3rem;
  overflow: hidden;
  text-align: center;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-white2);
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .c-list-frame-item {
    padding: 3rem 0;
  }
}
.c-list-frame-item p {
  margin-bottom: 2rem;
  padding-top: 1rem;
  font-size: 2.6rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .c-list-frame-item p {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .c-list-frame-item p {
    padding-top: 0;
    font-size: 1.8rem;
  }
}
.c-list-frame-item img {
  width: 60rem;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .c-list-frame-item img {
    width: 48rem;
  }
}
@media (max-width: 768px) {
  .c-list-frame-item img {
    width: 33.3rem;
  }
}

/**
 * list-text_frame
 */
.c-list-text_frame {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-list-text_frame .c-list-text_frame-item {
  width: 100%;
}

.c-list-text_frame-item {
  padding: 3rem;
  display: flex;
  gap: 2rem 3rem;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-white2);
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .c-list-text_frame-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .c-list-text_frame-item {
    padding: 3rem 2.5rem;
  }
}
.c-list-text_frame-item__head {
  width: 32rem;
  padding-bottom: 0.8em;
  flex-shrink: 0;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .c-list-text_frame-item__head {
    width: 28rem;
  }
}
@media (max-width: 1024px) {
  .c-list-text_frame-item__head {
    width: auto;
    padding-bottom: 0;
  }
}
.c-list-text_frame-item__en {
  display: block;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-yellow);
}
@media (max-width: 1440px) {
  .c-list-text_frame-item__en {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .c-list-text_frame-item__en {
    font-size: 1.6rem;
  }
}
.c-list-text_frame-item__title {
  margin-top: 0.4em;
  font-size: 2.6rem;
}
@media (max-width: 1440px) {
  .c-list-text_frame-item__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .c-list-text_frame-item__title {
    font-size: 1.8rem;
  }
}
.c-list-text_frame-item__body {
  flex-grow: 1;
  line-height: 2.1;
}
.c-list-text_frame-item__body p {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .c-list-text_frame-item__body p {
    font-size: 1.4rem;
  }
}

/**
 * anchor-box
 */
.c-anchor-box {
  display: flex;
  flex-wrap: wrap;
  gap: 3.4rem;
}
@media (max-width: 768px) {
  .c-anchor-box {
    max-width: 42.4rem;
    margin: 0 auto;
    flex-direction: column;
    gap: 1.8rem;
  }
}
.c-anchor-box .c-anchor-box-item {
  width: calc((100% - 3.44rem) / 2);
}
@media (max-width: 768px) {
  .c-anchor-box .c-anchor-box-item {
    width: 100%;
  }
}

.c-anchor-box-item a {
  width: 100%;
  height: 10.4rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-grayLight2);
  border-radius: 1rem;
}
@media (max-width: 1440px) {
  .c-anchor-box-item a {
    height: 9.6rem;
  }
}
@media (max-width: 768px) {
  .c-anchor-box-item a {
    height: 7.8rem;
  }
}
.c-anchor-box-item .u-link {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .c-anchor-box-item .u-link {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .c-anchor-box-item .u-link {
    width: 100%;
    justify-content: space-between;
  }
}
.c-anchor-box-item.--full {
  width: 100%;
}

/**
 * corporate_logo_slider
 */
.c-corporate_logo_slider {
  display: flex;
  overflow: hidden;
}
.c-corporate_logo_slider ul {
  height: 6.9rem;
  display: flex;
  flex-shrink: 0;
}
.c-corporate_logo_slider.--start ul {
  animation: slide-animation 30s linear infinite;
}
.c-corporate_logo_slider li {
  width: 18rem;
  margin-right: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .c-corporate_logo_slider li {
    margin-right: 0;
  }
}
.c-corporate_logo_slider + .c-corporate_logo_slider {
  margin-top: 2rem;
}
.c-corporate_logo_slider + .c-corporate_logo_slider.--start ul {
  animation: slide-animation 30s linear infinite reverse;
}

@keyframes slide-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/**
 * c-faq
 */
.c-faq li {
  padding: 2.4rem 4rem 2.4rem 0;
  font-size: 1.6rem;
  border-bottom: 0.1rem solid var(--color-grayLight2);
}
@media (max-width: 768px) {
  .c-faq li {
    font-size: 1.4rem;
  }
}
.c-faq__q {
  margin-bottom: 0.6rem;
  font-weight: bold;
}
.c-faq__a {
  line-height: 1.8;
  font-size: 1.6rem;
}

/**
 * Layout
 * ==========================================================================
 */
/**
 * viewport
 */
.l-viewport {
  width: 100%;
  position: relative;
}

/**
 * full_menu
 */
.l-full_menu {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-blue);
}
.l-full_menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-full_menu__head {
  padding: 12rem 0 5rem;
  display: flex;
  justify-content: space-between;
  gap: 7rem 8rem;
}
@media (max-width: 1440px) {
  .l-full_menu__head {
    padding: 10rem 0 5rem;
  }
}
@media (max-width: 1024px) {
  .l-full_menu__head {
    padding: 8rem 0 5rem;
    flex-direction: column;
  }
}
.l-full_menu__logo {
  display: flex;
}
@media (max-width: 768px) {
  .l-full_menu__logo {
    justify-content: center;
  }
}
.l-full_menu__logo a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.l-full_menu__logo a:hover {
  opacity: 0.7;
}
.l-full_menu__logo img {
  width: 20.6rem;
}
@media (max-width: 768px) {
  .l-full_menu__logo img {
    width: 18rem;
  }
}
.l-full_menu__nav {
  display: flex;
  align-items: flex-start;
  gap: 3rem 8.8rem;
}
@media (max-width: 1440px) {
  .l-full_menu__nav {
    gap: 3rem 4rem;
  }
}
@media (max-width: 1024px) {
  .l-full_menu__nav {
    width: calc(100% + 1.6rem);
    margin-left: -0.8rem;
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .l-full_menu__nav {
    flex-wrap: wrap;
  }
}
@media (max-width: 425px) {
  .l-full_menu__nav {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .l-full_menu__nav ul {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 425px) {
  .l-full_menu__nav ul {
    width: 100%;
  }
}
.l-full_menu__nav li {
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media (max-width: 1440px) {
  .l-full_menu__nav li {
    font-size: 1.4rem;
  }
}
.l-full_menu__nav li a {
  padding: 0.8rem;
  display: inline-block;
}
.l-full_menu__under {
  padding: 5rem 0 10rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .l-full_menu__under {
    padding: 5rem 0 6rem;
  }
}
@media (max-width: 1024px) {
  .l-full_menu__under {
    padding: 0 0 4rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .l-full_menu__under {
    padding: 0 0 3rem;
  }
}
.l-full_menu__under p {
  padding-bottom: 2rem;
  position: relative;
  letter-spacing: 0.06em;
  font-size: 7rem;
  font-weight: 700;
}
@media (max-width: 1440px) {
  .l-full_menu__under p {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .l-full_menu__under p {
    font-size: 4rem;
  }
}
@media (max-width: 425px) {
  .l-full_menu__under p {
    font-size: 3.6rem;
  }
}
.l-full_menu__under p::before {
  content: "Design the Operation";
  position: absolute;
  top: 48%;
  left: 4.4rem;
  z-index: -1;
  line-height: 0;
  letter-spacing: -0.015em;
  white-space: nowrap;
  font-size: 17.3rem;
  font-weight: 600;
  font-family: var(--fontEnSerif);
  color: var(--color-graymiddle);
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .l-full_menu__under p::before {
    left: 3.8rem;
    font-size: 12rem;
  }
}
@media (max-width: 1024px) {
  .l-full_menu__under p::before {
    left: -2.8rem;
    font-size: 10rem;
  }
}
@media (max-width: 768px) {
  .l-full_menu__under p::before {
    left: -4.8rem;
    font-size: 9rem;
  }
}
@media (max-width: 425px) {
  .l-full_menu__under p::before {
    font-size: 5.8rem;
  }
}
.l-full_menu__sub_nav ul {
  margin-bottom: 1rem;
  margin-right: -1rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .l-full_menu__sub_nav ul {
    width: calc(100% + 1.6rem);
    margin-bottom: 2rem;
    margin-left: -0.8rem;
    justify-content: flex-start;
  }
}
@media (max-width: 425px) {
  .l-full_menu__sub_nav ul {
    flex-direction: column;
  }
}
.l-full_menu__sub_nav li {
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
.l-full_menu__sub_nav li a {
  padding: 1rem;
  display: inline-block;
}
.l-full_menu__sub_nav small {
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .l-full_menu__sub_nav small {
    font-size: 1.2rem;
  }
}
.l-burger_menu .l-full_menu {
  height: 100%;
  padding-top: 6rem;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}
.l-burger_menu .l-full_menu .u-inside {
  min-height: 100%;
}
.l-burger_menu .l-full_menu__head {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity ease 0.5s, transform ease 0.5s;
}
.--menu_open .l-burger_menu .l-full_menu__head {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.l-burger_menu .l-full_menu__under {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity ease 0.5s, transform ease 0.5s;
}
.--menu_open .l-burger_menu .l-full_menu__under {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/**
 * header
 */
.l-global_header {
  max-width: none;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2rem;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-white);
  transition: all ease 0.4s;
}
@media (max-width: 1440px) {
  .l-global_header {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .l-global_header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
body:not(.--menu_open) .l-global_header.--hide {
  transform: translateY(-100%);
}
.l-global_header.--border {
  border-bottom: 0.1rem solid var(--color-grayLight2);
}
.l-global_header__logo {
  flex-shrink: 0;
}
.l-global_header__logo a {
  display: block;
  transition: opacity 0.3s ease;
}
.l-global_header__logo a:hover {
  opacity: 0.7;
}
.l-global_header__logo img {
  width: 15.4rem;
}
@media (max-width: 1440px) {
  .l-global_header__logo img {
    width: 14rem;
  }
}
@media (max-width: 768px) {
  .l-global_header__logo img {
    width: 13rem;
  }
}
@media (max-width: 425px) {
  .l-global_header__logo img {
    width: 12rem;
  }
}

.l-global_navi {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  align-items: center;
  transition: opacity ease 0.3s, transform ease 0.3s;
}
@media (max-width: 768px) {
  .l-global_navi {
    display: none;
  }
}
.l-global_navi__list {
  padding: 0 10rem 0 4rem;
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
@media (max-width: 1440px) {
  .l-global_navi__list {
    display: none;
  }
}
.l-global_navi__item {
  flex-shrink: 0;
  position: relative;
}
.l-global_navi__link {
  padding: 1rem;
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
.l-global_navi .u-button {
  flex-shrink: 0;
  font-size: 2rem;
}
@media (max-width: 1440px) {
  .l-global_navi .u-button {
    font-size: 1.6rem;
  }
}
.l-global_navi .u-button + .u-button {
  margin-left: 2rem;
}
@media (max-width: 1024px) {
  .l-global_navi .u-button + .u-button {
    margin-left: 1rem;
  }
}
.l-global_navi-child {
  width: 28.4rem;
  position: absolute;
  top: 100%;
  left: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2rem);
  transition: opacity ease 0.4s, transform ease 0.4s;
}
.l-global_navi-child__box {
  margin-top: 1rem;
  padding: 2rem;
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-grayLight2);
  border-radius: 1rem;
}
.l-global_navi-child li {
  font-size: 1.6rem;
}
.l-global_navi-child .u-link {
  padding: 0.8rem 1rem;
}
.l-global_navi-child .u-link.--arrow {
  font-weight: bold;
}
.l-global_navi__item:hover .l-global_navi-child {
  pointer-events: inherit;
  opacity: 1;
  transform: translateY(0);
}

.l-global_header.--simple {
  border-bottom: none;
}
body:not(.--menu_open) .l-global_header.--simple {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
@media (max-width: 1440px) {
  body:not(.--menu_open) .l-global_header.--simple {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  body:not(.--menu_open) .l-global_header.--simple {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.l-global_header.--simple .l-global_navi {
  opacity: 0;
  transform: translateY(-2rem);
}

/**
 * burger
 */
.l-burger {
  width: 4.6rem;
  height: 4.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .l-burger {
    width: 4rem;
    height: 4rem;
  }
}
.l-burger__border {
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 0.2rem;
  right: 0.2rem;
  border: 0.2rem solid var(--color-blue);
  border-radius: 100%;
  transition: border-color 0.3s ease, transform 0.3s 0.2s ease;
}
.--menu_open .l-burger__border {
  transform: scale(1.3);
  transition: transform 0.3s ease;
}
.l-burger:hover .l-burger__border {
  border-color: var(--color-yellow);
}
.l-burger::before, .l-burger::after {
  content: "";
  width: 4.4rem;
  height: 0.4rem;
  position: absolute;
  z-index: 2;
  top: calc(50% - 0.2rem);
  left: calc(50% - 2.2rem);
  background-color: var(--color-white);
  transform-origin: center;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .l-burger::before, .l-burger::after {
    width: 3.8rem;
    height: 0.3rem;
  }
}
.--menu_open .l-burger::before, .--menu_open .l-burger::after {
  transition: transform 0.3s 0.1s ease;
}
.l-burger::before {
  transform: scaleX(0);
}
.--menu_open .l-burger::before {
  transform: scaleX(1) rotate(45deg);
}
.l-burger::after {
  transform: scaleX(0);
}
.--menu_open .l-burger::after {
  transform: scaleX(1) rotate(-45deg);
}
.l-burger span {
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--color-blue);
  border-radius: 100%;
  transition: background-color 0.3s ease, transform 0.3s 0.2s ease;
}
@media (max-width: 768px) {
  .l-burger span {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.--menu_open .l-burger span {
  transform: scale(0);
  transition: transform 0.3s ease;
}
.l-burger:hover span {
  background-color: var(--color-yellow);
}

.l-burger_menu {
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translateY(-100%);
  transition: transform ease 0.4s;
}
.--menu_open .l-burger_menu {
  transform: translateY(0);
}
.l-burger_menu .c-cta_box {
  display: none;
}
@media (max-width: 768px) {
  .l-burger_menu .c-cta_box {
    display: block;
  }
}

/**
 * content
 */
.l-content {
  padding-top: 12.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .l-content {
    padding-top: 8.7rem;
  }
}
@media (max-width: 768px) {
  .l-content {
    padding-top: 6.1rem;
  }
}
.l-content-cta {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .l-content-cta {
    margin-top: 3.4rem;
  }
}
.l-content-cta .u-button {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .l-content-cta .u-button {
    font-size: 1.7rem;
  }
}
.l-content main {
  position: relative;
  z-index: 2;
}

.l-eyecatch {
  margin-bottom: 12rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-grayLight2);
}
.l-eyecatch__inner {
  height: 46rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.2rem;
}
@media (max-width: 1440px) {
  .l-eyecatch__inner {
    height: 35rem;
    gap: 1.8rem;
  }
}
@media (max-width: 768px) {
  .l-eyecatch__inner {
    height: 30rem;
    gap: 1.2rem;
  }
}
.l-eyecatch__en {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-yellow);
}
@media (max-width: 1440px) {
  .l-eyecatch__en {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .l-eyecatch__en {
    font-size: 1.8rem;
  }
}
@media (max-width: 425px) {
  .l-eyecatch__en {
    font-size: 1.6rem;
  }
}
.l-eyecatch__title {
  padding-bottom: 0.8em;
  line-height: 1.4;
  font-size: 5.5rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .l-eyecatch__title {
    font-size: 4.8rem;
  }
}
@media (max-width: 768px) {
  .l-eyecatch__title {
    font-size: 3.8rem;
  }
}
@media (max-width: 425px) {
  .l-eyecatch__title {
    font-size: 3.2rem;
  }
}
.l-eyecatch .c-circle {
  width: 128rem;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1440px) {
  .l-eyecatch .c-circle {
    width: 110rem;
  }
}
@media (max-width: 768px) {
  .l-eyecatch .c-circle {
    width: 80rem;
  }
}
@media (max-width: 425px) {
  .l-eyecatch .c-circle {
    width: 56rem;
  }
}

.l-section {
  padding-top: 12rem;
  position: relative;
}
@media (max-width: 768px) {
  .l-section {
    padding-top: 10rem;
  }
}
.l-eyecatch + .l-section {
  padding-top: 0;
}
.l-section-head {
  margin-bottom: 6rem;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .l-section-head {
    margin-bottom: 3rem;
  }
}
.l-section-head:not(:first-child) {
  margin-top: 10rem;
}
.l-section-head__label {
  margin-bottom: 0.8rem;
  display: block;
  line-height: 1;
  letter-spacing: -0.01em;
  font-size: 4rem;
  font-weight: 500;
  font-family: var(--fontEnSerif);
  color: var(--color-yellow);
}
@media (max-width: 1440px) {
  .l-section-head__label {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .l-section-head__label {
    font-size: 3rem;
  }
}
@media (max-width: 425px) {
  .l-section-head__label {
    font-size: 2.8rem;
  }
}
.l-section-head__label.--sub {
  margin-bottom: 2.8rem;
  font-size: 3.8rem;
  font-weight: bold;
  font-family: var(--fontJpSanSerif);
}
@media (max-width: 1440px) {
  .l-section-head__label.--sub {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .l-section-head__label.--sub {
    font-size: 2.8rem;
  }
}
@media (max-width: 425px) {
  .l-section-head__label.--sub {
    font-size: 2.4rem;
  }
}
.l-section-head__title {
  line-height: 1.4;
  font-size: 4.2rem;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .l-section-head__title {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .l-section-head__title {
    font-size: 3rem;
  }
}
@media (max-width: 425px) {
  .l-section-head__title {
    font-size: 2.6rem;
  }
}
.l-section-head p {
  margin-top: 3rem;
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: bold;
}
.l-section-head .u-button {
  margin-top: 5rem;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .l-section-head .--sp_left {
    text-align: left;
  }
}
.l-section-body {
  position: relative;
}

/**
 * footer
 */
#footer_cta_box {
  margin-top: -6rem;
  margin-bottom: -14rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #footer_cta_box {
    margin-top: -4rem;
  }
}
@media (max-width: 425px) {
  #footer_cta_box {
    margin-top: -2rem;
  }
}
#footer_cta_box + .l-global_footer {
  padding-top: 14rem;
}
#footer_cta_box .l-section-head {
  margin-bottom: 7rem;
  padding-top: 21rem;
}
@media (max-width: 1024px) {
  #footer_cta_box .l-section-head {
    padding-top: 19rem;
  }
}
@media (max-width: 768px) {
  #footer_cta_box .l-section-head {
    margin-bottom: 6rem;
    padding-top: 17rem;
  }
}
@media (max-width: 425px) {
  #footer_cta_box .l-section-head {
    padding-top: 11rem;
  }
}
#footer_cta_box .l-section-body {
  position: relative;
}
#footer_cta_box .c-cta_box {
  position: relative;
  z-index: 2;
}
#footer_cta_box .c-circle {
  top: 0;
}
#footer_cta_box .c-ball {
  width: 47.5rem;
  top: -5.5rem;
}
@media (max-width: 1440px) {
  #footer_cta_box .c-ball {
    width: 44rem;
  }
}
@media (max-width: 768px) {
  #footer_cta_box .c-ball {
    width: 30rem;
    top: -4.5rem;
  }
}
@media (max-width: 425px) {
  #footer_cta_box .c-ball {
    width: 26rem;
  }
}

.l-global_footer {
  position: relative;
  z-index: 1;
  background-color: var(--color-blue);
}

/**
 * Module
 * ==========================================================================
 */
/**
 * breadcrumb
 */
/**
 * Posts
 * ==========================================================================
 */
/**
 * thumbnail_archive
 */
.c-thumbnail_archive {
  margin-top: 7.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3.4rem;
}
@media (max-width: 768px) {
  .c-thumbnail_archive {
    margin-top: 0;
    gap: 2rem;
  }
}
.c-thumbnail_archive li {
  width: calc((100% - 6.8rem) / 3);
}
@media (max-width: 768px) {
  .c-thumbnail_archive li {
    width: calc((100% - 2rem) / 2);
  }
}
.c-thumbnail_archive li a {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  transition: opacity 0.3s ease;
}
.c-thumbnail_archive li a:hover {
  opacity: 0.7;
}
.c-thumbnail_archive li img {
  width: 100%;
  height: auto;
}

/**
 * post-single
 */
/**
 * noposts
 */
/**
 * Lowers
 * ==========================================================================
 */
/**
 * page
 */
/**
 * 404
 *//*# sourceMappingURL=style.css.map */