@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
:root {
  --font-base: "Noto Sans JP", sans-serif;
}

.f-en {
  font-family: "Avenir", "Avenir Next", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.mx1300 {
  max-width: 1300px;
}

/* スマホのみ表示 */
.br-sp {
  display: inline;
}
@media (min-width: 767.1px) {
  .br-sp {
    display: none;
  }
}

/* PCのみ表示 */
.br-pc {
  display: none;
}
@media (min-width: 767.1px) {
  .br-pc {
    display: inline;
  }
}

/* --------------------------------------------------
   reset.scss
   Modern Reset（destyle + sanitize + tailwind の良いとこ取り）
-------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (min-width: 767.1px) {
  html {
    scroll-padding-top: 120px;
  }
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background-color: #fff;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

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

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

dd {
  margin-left: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  color: #000;
}

h1 {
  font-size: clamp(20px, 20px + (36 - 20) * (100vw - 320px) / 960, 36px);
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  font-size: clamp(18px, 18px + (30 - 18) * (100vw - 320px) / 960, 30px);
  font-weight: 700;
  line-height: 1.5;
}

h3 {
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / 960, 24px);
  font-weight: 700;
  line-height: 1.6;
}

p {
  line-height: 1.8;
}

.opacty {
  opacity: 0.8;
}

.container {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .container {
    padding-inline: 5vw;
  }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .header__inner {
    padding-inline: 5vw;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (min-width: 767.1px) {
  .header__inner {
    height: 90px;
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .header__inner {
    padding-right: 0;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
@media (min-width: 767.1px) {
  .header__logo {
    gap: 20px;
  }
}
.header__logo img {
  width: 80px;
}
@media (min-width: 767.1px) {
  .header__logo img {
    width: 120px;
  }
}
@media (max-width: calc(1024px - 1px)) {
  .header__logo img {
    width: 80px;
  }
}
.header__logo-img {
  flex-shrink: 0;
}
.header__logo-name {
  font-size: clamp(10px, 10px + (14 - 10) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #003399;
}
.header__logo-name br {
  display: none;
}
@media (min-width: 767.1px) and (max-width: 1024px) {
  .header__logo-name br {
    display: inline;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 767.1px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: calc(1280px - 1px)) {
  .header__nav-list {
    gap: 35px;
  }
}
@media (max-width: calc(1024px - 1px)) {
  .header__nav-list {
    gap: 20px;
  }
}
.header__nav-list a {
  font-size: clamp(10px, 10px + (16 - 10) * (100vw - 320px) / 960, 16px);
  color: #003399;
  text-decoration: none;
  position: relative;
}
.header__nav-list a::before, .header__nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 2px;
  transition: width 0.25s ease;
}
.header__nav-list a::before {
  background: #003399;
  left: 0;
}
.header__nav-list a::after {
  background: #CC0000;
  right: 0;
}
@media (min-width: 767.1px) and (any-hover: hover) {
  .header__nav-list a:hover::before, .header__nav-list a:hover::after {
    width: 48%;
  }
}
.header__contact-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 90px;
  height: 100%;
  background: #003399;
  color: #fff;
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  font-weight: 700;
  white-space: nowrap;
}
.header__contact-sp::before {
  content: "";
  display: block;
  width: 29px;
  height: 23px;
  background: url(../images/icon-contact.svg) center/cover;
}
@media (min-width: 767.1px) {
  .header__contact-sp {
    display: none;
  }
}

.footer {
  text-align: center;
  padding: 100px 0 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 767.1px) {
  .footer {
    padding: 155px 0 35px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 45%;
}
@media (min-width: 767.1px) {
  .footer__logo {
    margin-bottom: 12%;
  }
}
.footer__logo-name {
  font-weight: 700;
  color: #003399;
  font-size: clamp(14px, 14px + (14 - 14) * (100vw - 320px) / 960, 14px);
}
.footer .copyright {
  color: #003399;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
}
.footer__line {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-45%);
  width: 246.5%;
  z-index: 3;
  pointer-events: none;
}
@media (min-width: 767.1px) {
  .footer__line {
    width: 109%;
    transform: translateX(-50%);
  }
}
.footer__line img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Components
   ========================================================================== */
.title__set {
  margin-bottom: clamp(40px, 40px + (80 - 40) * (100vw - 320px) / 960, 80px);
}
.title__set-en {
  font-weight: 900;
  font-size: clamp(40px, 40px + (40 - 40) * (100vw - 320px) / 960, 40px);
  color: #003399;
  letter-spacing: 0.05em;
}
.title__set-en .red {
  color: #CC0000;
}
@supports (-webkit-hyphens: none) {
  .title__set-en {
    font-weight: 800;
  }
}
.title__set-ja {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  color: #003399;
}
.title__set--center {
  text-align: center;
  margin-bottom: 0;
}

/* ==========================================================================
   Project (Page-specific)
   ========================================================================== */
.top {
  overflow: hidden;
}

.fv {
  width: 100%;
  height: calc(100vh - 100px - 12vw);
  height: calc(100svh - 100px - 12vw);
  margin-top: 100px;
  margin-bottom: 12vw;
  position: relative;
  overflow: visible;
}
@media (min-width: 767.1px) {
  .fv {
    height: calc(100vh - 120px - 5vw);
    height: calc(100svh - 120px - 5vw);
    margin-top: 120px;
    margin-bottom: 5vw;
  }
}
.fv__slider {
  margin-left: 5vw !important;
  margin-right: 5vw !important;
  height: 100% !important;
  z-index: 1 !important;
  position: relative !important;
  overflow: visible !important;
}
@media (min-width: 767.1px) {
  .fv__slider {
    margin-left: 3.6vw !important;
    margin-right: 3.6vw !important;
  }
}
.fv__slider .swiper-slide-active img,
.fv__slider .swiper-slide-duplicate-active img,
.fv__slider .swiper-slide-prev img {
  animation: fv-zoomup 7s linear 0s normal both;
}
@keyframes fv-zoomup {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.fv__slider .swiper-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.fv__slider .swiper-slide {
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  position: relative;
}
.fv__slider picture {
  display: block;
  width: 100%;
  height: 100%;
}
.fv__slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fv__content {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.8s ease;
}
@media (min-width: 767.1px) {
  .fv__content {
    top: clamp(80px, 80px + (130 - 80) * (100vw - 320px) / 960, 130px);
    left: 15vw;
    transform: translateX(0);
  }
}
.fv.is-navy .fv__content {
  color: #003399;
  text-shadow: 0 0 10px white;
}
.fv__title {
  font-size: clamp(22px, 22px + (28 - 22) * (100vw - 320px) / 960, 28px);
  line-height: 1.7;
  font-family: "kozuka-mincho-pro", serif;
  font-weight: 700;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
@media (min-width: 767.1px) {
  .fv__title {
    text-align: left;
  }
}
.fv .swiper-pagination {
  width: 130px;
  height: 3px;
  opacity: 1;
  margin: 0 5px;
  z-index: 11 !important;
  bottom: -1% !important;
}
.fv .swiper-pagination span {
  width: 40px;
  height: 3px;
  background: #CCCCCC !important;
  border-radius: 0 !important;
  opacity: 1 !important;
}
.fv .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #003399 !important;
}
.fv__line {
  position: absolute;
  bottom: -5vw;
  left: 50%;
  transform: translateX(-45%);
  width: 246.5%;
  z-index: 3;
  pointer-events: none;
}
@media (min-width: 767.1px) {
  .fv__line {
    width: 109%;
    transform: translateX(-50%);
  }
}
.fv__line picture {
  clip-path: inset(0 100% 0 0);
}
.fv__line img {
  width: 100%;
  height: auto;
  display: block;
}
.fv__line.is-animated picture {
  animation: line-reveal 1.3s ease forwards;
}
@keyframes line-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}

.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(216, 243, 255, 0) 0%, rgb(216, 243, 255) 25%, rgb(216, 243, 255) 75%, rgba(216, 243, 255, 0) 100%);
  margin-bottom: 100px;
}
@media (min-width: 767.1px) {
  .about {
    margin-bottom: 180px;
  }
}
.about__top {
  position: relative;
  padding-top: 90px;
  padding-bottom: 38.5%;
  z-index: 2;
}
@media (min-width: 767.1px) {
  .about__top {
    padding-top: 11%;
    padding-bottom: 38.5%;
  }
}
.about__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .about__inner {
    padding-inline: 5vw;
  }
}
.about__inner {
  max-width: 1300px;
  position: relative;
  z-index: 1;
}
.about__text-area {
  margin-bottom: 130px;
  text-align: center;
}
@media (min-width: 767.1px) {
  .about__text-area {
    margin-bottom: 24px;
  }
}
.about__title {
  font-weight: 700;
  font-size: clamp(22px, 22px + (25 - 22) * (100vw - 320px) / 960, 25px);
  color: #003399;
  margin-bottom: 50px;
}
.about__text {
  color: #003399;
  line-height: 2;
}
@media (min-width: 767.1px) {
  .about__text {
    width: 42%;
    margin: 0 auto;
  }
}
.about__text p + p {
  margin-top: 1em;
}
@media (max-width: calc(767.1px - 1px)) {
  .about__images {
    margin-inline: auto;
    padding-inline: 5vw;
    max-width: 1300px;
  }
}
@media (max-width: calc(767.1px - 1px)) and (min-width: 767.1px) {
  .about__images {
    padding-inline: 5vw;
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .about__image-item {
    position: relative;
  }
}
@media (min-width: 767.1px) {
  .about__image-item {
    position: absolute;
  }
}
.about__image-item img {
  width: 100%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: calc(767.1px - 1px)) {
  .about__image-item img {
    position: relative;
    z-index: 2;
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .about__image-item01 {
    margin-bottom: 80px;
  }
}
@media (min-width: 767.1px) {
  .about__image-item01 {
    width: 26%;
    top: 29%;
    left: 2%;
  }
}
.about__image-item01::before, .about__image-item01::after {
  content: "";
  display: block;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
}
.about__image-item01::before {
  width: 61%;
  top: -50%;
  right: 20%;
}
@media (min-width: 767.1px) {
  .about__image-item01::before {
    width: 92%;
    top: 40%;
    right: -20%;
    transform: translateY(-50%);
  }
}
.about__image-item01::after {
  width: 36%;
  top: -20%;
  right: -10%;
}
@media (min-width: 767.1px) {
  .about__image-item01::after {
    width: 53%;
    top: auto;
    bottom: -100%;
    right: -20%;
    transform: translateY(-50%);
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .about__image-item02 {
    margin-bottom: 80px;
  }
}
@media (min-width: 767.1px) {
  .about__image-item02 {
    width: 24%;
    top: 15%;
    right: 2%;
  }
}
.about__image-item02::before {
  content: "";
  display: block;
  height: auto;
  width: 45%;
  bottom: -40%;
  left: 30%;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
}
@media (min-width: 767.1px) {
  .about__image-item02::before {
    width: 71%;
    bottom: -140%;
    left: -25%;
    transform: translateY(-50%);
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .about__image-item03 {
    margin-bottom: 50px;
    width: 53%;
  }
}
@media (min-width: 767.1px) {
  .about__image-item03 {
    width: 17%;
    bottom: 16%;
    left: 7%;
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .about__image-item04 {
    margin-bottom: 80px;
    margin-left: auto;
    width: 67%;
  }
}
@media (min-width: 767.1px) {
  .about__image-item04 {
    width: 20%;
    bottom: 25%;
    left: 35%;
  }
}
@media (min-width: 767.1px) {
  .about__image-item05 {
    width: 26%;
    bottom: 17%;
    right: 7%;
  }
}
.about__image-item05::before {
  content: "";
  display: block;
  height: auto;
  width: 54%;
  top: -25%;
  left: 0;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
}

.parallax__item {
  position: absolute;
  height: auto;
  width: 46%;
  z-index: -1;
}
@media (min-width: 767.1px) {
  .parallax__item {
    width: 20%;
    aspect-ratio: 1/1;
  }
}
.parallax__item.red01 {
  left: -30px;
}
@media (min-width: 767.1px) {
  .parallax__item.red01 {
    left: 30px;
  }
}
.parallax__item.blue01 {
  left: 40px;
}
@media (min-width: 767.1px) {
  .parallax__item.blue01 {
    left: 150px;
  }
}
.parallax__item.blue02 {
  right: 40px;
}
@media (min-width: 767.1px) {
  .parallax__item.blue02 {
    right: 200px;
  }
}
.parallax__item.yellow01 {
  right: -30px;
}
@media (min-width: 767.1px) {
  .parallax__item.yellow01 {
    right: 100px;
  }
}
.parallax__item.green01 {
  left: 30px;
}
@media (min-width: 767.1px) {
  .parallax__item.green01 {
    left: 300px;
  }
}
.parallax__item.yellow02 {
  left: -30px;
}
@media (min-width: 767.1px) {
  .parallax__item.yellow02 {
    left: 200px;
  }
}
.parallax__item.blue03 {
  right: 0;
}
@media (min-width: 767.1px) {
  .parallax__item.blue03 {
    right: 0;
  }
}
.parallax__item.red02 {
  right: 30px;
}
@media (min-width: 767.1px) {
  .parallax__item.red02 {
    right: 100px;
  }
}
.parallax__item.parallax1 {
  --base-top: 700;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax1 {
    --base-top: 300;
  }
}
.parallax__item.parallax2 {
  --base-top: 800;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax2 {
    --base-top: 400;
  }
}
.parallax__item.parallax3 {
  --base-top: 1500;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax3 {
    --base-top: 600;
  }
}
.parallax__item.parallax4 {
  --base-top: 1400;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax4 {
    --base-top: 600;
  }
}
.parallax__item.parallax5 {
  --base-top: 2000;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax5 {
    --base-top: 1200;
  }
}
.parallax__item.parallax6 {
  --base-top: 1800;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax6 {
    --base-top: 1100;
  }
}
.parallax__item.parallax7 {
  --base-top: 2500;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax7 {
    --base-top: 1400;
  }
}
.parallax__item.parallax8 {
  --base-top: 2300;
}
@media (min-width: 767.1px) {
  .parallax__item.parallax8 {
    --base-top: 1400;
  }
}

.group {
  z-index: 5;
  position: relative;
}
.group__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .group__inner {
    padding-inline: 5vw;
  }
}
.group__inner {
  max-width: 1300px;
}
.group__head {
  text-align: center;
}
@media (max-width: calc(767.1px - 1px)) {
  .group__head {
    margin-bottom: 30px;
  }
}
@media (min-width: 767.1px) {
  .group__head::after {
    content: "";
    display: block;
    width: 2px;
    height: 60px;
    background: #003399;
    margin: 0 auto;
  }
}
.group__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #003399;
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 20px + (20 - 20) * (100vw - 320px) / 960, 20px);
  line-height: 1.6;
  text-align: center;
  position: relative;
}
@media (min-width: 767.1px) {
  .group__circle::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #CC0000;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.group__circle::after {
  content: "";
  display: block;
  width: 220px;
  height: 220px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.group__circle p {
  margin: 0;
}
.group__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  position: relative;
}
@media (min-width: 767.1px) {
  .group__list {
    flex-direction: row;
    align-items: stretch;
    gap: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
    padding-top: 60px;
  }
  .group__list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15.3846153846%;
    right: 15.3846153846%;
    height: 2px;
    background: #003399;
  }
}
.group__item {
  background: #fff;
  border: 3px solid #003399;
  border-radius: 10px;
  padding: clamp(20px, 20px + (27 - 20) * (100vw - 320px) / 960, 27px);
  padding-top: clamp(20px, 20px + (27 - 20) * (100vw - 320px) / 960, 27px);
  padding-right: clamp(20px, 20px + (27 - 20) * (100vw - 320px) / 960, 27px);
  padding-bottom: clamp(15px, 15px + (20 - 15) * (100vw - 320px) / 960, 20px);
  padding-left: clamp(20px, 20px + (27 - 20) * (100vw - 320px) / 960, 27px);
  display: flex;
  flex-direction: column;
}
@media (min-width: 767.1px) {
  .group__item {
    flex: 1;
    position: relative;
  }
  .group__item::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: #003399;
  }
}
.group__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.group__name {
  font-weight: 700;
  color: #003399;
  line-height: 1.4;
  margin-right: 6%;
}
.group__tagline {
  font-weight: 700;
  font-size: clamp(14px, 14px + (14 - 14) * (100vw - 320px) / 960, 14px);
  color: #003399;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
}
.group__desc {
  font-size: clamp(14px, 14px + (14 - 14) * (100vw - 320px) / 960, 14px);
}
.group__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 12px + (12 - 12) * (100vw - 320px) / 960, 12px);
  text-decoration: none;
  word-break: break-all;
  margin-top: auto;
  margin-left: auto;
  padding-top: clamp(20px, 20px + (30 - 20) * (100vw - 320px) / 960, 30px);
  line-height: 1.4;
}
.group__link::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/icon-tab.svg) center/cover;
}
@media (min-width: 767.1px) {
  .group__dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .group__dot::before, .group__dot::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #CC0000;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .group__dot::before {
    top: -2px;
  }
  .group__dot::after {
    top: -62px;
  }
}

