@charset "UTF-8";
.pc-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-hidden {
    display: inline-block;
  }
}

.pc-hiddenSp {
  display: none;
}
@media screen and (max-width: 375px) {
  .pc-hiddenSp {
    display: inline-block;
  }
}

.sp-hidden {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sp-hidden {
    display: none;
  }
}

/*-- globalフォルダの中の_index.scss --*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

body {
  color: #333333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.944;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
a:hover img {
  opacity: 0.8;
}
a img {
  transition-property: opacity;
  transition-duration: 0.2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 1px;
}

small {
  font-size: inherit;
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  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*/
}

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

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

/*-- baseフォルダの中の_index.scss --*/
.m-btn1 .m-btn1__link {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
  padding: 0.7em 0.1em;
  border-radius: 25px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .m-btn1 .m-btn1__link {
    font-size: clamp(0.813rem, 0.634rem + 0.76vw, 1rem);
  }
}
.m-btn1 .m-btn1__link:hover {
  transform: scale(1.05);
}

.m-btn1--big .m-btn1__link {
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  padding: 0.3em 0.1em;
}
@media screen and (max-width: 768px) {
  .m-btn1--big .m-btn1__link {
    font-size: clamp(0.938rem, 0.639rem + 1.27vw, 1.25rem);
  }
}

.m-btn1--small {
  width: min(100%, 220px);
}
@media screen and (max-width: 768px) {
  .m-btn1--small {
    width: min(100%, 165px);
  }
}
.m-btn1--small .m-btn1__link {
  font-size: 18px;
  font-weight: 400;
  line-height: 2.2222222222;
  letter-spacing: 0em;
  padding: 0.3em 0.1em;
}
@media screen and (max-width: 768px) {
  .m-btn1--small .m-btn1__link {
    font-size: 13px;
  }
}

.m-btn1--green .m-btn1__link {
  color: #fff;
  background-color: #00976E;
  border: 1px solid #00976E;
}

.m-btn1--white .m-btn1__link {
  color: #00976E;
  background-color: #fff;
  border: 1px solid #00976E;
}

.m-btn1--icon .m-btn1__link .icon {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}
.m-btn1--icon .m-btn1__link .icon::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.m-btn1--icon .m-btn1__link .icon--phone::before {
  background-image: url("../img/icon-phone.svg");
  width: 7px;
  padding-top: 21px;
  top: 5px;
  left: 5px;
}
.m-btn1--icon .m-btn1__link .icon--mail::before {
  background-image: url("../img/icon-mail.svg");
  width: 17px;
  padding-top: 13px;
  top: 8px;
  left: -3px;
}

.notfound .notfound__container {
  padding-top: clamp(3.125rem, 2.367rem + 3.24vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 2.367rem + 3.24vw, 6.25rem);
}
.notfound .notfound__detail {
  text-align: center;
  margin-top: 2em;
}
.notfound .m-btn1 {
  margin-inline: auto;
  margin-top: 40px;
}

