@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

picture {
  vertical-align: middle;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.fadeIn {
  animation: fadeIn 1.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lazy {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.lazy_bottom {
  transform: translateY(80px);
}

.lazy_left {
  transform: translateX(-80px);
}

.on {
  opacity: 1;
  transform: none;
}

.container-s {
  width: 80%;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .container-s {
    width: 100%;
    padding: 0 30px;
  }
}
.container-m {
  width: 85%;
  max-width: 1080px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .container-m {
    width: 100%;
    padding: 0 30px;
  }
}
.container-l {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .container-l {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: block;
  }
}

.section__heading {
  font-family: "futura-pt", sans-serif;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00467a, #1c8cde);
  background: -webkit-linear-gradient(0deg, #00467a, #1c8cde);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .section__heading {
    font-size: min(12vw, 48px);
  }
}
.section__heading.white {
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff;
  text-stroke: 2px rgba(0, 70, 122, 0.2);
  -webkit-text-stroke: 2px rgba(0, 70, 122, 0.2);
}
.section__heading.line {
  position: relative;
}
.section__heading.line:before {
  position: absolute;
  content: "";
  width: min(10.4166666667vw, 150px);
  height: 2px;
  border-radius: 1px;
  background: #1c8cde;
  top: 50%;
  left: -32px;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 767px) {
  .section__heading.line:before {
    left: -12px;
  }
}
.section__heading.line:after {
  position: absolute;
  content: "";
  width: min(10.4166666667vw, 150px);
  height: 2px;
  border-radius: 1px;
  background: #1c8cde;
  top: 50%;
  right: -32px;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 767px) {
  .section__heading.line:after {
    right: -12px;
  }
}
.section__heading .br {
  display: none;
}
@media screen and (max-width: 992px) {
  .section__heading .br {
    display: block;
  }
}

#particles-js {
  position: fixed; /*描画固定*/
  z-index: -1; /*描画を一番下に*/
  width: 100%;
  height: 100%;
  background-color: #fff; /*背景色*/
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  .header {
    padding: 0;
  }
}
.header__logo {
  width: 250px;
}
.header__logo:hover {
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .header__logo {
    width: 180px;
    margin: 4px;
  }
}
@media screen and (max-width: 992px) {
  .header-pc {
    display: none;
  }
}
.header-pc__language {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.header-pc__language a {
  font-size: 14px;
  font-weight: bold;
  color: #00467a;
  padding: 4px 8px;
  border: 1px solid #00467a;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.header-pc__language a:hover {
  background: #00467a;
  color: #fff;
  border: none;
}
.header-pc__nav ul {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: min(2.2222222222vw, 32px);
}
.header-pc__nav-item a {
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #00467a;
  font-weight: bold;
  position: relative;
}
.header-pc__nav-item a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background-color: #00467a;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%);
  transition: all 0.3s ease;
}
.header-pc__nav-item a:hover:before {
  width: 100%;
}
.header-pc__cta:hover a {
  background-position: right center;
}
.header-pc__cta a {
  display: block;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #fff;
  width: 200px;
  height: 40px;
  border-radius: 2px;
  line-height: 40px;
  text-align: center;
  background: rgb(28, 140, 222);
  background: linear-gradient(90deg, rgb(28, 140, 222) 0%, rgb(0, 70, 122) 50%, rgb(28, 140, 222) 100%);
  background-size: 200%;
  background-position: left center;
}
.header-sp {
  display: none;
}
@media screen and (max-width: 992px) {
  .header-sp {
    display: flex;
    align-items: stretch;
  }
  .header-sp__cta {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    color: #fff;
    background: rgb(28, 140, 222);
    background: linear-gradient(90deg, rgb(28, 140, 222) 0%, rgb(0, 70, 122) 100%);
  }
  .header-sp__btn {
    width: 60px;
    height: 60px;
    position: relative;
    background: none;
    border: none;
    z-index: 11;
    transition: all 0.3s ease;
  }
  .header-sp__btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 1px;
    border-radius: 1px;
    background-color: #00467a;
    left: 50%;
    transition: all 0.3s ease;
  }
  .header-sp__btn span:first-child {
    top: 21px;
    transform: translateX(-50%);
  }
  .header-sp__btn span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header-sp__btn span:last-child {
    top: 38px;
    transform: translateX(-50%);
  }
  .header-sp__btn.open {
    background-color: #00467a;
    border-left: 1px solid #fff;
  }
  .header-sp__btn.open span {
    top: 50%;
    background-color: #fff;
  }
  .header-sp__btn.open span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header-sp__btn.open span:nth-child(2) {
    display: none;
  }
  .header-sp__btn.open span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header-sp__menu {
    transform: translateX(100vw);
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 60px 48px;
    text-align: center;
  }
  .header-sp__menu.open {
    transform: translateX(0);
  }
  .header-sp__language {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  .header-sp__language:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 49%;
    width: 1px;
    height: 16px;
    background-color: #00467a;
    transform: translate(-50%, -50%) rotate(15deg);
  }
  .header-sp__language li span {
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #00467a;
    opacity: 0.8;
  }
  .header-sp__language li a {
    font-size: 18px;
    letter-spacing: 0.04em;
    font-weight: bold;
    color: #00467a;
  }
  .header-sp__list {
    margin-top: 50px;
  }
  .header-sp__item {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
    border-bottom: 1px solid #00467a;
    margin-bottom: 16px;
  }
  .header-sp__item a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #00467a;
    position: relative;
    padding: 8px;
  }
  .header-sp__item a:hover i {
    right: 8px;
  }
  .header-sp__item a i {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  .header-sp__contact {
    margin-top: 60px;
  }
  .header-sp__contact a {
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 60px;
    border-radius: 2px;
    background: rgb(28, 140, 222);
    background: linear-gradient(90deg, rgb(28, 140, 222) 0%, rgb(0, 70, 122) 50%, rgb(28, 140, 222) 100%);
    background-size: 200%;
    background-position: left center;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 60px;
  }
  .header-sp__contact a:hover {
    background-position: right center;
  }
}

.fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 800px;
}
.fv__bg {
  width: 100%;
  position: relative;
}
.fv__bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 70, 122, 0.15);
  top: 0;
  left: 0;
  z-index: 1;
}
.fv__bg--slide {
  width: 100%;
}
.fv__cover--img01 {
  position: absolute;
  width: 29.5138888889vw;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv__cover--img01 {
    width: 28.5333333333vw;
  }
}
.fv__cover--img02 {
  position: absolute;
  width: 55.5555555556vw;
  top: 0;
  left: -3.125vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv__cover--img02 {
    width: 59.4666666667vw;
    left: 0;
  }
}
.fv__content {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.fv__heading {
  font-family: "futura-pt", sans-serif;
  font-size: 160px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-shadow: 4px 4px 11px rgba(0, 70, 122, 0.2);
}
@media screen and (max-width: 992px) {
  .fv__heading {
    font-size: 14.9333333333vw;
  }
}
.fv__heading:before {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
  content: "";
  width: 200vw;
  height: 132px;
  background-image: url("../img/fv_text.webp");
  background-position: right;
  background-size: contain;
  background-repeat: repeat-x;
  overflow: hidden;
  animation: scrollAnime 20s linear infinite;
}

@keyframes scrollAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.ideology {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .ideology {
    margin-top: 80px;
  }
}
.ideology__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .ideology__content {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}
.ideology__text {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .ideology__text {
    margin-top: 32px;
  }
}
.ideology__subheading {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #00467a;
}
@media screen and (max-width: 767px) {
  .ideology__subheading {
    font-size: 20px;
    text-align: center;
  }
}
.ideology__paragraph {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #00467a;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .ideology__paragraph {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    margin-top: 24px;
  }
}
.ideology__img {
  width: 55vw;
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .ideology__img {
    width: 300px;
    margin-right: 0;
  }
}

