@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --white: #ffffff;
  --text-color: #000000;
  --main: #0067B6;
  --sub: #E6C000;
  --acc: #289BEC;
  --bg: #F1F8FE;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --inner_width: 135rem;
  --inner_width12: 120rem;
  --pi: 3.5rem;
  --transition: 0.5s;
}

/* -------------------------------------------*/
:root {
  --base-font: "Noto Sans JP",
              "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
              "游ゴシック",YuGothic,
              "メイリオ",Meiryo,
              sans-serif;
  --serif: "Noto Serif JP",
          "游明朝",
          "YuMincho",
          "ヒラギノ明朝 ProN W6",
          "Hiragino Mincho ProN",
          "Hiragino Mincho Pro",
          "ＭＳ 明朝",
          serif;
  --eng: "Lexend", sans-serif;
  --kaku: "Zen Kaku Gothic New", sans-serif;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
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 {
  border: 0;
  font-size: 100%;
  font-weight: 400;
  margin: 0;
  padding: 0;
  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;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  font-size: 62.5%;
  overflow: auto;
}

body {
  color: var(--text-color);
  font-family: var(--base-font);
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  height: 100%;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  position: relative;
}

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

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

hgroup {
  position: relative;
}

a,
button {
  color: inherit;
  display: block;
  height: 100%;
  text-decoration: none;
  transition: 0.5s;
}

a[href^="tel:"] {
  display: inline;
}

picture {
  display: block;
}

figure {
  display: block;
  overflow: hidden;
}

img {
  height: 100%;
  vertical-align: middle;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: var(--transition);
}

em {
  font-style: normal;
}

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

input,
button,
select,
optgroup,
textarea {
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
  -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 {
  border-style: none;
  padding: 0;
}

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 {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 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;
}

address {
  font-style: normal;
}
/* スクロールバーのトラックの背景色 */
::-webkit-scrollbar-track {
  background-color: transparent;
}

/* スクロールバーのスクロール部分 */
::-webkit-scrollbar-thumb {
  background-color: #19274e;
  border-radius: 5px;
}

/* スクロールバーの上部ボタン */
::-webkit-scrollbar-button:start {
  display: none;
}

/* スクロールバーの下部ボタン */
::-webkit-scrollbar-button:end {
  display: none;
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  border: none;
  border: none;
  border: none;
  border-radius: 5px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 17px 18px;
  position: relative;
  width: 100%;
}

input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  border: none;
  border: none;
  border-radius: 5px;
  height: 200px;
  letter-spacing: 0.1em;
  padding: 10px;
  position: relative;
  width: 100%;
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::-moz-placeholder {
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  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 {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  position: relative;
  transition: var(--transition);
  vertical-align: middle;
}

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

input[type=radio] + .mwform-radio-field-text::after {
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  z-index: 5;
}

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

input[type=checkbox] + label {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 0 0 0 35px;
  position: relative;
  transition: var(--transition);
}

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

input[type=checkbox] + label::after {
  content: "";
  display: block;
  height: 5px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  transition: var(--transition);
  width: 10px;
  z-index: 3;
}

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

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

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

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

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.l-footer {
  background-color: var(--text-color);
  color: var(--white);
  padding-block: 4.8rem 2.4rem;
  padding-inline: var(--pi);
}

.l-footer__inner {
  margin-inline: auto;
  max-width: 137rem;
  padding-left: 1.5rem;
}

.l-footer__top {
  align-items: flex-start;
  display: grid;
  gap: 9.1851851852%;
  grid-template-columns: 27.1rem 1fr;
}

.l-footer__logo {
  aspect-ratio: 179/36;
  width: 17.9rem;
}

.l-footer__menu {
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  gap: 5.9422750424%;
  line-height: 1.89;
  max-width: 59.1rem;
}

.l-footer__list {
  white-space: nowrap;
}

.l-footer__center {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr 15.2rem;
  position: relative;
}

.l-footer__centerLeft {
  padding-top: 1rem;
}

.l-footer__address {
  margin-top: 3.3rem;
}

.l-footer__name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.89;
}

.l-footer__location {
  font-weight: 500;
  line-height: 1.87;
}

.l-footer__tel {
  font-weight: 500;
  line-height: 1.87;
}

.l-footer__fax {
  font-weight: 500;
  line-height: 1.87;
}

.l-footer__banner {
  aspect-ratio: 274/111;
  margin-top: 1.7rem;
  width: 27.4rem;
}

.l-footer__ISO {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 19.2rem;
}

.l-footer__bottom {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.67;
  text-align: center;
}

.l-footer__subMenu {
  bottom: 2rem;
  display: flex;
  gap: 2rem;
  left: 0;
  position: absolute;
}

.l-footer__subList a {
  font-size: 1.3rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-header {
  background-color: var(--white);
  container-name: header;
  container-type: inline-size;
  left: 0;
  padding-block: 2.4rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.l-header__container {
  align-items: center;
  display: flex;
  gap: 3.2258064516%;
  justify-content: space-between;
  padding-left: 3.125%;
}

.l-header__logo {
  aspect-ratio: 215/43;
  width: 13.8709677419%;
}
.l-header__ctaBtn a {
  align-content: center;
  background-color: var(--sub);
  border-radius: 100px 0 0 100px;
  font-family: var(--kaku);
  font-weight: 700;
  height: 5.7rem;
  line-height: 1.875;
  padding-left: 7.2rem;
  position: relative;
  width: 20rem;
}
.l-header__ctaBtn a::before {
  aspect-ratio: 24.6/18.4;
  background-image: url(../images/common/mail-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 2.4rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.46rem;
}

.l-header__hamburger {
  display: none;
}
.l-header__hamburger span {
  background-color: var(--white);
  display: block;
  height: 0.13rem;
  pointer-events: none;
  transition: var(--transition);
  width: 1.3rem;
}

.l-header__hamburger.clicked span:nth-child(1) {
  rotate: 45deg;
  translate: 0 0.4rem;
}
.l-header__hamburger.clicked span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.clicked span:nth-child(3) {
  rotate: -45deg;
  translate: 0 -0.4rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-main {
  position: relative;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-navi,
.l-low-navi {
  flex: 1;
}

.l-navi__list-block {
  align-items: center;
  display: flex;
  gap: 1.55em;
  max-width: 99.6rem;
  padding-left: 2rem;
  position: relative;
  width: 100%;
}
.l-navi__list-block::before {
  aspect-ratio: 16/18;
  background-image: url(../images/common/icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.6rem;
}

.l-navi__list a {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  position: relative;
}
.l-navi__list a::before {
  background-color: var(--main);
  bottom: -0.3em;
  content: "";
  display: block;
  height: 0.2rem;
  left: 0;
  position: absolute;
  transition: var(--transition);
  width: 0;
}
.l-low-navi .l-navi__list {
  color: var(--text-color);
}

.l-navi-spMenu {
  display: none;
  height: 100svh;
  --top: 0;
  background-color: var(--main);
  left: 0;
  position: fixed;
  right: 0;
  top: var(--top);
  z-index: 150;
}

.l-navi-spMenu.open {
  animation: open 0.3s forwards;
}

.l-navi-spMenu.close {
  animation: close 0.3s forwards;
}

@keyframes close {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes open {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.l-navi-spMenu__list-block {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 2rem;
}

.l-navi-spMenu__list a {
  border-bottom: 1px dashed;
  font-weight: 500;
  padding-block: 2.2rem 1.2rem;
  padding-left: 0.5em;
}

.l-navi-spMenu__btn a {
  align-content: center;
  background-color: var(--sub);
  border-radius: 100px;
  font-weight: 700;
  height: 5.7rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding-left: 2rem;
  position: relative;
  text-align: center;
  width: 30rem;
}
.l-navi-spMenu__btn a::before {
  aspect-ratio: 24/18;
  background-image: url(../images/common/mail-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 8rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.4rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.c-btn a {
  line-height: 1.87;
  padding-left: 1.8rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn a::before {
  background-color: var(--main);
  bottom: 0;
  content: "";
  display: block;
  height: 0.2rem;
  left: 1.8rem;
  position: absolute;
  right: 0;
}
.c-btn a::after {
  aspect-ratio: 9/10;
  background-color: var(--main);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 1.1rem;
  transition: var(--transition);
  width: 0.9rem;
}

/* -------------------------------------------*/
.c-cta {
  position: relative;
}
.c-cta::before {
  background-color: var(--main);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 7.6rem;
  z-index: -1;
}

.c-cta__inner {
  background: var(--main);
  border-radius: 24px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.16);
  color: var(--white);
  margin-inline: auto;
  padding-block: 4.6rem 7.4rem;
  width: min(93.75%, 1500px);
}

.c-cta__ttl {
  font-size: clamp(22px, 1.8125vw, 29px);
  font-weight: 700;
  line-height: 2.1;
  text-align: center;
}
.c-cta__ttl span {
  font-weight: 700;
}

.c-cta__contents {
  align-items: flex-start;
  display: grid;
  gap: 2.2421524664%;
  grid-template-columns: 1fr 29.8953662182% 38.1rem;
  margin-top: 4.5rem;
  padding-inline: 5.4%;
}

.c-cta__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.66;
  padding-right: 12.7906976744%;
}

.c-cta__telBox {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.c-cta__telText {
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.c-cta__telLink {
  font-family: var(--eng);
  font-size: min(2.5vw, 40px);
  font-weight: 500;
}

.c-cta__telCaption {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.c-cta__mailText {
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.c-cta__btn a {
  align-content: center;
  border: 3px solid var(--sub);
  border-radius: 40px;
  font-size: 1.8rem;
  height: 9.5rem;
  margin-top: 1.3rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: center;
}
.c-cta__btn a::before {
  aspect-ratio: 27/20;
  background-image: url(../images/common/mail-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: 3.7rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.7rem;
}

.c-bread {
  background-color: var(--bg);
  line-height: 2.12;
  padding-block: 1.4rem;
  padding-inline: var(--pi);
}

.c-bread__list {
  font-weight: 500;
  margin-inline: auto;
  max-width: 120rem;
  overflow: auto;
  white-space: nowrap;
}

.c-bread__item {
  display: inline-block;
  padding-right: 1.5em;
  position: relative;
}
.c-bread__item::before {
  content: ">";
  display: block;
  position: absolute;
  right: 0.5em;
}

.c-bread__item:last-child {
  pointer-events: none;
}

.c-bread__item:last-child::before {
  display: none;
}

.c-company-linkBlock {
  background-color: var(--bg);
  padding-block: 14rem;
  padding-inline: var(--pi);
}

.c-company-linkBlock__link-container {
  display: grid;
  margin-inline: auto;
  max-width: var(--inner_width12);
  --column: 2;
  grid-template-columns: repeat(var(--column), 1fr);
}

.c-company-linkBlock__link a {
  position: relative;
}

.c-company-linkBlock__image {
  aspect-ratio: 601/166;
  position: relative;
}

.c-company-linkBlock__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 3.5rem;
  text-align: center;
}

.c-company-linkBlock__text p {
  font-weight: 500;
  line-height: 1.87;
  margin-inline: auto;
  margin-top: 2.1rem;
  width: 89.850249584%;
}

.wp-block-image {
  margin-top: 1.5em;
}

.wp-block-gallery {
  margin-top: 1.5em;
}

.wp-block-media-text {
  margin-top: 3rem;
}

.wp-block-table {
  margin-top: 1.6rem;
}
.wp-block-table th {
  background-color: var(--main);
  border: 1px solid var(--text-color);
  color: var(--white);
  text-align: center;
}

.wp-element-caption {
  margin-top: 0.8rem;
}

h2.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 3.6rem;
  padding-bottom: 0.6rem;
  padding-inline: 0.3em 0.8em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
h2.wp-block-heading::before {
  background-color: var(--main);
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

h3.wp-block-heading {
  font-weight: 700;
  margin-top: 1.6rem;
  padding-bottom: 0.8rem;
  position: relative;
}

.p-singleNews__text p {
  margin-top: 0.8em;
}

ol.wp-block-list {
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-top: 2rem;
}
ol.wp-block-list li {
  padding-left: 1em;
  position: relative;
}
ol.wp-block-list li::before {
  content: counter(item) ".";
  counter-increment: item;
  display: block;
  left: 0;
  position: absolute;
}

ul.wp-block-list {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-top: 2rem;
}
ul.wp-block-list li {
  padding-left: 1em;
  position: relative;
}
ul.wp-block-list li::before {
  aspect-ratio: 1;
  background-color: var(--main);
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 1.2rem;
  width: 0.5em;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.37;
  padding-bottom: 3.1rem;
  position: relative;
  text-align: center;
}
.c-ttl::before {
  background-color: var(--acc);
  border-radius: 100px;
  bottom: 0;
  content: "";
  display: block;
  height: 0.5rem;
  left: 50%;
  position: absolute;
  translate: -50%;
  width: 19rem;
}

.c-company-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.37;
  padding-bottom: 2.6rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.c-company-ttl::before {
  background-color: var(--acc);
  border-radius: 100px;
  bottom: 0;
  content: "";
  display: block;
  height: 0.5rem;
  left: 0;
  position: absolute;
  right: 0;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.u-db {
  display: block;
}

.u-dn {
  display: none;
}

.u-960 {
  display: none;
}

.u-820 {
  display: none;
}

.u-480 {
  display: none;
}

.u-sp {
  display: none;
}

.u-1200_767 {
  display: none;
}

.u-inner {
  margin-inline: auto;
  max-width: var(--inner_width);
}

.u-upp {
  text-transform: uppercase;
}

@media (max-width: 1600px){
  .l-header__container {
    gap: 2.064516129%;
  }
}

@media (max-width: 1500px){
  .l-navi__list-block {
    gap: 1em;
  }
}

@media (max-width: 1440px){
  .l-header__ctaBtn a {
    padding-left: 4.2rem;
    width: 15rem;
  }
  .l-header__ctaBtn a::before {
    left: 1.6rem;
  }
}

@media (max-width: 1320px){
  .l-navi__list a {
    font-size: 1.6rem;
  }
}

@media (max-width: 1300px){
  .l-footer__top {
    gap: 4%;
  }
  .l-footer__center {
    display: block;
  }
  .l-footer__ISO {
    bottom: 0;
    padding-top: 0;
    position: absolute;
    right: 0;
    translate: 0 60%;
    width: 15.2rem;
  }
  .l-footer__subMenu {
    bottom: -4rem;
  }
}

@media (max-width: 1220px){
  .l-navi__list-block {
    gap: 0.8em;
  }
}

@media (max-width: 1200px){
  .l-footer__subList a {
    font-size: 1rem;
  }
  .l-header {
    padding-block: 1.4rem;
  }
  .l-header__ctaBtn a {
    display: none;
  }
  .l-header__hamburger {
    align-items: center;
    aspect-ratio: 1;
    background-color: var(--main);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: center;
    position: fixed;
    right: 1.9rem;
    top: 1.3rem;
    width: 2.7rem;
  }
  .l-navi,
  .l-low-navi {
    display: none;
  }
  .l-navi-spMenu {
    display: block;
    opacity: 0;
    padding-inline: var(--pi);
    visibility: hidden;
  }
  .c-company-linkBlock {
    padding-block: 7rem;
  }
  .c-ttl {
    font-size: max(3.3333333333vw, 20px);
  }
  .u-1200_767 {
    display: block;
  }
  .u-1200__up {
    display: none;
  }
}

@media screen and (max-width: 1200px){
  html {
    font-size: 57.5%;
  }
  input[type=text],
  input[type=date],
  input[type=password],
  input[type=email],
  input[type=time],
  input[type=tel],
  input[type=number] {
    padding: 10px;
  }
  textarea {
    height: 170px;
  }
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
  input[type=radio] + .mwform-radio-field-text::before {
    height: 15px;
    width: 15px;
  }
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    height: 9px;
    left: 3px;
    width: 9px;
  }
  input[type=checkbox] + label {
    padding-left: 30px;
  }
}

@media (max-width: 1080px){
  .c-cta__contents {
    gap: 4.5rem 1rem;
    grid-template-areas: "g-1 g-1" "g-2 g-3";
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    padding-inline: 0;
  }
  .c-cta__text {
    grid-area: g-1;
    padding-right: 0;
    text-align: center;
  }
  .c-cta__telBox {
    gap: 0.8rem;
    grid-area: g-2;
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-cta__mailBox {
    grid-area: g-3;
    margin-inline: auto;
    max-width: 31.6rem;
    width: 100%;
  }
  .c-cta__text {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .c-cta__telBox {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .c-cta__mailBox {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .c-cta__btn a {
    height: 8rem;
  }
  .c-company-ttl {
    font-size: max(3.3333333333vw, 24px);
  }
}

@media (max-width: 1024px){
  .l-footer__top {
    gap: 3%;
  }
}

@media (max-width: 960px){
  .l-footer__menu {
    font-size: 1.4rem;
    gap: 3.0560271647%;
  }
  .l-footer__address {
    font-size: 1.3rem;
  }
  .l-footer__banner {
    width: 42.2110552764%;
  }
  .c-cta__ttl {
    line-height: 1.6;
  }
  .u-960 {
    display: block;
  }
}

@media (max-width: 820px){
  .c-company-linkBlock__link-container {
    --column: 1;
    gap: 3rem;
  }
  .c-company-linkBlock__image {
    aspect-ratio: unset;
    height: 100%;
    min-height: 18rem;
  }
  .c-company-linkBlock__image::before {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .c-company-linkBlock__ttl {
    font-size: 2rem;
    margin-top: 0;
  }
  .c-company-linkBlock__text p {
    line-height: 1.3;
    margin-top: 1.6rem;
  }
  .c-company-linkBlock__caption {
    color: var(--white);
    left: 50%;
    position: absolute;
    top: 50%;
    translate: -50% -50%;
    width: 86%;
  }
  .c-ttl {
    margin-inline: auto;
    padding-bottom: 1.1rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-ttl::before {
    height: 0.3rem;
    width: 100%;
  }
  .u-820 {
    display: block;
  }
  .u-820__up {
    display: none;
  }
}

@media (max-width: 768px){
  .l-footer {
    padding-block: 4.5rem 3.9rem;
  }
  .l-footer__top {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .l-footer__logo {
    display: none;
  }
  .l-footer__center {
    margin-inline: auto;
    margin-top: 3.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-footer__centerLeft {
    display: none;
  }
  .l-footer__address {
    margin-top: 0;
    text-align: center;
  }
  .l-footer__name {
    letter-spacing: 0.05em;
  }
  .l-footer__location {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-top: 1.6rem;
  }
  .l-footer__tel {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .l-footer__fax {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .l-footer__ISO {
    position: unset;
    translate: 0;
  }
  .l-footer__bottom {
    font-size: 1.3rem;
    line-height: 1.92;
    margin-top: 1.3rem;
    translate: 0;
  }
  .l-footer__subMenu {
    display: none;
  }
  .l-header__logo {
    width: 10.5rem;
  }
  .c-btn a {
    align-content: center;
    border: 3px solid var(--main);
    border-radius: 100px;
    height: 7.8rem;
    margin-inline: auto;
    padding-left: 2rem;
    text-align: center;
    width: 33.6rem;
  }
  .c-btn a::before {
    display: none;
  }
  .c-btn a::after {
    left: 11.2rem;
    top: 50%;
    translate: 0 -50%;
  }
  .c-cta__inner {
    border-radius: 0;
    padding-block: 3.4rem 4.7rem;
    padding-inline: var(--pi);
    width: 100%;
  }
  .c-cta__ttl {
    font-size: 3rem;
    line-height: 1.63;
  }
  .c-cta__text {
    font-size: 1.6rem;
    line-height: 1.64;
    min-width: 0;
    text-align: left;
  }
  .c-cta__telLink {
    font-size: 3rem;
  }
  .c-bread {
    display: none;
  }
  .c-company-ttl {
    font-size: max(5.2083333333vw, 20px);
    padding-bottom: 1.1rem;
  }
  .c-company-ttl::before {
    height: 0.3rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media (max-width: 768px) and (hover: hover) and (pointer: fine){
  .c-btn a:hover::after {
    translate: 5px -50% !important;
  }
}

@media (max-width: 767px){
  .u-1200_767 {
    display: none;
  }
}

@media not all and (max-width: 767px){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px){
  :root {
    --pi: 2rem;
  }
  html {
    font-size: 62.5%;
  }
}

@media (max-width: 666px){
  .c-cta__contents {
    gap: 2.4rem;
    grid-template-areas: "g-1 g-1" "g-2 g-2" "g-3 g-3";
  }
  .c-cta__text {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .c-cta__telBox {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .c-cta__mailBox {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

@media (max-width: 480px){
  .c-cta__ttl {
    font-size: 2.2rem;
    text-align: left;
  }
  .c-cta__ttl span {
    font-size: 3.2rem;
  }
  .c-cta__telBox {
    width: 100%;
  }
  .c-cta__mailBox {
    width: 100%;
  }
  .c-cta__btn a {
    width: 100%;
  }
  .u-480 {
    display: block;
  }
}

@media (hover: hover) and (pointer: fine){
  a:hover,
  button:hover {
    opacity: 0.7;
  }
  a:hover img,
  button:hover img {
    scale: 1.05;
  }
  .l-header__logo a:hover img {
    scale: unset;
  }
  .l-navi__list a:hover::before {
    width: 100%;
  }
  .c-btn a:hover::after {
    translate: 5px;
  }
  .c-cta__btn a:hover {
    background-color: var(--white);
    color: var(--main);
    opacity: 1;
  }
}

@media all and (-ms-high-contrast: none){
  html,
  body {
    display: none;
  }
}
/*# sourceMappingURL=maps/style.css.map */
