@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
a,
b {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  width: 100%;
  height: 100svh;
  height: calc(var(--vh, 1vh) * 100);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --white: #fff;
  --blue_main: #293a95;
  --color-light-blue: #e8f5ff;
  --color-black: #1c1c1c;
}

html {
  overflow-y: scroll;
}

@media screen and (min-width: 1201px) {
  .tab {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.is-no-webp #container::before {
  background: url(../image/top-back.png) center/cover;
}

.is-webp #container::before {
  background: url(../image/top-back.webp) center/cover;
}

@media (max-width: 768px) {
  .is-no-webp #container::before {
    background: url(../image/top-back-sp.png) center/cover;
  }
  .is-webp #container::before {
    background: url(../image/top-back-sp.webp) center/cover;
  }
}
.is-no-webp .slide3 {
  background: url(../image/slide3.png) 0% 70%/cover;
}

.is-webp .slide3 {
  background: url(../image/slide3.webp) 0% 70%/cover;
}

@media (max-width: 1440px) {
  .is-no-webp .slide3 {
    background: url(../image/slide3.png) left/cover;
  }
  .is-webp .slide3 {
    background: url(../image/slide3.webp) left/cover;
  }
}
@media (max-width: 768px) {
  .is-no-webp .slide3 {
    background: url(../image/slide3.png) bottom left/cover;
  }
  .is-webp .slide3 {
    background: url(../image/slide3.webp) bottom left/cover;
  }
}
.is-no-webp .slide2 {
  background: url(../image/slide2.png) 60% 100%/cover;
}

.is-webp .slide2 {
  background: url(../image/slide2.webp) 60% 100%/cover;
}

@media (max-width: 1440px) {
  .is-no-webp .slide2 {
    background: url(../image/slide2.png) right/cover;
  }
  .is-webp .slide2 {
    background: url(../image/slide2.webp) right/cover;
  }
}
@media (max-width: 768px) {
  .is-no-webp .slide2 {
    background: url(../image/slide2.png) 40% 70%/cover;
  }
  .is-webp .slide2 {
    background: url(../image/slide2.webp) 30% 70%/cover;
  }
}
.is-no-webp .slide1 {
  background: url(../image/slide1.png) center/cover;
}

.is-webp .slide1 {
  background: url(../image/slide1.webp) center/cover;
}

