/*
 Theme Name: MARUKI
 Description: 丸喜興業Webサイト
 Theme URI:
 Author: I'LL inc.
 Author URI:
 Version:
 License:
 License URI:
*/
@charset "UTF-8";
/* CSS Document */

@media (min-width: 769px) {
  .u-only--sp {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .u-only--pc {
    display: none !important;
  }
}

.is-display--none {
  display: none !important;
}

/* Reset
=====================================================================*/
*,
::after,
::before {
  box-sizing: border-box;
  background-repeat: no-repeat;
  min-height: 0%
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal
}

body {
  margin: 0;
  padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 1;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0
}

p {
  margin: 0;
  padding: 0;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0
}

pre {
  white-space: pre-wrap
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible
}

audio,
canvas,
embed,
iframe,
object,
video {
  display: block;
  vertical-align: middle;
  max-width: 100%
}

img,
svg {
  vertical-align: middle
}

canvas,
img,
svg,
video {
  height: auto
}

audio {
  width: 100%
}

img {
  border-style: none
}

svg {
  overflow: hidden
}

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section,
div,
span,
a {
  margin: 0;
  padding: 0;
  color: inherit
}

a:hover {
  color: inherit
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  padding-inline-end: 0
}

table {
  text-indent: initial;
  border-spacing: 0
}

table,
th,
tr,
td {
  margin: 0;
  padding: 0;
  border: none
}

address {
  text-decoration: none;
  font-style: normal
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit
}

input,
textarea {
  margin: 0;
  padding: 0;
  border: none
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px
}

/* Font preset
=====================================================================*/
:root {
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;
}

html {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  letter-spacing: 0.05em;
}

body,
input,
textarea,
select,
table {
  font-weight: var(--font-medium);
}

/* Base
=====================================================================*/
.l-body {
  font-size: 1.4rem;
}

a {
  text-decoration: none;
}

.c-txt {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.c-txt p {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-txt p a {
  text-decoration: underline;
  transform: color 0.3s ease;
}

.c-img img {
  display: block;
  width: 100%;
  object-fit: contain;
}

@media (min-width: 769px) {
  .u-center-pc {
    text-align: center;
  }

  .c-txt p a:hover {
    color: #005BAD;
    text-decoration: none;
  }

  .c-txt p a.u-tel {
    text-decoration: none;
    pointer-events: none;
  }
}

/* Animation
=====================================================================*/
@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.u-fade {
  opacity: 0;
}

.is-fadein {
  animation-name: fadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 1;
}

.u-delay-1 {
  transition-delay: 0.4s;
}

.u-delay-2 {
  transition-delay: 1s;
}

.u-delay-3 {
  transition-delay: 1.6s;
}

.u-marker {
  display: table;
  position: relative;
}

.u-marker::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.0);
  transform-origin: top left;
  transition: transform 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.is-marker-on.u-marker::before {
  transform: scaleX(1.0);
}

.u-marker-delay-1::before {
  transition-delay: 0.6s;
}

.u-marker-delay-2::before {
  transition-delay: 1.2s;
}

.u-marker-delay-3::before {
  transition-delay: 1.8s;
}

.u-marker--txt {
  opacity: 0;
  position: relative;
  z-index: 10;
  transition: opacity 0.8s ease;
}

.is-marker-on .u-marker--txt {
  opacity: 1;
}

.u-marker-delay-1 .u-marker--txt {
  transition-delay: 0.4s;
}

.u-marker-delay-2 .u-marker--txt {
  transition-delay: 1s;
}

.u-marker-delay-3 .u-marker--txt {
  transition-delay: 1.6s;
}

@keyframes curtain {
  0% {
    transform: scaleX(0.0);
    transform-origin: top left;
  }

  50% {
    transform: scaleX(1.0);
    transform-origin: top left;
  }

  51% {
    transform: scaleX(1.0);
    transform-origin: top right;
  }

  100% {
    transform: scaleX(0.0);
    transform-origin: top right;
  }
}

.u-curtain {
  display: block;
  width: fit-content;
  position: relative;
}

.u-curtain--txt {
  display: block;
  width: fit-content;
}

.u-curtain::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #005BAD;
  transform: scaleX(0.0);
  position: absolute;
  top: 0;
  left: 0;
}

.is-curtain-on.u-curtain::after {
  animation-name: curtain;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.u-curtain-delay-1:after {
  animation-delay: 0.4s;
}

.u-curtain-delay-2:after {
  animation-delay: 1s;
}

.u-curtain-delay-3:after {
  animation-delay: 1.6s;
}

.u-curtain-delay-4:after {
  animation-delay: 2.2s;
}

.u-curtain--txt {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.is-curtain-on .u-curtain--txt {
  opacity: 1;
}

.u-curtain-delay-1 .u-curtain--txt {
  transition-delay: 0.8s;
}

.u-curtain-delay-2 .u-curtain--txt {
  transition-delay: 1.4s;
}

.u-curtain-delay-3 .u-curtain--txt {
  transition-delay: 2s;
}

.u-curtain-delay-4 .u-curtain--txt {
  transition-delay: 2.6s;
}

/* Tab
=====================================================================*/
.l-tab-buttonarea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 10;
}

.c-tab-button {
  cursor: pointer;
}

.c-tab-button.is-active {}

.c-tab-content {
  display: none;
}

.c-tab-content.is-active {
  display: block;
  animation: fadein 0.5s ease;
}

/* onluSP */
@media (max-width: 768px) {
  .l-sptab-buttonarea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 10;
  }

  .c-sptab-button {
    cursor: pointer;
  }

  .c-sptab-content {
    display: none;
  }

  .c-sptab-content.is-active {
    display: block;
    animation: fadein 0.5s ease;
  }
}

/* Layout
=====================================================================*/
body {
  min-width: 375px;
}

@media (min-width: 769px) {
  body {
    min-width: 1024px;
  }
}

.l-body {
  width: auto;
  height: auto;
  position: relative;
  top: 60px;
}

.l-main {
  padding: 0 0 95px;
  width: 100%;
  overflow-x: clip;
}

.l-contents-inner {
  padding: 0 15px;
}

@media (min-width: 769px) {
  .l-body {
    top: 100px;
  }

  .l-main {
    padding-bottom: 120px;
  }

  .l-contents-inner {
    min-width: 1024px;
    width: 100%;
    padding: 0 7%;
    margin: 0 auto;
  }

  .l-1010 {
    padding: 0 9%;
  }

  .l-1000 {
    padding: 0 10%;
  }
  .l-950{
    padding: 0 10%;
  }
  .l-900 {
    padding: 0 21%;
  }

  .l-800 {
    padding: 0 24%;
  }
}
/*
@media (min-width: 1280px){
  .l-950.l-max1100{
    max-width: 1100px;
    padding: 0;
  }
}
@media (min-width: 1920px) {
  .l-max1100 {
    max-width: 1100px;
    padding: 0;
  }
}*/

/* Heading
=====================================================================*/
.c-toppage-section-heading {
  margin: 0 0 35px;
}

.c-toppage-section-heading--eng {
  background: linear-gradient(to right, #005BAD 0%, #005BAD 12%, #1982E9 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.5rem;
  font-weight: var(--font-bold);
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
}

.c-toppage-section-heading--jp {
  color: #005BAD;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.03em;
  line-height: 1.5;
  position: relative;
}

@media (min-width: 769px) {
  .c-toppage-section-heading--eng {
    font-size: clamp(9.8rem, 9.8rem + 1vw, 11rem);
  }

  .c-toppage-section-heading--jp {
    font-size: 2.3rem;
    padding-left: 3px;
  }
}

.c-section-heading {
  margin: 0 0 30px;
  color: #005BAD;
  font-size: 2.8rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 769px) {
  .c-section-heading {
    font-size: 3.3rem;
  }
}

.c-simple-heading {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
}

@media (min-width: 769px) {
  .c-simple-heading {
    font-size: 1.5rem;
  }
}

.c-simple-heading-big {
  margin: 0 0 10px;
  font-size: 2.4rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
}

.c-blue-heading {
  margin: 0 0 20px;
  color: #005BAD;
  font-size: 2.7rem;
  font-weight: var(--font-bold);
  line-height: 1.3;
}

@media (min-width: 769px) {
  .c-blue-heading {
    margin-bottom: 50px;
    font-size: 4.5rem;
  }
}

.c-blue-center-heading {
  margin: 0 0 30px;
  color: #005BAD;
  font-size: 2.7rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
  text-align: center;
}

.c-blue-center-heading-small {
  margin: 0 0 15px;
  color: #005BAD;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
  text-align: center;
}

.c-blue-center-heading-middle {
  margin: 0 0 40px;
  color: #005BAD;
  font-size: 2.4rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}

.l-blue-center-heading-bigarea {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  margin: 0 0 30px;
}

.c-blue-center-heading-big {
  color: #005BAD;
  font-size: 3.5rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}

.c-blue-center-heading-big--txt {
  color: #005BAD;
  font-size: 1.6rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}

@media (min-width: 769px) {
  .c-blue-center-heading {
    margin-bottom: 40px;
    font-size: 3.3rem;
  }

  .c-blue-center-heading-small {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }

  .c-blue-center-heading-middle {
    margin-bottom: 50px;
    font-size: 3.3rem;
  }

  .l-blue-center-heading-bigarea {
    margin-bottom: 37px;
  }

  .c-blue-center-heading-big {
    font-size: 4.2rem;
  }
}

/* Box
=====================================================================*/
.c-box {
  padding: 20px 24px;
  border: 1px solid #DDE6EE;
}

.c-box:not(:first-child) {
  margin: 60px 0 0;
}

.c-box .c-txt {
  line-height: 1.5;
}

.c-white-box {
  padding: 20px;
  background-color: #FFFFFF;
}

/* Table
=====================================================================*/
.c-table {
  width: 100%;
  border-top: 1px solid #DFDFDF;
}

.c-table th {
  padding: 20px 15px 15px;
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
}

.c-table td {
  padding: 0 20px 20px 15px;
  border-bottom: 1px solid #DFDFDF;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .c-table th,
  .c-table td {
    display: block;
  }
}

@media (min-width: 769px) {

  .c-table th,
  .c-table td {
    padding: 16px 20px 16px 20px;
    border-bottom: 1px solid #DFDFDF;
  }

  .c-table th {
    width: 180px;
  }
}

/* Button
=====================================================================*/
.c-button {
  display: grid;
  justify-content: center;
}

.c-button>* {
  display: inline-grid;
  align-items: center;
  width: auto;
  min-width: 230px;
  height: 55px;
  padding: 0 50px 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.c-button>*::before {
  content: '';
  display: block;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, #005BAD 0%, #1780E6 50%, #005BAD 100%);
  transform: translateX(-50%);
  transition: transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.c-button--txt {
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}

.c-button-circle {
  width: 32px;
  height: 32px;
  transform: rotate(-90deg);
  transform-origin: center;
  position: absolute;
  top: calc(50% - 16px);
  right: 13px;
  pointer-events: none;
}

.c-button .st0 {
  fill: #FFFFFF;
}

.c-button .st1,
.c-button .st2 {
  fill: none;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1;
  stroke-dasharray: 75.4;
  stroke-dashoffset: 75.4;
  transition: stroke-dashoffset 0s;
}

@media (max-width: 768px) {

  .c-button .st1,
  .c-button .st2 {
    stroke-dashoffset: 0;
  }
}

@media (min-width: 769px) {
  .c-button>*:hover::before {
    transform: translateX(0);
  }

  .c-button>*:hover .st1,
  .c-button>*:hover .st2 {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.5s ease-in-out;
  }
}

/* Header
=====================================================================*/
.l-header {
  width: 100%;
  height: 60px;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

.l-body:has(.is-loading) .l-header {
  z-index: 0;
}

.c-header {
  position: relative;
  height: 60px;
}

.l-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0 0 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.c-header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-header-logo--img {
  display: block;
  width: 40px;
  height: 40px;
}

.c-header-top--txt {
  display: block;
  color: #004D98;
  font-size: 1rem;
}

.c-header-logo--txt {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
}

@media (min-width: 769px) {
  .l-header {
    height: 100px;
    min-width: 1024px;
  }

  .l-header-top {
    width: 100%;
    height: 30px;
  }

  .l-header-main {
    width: 100%;
    height: 70px;
    padding: 0 0 0 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-width: 1px 0 1px 1px;
  }

  .c-header-logo--img {
    width: 46px;
    height: 46px;
  }

  .c-header-top--txt {
    font-size: 1.2rem;
    position: absolute;
    top: 7px;
    left: 45px;
  }

  .c-navi {
    display: flex;
    justify-content: flex-end;
  }

  .c-navi-parentlist {
    display: flex;
  }

  .c-navi-parentlist>li>a {
    display: grid;
    place-content: center;
    width: auto;
    height: 100%;
    padding: 0 6px 2px;
    font-size: 1.5rem;
    line-height: 1.1;
    text-align: center;
    position: relative;
    transition: color 0.3s ease;
  }

  .c-navi-parentlist>li>a:hover {
    color: #0770D4;
  }

  .c-navi-parentlist>li>a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0068CC 0%, #1983EA 100%);
    transition: opacity 0.3s ease;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .c-navi-parentlist>li>a:hover::after {
    opacity: 1;
  }

  .c-navi-parent {
    display: grid;
    place-content: center;
    width: auto;
    height: 100%;
    padding: 0 20px 2px;
    cursor: pointer;
    position: relative;
  }

  .c-navi-parent--txt {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1.1;
    text-align: center;
  }

  .c-navi-parent--txt::after {
    content: '';
    display: block;
    width: 14px;
    height: 7px;
    background-image: url(./img/common/ico-arrow-down.svg);
    background-size: contain;
  }

  .c-navi-childlist {
    display: none;
    opacity: 0;
    position: absolute;
    top: 70px;
    left: 0;
  }

  .is-appear.c-navi-childlist {
    display: block;
    opacity: 1;
    animation: fadein 0.3s ease;
  }

  .c-navi-childlist li a {
    display: grid;
    align-items: center;
    width: auto;
    height: 53px;
    padding: 0 28px;
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
  }

  .c-navi-childlist li a:hover {
    color: #0770D4;
  }

  .c-navi-contact a {
    display: grid;
    place-content: center;
    width: 158px;
    height: 70px;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
  }

  .c-navi-contact a::before {
    content: '';
    display: block;
    width: 316px;
    height: 70px;
    background: linear-gradient(to right, #1983EA 0%, #0068CC 50%, #1983EA 100%);
    transition: transform 0.3s ease;
    transform: translateX(-158px);
    position: absolute;
    top: 0;
    left: 0;
  }

  .c-navi-contact a:hover::before {
    transform: translateX(0);
  }

  .c-navi-contact--txt {
    display: flex;
    gap: 7px;
    font-size: 1.4rem;
    font-weight: var(--font-bold);
    line-height: 1.4;
    align-items: center;
    position: relative;
  }

  .c-navi-contact--txt::before {
    content: '';
    display: block;
    width: 18px;
    height: 14px;
    background-image: url(./img/common/ico-mail.svg);
    background-size: contain;
  }
}

@media (min-width: 1280px) {
  .c-navi-parentlist>li>a {
    padding: 0 20px;
  }
}

/* SP Navi
=====================================================================*/
@media (max-width: 768px) {
  .l-spnavi-button {
    display: grid;
    justify-content: center;
    justify-items: center;
    width: 60px;
    height: 60px;
    padding: 13px 0 6px;
    background: linear-gradient(to right, #0068CC 0%, #1983EA 100%);
    cursor: pointer;
  }

  .c-spnavi-button {
    display: grid;
    gap: 6px;
    width: 26px;
    height: 21px;
    margin: 0 0 7px;
    position: relative;
  }

  .c-spnavi-button span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: transform 0.3s ease;
  }

  .is-spnav-on .c-spnavi-button span {
    position: absolute;
    top: 6px;
  }

  .is-spnav-on .c-spnavi-button span:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .is-spnav-on .c-spnavi-button span:nth-of-type(2) {
    display: none;
  }

  .is-spnav-on .c-spnavi-button span:nth-of-type(3) {
    transform: rotate(-45deg);
  }

  .c-spnavi-button--txt {
    color: #FFFFFF;
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .l-navarea {
    display: none;
    width: 100%;
    height: calc(100dvh - 60px);
    opacity: 0;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .is-spnav-show.l-navarea {
    display: block;
    background-color: #FFFFFF;
    padding: 5px;
    opacity: 1;
    animation: fadein 0.3s ease;
  }

  .l-header:has(.is-spnav-show) {
    z-index: 300;
  }

  .c-navi {
    height: 100%;
    padding: 10px 25px 60px;
    background-color: #E7E7E7;
    background-image: url(./img/common/bg-spnavi.webp);
    background-size: cover;
    overflow-y: auto;
  }

  .c-navi-childlist {
    margin: 0 0 40px;
  }

  .c-navi-parentlist li a,
  .c-navi-parent--txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #004D98;
    font-size: 1.4rem;
    font-weight: var(--font-bold);
    border-bottom: 1px solid rgba(0, 77, 152, 0.2);
  }

  .c-navi-parentlist li a::after {
    content: '';
    display: block;
    width: 23px;
    height: 6px;
    background-image: url(./img/common/ico-arrow-blue-right.svg);
    background-size: contain;
  }

  .c-navi-childlist li a {
    padding-left: 7px;
  }

  .c-navi-contact {
    margin: 0 0 20px;
  }

  .c-navi-contact a {
    display: grid;
    place-content: center;
    padding: 0 36px;
    width: 100%;
    height: 65px;
    border-radius: 33px;
    border: 1px solid #FFFFFF;
    background: linear-gradient(to right, #005BAD 0%, #1780E6 100%);
  }

  .c-navi-contact--txt {
    display: inline-block;
    padding: 0 0 0 28px;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: var(--font-bold);
    line-height: 1.8;
    text-align: center;
    position: relative;
  }

  .c-navi-contact--txt::before {
    content: '';
    display: block;
    width: 20px;
    height: 16px;
    background-image: url(./img/common/ico-mail.svg);
    background-size: contain;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .c-navi-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .c-navi-tel a {
    display: block;
    color: #005BAD;
    font-size: 2.7rem;
    line-height: 1.5;
    border-bottom: 1px solid #005BAD;
  }

  .c-navi-tel::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(./img/common/ico-tel-blue.svg);
    background-size: contain;
  }
}

@media (min-width: 769px) {
  .l-spnavi-button {
    display: none;
  }
}

/* Footer
=====================================================================*/
.c-footer {
  display: block;
  width: 100%;
  padding: 75px 35px 20px;
  background: linear-gradient(45deg, #0058AA 0%, #0067C5 78%, #0067C5 100%);
  color: #FFFFFF;
}

.l-footer-logoarea {
  display: grid;
  justify-content: center;
  justify-items: center;
  width: 100%;
  padding: 0 0 60px;
}

.c-footer-logo {
  margin: 0 0 20px;
}

.c-footer-logo a {
  display: block;
  margin: 0 0 10px;
  padding: 0 0 0 60px;
  position: relative;
}

.c-footer-logo--img {
  width: 52px;
  height: 52px;
  position: absolute;
  top: 0;
  left: 0;
}

.c-footer-logo--txt {
  display: block;
  font-size: 1.9rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
}

.c-footer-address {
  display: block;
  font-size: 1.3rem;
  line-height: 1.7;
}

.l-footer-telarea {
  display: grid;
  justify-items: center;
}

.c-footer-tel {
  display: flex;
  align-items: center;
  gap: 7px;
}

.c-footer-tel a {
  display: block;
  font-size: 2.5rem;
  line-height: 1.5;
  border-bottom: 1px solid #FFFFFF;
}

.c-footer-tel::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/ico-tel.svg);
  background-size: contain;
}

.c-footer-mail {
  margin: 0 0 30px;
}

.c-footer-mail a {
  display: grid;
  place-content: center;
  padding: 0 36px;
  width: 316px;
  height: 75px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.c-footer-mail a::before {
  content: '';
  display: block;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, #1780E6 0%, #005BAD 50%, #1780E6 100%);
  transform: translateX(-50%);
  transition: transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.c-footer-mail--txt {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  line-height: 1.8;
  position: relative;
}

.c-footer-mail--txt::before {
  content: '';
  display: block;
  width: 20px;
  height: 16px;
  background-image: url(./img/common/ico-mail.svg);
  background-size: contain;
}

.l-footer-navarea {
  padding: 0 0 65px;
}

.c-footer-navilist:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.c-footer-navilist li a {
  display: grid;
  justify-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  line-height: 1.6;
}

.l-footer-copyarea {
  display: grid;
  justify-content: center;
}

.c-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .c-footer {
    padding: 87px 7% 80px;
  }

  .l-footer-mainarea {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }

  .l-footer-logoarea {
    display: grid;
    justify-content: start;
    justify-items: start;
    padding: 0;
    margin: 0;
  }

  .c-footer-logo {
    margin: 0 0 55px;
  }

  .c-footer-logo a {
    display: block;
    gap: 11px;
    margin: 0;
    padding: 0;
  }

  .c-footer-logo--img {
    display: inline-grid;
    position: relative;
    margin: 0 0 10px;
  }

  .c-footer-logo--txt {
    display: inline-grid;
    font-size: 1.7rem;
    font-weight: var(--font-bold);
  }

  .c-footer-address {
    padding: 0 0 0 14px;
    font-size: 1.4rem;
  }

  .l-footer-telarea {
    justify-items: start;
  }

  .c-footer-tel {
    order: 1;
    margin: 0 0 17px;
    padding: 0 0 0 14px;
  }

  .c-footer-tel a {
    pointer-events: none;
  }

  .c-footer-mail {
    order: 2;
    margin: 0;
  }

  .c-footer-mail a:hover::before {
    transform: translateX(0);
  }

  .c-footer-navilist {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
  }

  .c-footer-navilist {
    margin: 0 0 20px;
  }

  .c-footer-navilist:first-child {
    border-top: none;
  }

  .c-footer-navilist li a {
    display: block;
    padding: 0;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s;
    white-space: nowrap;
  }

  .c-footer-navilist li a:hover {
    border-bottom-color: #FFFFFF;
  }

  .l-footer-copyarea {
    display: grid;
    justify-content: end;
  }
}

/* Recruit Block
=====================================================================*/
.c-aside-recruit a {
  display: block;
  padding: 50px 25px 52px;
  background-image: url(./img/common/bg-square-sp.webp);
  background-size: cover;
  overflow: hidden;
}

.c-aside-recruit-heading {
  margin: 0 0 56px;
}

.c-aside-recruit-heading--eng,
.c-aside-recruit-heading--jp,
.c-aside-recruit-heading--txt,
.c-aside-recruit-button--txt {
  display: table;
  background: linear-gradient(to right, #005BAD 0%, #005BAD 12%, #1982E9 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--font-bold);
  position: relative;
}

.c-aside-recruit-heading--eng {
  margin: 0 0 10px;
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.c-aside-recruit-heading--jp {
  margin: 0 0 13px;
  font-size: 2.7rem;
  line-height: 1.4;
  white-space: nowrap;
}

.c-aside-recruit-heading--txt {
  font-size: 1.3rem;
  line-height: 2;
}

.l-aside-recruit-buttonarea {
  display: flex;
  gap: 15px;
  align-items: center;
}

.c-aside-recruit-button--txt {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  position: relative;
}

.c-aside-recruit-button {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid transparent;
  border-color: transparent;
  background-color: #0161BB;
  transition: border-color 1s ease;
  position: relative;
}

.c-aside-recruit-button::after {
  content: '';
  display: block;
  width: 24px;
  height: 6px;
  background-image: url(./img/common/ico-arrow-white-right.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 10px);
}

@media (min-width: 769px) {
  .c-aside-recruit a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 85px 10% 105px;
    min-width: 1024px;
    background-image: url(./img/common/bg-square-pc.webp);
    background-size: cover;
    position: relative;
  }

  .c-aside-recruit-heading {
    margin: 0;
    position: relative;
    z-index: 10;
  }

  .c-aside-recruit-heading--eng {
    margin: 0;
    font-size: clamp(7.8rem, 7.8rem + 1vw, 9rem);
  }

  .c-aside-recruit-heading--jp {
    margin-bottom: 24px;
    font-size: clamp(4.2rem, 4.2rem + 1.5vw, 5rem);
  }

  .l-aside-recruit-buttonarea {
    flex-shrink: 0;
    position: relative;
  }

  .l-aside-recruit-buttonarea::before {
    content: '';
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    border: 1px solid transparent;
    background-color: #0056A7;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    right: 0;
  }

  .c-aside-recruit a:hover .l-aside-recruit-buttonarea::before {
    transform: scale(50.0);
    transform-origin: center center;
    transition: transform 1s ease;
  }

  .c-aside-recruit-heading--txt {
    font-size: clamp(1.8rem, 1.8rem + 0.17vw, 2rem);
  }

  .c-aside-recruit-button--txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.1rem;
  }

  .c-aside-recruit a:hover .c-aside-recruit-heading--eng {
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 12%, #63A9EE 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadein 1s ease;
  }

  .c-aside-recruit a:hover .c-aside-recruit-heading--jp,
  .c-aside-recruit a:hover .c-aside-recruit-heading--txt,
  .c-aside-recruit a:hover .c-aside-recruit-button--txt {
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadein 1s ease;
  }

  .c-aside-recruit-button {
    width: 110px;
    height: 110px;
  }

  .c-aside-recruit a:hover .c-aside-recruit-button {
    border-color: #FFFFFF;
  }

  .c-aside-recruit-button::after {
    width: 42px;
    height: 10px;
    left: calc(50% - 16px);
    top: calc(50% - 5px);
  }
}

/* About Us Block
=====================================================================*/
.l-aside-aboutusarea {
  width: 100%;
  overflow: hidden;
}

.c-aside-aboutus {
  width: 100%;
  padding: 60px 15px 70px;
  color: #FFFFFF;
  position: relative;
}

.c-aside-aboutus::before {
  content: '';
  display: block;
  width: 800vw;
  height: 800vw;
  border-radius: 100%;
  background: linear-gradient(50deg, #0058AA 0%, #0067C5 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-aside-aboutus-heading {
  display: grid;
  justify-content: center;
  justify-items: center;
  margin: 0 0 45px;
  position: relative;
}

.c-aside-aboutus-heading--eng {
  background: linear-gradient(to right, #1982E9 0%, #55ABFF 88%, #55ABFF 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--font-bold);
  font-size: 55px;
  line-height: 1.5;
}

.c-aside-aboutus-heading--jp {
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.l-aside-aboutus-mainarea {
  position: relative;
}

.c-aside-aboutus-main-heading {
  margin: 0 0 25px;
}

.c-aside-aboutus-main-heading .u-marker {
  margin: 0 0 5px;
}

.c-aside-aboutus-main-heading .u-marker::before {
  background-color: #FFFFFF;
}

.c-aside-aboutus-main-heading .u-marker--txt {
  color: #005BAD;
  font-size: calc(20 * 100 / 375 * 1vw);
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding: 2px 10px;
  white-space: nowrap;
}

.c-aside-aboutus--txt {
  margin: 0 0 40px;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .c-aside-aboutus {
    width: 100%;
    padding: 106px 0 130px;
  }

  .c-aside-aboutus-heading {
    margin-bottom: 75px;
  }

  .c-aside-aboutus-heading--eng {
    font-size: clamp(9.8rem, 9.8rem + 1vw, 11rem);
    line-height: 1.4;
  }

  .c-aside-aboutus-heading--jp {
    font-size: 2.3rem;
  }

  .l-aside-aboutus-mainarea {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 35px;
  }

  .c-aside-aboutus-main-heading {
    margin: 0;
  }

  .c-aside-aboutus-main-heading .u-marker {
    margin-bottom: 6px;
  }

  .c-aside-aboutus-main-heading .u-marker--txt {
    margin-bottom: calc(35 * 100 / 1366 * 1vw);
    font-size: calc(30 * 100 / 1366 * 1vw);
    font-size: max(1.4rem, (30 * 100 / 1280 * 1vw));
    padding: 2px 10px;
  }

  .c-aside-aboutus-button {
    justify-content: start;
  }
}

/* Aside Contact
=====================================================================*/
.c-aside-contact a {
  display: grid;
  place-content: center;
  place-items: center;
  height: 291px;
  margin: 0 0 5px;
  padding: 52px 0;
  background: linear-gradient(to bottom, #1780E6 55%, rgba(23, 128, 230, 0.8) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c-aside-contact a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.l-aside-contact-txtarea {
  margin: 0 0 27px;
  text-align: center;
  color: #FFFFFF;
  font-weight: var(--font-bold);
  position: relative;
  z-index: 20;
}

.c-aside-contact--eng {
  margin: 0 0 5px;
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.c-aside-contact--jp {
  margin: 0 0 15px;
  font-size: 1.4rem;
}

.l-aside-contact-buttonarea {
  position: relative;
}

.c-aside-contact-button {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  border-color: transparent;
  background-color: #0161BB;
  border: 1px solid #1780E6;
  position: relative;
  z-index: 10;
}

.c-aside-contact-button::after {
  content: '';
  display: block;
  width: 24px;
  height: 6px;
  background-image: url(./img/common/ico-arrow-white-right.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 10px);
  z-index: 8;
}

@media (min-width: 769px) {
  .c-aside-contact a {
    height: 446px;
    padding: 80px 0 73px;
  }

  .l-aside-contact-txtarea {
    margin-bottom: 40px;
  }

  .c-aside-contact--eng {
    font-size: 7.8rem;
    line-height: 1.4;
  }

  .c-aside-contact--jp {
    font-size: 2.3rem;
  }

  .l-aside-contact-buttonarea {
    width: 110px;
    height: 110px;
    position: relative;
  }

  .l-aside-contact-buttonarea::before {
    content: '';
    display: block;
    width: 110px;
    height: 110px;
    top: calc(50% - 55px);
    left: calc(50% - 55px);
    border-radius: 100%;
    background-color: #0161BB;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }

  .c-aside-contact-button {
    width: 110px;
    height: 110px;
  }

  .c-aside-contact a:hover .l-aside-contact-buttonarea::before {
    transform: scale(50.0);
    transition: transform 1s ease;
  }

  .c-aside-contact-button::after {
    width: 42px;
    height: 10px;
    top: calc(50% - 6px);
    left: calc(50% - 16px);
  }
}

/* Toppage
=====================================================================*/
.l-toppage-main {
  width: 100%;
  overflow: hidden;
}

.l-body:has(.is-loaded) {
  position: relative;
  top: 60px;
  left: 0;
}

.l-body:has(.is-loading) {
  position: fixed;
  top: 60px;
  left: 0;
}

@media (min-width: 769px) {
  .l-body:has(.is-loaded) {
    position: relative;
    top: 100px;
    left: 0;
  }

  .l-body:has(.is-loading) {
    position: fixed;
    top: 100px;
    left: 0;
  }
}

.l-toppage-loadingarea {
  width: 100%;
  height: 100vh;
  opacity: 1;
  transition: opacity 2s ease;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 160;
}

.is-loading-end.l-toppage-loadingarea {
  animation-name: fadeout;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: none;
}

.is-loaded.l-toppage-loadingarea {
  display: none;
}

.c-toppage-loading--bg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media (min-width: 769px) {
  .l-toppage-loading-txtarea {
    top: 345px;
  }
}

.l-toppage-firstview {
  position: relative;
}

.l-mv-wrap {
  width: 100%;
  padding: 5px;
  overflow: hidden;
}

.c-toppage-mv {
  width: 100%;
  height: calc(100dvh - 70px);
  overflow: hidden;
}

.c-mv-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.c-mv-item--img {
  width: 100%;
  height: 100%;
  position: relative;
}
/*
.c-mv-item--img::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(./img/toppage/img-mv-deco.webp);
  opacity: 0.5;
  background-size: cover;
  background-position: bottom right;
  mix-blend-mode: overlay;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
*/
@keyframes mvslide-on {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

.c-mv-item::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0053A2;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

.swiper-slide-active .c-mv-item::after {
  opacity: 1;
  animation-name: mvslide-on;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.c-mv-item--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-toppage-txtarea {
  width: 100%;
  animation-name: fadein;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  position: absolute;
  top: calc(50% - 200px);
  left: 0;
  z-index: 180;
}

.c-toppage-mv-txt {
  display: table;
  padding: 0 0 calc(16 * 100 / 375 * 1vw) calc(38 * 100 / 375 * 1vw);
  position: relative;
}

.c-toppage-mv-txt--small {
  display: table;
  margin: 0 0 calc(7 * 100 / 375 * 1vw);
  color: #FFFFFF;
  font-size: calc(18 * 100 / 375 * 1vw);
  font-weight: var(--font-bold);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.c-toppage-mv-txt--big {
  display: table;
  color: #FFFFFF;
  font-size: calc(41 * 100 / 375 * 1vw);
  font-weight: var(--font-bold);
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: calc(8 * 100 / 375 * 1vw);
}

.u-mv-marker {
  display: inline-block;
  position: relative;
}

.u-mv-marker::before {
  content: '';
  display: block;
  width: calc(100% + 4vw);
  height: 88%;
  background: linear-gradient(to right, #0063BD 0%, #1286F6 100%);
  padding: 0 30px;
  transform: skew(-15deg) scaleX(0.0);
  transition: transform 1s ease;
  transform-origin: top left;
  position: absolute;
  top: calc(4 * 100 / 375 * 1vw);
  left: 0px;
}

.u-mv-marker-delay-1::before {
  transition-delay: 0.8s;
}

.u-mv-marker-delay-2::before {
  transition-delay: 1.6s;
}

.u-mv-marker-delay-3 {
  transition-delay: 2.4s;
}

.l-body:has(.is-loaded) .u-mv-marker::before {
  transform: skew(-15deg) scaleX(1.0);
}

.u-mv-marker:has(.u-kagi--txt)::before {
  width: calc(100% + 5vw);
}

.u-mv-marker--txt {
  position: relative;
}

.u-kagi--txt {
  margin-left: calc(-23 * 100 / 375 * 1vw);
  margin-right: calc(-23 * 100 / 375 * 1vw);
  white-space: nowrap;
}

.c-toppage-mv-txt--bar {
  display: block;
  width: 100vw;
  height: calc(7 * 100 / 375 * 1vw);
  background-color: #FFFFFF;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

@keyframes mvbar {
  0% {
    transform: scaleX(0.0);
    transform-origin: top left;
  }

  50% {
    transform: scaleX(0.0);
    transform-origin: top left;
  }

  100% {
    transform: scaleX(1.0);
    transform-origin: top left;
  }
}

.l-body:has(.is-loading) .c-toppage-mv-txt--bar {
  z-index: 200;
}

.l-body:has(.is-loading-end) .c-toppage-mv-txt--bar {
  transform: scaleX(0.0);
}

.l-body:has(.is-loaded) .c-toppage-mv-txt--bar {
  animation: mvbar 3s ease;
  transform: scaleX(1.0);
  width: 100%;
}

.c-toppage-mv-txt--bar::after {
  content: '';
  display: block;
  width: 200%;
  height: calc(7 * 100 / 375 * 1vw);
  background: linear-gradient(to right, #FFFFFF 0%, #53AEFF 31%, #036BCF 50%, #53AEFF 69%, #FFFFFF 100%);
  position: absolute;
  bottom: 0;
  right: 0;
}

@keyframes scrollbar {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.l-body:has(.is-loading) .c-toppage-mv-txt--bar::after {
  animation: scrollbar 3s linear infinite;
}

.l-body:has(.is-loading-end) .c-toppage-mv-txt--bar::after,
.l-body:has(.is-loaded) .c-toppage-mv-txt--bar::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0053A2 0%, #036BCF 20%, #53AEFF 49%, #FFFFFF 76%);
  animation: none;
}

.l-top-scrollnavarea {
  position: absolute;
  right: -15px;
  bottom: 15px;
  z-index: 10;
}

.c-top-scrollnav {
  transform: rotate(90deg);
}

.c-top-scrollnav--txt {
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.5;
}

.c-top-scrollnav--bar {
  display: block;
  width: 98px;
  height: 3px;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.c-top-scrollnav--bar::after {
  content: '';
  display: block;
  width: 196px;
  height: 3px;
  background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 32%, #1982E9 50%, #FFFFFF 68%, #FFFFFF 100%);
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollbar 3s linear infinite;
}

@media (min-width: 769px) {
  .c-toppage-mv {
    height: calc(100dvh - 110px);
  }

  .c-mv-item::before {
    width: 376px;
    height: 1334px;
  }

  .c-mv-item--img {
    width: 100%;
    height: 100%;
  }

  .c-mv-item--img::after {}

  .l-toppage-txtarea {
    top: calc(50% - 175px);
  }

  .c-toppage-mv-txt {
    padding: 0 0 calc(27 * 100 / 1366 * 1vw) calc(61 * 100 / 1366 * 1vw);
  }

  .c-toppage-mv-txt--small {
    margin-bottom: calc(6 * 100 / 1366 * 1vw);
    font-size: calc(41 * 100 / 1366 * 1vw);
    font-size: clamp(1.4rem, (41 * 100 / 1280 * 1vw), 5.0rem);
    letter-spacing: 0.03en;
  }

  .c-toppage-mv-txt--big {
    font-size: calc(59 * 100 / 1366 * 1vw);
    font-size: clamp(1.4rem, (59 * 100 / 1280 * 1vw), 8.0rem);
    line-height: 1.5;
    margin-bottom: calc(8 * 100 / 1280 * 1vw);
  }

  .c-toppage-mv-txt--big .u-marker::before {
    width: calc(100% + 1vw);
    transform: scaleX(0.0) skew(-25deg);
  }

  .c-toppage-mv-txt--big .is-marker-on.u-marker::before {
    transform: scaleX(1.0) skew(-25deg);
  }

  .u-kagi--txt {
    margin-left: calc(-23 * 100 / 1280 * 1vw);
    margin-right: calc(-23 * 100 / 1280 * 1vw);
    white-space: nowrap;
  }

  .u-mv-marker::before {
    top: calc(8 * 100 / 1280 * 1vw);
  }

  .u-mv-marker:has(.u-kagi--txt)::before {
    width: calc(100% + 1vw);
  }

  .c-toppage-mv-txt--bar {
    height: calc(7 * 100 / 1280 * 1vw);
  }

  .c-toppage-mv-txt--bar::after{
    height: calc(7 * 100 / 1280 * 1vw);
  }

  .l-top-scrollnavarea {
    right: -20px;
  }

  .c-top-scrollnav--txt {
    font-size: 1.7rem;
  }

  .c-top-scrollnav--bar {
    display: block;
    width: 145px;
    height: 3px;
  }

  .c-top-scrollnav--bar::after {
    width: 290px;
    height: calc(7 * 100 / 1280 * 1vw);
  }
}

.l-toppage-firstarea {
  padding: 0 5px;
}

.c-toppage-first {
  display: grid;
  justify-content: center;
  justify-items: center;
  width: 100%;
  padding: 68px 0 69px;
  background-color: #E7E7E7;
  position: relative;
}

.c-toppage-first::before,
.c-toppage-first::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-toppage-first::before {
  background-image: url(./img/toppage/bg-firstarea-sp.webp);
  background-size: cover;
  opacity: 0.3;
}

.c-toppage-first::after {
  background: linear-gradient(to bottom, #FFFFFF 0%, #D2EBFF 100%);
  opacity: 0.4;
}

.l-toppage-first-inner {
  width: 100%;
  padding: 0 10px;
  position: relative;
  z-index: 10;
}

.c-toppage-first-heading {
  margin: 0 0 20px;
  color: #005BAD;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
}

.c-toppage-first--txt {
  margin: 0 0 36px;
}

.c-toppage-first--txt p {
  text-align: center;
}

.c-toppage-first--button {
  margin: 0 0 50px;
}

.c-toppage-first--img{
  position: relative;
}

.c-toppage-first--img img{
  width: 100%;
  height: auto;
  transform: scale(0.9);
}

.is-zoom.c-toppage-first--img img{
  transform: scale(1.0);
  transition: transform 2s ease;
}

@media (min-width: 769px) {
  .c-toppage-first {
    width: 100%;
    padding: 95px 34px 100px;
  }

  .c-toppage-first::before {
    background-image: url(./img/toppage/bg-firstarea-pc.webp);
    background-size: contain;
    background-repeat: repeat;
  }

  .l-toppage-first-inner {
    width: 100%;
    padding: 0 38px;
  }

  .c-toppage-first-heading {
    font-size: 3.3rem;
  }

  .c-toppage-first--txt {
    margin-bottom: 35px;
  }

  .c-toppage-first--button {
    margin-bottom: 70px;
  }

  .c-toppage-first--img {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .c-toppage-first--img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.c-toppage-works {
  padding: 48px 0 80px;
}

.c-toppage-works--txt {
  margin: 0 0 35px;
}

.c-toppage-works-list {
  margin: 0 0 45px;
}


@media (max-width: 768px) {
  .c-toppage-works-list li:nth-child(4),
  .c-toppage-works-list li:nth-child(5),
  .c-toppage-works-list li:nth-child(6) {
    display: none;
  }
}
@media (min-width: 769px) {
  .c-toppage-works {
    padding: 79px 0 120px;
  }

  .c-toppage-works-list {
    margin-bottom: 65px;
  }
}

/* Contents Header
=====================================================================*/
.l-contents-headerarea {
  padding: 5px 5px 10px;
}

.c-contents-header {
  display: grid;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 200px;
  padding: 0 11px;
  background-image: url(./img/common/bg-contents-header-01-sp.webp);
  background-size: cover;
}

.c-contents-heading--eng {
  background: linear-gradient(to right, #005BAD 0%, #005BAD 12%, #1982E9 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.8rem;
  font-weight: var(--font-bold);
  letter-spacing: 0;
  line-height: 1.4;
  position: relative;
}

.c-contents-heading--jp {
  margin-bottom: 20px;
  color: #005BAD;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.03em;
  line-height: 1.5;
  position: relative;
}

@media (min-width: 769px) {
  .l-contents-headerarea {
    padding-bottom: 15px;
  }

  .c-contents-header {
    height: 298px;
    padding: 0 7%;
    background-image: url(./img/common/bg-contents-header-01-pc.webp);
  }

  .c-contents-heading--eng {
    font-size: clamp(6.8rem, 6.8rem + 1vw, 8rem);
  }

  .c-contents-heading--jp {
    font-size: 2.3rem;
  }
}

/* Breadscrumb
=====================================================================*/
.c-breadscrumb {
  width: 100%;
  margin: 0 0 46px;
}

.c-breadscrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 15px;
  gap: 5px;
}

.c-breadscrumb-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0055A1;
  font-size: 1.2rem;
  font-weight: var(--font-bold);
  line-height: 2.2;
}

.c-breadscrumb-list li:nth-of-type(n+2)::before {
  content: '>';
  display: block;
}

.c-breadscrumb-list li a {
  color: rgba(0, 85, 161, 0.5);
  text-decoration: underline;
}

@media (min-width: 769px) {
  .c-breadscrumb {
    margin: 0 0 60px;
  }

  .c-breadscrumb-list {
    padding: 0 7%;
  }
}

/* Form
=====================================================================*/
.l-formarea {
  margin: 46px 0 0;
  padding: 0 5px 5px;
}

.c-form-wrap {
  padding: 50px 0 85px;
  background-color: #EAF0F5;
}

.c-form-table {
  margin: 0 0 60px;
}

.c-form-table th {
  display: block;
  margin: 0 0 7px;
  text-align: left;
  font-size: 1.4rem;
  font-weight: var(--font-medium);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.c-form-table td {
  display: block;
}

.c-form-table tr:not(:last-of-type) td {
  margin: 0 0 30px;
}

.u-required {
  display: inline-grid;
  place-content: center;
  width: 34px;
  height: 20px;
  margin: 0 5px 0 10px;
  background-color: #D30000;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
}

.c-txt .u-required {
  margin-left: 0;
}

.c-form select {
  appearance: none;
  background-color: #FFFFFF;
  padding: 14px 17px 15px 15px;
  width: 100%;
  border: 1px solid #DFDFDF;
  color: #000000;
  font-size: 1.4rem;
  font-weight: var(font-medium);
}

.c-form-select {
  position: relative;
}

.c-form-select::after {
  content: '';
  display: block;
  pointer-events: none;
  width: 14px;
  height: 7px;
  background-image: url(./img/common/ico-arrow-down.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 2px);
  right: 17px;
}

.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=number],
.c-form textarea {
  background-color: #FFFFFF;
  padding: 14px 17px 15px 15px;
  width: 100%;
  border: 1px solid #DFDFDF;
  color: #000000;
  font-size: 1.4rem;
  font-weight: var(font-medium);
  line-height: 1.5;
  outline: none;
}

.c-form input[type="number"]::-webkit-outer-spin-button,
.c-form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

.c-form input[type="number"] {
  -moz-appearance: textfield;
}

.c-form-text {
  display: block;
  width: 100%;
}

.c-form-text:not(:last-child) {
  margin: 0 0 10px;
}

.c-form-prefectures {
  display: block;
  width: 228px;
  margin: 0 0 10px;
}

.c-form textarea {
  height: auto;
  min-height: 186px;
  resize: vertical;
}

.c-form input::placeholder,
.c-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.c-form-num-zip {
  display: block;
  margin: 0 0 15px;
  width: 245px;
}

.c-form-zip-button button {
  display: grid;
  place-content: center;
  width: 244px;
  height: 50px;
  background-color: #005BAD;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
}

.c-form input[type=checkbox] {
  display: none;
}

.c-form .mwform-checkbox-field {
  display: block;
  position: relative;
}

.c-form .mwform-checkbox-field {
  margin-bottom: 50px;
}

.c-form .mwform-checkbox-field-text,
.wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: var(--font-medium);
  letter-spacing: 0.05em;
  line-height: 1.8;
  white-space: nowrap;
  cursor: pointer;
}

.c-form .mwform-checkbox-field-text::before,
.wpcf7-list-item-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: #FFFFFF;
  border: 1px solid #B1B1B1;
  padding: 0;
  cursor: pointer;
}

.c-form .mwform-checkbox-field-text::after,
.wpcf7-list-item-label::after {
  content: '';
  display: none;
  width: 8px;
  height: 14px;
  border: 3px solid #005BAD;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  left: 6px;
}

.c-form input[type=checkbox]:checked+.mwform-checkbox-field-text::after,
.c-form input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  display: block;
}

.c-privacy-box {
  width: 100%;
  height: 522px;
  padding: 30px 9px 30px 24px;
  margin: 0 0 20px;
  background-color: #FFFFFF;
}

.l-privacy-box-inner {
  width: 100%;
  height: 100%;
  padding: 0 15px 0 0;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #D9D9D9 #FFFFFF;
}

.l-privacy-box-inner::-webkit-scrollbar {
  width: 5px;
}

.l-privacy-box-inner::-webkit-scrollbar-track {
  width: 5px;
}

.l-privacy-box-inner::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: #D9D9D9;
}
.form-submit {
  padding: 0;
}
.c-form .btn-submit {
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: transparent;
  position: relative;
}
.c-button:has(:disabled)>*::before,
.c-form .btn-submit:disabled {
  background: #999 !important;
  cursor: not-allowed;
}
.c-button:has(:disabled) .c-button-circle {
  display: none !important;
}

.c-form .recaptcha_policy {
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0.3;
}

.c-thanks-box {
  margin: 60px 0 0;
}
.wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-spinner {
  display: none !important;
}

@media (min-width: 769px) {
  .l-formarea {
    margin: 70px 0 0;
  }

  .c-form-wrap {
    display: grid;
    align-items: center;
    padding: 80px 0 115px;
  }

  .c-form-table {
    width: 100%;
  }

  .c-form-table th {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .c-form-table tr:not(:last-of-type) td {
    margin-bottom: 40px;
  }

  .c-form-select {
    display: block;
    width: 483px;
    position: relative;
  }

  .c-form-num-zip {
    margin: 0;
  }

  .c-form-table td:has(.c-form-num-zip) {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .c-form-zip-button button {
    width: 264px;
  }

  .wpcf7-list-item-label,
  .c-form .mwform-checkbox-field-text {
    font-size: 1.5rem;
  }

  .c-privacy-box {
    height: 322px;
    margin-bottom: 24px;
  }

  .l-privacy-box-inner {
    padding-right: 25px;
  }
}


/* 404
=====================================================================*/
.c-404-contents-header {
  display: grid;
  justify-items: center;
}

.c-404--txt {
  margin: 0 0 30px;
}

/* Works
=====================================================================*/
.l-works-listarea {
  margin: 0 0 60px;
}

.c-works-list {
  display: grid;
  gap: 45px;
  border: 0px solid transparent;
  /* for bug */
}

.c-works-item--img {
  display: block;
  margin: 0 0 10px;
  position: relative;
}

.c-works-item--img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.c-works-item--img::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 35px;
  border-color: transparent transparent transparent #1780E6;
  transform: rotate(45deg);
  position: absolute;
  bottom: -22px;
  right: -5px;
}

.c-works-item--img::after {
  content: '';
  display: block;
  width: 40px;
  height: 9px;
  background-image: url(./img/common/ico-arrow-white-right.svg);
  background-size: contain;
  position: absolute;
  bottom: 25px;
  right: 10px;
}

.c-works-item--title {
  margin: 0 0 7px;
  color: #005BAD;
  font-size: 1.5rem;
  line-height: 1.5;
}

.l-works-item-categoryarea {
  display: block;
}

.c-works-item-category-list {
  display: inline;
}

.c-works-item-category-list li {
  display: inline;
  color: #555;
  font-size: 1.4rem;
  line-height: 1.5;
}

.c-works-item-category-list li:nth-of-type(n+2)::before {
  content: '、';
}

.c-works-list-category--region {
  color: #555;
  font-size: 1.4rem;
  line-height: 1.5;
  display: inline-block;
}

.c-works-list-category--region::before {
  content: '/';
  padding: 0 14px;
}

@media (min-width: 769px) {
  .l-works-listarea {
    margin-bottom: 80px;
  }

  .c-works-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px calc(25 * 100 / 1280 * 1vw);
  }

  .c-works-item--img {
    margin-bottom: 15px;
  }

  .c-works-item--img img {
    width: 100%;
  }

  .c-works-item--img::before {
    content: 'View more';
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    border-width: 0;
    transform: rotate(0deg);
    background-color: rgba(25, 130, 233, 0.6);
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: var(--font-bold);
    line-height: 1.2;
    letter-spacing: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    bottom: 0;
    right: 0;
  }

  a:hover .c-works-item--img::before {
    opacity: 1;
  }
}

/*Narrow down
=====================================================================*/
.c-works-select {
  margin: 30px 0 60px;
}

.c-works-button {
  display: grid;
  place-content: center;
  width: 100%;
  height: 40px;
}

.l-works-buttonarea {
  position: relative;
}

.l-works-buttonarea::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0055A1;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-works-button {
  background-color: #FFFFFF;
  color: #0055A1;
  border: 1px solid rgba(0, 85, 161, 0.4);
  border-bottom-width: 0;
  transition: background-color 0.3s ease;
}

.c-works-button.is-active {
  background-color: #0055A1;
  color: #FFFFFF;
  border: 1px solid #0055A1;
  border-bottom-width: 0;
}

.c-works-button--txt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: var(--font-bold);
}

.c-works-button--txt::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-size: contain;
}

.c-works-button .c-works-button--txt::before {
  background: url(./img/common/ico-search-blue.svg);
}

.c-works-button.is-active .c-works-button--txt::before {
  background: url(./img/common/ico-search-white.svg);
}

.c-works-select-content {
  padding: 15px;
  background-color: #DCEBF7;
}

.c-works-select-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-works-select-list li {
  display: grid;
  height: 35px;
  align-items: center;
  padding: 0 15px;
  background-color: #FFFFFF;
  border-radius: 30px;
  font-size: 1.3rem;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-works-select-list li:not(.is-active) {
  padding-right: 37px;
}

.c-works-select-list li:not(.is-active)::after {
  content: '';
  display: block;
  width: 6px;
  height: 8px;
  background: url(./img/common/ico-right.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 4px);
  right: 18px;
}

.c-works-select-list li.is-active {
  background-color: #005BAD;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.c-works-select-list li.is-active::after {
  background-color: #FFFFFF;
}

@media (min-width: 769px) {
  .c-works-select {
    margin: 45px 0 90px;
  }

  .c-works-select .l-tab-buttonarea {
    display: flex;
    justify-content: flex-start;
  }

  .c-works-button {
    width: auto;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .c-works-select-list li:hover {
    background-color: #005BAD;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
  }

  .c-works-select-list li:hover::after {
    background-color: #FFFFFF;
  }
}

/* Pageatopm
=====================================================================*/
.c-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-pagenation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.c-pagenation .page,
.c-pagenation .current,
.c-pagenation .previouspostslink,
.c-pagenation .nextpostslink {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  background-color: #DCEBF7;
  color: #005BAD;
  font-size: 1.4rem;
  font-weight: var(--font-medium);
  line-height: 1.6;
  position: relative;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.c-pagenation .current {
  background-color: #005BAD;
  color: #FFFFFF;
}

.c-pagenation .previouspostslink::after,
.c-pagenation .nextpostslink::after {
  content: '';
  display: block;
  width: 20px;
  height: 10px;
  background-size: contain;
  margin-top: 5px;
  position: relative;
  z-index: 5;
}

.c-pagenation .previouspostslink::after {
  background-image: url(./img/common/ico-arrow-blue-left.svg);
}

.c-pagenation .nextpostslink::after {
  background-image: url(./img/common/ico-arrow-blue-right.svg);
}

@media (min-width: 769px) {

  .c-pagenation .page:hover,
  .c-pagenation .previouspostslink:hover,
  .c-pagenation .nextpostslink:hover {
    background-color: #005BAD;
    color: #FFFFFF;
  }

  .c-pagenation .previouspostslink:hover::after {
    background-image: url(./img/common/ico-arrow-white-left.svg);
  }

  .c-pagenation .nextpostslink:hover::after {
    background-image: url(./img/common/ico-arrow-white-right.svg);
  }
}



/* Works Post
=====================================================================*/
.c-works {
  padding: 0 0 35px;
  margin: 0 0 40px;
  border-bottom: 3px solid #E8F0F5;
}

.c-works-h1 {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 3px solid #E8F0F5;
  font-size: 2.3rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
}

.c-works-data {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 40px;
}

.c-works-date {
  color: rgba(0, 85, 161, 0.5);
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  line-height: 1;
}

.c-works-category-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.c-works-category-list li {
  display: grid;
  place-content: center;
  height: 21px;
  padding: 0 10px;
  background-color: #005BAD;
  border-radius: 30px;
  color: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1;
}

.c-works-mainimg {
  margin: 0 0 40px;
}

.c-works-detail--heading {
  display: flex;
  align-items: top;
  gap: 6px;
  margin: 0 0 20px;
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
}

.c-works-detail--heading::before {
  content: '';
  display: block;
  width: 15px;
  height: 20px;
  margin-top: 8px;
  object-fit: contain;
  background-image: url(./img/common/ico-slash.svg);
  background-size: contain;
}

.c-works-detail-table {
  width: 100%;
  margin: 0 0 40px;
  border-top: 1px solid #DFDFDF;
}

.c-works-detail-table th,
.c-works-detail-table td {
  padding: 15px 0;
  border-bottom: 1px solid #DFDFDF;
  font-size: 1.4rem;
  line-height: 1.4;
}

.c-works-detail-table th {
  width: 120px;
  padding-left: 25px;
  text-align: left;
  color: #005BAD;
  font-weight: var(--font-medium);
  vertical-align: top;
}

.c-works-section:not(:last-child) {
  margin-bottom: 50px;
}

.c-works-h2 {
  margin: 0 0 15px;
  color: #005BAD;
  font-size: 2rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
}

.c-works-h3 {
  padding: 0 0 0 13px;
  margin: 0 0 15px;
  font-size: 1.6rem;
  font-weight: var(--font-medium);
  letter-spacing: 0.08em;
  line-height: 1.4;
  position: relative;
}

.c-works-h3::before {
  content: '';
  display: block;
  width: 3px;
  height: 100%;
  background-color: #005BAD;
  position: absolute;
  top: 0;
  left: 0;
}

.c-works-txt {
  display: grid;
  gap: 1.4rem;
}

.c-works-txt:not(:last-child) {
  margin: 0 0 20px;
}

.c-works-txt p {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.c-works-txt a {
  display: inline-block;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.l-works-imgleft,
.l-works-imgright {
  display: grid;
  gap: 20px;
}

.c-works-txt-list li {
  display: flex;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.c-works-txt-list li::before {
  content: '・';
}

.c-works-beforeafter {
  display: grid;
  gap: 57px;
}

.c-works-beforeafter:not(:last-child) {
  margin: 0 0 40px;
}
.c-works-beforeafter img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.c-works-before,
.c-works-partway {
  position: relative;
}

.c-works-before::after,
.c-works-partway::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17.3px 10px 0 10px;
  border-color: #005BAD transparent transparent transparent;
  position: absolute;
  top: calc(100% + 18px);
  left: calc(50% - 10px);
}

.c-works-caption {
  margin: 10px 0 0;
  display: grid;
  align-items: center;
  padding: 7px;
  color: #FFFFFF;
  text-align: center;
  font-weight: var(--font-bold);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.c-works-before .c-works-caption {
  background-color: #878787;
}

.c-works-after .c-works-caption {
  background-color: #005BAD;
}

.c-works-partway .c-works-caption {
  background-color: #4D5257;
}

.c-works-button {
  display: grid;
  justify-content: center;
}

.c-works-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.c-works-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 769px) {
  .c-works {
    padding: 0 0 80px;
    margin: 0 0 40px;
    border-bottom: 3px solid #E8F0F5;
  }

  .c-works-data {
    gap: 30px;
  }

  .c-works-category-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .c-works-mainimg {
    margin: 0 0 40px;
  }

  .c-works-detail--heading {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .c-works-detail--heading::before {
    margin-top: 3px;
  }

  .c-works-detail-table {
    margin-bottom: 80px;
    border-top: 1px solid #DFDFDF;;
  }

  .c-works-detail-table th {
    width: 150px;
  }

  .c-works-section:not(:last-child) {
    margin-bottom: 80px;
  }

  .c-works-h3 {
    padding: 0 0 0 13px;
    margin: 0 0 15px;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
    position: relative;
  }

  .c-works-txt:not(:last-child) {
    margin-bottom: 15px;
  }

  .c-works-txt a:hover {
    color: #005BAD;
    text-decoration: none;
  }

  .l-works-imgleft,
  .l-works-imgright {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(30 * 100 / 1280 * 1vw);
  }

  .l-works-imgleft .l-works-txtarea {
    order: 1;
  }

  .l-works-imgleft .l-works-imgarea {
    order: 0;
  }

  .l-works-imgright .l-works-txtarea {
    order: 0;
  }

  .l-works-imgright .l-works-imgarea {
    order: 1;
  }

  .c-works-beforeafter {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .c-works-beforeafter:not(:last-child) {
    margin-bottom: 60px;
  }

  .c-works-before::after,
  .c-works-partway::after {
    border-width: 8px 0 8px 13.9px;
    border-color: transparent transparent transparent #005BAD;
    top: calc(50% - 15px);
    left: calc(100% + 8px);
  }

  .c-works-before:nth-of-type(2n)::after,
  .c-works-partway:nth-of-type(2n)::after {
    content: none;
  }

  .c-works-caption {
    margin-top: 5px;
    padding: 8px;
  }

  .c-works-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ
=====================================================================*/
.c-faq-list {
  display: grid;
  gap: 20px;
}

.c-faq-list li {
  display: grid;
  gap: 10px;
}

.c-faq-question,
.c-faq-answer {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 15px 19px 15px 13px;
  position: relative;
}

.c-faq-question {
  background-color: #EAF0F5;
  padding-right: 37px;
  cursor: pointer;
}

.c-faq-question::before,
.c-faq-question::after {
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  background-color: #005BAD;
  position: absolute;
  top: calc(50% - 1px);
  right: 15px;
}

.c-faq-question::after {
  transform: rotate(-90deg);
}

.is-open.c-faq-question::after {
  width: 2px;
}

.l-faq-answerarea {
  display: none;
}

.c-faq-answer {
  border: 1px solid #DCEBF7;
}

.c-faq--icon {
  display: grid;
  place-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding-bottom: 2px;
  background-color: #005BAD;
  border-radius: 100%;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  line-height: 1;
}

.c-faq--txt {
  display: grid;
  gap: 1.4rem;
  align-self: center;
}

.c-faq--txt p {
  font-size: 1.4rem;
  line-height: 1.4;
}

.c-faq--txt a {
  color: #005BAD;
  text-decoration: underline;
}

@media (min-width: 769px) {
  .c-faq-question,
  .c-faq-answer {
    padding: 15px 33px 15px 16px;
  }

  .c-faq-question {
    padding-right: 50px;
  }

  .c-faq-question::before,
  .c-faq-question::after {
    width: 16px;
  }

  .c-faq--icon {
    width: 40px;
    height: 40px;
    font-size: 1.9rem;
  }

  .c-faq--txt {
    gap: 1.5rem;
  }

  .c-faq--txt p {
    font-size: 1.5rem;
  }
}

/* Recruit
=====================================================================*/
.l-recruit-headerarea {
  margin: 0 0 5px;
  padding: 5px;
  position: relative;
}

.c-recruit-header--img img {
  width: 100%;
  height: calc(100vh - 60px);
  object-fit: cover;
}

.l-recruit-header-txtarea {
  position: absolute;
  top: calc(52 * 100 / 375 * 1vw);
  left: calc(12 * 100 / 375 * 1vw);
}

.c-recruit-heading--eng,
.c-recruit-heading--jp>div {
  display: table;
  background: linear-gradient(to right, #005BAD 0%, #005BAD 12%, #1982E9 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-recruit-heading--eng {
  margin: 0 0 calc(18 * 100 / 375 * 1vw);
  font-size: calc(30 * 100 / 375 * 1vw);
  font-weight: var(--font-bold);
  letter-spacing: 0;
  line-height: 1.4;
}

.c-recruit-heading--jp {
  display: block;
  margin: 0 0 calc(14 * 100 / 375 * 1vw);
}

.c-recruit-heading--jp>div {
  font-size: calc(32 * 100 / 375 * 1vw);
  font-weight: var(--font-bold);
  letter-spacing: 0;
  line-height: 1.4;
  white-space: nowrap;
}

.c-recruit-header--txt {
  color: #0055A1;
  font-size: calc(14 * 100 / 375 * 1vw);
  line-height: 1.6;
}

@media (min-width: 769px) {
  .c-recruit-header--img img {
    width: 100%;
    height: calc(100vh - 100px);
    object-fit: cover;
  }

  .l-recruit-header-txtarea {
    position: absolute;
    top: calc(50vh - 237px);
    left: 7%;
  }

  .c-recruit-heading--eng {
    margin-bottom: 30px;
    font-size: clamp(4.2rem, 4.2rem + 1.5vw, 6rem);
  }

  .c-recruit-heading--jp {
    margin-bottom: 25px;
  }

  .c-recruit-heading--jp>div {
    font-size: clamp(5.2rem, 5.2rem + 1.5vw, 7rem);
  }

  .c-recruit-header--txt {
    font-size: clamp(2.4rem, 2.4rem + 0.5vw, 3rem);
    font-weight: var(--font-bold);
    line-height: 1.6;
  }
}

.l-recruit-works-main {
  margin: 0 0 60px;
}

.c-rectruit-section-heading {
  margin: 0 0 25px;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  font-weight: var(--font-bold);
  line-height: 1.4;
}

.u-big-grd {
  display: inline-grid;
  background: linear-gradient(to right, #005BAD 0%, #005BAD 12%, #1982E9 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
  letter-spacing: 0.03em;
}

@media (min-width: 769px) {
  .c-rectruit-section-heading {
    margin-bottom: 35px;
    font-size: clamp(4.5rem, 4.5rem + 1.25vw, 6rem);
  }

  .u-big-grd {
    font-size: clamp(5.7rem, 5.7rem + 1.08vw, 7rem);
  }
}

.c-recruit-works {
  margin: 0 0 95px;
}

.c-recruit-works-main--img {
  margin: 0 0 25px;
}

.c-recruit-works-main--txt {
  margin: 0 0 22px;
}

.c-recruit-list {
  display: grid;
  gap: 15px;
}

.c-recruit-list li {
  display: grid;
  gap: ;
  margin: 0 0 3px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.c-recruit-list-title {
  color: #0158A7;
}

.c-recruit-works-list {
  display: grid;
  gap: 40px;
}

@media (min-width: 769px) {
  .c-recruit-works {
    margin-bottom: 160px;
  }

  .l-recruit-works-main {
    display: grid;
    grid-template-columns: calc(489 * 100 / 1280 * 1vw) 1fr;
    gap: calc(35 * 100 / 1280 * 1vw);
  }

  .c-recruit-works-main--img {
    margin: 0;
  }

  .c-recruit-works-main--txt {
    margin-bottom: 30px;
  }

  .c-recruit-list {
    gap: 20px;
  }

  .c-recruit-works-list {
    gap: 25px;
  }
}

.c-recruit-environment {
  margin: 0 0 95px;
}

.l-recruit-envi-txtarea {
  display: grid;
  gap: 45px;
}

.c-recruit-envi--img {
  margin: 0 0 25px;
}

.c-recruit-envi--img img {
  width: 100%;
  object-fit: contain;
}

@media (min-width: 769px) {
  .c-recruit-environment {
    margin-bottom: 171px;
  }

  .l-recruit-envi-txtarea {
    gap: calc(320 * 100 / 1280 * 1vw);
    padding: calc(110 * 100 / 1280 * 1vw) 7vw calc(140 * 100 / 1280 * 1vw) 0;
  }

  .c-recruit-environment .c-rectruit-section-heading {
    margin-bottom: 36px;
  }

  .l-recruit-envi-inner {
    display: grid;
    grid-template-columns: calc(624 * 100 / 1280 * 1vw) auto;
    gap: calc(65 * 100 / 1280 * 1vw);
    min-width: initial;
    padding: 0;
    margin: 0;
    position: relative;
  }

  .c-recruit-envi-column {
    margin: 0;
  }

  .l-recruit-envi-imgarea {
    width: 100%;
    height: calc(520 * 100 / 1280 * 1vw);
    position: sticky;
    top: calc(50% - 325px);
    z-index: 10;
  }

  .c-recruit-envi--img {
    margin: 0;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
  }

  .c-recruit-envi--img:nth-of-type(1) {
    opacity: 1;
  }

  .is-img01 .c-recruit-envi--img:nth-of-type(1) {
    opacity: 1;
  }

  .is-img02 .c-recruit-envi--img:nth-of-type(2) {
    opacity: 1;
  }

  .is-img03 .c-recruit-envi--img:nth-of-type(3) {
    opacity: 1;
  }

  .c-recruit-envi--img img {
    width: 100%;
    height: calc(520 * 100 / 1280 * 1vw);
    object-fit: cover;
  }
}

.c-recruit-portrait {
  margin: 0 0 95px;
}

.c-recruit-portrait-list {
  display: grid;
  gap: 25px;
  margin-top: 25px;
}

.c-recruit-portrait-list li {
  padding: 35px 20px 20px;
  background-color: #F1F9FF;
  border: 1px solid #CAE2F9;
}

.c-recruit-portrait--img img {
  margin: 0 auto 25px;
}

.c-recruit-portrait--img img {
  display: block;
  object-fit: contain;
}

.c-recruit-portrait-01 .c-recruit-portrait--img img {
  width: 70px;
  height: 47px;
}

.c-recruit-portrait-02 .c-recruit-portrait--img img {
  width: 95px;
  height: 48px;
}

.c-recruit-portrait-03 .c-recruit-portrait--img img {
  width: 34px;
  height: 56px;
}

.c-recruit-portrait-04 .c-recruit-portrait--img img {
  width: 54px;
  height: 59px;
}

.c-recruit-portrait--title {
  margin: 0 0 15px;
  color: #005BAD;
  font-size: 1.7rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
  text-align: center;
}

.c-recruit-portrait--txt p {
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.5rem;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .c-recruit-portrait {
    margin: 0 0 160px;
  }

  .c-recruit-portrait-list {
    margin-top: 55px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .c-recruit-portrait-list li {
    padding: 50px 40px;
    background-color: #F1F9FF;
    border: 1px solid #CAE2F9;
    overflow: hidden;
    position: relative;
  }

  .c-recruit-portrait-list li::after {
    content: '';
    display: block;
    width: 84px;
    height: 84px;
    background-color: #004D96;
    border-radius: 100%;
    position: absolute;
  }

  .c-recruit-portrait-01::after {
    right: -44px;
    bottom: -44px;
  }

  .c-recruit-portrait-02::after {
    left: -44px;
    bottom: -44px;
  }

  .c-recruit-portrait-03::after {
    right: -44px;
    top: -44px;
  }

  .c-recruit-portrait-04::after {
    left: -44px;
    top: -44px;
  }

  .c-recruit-portrait--img {
    display: grid;
    align-items: center;
    min-height: 90px;
  }

  .c-recruit-portrait-01 .c-recruit-portrait--img img {
    width: 91px;
    height: 62px;
  }

  .c-recruit-portrait-02 .c-recruit-portrait--img img {
    width: 133px;
    height: 67px;
  }

  .c-recruit-portrait-03 .c-recruit-portrait--img img {
    width: 54px;
    height: 87px;
  }

  .c-recruit-portrait-04 .c-recruit-portrait--img img {
    width: 82px;
    height: 90px;
  }

  .c-recruit-portrait--title {
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .c-recruit-portrait--txt p {
    color: rgba(0, 0, 0, 0.85);
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.l-recruit-flow-buttonarea {
  gap: 2px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.l-recruit-flow-buttonarea:has(.c-button-exp.is-active) {
  border-bottom-color: #0055A1;
}

.l-recruit-flow-buttonarea:has(.c-button-inexp.is-active) {
  border-bottom-color: rgba(23, 128, 230, 0.7);
}

.c-reqruit-flow-button {
  padding: 12px;
  color: #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  font-size: 1.4;
  font-weight: var(--font-bold);
  line-height: 1.4;
  text-align: center;
  transition: border-bottom-color 0.3s ease;
}

.c-button-exp {
  background-color: #0055A1;
}

.c-button-inexp {
  background-color: rgba(23, 128, 230, 0.7);
}

.c-reqruit-flow-button.is-active {
  border-bottom-color: transparent;
}

@media (min-width: 769px) {
  .l-recruit-flow-buttonarea {
    display: none;
  }
}

.c-recruit-flow-content {
  position: relative;
}

.c-recruit-flow-content::before {
  content: '';
  display: block;
  width: 50px;
  height: calc(100% - 90px);
  position: absolute;
  top: 66px;
  right: calc((100% - 90px) / 2 - 25px);
}

.c-recruit-flow-content::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 65px 0 65px;
  position: absolute;
  top: calc(100% - 34px);
  right: calc((100% - 90px) / 2 - 65px);
}

.u-exp::before {
  background-color: #CCDEEF;
}

.u-exp::after {
  border-color: #CCDEEF transparent transparent transparent;
}

.u-inexp::before {
  background-color: #DCECFB;
}

.u-inexp::after {
  border-color: #DCECFB transparent transparent transparent;
}

.c-recruit-flow-table {
  border-spacing: 10px 66px;
  margin-top: -40px;
}

.c-recruit-flow-table th {
  vertical-align: top;
}

.u-th-box {
  display: grid;
  place-content: center;
  width: 80px;
  min-height: 60px;
  background-color: #E9E9E9;
  position: relative;
  font-size: 1.3rem;
  font-weight: var(--font-bold);
  line-height: 1.3;
}

.u-th-box::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 40px 0 40px;
  border-color: #E9E9E9 transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
}

.u-td-box {
  display: grid;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #D8D8D8;
  padding: 15px;
  font-size: 1.4rem;
  line-height: 1.4;
  position: relative;
  z-index: 10;
}

@media (min-width: 769px) {
  .c-recruit-flow {
    margin-bottom: 40px;
  }

  .l-recruit-flow-contentarea {
    display: grid;
    gap: 0px;
    grid-template-columns: 1fr calc((100% - 222px) / 2);
  }

  .c-recruit-flow-th {
    display: grid;
    place-content: center;
    width: 100%;
    height: 47px;
    padding: ;
    border-radius: 25px;
    color: #FFFFFF;
    font-size: 1.7rem;
    line-height: 1.4;
  }

  .u-th-box {
    font-size: 1.7rem;
  }

  .u-exp .c-recruit-flow-th {
    background-color: #0055A1;
  }

  .u-inexp .c-recruit-flow-th {
    background-color: #1780E6;
  }

  .u-inexp th:first-child {
    display: none;
  }

  .c-recruit-flow td {
    width: 100%;
  }

  .c-recruit-flow-content::before {
    height: calc(100% - 90px);
    position: absolute;
    top: 66px;
    right: calc((100% - 222px) / 2 - 25px);
  }

  .u-inexp::before {
    right: calc(50% - 25px);
  }

  .c-recruit-flow-content::after {
    border-width: 64px 65px 0 65px;
    top: calc(100% - 34px);
    right: calc((100% - 222px) / 2 - 65px);
  }

  .u-inexp::after {
    right: calc(50% - 65px);
  }

  .c-recruit-flow-table {
    border-spacing: 10px 55px;
    margin-top: -40px;
    margin-bottom: 20px;
  }

  .u-th-box {
    width: 190px;
    min-height: 90px;
  }

  .u-th-box::after {
    border-width: 32px 95px 0 95px;
  }

  .u-td-box {
    padding: 20px;
    min-height: 90px;
  }
}

@media (min-width: 769px) and (max-width: 1260px) {
  .u-inexp .c-recruit-flow-table {
    border-spacing: 10px 49px;
    margin-top: -32px;
  }
}

/* Aside Kyoso
=====================================================================*/
.l-aside-kyosoarea {
  width: 100%;
  overflow: hidden;
}

.c-aside-kyoso {
  width: 100%;
  padding: 60px 0 75px;
  color: #FFFFFF;
  position: relative;
}

.c-aside-kyoso::before {
  content: '';
  display: block;
  width: 800vw;
  height: 800vw;
  border-radius: 100%;
  background: linear-gradient(50deg, #0058AA 0%, #0067C5 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-aside-kyoso-heading {
  margin: 0 0 15px;
  color: #FFFFFF;
  font-size: 4rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
  position: relative;
}

.l-aside-kyoso-mainarea {
  position: relative;
}

.c-aside-kyoso--txt {
  color: #FFFFFF;
}

.c-aside-kyoso--img {
  margin: 0 0 30px;
}

@media (min-width: 769px) {
  .c-aside-kyoso {
    width: 100%;
    padding: 100px 0 117px;
    color: #FFFFFF;
    position: relative;
  }

  .c-aside-kyoso .l-contents-inner{
    padding: 0 10%;
  }

  .c-aside-kyoso-heading {
    margin-bottom: 38px;
    font-size: 6.2rem;
  }

  .l-aside-kyoso-mainarea {
    display: grid;
    grid-template-columns: 44% 1fr;
    gap: 39px;
  }

  .c-aside-kyoso--img {
    margin: 0;
  }
}

/* Aside Kyoso
=====================================================================*/
.l-aside-entryarea {
  display: grid;
  gap: 5px;
  padding: 5px;
  background-color: #FFFFFF;
}

.c-aside-entry {
  position: relative;
  width: 100%;
}

.c-aside-entry a {
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  text-align: center;
  padding: 34px 0 28px;
  position: relative;
  overflow: hidden;
}

.c-aside-entry-heading {
  margin: 0 0 17px;
  position: relative;
  z-index: 10;
}

.c-aside-entry-heading--eng {
  font-size: 4.5rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
  letter-spacing: 0;
}

.c-aside-entry-heading--jp {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.c-aside-entry--txt {
  margin: 0 0 15px;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
  z-index: 10;
}

.c-aside-entry-requiments a {
  background: linear-gradient(to bottom, #FFFFFF 70%, rgba(210, 235, 255, 1.0) 100%);
}

.c-aside-entry-requiments .c-aside-entry-heading--eng {
  background: linear-gradient(to right, #005BAD 0%, #1982E9 88%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-aside-entry-requiments .c-aside-entry-heading--jp,
.c-aside-entry-requiments .c-aside-entry--txt {
  color: #0055A1;
}

.c-aside-entry-entry a {
  background: linear-gradient(to bottom, #005EB4 70%, rgba(23, 140, 255, 0.8) 100%);
}

.c-aside-entry-entry .c-aside-entry-heading--eng,
.c-aside-entry-entry .c-aside-entry-heading--jp,
.c-aside-entry-entry .c-aside-entry--txt {
  color: #FFFFFF;
}

.c-aside-entry-button {
  display: block;
  width: 63px;
  height: 63px;
  border-radius: 100%;
  border-color: transparent;
  background-color: #0161BB;
  border: 1px solid #1780E6;
  position: relative;
  z-index: 10;
}

.c-aside-entry-button::after {
  content: '';
  display: block;
  width: 24px;
  height: 6px;
  background-image: url(./img/common/ico-arrow-white-right.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 10px);
  z-index: 8;
}

@media (min-width: 769px) {
  .l-aside-entryarea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .c-aside-entry a {
    padding: 80px 0 60px;
  }

  .c-aside-entry-heading {
    margin-bottom: 20px;
  }

  .c-aside-entry-heading--eng {
    font-size: 7.8rem;
  }

  .c-aside-entry-heading--jp {
    font-size: 2.3rem;
  }

  .c-aside-entry--txt {
    font-size: 1.4rem;
    margin-bottom: 35px;
  }

  .c-aside-entry-button {
    width: 110px;
    height: 110px;
  }

  .c-aside-entry-button::after {
    width: 42px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 21px);
  }

  .l-aside-entry-buttonarea {
    width: 110px;
    height: 110px;
    position: relative;
  }

  .l-aside-entry-buttonarea::before {
    content: '';
    display: block;
    width: 110px;
    height: 110px;
    top: calc(50% - 55px);
    left: calc(50% - 55px);
    border-radius: 100%;
    background-color: #0161BB;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }

  .c-aside-entry-button {
    width: 110px;
    height: 110px;
  }

  .c-aside-entry a:hover .l-aside-entry-buttonarea::before {
    transform: scale(50.0);
    transition: transform 1s ease;
  }

  .c-aside-entry-requiments a:hover .c-aside-entry-heading--eng {
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadein 1s ease;
  }

  .c-aside-entry-requiments a:hover .c-aside-entry-heading--jp,
  .c-aside-entry-requiments a:hover .c-aside-entry--txt {
    color: #FFFFFF;
    animation: fadein 1s ease;
  }

  .c-aside-entry-button::after {
    width: 42px;
    height: 10px;
    top: calc(50% - 6px);
    left: calc(50% - 16px);
  }
}


/* Recruit Info
=====================================================================*/
.c-recruit-info-section:not(:last-child) {
  margin: 0 0 85px;
}

.l-recruit-jobarea {
  display: grid;
  gap: 60px;
}

.c-recruit-faq-list .l-faq-answerarea {
  display: block;
}

.l-recruit-process-flowarea {
  display: grid;
  gap: 50px;
  margin: 40px 0 0;
  padding: 0 22px;
}

.c-recruit-process-flow {
  display: grid;
  place-content: center;
  height: 67px;
  background-color: #005BAD;
  color: #FFFFFF;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
}

.c-recruit-process-flow:not(:last-child)::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 38px 0 38px;
  border-color: #C9C9C9 transparent transparent transparent;
  position: absolute;
  top: calc(100% + 17px);
  left: calc(50% - 36px);
}

.c-recruit-process-flow .u-small {
  display: block;
  font-size: 1.4rem;
}

.c-aside-contact-entry a {
  background: linear-gradient(to bottom, #005EB4 0%, rgba(23, 148, 255, 0.8) 55%);
}

.c-aside-contact-entry--txt {
  font-weight: var(--font-medium);
  font-size: 1.4rem;
}

@media (min-width: 769px) {
  .c-recruit-info-section:not(:last-child) {
    margin-bottom: 120px;
  }

  .l-recruit-process-flowarea {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-content: center;
    margin-top: 47px;
    padding: 0;
  }

  .c-recruit-process-flow {
    height: 87px;
  }

  .c-recruit-process-flow:not(:last-child)::after {
    border-width: 38px 0 38px 20px;
    border-color: transparent transparent transparent #C9C9C9;
    top: calc(50% - 36px);
    left: calc(100% + 18px);
  }
}

/* Company
=====================================================================*/
.l-contact-main,
.l-company-main {
  padding-bottom: 0;
}

.c-company-first--txt {
  margin: 0 0 60px;
}

.c-company-section:not(:last-child) {
  margin: 0 0 100px;
}

.l-company-address {
  display: grid;
  gap: 1.8rem;
}

.l-maparea {
  width: 260px;
}

.c-map {
  height: 0;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}

.c-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.l-company-representativearea {
  width: 100%;
  margin: 120px 0 5px;
  overflow: hidden;
}

.c-company-representative {
  width: 100%;
  padding: 60px 0 80px;
  color: #FFFFFF;
  position: relative;
}

.l-company-representative--inner {
  position: relative;
}

.c-company-representative::before {
  content: '';
  display: block;
  width: 800vw;
  height: 800vw;
  border-radius: 100%;
  background: linear-gradient(50deg, #0058AA 0%, #0067C5 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-company-representative-heading {
  margin: 0 0 30px;
  font-size: 2.7rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
}

.c-company-representative--txt {
  margin: 0 0 20px;
}

.c-company-representative-name {
  display: grid;
  justify-content: end;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}

.c-company-representative-name .u-small {
  display: block;
  font-size: 1.3rem;
}

.c-company-table th {
  color: #005BAD;
}

@media (min-width: 769px) {
  .c-company-representative {
    padding: 80px 0 90px;
  }

  .c-company-representative-heading {
    margin-bottom: 40px;
    font-size: 3.3rem;
  }

  .c-company-representative--txt {
    margin-bottom: 30px;
  }
}

/* Privacy
=====================================================================*/
.c-privacy-section:not(:last-child) {
  margin: 0 0 40px;
}

.l-privacy-columnarea {
  display: grid;
  gap: 25px;
}

.c-privacy-first--txt {
  margin: 0 0 30px;
}

.c-privacy--heading {
  margin: 0 0 15px;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.08em;
  line-height: 1.8em;
}

.c-privacy-column--heading {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.08em;
  line-height: 1.8em;
}

.c-privacy--txt {
  display: grid;
  gap: 1.4rem;
}

.c-privacy--txt p {
  font-size: 1.4rem;
  font-weight: var(--font-medium);
  line-height: 1.7;
  letter-spacing: 0.08em;
}

/* Business
=====================================================================*/
.l-business-main .c-contents-header {
  position: relative;
}

.l-business-main .c-contents-header::after {
  content: '';
  display: block;
  width: 160px;
  height: 100%;
  background: url(./img/business/img-header-sp.webp);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.c-business-section-first {
  padding: 0 0 85px;
}

.c-business-first--txt {
  margin: 0 0 50px;
}

.l-business-picturearea {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 5px;
  position: relative;
}

.l-business-picturearea::before {
  content: '';
  display: block;
  width: 85%;
  height: 18px;
  background-color: #005BAD;
  position: absolute;
  top: calc(50% - 9px);
  left: 50%;
  transform: translateX(-50%);
}

.l-business-picturearea::after {
  content: '';
  display: block;
  width: 112px;
  height: 112px;
  background-color: rgba(1, 89, 173, 0.8);
  border-radius: 100%;
  position: absolute;
  top: calc(50% - 56px);
  left: calc(50% - 56px);
}

.c-business-picture-small {
  display: grid;
  place-content: center;
  width: 84px;
  height: 84px;
  background-color: #FFFFFF;
  border: 3px solid #D2EBFF;
  border-radius: 100%;
  font-size: 1.2;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.c-business-picture-big {
  display: grid;
  place-content: center;
  width: 97px;
  height: 97px;
  background-color: #005BAD;
  border-radius: 100%;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: var(--font-bold);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.c-business-section-construction {
  padding: 60px 0 70px;
  background: url(./img/business/bg-glay-sp.webp);
  background-size: cover;
}

.c-construction--img {
  margin: 0 0 20px;
}

.c-construction--txt {
  margin: 0 0 50px;
}

.c-business-section-record {
  padding: 85px 0 0;
}

.c-business-table {
  min-width: 1080px;
  height: 154px;
}

.c-business-table td,
.c-business-table th {
  border: 1px solid #FFFFFF;
  border-width: 0 1px 1px 0;
}

.c-business-table th {
  padding: 13px 40px;
  background-color: #EAF0F5;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  line-height: 1.5;
  text-align: center;
}

.c-business-table td {
  padding: 16px 20px;
  background-color: rgba(234, 240, 245, 0.4);
  font-size: 1.5rem;
  line-height: 1.5;
}

.c-business-table td.u-center {
  text-align: center;
}

.l-scroll-x-area {
  scrollbar-width: thin;
  scrollbar-color: #D9D9D9 #FFFFFF;
}

.l-scroll-x-area::-webkit-scrollbar {
  width: 5px;
}

.l-scroll-x-area::-webkit-scrollbar-track {
  width: 5px;
}

.l-scroll-x-area::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: #D9D9D9;
}

@media (min-width: 769px) {
  .l-business-main .c-contents-header::after {
    width: 580px;
    background: url(./img/business/img-header-pc.webp);
    background-size: cover;
  }

  .c-business-section-first {
    padding-bottom: 120px;
  }

  .c-business-first--txt {
    margin-bottom: 30px;
  }

  .l-business-picturearea {
    width: 480px;
    margin: 0 auto;
  }

  .l-business-picturearea::before {
    height: 24px;
    top: calc(50% - 12px);
  }

  .l-business-picturearea::after {
    width: 124px;
    height: 124px;
    top: calc(50% - 62px);
    left: calc(50% - 62px);
  }

  .c-business-picture-small {
    width: 106px;
    height: 106px;
    font-size: 1.4rem;
  }

  .c-business-picture-big {
    width: 106px;
    height: 106px;
    font-size: 1.6rem;
  }

  .c-business-section-construction {
    padding: 80px 0;
    background: url(./img/business/bg-glay-pc.webp);
    background-size: cover;
  }

  .c-construction--img {
    margin-bottom: 40px;
  }

  .c-business-section-record {
    padding-top: 120px 0 0;
  }

  .c-business-table {
    min-width: auto;
    width: 100%;
  }
}

/* Aside Works
=====================================================================*/
.c-aside-works a {
  display: grid;
  place-content: center;
  place-items: center;
  padding: 50px 0 40px;
  margin: 0 0 5px;
  background: url(./img/business/bg-works-sp.webp);
  background-size: cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.l-aside-works-inner {
  display: grid;
  justify-items: center;
}

.l-aside-works-txtarea {
  margin: 0 0 30px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 20;
}

.c-aside-works--eng {
  margin: 0 0 3px;
  font-size: 5rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
}

.c-aside-works--jp {
  margin: 0 0 31px;
  font-size: 1.4rem;
}

.l-aside-works-buttonarea {
  position: relative;
}

.c-aside-works-button {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 100%;
  border-color: transparent;
  background-color: #0161BB;
  border: 1px solid #1780E6;
  position: relative;
  z-index: 10;
}

.c-aside-works-button::after {
  content: '';
  display: block;
  width: 24px;
  height: 6px;
  background-image: url(./img/common/ico-arrow-white-right.svg);
  background-size: contain;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 10px);
  z-index: 8;
}

.c-aside-works--txt {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .c-aside-works a {
    padding: 100px 0 73px;
  }

  .l-aside-works-txtarea {
    margin-bottom: 63px;
  }

  .c-aside-works--eng {
    font-size: 7.8rem;
  }

  .c-aside-works--jp {
    font-size: 2.3rem;
  }

  .l-aside-works-buttonarea {
    width: 110px;
    height: 110px;
    position: relative;
  }

  .l-aside-works-buttonarea::before {
    content: '';
    display: block;
    width: 110px;
    height: 110px;
    top: calc(50% - 55px);
    left: calc(50% - 55px);
    border-radius: 100%;
    background-color: #0161BB;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }

  .c-aside-works-button {
    width: 110px;
    height: 110px;
  }

  .c-aside-works a:hover .l-aside-works-buttonarea::before {
    transform: scale(50.0);
    transition: transform 1s ease;
  }

  .c-aside-works-button::after {
    width: 42px;
    height: 10px;
    top: calc(50% - 6px);
    left: calc(50% - 16px);
  }
}

/* Page Navi
=====================================================================*/
.c-pagenav {
  margin: 0 0 70px;
  border: 1px solid rgba(0, 85, 161, 0.5);
  border-width: 1px 1px 0 1px;
}

.c-pagenav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid rgba(0, 85, 161, 0.5);
  border-width: 0 0 1px 0;
  color: #0055A1;
  font-size: 1.4rem;
  font-weight: var(--font-bold);
  line-height: 1;
}

.c-pagenav li a::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  background-image: url(./img/common/ico-arrow-down.svg);
  background-size: contain;
}

@media (min-width: 769px) {
  .c-pagenav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 70px;
    border-width: 0;
  }

  .c-pagenav li a {
    gap: 6px;
    border-width: 1px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .c-pagenav li a:hover {
    background-color: #0055A1;
    color: #FFFFFF;
  }

  .c-pagenav li a:hover::after {
    background-image: url(./img/common/ico-arrow-down-white.svg);
  }
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}