@charset "UTF-8";
/** @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;
}

/** @format */
/** @format */
.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;
  }
}

.breadcrumb {
  padding: 32px 64px;
}
@media screen and (max-width: 800px) {
  .breadcrumb {
    padding: 24px 40px;
  }
}
@media screen and (max-width: 400px) {
  .breadcrumb {
    padding: 24px;
  }
}
.breadcrumb__inner {
  font-size: 1.2em;
  color: #666;
}
.breadcrumb__link {
  color: #01438b;
  margin-right: 4px;
}
.breadcrumb__current {
  font-weight: bold;
  color: #333;
}

.breadcrumb-post {
  padding: 96px 64px 32px;
}
@media screen and (max-width: 800px) {
  .breadcrumb-post {
    padding: 24px 40px;
  }
}
@media screen and (max-width: 400px) {
  .breadcrumb-post {
    padding: 24px;
  }
}
.breadcrumb-post__inner {
  font-size: 1.2em;
  color: #666;
}
.breadcrumb-post__link {
  color: #01438b;
  margin-right: 4px;
}
.breadcrumb-post__current {
  font-weight: bold;
  color: #333;
}

/* -----------------------------
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);
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.access {
  padding: 24px 64px 64px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 533px) {
  .access {
    padding: 40px;
  }
}
.access__logo {
  width: 210px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 800px) {
  .access__logo {
    width: 180px;
  }
}
@media screen and (max-width: 533px) {
  .access__logo {
    width: 120px;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    margin: 0 0 24px;
  }
}
.access__logo_shan {
  width: 480px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 800px) {
  .access__logo_shan {
    width: 360px;
  }
}
@media screen and (max-width: 533px) {
  .access__logo_shan {
    width: 260px;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    margin: 0 0 24px;
  }
}
.access__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 533px) {
  .access__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access__label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 200px;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  font-size: 1.6em;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 800px) {
  .access__label {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 180px;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
  }
}
@media screen and (max-width: 533px) {
  .access__label {
    font-size: 1.4em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24px;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
  }
}
.access__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
  font-size: 1.6em;
}
@media screen and (max-width: 533px) {
  .access__text {
    font-size: 1.4em;
  }
}
.access__map {
  margin-top: 40px;
}
.access__map-block {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 0;
}
@media screen and (max-width: 800px) {
  .access__map-block {
    height: 400px;
  }
}
@media screen and (max-width: 533px) {
  .access__map-block {
    height: 320px;
  }
}/*# sourceMappingURL=access.css.map */