@media (max-width: 1440px) {
  .is-no-webp .slide1 {
    background: url(../image/slide1.png) center/cover;
  }
  .is-webp .slide1 {
    background: url(../image/slide1.webp) center/cover;
  }
}
@media (max-width: 768px) {
  .is-no-webp .slide1 {
    background: url(../image/slide1.png) center center/cover;
  }
  .is-webp .slide1 {
    background: url(../image/slide1.webp) center center/cover;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  align-items: center;
  padding-left: 100px;
  height: 130px;
  transition: background-color 1s ease, color 1s ease, padding 1s ease;
}
.header__logo {
  max-width: 253px;
  padding-top: 40px;
}
.header__right {
  display: flex;
  gap: 80px;
  align-items: center;
}
.header__right a {
  display: block;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  letter-spacing: 1.4px;
}
.header__right-contact {
  padding: 40px 50px;
  background: var(--white);
  transition: background-color 1s ease, color 1s ease, padding 1s ease;
}
.header__right-contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.header__right-contact img {
  max-width: 25px;
  aspect-ratio: 25/18;
}
.header__right-contact p {
  color: var(--blue_main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 1.4px;
}
.header.transform {
  background: #fff;
}
.header.transform .header__right a {
  color: var(--blue_main);
}
.header.transform .header__right-contact {
  background: var(--blue_main);
}
.header.transform .header__right-contact p {
  color: #fff;
}
.header.transform .header__logo {
  aspect-ratio: 203/70;
  max-width: 203px;
  padding-top: 0;
}
.header.transform .header__logo img {
  animation: fadeOutIn 1s ease-in-out;
}
@keyframes fadeOutIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (width <= 1040px) {
  .header {
    display: none;
  }
}

.sp-header {
  display: none;
}
@media screen and (width <= 1040px) {
  .sp-header {
    display: block;
    height: 100px;
    z-index: 999;
    padding-left: 5.333vw;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: padding 0.7s, background-color 0.7s;
  }
}
@media screen and (width <= 768px) {
  .sp-header {
    height: 97px;
  }
}
.sp-header.transform {
  background-color: #fff;
}
.sp-header.transform .humburger__bars .humburger__bar {
  background: var(--blue_main);
}
.sp-header.close {
  background-color: transparent;
}

.sp-menu {
  display: none;
}
@media screen and (width <= 1040px) {
  .sp-menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s ease;
    padding-top: 16vw;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    height: 100svh; /* Fallback for browsers that do not support Custom Properties */
    background-color: var(--color-blue);
  }
}
.sp-menu.close {
  display: block;
  pointer-events: auto;
  opacity: 1;
  overflow-y: scroll;
  background: var(--bk_gray, #f5f5f5);
  padding-bottom: 51.467vw;
}
@media screen and (width <= 768px) {
  .sp-menu.close {
    overflow-y: initial;
  }
}
.sp-menu__container {
  padding-top: 45px;
}
.sp-menu__nav {
  margin-bottom: 60px;
  width: 78.666%;
  margin-inline: auto;
}
.sp-menu__nav-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sp-menu__nav-item .item__contens {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--blue_main);
}
.sp-menu__nav-item .item__contens-left {
  color: var(--blue_main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.8vw;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.48vw;
}
.sp-menu__nav-item .item-name {
  color: var(--gray_LINE, #d4d4d4);
  font-family: "Lato", sans-serif;
  font-size: 3.2vw;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 21.6px */
  letter-spacing: 0.16vw;
  text-transform: uppercase;
}
.sp-menu .button {
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #293a95 0%, #132271 100%);
  padding: 20px 0px;
  min-width: 360px;
  margin-inline: auto;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 2px;
  transition: background-color 0.7s ease, border-color 0.7s ease, color 0.7s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
@media screen and (width <= 768px) {
  .sp-menu .button {
    font-size: 3.733vw;
    font-style: normal;
    letter-spacing: 0.373vw;
    min-width: 78.667vw;
  }
}
.sp-menu .button:hover {
  background: transparent;
  border-color: var(--blue_main);
  color: var(--blue_main);
}
.sp-menu .button:hover::after {
  background: url(../image/button-hover.svg) center/cover;
}
.sp-menu .button::after {
  content: "";
  display: block;
  background: url("../image/button.svg") center/cover no-repeat;
  width: 12px;
  height: 20px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}
.sp-menu .button {
  width: 78.666%;
  min-width: initial;
  font-size: 4.267vw;
  letter-spacing: 0.427vw;
}
.sp-menu .button::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../image/mail.svg") center/cover;
  top: 50%;
  width: 6.667vw;
  height: 4.8vw;
  flex-shrink: 0;
  transform: translateY(-50%);
  left: 8%;
}

.sp-header__logo {
  line-height: 0%;
  padding-top: 35px;
}
@media screen and (width <= 768px) {
  .sp-header__logo {
    padding-top: 25px;
  }
}
.sp-header__logo img {
  vertical-align: text-top;
}
@media screen and (width <= 1040px) {
  .sp-header__logo img {
    aspect-ratio: 137/47;
    width: 137px;
    height: 47px;
  }
}

.sp-header__humburger-sns {
  display: flex;
  align-items: center;
}

.sp-header__sns {
  display: flex;
  align-items: center;
}
.sp-header__sns a {
  margin-right: 8vw;
}
@media screen and (width <= 1040px) {
  .sp-header__sns a img {
    width: 53px;
  }
}
@media screen and (width <= 768px) {
  .sp-header__sns a img {
    width: 25px;
  }
}

.humburger__container {
  padding: 16px 0px;
}
@media screen and (width <= 1040px) {
  .humburger__container {
    padding: 0;
    display: flex;
    align-items: center;
  }
}

.humburger__bars .humburger__bar {
  display: block;
  width: 100%;
  height: 0.267vw;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
}
@media screen and (width <= 1040px) {
  .humburger__bars .humburger__bar {
    width: 55px;
    height: 2px;
  }
}
@media screen and (width <= 768px) {
  .humburger__bars .humburger__bar {
    width: 30px;
  }
}
@media screen and (width <= 1040px) {
  .humburger__bars .humburger__bar:nth-child(2) {
    margin-top: 10px;
  }
}
@media screen and (width <= 768px) {
  .humburger__bars .humburger__bar:nth-child(2) {
    margin-top: 8px;
  }
}

.humburgers__title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (width <= 1040px) {
  .humburgers__title {
    font-size: 18px;
    margin-top: 8.7px;
  }
}
@media screen and (width <= 768px) {
  .humburgers__title {
    font-size: 10px;
  }
}

.humburgers__title-close {
  display: none;
}

.sp-header__humburger {
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: all 0.7s ease;
}
@media screen and (width <= 1040px) {
  .sp-header__humburger {
    width: 100px;
    height: 100px;
    align-items: initial;
  }
}
@media screen and (width <= 768px) {
  .sp-header__humburger {
    width: 97px;
    height: 97px;
    align-items: center;
  }
}
.sp-header__humburger.close .humburger__bar {
  background: var(--blue_main);
}
.sp-header__humburger.close .humburger__bar:first-child {
  transform: rotate(45deg);
}
@media screen and (width <= 1040px) {
  .sp-header__humburger.close .humburger__bar:first-child {
    top: 22px;
  }
}
@media screen and (width <= 768px) {
  .sp-header__humburger.close .humburger__bar:first-child {
    top: -4px;
  }
}
.sp-header__humburger.close .humburger__bar:last-child {
  transform: rotate(-45deg);
  margin: 0;
}
@media screen and (width <= 1040px) {
  .sp-header__humburger.close .humburger__bar:last-child {
    top: 18px;
  }
}
@media screen and (width <= 768px) {
  .sp-header__humburger.close .humburger__bar:last-child {
    top: -7px;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown1 {
  position: absolute;
  left: 50%;
  bottom: -35px;
  height: 70px;
  background: #fff;
  width: 1px;
  z-index: 2;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  position: absolute;
  left: 10px;
  top: 57px;
  color: var(--blue_main);
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: var(--blue_main);
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30%;
    opacity: 1;
  }
  100% {
    height: 60%;
    top: 60%;
    opacity: 0;
  }
}
/*========= レイアウトのためのCSS ===============*/
.slide {
  width: 100%;
  height: 100svh;
  position: relative;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.slide:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100svh;
  background: linear-gradient(90deg, #293a95 0%, #132271 34.48%);
  background-size: cover;
  clip-path: polygon(0 0, 25% 0%, 51% 100%, 0% 100%);
}
@media screen and (width <= 768px) {
  .slide:before {
    clip-path: polygon(0 0, 46% 0%, 61% 100%, 0% 100%);
  }
}

.slide h1 {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  top: 42%;
  left: 10%;
  color: #fff;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック", "Yu Gothic Medium", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  font-size: 100px;
}
@media screen and (width <= 768px) {
  .slide h1 {
    letter-spacing: 0px;
    left: 7%;
    top: 42vh;
    font-size: 10.667vw;
  }
}
.slide h1 span {
  color: #fff;
  font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック", "Yu Gothic Medium", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 130px */
  letter-spacing: 6px;
  font-size: clamp(2.5rem, 1.363rem + 5.43vw, 6.25rem);
}
@media screen and (width <= 768px) {
  .slide h1 span {
    letter-spacing: 0.64vw;
    word-break: keep-all;
  }
}

.slide h1 .size-80{
  font-size: 80px;
}
@media screen and (width <=768px) {
  .slide h1 .size-80 {
    font-size: 8.533vw;
  }
}
.slide p {
  content: "";
  position: fixed;
  top: 70%;
  left: 0;
  z-index: 1;
  color: var(--white, #fff);
  font-family: "Impact", "Arial Black", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 170px */
  letter-spacing: 8.5px;
  text-transform: uppercase;
  opacity: 0.1;
  font-size: 100px;
}
@media screen and (width <= 768px) {
  .slide p {
    font-size: 10.667vw;
    letter-spacing: 0.76vw;
    top: 60%;
    top: 60vh;
  }
}

/* ==========================
  Swiperのスタイルを調整
========================== */
.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --swiper-theme-color: transparent !important;
}

.swiper-slide {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100vh !important;
  font-size: 10vw !important;
  text-align: center;
  color: #fff;
  /* transition: 0.5s all; */
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  /* bottom: var(--swiper-pagination-bottom,8px); */
  /* top: var(--swiper-pagination-top,auto); */
  /* left: 67%; */
  width: 100%;
  right: -90%;
  bottom: unset !important;
  top: 60% !important;
  /* transform: translateY(-50%); */
  left: unset !important;
}
@media screen and (width <= 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 63% !important;
    right: -85% !important;
  }
}

/* .swiper-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 30px;
} */
/* button style */
.swiper-pagination-bullet {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  margin: 20px 0px !important;
  background-color: transparent !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: 0.3s !important;
}
@media screen and (width <= 768px) {
  .swiper-pagination-bullet {
    margin: 2.667vw 0px !important;
  }
}

.swiper-pagination-bullet span {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* button circle */
.progress {
  transform: rotate(-90deg);
}

.circle-origin {
  fill: transparent;
  stroke: rgb(255, 255, 255);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
}

.swiper-pagination-bullet-active .circle-origin {
  animation: progress 5s;
}

@keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -125.664px;
  }
}
/* スライド1の背景画像 */
/* 共通のスタイル */
.swiper-slide-background {
  background-repeat: no-repeat !important;
}
@media screen and (width >= 1441px) {
  .swiper-slide-background {
    background-size: cover !important;
  }
}
@media screen and (width <= 1040px) {
  .swiper-slide-background {
    background-size: cover !important;
  }
}

@media screen and (width <=1440px) {
  .swiper-wrapper {
    transform: translateX(25%) !important;
  }
}
@media screen and (width <= 768px) {
  .swiper-wrapper {
    transform: none !important;
  }
}

/* 個別の背景画像 */
.slide3 {
  background-position: bottom left;
}
main {
  overflow: hidden;
}

.main-first {
  position: relative;
}
.main-first::before {
  position: absolute;
  width: 100%;
  height: 200px;
  content: "";
  display: block;
  top: 0;
  background: linear-gradient(to bottom, rgba(233, 231, 231, 0.5), transparent); /* 赤色のぼかし */
  z-index: 2;
}
@media screen and (width <= 768px) {
  .main-first::before {
    display: none;
  }
}
.main-first::after {
  position: absolute;
  width: 100%;
  content: "";
  display: block;
  bottom: 0;
  background: linear-gradient(to top, rgba(233, 231, 231, 0.5), transparent);
  height: 200px;
  z-index: 1;
}
@media screen and (width <= 768px) {
  .main-first::after {
    height: 21.333vw;
  }
}

#container {
  position: relative;
  z-index: 1;
  background: var(--white, #fff);
  padding: 225px 0px 190px;
  width: 100%;
}
@media screen and (width <= 768px) {
  #container {
    padding-top: 25.333vw;
    padding-bottom: 16vw;
  }
}
#container::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0%;
}
@media screen and (width <= 768px) {
  #container::before {
    z-index: -1;
  }
}

