@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リセットCSS
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
cite,
em,
small,
i,
img,
picture,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tr,
th,
td,
hr,
input,
textarea,
select,
button,
main,
article,
aside,
details,
figure,
figcaption,
header,
footer,
hgroup,
menu,
nav,
section,
time {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-style: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

iframe,
cite,
main,
article,
aside,
details,
figure,
figcaption,
header,
footer,
hgroup,
menu,
nav,
section,
audio,
video {
  display: block;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

iframe {
  max-width: 100%;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  flex: none;
  image-rendering: -webkit-optimize-contrast;
}

svg {
  overflow: hidden;
  max-width: 100%;
  vertical-align: middle;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

table {
  border-spacing: 0;
}

input,
textarea,
select,
button {
  border-radius: inherit;
  background: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

input:not([type="checkbox"]):not([type="radio"]),
textarea,
button {
  -webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
button {
  cursor: pointer;
}

input[type="file"] {
  font-size: revert;
}

input[type="file"]::-webkit-file-upload-button {
  font-family: inherit;
}

textarea {
  overflow: auto;
}

time {
  display: inline-block;
}

video {
  max-width: 100%;
  cursor: pointer;
  object-fit: cover;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ベース
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@font-face {
  font-weight: 400;
  font-family: "Hiragino Sans";
  src: local("HiraginoSans-W3");
}

@font-face {
  font-weight: 500;
  font-family: "Hiragino Sans";
  src: local("HiraginoSans-W4");
}

@font-face {
  font-weight: 600;
  font-family: "Hiragino Sans";
  src: local("HiraginoSans-W5");
}

@font-face {
  font-weight: 700;
  font-family: "Hiragino Sans";
  src: local("HiraginoSans-W6");
}

:root {
  --color_base: #333;
  --color_base_rgb: 51, 51, 51;
  --color_base_light: #c1c1c1;
  --color_main: #00b1d1;
  --color_main_rgb: 0, 177, 209;
  --color_main_light: #edf4f4;
  --gradient_blue: #127fed, #00ceff;

  --font_main: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
  --font_yakuhanjp: YakuHanJP_Noto, var(--font_main);
  --font_english: "Helvetica Neue", Arial, Roboto, var(--font_main);
  --font_teko: teko, var(--font_english);

  --opacity: 0.7;
  --content-width: 1200px;
  --content-width_small: 900px;
  /* --content-width:         1484px;
	--content-width_small:   1114px; */
  --content-width_large: 1670px;
  --padding-width: 5.4%;
  --padding-height: 60px;
  --box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  --text-underline-offset: 0.3em;
  --transition: 0.3s ease-in-out;
}

.pc{
  display: none; 
}
.sp{
  display: block; 
}

@media (min-width: 768px) {
  :root {
    --padding-width: 30px;
    --padding-height: 100px;
  }
  .pc{
    display: block; 
  }
  .sp{
    display: none; 
  }
}


body {
  overflow: hidden scroll;
  color: var(--color_base);
  font-size: 16px;
  font-family: var(--font_main);
  line-height: 1.7;
}

main {
  overflow: hidden;
}

section,
.section {
  padding: var(--padding-height) 0;
}

.inner {
  max-width: calc(var(--content-width) + var(--padding-width) * 2);
  margin: 0 auto;
  padding: 0 var(--padding-width);
}

span:not([class]) {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

p:not([class]) + p:not([class]) {
  margin-top: 1.5em;
}

a,
input[type="button"],
input[type="submit"],
button {
  transition: var(--transition);
}

a::before,
a::after,
button::before,
button::after {
  transition: transform var(--transition);
}

a[href^="http"],
a[href^="mailto:"] {
  word-break: break-all;
}

table {
  width: 100%;
}

th {
  text-align: left;
  vertical-align: top;
}

td {
  text-align: left;
  vertical-align: top;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"] {
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  height: 4.2em;
  padding: 0 1em;
  border: 1px solid var(--color_base_light);
}

input[type="file"],
select {
  max-width: 100%;
}

input[type="file"]::-webkit-file-upload-button {
  margin-right: 0.6em;
}

textarea {
  width: 100%;
  height: 16em;
  padding: 0.8em 1em;
  border: 1px solid var(--color_base_light);
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-zoom-in {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fade-zoom-out {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes show-bottom {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }

  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

@keyframes show-left {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

.animation {
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-down,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
  opacity: 0;
}

.show-bottom {
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}

.show-left {
  animation-timing-function: cubic-bezier(0.5, 0.1, 0.5, 1);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.load .animation.fade {
  animation-name: fade;
}

.load .animation.fade-up {
  animation-name: fade-up;
}

.load .animation.fade-down {
  animation-name: fade-down;
}

.load .animation.fade-right {
  animation-name: fade-right;
}

.load .animation.fade-left {
  animation-name: fade-left;
}

.load .animation.fade-zoom-in {
  animation-name: fade-zoom-in;
}

.load .animation.fade-zoom-out {
  animation-name: fade-zoom-out;
}

.load .animation.show-bottom {
  animation-name: show-bottom;
}

.load .animation.show-left {
  animation-name: show-left;
}

.delay05 {
  animation-delay: 0.5s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay07 {
  animation-delay: 0.7s;
}

.delay09 {
  animation-delay: 0.9s;
}

.delay12 {
  animation-delay: 1.2s;
}

@media (min-width: 768px) {
  @keyframes fade-right {
    0% {
      opacity: 0;
      transform: translateX(40px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fade-left {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-header {
  --content-width: var(--content-width_small);
  padding: 70px 0 40px;
  background: url("../img/common/page-header.webp") center center no-repeat;
  background-size: cover;
  color: #fff;
}

.page-description {
  margin-bottom: 2em;
}

.page-heading {
  font-size: 46px;
  line-height: 1.4;
  text-align: center;
}

.page-heading-first {
  display: block;
  font-weight: 500;
  font-family: var(--font_teko);
  text-transform: uppercase;
}

.page-heading-second {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.section-heading {
  max-width: calc(var(--content-width_large) + var(--padding-width) * 2);
  margin: 0 auto 0.8em;
  padding: 0 var(--padding-width);
  font-size: 55px;
  text-align: center;
}

.section-heading-first {
  display: flex;
  font-weight: 500;
  font-family: var(--font_teko);
  line-height: 1.4;
  justify-content: center;
  align-items: center;
}

.section-heading-first::before,
.section-heading-first::after {
  border-top: 3px solid var(--color_base_light);
  content: "";
  flex-grow: 1;
}

.section-heading-first::before {
  margin-right: 0.46em;
}

.section-heading-first::after {
  margin-left: 0.46em;
}

.section-heading-second {
  display: block;
  font-size: 0.29em;
  letter-spacing: 0.2em;
}

.heading_skew {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1em;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.heading_skew::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 0.5em;
  height: 1.2em;
  background: linear-gradient(var(--gradient_blue));
  content: "";
  transform: skewX(-10deg);
}

.heading_skew._centerline {
  display: flex;
  margin-bottom: 2.3em;
  align-items: center;
}

.heading_skew._centerline::after {
  margin-left: 0.9em;
  border-top: 1px solid var(--color_main);
  content: "";
  flex: 1;
}

@media (min-width: 768px) {
  .page-header {
    padding: 140px 0 80px;
  }

  .page-description {
    font-size: 18px;
  }

  .page-heading {
    font-size: 60px;
  }

  .page-heading-second {
    font-size: 27px;
  }

  .section-heading {
    font-size: 70px;
  }

  .heading_skew {
    font-size: 22px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.button {
  display: table;
  position: relative;
  width: 21em;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 0.9em 3.2em 0.9em 1.7em;
  border-radius: 80px;
  box-shadow: var(--box-shadow);
  background: #fff;
  color: var(--color_main);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.button:hover {
  transform: scale(1.05);
}

.button::after {
  position: absolute;
  top: 0;
  right: 1.7em;
  bottom: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 3px solid;
  border-right: 3px solid;
  content: "";
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .button {
    margin-top: 70px;
    font-size: 18px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
コンポーネント
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.color_main {
  color: var(--color_main);
}

.align_center {
  text-align: center;
}

.block_center {
  display: table;
  margin-right: auto;
  margin-left: auto;
}

.annotation {
  position: relative;
  margin-top: 0.5em;
  padding-left: 1.2em;
}

.annotation::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

li.spacer {
  visibility: hidden;
  height: auto;
  margin-bottom: 0;
}

li.spacer::before,
li.spacer::after {
  display: none;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  transition: 0.8s ease-in-out;
  justify-content: center;
  align-items: center;
}

.loader.hide {
  visibility: hidden;
  opacity: 0;
}

.loader-svg {
  width: 70px;
  height: 70px;
}

@keyframes loader {
  100% {
    stroke-dashoffset: 100;
  }
}

.loader-svg polygon {
  animation: loader 1.2s linear infinite both;
  fill: none;
  stroke: var(--color_main);
  stroke-width: 3;
  stroke-dasharray: 50;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
  position: fixed;
  top: 10px;
  right: 10px;
  left: 10px;
  z-index: 3;
  max-width: 1370px;
  margin: auto;
  transition: transform 0.5s ease-in-out;
}

@media (min-width: 768px) {
header.hide {
  transform: translateY(-200%);
}
}

.header-inner {
  display: flex;
  height: 50px;
  padding: 0.5em 3%;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  background: rgba(255, 255, 255, 1);
  justify-content: space-between;
  align-items: center;
}

.header-logo:hover {
  opacity: var(--opacity);
}

.header-menu-li.current > a,
.header-menu-li > a:hover {
  color: var(--color_main);
}

@media (min-width: 768px) {
  header {
    top: 50px;
    right: var(--padding-width);
    left: var(--padding-width);
  }

  .header-inner {
    height: 73px;
  }

  .header-logo {
    max-width: 30%;
    margin-right: 5%;
    margin-bottom: 5px;
  }

  .header-nav {
    width: 31em;
    font-size: 16px;
    font-size: clamp(16px, calc(100vw * 18 / 1024), 18px);
  }

  .header-menu-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-menu-li a {
    position: relative;
    padding: 0.3em 0;
    cursor: pointer;
  }

  .header-menu-li a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    content: "";
    transform: scaleX(0);
  }

  .header-menu-li.current a::after,
  .header-menu-li a:hover::after {
    transform: scaleX(1);
  }

  .header-toggle {
    display: none;
  }
}

@media (max-width: 767.9px) {
  .header-logo img {
    width: 200px;
    top: -3px;
    position: relative;
  }

  .header-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color_main);
    transition: var(--transition);
  }

  .header-overlay.show {
    visibility: visible;
    opacity: 0.1;
  }

  .header-nav {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 70px 1em;
    background: #fff;
    transform: translateX(120%);
    overscroll-behavior: contain;
  }

  header.open .header-nav {
    transform: translateX(0);
  }

  .header-menu-li {
    /*margin-bottom: 0.5em;
    padding-bottom: 0.5em;*/
    font-size: 18px;
    /*border-bottom: 1px solid #ddd;*/
  }
  .header-menu-li > a {
    display: block;
    color: var(--color_main);
    font-weight: 700;
    border-bottom: 1px solid var(--color_main);
    padding: 0.5em 0;
  }

  .header-menu-li .sub-list {
    font-size: 16px;
    margin: 15px 0 20px;
    padding-left: 4px;

    & li {
      margin-top: 4px;
    }
  }

  .header-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
  }

  .header-toggle:hover {
    color: var(--color_main);
  }

  .header-toggle-bar {
    position: absolute;
    right: 0;
    left: 0;
    width: 24px;
    margin: auto;
    border-top: 2px solid;
    transition: var(--transition);
  }

  .header-toggle-bar:nth-child(1) {
    top: 15px;
  }

  .header-toggle-bar:nth-child(2) {
    top: 24px;
  }

  .header-toggle-bar:nth-child(3) {
    top: 33px;
  }

  header.open .header-toggle-bar:nth-child(1) {
    top: 24px;
    transform: rotate(-45deg);
  }

  header.open .header-toggle-bar:nth-child(2) {
    transform: scaleX(0);
  }

  header.open .header-toggle-bar:nth-child(3) {
    top: 24px;
    transform: rotate(45deg);
  }
}

@media (min-width: 768px) {
  .header-menu-li .sub-list {
    display: none;
  }
}

.header-menu-hum {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 23px;
  margin-left: 20px;
  .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .header-menu-hum {
    display: none;
  }
}

.dropdown-menu {
  display: none;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 40px;
  top: -20px;
  width: 90%;
  max-width: 1114px;
  border-radius: 0 0 25px 25px;
  margin: 0 auto;
  box-shadow: var(--box-shadow);

  .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

.dropdown-menu-top {
  .heading {
    display: flex;
    gap: 50px;
    width: calc(100% - 100px);

    .image {
      height: fit-content;
    }
  }

  .cta {
    margin-top: 30px;
    padding: 0 40px;
    display: flex;
    gap: 35px;
    font-weight: bold;
    color: #fff;
    text-align: center;

    .tel {
      width: 50%;
      position: relative;
      height: 100px;
      border-radius: 50px;
      box-shadow: var(--box-shadow);
      background: linear-gradient(135deg, var(--gradient_blue));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      .number {
        font-size: 32px;
      }
      .time {
        display: flex;
        gap: 18px;
      }

      @media (max-width: 1024px) {
        .number {
          font-size: 20px;
        }
        .time {
          display: flex;
          gap: 10px;
          font-size: 15px;
        }
      }
    }

    .contact {
      width: 50%;
      background: linear-gradient(135deg, #ff006c, #ff9300);
      width: 50%;
      position: relative;
      height: 100px;
      border-radius: 50px;
      box-shadow: var(--box-shadow);
      font-size: 22px;
      display: flex;
      justify-content: center;
      align-items: center;

      @media (max-width: 1024px) {
        font-size: 16px;
      }
    }
  }

  .info {
    margin-top: 28px;
    padding: 0 40px;
    .heading {
      text-transform: uppercase;
      font-size: 21px;
      font-weight: bold;
    }
    .links {
      display: flex;
      flex-wrap: wrap;
      gap: 25px 48px;
      margin-top: 10px;

      & li {
        width: calc(50% - 24px);
      }
      & a {
        color: #fff;
        font-size: 19px;
        line-height: 100px;
        width: 100%;
        text-align: center;
      }
      & li:nth-child(1) a {
        background: center / cover no-repeat
          url("../img/common/menu-reason.webp");
      }
      & li:nth-child(2) a {
        background: center / cover no-repeat url("../img/common/menu-blog.webp");
      }
      & li:nth-child(3) a {
        background: center / cover no-repeat url("../img/common/menu-faq.webp");
      }
    }
  }
}
/* デフォルトではドロップダウンメニューを隠す */
#dropdown-product {
  display: none;
}
.product-header .yen-img
/* ホバー時にドロップダウンメニューを表示する */
#header-menu-product:hover + #dropdown-product {
  display: block;
}

.dropdown-menu-product {
  .links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 48px;
    margin-top: 20px;

    & li {
      width: calc(50% - 24px);
    }
    & a {
      position: relative;
      color: #fff;
      font-size: 19px;
      height: 100px;
      width: 100%;
      text-align: center;
      display: flex;
      place-items: center;

      &::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
      }
    }
    & li:nth-child(1) a {
      background: center / cover no-repeat url("../img/home/indoor-led.webp");
    }
    & li:nth-child(2) a {
      background: center / cover no-repeat url("../img/home/outdoor-led.webp");
    }
    & li:nth-child(3) a {
      background: center / cover no-repeat url("../img/home/stand-led.webp");
    }
    & li:nth-child(4) a {
      background: center / cover no-repeat url("../img/home/flexible-led.webp");
    }
    & li:nth-child(5) a {
      background: center / cover no-repeat url("../img/home/transparent-led.webp");
    }
    & li:nth-child(6) a {
      background: center / cover no-repeat
        url("../img/home/floor-led.webp");
    }
    & li:nth-child(7) a {
      background: center / cover no-repeat url("../img/home/ticker.webp");
    }
    & li:nth-child(8) a {
      background: center / cover no-repeat url("../img/home/cube-led.webp");
    }
    & span {
      z-index: 1;
      width: 100%;
    }
  }
}
/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- メイン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-main {
  --content-width: var(--content-width_large);
  overflow: hidden;
  padding: 60px 0 150px;
  background: var(--color_base);
  color: #fff;
}

.footer-company {
  margin-bottom: 40px;
}

.footer-company-logo:hover {
  opacity: var(--opacity);
}

.footer-menu-ul {
  display: flex;
  margin: 0 -90px -2em 0;
  flex-flow: wrap;
}

.footer-menu-li {
  margin: 0 70px 2em 0;
}

.footer-menu-link {
  margin-bottom: 0.3em;
  color: var(--color_main);
  font-weight: 700;
  font-size: 18px;
}

a[href].footer-menu-link:hover {
  opacity: var(--opacity);
}

.footer-submenu {
  display: flex;
  padding-top: 1.3em;
  border-top: 1px solid var(--color_main);
  flex-flow: wrap;
}

.footer-submenu-ul {
  margin-right: 3em;
}

.footer-submenu-li a {
  position: relative;
  padding-left: 1em;
}

.footer-submenu-li.current a,
.footer-submenu-li a:hover {
  color: var(--color_main);
}

.footer-submenu-li a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.footer-copyright {
  display: block;
  margin-top: 50px;
  font-size: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 70px 0 150px;
  }

  .footer-company {
    display: flex;
    margin-bottom: 80px;
    justify-content: space-between;
    align-items: center;
  }

  .footer-company-logo {
    max-width: 40%;
    margin-right: 6%;
    flex: none;
  }

  .footer-company-description {
    width: 760px;
  }

  .footer-copyright {
    margin-top: 110px;
  }
}

@media (max-width: 767.9px) {
  .footer-company-logo {
    margin-bottom: 1.5em;
  }

  .footer-company-logo img {
    width: 240px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.footer-link {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 5px;
  transition: var(--transition);
}

.footer-link.hide {
  transform: translateY(100%);
}

.footer-link-ul {
  display: flex;
  justify-content: center;
}

.footer-link-li {
  width: 340px;
  margin-right: 5px;
}

.footer-link-li:last-child {
  margin-right: 0;
}

.footer-link-li a {
  display: flex;
  position: relative;
  z-index: 0;
  height: 50px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  background: #fff;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.footer-link-li a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  transition: var(--transition);
}

.footer-link-li a:not(:hover)::before {
  opacity: 0;
}

.footer-link-tel a {
  background: linear-gradient(135deg, var(--gradient_blue));
  font-family: var(--font_english);
}

.footer-link-tel a::before {
  background: linear-gradient(-45deg, var(--gradient_blue));
}

.footer-link-tel .number {
  font-size: 17px;
}

.footer-link-tel .icon {
  width: 1.2em;
}

.footer-link-tel .hour {
  font-size: 12px;
}

.footer-link-form a {
  padding: 0 2.5em 0 1.2em;
  background: linear-gradient(135deg, #ff006c, #ff9300);
}

.footer-link-form a::before {
  background: linear-gradient(-45deg, #ff006c, #ff9300);
}

.footer-link-form a::after {
  position: absolute;
  top: 0;
  right: 1.2em;
  bottom: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
  content: "";
  transform: rotate(45deg);
}

.footer-link-form a:hover::after {
  transform: translateX(4px) rotate(45deg);
}

@media (min-width: 768px) {
  .footer-link {
    padding: 26px 5px;
  }

  .footer-link-li {
    margin-right: 45px;
  }

  .footer-link-li a {
    height: 70px;
  }

  .footer-link-tel .number {
    font-size: 28px;
  }

  .footer-link-tel .hour {
    font-size: 16px;
  }

  .footer-link-form a {
    font-size: 19px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- ページトップ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-top {
  display: flex;
  position: fixed;
  right: 10px;
  bottom: 70px;
  z-index: 1;
  width: 3em;
  height: 3em;
  font-size: 14px;
  border-radius: 50%;
  background: linear-gradient(0deg, var(--gradient_blue));
  color: #fff;
  font-family: var(--font_english);
  line-height: 1;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition), visibility 0.5s ease-in-out,
    opacity 0.5s ease-in-out;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.page-top:not(.show) {
  visibility: hidden;
  opacity: 0;
}

.page-top::before {
  width: 1em;
  height: 1em;
  /* width: 1.5em;
  height: 1.5em; */
  border-top: 0.18em solid;
  border-left: 0.18em solid;
  content: "";
  transform: rotate(45deg);
  transition: var(--transition);
}

.page-top::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(var(--gradient_blue));
  content: "";
  transition: var(--transition);
}

.page-top:hover::before {
  transform: translateY(-4px) rotate(45deg);
}

.page-top:not(:hover)::after {
  opacity: 0;
}

@media (min-width: 768px) {
  .page-top {
    right: 15px;
    bottom: 40px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
パンくずリスト
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.breadcrumb {
  margin-bottom: 1em;
  border-bottom: 1px solid;
}

.breadcrumb .content {
  overflow: auto;
  padding-bottom: 1.2em;
}

.breadcrumb ul {
  display: flex;
}

.breadcrumb li {
  display: flex;
  white-space: nowrap;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  width: 0.5em;
  height: 0.5em;
  margin: 0 0.6em 0 0.4em;
  border-top: 1px solid;
  border-right: 1px solid;
  content: "";
  transform: rotate(45deg);
}

.breadcrumb li a:hover {
  color: var(--color_main);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿本文
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post-content h1:first-child,
.post-content h2:first-child,
.post-content h3:first-child,
.post-content h4:first-child,
.post-content h5:first-child,
.post-content h6:first-child {
  margin-top: 0;
}

.post-content h1:last-child,
.post-content h2:last-child,
.post-content h3:last-child,
.post-content h4:last-child,
.post-content h5:last-child,
.post-content h6:last-child {
  margin-bottom: 0;
}

.post-content h1 {
  font-size: 23px;
}

.post-content h2 {
  font-size: 21px;
}

.post-content h3 {
  font-size: 20px;
}

.post-content h4 {
  font-size: 19px;
}

.post-content h5 {
  font-size: 18px;
}

.post-content h6 {
  font-size: 17px;
}

.post-content p:not([class]) + p:not([class]) {
  margin-top: 1.5em;
}

.post-content a {
  color: var(--color_main);
  text-decoration: underline;
  text-underline-offset: var(--text-underline-offset);
}

.post-content a:hover {
  opacity: var(--opacity);
}

.post-content img {
  display: block;
  width: auto;
  max-height: 640px;
  margin: 0 auto;
}

.post-content img + br {
  display: none;
}

.post-content ol:not([class]),
.post-content ul:not([class]) {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.post-content ol:not([class]):first-child,
.post-content ul:not([class]):first-child {
  margin-top: 0;
}

.post-content ol:not([class]):last-child,
.post-content ul:not([class]):last-child {
  margin-bottom: 0;
}

.post-content ol:not([class]) > li,
.post-content ul:not([class]) > li {
  position: relative;
  padding-left: 1.2em;
}

.post-content ol:not([class]) > li {
  counter-increment: number;
}

.post-content ol:not([class]) > li:not(:last-child),
.post-content ul:not([class]) > li:not(:last-child) {
  margin-bottom: 0.5em;
}

.post-content ol:not([class]) > li::before,
.post-content ul:not([class]) > li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.post-content ol:not([class]) > li::before {
  content: counter(number) ".";
}

.post-content ul:not([class]) > li::before {
  content: "・";
}

.post-content thead {
  border-bottom: none;
}

.post-content th {
  padding: 0.4em 0.8em;
  border: 1px solid;
  background: var(--color_main_light);
  text-align: center;
}

.post-content td {
  padding: 0.4em 0.8em;
  border: 1px solid;
  text-align: center;
}

.wp-post-image,
.wp-block-quote,
.wp-block-image,
.wp-block-gallery,
.wp-block-media-text,
.wp-block-table,
.wp-block-audio,
.wp-block-video,
.wp-block-embed-youtube {
  margin-top: 2em;
  margin-bottom: 2em;
}

.wp-post-image:first-child,
.wp-block-quote:first-child,
.wp-block-image:first-child,
.wp-block-gallery:first-child,
.wp-block-media-text:first-child,
.wp-block-table:first-child,
.wp-block-audio:first-child,
.wp-block-video:first-child,
.wp-block-embed-youtube:first-child {
  margin-top: 0;
}

.wp-post-image:last-child,
.wp-block-quote:last-child,
.wp-block-image:last-child,
.wp-block-gallery:last-child,
.wp-block-media-text:last-child,
.wp-block-table:last-child,
.wp-block-audio:last-child,
.wp-block-video:last-child,
.wp-block-embed-youtube:last-child {
  margin-bottom: 0;
}

.wp-post-image {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

[class^="wp-block-"] figcaption {
  display: table !important;
  margin: 0.8em auto 0;
}

.wp-block-quote {
  padding: 30px 30px 20px;
  border-radius: 10px;
  background: url("../img/common/quote.svg") 10px 10px no-repeat
    var(--color_main_light);
  background-size: 40px 32px;
}

.wp-block-quote cite {
  opacity: 0.5;
  margin-top: 1em;
  font-size: 0.9em;
}

.wp-block-image .alignright {
  display: block;
  float: none;
  margin: 0 auto 2em;
}

.wp-block-gallery {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.blocks-gallery-grid img {
  height: auto;
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
  max-width: 100%;
}

.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}

.wp-block-audio {
  margin-right: auto;
  margin-left: auto;
}

.wp-block-audio audio {
  min-width: 0;
  margin: auto;
}

.wp-block-video {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.wp-block-embed-youtube {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-top: 56.25%;
}

.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .post-content h1 {
    font-size: 26px;
  }

  .post-content h2 {
    font-size: 24px;
  }

  .post-content h3 {
    font-size: 22px;
  }

  .post-content h4 {
    font-size: 20px;
  }

  .post-content h5 {
    font-size: 19px;
  }

  .post-content h6 {
    font-size: 18px;
  }

  .post-content th {
    padding: 0.8em;
  }

  .post-content td {
    padding: 0.8em;
  }

  .wp-block-quote {
    padding: 30px 50px;
    background-size: 50px 40px;
  }

  .wp-block-image .alignright {
    float: right;
    max-width: 45%;
    margin-left: 5%;
  }

  .wp-block-media-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .wp-block-media-text > :first-child {
    margin-right: 6%;
  }

  .wp-block-media-text__media {
    max-width: 47%;
    flex: none;
  }

  .wp-block-media-text .wp-block-media-text__media,
  .wp-block-media-text .wp-block-media-text__content {
    align-self: auto;
  }
}

@media (max-width: 767.9px) {
  .wp-block-media-text {
    display: block;
  }

  .wp-block-media-text .wp-block-media-text__media {
    margin-bottom: 2em;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-link {
  display: block;
}

.post-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  background: var(--color_main_light);
  transition: 0.4s ease-in-out;
}

.post-link:hover .post-image {
  background: #758c91;
}

.post-image::after {
  display: block;
  padding-top: 100%;
  content: "";
}

.post-image .wp-post-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in-out;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.post-link:hover .wp-post-image {
  transform: scale(1.1);
}

.post-info {
  display: flex;
  font-size: 0.9em;
  flex-flow: wrap;
  align-items: center;
}

.post-time {
  margin: 0 0.8em 0.6em 0;
}

.post-category-ul {
  display: flex;
  margin-right: -0.6em;
  flex-flow: wrap;
}

.post-category-li {
  margin: 0 0.6em 0.6em 0;
}

.post-category {
  display: block;
  padding: 0 0.6em;
  border: 1px solid var(--color_main);
  background: #fff;
  color: var(--color_main);
  line-height: 1.6;
}

a.post-category:hover {
  background: var(--color_main);
  color: #fff;
}

.post-tag-ul {
  display: flex;
  margin: 0.6em -0.6em -0.6em 0;
  flex-flow: wrap;
}

.post-tag-li {
  margin: 0 0.6em 0.6em 0;
}

.post-tag {
  opacity: 0.5;
  font-size: 0.9em;
}

a.post-tag:hover {
  opacity: 1;
  color: var(--color_main);
}

.post-tag::before {
  content: "#";
}

.post-ul {
  display: flex;
  margin-bottom: -60px;
  flex-flow: wrap;
  justify-content: space-between;
}

.post-li {
  width: 100%;
  margin-bottom: 60px;
}

.post-li .post-time {
  width: 100%;
  margin-right: 0;
  padding-bottom: 0.3em;
  border-bottom: 2px solid var(--color_main);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.single {
  --content-width: var(--content-width_small);
}

.single .post-heading {
  margin-bottom: 1.5em;
  font-size: 23px;
}

@media (min-width: 400px) {
  .post-li {
    width: 47%;
  }
}

@media (min-width: 640px) {
  .post-li {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .post-ul {
    margin-bottom: -130px;
  }

  .post-li {
    margin-bottom: 130px;
  }

  .post-li .post-time {
    font-size: 22px;
  }

  .single .post-heading {
    font-size: 26px;
  }
}

@media (min-width: 1024px) {
  .post-li {
    width: 22%;
  }
}

@media (max-width: 399.9px) {
  .post-li .post-image {
    max-height: 200px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページネーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-page-ul {
  display: flex;
  max-width: 100%;
  margin: 4em -0.3em 0;
  font-size: 15px;
  line-height: 2em;
  text-align: center;
  justify-content: center;
}

.post-page-li {
  position: relative;
  min-width: 1.5em;
  margin: 0 0.3em;
}

.post-page-li a {
  display: block;
}

.post-page-li a:hover {
  color: var(--color_main);
}

.post-page-current::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1em;
  margin: auto;
  border-top: 1px solid;
  content: "";
}

.post-page-prev a::before,
.post-page-next a::before {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-right: 1px solid;
  border-bottom: 1px solid;
  vertical-align: 1px;
  content: "";
}

.post-page-prev a::before {
  transform: rotate(135deg);
}

.post-page-next a::before {
  transform: rotate(-45deg);
}

.post-page-prev a:hover::before {
  transform: translateX(-4px) rotate(135deg);
}

.post-page-next a:hover::before {
  transform: translateX(4px) rotate(-45deg);
}

.post-nav-ul {
  display: flex;
  margin-top: 4em;
  font-size: 15px;
  justify-content: center;
}

.post-nav-li.disabled {
  visibility: hidden;
}

.post-nav-li a {
  display: block;
}

.post-nav-li a:hover {
  color: var(--color_main);
}

.post-nav-archive {
  margin: 0 2em;
}

.post-nav-prev a::before,
.post-nav-next a::after {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 1px solid;
  border-bottom: 1px solid;
  vertical-align: 2px;
  content: "";
}

.post-nav-prev a::before {
  margin-right: 0.5em;
  transform: rotate(135deg);
}

.post-nav-next a::after {
  margin-left: 0.5em;
  transform: rotate(-45deg);
}

.post-nav-prev a:hover::before {
  transform: translateX(-4px) rotate(135deg);
}

.post-nav-next a:hover::after {
  transform: translateX(4px) rotate(-45deg);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
お知らせ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.news-post-li .post-heading {
  font-weight: inherit;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
設置事例
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.case-post-ul {
  display: flex;
  max-width: 1330px;
  margin-right: auto;
  margin-left: auto;
  flex-flow: wrap;
  justify-content: space-between;
  /* height: 750px; */
}

.case-post-li .post-image::after {
  padding-top: 74%;
}

.case-post-li .header {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--color_main);
  font-weight: 700;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}

.case-post-li .header-content {
  margin-right: 2em;
}

.case-post-li .post-heading {
  font-size: 20px;
}

.case-post-li .location {
  margin-top: 0.5em;
  padding: 0 1.3em;
  border-radius: 15px;
  background: var(--color_main);
  color: #fff;
}

.case-post-li .post-content {
  margin-top: 1.5em;
}

@media (min-width: 400px) {
  .case-post-li {
    width: 47%;
    max-width: 588px;
  }
}

@media (min-width: 768px) {
  .case-post-li .industry {
    font-size: 21px;
  }

  .case-post-li .post-heading {
    font-size: 27px;
  }

  .case-post-li .location {
    font-size: 18px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
よくある質問
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.faq-question {
  position: relative;
  margin: 1.3em 0 0.5em;
  padding: 0 0 0.8em 2em;
  border-bottom: 2px solid var(--color_main);
  font-size: 16px;
}

.faq-question::before {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  background: var(--color_main);
  color: #fff;
  font-size: 0.9em;
  font-family: var(--font_english);
  content: "Q";
  justify-content: center;
  align-items: center;
}

.faq-answer {
  position: relative;
  padding-left: 1.2em;
}

.faq-answer::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color_main);
  font-weight: 700;
  content: "A.";
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 24px;
  }

  .faq-answer {
    font-size: 16px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フォーム
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.form-content {
  --content-width: var(--content-width_small);
}

.form-step-ul {
  display: flex;
  margin-bottom: 40px;
  justify-content: center;
}

.form-step-li {
  width: calc(100% / 3 + 0.7em);
  max-width: 223px;
  padding: 0.6em 1em;
  background: #e0dddd;
  font-family: var(--font_english);
  line-height: 1.5;
  text-align: center;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - 1.4em) 0,
    100% 50%,
    calc(100% - 1.4em) 100%,
    0 100%,
    1.4em 50%
  );
  clip-path: polygon(
    0 0,
    calc(100% - 1.4em) 0,
    100% 50%,
    calc(100% - 1.4em) 100%,
    0 100%,
    1.4em 50%
  );
}

.form-step-li:not(:last-child) {
  margin-right: -0.7em;
}

.form-step-input {
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - 1.4em) 0,
    100% 50%,
    calc(100% - 1.4em) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - 1.4em) 0,
    100% 50%,
    calc(100% - 1.4em) 100%,
    0 100%
  );
}

.mw_wp_form_input .form-step-input,
.mw_wp_form_confirm .form-step-confirm,
.mw_wp_form_complete .form-step-complete {
  background: var(--color_main);
  color: #fff;
}

.form-table th {
  padding-bottom: 0.7em;
  font-weight: inherit;
}

.form-table .required::after {
  display: inline-block;
  margin-left: 0.8em;
  padding: 0 0.4em;
  border: 1px solid;
  color: #d32727;
  font-size: 10px;
  line-height: 1.6;
  vertical-align: 0.1em;
  content: "必須";
}

.form-table td {
  padding-bottom: 30px;
}

.form-table tr:last-child td {
  padding-bottom: 0;
}

.form-table .horizontal-item {
  display: inline-block;
  margin-left: 0 !important;
}

.form-table .horizontal-item:not(:last-child) {
  margin-right: 50px;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  display: flex;
  align-items: flex-start;
}

.mwform-checkbox-field input[type="checkbox"],
.mwform-radio-field input[type="radio"] {
  width: 1em;
  height: 1em;
  margin: 0.4em 0.4em 0 0;
  flex: none;
}

.form-privacy {
  display: table;
  margin: 30px auto 0;
}

.form-privacy a {
  text-decoration: underline;
  text-underline-offset: var(--text-underline-offset);
}

.form-privacy a:hover {
  color: var(--color_main);
}

.button-container {
  display: flex;
  justify-content: center;
}

.button-container .button {
  margin-right: 0;
  margin-left: 0;
  background: #f8355a;
  color: #fff;
}

.button-container .button_back {
  margin-right: 6%;
}

.button-container .button_back::after {
  right: auto;
  left: 1.7em;
  transform: rotate(-135deg);
}

.mw_wp_form .error {
  margin-top: 0.5em;
  font-size: inherit !important;
}

.mw_wp_form_confirm .annotation,
.mw_wp_form_confirm .form-privacy {
  display: none;
}

@media (min-width: 768px) {
  .form-step-ul {
    margin-bottom: 85px;
  }

  .form-table th {
    position: relative;
    padding: 0 100px 50px 0;
    font-size: 18px;
    white-space: nowrap;
  }

  .form-table tr:last-child th {
    padding-bottom: 0;
  }

  .form-table .required::after {
    position: absolute;
    top: 1.5em;
    right: 40px;
  }

  .form-table td {
    width: 100%;
    padding-bottom: 50px;
  }

  .form-table .horizontal-item {
    font-size: 16px;
  }

  .form-privacy {
    margin-top: 65px;
    font-size: 18px;
  }

  .mw_wp_form_input th {
    padding-top: 0.5em;
  }

  .mw_wp_form_input .mwform-radio-field {
    padding-top: 0.5em;
  }

  .mw_wp_form_confirm .required::after {
    top: 0.7em;
  }

  .mw_wp_form_confirm td {
    padding-top: 0.2em;
  }
}

@media (max-width: 767.9px) {
  .form-table th {
    display: block;
  }

  .form-table td {
    display: block;
  }
}


/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
2024年 修正
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.blog-single.single, .news-single.single {
  padding-top: 170px;
}
@media (max-width: 767px) {
  .blog-single.single, .news-single.single {
    padding-top: 100px;
  }
}
header.hide.open {
    /*transform: translateY(0)!important;*/
}
@media (max-width: 767px) {
  /*header.hide {
    transform: translateY(0);
    animation: spHdHide 0.5s ease-out 1.5s forwards;
  }*/
  .header-inner {
    transition: all 0.5s;
  }
  header.hide .header-inner {
    transform: translateY(-150%);
  }
  .footer-menu-li {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .header-menu-li.sp {
    display: none;
  }
}
/*@keyframes spHdHide {
	100% { transform: translateY(-200%); }
}*/