@charset "UTF-8";
/* mixin */
/* template color */
/* custom color */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@keyframes anime-order {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
    -webkit-transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.icon-btn_wrap {
  --animation-arrow: move-arrow 0.5s linear;
}

@keyframes move-arrow {
  0% {
    opacity: 1;
    left: 50%;
  }
  25% {
    opacity: 0;
    left: 75%;
  }
  50% {
    opacity: 0;
    left: 50%;
  }
  75% {
    opacity: 0;
    left: 10%;
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
/* font */
.--en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
}

.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-feature-settings: "palt";
  font-weight: 500;
}

/* setting */
/* テーブル */
/* flex基準 */
/* TOP見出し */
.recruit_m .recruit-headwrap .--title, .company_m .company-headwrap .--title, .works_m .works-headwrap .--title, .about_m .about-headwrap .--title, .m-news_headwrap .--title {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  position: relative;
  padding-left: 18px;
  display: inline-block;
}
.recruit_m .recruit-headwrap .--title::before, .company_m .company-headwrap .--title::before, .works_m .works-headwrap .--title::before, .about_m .about-headwrap .--title::before, .m-news_headwrap .--title::before {
  content: "";
  background-color: #003586;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  opacity: 0;
}
.recruit_m .recruit-headwrap .--title.headAppearText::before, .company_m .company-headwrap .--title.headAppearText::before, .works_m .works-headwrap .--title.headAppearText::before, .about_m .about-headwrap .--title.headAppearText::before, .m-news_headwrap .--title.headAppearText::before {
  animation: icon-on_anime 1s ease-out forwards;
  animation-delay: 1s;
}
@keyframes icon-on_anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.recruit_m .recruit-headwrap .--slug, .company_m .company-headwrap .--slug, .works_m .works-headwrap .--slug, .about_m .about-headwrap .--slug, .m-news_headwrap .--slug {
  font-size: clamp(5.6rem, 8.3870967742vw, 10.4rem);
  font-weight: 400;
  color: #003586;
  line-height: 1.25;
  margin-top: clamp(5px, 0.625vw, 10px);
  display: block;
}

* {
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #F7FAFF;
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media screen and (max-width: 1200px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-width: 828px) {
  body #swipebox-close {
    right: auto;
    left: 0;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

p,
th,
td,
li,
dt,
dd,
address {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 500;
  line-height: 2;
  font-style: normal;
}

div {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
@media screen and (max-width: 828px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br {
    display: none;
  }
}

img,
picture,
figure {
  margin: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a.link {
  display: inline;
  color: #5C9CFF;
}
a:hover {
  opacity: 0.6;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  cursor: default;
}
a[href^=tel]:hover {
  opacity: 1;
}
@media screen and (min-width: 829px) {
  a[href^=tel] {
    pointer-events: none;
  }
}

.wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: none;
}
.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

.text-center {
  text-align: center;
}
@media screen and (max-width: 828px) {
  .text-center {
    text-align: left;
  }
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media screen and (min-width: 829px) {
  .last-block {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 828px) {
  .last-block {
    padding-bottom: 60px;
  }
}

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

.image {
  display: block;
  margin: 0 auto;
}

.image--inline {
  display: inline-block;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

tbody,
tr {
  width: 100%;
  height: auto !important;
  border: none;
  box-sizing: border-box;
}

th,
td {
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
  word-break: break-all;
}
@media screen and (min-width: 829px) {
  th,
  td {
    font-size: 1.6rem;
    padding: 24px;
  }
}
@media screen and (max-width: 828px) {
  th,
  td {
    font-size: 1.5rem;
    padding: 0.5em 1em;
  }
}

.container {
  position: relative;
  width: 100%;
  max-width: 1230px;
  margin: auto;
  padding-right: 15px;
  padding-left: 15px;
  overflow: clip;
  box-sizing: border-box;
}
.container.--of {
  overflow: visible;
}
@media screen and (max-width: 1200px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .container.--of {
    overflow: clip;
  }
}

.over--left {
  width: auto;
  max-width: none;
  margin-left: calc((100vw - 1215px) / 2);
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .over--left .image {
    margin-right: -20px;
  }
}

.over--right {
  width: auto;
  max-width: none;
  margin-right: calc((100vw - 1215px) / 2);
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .over--right .image {
    margin-left: -20px;
  }
}

@media screen and (max-width: 1200px) {
  .over--left,
  .over--right {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.flickWrap {
  width: 100%;
}
@media screen and (max-width: 828px) {
  .flickWrap {
    padding: 5px 0;
    overflow: auto;
    white-space: nowrap;
  }
  .flickWrap::before {
    margin-bottom: 20px;
    color: #f55;
    font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
    content: "※表が見切れる場合は横スクロールでご覧ください。";
  }
  .flickWrap::-webkit-scrollbar {
    height: 5px;
  }
  .flickWrap::-webkit-scrollbar-track, .flickWrap::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

.lazy {
  opacity: 0;
  position: relative;
  transform: translate(0%, 50px);
}
.lazy.--show {
  opacity: 1;
}

.lazy-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1s;
}

@media screen and (min-width: 829px) {
  .activeNav {
    height: 100%;
    overflow: hidden;
  }
  .columns,
  .cm-column {
    display: flex;
    gap: 72px;
  }
  .--rev,
  .swap,
  .reverse,
  .--reverse {
    flex-direction: row-reverse;
  }
}
.cm-list .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #D9DDE3;
  text-align: center;
  padding-top: clamp(40px, 5vw, 80px);
  margin-top: clamp(88px, 6.5vw, 104px);
}
.cm-list a,
.cm-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400 !important;
}
.cm-list a:hover,
.cm-list span:hover {
  opacity: 1;
  color: #fff;
  background-color: #003586;
  border-color: #003586;
}
.cm-list .current {
  color: #fff;
  background-color: #003586;
  border-color: #003586;
}
.cm-list .pages {
  display: none;
}
.cm-list .previouspostslink,
.cm-list .nextpostslink {
  position: relative;
  color: transparent !important;
  text-indent: -9999px;
  overflow: clip;
}
.cm-list .previouspostslink::after,
.cm-list .nextpostslink::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 9px 16px;
  background-position: center center;
  filter: brightness(0) saturate(100%) invert(85%) sepia(12%) saturate(103%) hue-rotate(176deg) brightness(107%) contrast(84%);
  transition: inherit;
}
.cm-list .previouspostslink:hover::after,
.cm-list .nextpostslink:hover::after {
  filter: brightness(100) saturate(100%);
}
.cm-list .previouspostslink::after {
  background-image: url(../images/common/arrow-prev.svg);
  transform: translateX(-1px);
}
.cm-list .nextpostslink::after {
  background-image: url(../images/common/arrow-next.svg);
  transform: translateX(1px);
}

.single-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D9DDE3;
  margin-top: clamp(80px, 10vw, 160px);
  padding-top: 32px;
}
.single-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
.single-nav a path {
  transition: all 0.3s;
  fill: #D9DDE3;
}
.single-nav a:hover {
  opacity: 1;
  transform: scale(1.1);
  color: #003586;
}
.single-nav a:hover path {
  fill: #003586;
}
.single-nav [class*=cm-list] {
  min-width: 55px;
}

.cm-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 829px) {
  .cm-btns {
    margin-top: 56px;
  }
}
@media screen and (max-width: 828px) {
  .cm-btns {
    margin-top: 40px;
  }
}
.cm-btns a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  background-color: #003586;
  transition: all 0.3s;
}
@media screen and (min-width: 829px) {
  .cm-btns a {
    width: 240px;
    line-height: 56px;
  }
}
@media screen and (max-width: 828px) {
  .cm-btns a {
    width: 200px;
    line-height: 48px;
  }
}
.cm-btns a:hover {
  opacity: 1;
}

.only_pc,
.--pc {
  display: none !important;
}
@media screen and (min-width: 829px) {
  .only_pc,
  .--pc {
    display: block !important;
  }
}

@media screen and (min-width: 829px) {
  .only_mobile,
  .--mobile {
    display: none !important;
  }
}

@media screen and (max-width: 500px) {
  .only_over,
  .--over {
    display: none !important;
  }
}

@media screen and (min-width: 501px) {
  .only_sp,
  .--sp {
    display: none !important;
  }
}

.swipe {
  width: 100%;
}
@media screen and (max-width: 828px) {
  .swipe {
    position: relative;
    padding: 5px 0;
    overflow: hidden;
    z-index: 1;
  }
  .swipe img {
    min-width: 1200px;
  }
  .swipe::before {
    position: absolute;
    content: "";
    z-index: 2;
    max-width: 180px;
    width: 100%;
    max-height: 56px;
    height: 100%;
    top: 60px;
    left: 20px;
    background-image: url(../images/svg_swipe.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
    animation: 2s ease-in-out alternate infinite please__swipe;
  }
  .swipe::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    background: #ddd;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
  }
  .swipe__on {
    overflow: auto;
    white-space: nowrap;
  }
  .swipe__on::after, .swipe__on::before {
    opacity: 0;
    z-index: -1;
    animation: none;
  }
  .swipe__on::-webkit-scrollbar {
    height: 5px;
  }
  .swipe__on::-webkit-scrollbar-track, .swipe__on::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .swipe th,
  .swipe td {
    display: table-cell !important;
    white-space: nowrap;
  }
}

@keyframes please__swipe {
  0% {
    left: 10px;
  }
  100% {
    left: 50px;
  }
}
.cm-cards {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
}
@media screen and (min-width: 451px) {
  .cm-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
  }
}
@media screen and (min-width: 451px) and (max-width: 828px) {
  .cm-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .cm-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

@media screen and (min-width: 829px) {
  .l-following_contents {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    position: relative;
  }
  .l-following_contents .--side {
    top: 0;
    width: 200px;
  }
  .l-following_contents .--main {
    flex: 1;
  }
}
@media screen and (max-width: 828px) {
  .l-following_contents .--side {
    bottom: 0;
  }
}
.l-following_contents .--side {
  position: sticky;
  left: 0;
}

/* module */
.cm-bread {
  padding: 154px 0 46px;
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
  line-height: 1.6;
}
@media screen and (max-width: 828px) {
  .cm-bread {
    padding: 72px 0 46px;
  }
}
@media screen and (max-width: 500px) {
  .cm-bread {
    padding: 72px 0 24px;
  }
}
.cm-bread .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
}
.cm-bread a {
  color: inherit;
  font-size: inherit;
}
.cm-bread.--normal {
  position: relative;
}
.cm-bread.--normal::before {
  content: "";
  background-color: #fff;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  z-index: -1;
  animation: mv-bcc 1s ease-in-out forwards;
  animation-delay: 2.8s;
}
@media screen and (min-width: 829px) {
  .cm-bread.--normal {
    top: -58px;
    margin-bottom: -58px;
  }
}
@media screen and (max-width: 828px) {
  .cm-bread.--normal {
    top: -40px;
    margin-bottom: -40px;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .cm-bread.--normal.--about {
    padding-bottom: 80px;
    padding-top: 88px;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .cm-bread.--normal {
    top: -28px;
    margin-bottom: -28px;
  }
}
.cm-bread.--normal .breadcrumbs {
  animation: text_anime_on 1s ease-out forwards;
  animation-delay: 2.2s;
  opacity: 0;
}

.error-bread {
  padding: 154px 0 46px;
}
.error-bread .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 0px;
}
.error-bread .breadcrumbs li {
  font-size: clamp(1.2rem, 1.1290322581vw, 1.4rem);
}
.error-bread .breadcrumbs li + li::before {
  content: "/";
  margin-inline: 0.5em;
}

.h-columns {
  padding-top: 3px;
  position: fixed;
  width: 100%;
  top: 0;
  opacity: 1;
  transition: all 0.4s;
  z-index: 10;
}
.h-columns::before {
  content: "";
  background: #003586;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  animation: border_anime 1.5s ease-in forwards;
  z-index: 50;
}
@media screen and (min-width: 830px) {
  .h-columns.fixed.bc-show, .h-columns.hide__fixed.bc-show {
    background-color: rgba(245, 249, 255, 0.7);
  }
  .h-columns.fixed.--mv_on, .h-columns.hide__fixed.--mv_on {
    background-color: transparent !important;
  }
}
@media screen and (min-width: 830px) {
  .h-columns.hide__fixed {
    transform: translateY(-100%);
    transition: all 0.4s;
    opacity: 0;
  }
}

@keyframes border_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.h-logo {
  padding: 20px 32px;
  box-sizing: border-box;
}
.h-logo a,
.h-logo img {
  display: block;
  height: auto;
}
.h-logo a {
  width: 240px;
}
.h-logo img {
  width: 100%;
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .h-logo a {
    width: 200px;
  }
}
@media screen and (max-width: 828px) {
  .h-logo {
    padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  .h-logo a {
    width: 145px;
  }
}

.h-trigger {
  position: fixed;
  top: 22px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #003586;
  z-index: 10;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .h-trigger {
    top: 15px;
  }
}
@media screen and (min-width: 829px) {
  .h-trigger {
    display: none;
  }
}
.h-trigger:hover {
  opacity: 1;
}
.h-trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  border-radius: 3px;
  background-color: #fff;
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.6s;
}
.h-trigger span:first-child {
  transform: translateY(calc(-50% - 5px)) translateX(-50%) rotate(0deg);
}
.h-trigger span:last-child {
  transform: translateY(calc(-50% + 5px)) translateX(-50%) rotate(0deg);
}
.h-trigger.active span {
  opacity: 0;
}
.h-trigger.active span:first-child {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(400deg);
}
.h-trigger.active span:last-child {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-400deg);
}

.h-menu a {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  box-sizing: border-box;
}
.h-menu ul {
  box-sizing: border-box;
}
.h-menu li {
  line-height: 1.2;
}
.h-menu .children {
  display: none;
}
@media screen and (min-width: 829px) {
  .h-menu {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .h-menu ul {
    display: flex;
    gap: 48px;
    transition: all 0.3s;
  }
  .h-menu ul.--white {
    filter: brightness(0) invert(1);
  }
  .h-menu .h-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background-color: #003586;
    width: 200px;
    line-height: 102px;
    font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
    font-weight: 400;
  }
  .h-menu .h-contact img {
    width: 20px;
    height: auto;
    margin: 0;
  }
  .h-menu .h-contact:hover {
    opacity: 1;
    background-color: #5C9CFF;
  }
}
@media screen and (max-width: 828px) {
  .h-menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    z-index: 5;
    overflow-y: scroll;
  }
  .h-menu.active {
    opacity: 1;
    transform: translateX(0%);
  }
  .h-menu ul {
    padding-top: 70px;
    padding-bottom: 150px;
  }
  .h-menu li {
    border-bottom: 1px solid #fff;
  }
  .h-menu a {
    display: block;
    text-align: center;
    padding: 1em 0;
    color: #fff;
  }
  .h-menu a.h-contact {
    display: none;
  }
  .h-menu .menu-item_contact a::before {
    content: "";
    display: inline-block;
    background: url("../images/common/icon_mail.svg") 50% 50% no-repeat;
    background-size: contain;
    width: 20px;
    height: 14px;
    margin-right: 8px;
    position: relative;
    top: 2px;
  }
}

.h-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer {
  position: relative;
  margin-top: clamp(180px, 15vw, 240px);
  padding-bottom: clamp(24px, 5.5vw, 88px);
}

.footer_line::before {
  content: "";
  background: #003586;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-animation: border_anime 1.5s ease-in forwards;
  animation: border_anime 1.5s ease-in forwards;
  z-index: 50;
}
.footer_line::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  background: #fff;
  height: calc(100% - 200px);
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1601px) {
  .footer_line::after {
    max-height: 620px;
  }
}
@media screen and (max-width: 900px) {
  .footer_line::after {
    height: calc(100% - 120px);
  }
}