.president {
  margin-bottom: 100px;
}
@media (min-width: 767.1px) {
  .president {
    margin-bottom: 120px;
  }
}
.president__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .president__inner {
    padding-inline: 5vw;
  }
}
.president__inner {
  max-width: 1300px;
  gap: 50px;
}
@media (min-width: 767.1px) {
  .president__inner {
    display: flex;
    align-items: center;
    gap: 13%;
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .president__text-area {
    margin-bottom: 40px;
  }
}
@media (min-width: 767.1px) {
  .president__text-area {
    flex: 49% 0 0;
  }
}
.president__title {
  font-weight: 700;
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 320px) / 960, 24px);
  margin-bottom: clamp(30px, 30px + (40 - 30) * (100vw - 320px) / 960, 40px);
}
.president__text {
  line-height: 2;
}
.president__text p + p {
  margin-top: 1em;
}
.president__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 767.1px) {
  .president__photo {
    flex: 0 0 38%;
  }
}
@media (max-width: calc(767.1px - 1px)) {
  .president__photo-image {
    max-width: 250px;
    margin: 0 auto;
  }
}
.president__photo-image img {
  width: 100%;
  height: auto;
  display: block;
}
.president__name {
  display: flex;
  align-items: center;
  gap: 35px;
}

.history {
  background: url(../images/history-bg.jpg) center/cover;
  padding-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
  margin-bottom: 100px;
}
@media (min-width: 767.1px) {
  .history {
    margin-bottom: 120px;
    padding-top: 100px;
    padding-bottom: 260px;
  }
}
.history__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .history__inner {
    padding-inline: 5vw;
  }
}
.history__inner {
  padding-right: 0;
}
.history__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(32px, 32px + (60 - 32) * (100vw - 320px) / 960, 60px);
  padding-right: 5vw;
}
.history .title__set {
  margin-bottom: 0;
}
.history__nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.history__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #003399;
  background: #003399;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.history__btn::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/icon-arrow-w.svg) center/cover;
}
.history__btn--prev::before {
  transform: rotate(-180deg);
}
.history__btn.swiper-button-disabled {
  background: transparent;
  pointer-events: none;
}
.history__btn.swiper-button-disabled::before {
  background: url(../images/icon-arrow-b.svg) center/cover;
}
.history__slide {
  position: relative;
  padding-top: 100px;
  padding-right: clamp(30px, 30px + (80 - 30) * (100vw - 320px) / 960, 80px);
}
@media (min-width: 767.1px) {
  .history__slide {
    min-width: 480px;
    padding-top: 120px;
  }
}
.history__slide::before {
  content: "";
  position: absolute;
  top: 75px;
  left: 48px;
  right: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.history__year {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
  font-size: clamp(40px, 40px + (40 - 40) * (100vw - 320px) / 960, 40px);
  color: #fff;
  letter-spacing: 0.05em;
}
@supports (-webkit-hyphens: none) {
  .history__year {
    font-weight: 800;
  }
}
.history__year::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #CC0000;
  border-radius: 50%;
  left: 50%;
  bottom: 2px;
  transform: translate(-50%, 100%);
}
.history__year::before {
  content: "";
  width: 1px;
  height: 80px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, 100%);
}
.history__events {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media (min-width: 767.1px) {
  .history__events {
    padding: 30px;
    gap: 25px;
  }
}
.history__event {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 5px;
  color: #003399;
}
@media (min-width: 767.1px) {
  .history__event {
    flex-direction: row;
    gap: 30px;
  }
}
.history__month {
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.history__desc {
  line-height: 1.6;
}

.recruit__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .recruit__inner {
    padding-inline: 5vw;
  }
}
.recruit__inner {
  max-width: 1300px;
}
.recruit__content {
  background: url(../images/recruit-bg-sp.jpg) center/cover;
  border-radius: 10px;
  padding: 0 0 150px;
}
@media (min-width: 767.1px) {
  .recruit__content {
    padding: 0 50px 300px;
    background: url(../images/recruit-bg.jpg) center/cover;
  }
}
.recruit__header {
  background: #fff;
  margin-bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  padding: 15px 55px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 767.1px) {
  .recruit__header {
    padding: 20px 140px;
    margin: 0 auto 100px;
  }
}
.recruit__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 767.1px) {
  .recruit__list {
    gap: 15px 2%;
  }
}
.recruit__list-item {
  background: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #003399;
  font-weight: 600;
  padding: 20px 30px;
  width: 80%;
  transition: 0.3s ease;
}
@media (min-width: 767.1px) {
  .recruit__list-item {
    width: 320px;
    padding: 30px 40px;
  }
}
.recruit__list-item::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/icon-tab.svg) center/contain;
  transition: 0.3s ease;
}
@media (min-width: 767.1px) {
  .recruit__list-item::after {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 767.1px) and (any-hover: hover) {
  .recruit__list-item:hover {
    background: #003399;
    color: #fff;
  }
  .recruit__list-item:hover::after {
    background: url(../images/icon-tab-w.svg) center/contain;
  }
}

.contact {
  overflow: hidden;
  margin-top: 100px;
}
@media (min-width: 767.1px) {
  .contact {
    margin-top: 170px;
  }
}
.contact__fv {
  margin-bottom: 50px;
}
@media (min-width: 767.1px) {
  .contact__fv {
    margin-bottom: 80px;
  }
}
.contact__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .contact__inner {
    padding-inline: 5vw;
  }
}
.contact__inner {
  max-width: 1300px;
}
@media (max-width: 852px) {
  .contact__inner iframe {
    height: 1000px !important;
  }
}

