@charset "UTF-8";
/*
@useで読み込むこと
*/
/** @format */
/** @format */
/** @format */
/** @format */
/* bold */
@font-face {
  font-family: "DIN Alternate";
  src: url("../font/DIN Alternate Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

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

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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  color: #333333;
  background-color: #f6f8f9;
  letter-spacing: 1px;
  font-size: 1em;
  overflow: hidden;
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

p {
  line-height: 1.4em;
  letter-spacing: 2px;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1.5s ease;
  transition: opacity 1s ease, -webkit-transform 1.5s ease;
  transition: opacity 1s ease, transform 1.5s ease;
  transition: opacity 1s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  overflow-x: hidden;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overflow-x: hidden;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
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 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
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;
}

/*
@useで読み込むこと
*/
/*
@useで読み込むこと
*/
/* -----------------------------
Contact
------------------------------*/
.contact {
  padding: 64px;
  background-image: -webkit-linear-gradient(150deg, #03274d, transparent 66vw);
  background-image: linear-gradient(-60deg, #03274d, transparent 66vw);
  padding-top: 40px;
  margin-top: 0;
  background-color: #01438b;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .contact {
    padding-top: 24px; /* ← ここに移動！ */
  }
}
@media screen and (max-width: 800px) {
  .contact {
    margin-top: 0;
    padding-top: 40px;
    position: relative;
  }
}
@media screen and (max-width: 533px) {
  .contact {
    padding: 40px;
  }
}
@media screen and (max-width: 400px) {
  .contact {
    padding: 40px 0;
  }
}

.section__title_contact {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  padding: 0 40px;
  text-align: left;
  font-size: 2.2em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 4px;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .section__title_contact {
    font-size: 1.8em;
    margin-top: -10px;
    padding: 0;
  }
}
@media screen and (max-width: 533px) {
  .section__title_contact {
    padding: 0;
  }
}
@media screen and (max-width: 400px) {
  .section__title_contact {
    padding: 0 40px;
  }
}
.section__title_contact::before {
  position: absolute;
  top: -64px;
  right: 0;
  letter-spacing: 8px;
  content: "CONTACT";
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 144px;
  color: #fff;
  opacity: 0.2;
  text-transform: uppercase;
  z-index: -10;
}
@media screen and (max-width: 1120px) {
  .section__title_contact::before {
    top: -40px;
    font-size: 5em;
  }
}
@media screen and (max-width: 800px) {
  .section__title_contact::before {
    top: -24px;
    font-size: 4em;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 533px) {
  .section__title_contact::before {
    display: none;
  }
}

.contact__text {
  max-width: 560px;
  font-size: 2em;
  color: #fff;
  letter-spacing: 3px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .contact__text {
    max-width: 560px;
    font-size: 1.8em;
  }
}
@media screen and (max-width: 980px) {
  .contact__text {
    max-width: 500px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 800px) {
  .contact__text {
    font-size: 1.6em;
  }
}

.contact__group {
  padding: 64px 40px 16px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .contact__group {
    padding: 40px 0 16px;
  }
}
@media screen and (max-width: 400px) {
  .contact__group {
    padding: 40px 40px 16px;
  }
}

.contact__concept_btn {
  display: block;
  margin: 0 0 0 auto;
  font-weight: 400;
  font-size: 1.8em;
  border: 2px solid #01438b;
  letter-spacing: 2px;
  padding: 16px 32px;
  color: #01438b;
  background-color: #fff;
  border-radius: 99px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 980px) {
  .contact__concept_btn {
    font-size: 1.6em;
    letter-spacing: 2px;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 400px) {
  .contact__concept_btn {
    margin: 0 auto;
  }
}
.contact__concept_btn::after {
  background: #023770;
  position: absolute;
  top: 0;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.contact__concept_btn:hover {
  border: 2px solid #fff;
  color: #fff;
}
.contact__concept_btn:hover::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
          transform: skewY(-10deg) scale(1, 1);
}

.page-title-section {
  width: 100%;
  position: relative;
  min-height: 200px;
}
@media screen and (max-width: 800px) {
  .page-title-section {
    min-height: 180px;
  }
}
@media screen and (max-width: 533px) {
  .page-title-section {
    min-height: 100px;
  }
}

.page-title__inner {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .page-title__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-title__text {
  position: absolute;
  top: 10vw;
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 533px) {
  .page-title__text {
    top: 16vw;
  }
}
@media screen and (max-width: 400px) {
  .page-title__text {
    top: 21vw;
  }
}
.page-title__text .page-title__main {
  font-size: 2.8em;
  color: #01438b;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media screen and (max-width: 1120px) {
  .page-title__text .page-title__main {
    font-size: 2.4em;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 800px) {
  .page-title__text .page-title__main {
    font-size: 2.2em;
    margin-bottom: 4px;
    max-width: 8em;
  }
}
@media screen and (max-width: 533px) {
  .page-title__text .page-title__main {
    font-size: 1.6em;
    letter-spacing: 2px;
  }
}

.page-title__sub {
  font-size: 1.4em;
  color: #a0a0a0;
}
@media screen and (max-width: 800px) {
  .page-title__sub {
    font-size: 1.2em;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 533px) {
  .page-title__sub {
    display: none;
  }
}

.section__title_img {
  width: 100%;
  aspect-ratio: 5/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1120px) {
  .section__title_img {
    aspect-ratio: 4/1;
  }
}
@media screen and (max-width: 533px) {
  .section__title_img {
    aspect-ratio: 3/1;
  }
}
@media screen and (max-width: 400px) {
  .section__title_img {
    aspect-ratio: 2/1;
  }
}

/** @format */
/* -----------------------------
header
------------------------------*/
.header__inner {
  background-color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.4vw 2vw 1.4vw 2vw;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 99;
}
@media screen and (max-width: 800px) {
  .header__inner {
    padding: 8px 16px;
  }
}

.header__logo {
  width: 120px;
}
@media screen and (max-width: 980px) {
  .header__logo {
    width: 110px;
  }
}
@media screen and (max-width: 800px) {
  .header__logo {
    width: 88px;
  }
}

.header__nav-area {
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.accodion {
  margin-right: min(9vw, 76px);
  color: #333;
}
@media screen and (max-width: 980px) {
  .accodion {
    margin-right: min(6vw, 76px);
  }
}
@media screen and (max-width: 800px) {
  .accodion {
    display: none;
  }
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 980px) {
  .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

/* お問い合わせボタン */
.accodion .menu .menu__list_contact {
  width: 100px;
  position: relative;
}

.contact_btn {
  font-size: min(1.3vw, 1.3em);
  font-weight: normal;
  line-height: 1.6;
  display: inline-block;
  padding: 8px 14px;
  color: #fff;
  background-color: #01438b;
  border-radius: 99px;
  text-align: center;
  border: none;
  max-width: none;
  position: absolute;
}
.contact_btn:hover {
  color: #01438b;
  background-color: #fff;
}
.contact_btn::before {
  display: none;
}

.accodion .menu {
  gap: 2vw;
}

.menu__list {
  font-size: min(1.3vw, 16px);
  padding: 0 1vw 0 1vw;
  position: relative;
}
@media screen and (max-width: 980px) {
  .menu__list {
    font-size: min(1.3vw, 16px);
    position: relative;
  }
}

.menu-title {
  font-size: 1em;
  margin-top: 8px;
  padding-bottom: 5px;
  display: block;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 980px) {
  .menu-title {
    font-size: 1em;
  }
}
.menu-title::before {
  background: #01438b;
  content: "";
  width: 100%;
  height: 1.3px;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.menu-title:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.accodion .menu .sub-menu {
  font-size: 0.9em;
  text-indent: -0.7em;
  padding-left: 1em;
  position: absolute;
  z-index: 1;
  width: 210px;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
.accodion .menu .sub-menu .sub-menu_link:hover::before {
  color: #fff;
}

.sub-menu_link {
  color: #01438b;
  display: block;
}
.sub-menu_link::before {
  content: " > ";
  font-size: min(0.8vw, 14px);
  vertical-align: 1.5px;
  color: #333333;
}
.sub-menu_link:hover {
  color: #fff;
  background-color: #01438b;
}

.accodion .menu .sub-menu .sub-menu_list {
  border: 1px solid #a3b2be;
  border-top: none;
  width: 100%;
}
.accodion .menu .sub-menu .sub-menu_list:first-child {
  border-top: 1px solid #a3b2be;
}

.accodion .menu .sub-menu .sub-menu__list .sub-menu_link {
  background-color: #fff;
  padding: 0.6em 0.6em 0.6em 1.8em;
  font-size: 1em;
  width: 100%;
}
.accodion .menu .sub-menu .sub-menu__list .sub-menu_link:hover {
  color: #fff;
  background-color: #01438b;
}

.accodion .menu .menu__list .menu-title:hover {
  opacity: 0.6;
}

.header__nav-area2 {
  display: block;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  top: 0;
  right: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  -webkit-transition: opacity 1s ease, visibility 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, visibility 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
  transition: opacity 1s ease, visibility 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.open.header__nav-area2 {
  position: fixed;
  pointer-events: auto;
  opacity: 1;
  -webkit-transition: right 0.5s ease, opacity 0.5s ease;
  transition: right 0.5s ease, opacity 0.5s ease;
  width: 640px;
  height: 1100px;
  background-color: rgba(1, 68, 139, 0.831372549);
  padding: 72px 96px;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 800px) {
  .open.header__nav-area2 {
    width: 100vw;
    height: 100vh;
    padding: 72px 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}
@media screen and (max-width: 533px) {
  .open.header__nav-area2 {
    padding: 72px 64px;
  }
}

.open.header__nav-area2 .header-logo-2 {
  width: 140px;
}
@media screen and (max-width: 400px) {
  .open.header__nav-area2 .header-logo-2 {
    width: 100%;
  }
  .open.header__nav-area2 .header-logo-2 .header__logo_img {
    width: 80%;
    max-width: 120px;
    height: auto;
    display: inline-block;
  }
}

.open.header__nav-area2 .header_navList2 {
  margin-top: 56px;
}
@media screen and (max-width: 800px) {
  .open.header__nav-area2 .header_navList2 {
    margin-top: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .open.header__nav-area2 .header_navList2 {
    width: 100%;
    max-width: none;
  }
}

.open.header__nav-area2 .header__navLink2 {
  display: block;
  font-size: 1.8em;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .open.header__nav-area2 .header__navLink2 {
    width: 100%;
    font-size: 1.6em;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 400px) {
  .open.header__nav-area2 .header__navLink2 {
    font-size: 1.4em;
    margin-bottom: 20px;
    word-break: break-word;
    white-space: normal;
  }
}

.open.header__nav-area2 .header__navLink2_contact {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.4em;
  color: #fff;
  border-radius: 99px;
  border: 1px solid #fff;
  padding: 10px 18px;
}
@media screen and (max-width: 800px) {
  .open.header__nav-area2 .header__navLink2_contact {
    font-size: 1.6em;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 400px) {
  .open.header__nav-area2 .header__navLink2_contact {
    font-size: 1.3em;
    padding: 10px 18px;
  }
}
.open.header__nav-area2 .header__navLink2_contact:hover {
  color: #01438b;
  background-color: #fff;
  border: 1px solid #fff;
}

/* 追加：フェードアウト時の visibility 制御 */
.header__nav-area2:not(.open) {
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0s linear 0.5s;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0s linear 0.5s, -webkit-transform 0.5s ease-in-out;
  visibility: hidden;
}

.dli-plus {
  position: relative;
  margin-left: 16px;
  display: inline-block;
  vertical-align: 35%;
  color: #fff;
  line-height: 1;
  width: 0.9em;
  height: 0.08em;
  background: currentColor;
}

.dli-plus::before {
  content: "";
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.acordion-btn.is-open .dli-plus::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.acordion {
  overflow: hidden;
  -webkit-transition: max-height 0.8s ease-in-out;
  transition: max-height 0.8s ease-in-out; /* 高さの変化だけをアニメーション */
  max-height: 0;
}
.acordion .acordion__item {
  margin: 16px 0 0 16px;
  max-height: 500px;
  max-width: 100%;
}
@media screen and (max-width: 400px) {
  .acordion .acordion__item {
    margin: 10px 0 0 16px;
  }
}

.acordion__link {
  font-size: 0.9em;
  text-indent: -1em;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  display: block;
}
@media screen and (max-width: 400px) {
  .acordion__link {
    font-size: 0.9em;
    display: block;
    white-space: normal;
    word-break: break-word;
    text-indent: 0;
  }
}
.acordion__link::before {
  content: "- ";
  color: #fff;
}
.acordion__link:hover {
  opacity: 0.6;
}

.acordion.is-open {
  max-height: 500px;
}
.acordion.is-open .acordion__link:hover {
  opacity: 0.6;
}

.open.header__nav-area2 .header_navList2 .header__navLink2:hover {
  opacity: 0.6;
}
.open.header__nav-area2 .header_navList2 .header__navLink2:has(.acordion):hover {
  opacity: 1;
}

.header__hamburger_space {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background-color: #01438b;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .header__hamburger_space {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 533px) {
  .header__hamburger_space {
    width: 44px;
    height: 44px;
  }
}

.header__humburger_btn {
  display: block;
  margin: 21px auto;
  width: 24px;
  height: 24px;
  background-color: #01438b;
}
@media screen and (max-width: 533px) {
  .header__humburger_btn {
    margin: 8px auto;
  }
}
.header__humburger_btn .header__humburger_toggle {
  position: absolute;
  display: block;
  width: 24px;
  height: 1px;
  z-index: 999;
}

.header__humburger_toggle:nth-child(1) {
  top: 23px;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .header__humburger_toggle:nth-child(1) {
    top: 21px;
  }
}
@media screen and (max-width: 533px) {
  .header__humburger_toggle:nth-child(1) {
    top: 12px;
  }
}

.header__humburger_toggle:nth-child(2) {
  top: 34px;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .header__humburger_toggle:nth-child(2) {
    top: 32px;
  }
}
@media screen and (max-width: 533px) {
  .header__humburger_toggle:nth-child(2) {
    top: 21px;
  }
}

.header__humburger_toggle:nth-child(3) {
  top: 45px;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .header__humburger_toggle:nth-child(3) {
    top: 43px;
  }
}
@media screen and (max-width: 533px) {
  .header__humburger_toggle:nth-child(3) {
    top: 30px;
  }
}

.header:has(.open) .header__humburger_toggle:nth-child(1) {
  -webkit-transform: translate(3px, 10px) rotate(315deg);
          transform: translate(3px, 10px) rotate(315deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 533px) {
  .header:has(.open) .header__humburger_toggle:nth-child(1) {
    -webkit-transform: translate(0, 10px) rotate(315deg);
            transform: translate(0, 10px) rotate(315deg);
  }
}

.header:has(.open) .header__humburger_toggle:nth-child(2) {
  display: none;
}

.header:has(.open) .header__humburger_toggle:nth-child(3) {
  -webkit-transform: translate(4px, -12px) rotate(-315deg);
          transform: translate(4px, -12px) rotate(-315deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 533px) {
  .header:has(.open) .header__humburger_toggle:nth-child(3) {
    -webkit-transform: translate(0, -8px) rotate(-315deg);
            transform: translate(0, -8px) rotate(-315deg);
  }
}

.header__hamburger_space:has(.open) {
  background-color: #333333;
  opacity: 0.5;
  z-index: 10;
}

/** @format */
/* -----------------------------
Footer
------------------------------*/
.footer {
  background-image: -webkit-linear-gradient(150deg, #fff 0 77vw, #f6f8f9 77vw 260vw, #fff 260vw);
  background-image: linear-gradient(-60deg, #fff 0 77vw, #f6f8f9 77vw 260vw, #fff 260vw);
  padding: 80px 40px 32px;
  z-index: 6;
  position: relative;
}
@media screen and (max-width: 980px) {
  .footer {
    padding: 64px 40px 32px;
  }
}
@media screen and (max-width: 800px) {
  .footer {
    padding: 48px 40px 32px;
  }
}

.footer__navList .footer__navLink {
  margin-top: 32px;
  margin-bottom: 24px;
}
.footer__navList .footer__navLink .footer__navLink_a {
  font-size: 1.5em;
  display: inline-block;
  margin-bottom: 4px;
  border-bottom: 1px transparent solid;
}

@media screen and (max-width: 980px) {
  .footer__navLink_a_blue {
    font-size: 1.3em;
    width: 126px;
  }
}

.fotter__logo {
  width: 120px;
  margin-bottom: 8px;
}

.fotter__flex {
  display: grid;
}
.fotter__flex .footer_nav {
  gap: 40px;
}

.footer__navLink.footer__navLink--group .footer__navGroup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 96px;
}
@media screen and (max-width: 800px) {
  .footer__navLink.footer__navLink--group .footer__navGroup {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px 64px;
  }
}
.footer__navLink.footer__navLink--group .footer__navGroup .footer__navGroup_li {
  margin-bottom: 4px;
  border-bottom: 1px transparent solid;
}
.footer__navLink.footer__navLink--group .footer__navGroup .footer__navGroup_li:hover {
  border-bottom: 1px #01438b solid;
}

.fotter__logo_sp {
  margin-top: 24px;
  width: 100px;
  margin-bottom: 8px;
}

.fotter__logo_sh {
  margin-top: 24px;
  width: 320px;
  margin-bottom: 8px;
}

.nav__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.top__icon_btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 64px;
  background: transparent;
  z-index: 89;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
@media screen and (max-width: 533px) {
  .top__icon_btn {
    width: 44px;
    right: 10px;
    bottom: 10px;
  }
}

.footer__sub-menu--horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px 32px;
}
.footer__sub-menu--horizontal .footer__navLink .footer__navLink_a {
  font-size: 1.4em;
}
.footer__sub-menu--horizontal .footer__sub-menu__list {
  margin: 0;
  padding: 0;
}
.footer__sub-menu--horizontal .footer__sub-menu_link {
  position: relative;
  padding-left: 1.4em;
  font-size: 1.4em;
  display: inline-block;
}
.footer__sub-menu--horizontal .footer__sub-menu_link::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #01438b;
}
.footer__sub-menu--horizontal .footer__sub-menu_link:hover {
  opacity: 0.6;
}

.fotter__co .fotter__co_jp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fotter__co .fotter__co_jp .fotter__address {
  margin-top: 8px;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 2px;
}
.fotter__co .fotter__co_jp .fotter__address .bold {
  font-size: 1.2em;
  font-weight: bold;
  color: #01438b;
}
.fotter__co .fotter__co_jp .fotter__address .bold_small {
  font-size: 0.8em;
  font-weight: bold;
  letter-spacing: 2px;
  color: #01438b;
}
.fotter__co .fotter__co_jp .fotter__address .bold_bk {
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
}
.fotter__co .footer__labolink {
  font-size: 1.3em;
  color: #333333;
  font-weight: bold;
  margin-bottom: 32px;
}
.fotter__co .footer__labolink::after {
  content: ">";
  font-size: 1.5em;
  color: #01438b;
}

.logo__title {
  margin-top: 40px;
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.logo__list_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .logo__list_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px 64px;
  }
}
.logo__list_flex .logo__group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__list_flex .logo__group .logo__list_img {
  width: 240px;
}
.logo__list_flex .logo__group .logo__group_name {
  margin-top: 16px;
  font-size: 1.3em;
  text-align: center;
}
.logo__list_flex .logo__group .logo__group_name .small {
  font-size: 0.5em;
}

.top__info_btn {
  position: fixed; /* 画面に固定 */
  right: 0; /* 画面の右端にピッタリくっつける */
  bottom: 140px; /* 画面下から20px */
  background-color: #01438b; /* 青系のカスタム変数 */
  color: #fff; /* 文字色は白 */
  letter-spacing: 3px;
  padding: 16px 16px;
  font-size: 1.6em;
  border-radius: 12px 0 0 12px; /* 左側の角を丸く */
  -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000; /* 他の要素より前に出す */
  border: none;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書きにする（右→左） */
  text-align: center;
  line-height: 1;
  z-index: 1999;
}
@media screen and (max-width: 533px) {
  .top__info_btn {
    font-size: 1.3em;
    padding: 12px 12px;
    border-radius: 10px 0 0 10px; /* 左側の角を丸く */
  }
}
.top__info_btn:hover {
  color: #01438b;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top__info_btn .footer__bottom_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top__info_btn .footer__bottom_flex .fotter__text {
  margin-top: 24px;
  font-size: 1rem;
}
.top__info_btn .footer__bottom_flex .fotter__text::before {
  content: "©";
  font-size: 1.3rem;
}
.top__info_btn .footer__bottom_flex .fotter__text_a {
  font-size: 1.1rem;
}

/** @format */
/* Slider */
.slick-loading .slick-list {
  background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: none !important;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
}
[dir=rtl] .slick-prev {
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 25px;
}
[dir=rtl] .slick-next {
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: #dddddd;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #dddddd;
  opacity: 0.75;
}/*# sourceMappingURL=global.css.map */