.f-contents {
  padding-top: clamp(48px, 5.5vw, 88px);
  padding-bottom: clamp(54px, 4.5vw, 72px);
}

.f-logo {
  font-size: clamp(1.6rem, 1.6129032258vw, 2rem);
  font-weight: 700;
  margin-bottom: clamp(28px, 2.25vw, 36px);
}
.f-logo a,
.f-logo img {
  display: block;
  height: auto;
}
.f-logo a {
  width: 200px;
}
@media screen and (max-width: 828px) {
  .f-logo a {
    margin: 0 auto;
  }
}
.f-logo img {
  width: 100%;
}

.f-address {
  font-size: 1.5rem;
}
@media screen and (max-width: 828px) {
  .f-address {
    text-align: center;
  }
}

@media screen and (min-width: 829px) {
  .f-column {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
  }
}

.f-nav a {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
}
.f-nav .--parent li {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 1.2;
}
@media screen and (min-width: 829px) {
  .f-nav .--parent {
    width: 586px;
    height: 155px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px 72px;
    flex-direction: column;
  }
  .f-nav .--parent li {
    font-weight: 700;
  }
}
.f-nav .sub-menu {
  display: none;
}
@media screen and (min-width: 829px) {
  .f-nav .sub-menu {
    display: block;
    margin-top: 10px;
  }
  .f-nav .sub-menu li {
    border-top: none;
    padding-top: 0;
    line-height: 2;
  }
  .f-nav .sub-menu a {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 1em;
    box-sizing: border-box;
  }
  .f-nav .sub-menu a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "-";
  }
}
@media screen and (max-width: 828px) {
  .f-nav {
    margin-bottom: 56px;
  }
  .f-nav .--parent {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    margin: 0 -20px;
    border-top: 1px solid #D9DDE3;
  }
  .f-nav li {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #D9DDE3;
  }
  .f-nav li:nth-child(even) {
    border-left: 1px solid #D9DDE3;
  }
  .f-nav li a {
    display: block;
    text-align: center;
    padding: 20px 8px;
  }
}

.f-copy {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 828px) {
  .f-copy {
    text-align: center;
  }
}