.main__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(86.18%, 1241px);
  margin-inline: auto;
}
@media screen and (width <= 768px) {
  .main__container {
    width: max(89.333%, 335px);
    flex-direction: column-reverse;
  }
}
.main__container-right {
  width: 54.344%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (width <= 768px) {
  .main__container-right {
    width: 100%;
    margin-bottom: 8vw;
    gap: 8vw;
  }
}
.main__container-right h2 {
  color: var(--blue_main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 57.6px */
  letter-spacing: 3.2px;
}
@media screen and (width <= 768px) {
  .main__container-right h2 {
    font-size: 5.333vw;
    letter-spacing: 0.533vw;
    text-align: center;
  }
}
.main__container-right p {
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 1.6px;
  width: 81.13%;
}
@media screen and (width <= 768px) {
  .main__container-right p {
    font-size: 3.733vw;
    letter-spacing: 0.373vw;
    width: 100%;
  }
}
.main__container-left {
  width: 37%;
  position: relative;
}
@media screen and (width <= 768px) {
  .main__container-left {
    width: 88%;
    margin-inline: auto;
  }
}
.main__container-left img {
  aspect-ratio: 459/465;
  width: 100%;
}
.main__container-left .contents-blue {
  aspect-ratio: 459/465;
  width: 100%;
  background: var(--blue_main);
  position: absolute;
  top: 5%;
  right: -6%;
  z-index: -1;
}
@media screen and (width <= 768px) {
  .main__container-left .contents-blue {
    top: 4%;
    right: -5%;
    width: 100%;
  }
}

.main-service {
  background: var(--bk_gray, #f5f5f5);
  padding: 160px 0px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (width <= 768px) {
  .main-service {
    padding: 16vw 0px;
  }
}
@media screen and (width <= 768px) {
  .main-service {
    gap: 8vw;
  }
}
.main-service .title-en {
  color: var(--blue_main);
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
@media screen and (width <= 768px) {
  .main-service .title-en {
    font-size: 4.267vw;
    letter-spacing: 0.427vw;
  }
}
.main-service .title-ja {
  color: var(--color-black);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 72px */
  letter-spacing: 4px;
  position: relative;
}
@media screen and (width <= 768px) {
  .main-service .title-ja {
    font-size: 6.4vw;
    letter-spacing: 0.64vw;
  }
}
.main-service .title-ja::before {
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  aspect-ratio: 76/5;
  background-color: var(--blue_sab, #aec9eb);
}
@media screen and (width <= 768px) {
  .main-service .title-ja::before {
    width: 13.333vw;
    bottom: -30%;
  }
}
.main-service__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (width <= 768px) {
  .main-service__content {
    gap: 16vw;
  }
}
.main-service__content--inner {
  display: flex;
  width: 100%;
  margin: auto;
}

@media screen and (width <=768px) {
  .main-service__content--inner {
    flex-direction: column;
  }
}

@media screen and (width <= 768px) {
  .main-service__contents {
    width: max(89.333%, 335px);
    margin-inline: auto;
    flex-direction: column;
  }
}

@media screen and (width <= 768px) {
  .main-service__contents .contents-left {
    width: 100%;
  }
}

.main-service__contents .contents-left div .service-title {
  color: #293A95;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.2px;
}

@media screen and (width <=768px) {
.main-service__contents .contents-left div .service-title {
  font-size: 5.333vw;
  margin-left: 2.667vw;
  }
}

.main-service__contents .contents-left div {
  color: rgba(41, 58, 149, 0.1);
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 128px */
  font-size: clamp(2.625rem, 1.905rem + 3.44vw, 5rem);
  display: contents;
}

@media screen and (width <= 768px) {
  .main-service__contents .contents-left div {
    transform: none;
    align-items: center;
    display: flex;
  }
}
.main-service__contents .contents-left div span {
  color: rgba(41, 58, 149, 0.1);
  font-weight: 700;
  line-height: 160%;
  font-size: clamp(3.5rem, 2.666rem + 3.98vw, 6.25rem);
}
@media screen and (width <= 768px) {
  .main-service__contents .contents-left div span {
    line-height: 180%;
  }
}
.main-service__contents .contents-left h3 {
  color: var(--blue_main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  letter-spacing: 2.4px;
  margin-bottom: 30px;
}
@media screen and (width <= 768px) {
  .main-service__contents .contents-left h3 {
    font-size: 5.333vw;
    letter-spacing: 0.533vw;
    margin-bottom: 5.333vw;
  }
}
.main-service__contents .contents-left p {
  width: 90.95%;
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 1.6px;
  font-size: clamp(0.875rem, 0.837rem + 0.18vw, 1rem);
}
@media screen and (width <= 768px) {
  .main-service__contents .contents-left p {
    letter-spacing: 0.373vw;
    margin-bottom: 8vw;
    width: 100%;
  }
}

.main-service__contents .contents-right img {

}
.main-service__contents.reverse {
  margin-right: auto;
  flex-direction: row-reverse;
  margin-left: initial;
}
@media screen and (width <= 768px) {
  .main-service__contents.reverse {
    margin-inline: auto;
    flex-direction: column;
  }
}

@media screen and (width <= 768px) {
  .main-service__contents.reverse .contents-left div {
    transform: none;
  }
}
.main-service .button {
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #293a95 0%, #132271 100%);
  padding: 20px 0px;
  min-width: 360px;
  margin-inline: auto;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 2px;
  transition: background-color 0.7s ease, border-color 0.7s ease, color 0.7s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
@media screen and (width <= 768px) {
  .main-service .button {
    font-size: 3.733vw;
    font-style: normal;
    letter-spacing: 0.373vw;
    min-width: 78.667vw;
  }
}
.main-service .button:hover {
  background: transparent;
  border-color: var(--blue_main);
  color: var(--blue_main);
}
.main-service .button:hover::after {
  background: url(../image/button-hover.svg) center/cover;
}
.main-service .button::after {
  content: "";
  display: block;
  background: url("../image/button.svg") center/cover no-repeat;
  width: 12px;
  height: 20px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}

.main-company {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  gap: 110px;
  align-items: center;
}
@media screen and (width <= 768px) {
  .main-company {
    padding-top: 16vw;
  }
}
@media screen and (width <= 768px) {
  .main-company {
    gap: 8vw;
  }
}
.main-company .title-en {
  color: var(--blue_main);
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
@media screen and (width <= 768px) {
  .main-company .title-en {
    font-size: 4.267vw;
    letter-spacing: 0.427vw;
  }
}
.main-company .title-ja {
  color: var(--color-black);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 72px */
  letter-spacing: 4px;
  position: relative;
}
@media screen and (width <= 768px) {
  .main-company .title-ja {
    font-size: 6.4vw;
    letter-spacing: 0.64vw;
  }
}
.main-company .title-ja::before {
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  aspect-ratio: 76/5;
  background-color: var(--blue_sab, #aec9eb);
}
@media screen and (width <= 768px) {
  .main-company .title-ja::before {
    width: 13.333vw;
    bottom: -30%;
  }
}
.main-company__container {
  width: min(86.18%, 1241px);
  margin-inline: auto;
}
@media screen and (width <= 768px) {
  .main-company__container {
    width: max(89.333%, 335px);
  }
}
.main-company__contents {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (width <= 768px) {
  .main-company__contents {
    flex-direction: column;
    margin-bottom: 8vw;
  }
}
.main-company__contents .contents-left {
  width: 49.9%;
}
@media screen and (width <= 768px) {
  .main-company__contents .contents-left {
    width: 100%;
  }
}
.main-company__contents .contents-left img {
  aspect-ratio: 587/536;
}
.main-company__contents .contents-right {
  width: 47.86%;
}
@media screen and (width <= 768px) {
  .main-company__contents .contents-right {
    width: 100%;
  }
}
.main-company__contents .contents-right table {
  width: 100%;
  height: 100%;
}
.main-company__contents .contents-right table,
.main-company__contents .contents-right td {
  border-collapse: collapse;
}
.main-company__contents .contents-right td:first-child {
  width: 17.569%;
  border-bottom: 1px solid var(--blue_main);
  color: var(--blue_main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.8px;
}
@media screen and (width <= 768px) {
  .main-company__contents .contents-right td:first-child {
    font-size: 3.733vw;
    letter-spacing: 0.373vw;
  }
}
.main-company__contents .contents-right td:nth-child(2) {
  border-bottom: 1px solid #d4d4d4;
  padding-left: 31px;
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}
@media screen and (width <= 768px) {
  .main-company__contents .contents-right td:nth-child(2) {
    font-size: 3.733vw;
    letter-spacing: 0.373vw;
    padding: 4vw 0px;
    padding-left: 11.2vw;
  }
}
.main-company .google-map iframe {
  width: 100%;
  height: 418px;
  vertical-align: middle;
}
@media screen and (width <= 768px) {
  .main-company .google-map iframe {
    width: 111.94%;
    transform: translateX(-5.5%);
    height: 100vw;
  }
}

.main-recruit {
  padding-top: 160px;
  position: relative;
  z-index: 1;
  background: var(--white, #fff);
  display: flex;
  flex-direction: column;
  gap: 110px;
  align-items: center;
}
@media screen and (width <= 768px) {
  .main-recruit {
    padding-top: 16vw;
  }
}
@media screen and (width <= 768px) {
  .main-recruit {
    gap: 8vw;
  }
}
.main-recruit .title-en {
  color: var(--blue_main);
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
@media screen and (width <= 768px) {
  .main-recruit .title-en {
    font-size: 4.267vw;
    letter-spacing: 0.427vw;
  }
}
.main-recruit .title-ja {
  color: var(--color-black);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 72px */
  letter-spacing: 4px;
  position: relative;
}
@media screen and (width <= 768px) {
  .main-recruit .title-ja {
    font-size: 6.4vw;
    letter-spacing: 0.64vw;
  }
}
.main-recruit .title-ja::before {
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  aspect-ratio: 76/5;
  background-color: var(--blue_sab, #aec9eb);
}
@media screen and (width <= 768px) {
  .main-recruit .title-ja::before {
    width: 13.333vw;
    bottom: -30%;
  }
}
.main-recruit__contents {
  width: min(72.2222%, 1040px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media screen and (width <= 1270px) {
  .main-recruit__contents {
    width: min(100%, 1040px);
  }
}
@media screen and (width <= 768px) {
  .main-recruit__contents {
    grid-template-columns: 1fr; /* スマートフォンでは1列 */
    width: max(89.333%, 335px);
  }
}
.main-recruit__contents .contents-left img {
  aspect-ratio: 520/398;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media screen and (width <= 768px) {
  .main-recruit__contents .contents-left img {
    aspect-ratio: 335/167;
    max-height: 44.533vw;
  }
}
.main-recruit__contents .contents-right {
  background: var(--blue_main);
}
.main-recruit__contents .contents-right__container {
  height: 100%;
  width: 91.23%;
  margin-inline: auto;
  padding: 44px 0px 87px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}
@media screen and (width <= 1270px) {
  .main-recruit__contents .contents-right__container {
    width: 92.23%;
  }
}
@media screen and (width <= 768px) {
  .main-recruit__contents .contents-right__container {
    width: 88%;
    gap: 0;
    padding: 5.333vw 0px 8vw;
  }
}
.main-recruit__contents .contents-right__container h3 {
  color: var(--white, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 57.6px */
  letter-spacing: 3.2px;
  text-align: center;
}
@media screen and (width <= 768px) {
  .main-recruit__contents .contents-right__container h3 {
    font-size: 5.333vw;
    letter-spacing: 0.533vw;
    margin-bottom: 10px;
  }
}
.main-recruit__contents .contents-right__container p {
  color: var(--white, #fff);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 1.6px;
}
@media screen and (width <= 768px) {
  .main-recruit__contents .contents-right__container p {
    font-size: 3.733vw;
    letter-spacing: 0.373vw;
    margin-bottom: 5.333vw;
    text-align: center;
  }
}
.main-recruit__contents .contents-right__container .button {
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #293a95 0%, #132271 100%);
  padding: 20px 0px;
  min-width: 360px;
  margin-inline: auto;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 2px;
  transition: background-color 0.7s ease, border-color 0.7s ease, color 0.7s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
@media screen and (width <= 768px) {
  .main-recruit__contents .contents-right__container .button {
    font-size: 3.733vw;
    font-style: normal;
    letter-spacing: 0.373vw;
    min-width: 78.667vw;
  }
}
.main-recruit__contents .contents-right__container .button:hover {
  background: transparent;
  border-color: var(--blue_main);
  color: var(--blue_main);
}
.main-recruit__contents .contents-right__container .button:hover::after {
  background: url(../image/button-hover.svg) center/cover;
}
.main-recruit__contents .contents-right__container .button::after {
  content: "";
  display: block;
  background: url("../image/button.svg") center/cover no-repeat;
  width: 12px;
  height: 20px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}
.main-recruit__contents .contents-right__container .button {
  background: var(--white, #fff);
  color: var(--blue_main);
  line-height: 180%; /* 36px */
}
.main-recruit__contents .contents-right__container .button::after {
  background: url(../image/button-hover.svg) center/cover no-repeat;
}
.main-recruit__contents .contents-right__container .button:hover {
  color: var(--white, #fff);
  border: 1px solid var(--white, #fff);
}
.main-recruit__contents .contents-right__container .button:hover::after {
  background: url(../image/button.svg) center/cover no-repeat;
}

.main-sns {
  position: relative;
  background: var(--white);
  padding-top: 160px;
  z-index: 1;
}
@media screen and (width <= 768px) {
  .main-sns {
    padding-top: 16vw;
  }
}
.main-sns__contents {
  width: min(53.472%, 770px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  min-height: 155px;
}
@media screen and (width <= 1270px) {
  .main-sns__contents {
    width: min(67.472%, 770px);
  }
}
@media screen and (width <= 768px) {
  .main-sns__contents {
    width: max(78.6666%, 295px);
    grid-template-columns: 1fr;
  }
}
.main-sns__contents .contents-left {
  color: var(--blue_main);
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 72px */
  letter-spacing: 4px;
  text-transform: uppercase;
  border-right: 2px solid var(--blue_main);
  display: flex;
  align-items: center;
}
@media screen and (width <= 768px) {
  .main-sns__contents .contents-left {
    font-size: 6.4vw;
    letter-spacing: 0.64vw;
    border-right: none;
    border-bottom: 2px solid var(--blue_main);
    justify-content: center;
  }
}
.main-sns__contents .contents-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 80px;
  padding-right: 20px;
}
@media screen and (width <= 768px) {
  .main-sns__contents .contents-right {
    padding-top: 10.667vw;
    width: 47.4%;
    margin-inline: auto;
    gap: 0;
    justify-content: space-between;
    padding: 0;
    padding-top: 10.667vw;
  }
}
.main-sns__contents .contents-right a {
  width: 15.584%;
}
@media screen and (width <= 768px) {
  .main-sns__contents .contents-right a {
    width: 28.58%;
  }
}
.main-sns__contents .contents-right img {
  aspect-ratio: 1/1;
  width: 100%;
}

.main-contact {
  background: var(--white);
  height: 595px;
}
@media screen and (width <= 768px) {
  .main-contact {
    height: initial;
    padding-top: 16vw;
  }
}
.main-contact__contents {
  box-shadow: 0px 9px 17px 0px rgba(8, 42, 145, 0.09);
  padding: 107px 0px 90px;
  width: min(86.1111%, 1240px);
  margin-inline: auto;
  background: var(--blue_main);
  position: relative;
  transform: translateY(160px);
  display: flex;
  flex-direction: column;
  gap: 110px;
  align-items: center;
}
@media screen and (width <= 768px) {
  .main-contact__contents {
    transform: none;
    width: max(100%, 375px);
    padding: 16vw 0px;
  }
}
@media screen and (width >= 1441px) {
  .main-contact__contents {
    width: max(86.1111%, 1240px);
  }
}
.main-contact__contents::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #33449e;
  top: 0%;
  left: 0%;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
@media screen and (width <= 768px) {
  .main-contact__contents {
    gap: 8vw;
  }
}
.main-contact__contents .title-en {
  color: var(--blue_main);
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
@media screen and (width <= 768px) {
  .main-contact__contents .title-en {
    font-size: 4.267vw;
    letter-spacing: 0.427vw;
  }
}
.main-contact__contents .title-ja {
  color: var(--color-black);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 72px */
  letter-spacing: 4px;
  position: relative;
}
@media screen and (width <= 768px) {
  .main-contact__contents .title-ja {
    font-size: 6.4vw;
    letter-spacing: 0.64vw;
  }
}
.main-contact__contents .title-ja::before {
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  aspect-ratio: 76/5;
  background-color: var(--blue_sab, #aec9eb);
}
@media screen and (width <= 768px) {
  .main-contact__contents .title-ja::before {
    width: 13.333vw;
    bottom: -30%;
  }
}
.main-contact__contents .title-en,
.main-contact__contents .title-ja {
  color: var(--white);
}
.main-contact__contents {
  gap: 80px;
}
@media screen and (width <= 768px) {
  .main-contact__contents {
    gap: 10vw;
  }
}
.main-contact__title {
  position: inherit;
  z-index: 1;
}
.main-contact__title .title-ja::before {
  background: var(--white);
}
@media screen and (width <= 768px) {
  .main-contact__title .title-ja::before {
    bottom: -28%;
  }
}
.main-contact__form {
  position: inherit;
  z-index: 1;
  width: min(83.87%, 1040px);
  margin-inline: auto;
  background: var(--white);
  padding: 60px 0px 70px;
}
@media screen and (width <= 768px) {
  .main-contact__form {
    width: max(88%, 295px);
    padding: 8vw 0px 10.667vw;
  }
}
.main-contact__form-contents {
  display: flex;
  justify-content: space-between;
  width: 88.461%;
  margin-inline: auto;
  align-items: center;
}
@media screen and (width <= 1270px) {
  .main-contact__form-contents {
    flex-direction: column;
  }
}
@media screen and (width <= 768px) {
  .main-contact__form-contents {
    width: 86.4%;
    flex-direction: column;
    gap: 8vw;
  }
}
.main-contact__form-left {
  width: 41.39%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (width <= 1270px) {
  .main-contact__form-left {
    width: 100%;
    align-items: center;
  }
}
.main-contact__form-left h5 {
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 36px */
  letter-spacing: 2px;
}
@media screen and (width <= 768px) {
  .main-contact__form-left h5 {
    font-size: 3.733vw;
    letter-spacing: 0.373vw;
    text-align: center;
  }
}
.main-contact__form-left .tel img {
  aspect-ratio: 1/1;
}
@media screen and (width <= 768px) {
  .main-contact__form-left .tel img {
    width: 6.4vw;
  }
}
.main-contact__form-left .tel a {
  color: var(--blue_main);
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 75.6px */
  letter-spacing: 2.1px;
}
@media screen and (width <= 768px) {
  .main-contact__form-left .tel a {
    font-size: 6.4vw;
    letter-spacing: 0.32vw;
  }
}
.main-contact__form-left div:last-child {
  color: var(--text, #1C1C1C);
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.9px;
}
@media screen and (width <= 768px) {
  .main-contact__form-left div:last-child {
    font-size: 3.733vw;
    font-weight: 400;
    letter-spacing: 0.187vw;
    text-align: center;
  }
}
.main-contact__form-right {
  width: 50%;
}
@media screen and (width <= 1270px) {
  .main-contact__form-right {
    width: 100%;
  }
}
@media screen and (width <= 768px) {
  .main-contact__form-right {
    width: 100%;
  }
}
.main-contact__form-right .button {
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #293a95 0%, #132271 100%);
  padding: 20px 0px;
  min-width: 360px;
  margin-inline: auto;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 2px;
  transition: background-color 0.7s ease, border-color 0.7s ease, color 0.7s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
@media screen and (width <= 768px) {
  .main-contact__form-right .button {
    font-size: 3.733vw;
    font-style: normal;
    letter-spacing: 0.373vw;
    min-width: 78.667vw;
  }
}
.main-contact__form-right .button:hover {
  background: transparent;
  border-color: var(--blue_main);
  color: var(--blue_main);
}
.main-contact__form-right .button:hover::after {
  background: url(../image/button-hover.svg) center/cover;
}
.main-contact__form-right .button::after {
  content: "";
  display: block;
  background: url("../image/button.svg") center/cover no-repeat;
  width: 12px;
  height: 20px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}
.main-contact__form-right .button {
  line-height: 180%;
  letter-spacing: 1px;
}
@media screen and (width <= 768px) {
  .main-contact__form-right .button {
    min-width: 68vw;
  }
}
.main-contact__form-right .button::before {
  background: url(../image/mail.svg) center/cover;
  content: "";
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  aspect-ratio: 32/24;
  width: 32px;
  width: clamp(1.5rem, 1.348rem + 0.72vw, 2rem);
}
.main-contact__form-right .button:hover::before {
  background: url(../image/mail-hover.svg) center/cover;
}
.main-contact__form-right .button::after {
  right: 9%;
}

@media screen and (width <= 768px) {
  .main-contact.service {
    background: var(--bk_gray, #f5f5f5);
  }
}

.footer {
  position: relative;
  background: var(--bk_gray, #f5f5f5);
  overflow: hidden;
  z-index: 1;
  padding-bottom: 50px;
}
.footer__contents {
  position: relative;
  padding-top: 408px;
  display: flex;
  z-index: -1;
  justify-content: space-between;
  width: min(72.2%, 1040px);
  margin-inline: auto;
  align-items: center;
}
@media screen and (width <= 768px) {
  .footer__contents {
    padding-top: 16vw;
    width: max(88%, 295px);
    flex-direction: column;
    gap: 10.667vw;
  }
}
@media screen and (width >= 1441px) {
  .footer__contents {
    width: max(72.2%, 1040px);
  }
}
.footer__contents-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 22.73%;
}
@media screen and (width <= 768px) {
  .footer__contents-left {
    width: 100%;
    gap: 5.333vw;
  }
}
.footer__contents-left img {
  aspect-ratio: 253/87;
  max-width: clamp(8.5625rem, 6.0097rem + 10.892vw, 15.8125rem);
}
.footer__contents-left .address {
  color: var(--color-black);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.7px;
}
@media screen and (width <= 768px) {
  .footer__contents-left .address {
    font-size: 3.2vw;
    line-height: 180%;
    letter-spacing: 0.32vw;
  }
}
.footer__contents-right {
  display: flex;
  justify-content: space-between;
  width: 43.653%;
}
@media screen and (width <= 1270px) {
  .footer__contents-right {
    width: 66.653%;
  }
}
@media screen and (width <= 768px) {
  .footer__contents-right {
    width: 100%;
    flex-direction: column;
    gap: 8vw;
  }
}
.footer__contents-right div a {
  color: var(--blue_main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  letter-spacing: 1.4px;
}
@media screen and (width <= 768px) {
  .footer__contents-right div a {
    font-size: 3.2vw;
    letter-spacing: 0.32vw;
  }
}
.footer__contents > a {
  position: absolute;
  top: 55%;
  right: -10%;
}
@media screen and (width <= 768px) {
  .footer__contents > a {
    top: 7%;
    right: 0%;
  }
}
.footer__contents > a img {
  aspect-ratio: 1/1;
}
@media screen and (width <= 768px) {
  .footer__contents > a img {
    width: 16vw;
  }
}
.footer .border {
  width: min(86.1111%, 1240px);
  margin-inline: auto;
  border: 1px solid var(--blue_main);
  margin-top: 80px;
}
@media screen and (width <= 768px) {
  .footer .border {
    margin-top: 16vw;
    width: max(100%, 375px);
  }
}
@media screen and (width >= 1441px) {
  .footer .border {
    width: max(86.1111%, 1240px);
  }
}
.footer__sns {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (width <= 768px) {
  .footer__sns {
    padding-top: 8vw;
    gap: 10.667vw;
  }
}
.footer__sns div {
  color: var(--blue_main);
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
@media screen and (width <= 768px) {
  .footer__sns div {
    font-size: 3.733vw;
    letter-spacing: 0.373vw;
  }
}
.footer__sns img {
  aspect-ratio: 1/1;
  max-width: 30px;
}
@media screen and (width <= 768px) {
  .footer__sns img {
    max-width: 8vw;
  }
}
.footer__policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
@media screen and (width <= 768px) {
  .footer__policy {
    margin-top: 10.667vw;
  }
}
.footer__policy div:first-child a {
  color: #555;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  font-size: clamp(0.625rem, 0.587rem + 0.18vw, 0.75rem);
}
.footer__policy div:last-child {
  color: var(--blue_main);
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  font-size: clamp(0.625rem, 0.587rem + 0.18vw, 0.75rem);
}
.footer.page-contact .footer__contents {
  padding-top: 166px;
}
@media screen and (width <= 768px) {
  .footer.page-contact .footer__contents {
    padding-top: 17.333vw;
  }
}
.footer.page-contact .footer__contents > a {
  top: 14%;
  right: -10%;
}
@media screen and (width <= 768px) {
  .footer.page-contact .footer__contents > a {
    right: 0%;
  }
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}/*# sourceMappingURL=style.css.map */