.about {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 80px;
  }
}
.about__content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about__content {
    margin-top: 60px;
  }
}
.about__block {
  display: flex;
  gap: 4.1666666667vw;
  margin-top: 100px;
}
.about__block:first-child {
  margin-top: 0;
}
.about__block:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 992px) {
  .about__block:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.about__block:nth-child(even) .about__img {
  width: 50vw;
  max-height: 540px;
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
@media screen and (max-width: 992px) {
  .about__block:nth-child(even) .about__img {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .about__block:nth-child(even) .about__img {
    width: 300px;
  }
}
@media screen and (max-width: 374px) {
  .about__block:nth-child(even) .about__img {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .about__block {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }
}
.about__subheading {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #00467a;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__subheading {
    font-size: 18px;
  }
}
.about__subheading:before {
  position: absolute;
  content: "";
  width: 150px;
  height: 2px;
  background-color: #c0c0c0;
  bottom: -4px;
  left: 0;
  z-index: -1;
}
.about__subheading:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #00467a;
  bottom: -4px;
  left: 0;
  z-index: 0;
}
.about__paragraph {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #333;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .about__paragraph {
    font-size: 14px;
    margin-top: 20px;
  }
}
.about__img {
  width: 50vw;
  max-height: 540px;
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 992px) {
  .about__img {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 300px;
  }
}
@media screen and (max-width: 374px) {
  .about__img {
    width: 100%;
  }
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 80px;
  }
}
.service__content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service__content {
    margin-top: 40px;
  }
}
.service__block {
  flex: 50%;
  position: relative;
}
@media screen and (max-width: 992px) {
  .service__block {
    flex: 100%;
  }
}
.service__img {
  position: relative;
}
.service__img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 70, 122, 0.5);
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .service__img {
    height: 300px;
  }
  .service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.service__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.service__subheading {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1280px) and (min-width: 993px) {
  .service__subheading {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .service__subheading {
    font-size: 24px;
  }
}
@media screen and (max-width: 374px) {
  .service__subheading {
    font-size: 20px;
  }
}
.service__subheading .br {
  display: none;
}
@media screen and (max-width: 1280px) and (min-width: 993px) {
  .service__subheading .br {
    display: inline;
  }
}
@media screen and (max-width: 376px) {
  .service__subheading .br {
    display: inline;
  }
}
.service__paragraph {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 1280px) and (min-width: 993px) {
  .service__paragraph {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .service__paragraph {
    font-size: 14px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 374px) {
  .service__paragraph {
    font-size: 12px;
    margin-top: 4px;
  }
}
.service__paragraph .br {
  display: none;
}
@media screen and (max-width: 1280px) and (min-width: 993px) {
  .service__paragraph .br {
    display: inline;
  }
}
@media screen and (max-width: 376px) {
  .service__paragraph .br {
    display: inline;
  }
}

.manufacture {
  background: url("../img/manufacture_bg_pc.webp") center/cover no-repeat rgba(0, 70, 122, 0.2);
  padding: 80px 0 100px;
  position: relative;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .manufacture {
    padding: 40px 0;
    margin-top: 80px;
  }
}
.manufacture__container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .manufacture__container {
    margin-top: 32px;
  }
}
.manufacture__item {
  background: #fff;
  border-radius: 2px;
  text-align: center;
  padding: 24px 0;
  flex: 0 1 15%;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .manufacture__item {
    flex: 45%;
  }
}
.manufacture__name {
  font-size: clamp(14px, 1.3888888889vw, 20px);
  line-height: 1.2;
  font-weight: bold;
  color: #00467a;
}
@media screen and (max-width: 767px) {
  .manufacture__name {
    font-size: 14px;
  }
}

.company {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .company {
    margin-top: 80px;
  }
}
.company__inner {
  height: 200px;
  width: 100%;
  background: url("../img/img_company_pc.webp") center/cover no-repeat rgba(0, 70, 122, 0.5);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .company__inner {
    background-image: url("../img/img_company_sp.webp");
  }
}
.company__inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 70, 122, 0.5);
  top: 0;
  left: 0;
  z-index: 0;
}
.company__icon {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .company__icon {
    width: 80px;
    height: 80px;
  }
}
.company__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.company__heading:before {
  content: "";
  position: absolute;
  width: 62.5vw;
  height: 5.5555555556vw;
  background: url("../img/company_text.webp") center/contain no-repeat;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .company__heading:before {
    width: 100vw;
    height: 8.8888888889vw;
  }
}

