@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%;
}

/* ===========================
   Contact Page Styles (BEM)
   =========================== */
/* ページ全体 */
.page-contact {
  font-family: "Noto Sans JP", sans-serif;
  background-image: url("../img/pages/contact/back_gdx_2.jpg");
  background-color: rgba(255, 255, 255, 0.6);
  background-size: cover;
  padding-bottom: 24px;
}

/* タイトルセクション */
.contact-title-section {
  background-color: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
}
.contact-title-section__main {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.contact-title-section__sub {
  font-size: 1.6em;
  color: #666;
}

/* フォーム全体 */
.contact__form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  padding: 64px 40px 40px;
  background: #fff;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  margin: 40px auto 64px;
  max-width: 64vw;
}
@media screen and (max-width: 1120px) {
  .contact-form {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 800px) {
  .contact-form {
    max-width: 80vw;
  }
}

.hidden-fields-container,
.wpcf7-form {
  margin: 0 auto;
}

.contact__body {
  margin: 16px auto 32px;
}
@media screen and (max-width: 1120px) {
  .contact__body {
    padding: 40px;
  }
}
@media screen and (max-width: 800px) {
  .contact__body {
    padding: 0 40px;
    margin: 0;
  }
}
.contact__body_text {
  font-size: 1.8em;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
}
.contact__body_text .small {
  font-size: 0.8em;
}

/* フレックスレイアウト */
.contact__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 32px;
}
@media screen and (max-width: 800px) {
  .contact__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.contact__flex .col1,
.contact__flex .col2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

/* デフォルトのCF7要素 */
.wpcf7-text,
.wpcf7-textarea {
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid #c7c6c6;
  font-size: 1.6em;
  width: 100%;
}

/* 必須マーク */
.hs-form-required {
  color: #e63946;
  font-size: 1.4em;
}

/* インプット・セレクト・テキストエリア */
.contact-form__input,
.contact-form__textarea,
.contact-form__select,
.wpcf7-text {
  padding: 12px 14px;
  border: 1px solid #c7c6c6;
  font-size: 1.6em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50px;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 800px) {
  .contact-form__input,
  .contact-form__textarea,
  .contact-form__select,
  .wpcf7-text {
    margin: 0 0 16px 0;
  }
}

.wpcf7-textarea {
  padding: 12px 14px;
  border: 1px solid #c7c6c6;
  font-size: 1.6em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 160px;
  margin: 0 0 24px 0;
  line-height: 1.3em;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .wpcf7-textarea {
    margin: 0 0 16px 0;
  }
}
@media screen and (max-width: 400px) {
  .wpcf7-textarea {
    height: 240px;
  }
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  border-color: #2a73ff;
  outline: none;
}

/* 2カラム用 */
.contact-form .contact-form__col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-form .contact-form__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  margin-bottom: 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .contact-form .contact-form__row {
    display: column;
  }
}
.contact-form .contact-form__label {
  display: block;
  font-weight: bold;
  font-size: 1.4em;
  color: #333;
}
.contact-form .contact-form__privacy {
  text-align: center;
  font-size: 14px;
  margin-bottom: 24px;
}

/* プライバシー同意 */
.contact-form .contact-form__privacy a {
  color: #2a73ff;
  text-decoration: underline;
}

/* 送信ボタン */
.actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; /* フレックスにする */
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央寄せ */
  margin: 24px auto 0;
  width: 100%; /* 親幅いっぱい */
}

.send {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex; /* flexで中央寄せ */
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横中央 */
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; /* 縦中央 */
  padding: 12px 30px; /* 左右余白だけ */
  height: 48px; /* ボタンの高さ */
  line-height: 1; /* デフォルトline-heightリセット */
  font-size: 1.6em;
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;
  background: #01438b;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  margin: 0 auto;
}
.send:hover {
  background: #fff;
  color: #01438b;
  border: 1px solid #01438b;
}

/* ドロップダウンのラベル */
.contact-form__field {
  margin: 0;
  width: 100%;
}

/* 都道府県選択 */
.wpcf7-form-control .wpcf7-select .wpcf7-validates-as-required .prefecture .contact-form__select {
  margin-bottom: 24px;
  height: 48px;
  padding: 16px;
}

/* セレクトボックス */
.wpcf7-form-control .wpcf7-acceptance {
  padding: 0;
}

.privacy {
  padding-left: 16px;
  font-size: 1.4em;
}
.privacy__label {
  color: #01438b;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-list-item {
  margin: 0;
  padding-bottom: 2px;
}

.col1.center > p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}/*# sourceMappingURL=contact.css.map */