.f-rtt {
  display: block;
  width: 56px;
  height: 56px;
  position: absolute;
  z-index: 9999;
}
@media screen and (min-width: 829px) {
  .f-rtt {
    bottom: 32px;
    right: 2%;
  }
}
@media screen and (max-width: 828px) {
  .f-rtt {
    position: fixed;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }
}
.f-rtt:hover {
  opacity: 1;
}
.f-rtt:hover .icon-btn_inner {
  background-color: #003586;
}
.f-rtt:hover .icon-btn_inner img {
  animation: move-arrow_footer 0.5s ease-out;
}
.f-rtt .icon-btn_wrap {
  position: absolute;
  bottom: 10%;
  right: 4.1095890411%;
}
.f-rtt .icon-btn_inner {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5C9CFF;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 828px) {
  .f-rtt .icon-btn_inner {
    width: 40px;
    height: 40px;
  }
}
.f-rtt .icon-btn_inner img {
  max-width: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes move-arrow_footer {
  0% {
    opacity: 1;
    top: 50%;
  }
  25% {
    opacity: 0;
    top: 10%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  75% {
    opacity: 0;
    top: 120%;
  }
  100% {
    opacity: 1;
    top: 50%;
  }
}
.cta-inner {
  background-color: #003586;
  color: #fff;
  padding-top: clamp(40px, 7.5vw, 120px);
  padding-bottom: clamp(48px, 7vw, 112px);
}
.cta-columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 829px) {
  .cta-columns {
    align-items: center;
  }
}
@media screen and (max-width: 828px) {
  .cta-columns {
    flex-direction: column;
    gap: 20px;
  }
}
.cta-headwrap .--title {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  color: #5C9CFF;
  position: relative;
  padding-left: 18px;
}
.cta-headwrap .--title::before {
  content: "";
  background-color: #5C9CFF;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.cta-headwrap .--slug {
  font-size: clamp(4.8rem, 5.8064516129vw, 7.2rem);
  font-weight: 400;
  line-height: 1.2777777778;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 60px;
  background-color: #5C9CFF;
  border: 2px solid #5C9CFF;
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .cta-btn {
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.cta-btn::before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.cta-btn.--contact {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
}
.cta-btn.--contact::before {
  content: "";
  display: inline-block;
  background: url("../images/common/icon_f-mail.webp") 50% 50% no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 500px) {
  .cta-btn.--contact::before {
    width: 30px;
    height: 30px;
  }
}
.cta-btn.--tel {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
}
.cta-btn.--tel::before {
  content: "";
  display: inline-block;
  background: url("../images/common/icon_f-tel.webp") 50% 50% no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 500px) {
  .cta-btn.--tel::before {
    width: 30px;
    height: 30px;
  }
}
.cta-btn:hover {
  opacity: 1;
  background-color: #003586;
}
.cta-time {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-top: 4px;
}
@media screen and (min-width: 829px) {
  .cta-columns {
    max-width: 746px;
    margin: 0 auto;
    gap: 30px;
  }
  .cta-headwrap {
    flex: 1;
  }
  .cta-content {
    width: 44.9061662198%;
  }
}
@media screen and (max-width: 828px) {
  .cta-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
  .cta-columns {
    max-width: 335px;
    margin: 0 auto;
  }
}

.form-block {
  background-color: #fff;
  box-sizing: border-box;
}
.form-block th,
.form-block td {
  border: none;
  padding: 0;
  background-color: transparent;
  box-sizing: border-box;
  word-break: break-all;
}
.form-block th {
  position: relative;
}
.form-block th > span {
  position: absolute;
  top: 8px;
  right: 0;
  width: 60px;
  line-height: 41px;
  color: #fff;
  text-align: center;
}
.form-block th > span.required {
  background-color: #C50000;
}
.form-block th > span.any {
  background-color: #999;
}
.form-block input,
.form-block textarea {
  font-size: 1.6rem;
  padding: 16px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}
.form-block input.var01,
.form-block textarea.var01 {
  max-width: 344px;
}
.form-block input.var02,
.form-block textarea.var02 {
  max-width: 8em;
}
@media screen and (max-width: 500px) {
  .form-block input.var02,
  .form-block textarea.var02 {
    max-width: 5em;
  }
}
.form-block select {
  font-size: 1.6rem;
  padding: 18px 16px;
  box-sizing: border-box;
}
.form-block input[type=text],
.form-block input[type=email],
.form-block input[type=number],
.form-block select,
.form-block textarea {
  border: 1px solid #C6CACC;
}
.form-block input[type=text],
.form-block input[type=email],
.form-block textarea {
  width: 100%;
}
.form-block select {
  font-weight: 400;
}
.form-block textarea {
  max-width: 710px;
  min-height: 180px;
}
.form-block input[type=file] {
  padding: 0;
  line-height: 1;
}
@media screen and (min-width: 829px) {
  .form-block {
    padding-top: clamp(50px, 6.25vw, 100px);
    padding-left: clamp(50px, 6.25vw, 100px);
    padding-right: clamp(50px, 6.25vw, 100px);
    padding-bottom: clamp(50px, 6.25vw, 100px);
  }
  .form-block th {
    min-width: 264px;
    width: 264px;
    font-weight: 700;
  }
  .mw_wp_form_input .form-block th small {
    display: block;
    margin-top: -20px;
  }
  .form-block td {
    width: auto;
    padding-left: clamp(27px, 3.375vw, 54px);
    font-weight: 500;
  }
  .form-block td th {
    min-width: 210px;
    width: 210px;
  }
  .form-block td th,
  .form-block td td {
    font-weight: 500;
    padding: 0;
  }
  .mw_wp_form_input .form-block th,
  .mw_wp_form_input .form-block td {
    padding-bottom: 40px;
  }
  .mw_wp_form_confirm .form-block th,
  .mw_wp_form_confirm .form-block td {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.7;
  }
  .mw_wp_form_input .form-block th {
    line-height: 58px;
  }
  .mw_wp_form_input .form-block td th,
  .mw_wp_form_input .form-block td td {
    font-weight: 500;
    padding: 0;
  }
  .mw_wp_form_confirm .form-block td th,
  .mw_wp_form_confirm .form-block td td {
    padding-top: 0;
    padding-bottom: 15px;
  }
  .mw_wp_form_input .form-block td tr + tr th,
  .mw_wp_form_input .form-block td tr + tr td {
    padding-top: clamp(12px, 1.5vw, 24px);
  }
}
@media screen and (max-width: 828px) {
  .form-block {
    padding: 40px;
    box-sizing: border-box;
  }
  .form-block th,
  .form-block td {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1.5rem;
  }
  .form-block th {
    padding-left: 50px;
  }
  .form-block th > span {
    width: 40px;
    line-height: 30px;
    top: 10px;
    left: 0;
    font-size: 1.4rem;
  }
  .form-block td th {
    padding: 0;
  }
}
@media screen and (max-width: 500px) {
  .form-block {
    padding: 20px 20px 40px;
  }
}
.form-block .mwform-checkbox-field {
  display: block;
  margin-top: 12px;
}
.form-block .mwform-checkbox-field + .mwform-checkbox-field {
  margin-top: 8px;
}
.form-block input[type=checkbox] {
  display: none;
}
.form-block input[type=checkbox] + .mwform-checkbox-field-text {
  position: relative;
  margin-right: 20px;
  padding-left: 40px;
  line-height: 32px;
  cursor: pointer;
  font-weight: 700;
}
.form-block input[type=checkbox] + .mwform-checkbox-field-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 32px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center center;
  border: 1px solid #C6CACC;
}
.form-block input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  background-image: url(../images/common/check.svg);
}
.form-block .error {
  display: block;
  font-size: 1.5rem;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: pink;
  margin-top: 8px;
}

.radio_box {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
}
.radio_box .mwform-radio-field:nth-of-type(odd) .mwform-radio-field-text {
  margin-right: 30px;
}
.radio_box input[type=radio] {
  display: none;
}
.radio_box input[type=radio] + .mwform-radio-field-text {
  display: inline-block;
  position: relative;
  padding: 10px 0px 10px 52px;
  font-weight: 500;
}
.radio_box input[type=radio] + .mwform-radio-field-text::before {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  background: #fff;
  content: "";
  box-sizing: border-box;
  transform: translateY(-50%);
}
.radio_box input[type=radio]:checked + .mwform-radio-field-text::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 14px;
  height: 14px;
  background: #C5000E;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.form-agree {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  line-height: 2;
}
.mw_wp_form_confirm .form-agree {
  display: none !important;
}
.form-agree a {
  color: #5C9CFF;
}
@media screen and (min-width: 829px) {
  .form-agree {
    text-align: center;
  }
}

.form-wrap {
  margin-top: clamp(24px, 2.5vw, 40px);
  text-align: center;
}

@media screen and (min-width: 829px) {
  .mw_wp_form_input .form-txt {
    margin-top: 12px;
  }
}

.form-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: clamp(20px, 2.5vw, 40px);
}
.form-btns a,
.form-btns [type=submit] {
  display: block;
  text-align: center;
  width: 240px;
  line-height: 56px;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  border: none;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s;
  background: url("../images/common/ico_btn_arrow.webp") 95% 50% no-repeat;
  background-size: 24px;
  background-color: #5C9CFF;
  font-family: "Noto Sans JP", sans-serif;
}
.form-btns a:hover,
.form-btns [type=submit]:hover {
  opacity: 1;
  background: url("../images/common/ico_btn.webp") 95% 50% no-repeat;
  background-size: 24px;
  background-color: #003586;
}
.form-btns a.fm-modoru,
.form-btns [type=submit].fm-modoru {
  background: url("../images/common/ico_btn_arrow-gray.webp") 95% 50% no-repeat;
  background-size: 24px;
  background-color: #999;
}
.form-btns a.fm-modoru:hover,
.form-btns [type=submit].fm-modoru:hover {
  opacity: 1;
  background: url("../images/common/ico_btn.webp") 95% 50% no-repeat;
  background-size: 24px;
  background-color: #003586;
}

.ui-datepicker th {
  font-size: 1.3rem;
}
.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0;
  font-size: 1.2rem;
}