.workflow {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .workflow {
    margin-top: 80px;
  }
}
.workflow__top {
  margin-top: 84px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: min(4.1666666667vw, 24px);
}
@media screen and (max-width: 767px) {
  .workflow__top {
    margin-top: 60px;
  }
}
.workflow__box {
  width: min(8.3333333333vw, 120px);
  height: clamp(80px, 8.3333333333vw, 120px);
  flex: 1 0 10%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0, 70, 122);
  background: linear-gradient(135deg, rgb(0, 70, 122) 0%, rgb(0, 35, 61) 100%);
  color: #fff;
  font-size: clamp(14px, 1.3888888889vw, 20px);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  .workflow__box {
    flex-basis: 20%;
  }
}
@media screen and (max-width: 600px) {
  .workflow__box {
    flex-basis: 30%;
  }
}
.workflow__box:hover {
  transform: scale(1.05);
}
.workflow__box:last-child:after {
  display: none;
}
.workflow__box:after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  color: #00467a;
  top: 50%;
  right: max(-10px, -2.0833333333vw);
  transform: translate(50%, -50%);
}
.workflow__list {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .workflow__list {
    margin-top: 50px;
  }
}
.workflow__item {
  margin-top: 32px;
}
.workflow__item:first-child {
  margin-top: 0;
}
.workflow__item:nth-child(2) .workflow__balloon {
  background: transparent;
}
@media screen and (max-width: 767px) {
  .workflow__item:nth-child(2) .workflow__balloon {
    display: none;
  }
}
.workflow__item:nth-child(2) .workflow__balloon:before {
  background: transparent;
}
.workflow__title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #00467a;
}
.workflow__title--num {
  font-family: "futura-pt", sans-serif;
  font-size: 40px;
  margin-right: 4px;
}
.workflow__balloon {
  margin-top: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #00467a;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .workflow__balloon {
    width: 80%;
    flex-direction: column;
    margin-top: 40px;
  }
}
.workflow__balloon:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 24px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
  background-color: #00467a;
  top: 10px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  .workflow__balloon:before {
    width: 40px;
    height: 24px;
    clip-path: polygon(20% 0%, 0% 100%, 100% 100%);
    background-color: #00467a;
    top: -24px;
    left: 16px;
  }
}
.workflow__balloon:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: -100px;
  background-image: linear-gradient(to bottom, #00467a, #00467a 2px, transparent 2px, transparent 4px);
  background-size: 2px 6px;
  background-position: top center;
  background-repeat: repeat-y;
}
@media screen and (max-width: 1200px) {
  .workflow__balloon:after {
    display: none;
  }
}
.workflow__icon {
  width: 120px;
}
.workflow__subheading {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}
.workflow__description {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  margin-top: 8px;
}

