@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1280px;
  --content-both_space: 40px;
  --header_height:142px;
  --waves_height: 60px;
}
@media screen and (max-width: 1000px) {
  :root {
    --content_width: 860px;
    --content-both_space: 20px;
    --header_height:130px;
    --waves_height: 20px;
  }
}
@media screen and (max-width: 667px) {
  :root {
    --content_width: 100%;
  }
}

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

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* -------------------------------------------*/
/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
  body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  overflow: auto;
  font-size: 62.5% !important;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 57.5% !important;
  }
}
@media screen and (max-width: 667px) {
  html {
    font-size: 62.5% !important;
  }
}

body {
  height: 100%;
  font-size: 1.6rem !important;
  font-weight: 400;
  line-height: 1.5 !important;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  letter-spacing: normal;
  color: #000000;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

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

picture {
  display: block;
  line-height: 0;
}

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

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  vertical-align: middle;
  position: relative;
  border: none;
  border: none;
  margin: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

@media screen and (min-width: calc(667px + 1px)) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: 800ms;
}
.js-fade__view--delay1 {
  transition-delay: 100ms;
}
.js-fade__view--delay2 {
  transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  transform: translateY(-50px);
  transition: 800ms;
}
.js-fade__down--delay1 {
  transition-delay: 100ms;
}
.js-fade__down--delay2 {
  transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  position: relative;
  width: 100%;
  letter-spacing: 0.1em;
}
input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  position: relative;
  border: none;
  border: none;
  width: 100%;
  height: 300px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  textarea {
    height: 170px;
  }
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::placeholder {
  color: #F1F8FE;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
}

input[type=radio] + .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.5s ease;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::before {
    width: 15px;
    height: 15px;
  }
}

input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background-color: #37B9BE;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    left: 3px;
    width: 9px;
    height: 9px;
  }
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  vertical-align: middle;
}

input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 35px;
  line-height: 1;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  input[type=checkbox] + label {
    padding-left: 30px;
  }
}

input[type=checkbox] + label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 2px #818181 solid;
  box-sizing: border-box;
  z-index: 2;
}

input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #F1F8FE;
  border-bottom: 3px solid #F1F8FE;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  opacity: 0;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  position: relative;
  width: 100%;
  border: 1px #F1F8FE solid;
  border-radius: 5px;
  overflow: hidden;
}
.select-parts::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  margin-top: 2px;
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  pointer-events: none;
  z-index: 5;
}
.select-parts select {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 0 20px 0 15px;
  background: #fbefe3;
  color: #7f7f7f;
  font-size: 2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .select-parts select {
    font-size: 15rem;
  }
}

/**
 * file
 *
 */
input[type=file] + label {
  width: 160px;
  margin: 0 10px 0 0;
  padding: 15px 0;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
.p-sitemap__logo {
  width: 15.9rem;
  height: auto;
}
@media screen and (max-width: 667px) {
  .p-sitemap__logo {
    display: none;
  }
}

.p-sitemap__container {
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 667px) {
  .p-sitemap__container {
    display: block;
  }
}

.p-sitemap__wrapper {
  margin-left: auto;
  max-width: 85.6rem;
  width: 100%;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 667px) {
  .p-sitemap__wrapper {
    flex-direction: column;
    gap: 0;
  }
}

.p-sitemap__leftSideContent,
.p-sitemap__rightSideContent {
  max-width: 36.7rem;
  width: 100%;
}
@media screen and (max-width: 667px) {
  .p-sitemap__leftSideContent,
  .p-sitemap__rightSideContent {
    max-width: initial;
  }
}

.p-sitemap__rightSideContent {
  margin-left: auto;
}

.p-sitemap__lists {
  display: flex;
  flex-direction: column;
}

.p-sitemap__list {
  padding: 3rem 0 3rem;
}

.p-sitemap__list:first-child {
  padding-top: 0;
}

@media screen and (max-width: 667px) {
  .p-sitemap__rightSideContent .p-sitemap__list:first-child {
    padding-top: 3rem;
    border-top: 0.1rem solid #707070;
  }
}

.p-sitemap__list:not(:first-child) {
  border-top: 0.1rem solid #707070;
}

.p-sitemap__list-link {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
}

.p-sitemap__list-sub {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-sitemap__list-nested {
  padding-left: 1.8em;
}

.p-sitemap__nested-link {
  position: relative;
  padding-left: 1rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8888888889;
}

.p-sitemap__nested-link::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.1rem;
  background-color: #000000;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-sitemap a:hover {
  text-decoration: underline;
}