.not-found {
  overflow: hidden;
  margin-top: 100px;
}
@media (min-width: 767.1px) {
  .not-found {
    margin-top: 170px;
  }
}
.not-found__fv {
  margin-bottom: clamp(40px, 40px + (80 - 40) * (100vw - 320px) / 960, 80px);
}
.not-found__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .not-found__inner {
    padding-inline: 5vw;
  }
}
.not-found__inner {
  max-width: 1300px;
  text-align: center;
}
.not-found__text {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  line-height: 1.8;
  margin-bottom: clamp(32px, 32px + (48 - 32) * (100vw - 320px) / 960, 48px);
  color: #000;
}
.not-found__btn {
  display: inline-block;
  padding: 20px 60px;
  border-radius: 50px;
  background-color: #003399;
  color: #fff;
  transition: opacity 0.3s;
}
.not-found__btn:hover {
  opacity: 0.7;
}

.thanks {
  overflow: hidden;
  margin-top: 100px;
}
@media (min-width: 767.1px) {
  .thanks {
    margin-top: 170px;
  }
}
.thanks__fv {
  margin-bottom: clamp(40px, 40px + (80 - 40) * (100vw - 320px) / 960, 80px);
}
.thanks__inner {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .thanks__inner {
    padding-inline: 5vw;
  }
}
.thanks__inner {
  max-width: 1300px;
  text-align: center;
}
.thanks__text {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  line-height: 1.8;
  margin-bottom: clamp(32px, 32px + (48 - 32) * (100vw - 320px) / 960, 48px);
  color: #000;
}
.thanks__btn {
  display: inline-block;
  padding: 20px 60px;
  border-radius: 50px;
  background-color: #003399;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.thanks__btn:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.u-mt0 {
  margin-top: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mt-sm {
  margin-top: 12px !important;
}

.u-mt-md {
  margin-top: 20px !important;
}

.u-mt-lg {
  margin-top: 32px !important;
}

.u-mb-sm {
  margin-bottom: 12px !important;
}

.u-mb-md {
  margin-bottom: 20px !important;
}

.u-mb-lg {
  margin-bottom: 32px !important;
}

.u-pt-sm {
  padding-top: 12px !important;
}

.u-pt-md {
  padding-top: 20px !important;
}

.u-pt-lg {
  padding-top: 32px !important;
}

.u-pb-sm {
  padding-bottom: 12px !important;
}

.u-pb-md {
  padding-bottom: 20px !important;
}

.u-pb-lg {
  padding-bottom: 32px !important;
}

.u-txt-center {
  text-align: center !important;
}

.u-txt-right {
  text-align: right !important;
}

.u-txt-left {
  text-align: left !important;
}

.u-flex {
  display: flex !important;
}

.u-inline {
  display: inline !important;
}

.u-inlineblk {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.u-flex-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.u-w100 {
  width: 100% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
  }
}
@media (min-width: 767.1px) {
  .u-hidden-md {
    display: none !important;
  }
}
.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}/*# sourceMappingURL=common.css.map */