@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1000px;
  --content-both_space: 15px;
  --header_height: 90px;
  --waves_height: 60px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
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: inherit;
  font-size: 100%;
  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;
  height: auto; /*  高さの指定を外す or autoに */
  overflow: visible; /* stickyのためには visible に */
}

body {
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  height: auto; /* 必要なら height指定を外す */
  overflow-x: hidden; /* 横スクロール防止 */
  overflow-y: auto; /* 通常のスクロール挙動に戻す */
}

[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 {
  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;
}
/* -------------------------------------------*/
/*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
 *
 */
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: 300px;
  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 {
  color: #edf6ff;
  opacity: 1;
}
input[type="text"]:disabled::placeholder {
  color: #edf6ff;
  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: 0.5;
  transition-property: color;
  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 {
  background-color: #008785;
  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;
}

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

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

input[type="checkbox"] + label::before {
  background: #fff;
  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 {
  border-bottom: 3px solid #edf6ff;
  border-left: 3px solid #edf6ff;
  content: "";
  display: block;
  height: 5px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  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 #edf6ff solid;
  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-cta {
  padding: 160px 0 180px;
}
.l-cta::before {
  background: url(../img/common/cta_back.jpg) no-repeat top center/cover;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.l-cta__body {
  margin-top: 38px;
}
.l-cta__btn {
  margin: 0 auto;
}
.l-cta__waves--top {
  top: 0;
}
.l-cta__waves--bottom {
  bottom: 0;
}

/* -------------------------------------------*/
.footer__wrapper {
  display: flex;
  padding: 0 5rem 4rem 5rem;
}
.footer__logoarea {
  padding: 3.4rem 0 0 0;
}
.footer__logo {
  padding: 0 0 6.6rem 0;
}
.footer__logo img {
  max-width: 297px;
}
.footer__catch {
  max-width: 297px;
  padding: 0 0 3.1rem 0;
}
.footer__nsp-logoarea {
  display: flex;
}
.footer__nsp-txt {
  padding: 0 0 0 1rem;
}
.footer__nsp-txt-jp {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 0 0.5rem 0;
}
.footer__nsp-txt-en {
  color: #008785;
  font-size: 1.5rem;
  font-weight: 900;
}
.footer__naviarea {
  margin-left: auto;
}
.footer__marklink {
  display: flex;
  justify-content: flex-end;
  padding: 6rem 0 0 0;
}
.footer__marklink img {
  max-width: 430px;
}
.footer .footer__marklink img {
  max-width: 430px;
}
.footer__copyright {
  font-size: 1.8rem;
  padding: 2rem 0 0 0;
  text-align: right;
}
.footer__sp-cta {
  display: none;
}

.footer__sp-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.footer__sp-ctaitem {
  display: flex;
}
.footer__sp-ctaitem01 {
  border: solid 1px #fff;
  width: 50%;
}
.footer__sp-ctaitem01 a {
  background-color: #f96718;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem 0;
  text-align: center;
  display: block;
}
.footer__sp-ctaitem02 {
  border: solid 1px #fff;
  width: 50%;
}
.footer__sp-ctaitem02 a {
  background-color: #13467e;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem 0;
  text-align: center;
  display: block;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/*single*/
.header {
  background-color: #eee;
  height: 188px;
  /* position: relative; */
  position: fixed;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62.5%;
}

.l-main {
  background-color: #eee;
  padding-top: 188px;
}
.l-main__inner {
  padding: 0 var(--content-both_space);
  position: relative;
  width: 100%;
  z-index: 1;
}

.l-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 2.1rem;
  width: 100%;
}
.l-wrapper .breadcrumbs {
  background-color: #fff;
  border-radius: 3.2rem;
  font-size: 1.6rem;
  margin: 0 0 3.5rem 0;
  padding: 2rem 4.8rem;
  width: 100%;
}
.l-wrapper .breadcrumbs .current-item {
  color: #999999;
  font-weight: bold;
}
.l-wrapper .page-title {
  background: linear-gradient(to right, #008785, #3dc3aa);
  border-radius: 10px;
  margin: 3.5rem 0 0 0;
}
.l-wrapper .page-title__ja {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  padding: 3rem 0 3rem 5.4rem;
}
.l-wrapper .page-title__sub {
  color: #fff;
  font-size: 2em;
  font-weight: 400;
  line-height: 1;
  padding: 3rem 0 0 5.4rem;
}

.c-blog__ctalink {
  background-color: #f5f5f5;
  border: solid 1px #707070;
  padding: 4.7rem 5.7rem 5.6rem;
}

.c-blog__ctalink-title {
  color: #008785;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 3rem 0;
}

.c-blog__ctalink-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
  margin: 0 0 4.2rem 0;
}

.c-blog__ctalink-demo {
  background-color: #fff;
  border: solid #f96718 4px;
  border-radius: 4rem;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.c-blog__ctalink-demo a {
  align-items: center;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  min-width: 35rem;
  padding: 2.3rem 4.8rem;
}
.c-blog__ctalink-demo a::before {
  background-image: url(../img/common/ico_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 19px;
  margin-right: 8px;
  vertical-align: middle;
  width: 25px;
}
.c-blog__ctalink-demo a:hover {
  background-color: #ffdecc;
}
.c-blog__ctalink .c-blog__ctalink {
  background-color: #f5f5f5;
  border: solid 1px #707070;
  padding: 3.8rem 4.7rem;
}

.l-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-inner article {
  width: 65.83%;
}
.l-inner aside {
  width: 28.66%;
}

.l-solution-single__cta {
  margin-block: 7.3rem 5.7rem;
}

.l-solution__cta {
  margin-top: 9.4rem;
}

.l-solution__item--empty {
  align-items: center;
  display: flex;
  justify-content: center;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.header {
  width: 100%;
  z-index: 100;
}

.header-top {
  align-items: center;
  display: flex;
  /* padding: 3rem 0 0 5rem; */
  padding: 0rem 0 0 5rem;
  position: relative;
  height: 114px;
}
.header-top::before {
  background-color: #eee;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.header-desc {
  font-size: clamp(1.4rem, 0.26vw + 1.32rem, 1.6rem);
  font-weight: 500;
  padding: 0 0 0 0.6rem;
}

.header-logo {
  padding: 0 3rem 0 0;
  position: relative;
}
.header-logo img {
  min-width: 301px;
}
.header-logoLink {
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
}
.header-logo__desc {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 7px 0 0 0;
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5.7rem;
  margin-left: auto;
  position: absolute;
  right: 5rem;
  top: 0;
}
.header-contact__item01 {
  background-color: #fff;
  border-bottom: solid #f96718 4px;
  border-left: solid #f96718 4px;
  border-radius: 0 0 18px 18px;
  border-right: solid #f96718 4px;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.2);
  margin: 0 1.5rem 0 0;
  overflow: hidden;
}
.header-contact__item01 a {
  color: #000;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  padding: 2rem 2.5rem 2rem 2.5rem;
}
.header-contact__item01 a::before {
  /* テキストとの余白 */
  background-image: url("../img/common/ico_mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  /* アイコンの横幅 */
  height: 19px;
  /* アイコンの高さ */
  margin-right: 8px;
  vertical-align: middle;
  width: 25px;
}
.header-contact__item01 a:hover {
  background-color: #ffdecc;
}
.header-contact__item02 {
  background-color: #fff;
  border-bottom: solid #13467e 4px;
  border-left: solid #13467e 4px;
  border-radius: 0 0 18px 18px;
  border-right: solid #13467e 4px;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.header-contact__item02 a {
  color: #000;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  padding: 2rem 2.5rem 2rem 2.5rem;
}
.header-contact__item02 a:hover {
  background-color: #c6e0f5;
}
.header-contact__item02 a::before {
  /* テキストとの余白 */
  background-image: url("../img/common/ico_book.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  /* アイコンの横幅 */
  height: 22px;
  /* アイコンの高さ */
  margin-right: 8px;
  vertical-align: middle;
  width: 25px;
}
.header-contact__item {
  display: none;
}
.header-contact__item--search {
  display: block;
  height: 48px;
  position: absolute;
  right: 54px;
  top: 0;
  width: 48px;
}
.header-contact__itemLink {
  cursor: pointer;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-indent: 999px;
  white-space: nowrap;
  width: 100%;
}
.header-contact__itemLink::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.header-contact__item:nth-child(1) .header-contact__itemLink::before {
  -webkit-mask: url(../img/ico_04.png) no-repeat center center/22px 22px;
  mask: url(../img/ico_04.png) no-repeat center center/22px 22px;
}
.header-contact__item:nth-child(2) .header-contact__itemLink::before {
  -webkit-mask: url(../img/icon_account.png) no-repeat center center/32px 32px;
  mask: url(../img/icon_account.png) no-repeat center center/32px 32px;
}
.header-contact__item:nth-child(3) .header-contact__itemLink::before {
  -webkit-mask: url(../img/icon_mail.png) no-repeat center center/32px 22px;
  mask: url(../img/icon_mail.png) no-repeat center center/32px 22px;
}
.header-bottom {
  display: none;
  left: 0;
  padding: 0 50px;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
}
.header-bottom::before {
  background-color: #008785;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}

.header-category_list {
  display: flex;
  /* padding: 3.3rem 0; */
}

.header-category_item {
  position: relative;
}
.header-category_item + .header-category_item {
  /* margin-left: 12px; */
  padding-left: 22px;
}
.header-category_item + .header-category_item::before {
  background-color: #eee;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 1px;
}
.header-category_item a {
  color: #fff;
  font-size: clamp(1.4rem, 1.367rem + 0.53vw, 1.8rem);
  font-weight: 500;
  /* padding: 33px 8px; */
}

.header-category_item > a {
  position: relative;
  display: block; /* ← inline-block ではなく block で領域を確保 */
  padding: 24px 0px 40px; /* 下に余白を多めにする（下線＋スキマ用） */
}
.header-category_item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 30px; /* ← padding-bottomより少し上に調整 */
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.header-category_item > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-category_list {
  display: flex;
  gap: 20px;
  list-style: none;
  position: relative;
}

.header-category_item {
  position: relative;
}

/* サブメニュー初期状態は非表示 */
.header-category_item .submenu {
  background: #fff;
  border: 1px solid #cdd6dd;
  display: none;
  left: 0;
  margin-top: -1.6rem;
  min-width: 220px;
  padding: 0;
  position: absolute;
  top: 100%;
  z-index: 9999;
}

/* ホバーで表示 */
.header-category_item:hover .submenu {
  display: block;
}

/* サブメニュー内のリンク整形 */
.submenu li {
  border: 1px solid #cdd6dd;
}

.submenu li a {
  color: #333;
  display: block;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  position: relative;
  text-decoration: none;
}

.submenu li a:hover {
  background: #def0f0;
}

.submenu li a::after {
  color: #707070;
  content: "❯";
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  right: 10px; /* 調整可：右端からの距離 */
  top: 50%;
  transform: translateY(-50%);
}

.header-top .global-nav_item-title {
  display: block;
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  z-index: 50;
}
.global-nav.open {
  transform: translateX(0);
}

.global-nav_close {
  padding: 16px 0;
  position: fixed;
  right: 2.8rem;
  top: 2rem;
  width: 75%;
  z-index: 5;
}
.global-nav_close span {
  color: #eee;
  display: block;
  position: relative;
  text-align: center;
  top: -4px;
}

.global-nav_inner {
  height: 100%;
  /* position: fixed; */
  position: relative;
  right: 0;
  top: 8.9rem;
  width: 100%;
  z-index: 5;
}

.global-nav_list {
  background-color: #008785;
  height: 80%;
  overflow-y: scroll;
  padding: 3.6rem 1.7rem 8rem 1.7rem;
}

.global-nav_item-list {
  height: 100%;
}

.global-nav_item-title {
  background-color: #008785;
  cursor: pointer;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  border-top: solid 1px #5bb2b1;
  border-bottom: solid 1px #5bb2b1;
}

.plus-icon {
  position: relative;
}
.plus-icon.open::after {
  color: #fff;
  content: "❯";
  display: inline-block;
  font-size: 0.9em;
  /* 右向き→下向きに回転 */
  transform: rotate(90deg);
  right: 1rem; /* 必要に応じて調整 */
  top: 30%;
  position: absolute;
}
.plus-icon::after {
  color: #fff;
  content: "❯";
  display: inline-block;
  font-size: 0.9em;
  right: 1rem;
  /* 必要に応じて調整 */
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  position: absolute;
}

.global-nav_item-list {
  display: none;
}
.global-nav_item-list li:not(:nth-child(1)) {
  /* border-top: 1px solid #eee; */
}
.global-nav_item-list li {
  border: none;
}
.global-nav_item-list.item-sub a {
  border-bottom: 0;
  font-size: 1.4rem;
}
.global-nav_item-list.item-sub li:last-child a {
  border-bottom: solid 1px #5bb2b1;
  font-size: 1.4rem;
}
.global-nav_item-list a {
  background-color: #008785;
  border-bottom: solid 1px #5bb2b1;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  position: relative;
}
/* .global-nav_item-list a::after {
  border-radius: 1px;
  border-right: 2px solid #eee;
  border-top: 2px solid #eee;
  content: "";
  height: 12px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
} */
.global-nav_item-list a:hover {
  opacity: 0.6;
}
.global-nav_item-list.accordion-body.stay {
  display: block;
}

.global-nav_contact {
  background-color: #eee;
  display: flex;
  justify-content: center;
  padding: 48px 16px;
}

.global-nav_bg {
  background-color: rgba(255, 255, 255, 0.5);
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.global-nav_bg.open {
  opacity: 1;
  visibility: visible;
}

.toggle-button {
  border: none;
  cursor: pointer;
  height: 48px;
  position: fixed;
  right: 2.8rem;
  top: 2rem;
  width: 48px;
  z-index: 100;
}
.toggle-button span {
  background-color: #008785;
  border-radius: 10px;
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 24px;
}
.toggle-button span:nth-of-type(1) {
  top: 17px;
}
.toggle-button span:nth-of-type(3) {
  bottom: 14px;
}
.toggle-button.open {
  position: fixed;
  right: 2.8rem;
  top: 2rem;
}
.toggle-button.open span:nth-of-type(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}
.toggle-button.open span:nth-of-type(2) {
  opacity: 0;
}
.toggle-button.open span:nth-of-type(3) {
  bottom: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.bMenu {
  display: none;
}
.bMenu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 4.5rem 0 3rem 0;
}
.bMenu__item {
  line-height: 1;
  padding: 0 20px;
}
.bMenu__item:not(:first-child) {
  border-left: 1px solid #333;
}
.bMenu__itemLink {
  color: #333;
  display: inline-block;
  font-size: 16px;
}

/*ページネーション*/
.pagination {
  margin: 8rem 0 0 0;
  text-align: center;
}

.page-numbers {
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 4px;
  color: #333;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 0.5rem;
  padding: 0.2rem 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.page-numbers:hover {
  background-color: #008785;
  border-color: #999;
  color: #fff;
}

.page-numbers.current {
  background-color: #008785;
  border-color: #008785;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  :root {
    --content_width: 420px;
  }
  .footer__wrapper {
    align-items: center;
    flex-direction: column;
    padding: 0 3.5rem 4rem 3.5rem;
  }
  .footer__logo {
    margin: 0 auto;
    padding: 0 0 1.6rem 0;
    width: 50%;
  }
  .footer__logo img {
    max-width: 100%;
  }
  .footer__catch {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 0 1rem 0;
    width: 50%;
  }
  .footer__nsp-logoarea {
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
  }
  .footer__nsp-txt-jp {
    font-size: 0.8rem;
    font-weight: bold;
  }
  .footer__nsp-txt-en {
    font-size: 0.7rem;
  }
  .footer__marklink {
    padding: 3.1rem 0 0 0;
    width: 80%;
    margin: 0 auto;
  }
  .footer .footer__marklink img {
    max-width: 100%;
  }
  .footer__copyright {
    font-size: 1.1rem;
    padding: 1rem 0 0 0;
  }
  .l-wrapper .breadcrumbs {
    padding: 1.5rem 2rem;
  }
  .c-blog__ctalink {
    padding: 2rem;
  }
  .c-blog__ctalink-demo {
    margin: 0 auto;
  }
  .c-blog__ctalink-demo a {
    font-size: 1.8rem;
    max-width: 100%;
    min-width: 100%;
    padding: 1.6rem 2rem;
  }
  .header {
    background-color: #f5f5f5;
    height: auto;
  }

  .header-top::before {
    background-color: #f5f5f5;
  }
  .header-desc {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }
  .header-logo img {
    max-width: 200px;
    min-width: auto;
  }
  .header-contact {
    display: none;
  }
  .c-download-cta__image {
    left: 0;
    position: relative;
    width: 100%;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-main--404 {
  background-color: #eee;
}

.p-404 {
  padding-block: 20rem;
  text-align: center;
}

.p-404__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.p-404__lead {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.p-404__text {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.p-404__button {
  background-color: #fff;
  border: 0.3rem solid #008785;
  border-radius: 4rem;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.8rem 2.4rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.breadcrumb-item {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
}

.breadcrumb-item a {
  color: #333333;
  text-decoration: none;
}

.breadcrumb-separator {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
  margin: 0 1.6rem;
}

.current-item::before {
  color: #333333;
  content: "";
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.c-download-cta {
  background: linear-gradient(to bottom, #008785, #3dc3aa);
}

.c-download-cta__inner {
  max-width: 1480px;
  padding-block: 0;
  padding-left: 14rem;
}

.c-download-cta__wrap {
  align-items: end;
  display: grid;
  grid-template-columns: 75fr 56fr;
}

.c-download-cta__title-wrap {
  padding-bottom: 8rem;
}

.c-download-cta__label {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  color: #008785;
  display: inline-block;
  font-size: clamp(2rem, 0.643vw + 2rem, 2.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.9230769231;
  padding: 1.7rem 2.1rem 0.8rem;
}

.c-download-cta__title {
  color: #fff;
  font-size: clamp(2.6rem, 2.572vw + 2.6rem, 5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.34;
  margin-top: 4.7rem;
}

.c-download-cta__lead {
  color: #fff;
  font-size: clamp(2rem, 1.714vw + 2rem, 3.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3333333333;
  margin-top: 5rem;
}
.c-download-cta__lead strong {
  color: #ffd600;
}

.c-download-cta__text {
  color: #fff;
  font-size: clamp(1.6rem, 0.214vw + 1.6rem, 1.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8888888889;
  margin-top: 2rem;
}

.c-download-cta__button {
  background-color: #fff;
  border: 0.4rem solid #ffd600;
  border-radius: 4rem;
  box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.16);
  color: #333333;
  display: block;
  font-size: clamp(1.6rem, 0.428vw + 1.6rem, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.2;
  margin-top: 4.6rem;
  padding: 1.6rem 4.2rem;
  transition: background-color 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.c-download-cta__button-icon {
  display: inline-block;
  height: 2.4rem;
  margin-right: 0.6rem;
  width: 2.2rem;
}
.c-download-cta__button-icon img {
  aspect-ratio: 22/24;
  -o-object-fit: contain;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.c-download-cta__image {
  max-width: 590px;
}
.c-download-cta__image img {
  aspect-ratio: 590/508;
  -o-object-fit: contain;
  height: auto;
  object-fit: contain;
  width: 100%;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-form-privacy {
  background-color: #fff;
  border: 1px solid #cdd6dd;
  display: block;
  grid-area: privacy;
  height: 14rem;
  margin-top: 2.4rem;
  overflow-y: auto;
  padding: 2rem;
}

.privacy-policy {
  font-size: 14px;
  line-height: 1.6;
}

.privacy-policy__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}

.privacy-policy__intro {
  margin-bottom: 1.5em;
}

.privacy-policy__link {
  text-decoration: underline;
}

.privacy-policy__section {
  margin-bottom: 2em;
}

.privacy-policy__heading {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.privacy-policy__list {
  margin-bottom: 1em;
}

.privacy-policy__list dt {
  font-weight: bold;
  margin-top: 1em;
}

.privacy-policy__list dd {
  margin-left: 1em;
}

.privacy-policy__items {
  margin-bottom: 1em;
  margin-top: 0.5em;
  padding-left: 1.2em;
}

.privacy-policy__items li {
  margin-bottom: 0.25em;
}

.privacy-policy__contact {
  font-style: normal;
  line-height: 1.5;
  margin-top: 1em;
}

.privacy-policy__date {
  font-size: 14px;
  margin-top: 1em;
}

.c-form {
  background-color: #f5f5f5;
  height: initial;
  position: static;
}

.c-form-main {
  background-color: #eee;
  padding: 0;
}

.c-form-header {
  background-color: inherit;
}

.c-form-wrapper {
  padding-block: 6.4rem 7rem;
}

.c-form-confirm {
  display: none;
}

.c-form__subtitle {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.05;
  margin-block: 5.7rem 2.6rem;
}

.c-form-confirm .form-item {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  margin-bottom: 0;
}

.c-form-btn__wrapper {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  margin-top: 7.7rem;
  max-width: 33.5rem;
}

.c-form-btn--back {
  background-color: #fff;
  border: 2px solid #cdd6dd;
  border-radius: 100vmax;
  color: #cdd6dd;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.9rem 2.4rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.p-contact-form .form-item.is-error input,
.p-contact-form .form-item.is-error textarea,
.p-contact-form .form-item.is-error select {
  border-color: red;
}

.error-message {
  color: red;
  font-size: 0.85em;
  margin-top: 4px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* ページタイトル
/* -------------------------------------------*/
.c-page-title {
  background: linear-gradient(to right, #008785, #3dc3aa);
  border-radius: 0.8rem;
  padding: 2.8rem 5.4rem 3.5rem;
}

.c-page-title__sub {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.7;
  text-transform: uppercase;
}

.c-page-title__ja {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  margin-top: 1rem;
}

.c-page-sectite {
  border-bottom: #008785 solid 3px;
  font-size: 3rem;
  font-weight: 700;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-rocotime-cta {
  align-items: center;
  background-color: #fff;
  border: 0.7rem solid #162e48;
  border-radius: 2rem;
  display: grid;
  grid-template-columns: clamp(100px, 16.28vw + 100px, 266px) 1fr clamp(
      100px,
      10.82vw + 100px,
      201px
    );
  padding: 1.1rem 3.4rem 2.2rem 4rem;
  transition: background-color 0.3s ease;
}

.c-rocotime-cta__head {
  border-right: 0.1rem solid #008785;
  padding-right: 2.2rem;
}

.c-rocotime-cta__sub-title {
  color: #008785;
  font-size: clamp(1.4rem, 0.643vw + 1.4rem, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7;
}

.c-rocotime-cta__title img {
  height: auto;
  width: 100%;
}

.c-rocotime-cta__body {
  display: grid;
  gap: 1.3rem;
  padding-left: 2rem;
}

.c-rocotime-cta__lead {
  color: #333333;
  font-size: clamp(2.1rem, 0.964vw + 2.1rem, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7;
}

.c-rocotime-cta__text {
  color: #333333;
  font-size: clamp(1.8rem, 0.214vw + 1.8rem, 2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  margin-left: 1.7rem;
}

.c-rocotime-cta__button-wrapper {
  display: grid;
  gap: 2.1rem;
  grid-template-columns: auto 1fr;
  margin-left: 1.7rem;
}

.c-rocotime-cta__label {
  align-items: center;
  background-color: #f96718;
  border-radius: 1.5rem;
  color: #fff;
  display: flex;
  font-size: clamp(1.5rem, 0.25vw + 1.33rem, 1.6rem);
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.875;
  padding-inline: clamp(1rem, 1.5vw + 0.1rem, 2.4rem);
}

.c-rocotime-cta__button {
  align-items: center;
  color: #008785;
  display: inline-flex;
  font-size: clamp(1.4rem, 0.321vw + 1.4rem, 1.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7058823529;
  padding-left: 3rem;
  position: relative;
}
.c-rocotime-cta__button::before {
  background-image: url(../img/common/icon-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 1.7rem;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.7rem;
}

.c-rocotime-cta__image img {
  aspect-ratio: 201/159;
  display: block;
  -o-object-fit: cover;
  height: auto;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 1380px) {
  .header-contact__item01 a {
    font-size: 1.8rem;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  }
  .header-contact__item02 a {
    font-size: 1.8rem;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  }
  .header-category_item > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .l-wrapper {
    padding-inline: 2.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .header-contact {
    display: none;
  }
  .header-contact__item01 {
    border-bottom: solid #f96718 3px;
    border-left: solid #f96718 3px;
    border-right: solid #f96718 3px;
  }
  .header-contact__item01 a {
    font-size: 1.6rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .header-contact__item02 {
    border-bottom: solid #13467e 3px;
    border-left: solid #13467e 3px;
    border-right: solid #13467e 3px;
  }
  .header-contact__item02 a {
    font-size: 1.6rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }
  .header-bottom {
    padding: 0 10px;
  }
  .header-category_item > a {
    font-size: 1.4rem;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-sidebar {
  position: sticky;
  top: 21rem;
}

.c-sidebar__banner a {
  display: block;
  transition: opacity 0.3s ease;
}
.c-sidebar__banner a img {
  height: auto;
  width: 100%;
}

.c-sidebar__block {
  margin-top: 4rem;
}

.c-sidebar__title {
  border-bottom: 3px solid #008785;
  color: #333333;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.8333333333;
  padding-bottom: 0.5rem;
}

.c-sidebar__list {
  display: grid;
  gap: 2.1rem;
  margin-top: 2.85rem;
}

.c-sidebar__item-link {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 76px 1fr;
}

.c-sidebar__thumb img {
  aspect-ratio: 76/76;
  height: 7.6rem;
  width: 7.6rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-sidebar__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-sidebar__date {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2666666667;
  margin-bottom: 0.2rem;
}

.c-sidebar__text {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2666666667;
}

.c-sidebar__category-list {
  display: grid;
  margin-top: 2.85rem;
}

.c-sidebar__category-link {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.2222222222;
  padding-left: 2.4rem;
  position: relative;
}
.c-sidebar__category-link::before {
  content: "▶";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.wpp-no-data {
  margin-top: 2.85rem;
}

.c-sidebar__cta {
  display: grid;
  gap: 1.7rem;
}

.c-sidebar__cta--contact {
  margin-top: 7.6rem;
}

.c-sidebar__cta-link {
  display: block;
  transition: opacity 0.3s ease;
}
.c-sidebar__cta-link img {
  height: auto;
  width: 100%;
}

.c-sidebar__cta-text {
  color: #333333;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}

.c-sidebar__cta--download {
  margin-top: 4rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.c-thanks-form {
  padding-block: 9.3rem 7rem;
}

.c-thanks-form__title {
  border-bottom: 6px solid #008785;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1714285714;
  margin-bottom: 3.5rem;
  padding-bottom: 0.8rem;
}

.c-thanks-form__head {
  color: #008785;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7083333333;
  margin-bottom: 3.8rem;
}

.c-thanks-form__body {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.c-thanks-form__body--contact {
  gap: 1rem;
}

.c-thanks-form__body dl {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.c-thanks-form__body-text {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8888888889;
}
.c-thanks-form__body-text a {
  color: #008785;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.c-thanks-form__body-list dt,
.c-thanks-form__body-list dd {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8888888889;
}

.c-thanks-form__button {
  margin-top: 8.4rem;
}

.c-thanks-form__button--contact {
  margin-top: 6rem;
}

.c-thanks-form__button-link {
  background-color: #fff;
  border: 2px solid #008785;
  border-radius: 4rem;
  color: #008785;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8888888889;
  max-width: 33.5rem;
  padding: 1.3rem 0;
  text-align: center;
  transition: background-color 0.3s ease;
  width: 100%;
}

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

.u-dn {
  display: none;
}

.u-mask--c-black {
  filter: brightness(0);
}

.u-mask--c-white {
  filter: brightness(0) invert(1);
}

.u-con--md {
  margin: 0 auto;
  max-width: var(--content_width);
}

.u-con--lg {
  margin: 0 auto;
  max-width: 90%;
}

.u-c-white {
  color: #fff;
}

.u-c--b-white {
  color: #fff;
}

.u-z-1 {
  z-index: -1;
}

.u-z1 {
  z-index: 1;
}

.u-z2 {
  z-index: 2;
}

.u-z3 {
  z-index: 3;
}

.u-z10 {
  z-index: 10;
}

.u-z50 {
  z-index: 50;
}

.u-z100 {
  z-index: 100;
}

.u-z999 {
  z-index: 999;
}

.u-ls-3 {
  letter-spacing: 0.3em;
}

/* -------------------------------------------*/

@media screen and (max-width: 1280px) {
  .l-main--404 {
    padding-inline: 2.4rem;
  }
  .p-404__title {
    font-size: 2rem;
  }
  .p-404__lead {
    font-size: 1.6rem;
  }
  .p-404__text {
    font-size: 1.4rem;
  }
  .p-404__button {
    font-size: 1.6rem;
    padding: 1.4rem 2rem;
  }
  .c-download-cta__inner {
    padding-inline: 2rem;
  }
  .c-form-wrapper {
    padding-inline: 2.4rem;
  }
  .c-form-wrapper--confirm {
    padding-inline: 2.4rem;
  }
  .c-rocotime-cta {
    padding: 1.1rem 2.4rem 2.2rem;
  }
  .c-thanks-form {
    padding-inline: 2rem;
  }
}

@media not all and (max-width: 1200px) {
  .bMenu {
    display: block;
  }
  .u-st {
    display: none !important;
  }
  .header-bottom {
    display: block;
  }
  .header-logo {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }
  .global-nav {
    display: none;
  }
  .toggle-button {
    height: 64px;
    width: 64px;
  }
  .toggle-button {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --content_width: 680px;
    --content-both_space: 15px;
    --header_height: 65px;
    --waves_height: 20px;
  }
  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;
  }
  .select-parts select {
    font-size: 15rem;
  }
  .l-cta {
    border-radius: 15px;
    padding: 73px 15px 70px;
  }
  .l-cta__body {
    margin-top: 20px;
  }
  .l-inner {
    flex-direction: column;
  }
  .l-inner article {
    width: 100%;
  }
  .l-inner aside {
    margin-top: 6rem;
    width: 100%;
  }
  .c-download-cta__wrap {
    grid-template-columns: 1fr;
  }
  .c-download-cta__title-wrap {
    padding-bottom: 3.2rem;
  }
  .c-download-cta__image {
    margin-inline: auto;
    margin-top: 4rem;
    width: 80%;
  }
  .c-form-main {
    padding: 0;
  }
  .c-rocotime-cta {
    grid-template-columns: 200px 1fr;
  }
  .c-rocotime-cta__body {
    padding-left: 0;
  }
  .c-rocotime-cta__image {
    display: none;
  }
  .c-sidebar {
    display: grid;
    gap: 2.4rem;
    grid-template-columns: 1fr 1fr;
    position: static;
  }
  .c-sidebar__block {
    margin-top: 0;
  }
  .c-sidebar__cta--contact {
    margin-top: 4rem;
  }
  .u-pc {
    display: none;
  }
  .header {
    background-color: #f5f5f5;
    height: 90px;
  }

  .l-main {
    padding-top: 90px;
  }

  .header-top {
    align-items: flex-start;
    height: auto;
    padding: 1.5rem 0 1.3rem 2.5rem;
    flex-direction: column;
  }

  .footer__sp-cta {
    bottom: 0;
    display: block;
    position: fixed;
    z-index: 999;
  }

  .header-contact {
    display: none;
  }
}

@media not all and (max-width: 667px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  /* .header-logo {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  } */
  .header-logoLink {
    width: 280px;
  }
  .header-logo__desc {
    margin: 0 0 0 30px;
  }
  .header-contact {
    /* display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    position: absolute;
    right: 5rem; */
  }
  .header-contact__item--search {
    position: relative;
    right: 0;
  }
  .header-contact__item {
    border-left: 1px solid #fff;
    display: block;
    height: auto;
    width: 130px;
  }
  .header-contact__itemLink {
    color: #fff;
    font-weight: 400;
    padding: 55px 10px 15px;
    text-align: center;
    text-indent: 0;
  }
  .header-contact__itemLink::before {
    height: 32px;
    left: 50%;
    top: 15px;
    transform: translate(-50%, 0);
    width: 32px;
  }
  .header-contact__item:nth-child(1) .header-contact__itemLink::before {
    -webkit-mask-size: 31px 31px;
    mask-size: 31px 31px;
  }

  .global-nav_close {
    padding: 24px 0;
  }
  .global-nav_inner {
    top: 64px;
  }
  .toggle-button span:nth-of-type(1) {
    top: 24px;
  }
  .toggle-button span:nth-of-type(3) {
    bottom: 22px;
  }
  .toggle-button.open span:nth-of-type(1) {
    top: 32px;
  }
  .toggle-button.open span:nth-of-type(3) {
    bottom: 30px;
  }
  .toggle-button {
    height: 64px;
    width: 64px;
  }
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 667px) {
  :root {
    --content_width: 420px;
  }
  .l-wrapper {
    padding: 0 1.4rem;
    padding-top: 1.4rem;
  }
  .l-solution-single__cta {
    margin-block: 7rem 3.2rem;
  }
  .l-solution__cta {
    margin-top: 4rem;
  }
  .p-404 {
    padding-block: 10rem;
  }
  .c-download-cta__inner {
    padding-top: 0;
  }
  .c-download-cta__title-wrap {
    padding-bottom: 0;
  }
  .c-download-cta__label {
    font-size: 2rem;
    padding: 1.6rem;
  }
  .c-download-cta__title {
    font-size: 2.6rem;
    margin-top: 2rem;
    text-align: left;
  }
  .c-download-cta__lead {
    font-size: 2rem;
    margin-top: 2rem;
    text-align: left;
  }
  .c-download-cta__text {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .c-download-cta__button {
    font-size: 1.6rem;
    margin-inline: auto;
    margin-top: 4rem;
    padding: 1.6rem 3.2rem;
  }
  .c-download-cta__image {
    width: 100%;
  }
  .c-form-wrapper {
    padding-block: 2.4rem;
  }
  .c-form__subtitle {
    margin-block: 2.4rem 1.6rem;
  }
  .c-form-btn__wrapper {
    margin-top: 2.4rem;
  }
  .c-page-title {
    padding: 2rem;
  }
  .c-page-title__sub {
    font-size: 1.6rem;
  }
  .c-page-title__ja {
    font-size: 2.8rem;
  }
  .c-rocotime-cta {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .c-rocotime-cta__head {
    border-right: none;
    padding-right: 0;
  }
  .c-rocotime-cta__sub-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .c-rocotime-cta__title {
    width: 100%;
  }
  .c-rocotime-cta__lead {
    font-size: 1.8rem;
  }
  .c-rocotime-cta__text {
    font-size: 1.6rem;
    margin-left: 0;
    text-align: center;
  }
  .c-rocotime-cta__button-wrapper {
    gap: 1.6rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.6rem;
    margin-inline: auto;
  }
  .c-rocotime-cta__button {
    font-size: 1.4rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-rocotime-cta__image {
    display: block;
    width: 100%;
  }
  .c-sidebar {
    grid-template-columns: 1fr;
  }
  .c-sidebar__block {
    margin-top: 3rem;
  }
  .c-sidebar__title {
    font-size: 2rem;
    line-height: 2.2;
    padding-bottom: 0.2rem;
  }
  .c-sidebar__cta--contact {
    margin-top: 6rem;
  }
  .c-sidebar__cta--download {
    margin-top: 3rem;
  }
  .c-thanks-form {
    padding-block: 6.5rem 5.7rem;
  }
  .c-thanks-form__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .c-thanks-form__head {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }
  .c-thanks-form__button {
    margin-top: 4.8rem;
  }
  .c-thanks-form__button--contact {
    margin-top: 4.5rem;
  }
  .u-pt {
    display: none !important;
  }
}

@media (any-hover: hover) {
  .p-404__button:hover {
    background-color: #DEF0FF;
  }
  .c-download-cta__button:hover {
    background-color: #ffd600;
  }
  .c-form-btn--back:hover {
    background-color: #f7f9fa;
    color: #333333;
  }
  .c-rocotime-cta:hover {
    background-color: #def0ff;
  }
  .c-sidebar__banner a:hover {
    opacity: 0.7;
  }
  .c-sidebar__cta-link:hover {
    opacity: 0.7;
  }
  .c-thanks-form__button-link:hover {
    background-color: #baebe9;
  }
}

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