.facility {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .facility {
    margin-top: 80px;
  }
}
.facility__top {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 769px) {
  .facility__top {
    gap: min(4.1666666667vw, 20px);
    margin-top: 40px;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
.facility__item {
  width: min(16.6666666667vw, 240px);
  flex-shrink: 0;
}
.facility__item:hover {
  opacity: 0.7
}
@media screen and (max-width: 769px) {
  .facility__item {
    width: 200px;
  }
}
.facility__name {
  margin-top: 8px;
  color: #00467a;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .facility__name {
    font-size: 16px;
  }
}
.facility__table {
  margin-top: 40px;
  overflow-x: scroll;
}
.facility__table table {
  border-collapse: collapse;
  border: 1px solid #00467a;
  width: 1080px;
}
@media screen and (max-width: 767px) {
  .facility__table table {
    width: 720px;
  }
}
.facility__table table:first-child {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .facility__table table:first-child {
    margin-bottom: 24px;
  }
}
.facility__table tr {
  background: #fff;
}
.facility__table tr:first-child {
  background: #bbdbf2;
}
.facility__table th {
  border: 1px solid #00467a;
  font-size: 24px;
  font-weight: bold;
  color: #00467a;
  padding: 16px 8px;
}
@media screen and (max-width: 767px) {
  .facility__table th {
    font-size: 18px;
  }
}
.facility__table th:first-child {
  width: 40%;
}
.facility__table th:nth-child(2) {
  width: 25%;
}
.facility__table th:nth-child(3) {
  width: 25%;
}
.facility__table th:last-child {
  width: 10%;
}
.facility__table td {
  border: 1px solid #00467a;
  font-size: 20px;
  font-weight: bold;
  color: #00467a;
  padding: 16px 8px;
}
@media screen and (max-width: 767px) {
  .facility__table td {
    font-size: 14px;
  }
}

.profile {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .profile {
    margin-top: 80px;
  }
}
.profile__top {
  display: flex;
  gap: clamp(20px, 2.7777777778vw, 40px);
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .profile__top {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.profile__table {
  border-collapse: collapse;
  width: 75%;
}
@media screen and (max-width: 767px) {
  .profile__table {
    width: 100%;
  }
}
.profile__table table {
  width: 100%;
}
.profile__table th {
  background: #e2f3ff;
  font-size: 24px;
  font-weight: bold;
  color: #00467a;
  border: 1px solid #00467a;
  vertical-align: middle;
  text-wrap: nowrap;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .profile__table th {
    font-size: 18px;
  }
}
.profile__table td {
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #00467a;
  border: 1px solid #00467a;
}
@media screen and (max-width: 767px) {
  .profile__table td {
    font-size: 14px;
  }
}
.profile__map {
  height: 600px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .profile__map {
    height: 300px;
  }
}

.contact {
  margin-top: 120px;
  background: #00467a;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 80px;
  }
}
.contact__top {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #fff;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact__top {
    text-align-last: left;
    font-size: 14px;
    margin-top: 40px;
    padding: 0 16px 16px;
  }
}
.contact__top a {
  font-size: 40px;
  color: #fff;
}
@media screen and (max-width: 374px) {
  .contact__top a {
    font-size: 36px;
  }
}
.contact__top a:hover {
  color: #fff;
}
.contact .form {
  background-color: #fff;
  border-radius: 4px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact .form {
    margin-top: 40px;
  }
}

#formWrap {
  max-width: 800px;
  margin-inline: auto;
  padding: 120px 0 60px;
  color: #555;
  line-height: 120%;
  font-size: 90%;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 24px;
}