/* recaptcha 位置逆 */
.grecaptcha-badge {
  z-index: 1;
  width: 70px !important;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

.building_m {
  position: absolute;
}
@media screen and (min-width: 829px) {
  .building_m {
    right: 8.25%;
    top: -50px;
  }
}
@media screen and (min-width: 829px) and (max-width: 1280px) {
  .building_m {
    right: 0;
    top: -68px;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .building_m {
    top: -176px;
    right: 0;
  }
}
@media screen and (max-width: 500px) {
  .building_m {
    top: -176px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.building_l {
  position: absolute;
}
@media screen and (min-width: 829px) {
  .building_l {
    right: 5.5%;
    top: -175px;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .building_l {
    top: -140px;
    right: 0;
  }
}
@media screen and (max-width: 500px) {
  .building_l {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.building-pic {
  opacity: 0;
}
.building-wrap {
  position: relative;
}
@media screen and (min-width: 829px) {
  .building-wrap {
    max-width: 700px;
  }
}
@media screen and (min-width: 829px) and (max-width: 1200px) {
  .building-wrap {
    max-width: 520px;
  }
}
@media screen and (max-width: 828px) {
  .building-wrap {
    width: 472px;
  }
}
.building-item {
  font-size: 1.4rem;
  display: inline-block;
  background-color: #FAE80E;
  border: 3px solid #fff;
  line-height: 1.4;
  padding: 2px 4px;
  box-sizing: border-box;
  opacity: 0;
  position: absolute;
}
.building-item:nth-of-type(1) {
  top: 13.074204947%;
  right: 32.5714285714%;
}
.building-item:nth-of-type(2) {
  top: 30.035335689%;
  left: 32%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(2) {
    top: 27.8215223097%;
    left: 25.4237288136%;
  }
}
.building-item:nth-of-type(3) {
  top: 38.5159010601%;
  right: 41.7142857143%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(3) {
    top: 34.1207349081%;
    right: 37.7118644068%;
  }
}
.building-item:nth-of-type(4) {
  bottom: 42.2261484099%;
  right: 41.7142857143%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(4) {
    bottom: 34.6456692913%;
    right: 44.0677966102%;
  }
}
.building-item:nth-of-type(5) {
  bottom: 38.8692579505%;
  right: 24.5714285714%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(5) {
    bottom: 43.0446194226%;
    right: 16.9491525424%;
  }
}
.building-item:nth-of-type(6) {
  bottom: 31.8021201413%;
  left: 28%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(6) {
    bottom: 22.0472440945%;
    left: 17.3728813559%;
  }
}
.building-item:nth-of-type(7) {
  bottom: 30.3886925795%;
  right: 32%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(7) {
    bottom: 26.2467191601%;
    right: 27.9661016949%;
  }
}
.building-item:nth-of-type(8) {
  bottom: 27.5618374558%;
  left: 43.4285714286%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(8) {
    bottom: 22.0472440945%;
    left: 44.0677966102%;
  }
}
.building-item:nth-of-type(9) {
  bottom: 20.4946996466%;
  right: 46.2857142857%;
}
@media screen and (max-width: 828px) {
  .building-item:nth-of-type(9) {
    bottom: 7.3490813648%;
    right: 42.3728813559%;
  }
}

.about-content {
  overflow: hidden;
}
.about-content .container.is-show + .building_m .building-pic, .about-content .container.is-show + .building_m .building-item {
  opacity: 0;
  animation: a-build_txt 0.6s both;
}
.about-content .container.is-show + .building_l .building-pic, .about-content .container.is-show + .building_l .building-item {
  opacity: 0;
  animation: a-build_txt 0.6s both;
}

@keyframes a-build_txt {
  0% {
    transform: translateY(270px) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
  65% {
    opacity: 1;
    transform: translateY(20px) scale(0.96);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.mv {
  padding-top: 128px;
  position: relative;
}
.mv-headwrap {
  position: relative;
  padding-top: 80px;
  padding-bottom: 142px;
}
.mv-headwrap::before {
  content: "";
  background-color: #fff;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  z-index: -1;
  animation: mv-bcc 1s ease-in-out forwards;
  animation-delay: 1.6s;
}
.mv-title {
  font-size: clamp(4.6rem, 5.8064516129vw, 7.2rem);
  line-height: 1.33;
  font-weight: 500;
  color: #003586;
}
@media screen and (max-width: 828px) {
  .mv-title br {
    display: block;
  }
}
.mv-txt {
  margin-top: clamp(22px, 2vw, 32px);
  animation: mv-txton 1s ease-out forwards;
  animation-delay: 3.6s;
  opacity: 0;
}
.mv-scroll {
  position: absolute;
}
.mv-scrollwrap {
  position: relative;
  width: 194px;
  height: 194px;
}
.mv-scroll a {
  width: 100%;
}
.mv-scroll a:hover {
  opacity: 1;
}
.mv-scroll .--circle {
  animation: rotation 18s infinite linear;
}
.mv-scroll .--arrow {
  width: 22px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  animation: vertical-translate 3s ease-out infinite;
}
.mv-slider {
  overflow: hidden;
  position: relative;
}
.mv-slider::before {
  animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 829px) {
  .mv-title, .mv-txt {
    width: 365px;
  }
  .mv-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60.125%;
    max-width: 962px;
  }
  .mv-scroll {
    left: 4.8125%;
    bottom: -68px;
  }
}
@media screen and (min-width: 829px) and (max-width: 1200px) {
  .mv-scroll {
    bottom: -120px;
  }
}
@media screen and (max-width: 828px) {
  .mv {
    padding-top: 88px;
  }
  .mv-headwrap {
    padding-top: 32px;
    padding-bottom: 188px;
    overflow-x: clip;
  }
  .mv-scroll {
    right: 5.3333333333%;
    top: -26px;
  }
  .mv-scrollwrap {
    width: 114px;
    height: 114px;
  }
  .mv-scroll .--arrow {
    width: 13px;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .mv-headwrap {
    padding-bottom: 120px;
    padding-left: 38px;
  }
  .mv-headwrap .container {
    padding-left: 0;
  }
  .mv-slider img {
    object-fit: cover;
    height: 500px;
    object-position: 50% 20%;
  }
}
@media screen and (max-width: 500px) {
  .mv {
    padding-top: 72px;
  }
  .mv-slide img {
    aspect-ratio: 375/424;
    object-fit: cover;
  }
}

@keyframes mv-txton {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
@keyframes mv-bcc {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes vertical-translate {
  0% {
    opacity: 0;
    top: 20%;
  }
  25% {
    opacity: 1;
    top: 50%;
  }
  75% {
    opacity: 1;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 80%;
  }
}
.kv {
  position: relative;
  z-index: 1;
  padding-top: 280px;
}
@media screen and (max-width: 828px) {
  .kv {
    padding-top: 180px;
  }
}
@media screen and (max-width: 500px) {
  .kv {
    padding-top: 116px;
  }
}
.kv-head .--title {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}
.kv-head .--title::before {
  content: "";
  display: block;
  background-color: #003586;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  opacity: 0;
}
.kv-head .--title.appeartext::before {
  animation: icon-on_anime 1s ease-out forwards;
  animation-delay: 1s;
}
@keyframes icon-on_anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.kv-head .--slug {
  display: block;
  font-size: clamp(4.8rem, 8.3870967742vw, 10.4rem);
  font-weight: 400;
  line-height: 1;
  color: #003586;
  margin-top: clamp(8px, 0.625vw, 10px);
  line-height: 1.25;
}
.kv .eachTextAnime span:first-of-type {
  text-transform: capitalize;
}

.eachTextAnime {
  opacity: 0;
}
.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime.appeartext {
  opacity: 1;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.headanime span {
  opacity: 0;
}

.headanime.headAppearText span {
  animation: text_anime_on 1s ease-out forwards;
}

.layout_l {
  padding-top: clamp(84px, 10.5vw, 168px);
}

/* page */
.m-news_list time {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
}
.m-news_list + .m-news_list {
  margin-top: 32px;
}
.m-news_list a {
  display: inline-block;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  width: 100%;
  position: relative;
  padding-bottom: 32px;
  padding-right: clamp(40px, 3.5vw, 56px);
  box-sizing: border-box;
}
.m-news_list a .--txt {
  display: block;
}
@media screen and (min-width: 501px) {
  .m-news_list a .--txt {
    width: 82.641509434%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .m-news_list a .--txt {
    width: 92.9951690821%;
  }
}
@media screen and (max-width: 500px) {
  .m-news_list a .--txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 60px;
  }
}
.m-news_list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D9DDE3;
}
.m-news_list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #5C9CFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.m-news_list a:hover {
  opacity: 1;
}
.m-news_list a:hover::after {
  transform: scale(1, 1);
}
.m-news_list a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.m-news_list a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (min-width: 829px) {
  .m-news_list a {
    display: flex;
    gap: 40px;
  }
}
@media screen and (max-width: 828px) {
  .m-news_list a {
    display: block;
  }
  .m-news_list a time {
    display: block;
  }
}
.m-news_list .icon-btn_wrap {
  position: absolute;
  top: 2px;
  right: 0;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 828px) {
  .m-news_list .icon-btn_wrap {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
.m-news_list .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003586;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.m-news_list .icon-btn_inner img {
  width: 9px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.m-news_more {
  margin-top: 16px;
}
.m-news_more a {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
}

.m-news {
  margin-top: clamp(120px, 11.5vw, 184px);
}
.m-news_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 828px) {
  .m-news_flex {
    flex-direction: column;
    gap: 32px;
  }
}
.m-news_btns {
  display: flex;
}
.m-news_btns a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.m-news_btns a:hover {
  opacity: 1;
}
.m-news_btns a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .m-news_btns a {
    line-height: 48px;
  }
}
.m-news_btns .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.m-news_btns .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.m-news_btns .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.m-news_btns a {
  background-color: #5C9CFF;
  color: #fff;
}
.m-news_btns a:hover {
  background-color: #003586;
}
.m-news_btns a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.m-news_btns .icon-btn_inner {
  background-color: #003586;
}
@media screen and (min-width: 829px) {
  .m-news_flex {
    gap: 30px;
  }
  .m-news_txt {
    flex: 1;
  }
  .m-news_btns {
    margin-top: clamp(56px, 7vw, 112px);
  }
  .m-news_contents {
    width: 66.3333333333%;
    align-self: flex-end;
  }
}
@media screen and (max-width: 828px) {
  .m-news_txt {
    display: contents;
  }
  .m-news_flex {
    gap: 64px;
  }
  .m-news_headwrap {
    order: 1;
  }
  .m-news_contents {
    order: 2;
  }
  .m-news_btns {
    order: 3;
    justify-content: center;
  }
}

.l-policy dd {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
}
.l-policy dd + dt {
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  color: #003586;
  margin-top: 54px;
  font-weight: bold;
  margin-bottom: 5px;
}
.l-policy li {
  position: relative;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  padding-left: 1em;
  box-sizing: border-box;
}
.l-policy li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

@media screen and (min-width: 829px) {
  .l-found {
    padding-top: 120px;
  }
}
@media screen and (max-width: 828px) {
  .l-found {
    padding-top: 60px;
  }
}
.l-found_lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.l-found_lead span {
  font-size: clamp(3.2rem, 4.8387096774vw, 6rem);
  font-weight: 400;
  color: #D9DDE3;
}
.l-found_lead h2 {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
}
@media screen and (min-width: 829px) {
  .l-found_menu {
    margin-top: 60px;
  }
  .l-found_menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 0;
    max-width: 732px;
    margin: auto;
  }
  .l-found_menu li {
    font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
    font-weight: 700;
    padding: 0 32px;
    box-sizing: border-box;
    line-height: 1;
  }
  .l-found_menu li + li {
    border-left: 1px solid #D9DDE3;
  }
  .l-found_menu a {
    font-size: inherit;
  }
}
@media screen and (max-width: 828px) {
  .l-found_menu {
    margin-top: 40px;
  }
  .l-found_menu li {
    border-bottom: 1px solid #333;
  }
  .l-found_menu a {
    font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
    padding: 1em;
    box-sizing: border-box;
  }
}
.l-found_menu a {
  display: block;
  text-align: center;
}
.l-found_btn {
  display: flex;
  justify-content: center;
  margin-top: clamp(80px, 5.5vw, 88px);
}
.l-found_btn a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.l-found_btn a:hover {
  opacity: 1;
}
.l-found_btn a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .l-found_btn a {
    line-height: 48px;
  }
}
.l-found_btn .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.l-found_btn .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.l-found_btn .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.l-found_btn a {
  background-color: #5C9CFF;
  color: #fff;
}
.l-found_btn a:hover {
  background-color: #003586;
}
.l-found_btn a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.l-found_btn .icon-btn_inner {
  background-color: #003586;
}

.l-contact h2 {
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  margin-bottom: 10px;
}

.l-contact_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 829px) {
  .l-contact_list {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 828px) {
  .l-contact_list {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.l-contact_tab {
  position: relative;
  width: 296px;
  color: #333;
  background: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  border-radius: 40px;
  background: #EFF2F7;
}
.l-contact_tab.active {
  color: #fff;
  background: #5C9CFF;
}
@media screen and (min-width: 829px) {
  .l-contact_tab {
    line-height: 54px;
  }
}
@media screen and (max-width: 828px) {
  .l-contact_tab {
    line-height: 34px;
  }
}

.l-contact_count {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 829px) {
  .l-contact_count {
    left: 16px;
  }
}
@media screen and (max-width: 828px) {
  .l-contact_count {
    left: 8px;
  }
}

.l-contact_line {
  display: block;
  height: 1px;
  background: #003586;
}
@media screen and (min-width: 829px) {
  .l-contact_line {
    width: 72px;
    flex-basis: 72px;
  }
}
@media screen and (max-width: 828px) {
  .l-contact_line {
    width: 20px;
    flex-basis: 20px;
  }
}

.l-contact_btns {
  display: flex;
  margin-top: clamp(40px, 5vw, 80px);
  justify-content: center;
}
.l-contact_btns a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.l-contact_btns a:hover {
  opacity: 1;
}
.l-contact_btns a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .l-contact_btns a {
    line-height: 48px;
  }
}
.l-contact_btns .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.l-contact_btns .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.l-contact_btns .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.l-contact_btns a {
  background-color: #5C9CFF;
  color: #fff;
}
.l-contact_btns a:hover {
  background-color: #003586;
}
.l-contact_btns a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.l-contact_btns .icon-btn_inner {
  background-color: #003586;
}

.p-column {
  display: flex;
  gap: 72px;
}
.p-column + .p-column {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #D9DDE3;
}
@media screen and (max-width: 828px) {
  .p-column {
    display: block;
  }
  .p-column + .p-column {
    margin-top: 72px;
    padding-top: 72px;
  }
}

.p-column_media {
  width: 100%;
}
@media screen and (min-width: 829px) {
  .p-column_media {
    width: 40%;
  }
}
.p-column_media .--pic {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
.p-column_media .--pic img {
  aspect-ratio: 480/344;
  object-fit: contain;
  transition: all 0.3s;
}
.p-column_media .--pic:hover {
  opacity: 1;
}
.p-column_media .--pic:hover img {
  transform: scale(1.1, 1.1);
}

.p-column_text {
  flex: 1;
}
.p-column_text time {
  display: block;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
  margin-bottom: clamp(12px, 1.5vw, 24px);
  line-height: 1;
}
.p-column_text h2 {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  margin-bottom: 32px;
  line-height: 2;
}
.p-column_text a {
  font-size: inherit;
}
@media screen and (max-width: 828px) {
  .p-column_text {
    margin-top: 48px;
  }
}

.p-column_inner {
  font-size: clamp(1.3rem, 1.2096774194vw, 1.5rem);
  line-height: 2;
  font-weight: 500;
}

.p-column_more {
  margin-top: 40px;
}
.p-column_more a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #003586;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.p-column_more a:hover {
  opacity: 1;
  color: #5C9CFF;
}
.p-column_more a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.p-column_more a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
.p-column_more .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  background-color: #003586;
}
.p-column_more .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.s-content {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.s-content_image {
  margin-bottom: clamp(40px, 5vw, 80px);
}

.s-content_headline {
  display: block;
  margin-bottom: clamp(32px, 2.5vw, 40px);
}
.s-content_headline time {
  display: block;
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  font-weight: 400;
  margin-bottom: clamp(12px, 1.5vw, 24px);
  line-height: 1;
}
.s-content_headline h2 {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 2;
}

.s-content_inner a {
  color: #5C9CFF;
}

@media screen and (max-width: 500px) {
  .about_l {
    overflow-x: clip;
  }
}
.about_l .about-section {
  position: relative;
}
.about_l .about-title {
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 2;
}
.about_l .about-title + p {
  margin-top: clamp(40px, 3.5vw, 56px);
}
.about_l .about-flex {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 56px;
  box-sizing: border-box;
  border-radius: 20px;
  margin-top: clamp(60px, 7.5vw, 120px);
}
@media screen and (max-width: 828px) {
  .about_l .about-flex {
    flex-direction: column;
    gap: 32px;
  }
}
.about_l .about-flex + .about-flex {
  margin-top: 48px;
}
.about_l .about-flex .--cm {
  color: #003586;
}
.about_l .about-list {
  display: flex;
  justify-content: center;
  position: relative;
}
.about_l .about-item {
  width: 212px;
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #003586;
  border-radius: 50%;
  color: #fff;
  border: 10px solid #F7FAFF;
  font-size: clamp(2.4rem, 2.4193548387vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
.about_l .about-item.is-stay {
  opacity: 0;
  position: relative;
  transform: translate(0%, 100px);
}
.about_l .about-item.is-show {
  opacity: 0;
  transition: all 1s;
  animation-name: anime-order;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.about_l .about-item.--delay:nth-child(1) {
  animation-delay: 0s;
}
.about_l .about-item.--delay:nth-child(2) {
  animation-delay: 0.5s;
}
.about_l .about-item span {
  display: block;
  color: #FAE80E;
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 8px;
  text-align: center;
}
.about_l .about-item + .about-item {
  position: relative;
}
@media screen and (min-width: 501px) {
  .about_l .about-item + .about-item {
    left: -16px;
    margin-right: -16px;
  }
}
@media screen and (max-width: 500px) {
  .about_l .about-item + .about-item {
    top: -8px;
    margin-top: -8px;
  }
}
.about_l .about-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
}
.about_l .about-wrap.is-show {
  animation: about-scale 1s ease-out forwards;
  animation-delay: 1.2s;
  transition: all 0.3s;
}
@keyframes about-scale {
  0% {
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
  }
}
.about_l .about-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 32px;
  margin-top: clamp(84px, 10.5vw, 168px);
}
@media screen and (min-width: 829px) {
  .about_l .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about_l .about-card {
  position: relative;
  padding: 40px;
  box-sizing: border-box;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 829px) {
  .about_l .about-card {
    min-height: 240px;
  }
}
.about_l .about-card::before, .about_l .about-card::after {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.about_l .about-card::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(51, 51, 51, 0.45);
}
.about_l .about-card.--works::after {
  content: "";
  z-index: -2;
  background-image: url(../../../uploads/2024/07/img_l-about01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.about_l .about-card.--partner::after {
  content: "";
  z-index: -2;
  background-image: url(../../../uploads/2024/07/img_l-about02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.about_l .about-card .icon-btn_wrap {
  position: absolute;
  bottom: 10%;
  right: 4.1095890411%;
}
.about_l .about-card .icon-btn_inner {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003586;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.about_l .about-card .icon-btn_inner img {
  max-width: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.about_l .about-card:hover {
  opacity: 1;
}
.about_l .about-card:hover::after {
  transform: scale(1.1);
}
.about_l .about-card:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.about_l .about-card:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
.about_l .about-card .--slug {
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
}
.about_l .about-card .--title {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 1.65;
  margin-top: 16px;
}
.about_l .about-card .--lead {
  margin-top: clamp(24px, 2vw, 32px);
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 829px) {
  .about_l .about-section {
    padding-top: 168px;
  }
  .about_l .about-headwrap {
    max-width: 792px;
  }
  .about_l .about-flex {
    align-items: center;
    gap: 32px;
  }
  .about_l .about-flex .--txt {
    width: 55.8823529412%;
  }
  .about_l .about-icon {
    width: 448px;
  }
}
@media screen and (max-width: 828px) {
  .about_l .about-section {
    padding-top: 280px;
  }
  .about_l .about-flex {
    padding: 40px 20px 48px;
  }
}
@media screen and (max-width: 500px) {
  .about_l .about-section {
    padding-top: 448px;
  }
  .about_l .about-list {
    flex-direction: column;
    align-items: center;
  }
}
.about_m {
  padding-top: clamp(130px, 16.25vw, 260px);
  position: relative;
}
.about_m .about-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 828px) {
  .about_m .about-flex {
    flex-direction: column;
    gap: 32px;
  }
}
.about_m .about-catch {
  font-size: clamp(2.4rem, 2.8225806452vw, 3.5rem);
  font-weight: 700;
  line-height: 2;
  margin-top: clamp(48px, 3.5vw, 56px);
}
.about_m .about-grid {
  margin-top: clamp(56px, 5vw, 80px);
}
.about_m .about-card {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about_m .about-inner {
  background-color: #fff;
  border-radius: 20px;
  padding-top: 82px;
  padding-bottom: 48px;
  padding-left: clamp(20px, 2.625vw, 42px);
  padding-right: clamp(20px, 2.625vw, 42px);
  box-sizing: border-box;
  position: relative;
  flex-grow: 1;
  width: 100%;
}
.about_m .about-inner p {
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  font-weight: 700;
  line-height: 1.7777777778;
  text-align: center;
}
.about_m .about-inner p span {
  color: #003586;
}
@media screen and (min-width: 829px) and (max-width: 1200px) {
  .about_m .about-inner p br {
    display: none;
  }
}
.about_m .about-label {
  --label-width: 145px;
  width: var(--label-width);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #003586;
  color: #fff;
  border: 10px solid #F7FAFF;
  margin-top: calc(var(--label-width) / 2 * -1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.about_m .about-label .--slug {
  display: block;
  color: #FAE80E;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}
.about_m .about-label .--lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 4px;
}
.about_m .about-btns {
  display: flex;
}
.about_m .about-btns a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.about_m .about-btns a:hover {
  opacity: 1;
}
.about_m .about-btns a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .about_m .about-btns a {
    line-height: 48px;
  }
}
.about_m .about-btns .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.about_m .about-btns .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.about_m .about-btns .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.about_m .about-btns a {
  background-color: #5C9CFF;
  color: #fff;
}
.about_m .about-btns a:hover {
  background-color: #003586;
}
.about_m .about-btns a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.about_m .about-btns .icon-btn_inner {
  background-color: #003586;
}
@media screen and (min-width: 829px) {
  .about_m .about-flex {
    align-items: flex-end;
  }
  .about_m .about-headwrap {
    flex: 1;
  }
  .about_m .about-catch {
    padding-bottom: 50px;
  }
  .about_m .about-txt {
    width: 52.3333333333%;
  }
  .about_m .about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 30px 42px;
  }
  .about_m .about-grid.is-stay .about-card {
    opacity: 0;
  }
  .about_m .about-grid.is-show .about-card {
    opacity: 0;
    transition: all 1s;
    animation-name: anime-order;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .about_m .about-grid.is-show .--delay:nth-child(1) {
    animation-delay: 0s;
  }
  .about_m .about-grid.is-show .--delay:nth-child(2) {
    animation-delay: 0.4s;
  }
  .about_m .about-grid.is-show .--delay:nth-child(3) {
    animation-delay: 0.8s;
  }
  .about_m .about-grid.is-show .--delay:nth-child(4) {
    animation-delay: 1.2s;
  }
  .about_m .about-grid.is-show .--delay:nth-child(5) {
    animation-delay: 1.6s;
  }
  .about_m .about-grid.is-show .--delay-btn {
    animation-delay: 2s;
  }
  .about_m .about-cards {
    display: contents;
  }
}
@media screen and (max-width: 828px) {
  .about_m {
    padding-top: 268px;
  }
  .about_m .about-card {
    margin-right: 16px;
  }
  .about_m .about-btns {
    padding-top: 0;
    margin-right: 0;
    margin-top: 64px;
  }
  .about_m .slick-prev,
  .about_m .slick-next {
    background-color: #5C9CFF;
    width: 40px;
    height: 40px;
    z-index: 1;
    border-radius: 50%;
    transition: all 0.3s;
    top: 82px;
  }
  .about_m .slick-prev:hover,
  .about_m .slick-next:hover {
    opacity: 0.3;
    background: #5C9CFF;
  }
  .about_m .slick-prev:before,
  .about_m .slick-next:before {
    content: "";
    display: inline-block;
    background: url("../images/common/icon_arrow.webp") 50% 50% no-repeat;
    background-size: contain;
    width: 11px;
    height: 14px;
  }
  .about_m .slick-prev {
    left: 58px;
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
  }
  .about_m .slick-next {
    right: 58px;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .about_m {
    padding-top: 180px;
  }
}
@media screen and (max-width: 700px) {
  .about_m .about-cards {
    width: 100vw;
    margin: 0 -20px;
  }
  .about_m .about-card {
    margin-right: 0;
  }
  .about_m .slick-prev {
    left: 20px;
  }
  .about_m .slick-next {
    right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .about_m {
    overflow-x: clip;
  }
}
@media screen and (max-width: 450px) {
  .about_m .about-inner p {
    font-size: 1.8rem;
  }
}

.works_l .works-title {
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 2;
  font-weight: 700;
  margin-bottom: clamp(72px, 7.5vw, 120px);
}
.works_l .works-article .--search {
  position: relative;
  padding-left: 28px;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.works_l .works-article .--search::before {
  content: "";
  display: inline-block;
  background: url("../images/common/icon_search.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 18px;
  aspect-ratio: 1;
  line-height: 30px;
  position: absolute;
  top: 6px;
  left: 0;
}
.works_l .works-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 72px;
}
@media screen and (min-width: 501px) {
  .works_l .works-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 72px 42px;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .works_l .works-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 20px;
  }
}
.works_l .works-gallery .--link {
  width: 100%;
}
.works_l .works-gallery .--link:hover {
  opacity: 1;
}
.works_l .works-gallery .--link:hover img {
  transform: scale(1.1, 1.1);
}
.works_l .works-pic {
  width: 100%;
  overflow: hidden;
}
.works_l .works-pic img {
  object-fit: contain;
  aspect-ratio: 372/292;
  object-position: center;
  background-color: #fff;
  vertical-align: bottom;
  transition: all 0.3s;
}
.works_l .works-caption {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  line-height: 2;
  display: block;
  margin-top: clamp(12px, 1.25vw, 20px);
}
.works_l .cm-list .wp-pagenavi {
  padding-top: 0;
  border: none;
  margin-top: clamp(72px, 8vw, 128px);
}
.works_m {
  overflow: hidden;
  margin-top: clamp(128px, 10.5vw, 168px);
}
.works_m .works-headwrap {
  text-align: center;
  position: relative;
  bottom: -56px;
  margin-top: -56px;
}
.works_m .works-inner {
  position: relative;
  padding-top: clamp(78px, 7.5vw, 120px);
  padding-bottom: clamp(120px, 10.5vw, 168px);
}
.works_m .works-inner::before {
  content: "";
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 0%;
  z-index: -1;
  transition: ease-in-out 1s;
}
@media screen and (min-width: 829px) {
  .works_m .works-inner::before {
    margin-right: calc((100vw - 1215px) / -2);
  }
}
@media screen and (min-width: 829px) and (max-width: 1200px) {
  .works_m .works-inner::before {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.works_m .works-inner.is-show::before {
  width: 100vw;
  transition-delay: 0.5s;
  max-width: 1400px;
}
@media screen and (max-width: 1280px) {
  .works_m .works-inner.is-show::before {
    max-width: 1230px;
  }
}
@media screen and (min-width: 501px) {
  .works_m .works-txt {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .works_m .works-txt br {
    display: none;
  }
}
.works_m .works-btns {
  justify-content: center;
  display: flex;
  margin-top: clamp(68px, 4.5vw, 72px);
}
.works_m .works-btns a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.works_m .works-btns a:hover {
  opacity: 1;
}
.works_m .works-btns a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .works_m .works-btns a {
    line-height: 48px;
  }
}
.works_m .works-btns .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.works_m .works-btns .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.works_m .works-btns .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.works_m .works-btns a {
  background-color: #5C9CFF;
  color: #fff;
}
.works_m .works-btns a:hover {
  background-color: #003586;
}
.works_m .works-btns a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.works_m .works-btns .icon-btn_inner {
  background-color: #003586;
}
@media screen and (max-width: 828px) {
  .works_m .works-headwrap {
    bottom: -40px;
    margin-top: -40px;
  }
  .works_m .works-inner.is-show::before {
    margin: 0 -20px;
    width: 100vw;
  }
}
@media screen and (max-width: 500px) {
  .works_m .works-headwrap {
    bottom: -36px;
    margin-top: -36px;
  }
}

/* slider */
.works-wrapper {
  overflow: hidden;
  margin-top: clamp(64px, 4.5vw, 72px);
}
.works-slide {
  width: 312px;
  height: 312px;
}
.works-slide img {
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
}
.works-slide .works-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0;
  color: #fff;
  z-index: 2;
  font-size: 1.6rem;
  font-weight: 700;
  width: 90%;
  text-align: center;
}
.works-slide .icon-btn_wrap {
  position: absolute;
  bottom: 10%;
  right: 4.1095890411%;
  opacity: 0;
  z-index: 2;
}
.works-slide .icon-btn_inner {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003586;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.works-slide .icon-btn_inner img {
  width: 13px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.works-link {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1201px) {
  .works-wrapper {
    margin-left: calc((100vw - 1215px) / -2);
  }
}
@media screen and (min-width: 829px) {
  .works-link:hover {
    opacity: 1;
  }
  .works-link:hover::before {
    position: absolute;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.4);
  }
  .works-link:hover .works-caption {
    opacity: 1;
  }
  .works-link:hover .icon-btn_wrap {
    opacity: 1;
  }
  .works-link:hover .icon-btn_inner img {
    animation: var(--animation-arrow);
  }
}
@media screen and (max-width: 828px) {
  .works-link {
    position: relative;
    width: 100%;
  }
  .works-link::before {
    position: absolute;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.4);
  }
  .works-link .works-caption {
    opacity: 1;
  }
  .works-link .icon-btn_wrap {
    opacity: 1;
  }
  .works-link .icon-btn_inner img {
    animation: var(--animation-arrow);
  }
}
@media screen and (min-width: 501px) {
  .works-wrapper {
    width: 100vw;
  }
  .works-slide {
    margin-left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .works-slider {
    padding-bottom: 64px;
  }
  .works-slider .slick-prev,
  .works-slider .slick-next {
    background-color: #5C9CFF;
    width: 40px;
    height: 40px;
    z-index: 1;
    border-radius: 50%;
    transition: all 0.3s;
    top: unset;
    bottom: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .works-slider .slick-prev:hover,
  .works-slider .slick-next:hover {
    opacity: 0.3;
    background: #5C9CFF;
  }
  .works-slider .slick-prev:before,
  .works-slider .slick-next:before {
    content: "";
    display: inline-block;
    background: url("../images/common/icon_arrow.webp") 50% 50% no-repeat;
    background-size: contain;
    width: 11px;
    height: 14px;
  }
  .works-slider .slick-prev {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 31.1111111111%;
  }
  .works-slider .slick-next {
    right: 31.1111111111%;
  }
}

.more-section {
  margin-top: clamp(72px, 12.5vw, 200px);
}
.more-section .more-flex {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 828px) {
  .more-section .more-flex {
    flex-direction: column;
    gap: 48px;
  }
}
.more-section .more-headwrap {
  position: relative;
}
.more-section .more-headwrap .--slug {
  font-size: 1.5rem;
  font-weight: 400;
  color: #003586;
  display: block;
}
.more-section .more-headwrap .--title {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (min-width: 829px) {
  .more-section .more-headwrap {
    flex: 1;
  }
  .more-section .more-headwrap .--slug {
    position: absolute;
    top: -32px;
  }
}
@media screen and (max-width: 828px) {
  .more-section .more-headwrap {
    flex: 1;
  }
  .more-section .more-headwrap .--slug {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 500px) {
  .more-section .more-headwrap {
    text-align: center;
  }
}
@media screen and (min-width: 829px) {
  .more-section .more-contents {
    width: 76%;
  }
}
.more-section .more-def + .more-def {
  margin-top: clamp(48px, 6vw, 96px);
}
.more-section .more-dtit {
  font-size: clamp(1.8rem, 1.6129032258vw, 2rem);
  font-weight: 700;
  padding-bottom: 16px;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
  line-height: 1.45;
  box-sizing: border-box;
}
.more-section .more-dtit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D9DDE3;
  transform: scaleY(0.5) translateY(1px);
}
.more-section .more-dtit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 21.8340611354%;
  height: 2px;
  background: #5C9CFF;
  transform: scaleY(0.5) translateY(1px);
}
.more-section .more-dtit.--open .icon-btn_inner img {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.more-section .icon-btn_wrap {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 2;
  overflow: hidden;
}
.more-section .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003586;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.more-section .icon-btn_inner img {
  width: 9px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.3s;
}
.more-section .more-table {
  margin-top: clamp(32px, 3vw, 48px);
}
.more-section .more-table table {
  border-collapse: separate;
  border-spacing: 4px;
}
@media screen and (max-width: 828px) {
  .more-section .more-table table {
    padding-bottom: 12px;
  }
}
.more-section .more-table th,
.more-section .more-table td {
  padding: 12px 16px;
  box-sizing: border-box;
}
.more-section .more-table th {
  background-color: #D9DDE3;
  text-align: center;
}
@media screen and (min-width: 829px) {
  .more-section .more-table th:nth-of-type(1) {
    width: 25.2192982456%;
  }
  .more-section .more-table th:nth-of-type(2), .more-section .more-table th:nth-of-type(3) {
    width: 37.8289473684%;
  }
}
@media screen and (max-width: 828px) {
  .more-section .more-table th:nth-of-type(1) {
    min-width: 230px;
  }
  .more-section .more-table th:nth-of-type(2), .more-section .more-table th:nth-of-type(3) {
    min-width: 300px;
  }
}
.more-section .more-table td {
  background-color: #fff;
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
  border-radius: 0;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
}

.company_l .company-nav {
  margin-bottom: clamp(104px, 9.75vw, 156px);
}
.company_l .company-nav .--list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.company_l .company-nav li {
  font-size: clamp(1.4rem, 1.2903225806vw, 1.6rem);
  font-weight: 700;
  display: flex;
}
.company_l .company-nav li a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.company_l .company-nav li a:hover {
  opacity: 1;
}
.company_l .company-nav li a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .company_l .company-nav li a {
    line-height: 48px;
  }
}
.company_l .company-nav li .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.company_l .company-nav li .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.company_l .company-nav li .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.company_l .company-nav li a {
  background-color: #fff;
}
.company_l .company-nav li a:hover {
  background-color: #003586;
  color: #fff;
}
.company_l .company-nav li a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.company_l .company-nav li a.active_current {
  background-color: #003586;
  color: #fff;
}
.company_l .company-nav li a.active_current .icon-btn_inner {
  background-color: #5C9CFF;
}
.company_l .company-nav li .icon-btn_inner {
  background-color: #003586;
}
.company_l .company-nav li.current_page_item a {
  background-color: #003586;
  color: #fff;
}
.company_l .company-flex {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 828px) {
  .company_l .company-flex {
    flex-direction: column;
    gap: 48px;
  }
}
.company_l .company-headwrap {
  position: relative;
}
.company_l .company-headwrap .--slug {
  font-size: 1.5rem;
  font-weight: 400;
  color: #003586;
  display: block;
}
.company_l .company-headwrap .--title {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (min-width: 829px) {
  .company_l .company-headwrap {
    flex: 1;
  }
  .company_l .company-headwrap .--slug {
    position: absolute;
    top: -32px;
  }
}
@media screen and (max-width: 828px) {
  .company_l .company-headwrap {
    flex: 1;
  }
  .company_l .company-headwrap .--slug {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 500px) {
  .company_l .company-headwrap {
    text-align: center;
  }
}
@media screen and (min-width: 829px) {
  .company_l .company-contents {
    width: 76%;
  }
}
@media screen and (max-width: 828px) {
  .company_l .company-nav .--list {
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    gap: 8px;
  }
}
.company_m {
  position: relative;
  overflow: hidden;
}
.company_m .company-inner {
  position: relative;
  padding-top: clamp(58px, 8vw, 128px);
}
.company_m .company-inner::before {
  content: "";
  background-color: #003586;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: -128px;
  width: 0%;
  transition: ease-in-out 1s;
  margin-left: -20px;
}
@media screen and (min-width: 1201px) {
  .company_m .company-inner::before {
    margin-left: calc((100vw - 1215px) / -2);
  }
}
.company_m .company-inner::after {
  content: "";
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100vw;
}
.company_m .company-inner.is-show::before {
  width: 100vw;
  max-width: 1400px;
  transition-delay: 0.5s;
}
@media screen and (max-width: 1280px) {
  .company_m .company-inner.is-show::before {
    max-width: 1230px;
  }
}
.company_m .company-headwrap {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(64px, 5vw, 80px);
}
.company_m .company-headwrap .--title {
  color: #5C9CFF;
}
.company_m .company-headwrap .--title::before {
  background-color: #5C9CFF;
}
.company_m .company-headwrap .--slug {
  color: #fff;
}
.company_m .company-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
}
@media screen and (min-width: 829px) {
  .company_m .company-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .company_m .company-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.company_m .company-card {
  position: relative;
}
.company_m .company-card .--icon {
  position: relative;
}
.company_m .company-pic {
  position: relative;
}
.company_m .company-pic::before {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: block;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.company_m .company-pic img {
  transition: all 0.3s;
  vertical-align: bottom;
}
.company_m .company-detail {
  padding-left: clamp(24px, 2.5vw, 40px);
  padding-right: clamp(20px, 2vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  color: #fff;
  position: absolute;
  bottom: 9.4339622642%;
  left: 0;
  z-index: 2;
}
.company_m .company-detail span {
  font-size: clamp(1.4rem, 1.2096774194vw, 1.5rem);
}
.company_m .company-detail h3 {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  margin-top: 8px;
}
.company_m .icon-btn_wrap {
  position: absolute;
  bottom: 10%;
  right: 0;
  z-index: 2;
  overflow: hidden;
}
.company_m .icon-btn_inner {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003586;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}
.company_m .icon-btn_inner img {
  width: 13px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (min-width: 829px) {
  .company_m .company-card {
    overflow: hidden;
  }
  .company_m .company-card:hover {
    opacity: 1;
  }
  .company_m .company-card:hover .company-pic img {
    transform: scale(1.1, 1.1);
  }
  .company_m .company-card:hover .icon-btn_inner img {
    animation: var(--animation-arrow);
  }
  .company_m .company-pic::before {
    height: 52.8301886792%;
  }
}
@media screen and (max-width: 828px) {
  .company_m .company-pic::before {
    height: 65.2173913043%;
  }
}

.message-lead {
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  line-height: 2;
  font-weight: 700;
}
.message-lead + p {
  margin-top: clamp(40px, 3.5vw, 56px);
}
.message-owner {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  margin-top: clamp(40px, 3.5vw, 56px);
  text-align: right;
}
.message-owner small {
  font-size: clamp(1.5rem, 1.2903225806vw, 1.6rem);
  margin-right: 10px;
}
.message-pic {
  margin-top: clamp(48px, 5.5vw, 88px);
}

@media screen and (min-width: 829px) {
  .profile-table table th {
    border-bottom: 1px solid #5C9CFF;
    width: 200px;
  }
  .profile-table table td {
    border-bottom: 1px solid #D9DDE3;
  }
  .profile-table table th,
  .profile-table table td {
    padding: 40px 16px;
  }
  .profile-table table tr:first-of-type th,
  .profile-table table tr:first-of-type td {
    padding-top: 0;
  }
}
@media screen and (max-width: 828px) {
  .profile-table table th,
  .profile-table table td {
    padding: 20px 0;
    display: block;
  }
  .profile-table table th {
    padding-bottom: 10px;
  }
  .profile-table table td {
    border-bottom: 1px solid #5C9CFF;
    padding-top: 0;
  }
  .profile-table table tr:first-of-type th {
    border-top: 1px solid #5C9CFF;
  }
}

.sdgs_l .sdgs-def, .sdgs_l .sdgs-area {
  background-color: #fff;
  padding: 56px;
  box-sizing: border-box;
  border-radius: 20px;
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .sdgs_l .sdgs-def, .sdgs_l .sdgs-area {
    padding: 48px 20px;
  }
}
@media screen and (max-width: 500px) {
  .sdgs_l .sdgs-def, .sdgs_l .sdgs-area {
    padding: 20px;
  }
}
.sdgs_l .sdgs-wrap .sdgs-pic {
  max-width: 696px;
}
.sdgs_l .sdgs-wrap .sdgs-catch {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  line-height: 2;
  margin-top: clamp(20px, 2.5vw, 40px);
}
.sdgs_l .sdgs-area {
  margin-top: clamp(48px, 4.5vw, 72px);
}
.sdgs_l .sdgs-area + .sdgs-area {
  margin-top: 48px;
}
.sdgs_l .sdgs-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 829px) {
  .sdgs_l .sdgs-gallery .--pic {
    width: calc(16.6666666667% - 13.3333333333px);
  }
}
@media screen and (max-width: 828px) {
  .sdgs_l .sdgs-gallery .--pic {
    width: calc(33.3333333333% - 10.6666666667px);
  }
}
.sdgs_l .sdgs-gallery + p {
  margin-top: clamp(16px, 2vw, 32px);
}
.sdgs_l .sdgs-def {
  margin-top: 48px;
}
.sdgs_l .sdgs-dtit {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  font-weight: 700;
  line-height: 2;
}
.sdgs_l .sdgs-data {
  margin-top: clamp(20px, 2.5vw, 40px);
}
.sdgs_l .sdgs-data .--inner {
  padding: 68px;
  background-color: #F7FAFF;
  margin-top: clamp(24px, 3vw, 48px);
}
@media screen and (max-width: 828px) {
  .sdgs_l .sdgs-data .--inner {
    padding: 40px;
  }
}
@media screen and (max-width: 500px) {
  .sdgs_l .sdgs-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .sdgs_l .sdgs-gallery .--pic {
    width: calc(50% - 4px);
  }
  .sdgs_l .sdgs-data .--inner {
    padding: 20px;
  }
}

.access_l .access-map iframe {
  width: 100%;
}
.access_l .access-address {
  margin-top: clamp(32px, 2.5vw, 40px);
}

.recruit_l .personality-lead, .recruit_l .environment-lead {
  font-size: clamp(2.4rem, 2.5806451613vw, 3.2rem);
  font-weight: 700;
  line-height: 2;
}
.recruit_l .personality-lead + p, .recruit_l .environment-lead + p {
  margin-top: clamp(28px, 3.5vw, 56px);
}
@media screen and (min-width: 829px) {
  .recruit_l .recruit-section {
    padding-top: clamp(16px, 2vw, 32px);
  }
}
.recruit_l .recruit-section + .recruit-section {
  padding-top: clamp(84px, 10.5vw, 168px);
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .recruit_l .recruit-section + .recruit-section {
    padding-top: 120px;
  }
}
.recruit_l .recruit-flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 828px) {
  .recruit_l .recruit-flex {
    flex-direction: column;
    gap: 48px;
  }
}
.recruit_l .recruit-headwrap {
  position: relative;
}
.recruit_l .recruit-headwrap .--slug {
  font-size: 1.5rem;
  font-weight: 400;
  color: #003586;
  display: block;
}
.recruit_l .recruit-headwrap .--title {
  font-size: clamp(2rem, 1.935483871vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (min-width: 829px) {
  .recruit_l .recruit-headwrap {
    flex: 1;
  }
  .recruit_l .recruit-headwrap .--slug {
    position: absolute;
    top: -32px;
  }
}
@media screen and (max-width: 828px) {
  .recruit_l .recruit-headwrap {
    flex: 1;
  }
  .recruit_l .recruit-headwrap .--slug {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 500px) {
  .recruit_l .recruit-headwrap {
    text-align: center;
  }
}
@media screen and (min-width: 829px) {
  .recruit_l .recruit-contents {
    width: 76%;
  }
}
.recruit_m {
  margin-top: 168px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 501px) {
  .recruit_m {
    margin-top: clamp(72px, 12.25vw, 196px);
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .recruit_m {
    margin-top: 120px;
  }
}
.recruit_m .recruit-lead {
  font-size: clamp(5rem, 11.1290322581vw, 13.8rem);
  font-weight: 400;
  position: absolute;
  right: 0;
  z-index: 1;
  color: #003586;
  mix-blend-mode: color-burn;
  line-height: 1;
  overflow: hidden;
}
.recruit_m .recruit-lead .recruit-slidewrap {
  display: block;
}
.recruit_m .recruit-lead .recruit-slidein {
  display: inline-block;
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1;
}
.recruit_m .recruit-lead.is-stay .recruit-slidein {
  clip-path: inset(0 100% 0 0);
}
.recruit_m .recruit-lead.is-show .recruit-slidein {
  clip-path: inset(0);
}
.recruit_m .recruit-lead.is-show .recruit-slidewrap:nth-of-type(2) .recruit-slidein {
  transition-delay: 1s;
}
.recruit_m .recruit-lead strong {
  font-weight: 600;
  font-style: italic;
}
.recruit_m .recruit-bg {
  position: relative;
}
@media screen and (min-width: 501px) {
  .recruit_m .recruit-bg::before {
    content: "";
    background: linear-gradient(90deg, #f7faff 0%, rgba(247, 250, 255, 0) 100%);
    display: block;
    width: 57%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.recruit_m .recruit-bg .img_bg {
  vertical-align: bottom;
}
.recruit_m .recruit-human {
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 501px) {
  .recruit_m .recruit-human {
    bottom: 0;
    right: 15.5%;
    width: 32.5%;
  }
}
@media screen and (max-width: 500px) {
  .recruit_m .recruit-human {
    bottom: 0;
    right: 8.5333333333%;
    width: 72%;
  }
}
.recruit_m .recruit-headwrap + p {
  margin-top: clamp(32px, 3vw, 48px);
}
.recruit_m .recruit-catch {
  font-size: clamp(2.4rem, 2.8225806452vw, 3.5rem);
  font-weight: 700;
  line-height: 2;
  margin-top: clamp(32px, 2.5vw, 40px);
}
.recruit_m .recruit-btns {
  display: flex;
  margin-top: clamp(64px, 4.5vw, 72px);
}
.recruit_m .recruit-btns a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.recruit_m .recruit-btns a:hover {
  opacity: 1;
}
.recruit_m .recruit-btns a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .recruit_m .recruit-btns a {
    line-height: 48px;
  }
}
.recruit_m .recruit-btns .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.recruit_m .recruit-btns .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.recruit_m .recruit-btns .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.recruit_m .recruit-btns a {
  background-color: #5C9CFF;
  color: #fff;
}
.recruit_m .recruit-btns a:hover {
  background-color: #003586;
}
.recruit_m .recruit-btns a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.recruit_m .recruit-btns .icon-btn_inner {
  background-color: #003586;
}
@media screen and (min-width: 1201px) {
  .recruit_m .recruit-lead {
    top: -88px;
    width: 1035px;
    max-width: 100%;
  }
}
@media screen and (min-width: 829px) {
  .recruit_m .recruit-contents {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
    padding-top: 160px;
    padding-top: clamp(80px, 10vw, 160px);
  }
  .recruit_m .recruit-inner {
    width: 595px;
    width: 49.5833333333%;
  }
}
@media screen and (min-width: 829px) and (max-width: 1200px) {
  .recruit_m .recruit-lead {
    top: -80px;
    width: 800px;
    max-width: 100%;
    font-size: 10.8rem;
  }
  .recruit_m .recruit-catch {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 828px) {
  .recruit_m .recruit-btns {
    justify-content: center;
  }
  .recruit_m .recruit-contents {
    margin-top: 68px;
  }
  .recruit_m .recruit-lead {
    top: -8.6206896552%;
    width: 100%;
    margin: 0 auto;
    right: unset;
  }
}
@media screen and (max-width: 500px) {
  .recruit_m .recruit-lead {
    top: -32px;
  }
}

.environment-pic {
  margin-top: clamp(40px, 5vw, 80px);
}

.personality-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media screen and (min-width: 829px) {
  .personality-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 501px) {
  .personality-cards.is-stay .personality-card {
    opacity: 0;
  }
  .personality-cards.is-show .personality-card {
    opacity: 0;
    transition: all 1s;
    animation-name: anime-order;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  .personality-cards.is-show .--delay:nth-child(1) {
    animation-delay: 0s;
  }
  .personality-cards.is-show .--delay:nth-child(2) {
    animation-delay: 0.4s;
  }
  .personality-cards.is-show .--delay:nth-child(3) {
    animation-delay: 0.8s;
  }
  .personality-cards.is-show .--delay:nth-child(4) {
    animation-delay: 1.2s;
  }
  .personality-cards.is-show .--delay:nth-child(5) {
    animation-delay: 1.6s;
  }
  .personality-cards.is-show .--delay:nth-child(6) {
    animation-delay: 2s;
  }
}
@media screen and (min-width: 501px) and (max-width: 828px) {
  .personality-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.personality-cards .--cm {
  color: #003586;
}
@media screen and (max-width: 500px) {
  .personality-cards {
    padding-bottom: 64px;
  }
  .personality-cards .slick-prev,
  .personality-cards .slick-next {
    background-color: #5C9CFF;
    width: 40px;
    height: 40px;
    z-index: 1;
    border-radius: 50%;
    transition: all 0.3s;
    top: unset;
    bottom: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .personality-cards .slick-prev:hover,
  .personality-cards .slick-next:hover {
    opacity: 0.3;
    background: #5C9CFF;
  }
  .personality-cards .slick-prev:before,
  .personality-cards .slick-next:before {
    content: "";
    display: inline-block;
    background: url("../images/common/icon_arrow.webp") 50% 50% no-repeat;
    background-size: contain;
    width: 11px;
    height: 14px;
  }
  .personality-cards .slick-prev {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 31.1111111111%;
  }
  .personality-cards .slick-next {
    right: 31.1111111111%;
  }
}
.personality-card {
  padding-top: 38px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .personality-card {
    margin: 0 8px;
  }
}
.personality-card .--num {
  font-size: clamp(5.2rem, 5.1612903226vw, 6.4rem);
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  color: #D9DDE3;
  display: inline-block;
  position: absolute;
  margin-top: -40px;
  left: 5.5555555556%;
}
@media screen and (max-width: 828px) {
  .personality-card .--num {
    margin-top: -32px;
  }
}
.personality-card.is-stay {
  opacity: 0;
  position: relative;
  transform: translate(0%, 100px);
}
.personality-card.is-show {
  opacity: 0;
  transition: all 1s;
  animation-name: anime-order;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.personality-card.--delay:nth-child(1) {
  animation-delay: 0s;
}
.personality-card.--delay:nth-child(2) {
  animation-delay: 0.5s;
}
.personality-card.--delay:nth-child(3) {
  animation-delay: 1s;
}
.personality-card.--delay:nth-child(4) {
  animation-delay: 1.5s;
}
.personality-card.--delay:nth-child(5) {
  animation-delay: 2s;
}
.personality-card.--delay:nth-child(6) {
  animation-delay: 2.5s;
}
.personality-card .--inner {
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(40px, 3vw, 48px);
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
  padding-bottom: clamp(48px, 3.5vw, 56px);
  box-sizing: border-box;
}
.personality-card .--pic {
  background-color: #F7FAFF;
  width: 154px;
  height: 154px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
}
.personality-card .--pic img {
  width: 88px;
}
.personality-card .--pic + p {
  font-size: clamp(1.6rem, 1.4516129032vw, 1.8rem);
  font-weight: 700;
  line-height: 1.75;
  margin-top: clamp(12px, 1.5vw, 24px);
  text-align: center;
}

@media screen and (min-width: 829px) {
  .requirements-table table th {
    border-bottom: 1px solid #5C9CFF;
    width: 200px;
  }
  .requirements-table table td {
    border-bottom: 1px solid #D9DDE3;
  }
  .requirements-table table th,
  .requirements-table table td {
    padding: 40px 16px;
  }
  .requirements-table table tr:first-of-type th,
  .requirements-table table tr:first-of-type td {
    padding-top: 0;
  }
}
@media screen and (max-width: 828px) {
  .requirements-table table th,
  .requirements-table table td {
    padding: 20px 0;
    display: block;
  }
  .requirements-table table th {
    padding-bottom: 10px;
  }
  .requirements-table table td {
    border-bottom: 1px solid #5C9CFF;
    padding-top: 0;
  }
  .requirements-table table tr:first-of-type th {
    border-top: 1px solid #5C9CFF;
  }
}
.requirements-btns {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 5vw, 80px);
}
.requirements-btns a {
  width: 240px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  border-radius: 30px;
}
.requirements-btns a:hover {
  opacity: 1;
}
.requirements-btns a:hover .icon-btn_inner img {
  animation: var(--animation-arrow);
}
@media screen and (max-width: 828px) {
  .requirements-btns a {
    line-height: 48px;
  }
}
.requirements-btns .icon-btn_wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.requirements-btns .icon-btn_inner {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.requirements-btns .icon-btn_inner img {
  max-width: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.requirements-btns a {
  background-color: #5C9CFF;
  color: #fff;
}
.requirements-btns a:hover {
  background-color: #003586;
}
.requirements-btns a:hover .icon-btn_inner {
  background-color: #5C9CFF;
}
.requirements-btns .icon-btn_inner {
  background-color: #003586;
}/*# sourceMappingURL=customize.css.map */