.form-table {
  display: block;
  width: 100%;
  table-layout: fixed;
}
.form-table tbody {
  display: block;
  width: 100%;
}
.form-table .form-table__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1.9444444444;
  letter-spacing: 0em;
  margin-bottom: 37px;
  word-break: break-all;
}
@media screen and (max-width: 640px) {
  .form-table .form-table__box {
    display: block;
    margin-bottom: 30px;
  }
}
.form-table .form-table__box:last-child {
  margin-bottom: 0;
}
.form-table .form-table__box--start {
  align-items: flex-start;
}
.form-table .form-table__head {
  display: flex;
  align-items: center;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .form-table .form-table__head {
    width: 200px;
  }
}
@media screen and (max-width: 640px) {
  .form-table .form-table__head {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-table .form-table__head .req {
  font-size: clamp(0.75rem, 0.675rem + 0.32vw, 0.875rem);
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0em;
  display: inline-block;
  color: #FC320B;
  margin-left: 5px;
}
.form-table .form-table__detail {
  display: block;
  font-weight: 400;
  word-break: break-all;
  flex: 1;
}
@media screen and (max-width: 640px) {
  .form-table .form-table__detail {
    width: 100%;
  }
}
.form-table .form-table__flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 375px) {
  .form-table .form-table__flex {
    display: block;
  }
}
.form-table .form-table__flex .form-table__mini {
  display: flex;
  align-items: center;
}
.form-table .form-table__flex .form-table__mini--01 {
  width: 150px;
  max-width: 100%;
  margin-right: 35px;
}
@media screen and (max-width: 768px) {
  .form-table .form-table__flex .form-table__mini--01 {
    margin-right: 15px;
  }
}
.form-table .form-table__flex .form-table__mini--02 {
  flex: 1;
}
@media screen and (max-width: 375px) {
  .form-table .form-table__flex .form-table__mini--02 {
    margin-top: 10px;
  }
}
.form-table .form-table__flex .form-table__mini--02 .form-table__select {
  width: 105px;
  max-width: 100%;
}
.form-table .form-table__flex .form-table__mini .text {
  display: inline-block;
  margin-left: 12px;
}
.form-table .error {
  color: #FC320B !important;
}
.form-table .form-table__area {
  width: 100%;
  height: 60px;
  padding: 10px 16px;
  background-color: #fff;
  border: 1px solid #CCCCCC;
}
@media screen and (max-width: 640px) {
  .form-table .form-table__area {
    height: 45px;
    padding: 5px 20px 5px 10px;
  }
}
.form-table .form-table__area::-moz-placeholder {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 400;
  line-height: 2.1875;
  letter-spacing: 0em;
  color: #999999;
}
.form-table .form-table__area:-ms-input-placeholder {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 400;
  line-height: 2.1875;
  letter-spacing: 0em;
  color: #999999;
}
.form-table .form-table__area::placeholder {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 400;
  line-height: 2.1875;
  letter-spacing: 0em;
  color: #999999;
}
.form-table .form-table__content {
  height: 280px;
  resize: none;
}
@media screen and (max-width: 640px) {
  .form-table .form-table__content {
    height: 200px;
  }
}
.form-table .form-table__select {
  position: relative;
}
.form-table .form-table__select::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 28px;
  right: 13px;
}
@media screen and (max-width: 640px) {
  .form-table .form-table__select::before {
    top: 20px;
    right: 10px;
  }
}

.form-privacy {
  margin-top: clamp(2.813rem, 2.25rem + 2.4vw, 3.75rem);
  position: relative;
}
.form-privacy::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 21px;
  right: 7px;
}
.form-privacy::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 9px 6px;
  border-color: transparent transparent #000 transparent;
  position: absolute;
  bottom: 14px;
  right: 7px;
}
.form-privacy .form-privacy__content {
  height: 280px;
  overflow-y: auto;
  padding: 18px 24px;
  border: 1px solid #CCCCCC;
}
@media screen and (max-width: 640px) {
  .form-privacy .form-privacy__content {
    height: 200px;
    padding: 10px 22px 10px 10px;
  }
}
.form-privacy .form-privacy__content::-webkit-scrollbar {
  display: none;
}
.form-privacy .form-privacy__head {
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1.9444444444;
  letter-spacing: 0em;
}
.form-privacy .form-privacy__text {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 400;
  line-height: 1.5625;
  letter-spacing: 0em;
  margin-top: 1em;
}

.contact-check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.contact-check input[type=checkbox] {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.form-check {
  text-align: center;
  margin-top: 46px;
}
.form-check input[type=checkbox] {
  display: none;
}
.form-check span {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9444444444;
  letter-spacing: 0em;
  position: relative;
  padding-left: 2.4em;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .form-check span {
    font-size: 16px;
  }
}
.form-check span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  padding-top: 30px;
  top: 5px;
  left: 0;
  background-color: #CCCCCC;
}
@media screen and (max-width: 640px) {
  .form-check span::before {
    top: 1px;
  }
}
.form-check span::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  top: 13px;
  left: 5px;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .form-check span::after {
    top: 9px;
  }
}
.form-check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.mw_wp_form.mw_wp_form_input .select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mw_wp_form.mw_wp_form_input .button-wrap {
  text-align: center;
  margin-top: clamp(3.75rem, 2.25rem + 6.4vw, 6.25rem);
}
.mw_wp_form.mw_wp_form_input .button-wrap .button01 {
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  text-align: center;
  color: #333333;
  width: 100%;
  max-width: 480px;
  padding: 2.3em 0.5em;
  border: 1px solid transparent;
  background-color: #EAC321;
  border-radius: 2.8em;
  transition: opacity 0.5s ease, color 0.5s ease, border 0.5s ease, background-color 0.5s ease;
}
.mw_wp_form.mw_wp_form_input .button-wrap .button01:hover {
  opacity: 0.7;
}
.mw_wp_form.mw_wp_form_input .button-wrap .button01[disabled] {
  color: #fff;
  border: 1px solid #CCCCCC;
  background-color: #CCCCCC;
}

.mw_wp_form.mw_wp_form_confirm .form-table .form-table__select::before {
  content: none;
}
@media screen and (max-width: 375px) {
  .mw_wp_form.mw_wp_form_confirm .form-table .form-table__flex {
    display: flex;
  }
}
.mw_wp_form.mw_wp_form_confirm .form-table .form-table__flex .form-table__mini--01 {
  width: auto;
  margin-right: 0;
}
.mw_wp_form.mw_wp_form_confirm .form-table .form-table__flex .form-table__mini--02 {
  flex: inherit;
}
@media screen and (max-width: 375px) {
  .mw_wp_form.mw_wp_form_confirm .form-table .form-table__flex .form-table__mini--02 {
    margin-top: 0;
  }
}
.mw_wp_form.mw_wp_form_confirm .form-table .form-table__flex .form-table__mini--02 .form-table__select {
  width: auto;
}
.mw_wp_form.mw_wp_form_confirm .form-table .form-table__flex .text {
  margin-left: 0;
}
.mw_wp_form.mw_wp_form_confirm .form-privacy, .mw_wp_form.mw_wp_form_confirm .form-check {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .button-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(3.75rem, 2.25rem + 6.4vw, 6.25rem);
}
@media screen and (max-width: 640px) {
  .mw_wp_form.mw_wp_form_confirm .button-wrap {
    display: block;
    text-align: center;
  }
}
.mw_wp_form.mw_wp_form_confirm .button-wrap .button01 {
  width: 48%;
  max-width: 480px;
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  text-align: center;
  color: #333333;
  padding: 2.3em 0.5em;
  background-color: #EAC321;
  border-radius: 2.8em;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .mw_wp_form.mw_wp_form_confirm .button-wrap .button01 {
    width: 100%;
    margin-top: 25px;
  }
}
.mw_wp_form.mw_wp_form_confirm .button-wrap .button02 {
  width: 48%;
  max-width: 480px;
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  padding: 2.3em 0.5em;
  background-color: #CCCCCC;
  border-radius: 2.8em;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .mw_wp_form.mw_wp_form_confirm .button-wrap .button02 {
    width: 100%;
  }
}

.contact-complete .contact-complete-btn {
  text-align: center;
  margin-top: clamp(3.75rem, 2.25rem + 6.4vw, 6.25rem);
}
.contact-complete .contact-complete-btn .contact-complete-btn__link {
  display: inline-block;
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0em;
  text-align: center;
  color: #333333;
  width: 100%;
  max-width: 480px;
  padding: 2.3em 0.5em;
  background-color: #EAC321;
  border-radius: 2.8em;
  cursor: pointer;
}

.pageFlex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.pageFlex-container__footer {
  margin-top: auto;
}

.m-kv {
  height: clamp(32.188rem, 24.271rem + 16.49vw, 44.063rem);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-kv {
    height: 515px;
  }
}
@media screen and (max-width: 375px) {
  .m-kv {
    height: clamp(25rem, -16.818rem + 209.09vw, 32.188rem);
  }
}
.m-kv .m-kv__box {
  height: clamp(9.375rem, 6.625rem + 5.73vw, 13.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  bottom: clamp(4.375rem, 2.667rem + 3.56vw, 6.938rem);
  background: rgba(0, 151, 110, 0.8);
}
@media screen and (max-width: 768px) {
  .m-kv .m-kv__box {
    height: auto;
    padding: clamp(0.625rem, -1.193rem + 9.09vw, 0.938rem) clamp(1.5rem, -2.864rem + 21.82vw, 2.25rem);
    justify-content: flex-start;
    bottom: 33px;
  }
}
.m-kv .m-kv__title {
  font-size: clamp(1.875rem, 1.042rem + 1.74vw, 3.125rem);
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: 0em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .m-kv .m-kv__title {
    font-size: clamp(1.5rem, -1.045rem + 12.73vw, 1.938rem);
  }
}

#top .m-kv {
  background-image: url(../img/top/kv.jpg);
}
@media screen and (max-width: 768px) {
  #top .m-kv {
    background-image: url(../img/top/kv_sp.jpg);
  }
}
#top .m-kv__box {
  width: min(100%, clamp(28.125rem, 9.583rem + 38.63vw, 55.938rem));
}
@media screen and (max-width: 768px) {
  #top .m-kv__box {
    width: min(100%, 300px);
  }
}
@media screen and (max-width: 375px) {
  #top .m-kv__box {
    width: 80%;
  }
}
#top .m-kv__title {
  margin-right: 45px;
}
@media screen and (max-width: 768px) {
  #top .m-kv__title {
    margin-right: 0;
  }
}

#join .m-kv {
  background-image: url(../img/join/kv.jpg);
}
#join .m-kv__box {
  width: min(100%, clamp(28.125rem, 16.875rem + 23.44vw, 45rem));
}
@media screen and (max-width: 768px) {
  #join .m-kv__box {
    width: min(100%, 340px);
    bottom: 90px;
  }
}
@media screen and (max-width: 375px) {
  #join .m-kv__box {
    width: 83%;
  }
}
#join .m-kv__title {
  margin-right: 57px;
}
@media screen and (max-width: 768px) {
  #join .m-kv__title {
    margin-right: 0;
  }
}

#company .m-kv {
  background-image: url(../img/company/kv.jpg);
}
#company .m-kv__box {
  width: min(100%, clamp(26.25rem, 13.75rem + 26.04vw, 45rem));
}
@media screen and (max-width: 768px) {
  #company .m-kv__box {
    width: min(100%, 300px);
    bottom: 90px;
  }
}
@media screen and (max-width: 375px) {
  #company .m-kv__box {
    width: 83%;
  }
}
#company .m-kv__title {
  margin-right: 84px;
}
@media screen and (max-width: 768px) {
  #company .m-kv__title {
    margin-right: 0;
  }
}

#service .m-kv {
  background-image: url(../img/service/kv.jpg);
}
#service .m-kv__box {
  width: min(100%, clamp(21.875rem, 6.458rem + 32.12vw, 45rem));
}
@media screen and (max-width: 768px) {
  #service .m-kv__box {
    width: min(100%, 300px);
    bottom: 90px;
  }
}
@media screen and (max-width: 375px) {
  #service .m-kv__box {
    width: 83%;
  }
}
#service .m-kv__title {
  margin-right: 81px;
}
@media screen and (max-width: 768px) {
  #service .m-kv__title {
    margin-right: 0;
  }
}

#news .m-kv {
  background-image: url(../img/news/kv.jpg);
}
#news .m-kv__box {
  width: min(100%, clamp(21.875rem, 6.458rem + 32.12vw, 45rem));
}
@media screen and (max-width: 768px) {
  #news .m-kv__box {
    width: min(100%, 300px);
    bottom: 90px;
  }
}
@media screen and (max-width: 375px) {
  #news .m-kv__box {
    width: 83%;
  }
}
#news .m-kv__title {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  #news .m-kv__title {
    margin-right: 0;
  }
}

#contact .m-kv {
  background-image: url(../img/contact/kv.jpg);
}
#contact .m-kv__box {
  width: min(100%, clamp(21.875rem, 6.458rem + 32.12vw, 45rem));
}
@media screen and (max-width: 768px) {
  #contact .m-kv__box {
    width: min(100%, 300px);
    bottom: 90px;
  }
}
@media screen and (max-width: 375px) {
  #contact .m-kv__box {
    width: 83%;
  }
}
#contact .m-kv__title {
  margin-right: 110px;
}
@media screen and (max-width: 768px) {
  #contact .m-kv__title {
    margin-right: 0;
  }
}

.tellink {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tellink {
    pointer-events: auto;
  }
}

.m-subtitle {
  font-size: clamp(1.438rem, 1.216rem + 0.94vw, 2.125rem);
  font-weight: 400;
  line-height: 1.5294117647;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .m-subtitle {
    font-weight: 400;
    line-height: 1.347826087;
    letter-spacing: 0em;
  }
}

.m-title1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
  padding-bottom: 1.1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .m-title1 {
    font-size: 26px;
  }
}
.m-title1::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 37px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #00976E;
}
@media screen and (max-width: 768px) {
  .m-title1::before {
    height: 24px;
  }
}

.m-title2 {
  display: flex;
  align-items: center;
  font-size: clamp(0.813rem, 0.732rem + 0.34vw, 1.063rem);
  font-weight: 400;
  line-height: 1.7647058824;
  letter-spacing: 0em;
  color: #00976E;
  position: relative;
}
.m-title2::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: clamp(1.75rem, 1.569rem + 0.77vw, 2.313rem);
  margin-right: clamp(0.625rem, 0.524rem + 0.43vw, 0.938rem);
  background-color: #00976E;
}
.m-title2--big {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.7368421053;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .m-title2--big {
    font-size: clamp(1.563rem, 1.365rem + 0.84vw, 2.375rem);
  }
}
@media screen and (max-width: 768px) {
  .m-title2--big::before {
    margin-right: 0.1em;
  }
}

.m-title3 {
  font-size: clamp(1.375rem, 1.193rem + 0.78vw, 2.125rem);
  font-weight: 400;
  line-height: 1.5294117647;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 1.1em;
  color: #00976E;
  position: relative;
}
.m-title3::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: clamp(1.5rem, 1.303rem + 0.84vw, 2.313rem);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #00976E;
}

.m-title4 {
  font-size: clamp(1.5rem, 1.318rem + 0.78vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  color: #00976E;
}

.m-title5 {
  font-size: clamp(1.25rem, 1.129rem + 0.52vw, 1.75rem);
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 1em;
  position: relative;
  counter-increment: number;
}
.m-title5::before {
  content: "0" counter(number);
  display: inline-block;
  font-size: clamp(1rem, 0.924rem + 0.32vw, 1.313rem);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #00976E;
}

.wp-post::before {
  content: "";
  display: table;
}
.wp-post::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.wp-post > :last-child {
  margin-bottom: 0;
}
.wp-post p {
  margin-bottom: 20px;
}
.wp-post span,
.wp-post em,
.wp-post strong {
  font-size: inherit;
  color: inherit;
}
.wp-post strong,
.wp-post b {
  font-weight: bold;
}
.wp-post em {
  font-style: italic;
}
.wp-post blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.wp-post h1 {
  font-size: 160%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h2 {
  font-size: 140%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h3 {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h4 {
  font-size: 100%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h5 {
  font-size: 80%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h6 {
  font-size: 70%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post table {
  width: 100%;
  margin-bottom: 30px;
}
.wp-post table th {
  width: 25%;
  background-color: #eee;
  padding: 4px;
  border: 1px solid #aaa;
}
.wp-post table td {
  padding: 4px;
  border: 1px solid #aaa;
}
.wp-post ul {
  list-style: circle;
  padding-left: 1.2em;
  margin-bottom: 1em;
}
.wp-post ol {
  list-style: decimal;
  padding-left: 1.2em;
  margin-bottom: 1em;
}
.wp-post a {
  text-decoration: underline;
  color: #003cff;
}
.wp-post a:hover {
  color: #ff0004;
}
.wp-post img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.wp-post img[class*=wp-image-],
.wp-post img[class*=attachment-],
.wp-post img.pict {
  margin: 1em 5px 2em 0;
  display: block;
}
.wp-post img.pict {
  margin: 1em auto 2em;
}
.wp-post img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-post img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline;
  vertical-align: top;
}
.wp-post img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline;
  vertical-align: top;
}
.wp-post .alignright {
  float: right;
}
.wp-post .alignleft {
  float: left;
}
.wp-post iframe {
  max-width: 100% !important;
}

.wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    margin-right: 8.375%;
    margin-left: 8.375%;
  }
}

/*-- componentフォルダの中の_index.scss --*/
.js-movie-slider button.arrow-common {
  position: absolute;
  top: -54px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  padding-top: 40px;
  cursor: pointer;
  z-index: 5;
}
@media screen and (max-width: 640px) {
  .js-movie-slider button.arrow-common {
    width: 27px;
    padding-top: 27px;
    top: 19%;
  }
}
@media screen and (max-width: 375px) {
  .js-movie-slider button.arrow-common {
    top: 70px;
  }
}
.js-movie-slider button.arrow-prev {
  background-image: url(../img/top/arrow01.png);
  right: 59px;
}
@media screen and (max-width: 1650px) {
  .js-movie-slider button.arrow-prev {
    right: 70px;
  }
}
@media screen and (max-width: 640px) {
  .js-movie-slider button.arrow-prev {
    right: 61px;
  }
}
.js-movie-slider button.arrow-next {
  background-image: url(../img/top/arrow02.png);
  right: -19px;
}
@media screen and (max-width: 1650px) {
  .js-movie-slider button.arrow-next {
    right: 0;
  }
}
@media screen and (max-width: 640px) {
  .js-movie-slider button.arrow-next {
    right: 19px;
  }
}
.js-movie-slider button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.js-movie-slider button:focus {
  outline: none;
}

/*-- javascriptフォルダの中の_index.scss --*/
.l-footer {
  background-color: #00976E;
}
.l-footer .l-footer__container {
  max-width: 1465px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 100px;
  padding-top: clamp(1.625rem, 0.614rem + 4.31vw, 4.563rem);
  padding-bottom: 48px;
}
@media screen and (max-width: 1465px) {
  .l-footer .l-footer__container {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__container {
    margin-right: 8.375%;
    margin-left: 8.375%;
  }
}
@media screen and (max-width: 1465px) {
  .l-footer .l-footer__container {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__container {
    margin-inline: 9%;
    padding-bottom: 10px;
  }
}
.l-footer .l-footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-company {
    margin-top: 64px;
    text-align: center;
  }
}
.l-footer .l-footer-company .l-footer-company__point {
  font-size: clamp(0.688rem, 0.58rem + 0.46vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0em;
  margin-top: 0.8em;
  color: #fff;
}
.l-footer .l-footer-company .sns {
  display: flex;
  margin-top: clamp(1.375rem, 1.267rem + 0.46vw, 1.688rem);
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-company .sns {
    justify-content: center;
    margin-left: 17px;
  }
}
.l-footer .l-footer-company .sns .sns__item {
  margin-inline: 6px;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-company .sns .sns__item {
    max-width: 36px;
    margin-inline: 10px;
  }
}
.l-footer .l-footer-company .sns .link {
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer-nav {
    width: min(100%, 200px);
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-nav {
    display: flex;
    justify-content: space-between;
    order: -1;
    width: auto;
  }
}
.l-footer .l-footer-nav .nav-list {
  display: flex;
  justify-content: flex-end;
  margin-right: 11px;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer-nav .nav-list {
    display: block;
  }
}
.l-footer .l-footer-nav .nav-list .nav-list__item {
  margin-left: clamp(1.688rem, 1.085rem + 2.57vw, 3.438rem);
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer-nav .nav-list .nav-list__item {
    margin-left: 0;
  }
}
.l-footer .l-footer-nav .nav-list .nav-list__item:first-child {
  margin-left: 0;
}
.l-footer .l-footer-nav .nav-list .link {
  display: inline-block;
  font-size: clamp(0.75rem, 0.664rem + 0.37vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  color: #fff;
}
.l-footer .l-footer-nav .cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer-nav .cta {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-nav .cta {
    width: min(100%, 130px);
    margin-top: 0;
  }
}
.l-footer .l-footer-nav .cta .cta__item {
  width: min(100%, 170px);
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-nav .cta .cta__item {
    width: min(100%, clamp(8.594rem, 6.656rem + 8.27vw, 10.625rem));
  }
}
.l-footer .l-footer-nav .cta .cta__item:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .l-footer .l-footer-nav .cta .cta__item:first-child {
    margin-right: 0;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-nav .cta .cta__link {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-nav .cta .cta__link .icon--phone::before {
    width: 6px;
    padding-top: 18px;
    top: 3px;
    left: 7px;
  }
}
.l-footer .l-footer-nav .cta .cta__link--contact .icon--mail::before {
  background-image: url(../img/icon-mail02.svg);
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-nav .cta .cta__link--contact .icon--mail::before {
    width: 15px;
    padding-top: 11px;
    left: -1px;
  }
}
.l-footer .l-footer-company-small {
  text-align: right;
  margin-top: clamp(5.063rem, 4.052rem + 4.31vw, 8rem);
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-company-small {
    text-align: center;
    margin-right: 0px;
  }
}
.l-footer .l-footer-company-small small {
  font-size: clamp(0.688rem, 0.623rem + 0.28vw, 0.875rem);
  font-weight: 300;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer-company-small small {
    font-size: 11px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F1F1F1;
  z-index: 999;
}
.l-header .l-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px 22px 64px;
}
@media screen and (max-width: 1450px) {
  .l-header .l-header__container {
    padding: 26px 2% 22px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-header__container {
    padding: 10px 3% 12px;
  }
}
.l-header .l-header__logo {
  width: min(100%, 398px);
}
@media screen and (max-width: 1450px) {
  .l-header .l-header__logo {
    width: min(100%, 340px);
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-header__logo {
    width: min(100%, clamp(14.625rem, 8.303rem + 26.97vw, 21.25rem));
  }
}
.l-header .l-header__logo .logo {
  display: inline-block;
}
.l-header .l-header__area {
  display: contents;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__area {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #00976E;
  }
}
.l-header .l-header__inner {
  display: contents;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 62px 40px 30px 50px;
    margin-top: 0;
    max-width: none;
  }
}
@media screen and (max-width: 1200px) {
  .l-header .nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header .nav {
    display: block;
  }
}
.l-header .nav .nav-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-header .nav .nav-list {
    display: block;
    color: #fff;
  }
}
.l-header .nav .nav-list .nav-list__item {
  margin-inline: 28px;
}
@media screen and (max-width: 1600px) {
  .l-header .nav .nav-list .nav-list__item {
    margin-inline: 20px;
  }
}
@media screen and (max-width: 1450px) {
  .l-header .nav .nav-list .nav-list__item {
    margin-inline: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .nav .nav-list .nav-list__item {
    margin-inline: 0;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .nav .nav-list .nav-list__item:last-child {
    margin-bottom: 0;
  }
}
.l-header .nav .nav-list .link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .l-header .nav .nav-list .link {
    font-size: clamp(0.75rem, 0.034rem + 3.05vw, 1.5rem);
  }
}
.l-header .cta {
  display: flex;
  width: 349.5px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .l-header .cta {
    display: block;
    margin-top: 29px;
    width: auto;
  }
}
.l-header .cta .cta__item {
  width: min(100%, 170px);
}
@media screen and (max-width: 768px) {
  .l-header .cta .cta__item {
    width: min(100%, clamp(8.594rem, 6.656rem + 8.27vw, 10.625rem));
  }
}
.l-header .cta .cta__item:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .l-header .cta .cta__item:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .cta .m-btn1--white .cta__link {
    color: #fff;
    background: #00976E;
    border: 1px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-header .cta .m-btn1--white .icon--phone::before {
    background-image: url("../img/icon-phone02.svg");
    top: 3px;
  }
}
@media screen and (max-width: 768px) {
  .l-header .cta .m-btn1--green .cta__link {
    color: #00976E;
    background: #fff;
    border: 1px solid #00976E;
  }
}
@media screen and (max-width: 768px) {
  .l-header .cta .m-btn1--green .icon--mail::before {
    background-image: url("../img/icon-mail02.svg");
    width: 15px;
    padding-top: 11px;
    top: 6px;
    left: 0px;
  }
}
.l-header .menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header .menu {
    display: block;
    position: absolute;
    top: 50%;
    right: clamp(1.188rem, 0.651rem + 2.29vw, 1.75rem);
    width: clamp(1.375rem, 0.063rem + 5.6vw, 2.75rem);
    height: clamp(0.938rem, 0.043rem + 3.82vw, 1.875rem);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 9999;
  }
}
.l-header .menu span {
  display: inline-block;
  transition: all ease 0.5s;
  position: absolute;
  left: 0;
  height: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem);
  width: 100%;
  background-color: #00976E;
}
.l-header .menu span:nth-of-type(1) {
  top: 0;
}
.l-header .menu span:nth-of-type(2) {
  top: clamp(0.438rem, 0.02rem + 1.78vw, 0.875rem);
}
.l-header .menu span:nth-of-type(3) {
  top: auto;
  bottom: 0;
}
.l-header .menu.active span {
  background-color: #fff;
}
.l-header .menu.active span:nth-of-type(1) {
  top: 5px;
  width: 90%;
  transform: translateY(6px) rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .l-header .menu.active span:nth-of-type(1) {
    top: 1px;
  }
}
.l-header .menu.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .menu.active span:nth-of-type(3) {
  top: 17px;
  width: 90%;
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (max-width: 640px) {
  .l-header .menu.active span:nth-of-type(3) {
    top: 13px;
  }
}

/*-- layoutフォルダの中の_index.scss --*/
/*# sourceMappingURL=style.css.map */