table.formTable th {
  color: #00467a;
  font-size: 20px;
  font-weight: bold;
  width: 40%;
  text-align: left;
}
table.formTable th p {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  table.formTable th p {
    margin-bottom: 12px;
  }
}
table.formTable th p.required {
  position: relative;
}
table.formTable th p.required:before {
  position: absolute;
  content: "必須";
  padding: 4px 8px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background-color: #00467a;
  border-radius: 2px;
  top: 50%;
  right: -10px;
  transform: translate(100%, -50%);
}

form input[type=text],
form select,
form textarea {
  width: 100%;
  padding: 12px 8px;
  font-size: 110%;
  display: block;
  border: 1px solid #00467a;
  border-radius: 2px;
}

.short input[type=text],
.short select {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .short input[type=text],
  .short select {
    width: 90%;
  }
}

.double td {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .double td {
    gap: 8px;
  }
}

.privacy-policy {
  width: 80vw;
  max-width: 800px;
  height: 150px;
  padding: 16px;
  margin: 54px auto 0;
  background-color: #fff;
  border: 1px solid #333;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    margin-top: 24px;
  }
}
.privacy-policy__subheading {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 8px;
}
.privacy-policy__text {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 4px;
}
.privacy-policy ul {
  margin-top: 4px;
}
.privacy-policy ul li {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 4px;
  padding-left: 12px;
}
.privacy-policy__consent {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .privacy-policy__consent {
    margin-top: 20px;
  }
}
.privacy-policy__consent input {
  width: 18px;
  height: 18px;
}

.form__btn {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .form__btn {
    margin-top: 40px;
  }
}

form input[type=submit],
form input[type=reset],
form input[type=button] {
  display: block;
  width: 240px;
  height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #00467a;
  border-radius: 4px;
}

/*簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }
  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }
  form input[type=text],
  form select,
  form textarea {
    width: 90%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }
}
.footer {
  padding: 40px 0 14px;
  text-align: center;
}
.footer__logo {
  width: 250px;
  display: block;
  margin: 0 auto;
}
.footer__list {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
}
.footer__item {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 767px) {
  .footer__item {
    font-size: 14px;
  }
}
.footer__item:first-child:before {
  display: none;
}
.footer__item:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #333;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
}
.footer__copyright {
  margin-top: 40px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */