@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input,
textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: rgba(0, 0, 0, 0);
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body:not(.home) {
  opacity: 0;
  -webkit-animation: bodyFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: bodyFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@-webkit-keyframes bodyFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bodyFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.post__page--title.fadein {
  position: relative;
}
.post__page--title.fadein::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #094;
  opacity: 0;
  -webkit-transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
  transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
}

.post__page--title.fadein.scrollIn::after {
  width: 100%;
}

.normal.fadein {
  opacity: 0.1;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
  transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
}

.normal.fadein.scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.right.fadein {
  opacity: 0;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  -webkit-transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
  transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
}

.right.fadein.scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.left.fadein {
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
  -webkit-transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
  transition: all 800ms cubic-bezier(0.17, 0.67, 0.67, 0.91);
}

.left.fadein.scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.section-block__subtitle {
  overflow: hidden;
}

.section-block__subtitle.fadein span {
  display: block;
  -webkit-transform: translate(0, 105%);
          transform: translate(0, 105%);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.section-block__subtitle.fadein.scrollIn span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.section-block__subtitle span:nth-child(2) {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
}

.section-block__subtitle span:nth-child(3) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.section-block__subtitle span:nth-child(4) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

.section-block__subtitle span:nth-child(5) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.section-block__subtitle span:nth-child(6) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.section-block__subtitle span:nth-child(7) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.section-block__subtitle span:nth-child(8) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}

.section-block__subtitle span:nth-child(9) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

.section-block__subtitle span:nth-child(10) {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}

.section-block__subtitle span:nth-child(11) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 13px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  html {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "Arial", sans-serif;
  color: #383838;
  background: #fff;
  line-height: 2;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media print, screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

.outfit-bold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

#site-wrapper {
  overflow: hidden;
}

main {
  margin-bottom: 100px;
}

.color-red {
  color: red;
}

button,
input[type=submit],
input[type=button] {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  background: none;
}
@media print, screen and (max-width: 767px) {
  button,
  input[type=submit],
  input[type=button] {
    font-size: 12px;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

.page-wrapper {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 767px) {
  .container {
    max-width: 90%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 90%;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .container {
    max-width: 90%;
  }
}
@media print, screen and (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

.text-center {
  text-align: center;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 2em 0;
}

.font-size-s {
  font-size: 80%;
}

.site-header {
  position: relative;
  z-index: 9999999;
  background: #fff;
  border-bottom: 1px solid #eee;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.site-header__inner {
  position: relative;
  z-index: 9999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 16px) clamp(12px, 3vw, 24px);
}
@media print, screen and (min-width: 768px) {
  .site-header__inner {
    padding: clamp(6px, 1vw, 8px) clamp(16px, 3vw, 24px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__inner {
    padding: 1em 24px;
  }
}
.site-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
}
.site-header__logo > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 10px;
  text-decoration: none;
  color: #383838;
}
@media print, screen and (min-width: 768px) {
  .site-header__logo > a {
    gap: clamp(12px, 2vw, 15px);
    font-size: clamp(13px, 1.8vw, 14px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__logo > a {
    gap: 15px;
    font-size: 14px;
  }
}
.site-header__logo img {
  height: clamp(32px, 5.5vw, 42px);
  width: auto;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .site-header__logo img {
    height: clamp(36px, 5.5vw, 42px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__logo img {
    height: 42px;
  }
}
.site-header__menu {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  gap: 0 clamp(12px, 2.5vw, 20px);
}
@media print, screen and (min-width: 768px) {
  .site-header__menu {
    gap: 0 clamp(16px, 2.5vw, 20px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__menu {
    gap: 0 40px;
  }
}
.site-header__menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(20px, 5vw, 40px);
  grid-area: 1/1/2/2;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .site-header__menu-top {
    gap: clamp(30px, 5vw, 40px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__menu-top {
    gap: 40px;
  }
}
.site-header__menu-bottom {
  grid-area: 2/1/3/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 5vw, 40px);
  margin-top: clamp(12px, 2.5vw, 20px);
  -webkit-transition: margin-top 0.3s ease-in-out;
  transition: margin-top 0.3s ease-in-out;
}
@media print, screen and (max-width: 1000px) {
  .site-header__menu-bottom {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .site-header__menu-bottom {
    gap: clamp(30px, 5vw, 40px);
    margin-top: clamp(16px, 2.5vw, 20px);
  }
}
@media print, screen and (min-width: 1001px) {
  .site-header__menu-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    margin-top: 20px;
  }
}
.site-header__menu__sitemap {
  grid-area: 1/2/3/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 1.3vw, 10px);
}
@media print, screen and (min-width: 768px) {
  .site-header__menu__sitemap {
    gap: clamp(9px, 1.3vw, 10px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__menu__sitemap {
    gap: 10px;
  }
}
.site-header__menu__sitemap span {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .site-header__menu__sitemap span {
    font-size: clamp(11px, 1.5vw, 12px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__menu__sitemap span {
    font-size: 12px;
  }
}
.site-header__menu__sitemap__button {
  background-color: rgba(0, 0, 0, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
  background-image: linear-gradient(to right, #000, #000);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 2px;
  border: 0;
  color: rgba(0, 0, 0, 0);
  cursor: pointer;
  height: 24px;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  width: 30px;
  outline: none;
  position: relative;
}
.site-header__menu__sitemap__button:hover {
  background-color: rgba(0, 0, 0, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
  background-image: linear-gradient(to right, #000, #000);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 2px;
}
.site-header__menu__sitemap__button::before, .site-header__menu__sitemap__button::after {
  background: #000;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
}
.site-header__menu__sitemap__button::before {
  top: 0;
}
.site-header__menu__sitemap__button::after {
  bottom: 0;
}
.site-header__menu__sitemap__button.open {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  background: none;
}
.site-header__menu__sitemap__button.open::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-color: #333;
}
.site-header__menu__sitemap__button.open::after {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
  background-color: #333;
}
.site-header__menu__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(20px, 5vw, 40px);
}
@media print, screen and (min-width: 768px) {
  .site-header__menu__nav ul {
    gap: clamp(30px, 5vw, 40px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__menu__nav ul {
    gap: 40px;
  }
}
.site-header__menu__nav ul li {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .site-header__menu__nav ul li {
    font-size: clamp(13px, 1.8vw, 14px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__menu__nav ul li {
    font-size: 14px;
  }
}
.site-header__menu__nav ul li a {
  text-decoration: none;
  color: #383838;
}
.site-header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #999;
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
  z-index: 10;
}

.site-header.is-active::after {
  width: 100%;
}

.site-header__support {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .site-header__support {
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__support {
    font-size: 1rem;
  }
}
.site-header__support li {
  list-style: none;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .site-header__support li {
    font-size: clamp(13px, 1.8vw, 14px);
  }
}
@media print, screen and (min-width: 1000px) {
  .site-header__support li {
    font-size: 14px;
  }
}
.site-header__support li::marker {
  display: none;
}
.site-header__support a {
  color: #333;
  text-decoration: none;
}

.gtranslate_wrapper a {
  position: relative;
  color: #999;
  padding: 0 clamp(0.5em, 1vw, 0.75em);
  font-size: clamp(12px, 1.8vw, 14px);
}
@media print, screen and (min-width: 768px) {
  .gtranslate_wrapper a {
    padding: 0 clamp(0.625em, 1vw, 0.75em);
    font-size: clamp(13px, 1.8vw, 14px);
  }
}
@media print, screen and (min-width: 1000px) {
  .gtranslate_wrapper a {
    padding: 0 0.75em;
    font-size: 14px;
  }
}
.gtranslate_wrapper a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 80%;
  background: #999;
}
.gtranslate_wrapper .gt-current-lang {
  color: #009b63;
}

body {
  scrollbar-gutter: stable;
}

.sitemaps {
  -webkit-transition: 0.3s all ease-in;
  transition: 0.3s all ease-in;
  visibility: hidden;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  padding: 135px 0 90px 0;
  overflow-y: scroll;
}
@media print, screen and (min-width: 768px) {
  .sitemaps {
    padding: clamp(60px, 10vw, 80px) clamp(16px, 3vw, 24px);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps {
    padding: clamp(80px, 10vw, 100px) 24px;
  }
}
.sitemaps__list {
  max-width: 80%;
  margin: clamp(2em, 5vw, 4em) auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .sitemaps__list {
    margin: clamp(3em, 5vw, 4em) auto;
    gap: clamp(30px, 5vw, 40px);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps__list {
    margin: 4em auto;
    gap: 40px;
  }
}
.sitemaps__list__grp {
  width: calc(25% - clamp(20px, 5vw, 40px));
}
@media print, screen and (max-width: 767px) {
  .sitemaps__list__grp {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .sitemaps__list__grp {
    width: calc(50% - clamp(15px, 2.5vw, 20px));
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps__list__grp {
    width: calc(25% - 40px);
  }
}
.sitemaps__list__item {
  list-style-type: none;
}
.sitemaps__list__item > a {
  position: relative;
  padding: clamp(0.75em, 1.3vw, 1em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: clamp(50px, 8.75vw, 70px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .sitemaps__list__item > a {
    padding: clamp(0.875em, 1.3vw, 1em);
    height: clamp(60px, 8.75vw, 70px);
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps__list__item > a {
    padding: 1em;
    height: 70px;
    font-size: 1rem;
  }
}
.sitemaps__list__item > a:hover {
  color: #009b63;
}
.sitemaps__list__item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #999;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sitemaps__list__item__title {
  position: relative;
  height: clamp(50px, 8.75vw, 70px);
  padding: clamp(0.75em, 1.3vw, 1em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .sitemaps__list__item__title {
    height: clamp(60px, 8.75vw, 70px);
    padding: clamp(0.875em, 1.3vw, 1em);
    font-size: clamp(0.9375rem, 1.3vw, 1rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps__list__item__title {
    height: 70px;
    padding: 1em;
    font-size: 1rem;
  }
}
.sitemaps__list__item__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #999;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sitemaps__list__item--arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #009b63;
  width: clamp(28px, 4.4vw, 35px);
  height: clamp(28px, 4.4vw, 35px);
  border-radius: 50%;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .sitemaps__list__item--arrow {
    width: clamp(32px, 4.4vw, 35px);
    height: clamp(32px, 4.4vw, 35px);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps__list__item--arrow {
    width: 35px;
    height: 35px;
  }
}
.sitemaps__list__item--arrow::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 50%;
}
.sitemaps__list__item__child li {
  list-style-type: none;
  text-align: left;
}
.sitemaps__list__item__child li::marker {
  display: none;
}
.sitemaps__list__item__child li a {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  padding: clamp(0.4em, 1vw, 0.5em) clamp(0.75em, 1.3vw, 1em);
  color: #333;
}
@media print, screen and (min-width: 1000px) {
  .sitemaps__list__item__child li a {
    padding: 0.5em 1em;
  }
}
.sitemaps__list__item__child li a:hover {
  color: #009b63;
}
.sitemaps__list__item__child li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: clamp(0.6em, 1vw, 0.75em);
  height: 1px;
  background: #333;
}
@media print, screen and (min-width: 1000px) {
  .sitemaps__list__item__child li a::before {
    width: 0.75em;
  }
}
.sitemaps .sitemaps__list__item .sitemaps__list__item__child {
  padding-left: clamp(0.75em, 1.3vw, 1em);
  margin-top: clamp(0.2em, 0.4vw, 0.25em);
}
@media print, screen and (min-width: 768px) {
  .sitemaps .sitemaps__list__item .sitemaps__list__item__child {
    padding-left: clamp(0.875em, 1.3vw, 1em);
    margin-top: clamp(0.225em, 0.4vw, 0.25em);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps .sitemaps__list__item .sitemaps__list__item__child {
    padding-left: 1em;
    margin-top: 0.25em;
  }
}
.sitemaps .sitemaps-sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(12px, 2.5vw, 20px);
}
@media print, screen and (min-width: 768px) {
  .sitemaps .sitemaps-sns_list {
    gap: clamp(16px, 2.5vw, 20px);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps .sitemaps-sns_list {
    gap: 20px;
  }
}
.sitemaps .sitemaps-sns_list li {
  list-style-type: none;
}
.sitemaps .sitemaps-sns_list li::marker {
  display: none;
}
.sitemaps .sitemaps-sns_list li:first-of-type img {
  padding: 0.25em;
  background: #000;
}
.sitemaps .sns-icon {
  width: clamp(36px, 5.6vw, 45px);
  height: clamp(36px, 5.6vw, 45px);
  margin-right: clamp(6px, 1vw, 8px);
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .sitemaps .sns-icon {
    width: clamp(40px, 5.6vw, 45px);
    height: clamp(40px, 5.6vw, 45px);
    margin-right: clamp(7px, 1vw, 8px);
  }
}
@media print, screen and (min-width: 1000px) {
  .sitemaps .sns-icon {
    width: 45px;
    height: 45px;
    margin-right: 8px;
  }
}

.sitemaps.is-open {
  z-index: 9999;
  background: #fff;
  visibility: visible;
  color: #333;
  opacity: 1;
}

.site-header__outer.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: slideDown 0.3s ease-in-out;
          animation: slideDown 0.3s ease-in-out;
}
.site-header__outer.is-fixed .site-header__menu-top {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
  gap: 0;
}
@media print, screen and (max-width: 1000px) {
  .site-header__outer.is-fixed .site-header__menu-top {
    display: none;
  }
}
.site-header__outer.is-fixed .site-header__menu-bottom {
  margin-top: 0;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media print, screen and (max-width: 1000px) {
  .site-header__inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .site-header__menu {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .site-header__menu-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .site-header__menu-top .site-header__lang {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .site-header__menu-bottom {
    display: none !important;
  }
  .site-header__menu__sitemap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .site-header__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 60%;
  }
  .site-header__support {
    display: none !important;
  }
  .sitemaps__list {
    max-width: 95%;
  }
  .sitemaps__list__grp {
    width: 100%;
  }
}
@media print {
  .site-header {
    display: none !important;
  }
  .sitemaps {
    display: none !important;
  }
  .site-header__menu {
    display: none !important;
  }
  .site-header__logo {
    display: none !important;
  }
}
@-webkit-keyframes slide-out-in {
  0% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-50%) translateX(100%);
            transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateY(-50%) translateX(-100%);
            transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
@keyframes slide-out-in {
  0% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-50%) translateX(100%);
            transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateY(-50%) translateX(-100%);
            transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.footer {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #333;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.footer__inner {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .footer {
    padding: clamp(2.5rem, 5vw, 3rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(2rem, 3vw, 2.5rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media print, screen and (min-width: 1000px) {
  .footer {
    padding: 40px 0;
    font-size: 1rem;
  }
  .footer__inner {
    gap: 24px;
  }
}
.footer .footer__company-info-title {
  font-size: 1.125rem;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__company-info-title {
    font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-info-title {
    font-size: 1.25rem;
  }
}
.footer .footer__company-left {
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .footer .footer__company-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 40%;
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-left {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: none;
  }
}
.footer .footer__company-left .footer__company-info-logo {
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__company-left .footer__company-info-logo {
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-left .footer__company-info-logo {
    margin-bottom: 20px;
  }
}
.footer .footer__company-left .footer__company-info-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__company-left .footer__company-info-logo a {
    gap: clamp(1rem, 2vw, 1.25rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-left .footer__company-info-logo a {
    gap: 20px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .footer .footer__company-center {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-center {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    margin-bottom: 0;
  }
}
.footer .footer__company-center .footer_company__contact .footer__company-contact-text {
  font-size: 0.9em;
  color: #fff;
  margin-bottom: 1em;
}
.footer .footer__company-center .footer_company__contact .footer__company-contact-btn {
  position: relative;
  display: block;
  padding: 1em 2em;
  border: 1px solid #E7E7E7;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .footer__company-center .footer_company__contact .footer__company-contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 10px;
  height: 10px;
  background-color: #fff;
  mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer .footer__company-center .footer_company__contact .footer__company-contact-btn:hover {
  background: #094;
  color: #fff;
  border: 1px solid #094;
}
.footer .footer__company-center .footer_company__contact .footer__company-contact-btn:hover::after {
  background-color: #fff;
  -webkit-animation: slide-out-in 0.6s ease-in-out;
          animation: slide-out-in 0.6s ease-in-out;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .footer .footer__company-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-right {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
}
.footer .footer__company-right-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__company-right-sns {
    gap: clamp(1.5rem, 2.5vw, 1.875rem);
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-right-sns {
    gap: 30px;
    margin-bottom: 20px;
  }
}
.footer .footer__company-right .sns_link {
  width: 36px;
  height: 36px;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .footer .footer__company-right .sns_link {
    width: clamp(36px, 5vw, 45px);
    height: clamp(36px, 5vw, 45px);
    padding: clamp(4px, 0.6vw, 5px);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer .footer__company-right .sns_link {
    width: 45px;
    height: 45px;
    padding: 5px;
  }
}
.footer .footer__company-right .sns_link:hover {
  opacity: 0.7;
}
.footer .footer__company-right .sns_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__brand {
  text-align: left;
}
.footer__logo {
  width: 56px;
  height: auto;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .footer__logo {
    width: clamp(56px, 7vw, 70px);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer__logo {
    width: 70px;
  }
}
.footer__company-info {
  color: #fff;
  margin-top: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  .footer__company-info {
    margin-top: clamp(0.5rem, 0.8vw, 0.5rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer__company-info {
    margin-top: 8px;
  }
}
.footer .footer__company-info-address {
  color: #fff;
}
.footer__address, .footer__tel, .footer__fax {
  margin-bottom: 2px;
}
.footer__copyright {
  font-size: 0.85em;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .footer__copyright {
    font-size: clamp(0.85em, 1.1vw, 0.9em);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: 0.9em;
  }
}

.footer__nav {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .footer__nav {
    gap: clamp(1.5rem, 2.5vw, 1.5rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .footer__nav {
    gap: 24px;
  }
}

.filter-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style-type: none !important;
  padding-left: 0;
}
.filter-tabs li {
  list-style-type: none !important;
}
.filter-tabs button {
  border: 1px solid #ddd;
  border-radius: 4px;
}
.filter-tabs button a:hover {
  color: #fff !important;
  background: none;
  text-decoration: none;
}
.filter-tabs button,
.filter-tabs a {
  position: relative;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.75em 1em;
  background: transparent;
}
.filter-tabs button:hover, .filter-tabs button.active, .filter-tabs button.is-active,
.filter-tabs a:hover,
.filter-tabs a.active,
.filter-tabs a.is-active {
  background: #094;
  border-color: #094;
  color: #fff;
}
.filter-tabs button:hover::after, .filter-tabs button.active::after, .filter-tabs button.is-active::after,
.filter-tabs a:hover::after,
.filter-tabs a.active::after,
.filter-tabs a.is-active::after {
  background: #094;
}
.filter-tabs button a {
  -webkit-transition: none;
  transition: none;
}

.about__tabs {
  display: grid;
  list-style-type: none !important;
  padding-left: 0;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 0.25em;
  gap: 10px;
}
.about__tabs li {
  list-style-type: none !important;
}
.about__tabs li button {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  color: #333;
  padding: 1em 0;
  text-align: center;
  font-weight: bold;
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about__tabs li button:hover, .about__tabs li button.active {
  background: #f5f5f5;
  color: #333;
}
.about__tabs li button:hover::after, .about__tabs li button.active::after {
  background: #094;
}

.works-search__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.works-search__filters button {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: transparent;
}
.works-search__filters button a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: none;
  transition: none;
}
.works-search__filters button a:hover {
  -webkit-transition: none;
  transition: none;
}
.works-search__filters button.is-active {
  background: #094;
  border-color: #094;
  color: #fff;
}
.works-search__filters button.is-active a {
  color: #fff;
}

.post__page--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  height: 150px;
  border-bottom: 1px solid #eee;
  background: url(./../images/common/header.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.post__page--title .container {
  width: 100%;
}
.post__page--title__text {
  font-size: 2.25rem;
  line-height: 1.4;
  color: #000;
}
.post__page--title .post__page--title__sub-deco {
  font-size: 0.875rem;
  margin-right: 10px;
  color: #094;
  font-weight: bold;
}
.post__page--title__text__sub {
  font-size: 0.875rem;
  color: #094;
  font-weight: bold;
}

.post__hero__text {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.post__breadcrumbs {
  position: relative;
  z-index: 2;
  padding: 1em 0 2em;
  margin: 0 auto;
  background: #fff;
  text-align: right;
}
.post__breadcrumbs-item {
  display: inline-block;
  font-size: 80%;
}

.post__breadcrumbs-item:not(:first-child)::before {
  content: ">";
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em;
}
.post__breadcrumbs-item a {
  text-decoration: none;
  color: #383838;
}

h2.wp-block-heading {
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  text-align: left;
  background: none;
  border: none;
  padding: 0 0 10px 0;
  margin: 1em auto;
  position: relative;
}
h2.wp-block-heading::after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background: #094;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}
h2.wp-block-heading::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #eee;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}

h3.wp-block-heading {
  margin: 10px 0 15px;
  font-size: 1.5rem;
  text-align: left;
  border-bottom: none;
}

.scroll-to-top-btn {
  width: 100%;
  color: #fff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px 0;
}
.scroll-to-top-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.scroll-to-top-btn img {
  width: 30px;
  height: 30px;
}

.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-left: 20px;
  height: 20px;
  width: 20px;
}

.arrow_u:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

@media print, screen and (max-width: 767px) {
  .works-search,.works-categories-container {
    margin: 30px 0;
  }
  .works-search__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works-search__form button {
    width: 100%;
  }
  .works-search__filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .works-list {
    margin: 30px 0;
  }
  .works-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .works-list .works-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .works-list .works-card__img {
    height: 150px;
  }
  .works-list .works-card__title {
    font-size: 16px;
  }
  .page-btn .circle_btn {
    width: 40px;
    height: 40px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .works-list .works-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .works-search__filters a,
  .works-search__filters button {
    padding: 6px 12px;
    font-size: 12px;
  }
}
.page-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans Japanese";
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1em;
}

.page-btn .circle_btn {
  position: relative;
  background: #094;
  color: #fff;
  padding: 0.7rem;
  border-radius: 100vh;
  width: 60px;
  height: 60px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-btn .btn_txt {
  color: #000;
}

.page-btn .circle_btn:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 2px);
  right: calc(50% - 2px);
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.page-btn:hover .circle_btn {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  background: #fff;
  border: 1px solid #094;
}

.page-btn:hover .circle_btn:after {
  border-top: 3px solid #094;
  border-right: 3px solid #094;
}

.form_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 2em;
  margin-top: 60px;
}
.form_btns p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
}

.form_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 2em;
  margin-top: 60px;
}
.form_btns p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
}

.form_btn.confirm,
.form_btn.submit,
.form_btn.previous {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 60px;
  border-radius: 3px;
  z-index: 1;
  max-width: 320px;
  width: 100%;
}

.form_btn.confirm,
.form_btn.submit {
  color: #fff;
  background: #094;
  position: relative;
}

.form_btn.confirm > p,
.form_btn.submit > p ,
.form_btn.previous > p{
  width: 100%;
  height: 100%;
}

.form_btn.confirm > p input,
.form_btn.submit > p input,
.form_btn.previous > p input{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.form_btn.confirm::after,
.form_btn.submit::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form_btn.confirm:hover,
.form_btn.submit:hover {
  background: #fff;
  color: #094;
  border: 1px solid #094;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form_btn.confirm:hover input,
.form_btn.submit:hover input {
  color: #094;
}
.form_btn.confirm:hover::after,
.form_btn.submit:hover::after {
  background-color: #094;
}
.form_btn.confirm input,
.form_btn.submit input {
  color: #fff;
}

.form_btn.previous {
  background: #f5f5f5;
}

.form_btn.previous::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #222;
  mask-image: url(../images/common/arrow-l.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/common/arrow-l.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.form_btn.previous:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact__btn {
  margin: 100px auto;
}
.contact__btn .contact__btn-link {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #0f0b0b;
  padding: 22px 0 20px;
  border: 1px solid #d7d8d9;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  text-decoration: none;
}
.contact__btn:hover .contact__btn-link {
  color: #fff;
  background: #094;
  border: 1px solid #094;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.sns-share-wrapper {
  margin-left: auto;
}

.sns-share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sns-share-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 150px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns-share-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.sns-share-btn svg {
  width: 20px;
  height: 20px;
}

/* X（Twitter）ボタン */
.sns-share-twitter {
  background: #000;
  color: #fff !important;
}

.sns-share-twitter:hover {
  background: #333;
  color: #fff !important;
}

/* Facebookボタン */
.sns-share-facebook {
  background: #1877f2;
  color: #fff !important;
}

.sns-share-facebook:hover {
  background: #166fe5;
  color: #fff !important;
}

/* LINEボタン */
.sns-share-line {
  background: #06c755;
  color: #fff !important;
}

.sns-share-line:hover {
  background: #05b349;
  color: #fff !important;
}

/* URLコピーボタン */
.sns-share-copy {
  background: #6c757d;
  color: #fff !important;
  border: none;
}

.sns-share-copy:hover {
  background: #5a6268;
  color: #fff !important;
}

.sns-share-copy.copied {
  background: #28a745;
}

.sns-share-copy.copied:hover {
  background: #218838;
}

.article-box__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.article-box__tag {
  padding: 4px 12px;
  background: #f5f5f5;
  font-size: 0.875rem;
  border-radius: 4px;
  font-size: 12px;
}

/* レスポンシブ対応 */
@media print, screen and (max-width: 767px) {
  .sns-share-wrapper {
    width: 100%;
  }
  .sns-share-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    width: 100%;
  }
  .sns-share-btn {
    width: 100%;
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.content.news {
  margin: 100px auto;
}

.content.news .container {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title body" "pagelink body";
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.content__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3em;
  grid-area: title;
  margin-bottom: 0;
}

.content__pagelink {
  grid-area: pagelink;
  margin-top: 12px;
}
.content__pagelink a {
  text-decoration: none;
  color: #383838;
  text-decoration: none;
}

.news__body {
  grid-area: body;
}

.news-year-tabs__arrows {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.news-year-tabs__arrows .news-year-tabs__arrows-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.news-year-tabs__arrows .swiper-button-next,
.news-year-tabs__arrows .swiper-button-prev {
  position: static;
  margin: 0 0.5em 0 !important;
}

@media (max-width: 800px) {
  .content.news .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "title" "pagelink" "body";
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 12px;
  }
  .content__title,
  .content__pagelink,
  .news__body {
    margin: 0 0 8px 0;
  }
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #383838;
}
.news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #383838;
  font-size: 1rem;
  gap: 16px;
}
.news-list__item a {
  position: relative;
  padding: 1em;
  width: 100%;
  display: block;
  text-decoration: none;
}
.news-list__item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #383838;
  border-bottom: 2px solid #383838;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-list__item a:hover .news-list__title,
.news-list__item a:hover .news-list__labels > .news-list__date {
  color: #094;
}
.news-list__item a:hover::after {
  border-right: 2px solid #094;
  border-bottom: 2px solid #094;
  right: 1em;
}
.news-list__item .news-list__date {
  font-weight: bold;
}
.news-list__item .news-list__date::after {
  content: "お知らせ";
  display: inline-block;
  background: #094;
  color: #fff;
  width: 160px;
  text-align: center;
  padding: 2px 20px;
  letter-spacing: 0.075em;
  margin-left: 20px;
  border-radius: 20px;
  font-size: 0.85rem;
}
@media print, screen and (max-width: 600px) {
  .news-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
}
.news-list .news-list__item--sticky .news-list__date::after {
  content: "重要なお知らせ";
  display: inline-block;
  background: none;
  background: #b92e34;
  color: #fff;
}
.news-list__date {
  min-width: 120px;
  color: #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  position: relative;
}
.news-list__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  min-width: 220px;
}
.news-list__labels-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #094;
  color: #fff;
  padding: 2px 8px;
  font-size: 0.85rem;
  font-weight: bold;
  min-width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.news-list__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 8px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
  min-width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.news-list__label--new {
  background: #b7e4c7;
  color: #094;
}
.news-list__label--hidden {
  opacity: 0;
}
.news-list__meta {
  margin-bottom: 1em;
}
.news-list__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #383838;
  font-size: 1em;
}
.news-list__title a {
  color: #383838;
  text-decoration: none;
}
.news-list__title a:hover {
  color: #094;
}

.post-type-archive .news-list__date::after {
  display: none;
}

.single-news .post__date {
  text-align: right;
}

.article-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-box:hover .article-box__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.article-box:hover a {
  text-decoration: none !important;
}
.article-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-box__img-container {
  position: relative;
  overflow: hidden;
}

.article-box__icon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px;
  display: inline-block;
  background: #094;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}

.article-box__img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.article-box__title {
  word-break: auto-phrase;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.article-box__text-inner {
  background: #fff;
  position: relative;
  width: 90%;
  top: -1em;
  padding: 1.5em 1.5em 1.5em 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.article-box__text-inner.article-box__text-inner--overlay {
  width: 90%;
  padding: 1.5em;
  background: #fff;
  position: relative;
  top: -1em;
}

.article-box__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 0.85em;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.article-box__meta .article-box__icon {
  color: #094;
  background: #e1eee4;
  padding: 0 1em;
}

.article-box__meta-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.article-box__meta-table::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: #094;
  position: absolute;
  bottom: 0;
  left: 0;
}

.article-box__category {
  font-size: 14px;
  color: #094;
  font-weight: bold;
}
.article-box__category.article-box__category--badge {
  padding: 4px 12px;
  background: #094;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 4px;
}

.article-box__date {
  position: relative;
  padding-left: 1em;
  color: #666;
  font-size: 14px;
}
.article-box__date::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ccc;
  top: 50%;
  left: 0;
}

.article-box__read-more {
  position: relative;
  display: block;
  margin-top: 1em;
  color: #094;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  padding-right: 2em;
}
.article-box__read-more::after {
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-color: #094;
  mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.article-box__desc .post-summary {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-box__body {
  max-width: 1090px;
  margin: 40px auto;
}

@media print, screen and (min-width: 768px) {
  .article-box__body {
    margin: clamp(3rem, 5vw, 3.75rem) auto;
  }
}
@media print, screen and (min-width: 1000px) {
  .article-box__body {
    margin: 50px auto;
  }
}
.pickup__featured .article-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pickup-swiper .article-box {
  border-radius: 10px;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.pickup-swiper .article-box:hover .article-box__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.pickup-swiper .article-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.pickup-swiper .article-box__img-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}
.pickup-swiper .article-box__img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.pickup-swiper .article-box__title {
  line-height: 1.5;
  padding: 0;
}
.pickup-swiper .article-box__text-inner {
  top: 0;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
.pickup-swiper .article-box__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#post-case-study .article-box__text-inner .print-logo,
.post-case-study .article-box__text-inner .print-logo {
  margin-bottom: 20px;
}
#post-case-study .article-box__text-inner .print-logo img,
.post-case-study .article-box__text-inner .print-logo img {
  max-width: 200px;
  height: auto;
}
#post-case-study .article-box__meta,
.post-case-study .article-box__meta {
  margin-bottom: 20px;
}
#post-case-study .article-box__meta-table,
.post-case-study .article-box__meta-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
#post-case-study .article-box__category,
.post-case-study .article-box__category {
  padding: 4px 12px;
  background: #094;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 4px;
}
#post-case-study .article-box__date,
.post-case-study .article-box__date {
  font-size: 0.875rem;
  color: #666;
}

.works-list .article-box {
  background: white;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.works-list .article-box:hover .article-box__img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.works-list .article-box .article-box__img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.works-list .article-box .article-box__meta {
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 600px) {
  .article-box__img {
    max-height: 150px;
  }
  .article-box__title {
    font-size: 14px;
  }
}
.archive.paged .article-box__text-inner,
.page.pickup .article-box__text-inner {
  position: relative;
  background: #fff;
  top: -1em;
  width: 90%;
}

.l-top-content {
  margin: 60px auto;
}
.l-top-content__title {
  font-size: clamp(24px, 4vw, 28px);
  letter-spacing: -0.025em;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.l-top-content__title.l-top-content__title--en {
  font-size: 16px;
  font-weight: 700;
  color: #2e9b51;
  margin: 0 0 10px;
}
.l-top-content__link {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (max-width: 767px) {
  .l-top-content__title {
    font-size: clamp(24px, 4vw, 28px);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .l-top-content {
    margin: clamp(2rem, 4vw, 2.5rem) auto;
  }
  .l-top-content__title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  }
  .l-top-content__title.l-top-content__title--en {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  }
  .l-top-content__link {
    margin-top: clamp(1.5rem, 3vw, 1.875rem);
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .l-top-content {
    padding: 100px 0;
  }
  .l-top-content__title {
    font-size: 24px;
  }
  .l-top-content__title.l-top-content__title--en {
    font-size: 14px;
  }
  .l-top-content__link {
    margin-top: 50px;
  }
}
@media print, screen and (min-width: 1440px) {
  .l-top-content {
    margin: 100px auto;
  }
  .l-top-content__title {
    font-size: 34px;
  }
  .l-top-content__title.l-top-content__title--en {
    font-size: 16px;
  }
  .l-top-content__link {
    margin-top: 50px;
  }
}

.top-technology, .top-about {
  background: #fff;
}
.top-technology .container, .top-about .container {
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .top-technology .container, .top-about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "content image" "link link";
    -webkit-column-gap: clamp(1.5rem, 2.5vw, 1.875rem);
       -moz-column-gap: clamp(1.5rem, 2.5vw, 1.875rem);
            column-gap: clamp(1.5rem, 2.5vw, 1.875rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .top-technology .container, .top-about .container {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media print, screen and (min-width: 1440px) {
  .top-technology .container, .top-about .container {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

.l-top-content__text {
  color: #333;
  margin-bottom: 20px;
  font-size: 12px;
}
.l-top-content__text span {
  display: block;
}
.l-top-content__text:last-of-type {
  margin-bottom: 0;
}

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .l-top-content__text {
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .l-top-content__text {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 1440px) {
  .l-top-content__text {
    font-size: 1rem;
  }
}
.top-about {
  padding: 60px 0;
  background: #f5f5f5;
}
.top-about .container {
  display: block;
  position: relative;
}
.top-about__content {
  width: 100%;
}
.top-about__image {
  position: static;
  width: 100%;
  right: 0;
  margin-top: 20px;
}
.top-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about__title {
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .top-about {
    padding: 100px 0;
  }
  .top-about .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-about__content {
    width: 50%;
  }
  .top-about__image {
    position: absolute;
    z-index: 1;
    width: 70%;
    right: -25.625%;
    margin-top: 0;
  }
}
@media print, screen and (min-width: 1000px) and (max-width: 1400px) {
  .top-about__image {
    width: 55%;
    right: -8%;
  }
}
@media print, screen and (min-width: 1401px) {
  .top-about__image {
    width: 70%;
    right: -25.625%;
  }
}

.top-technology {
  position: relative;
}
.top-technology__content {
  grid-area: content;
}
.top-technology__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  margin-top: clamp(20px, 4vw, 30px);
}
.top-technology__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media print, screen and (max-width: 767px) {
  .top-technology .container {
    display: block;
  }
  .top-technology__content {
    width: 100%;
  }
  .top-technology__image {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 40%;
    height: auto;
  }
}
.top-technology .cpr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.top-technology .cpr-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.top-technology .cpr-list__term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: bold;
}
.top-technology .cpr-list__term-en {
  font-size: 1rem;
}
.top-technology .cpr-list__term-ja {
  font-size: 1rem;
}
.top-technology .cpr-list__description {
  margin-left: 0;
}
.top-technology .cpr-list__description::before {
  content: "→";
  margin-right: 8px;
}
@media print, screen and (min-width: 768px) {
  .top-technology .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-technology__content {
    grid-area: content;
  }
  .top-technology__image {
    grid-area: image;
    height: 100%;
    margin-top: 0;
  }
  .top-technology .cpr-list {
    margin: clamp(1.5rem, 3vw, 1.875rem) 0;
    gap: clamp(0.75rem, 1.2vw, 0.9375rem);
  }
  .top-technology .cpr-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(0.5rem, 1vw, 0.625rem);
  }
  .top-technology .cpr-list__description {
    margin-left: clamp(0.5rem, 1vw, 0.625rem);
  }
  .top-technology .cpr-list__term-en,
  .top-technology .cpr-list__term-ja {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .top-technology .top-technology__content {
    width: 50%;
  }
  .top-technology .top-technology__image {
    width: 50%;
  }
  .top-technology .top-technology__image img {
    width: 50%;
  }
}
@media print, screen and (min-width: 1000px) {
  .top-technology .cpr-list {
    margin: 40px 0;
    gap: 10px;
  }
  .top-technology .cpr-list__term-en,
  .top-technology .cpr-list__term-ja {
    font-size: 1.2rem;
  }
}
.top-technology .cpr-list__item--cleanliness .cpr-list__term-en,
.top-technology .cpr-list__item--cleanliness .cpr-list__term-ja {
  color: #3498db;
}
.top-technology .cpr-list__item--protection .cpr-list__term-en,
.top-technology .cpr-list__item--protection .cpr-list__term-ja {
  color: #27ae60;
}
.top-technology .cpr-list__item--recovery .cpr-list__term-en,
.top-technology .cpr-list__item--recovery .cpr-list__term-ja {
  color: #f39c12;
}
.top-technology .technology-list {
  list-style-type: none;
}
.top-technology .technology-list .technology-list__item {
  overflow: hidden;
  border-radius: 50%;
  padding: 1em;
  width: clamp(150px, 30vw, 220px);
  height: clamp(150px, 30vw, 220px);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.top-technology .technology-list .technology-list__item .technology-list__item__merit {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: bold;
  color: #383838;
}
.top-technology .technology-list .technology-list__item .technology-list__item__merit__en {
  display: block;
  line-height: 1;
  color: #383838;
}
.top-technology .technology-list .technology-list__item .technology-list__item__merit__ja {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1;
  font-weight: bold;
  color: #383838;
}
@media print, screen and (min-width: 768px) {
  .top-technology .technology-list .technology-list__item {
    width: clamp(180px, 20vw, 220px);
    height: clamp(180px, 20vw, 220px);
  }
}
@media print, screen and (min-width: 1000px) {
  .top-technology .technology-list .technology-list__item {
    width: 220px;
    height: 220px;
  }
}
.top-technology .technology-list .cleanliness {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 6px solid #3498db;
}
.top-technology .technology-list .cleanliness .technology-list__item__merit__en, .top-technology .technology-list .cleanliness .technology-list__item__merit__ja {
  color: #3498db;
}
.top-technology .technology-list .protection {
  position: absolute;
  bottom: 0;
  left: 0;
  border: 6px solid #27ae60;
}
.top-technology .technology-list .protection .technology-list__item__merit__en, .top-technology .technology-list .protection .technology-list__item__merit__ja {
  color: #27ae60;
}
.top-technology .technology-list .recovery {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 6px solid #f39c12;
}
.top-technology .technology-list .recovery .technology-list__item__merit__en, .top-technology .technology-list .recovery .technology-list__item__merit__ja {
  color: #f39c12;
}

.top-products {
  position: relative;
  text-align: center;
  padding: clamp(30px, 6vw, 60px) 0;
}
.top-products__inner {
  position: relative;
  z-index: 3;
  max-width: clamp(320px, 90vw, 1200px);
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
}
.top-products .l-top-content__link, .top-products .top-products__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-products__deco-imgs {
  position: relative;
  z-index: 0;
}
.top-products__content-box {
  text-align: center;
  margin: 0 auto;
  padding: 0 clamp(0px, 2vw, 10px);
}
.top-products .container {
  position: relative;
  z-index: 1;
}
.top-products__background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 0;
  pointer-events: none;
}
.top-products__bg-image {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 2s ease-out, -webkit-transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s ease-out, -webkit-transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s ease-out, transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s ease-out, transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.top-products__bg-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.75) saturate(0.9);
          filter: brightness(0.75) saturate(0.9);
}
@media print, screen and (max-width: 767px) {
  .top-products__bg-image {
    -webkit-transition: opacity 1.5s ease-out, -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 1.5s ease-out, -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 1.5s ease-out, transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 1.5s ease-out, transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
.top-products__bg-image--left {
  -webkit-transform: translateX(-100%) scale(0.3);
          transform: translateX(-100%) scale(0.3);
}
.top-products__bg-image--left.is-visible {
  opacity: 0.35;
  -webkit-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
}
@media print, screen and (max-width: 767px) {
  .top-products__bg-image--left {
    -webkit-transform: translateX(-50%) scale(0.2);
            transform: translateX(-50%) scale(0.2);
  }
  .top-products__bg-image--left.is-visible {
    opacity: 0.3;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
.top-products__bg-image--right {
  -webkit-transform: translateX(100%) scale(0.3);
          transform: translateX(100%) scale(0.3);
}
.top-products__bg-image--right.is-visible {
  opacity: 0.35;
  -webkit-transform: translateX(0) scale(1);
          transform: translateX(0) scale(1);
}
@media print, screen and (max-width: 767px) {
  .top-products__bg-image--right {
    -webkit-transform: translateX(50%) scale(0.2);
            transform: translateX(50%) scale(0.2);
  }
  .top-products__bg-image--right.is-visible {
    opacity: 0.3;
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
}
@media print, screen and (max-width: 999px) {
  .top-products__background-animation {
    display: none;
  }
}

.l-top-content__link {
  margin: 30px auto;
}

@media print, screen and (max-width: 1000px) {
  .l-top-content__link.sp-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 30px 0 30px auto;
  }
}
@media print, screen and (min-width: 768px) {
  .l-top-content__link {
    margin: clamp(1.5rem, 3vw, 1.875rem) 0;
  }
}
.linear-slider-wrapper {
  margin-top: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 1;
  border-radius: 10px;
  height: clamp(120px, 20vw, 180px);
}

.linear-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  height: clamp(120px, 20vw, 180px);
  -webkit-animation: linear-slide 30s linear infinite;
          animation: linear-slide 30s linear infinite;
}
.linear-slider .swiper-slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(150px, 25vw, 200px);
  height: 100%;
  margin-right: clamp(10px, 2vw, 15px);
  position: relative;
  overflow: hidden;
}
.linear-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.linear-slider .swiper-slide:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@-webkit-keyframes linear-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes linear-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 768px) {
  .linear-slider-wrapper {
    height: clamp(12rem, 20vw, 12.5rem);
  }
  .linear-slider {
    height: clamp(12rem, 20vw, 12.5rem);
    -webkit-animation-duration: 40s;
            animation-duration: 40s;
  }
  .linear-slider .swiper-slide {
    width: clamp(15rem, 25vw, 15.625rem);
    margin-right: clamp(1rem, 2vw, 1.25rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .linear-slider-wrapper {
    height: 200px;
  }
  .linear-slider {
    height: 300px;
    -webkit-animation-duration: 80s;
            animation-duration: 80s;
  }
  .linear-slider .swiper-slide {
    width: 400px;
    margin-right: 15px;
  }
}
@media print, screen and (min-width: 1000px) and (max-width: 1400px) {
  .linear-slider-wrapper {
    height: 200px;
  }
  .linear-slider {
    height: 200px;
    -webkit-animation-duration: 60s;
            animation-duration: 60s;
  }
  .linear-slider .swiper-slide {
    width: 250px;
    margin-right: 12px;
  }
}
@media print, screen and (min-width: 1401px) {
  .linear-slider-wrapper {
    height: 300px;
  }
  .linear-slider {
    height: 300px;
    -webkit-animation-duration: 80s;
            animation-duration: 80s;
  }
  .linear-slider .swiper-slide {
    width: 400px;
    margin-right: 15px;
  }
}
.l-top-content__text .maker {
  font-size: larger;
  font-weight: bold;
  margin-bottom: 1rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 2vw, 15px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: clamp(30px, 6vw, 60px) auto;
  padding: 0;
}
.media-grid__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 2vw, 15px);
}
.media-grid__play {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  background: url("./../images/playbtn.png") no-repeat center/contain;
  pointer-events: none;
}
.media-grid__side {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 15px;
  min-width: 0;
}
.media-grid__item {
  width: 100%;
}
.media-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.media-grid__main,
.media-grid__item {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.media-grid__main:hover img,
.media-grid__item:hover img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

@media print, screen and (min-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 1.2vw, 0.9375rem);
    margin: 0 auto clamp(4rem, 6.5vw, 5rem);
    padding: 0;
  }
  .media-grid__main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .media-grid {
    margin: 60px auto;
  }
  .media-grid__main {
    gap: 20px;
  }
}
.top-news__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}

/* 左側 */
.top-news__left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media print, screen and (max-width: 767px) {
  .top-news__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    margin-bottom: 2em;
  }
  .top-news__left .l-top-content__title--en {
    margin: 0;
  }
  .top-news__left .top-news__ja {
    margin: 0;
  }
  .top-news__left .l-top-content__link {
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .top-news__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .top-news__left {
    width: clamp(12rem, 20vw, 12.5rem);
  }
  .top-news__ja {
    font-size: clamp(1.75rem, 3vw, 2rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .top-news__left {
    width: 220px;
  }
  .top-news__ja {
    font-size: 34px;
  }
}
.top-news__en {
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 700;
  color: #2E9B51;
  margin: 0 0 clamp(8px, 1.5vw, 10px);
}

.top-news__ja {
  font-size: clamp(24px, 4vw, 28px);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 clamp(15px, 3vw, 20px);
  color: #000;
}

.top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
}

.top-news__arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: inline-block;
}

/* 右側 */
.top-news__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* 赤帯 */
.top-news__alert {
  border: 1px solid #d4514c;
  border-radius: clamp(8px, 1.5vw, 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(8px, 1.5vw, 10px);
  padding: clamp(12px, 2vw, 15px);
}

@media print, screen and (min-width: 768px) {
  .top-news__alert {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1rem, 2vw, 1.25rem);
    padding: 0;
  }
}
.top-news__alert-label {
  color: #D4514C;
  padding: 0;
  border-radius: 28px;
  font-weight: 700;
  font-size: 12px;
}

@media print, screen and (min-width: 768px) {
  .top-news__alert-label {
    padding: clamp(0.5rem, 1vw, 0.625rem) clamp(2rem, 3.5vw, 2.1875rem);
    font-size: inherit;
  }
}
@media print, screen and (min-width: 1000px) {
  .top-news__alert-label {
    padding: 16px clamp(2rem, 3.5vw, 2.1875rem);
  }
}
.top-news__alert-text {
  font-size: clamp(12px, 2vw, 14px);
}
.top-news__alert-text a {
  color: #333;
  text-decoration: none;
}

/* リスト */
.top-news__item {
  border-bottom: 1px solid #cfcfcf;
  list-style: none !important;
}

.top-news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 5px;
  text-decoration: none;
  color: #333;
}

@media print, screen and (min-width: 768px) {
  .top-news__item a {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
/* 左部分 */
.top-news__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 8px;
}

@media print, screen and (min-width: 768px) {
  .top-news__item-left {
    width: auto;
    margin-bottom: 0;
  }
}
.top-news__date {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 700;
}

.top-news__label {
  background: #e8e8e8;
  padding: clamp(4px, 1vw, 6px) clamp(16px, 3vw, 24px);
  border-radius: 30px;
  font-size: clamp(11px, 1.8vw, 12px);
  font-weight: 600;
}

/* タイトル */
.top-news__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0;
  font-size: clamp(12px, 2vw, 14px);
  width: 100%;
  margin-bottom: 8px;
}

@media print, screen and (min-width: 768px) {
  .top-news__title {
    padding-left: clamp(1rem, 2vw, 1.25rem);
    width: auto;
    margin-bottom: 0;
  }
}
/* 右矢印（括弧なし） */
.top-news__item-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  margin-right: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media print, screen and (min-width: 768px) {
  .top-news__item-arrow {
    margin-right: clamp(0.5rem, 1vw, 0.625rem);
  }
}
.top-news__list {
  padding-left: 0 !important;
}

:root {
  --slide-width: 280px;
}

@media print, screen and (min-width: 768px) {
  :root {
    --slide-width: clamp(18rem, 25vw, 20rem);
  }
}
@media print, screen and (min-width: 1000px) {
  :root {
    --slide-width: 300px;
  }
}
.pickup__container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0;
}

.pickup__body {
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .pickup__container {
    margin: clamp(1.5rem, 3vw, 1.875rem) 0;
    padding: 0;
  }
}
@media print, screen and (min-width: 1000px) {
  .pickup__container {
    margin: 50px auto;
  }
  .pickup__body {
    width: calc(100% + (100vw - 1200px) / 2);
  }
}
.pickup-swiper {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  overflow: visible;
}
.pickup-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pickup__featured {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--slide-width);
          flex: 0 0 var(--slide-width);
  width: var(--slide-width);
}

.pickup__featured--sticky {
  position: relative;
}
.pickup__featured--sticky::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url("./../images/news/pin-icon.svg") no-repeat center/contain;
}

.pickup__article--sticky {
  position: relative;
}
.pickup__article--sticky::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url("./../images/news/pin-icon.svg") no-repeat center/contain;
  z-index: 1;
}

.pickup__article {
  width: 100%;
  height: 100%;
  list-style: none;
}
.pickup__article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.swiper-button-prev,
.swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #094;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #094;
  color: #fff;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1em;
  color: #094;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pickup-swiper__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin: 16px auto 0;
  max-width: 1200px;
}

@media print, screen and (min-width: 768px) {
  .pickup-swiper__controls {
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
    margin: clamp(1.25rem, 2.5vw, 1.5rem) auto 0;
  }
}
.pickup-swiper__controls .swiper-button-prev,
.pickup-swiper__controls .swiper-button-next {
  position: static;
  margin: 0;
  -webkit-transform: none;
          transform: none;
}
.pickup-swiper__controls .swiper-pagination {
  position: static;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.pickup-swiper__controls .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pickup-swiper__controls .swiper-pagination-bullet-active {
  background: #094;
}

@media print, screen and (min-width: 768px) {
  .top-products {
    padding: clamp(40px, 6vw, 60px) 0;
  }
  .top-products__inner {
    padding: 0 clamp(20px, 3vw, 30px);
  }
  .top-products__deco-imgs--left {
    left: calc((100% - clamp(600px, 80vw, 1200px)) / 2 - clamp(250px, 30vw, 350px));
  }
  .top-products__deco-imgs--right {
    right: calc((100% - clamp(600px, 80vw, 1200px)) / 2 - clamp(250px, 30vw, 350px));
  }
  .top-products .top-products__deco-img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
@media print, screen and (min-width: 1000px) {
  .top-products {
    padding: 60px 0;
  }
  .top-products__inner {
    padding: 0 30px;
  }
  .top-products__deco-imgs--left {
    left: 6%;
  }
  .top-products__deco-imgs--right {
    right: 6%;
  }
  .top-products .top-products__image {
    margin-top: 20px;
  }
}
@media print, screen and (max-width: 1000px) {
  .pc-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 1001px) {
  .sp-only {
    display: none !important;
  }
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10000000000000000000000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.page-loader__inner {
  text-align: center;
}
.page-loader__inner img {
  max-width: 200px;
  height: auto;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}

.page-wrapper {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in;
  transition: opacity 0.8s ease-in;
}
.page-wrapper.loaded {
  opacity: 1;
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.8;
  }
}
@media print, screen and (max-width: 767px) {
  .page-loader__inner img {
    max-width: 150px;
  }
}
.sns {
  z-index: 2;
  top: 50%;
  left: 0;
  position: fixed;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 1em;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}
.sns__link {
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sns__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: end;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}
.sns__link:hover {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.sns .sns-name {
  width: calc(100% - 45px);
  font-size: 1rem;
  font-weight: bold;
  font-weight: bold;
  margin-right: 10px;
  text-align: center;
}
.sns .sns-circle {
  width: 45px;
  height: 45px;
}
.sns .sns-circle img {
  width: 100%;
  height: auto;
}
.sns .sns-Xcom {
  background: #000000;
}
.sns .sns-Instagram {
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 207, 0, 0.7)), color-stop(45%, rgba(246, 37, 2, 0.7)), color-stop(75%, rgba(182, 47, 82, 0.7)), to(rgba(113, 58, 166, 0.7)));
  background: linear-gradient(to right, rgba(247, 207, 0, 0.7), rgba(246, 37, 2, 0.7) 45%, rgba(182, 47, 82, 0.7) 75%, rgba(113, 58, 166, 0.7));
}
.sns .sns-Facebook {
  background: #1877F2;
}
.sns .sns-Youtube {
  background: #e42b26;
}

.search-search {
  margin: 40px auto 20px auto;
  padding: 0 16px;
}
.search-search__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: bold;
}
.search-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.search-search__form input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 18px;
}
.search-search__form button {
  padding: 8px 20px;
  border: 1px solid #00796b;
  background: #00796b;
  color: #fff;
  border-radius: 0 4px 4px 0;
  font-size: 18px;
  cursor: pointer;
}
.search-search__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.search-search__filters button {
  background: #f5f5f5;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  width: calc(20% - 10px);
}
.search-search__filters button.is-active, .search-search__filters button:hover {
  background: #00796b;
  color: #fff;
}

.search-list {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 16px;
}
.search-list h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: bold;
}

.search-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px 18px;
  margin-bottom: 30px;
}

.search-card {
  background: #fff;
  width: calc(33.333% - 12px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.search-card__img {
  width: 100%;
}
.search-card__img img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
.search-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 6px;
}
.search-card__label {
  color: #009688;
  font-weight: bold;
}
.search-card__date {
  color: #888;
}
.search-card__new {
  background: #ff9800;
  color: #fff;
  font-size: 11px;
  border-radius: 8px;
  padding: 2px 8px;
  margin-left: 6px;
}
.search-card__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #383838;
}
.search-card__desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  min-height: 36px;
}

@media print, screen and (max-width: 900px) {
  .search-card {
    width: calc(50% - 9px);
  }
}
@media print, screen and (max-width: 600px) {
  .search-cards {
    gap: 18px 0;
  }
  .search-card {
    width: 100%;
  }
}
.linear-slide {
  overflow: hidden;
  width: 100%;
  margin: 100px auto 200px;
}

.l-slide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: linear-scroll 20s linear infinite;
          animation: linear-scroll 20s linear infinite;
}

.l-slide__list__image img {
  display: block;
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes linear-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.333%);
            transform: translateX(-33.333%);
  }
}

@keyframes linear-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.333%);
            transform: translateX(-33.333%);
  }
}
.d1_garage {
  background: #fff;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.d1_garage::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(50% - 50vw);
  width: 40vw;
  height: 60%;
  background: #E7E7E7;
}
.d1_garage__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}
.d1_garage__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
}
.d1_garage__image img {
  width: 100%;
  height: auto;
}
.d1_garage__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.d1_garage__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
}
.d1_garage__header .d1_garage__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}
.d1_garage__header .d1_garage__title span {
  color: #ff0000;
}
.d1_garage__header .d1_garage__map-link {
  margin-left: 2em;
  color: #094;
  text-decoration: none;
  font-size: 0.9rem;
}
.d1_garage__header .d1_garage__map-link:hover {
  text-decoration: underline;
}
.d1_garage__info {
  margin-bottom: 20px;
}
.d1_garage__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 15px 0;
  padding: 0;
}
.d1_garage__info-list:last-child {
  margin-bottom: 0;
}
.d1_garage__info-list dt {
  width: 5em;
  margin-bottom: 0;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.d1_garage__info-list dd {
  margin-left: 2em;
  font-size: 1rem;
  margin-bottom: 0;
}
.d1_garage__contact {
  margin-top: 40px;
}
.d1_garage__contact-section {
  margin-bottom: 25px;
}
.d1_garage__contact-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
}
.d1_garage__contact-info {
  font-size: 1rem;
  color: #555;
  margin: 0 0 20px 0;
}
.d1_garage__contact-items {
  margin-bottom: 15px;
}
.d1_garage__contact-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 1em 3em;
  border: 1px solid #E7E7E7;
  min-width: 250px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}
.d1_garage__contact-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
  width: 10px;
  height: 10px;
  background-color: #094;
  mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.d1_garage__contact-button:hover {
  border-color: #094;
  color: #094;
  text-decoration: none !important;
}
.d1_garage__contact-button:hover::after {
  -webkit-animation: slide-out-in 0.6s ease-in-out;
          animation: slide-out-in 0.6s ease-in-out;
}
.d1_garage__contact-note {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

@media print, screen and (max-width: 767px) {
  .d1_garage {
    padding: 40px 0;
  }
  .d1_garage__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .d1_garage__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .d1_garage__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .d1_garage__header .d1_garage__title {
    font-size: 2rem;
  }
  .d1_garage__contact-button {
    display: block;
    text-align: center;
    width: 100%;
  }
}
.fixed_d1_garage {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  bottom: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 2em;
  border-radius: 10px 0 0 10px;
  color: #fff;
}
.fixed_d1_garage__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.fixed_d1_garage__content a {
  display: inline-block;
  padding: 1em;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.fixed_d1_garage__content--line a {
  background: #094;
}

.m__image, .m__image__slider, .mainvisual-swiper {
  height: 100%;
  overflow: hidden;
}

.mainvisual {
  position: relative;
  height: 600px;
  max-height: 600px;
  overflow: hidden;
}
.mainvisual .m__catch {
  z-index: 3 !important;
  position: absolute !important;
  top: 50% !important;
  left: 25% !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 240px;
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  will-change: opacity;
}
.mainvisual .m__catch--en {
  font-size: 1.6rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
}
.mainvisual .m__catch--main {
  font-size: 3.6rem;
  height: 12.96rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
}
.mainvisual .m__catch--main__highlight {
  color: #009b63;
}
.mainvisual .m__catch--jp {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
}
.swiper-slide-active .mainvisual .m__catch {
  opacity: 1;
}
.swiper-slide:not(.swiper-slide-active) .mainvisual .m__catch {
  opacity: 0 !important;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mainvisual .m__media__banner,
.mainvisual .m-media__banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  max-width: 400px;
  z-index: 2;
}
.mainvisual .m__media__banner img,
.mainvisual .m-media__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual .m__media__banner.is-show,
.mainvisual .m-media__banner.is-show {
  z-index: 3;
  opacity: 1;
  /* transformはJavaScriptで制御するため、CSSでは設定しない */
}



@keyframes slidein-media-banner {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes hide-media-banner {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    display: none;
  }
}
@keyframes hide-media-banner {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    display: none;
  }
}
.mainvisual-swiper {
  width: 100%;
}
.mainvisual-swiper .swiper-slide {
  opacity: 0;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  will-change: transform;
  width: 100%;
  height: 100%;
}
.mainvisual-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index: 2;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 2s, 5s;
          transition-duration: 2s, 5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
}
.mainvisual-swiper .swiper-slide img {
  opacity: 0;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  will-change: transform;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.mainvisual-swiper .swiper-slide.swiper-slide-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 2s, 5s;
          transition-duration: 2s, 5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
}
.mainvisual-swiper .swiper-button-next,
.mainvisual-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mainvisual-swiper .swiper-button-next:hover,
.mainvisual-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mainvisual-swiper .swiper-button-next::after,
.mainvisual-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.mainvisual-swiper .swiper-pagination {
  bottom: 20px;
}
.mainvisual-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mainvisual-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.scroll {
  z-index: 2;
  position: absolute;
  right: 50%;
  bottom: 5%;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .mainvisual .m__media__banner,
  .mainvisual .m-media__banner {
    width: 50%;
  }
}
@media print, screen and (max-width: 1000px) {
  .mainvisual {
    height: auto;
  }
  .mainvisual .m__catch {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .mainvisual .m__catch--en {
    font-size: 1.6rem;
  }
  .mainvisual .m__catch--main {
    font-size: 3.6rem;
    height: 12.96rem;
  }
  .mainvisual .m__catch--jp {
    font-size: 1.6rem;
  }
  .mainvisual-swiper .swiper-button-next,
  .mainvisual-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .mainvisual-swiper .swiper-button-next::after,
  .mainvisual-swiper .swiper-button-prev::after {
    font-size: 18px;
  }
  .mainvisual-swiper .swiper-pagination {
    bottom: 15px;
  }
  .mainvisual-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .mainvisual .m__catch--en {
    font-size: 16px;
  }
  .mainvisual .m__catch--main {
    font-size: 45px;
    height: 3em;
  }
  .mainvisual .m__catch--jp {
    font-size: 18px;
  }
  .mainvisual-swiper .swiper-button-next::after,
  .mainvisual-swiper .swiper-button-prev::after {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1440px) {
  .mainvisual .m__catch--en {
    font-size: 1.6rem;
  }
  .mainvisual .m__catch--main {
    font-size: 3.6rem;
    height: 3em;
  }
  .mainvisual .m__catch--jp {
    font-size: 1.6rem;
  }
  .mainvisual-swiper .swiper-button-next::after,
  .mainvisual-swiper .swiper-button-prev::after {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .mainvisual-swiper .swiper-button-next,
  .mainvisual-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .mainvisual-swiper .swiper-button-next::after,
  .mainvisual-swiper .swiper-button-prev::after {
    font-size: 14px;
  }
  .mainvisual-swiper .swiper-pagination {
    bottom: 10px;
  }
  .mainvisual-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 480px) {
  .mainvisual-swiper .swiper-button-next,
  .mainvisual-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  .mainvisual-swiper .swiper-button-next::after,
  .mainvisual-swiper .swiper-button-prev::after {
    font-size: 14px;
  }
  .mainvisual-swiper .swiper-pagination {
    bottom: 10px;
  }
  .mainvisual-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
@media print {
  .mainvisual {
    color: #000 !important;
    background: #fff !important;
  }
  .mainvisual .m__catch {
    color: #000 !important;
    background: #fff !important;
    position: static !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.product-post-template {
  padding-bottom: 2em;
  border-bottom: 1px solid #333;
}

.product-buttons-container {
  margin: 50px auto;
}
.product-buttons-container .product-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
@media print, screen and (max-width: 767px) {
  .product-buttons-container .product-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
.product-buttons-container .product-buttons a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  background: #fff;
  text-align: center;
  color: #094;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #094;
  border-radius: 3px;
}
.product-buttons-container .product-buttons a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #094;
  border-right: 3px solid #094;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 2px);
  right: 2em;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-buttons-container .product-buttons a:hover::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 1.5em;
}
@media print, screen and (max-width: 767px) {
  .product-buttons-container .product-buttons a {
    font-size: 12px;
  }
}
.product-buttons-container .product-buttons a:hover,
.product-buttons-container .product-buttons a.active {
  background: #094;
  color: #fff;
  border: 1px solid #094;
}

.product-info-precautions button {
  padding: 0;
  background: none;
  font-weight: bold;
}

.product-info-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media print, screen and (max-width: 767px) {
  .product-info-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.product-info-left,
.product-info-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-table-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}
.product-table-container table.product-table {
  border: 1px solid #ddd;
}
.product-table-container table.product-table.compact {
  font-size: 0.9rem;
}
.product-table-container table.product-table.compact td,
.product-table-container table.product-table.compact th {
  padding: 8px 12px;
}
.product-table-container table td,
.product-table-container table th {
  font-size: 0.85em;
  padding: 1em;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}
.product-table-container table th {
  width: 150px;
  background: #f8f9fa;
  font-weight: bold;
  color: #333;
}
.product-table-container table table {
  margin: 10px 0;
  border: 1px solid #ccc;
}
.product-table-container table table td,
.product-table-container table table th {
  padding: 8px 10px;
  font-size: 0.9rem;
}
.product-table-container ul,
.product-table-container ol {
  margin: 10px 0;
  padding-left: 20px;
}
.product-table-container ul li,
.product-table-container ol li {
  margin-bottom: 5px;
}
.product-table-container p {
  margin-bottom: 10px;
}
.product-table-container strong {
  font-weight: bold;
  color: #333;
}
.product-table-container em {
  font-style: italic;
  color: #666;
}
.product-table-container a {
  color: #0073aa;
  text-decoration: none;
}
.product-table-container a:hover {
  text-decoration: underline;
}

@media print, screen and (max-width: 767px) {
  .product-info-left h2,
  .product-info-right h2 {
    font-size: 1.3rem;
  }
  .product-table-container table {
    font-size: 0.9rem;
  }
  .product-table-container table td,
  .product-table-container table th {
    padding: 8px 10px;
  }
  .product-table-container table th {
    width: 100px;
  }
}
.works-search,.works-categories-container {
  margin: 40px 0;
}
.works-search__categories {
  margin-bottom: 20px;
}
.works-search__categories span {
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works-search__categories span:first-child {
  cursor: default;
}
.works-search__categories .search-keyword {
  cursor: pointer;
}
.works-search__categories .search-keyword:hover {
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.works-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.works-search__form input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}
.works-search__form button {
  padding: 12px 24px;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.works-search__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.works-search__filters button {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works-list {
  margin: 40px 0;
}
.works-list h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
.works-list .works-card {
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.works-list .works-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.works-list .works-card:hover .works-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works-list .works-card__img {
  height: 200px;
  overflow: hidden;
}
.works-list .works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-list .works-card__meta {
  padding: 15px 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.works-list .works-card__meta .works-card__label {
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}
.works-list .works-card__meta .works-card__date {
  color: #666;
  font-size: 14px;
}
.works-list .works-card__meta .works-card__new {
  background: #ff4757;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}
.works-list .works-card__title {
  padding: 0 20px 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.works-list .works-card__desc {
  padding: 0 20px 20px;
}
.works-list .works-card__desc .post-summary {
  color: #666;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.works-list .works-card.sticky-post {
  border: 2px solid #ffd700;
  position: relative;
}
.works-list .works-card.sticky-post::before {
  content: "注目";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffd700;
  color: #333;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}
.works-list .works-card.search-highlight {
  border: 2px solid #0073aa !important;
  -webkit-box-shadow: 0 4px 16px rgba(0, 115, 170, 0.2) !important;
          box-shadow: 0 4px 16px rgba(0, 115, 170, 0.2) !important;
  -webkit-animation: searchPulse 2s ease-in-out;
          animation: searchPulse 2s ease-in-out;
}

.posts-display-info {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  text-align: right;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.works-more {
  text-align: center;
  margin: 40px 0;
}
.works-more button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px 0;
  width: 100%;
  color: #094;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #094;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works-more button .arrow_u::before {
  border-bottom: solid 2px #094;
  border-right: solid 2px #094;
}
.works-more button:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: linear-gradient(135deg, #094 0%, #094 100%);
}
.works-more button:hover .arrow_u::before {
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}
.works-more button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.page-numbers {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  text-align: center;
  margin: 40px 0;
}
.works-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  background: transparent;
}
.works-pagination .page-numbers li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  position: relative;
}
.works-pagination .page-numbers li a,
.works-pagination .page-numbers li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
}
.works-pagination .page-numbers li a:hover {
  color: #094;
}
.works-pagination .page-numbers li .current {
  color: #fff;
  background: #094;
  font-weight: 500;
}
.works-pagination .page-numbers li .prev,
.works-pagination .page-numbers li .next {
  width: 40px;
  height: 40px;
  padding: 0;
  color: transparent;
  font-size: 0;
  position: relative;
}
.works-pagination .page-numbers li .prev::after,
.works-pagination .page-numbers li .next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #094;
  mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.works-pagination .page-numbers li .prev::after {
  mask-image: url(../images/common/arrow-l.svg);
  -webkit-mask-image: url(../images/common/arrow-l.svg);
}

.search-more {
  text-align: center;
}
.search-more .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.search-more .page-numbers:hover, .search-more .page-numbers.current {
  background: #00796b;
  color: #fff;
  border-color: #00796b;
}

.pagination-wrapper .pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
}
.pagination-wrapper .pagination .page-numbers {
  display: inline-block;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination-wrapper .pagination .page-numbers:hover, .pagination-wrapper .pagination .page-numbers.current {
  background: #007cba;
  color: #fff;
  border-color: #007cba;
}

.pagination-jump {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 20px;
  font-size: 14px;
}
.pagination-jump label {
  font-weight: bold;
  color: #333;
}
.pagination-jump input[type=number] {
  padding: 4px 6px;
  border: 2px solid #ddd;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.pagination-jump span {
  color: #666;
}
.pagination-jump .page-jump-button {
  padding: 8px 20px;
  background: #094;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

@-webkit-keyframes searchPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes searchPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media print, screen and (max-width: 767px) {
  .works-search,.works-categories-container {
    margin: 30px 0;
  }
  .works-search__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works-search__form button {
    width: 100%;
  }
  .works-search__filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .works-list {
    margin: 30px 0;
  }
  .works-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .works-list .works-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .works-list .works-card__img {
    height: 150px;
  }
  .works-list .works-card__title {
    font-size: 16px;
  }
  .pagination-jump {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 13px;
  }
  .pagination-jump input[type=number] {
    width: 70px;
    padding: 6px 10px;
    font-size: 14px;
  }
  .pagination-jump .page-jump-button {
    padding: 6px 16px;
    font-size: 13px;
  }
  .works-pagination .page-numbers li a,
  .works-pagination .page-numbers li span {
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 13px;
  }
  .works-pagination .page-numbers li .prev,
  .works-pagination .page-numbers li .next {
    width: 36px;
    height: 36px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .works-list .works-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .works-search__categories span {
    padding: 6px 12px;
    font-size: 12px;
    margin: 0 4px 6px 0;
  }
  .works-search__form input[type=text] {
    padding: 10px 12px;
    font-size: 14px;
  }
  .works-search__form button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .works-search__filters a,
  .works-search__filters button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .works-list .works-cards {
    gap: 15px;
  }
  .works-list .works-card__img {
    height: 120px;
  }
  .works-list .works-card__meta {
    padding: 12px 15px 8px;
  }
  .works-list .works-card__meta .works-card__label,
  .works-list .works-card__meta .works-card__new {
    font-size: 11px;
    padding: 3px 6px;
  }
  .works-list .works-card__meta .works-card__date {
    font-size: 12px;
  }
  .works-list .works-card__title {
    padding: 0 15px 8px;
    font-size: 15px;
  }
  .works-list .works-card__desc {
    padding: 0 15px 15px;
  }
  .works-list .works-card__desc .post-summary {
    font-size: 13px;
  }
  .pagination-jump {
    font-size: 12px;
    gap: 8px;
  }
  .pagination-jump input[type=number] {
    width: 60px;
    padding: 6px 8px;
    font-size: 13px;
  }
  .pagination-jump .page-jump-button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .works-pagination .page-numbers li a,
  .works-pagination .page-numbers li span {
    padding: 8px 10px;
    min-width: 35px;
    font-size: 12px;
  }
}
.youtube-section {
  position: relative;
}
.youtube-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #094;
}
.youtube-section .container {
  position: relative;
  z-index: 1;
}
.youtube-section__header {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.youtube-section__title {
  font-size: 28px;
  font-weight: bold;
  color: #383838;
  margin: 0 0 10px 0;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .youtube-section__title {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .youtube-section__title {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 1440px) {
  .youtube-section__title {
    font-size: 34px;
  }
}
.youtube-section__description {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #666;
  margin: 20px auto 0;
  line-height: 1.8;
  max-width: 800px;
}
@media print, screen and (max-width: 767px) {
  .youtube-section__description {
    font-size: 0.875rem;
    margin: 15px auto 0;
    padding: 0 10px;
  }
}
.youtube-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 1024px) {
  .youtube-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .youtube-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.youtube-section__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.youtube-section__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.youtube-section__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.youtube-section__thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
}
.youtube-section__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.youtube-section__item:hover .youtube-section__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.youtube-section__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.youtube-section__play-button svg {
  width: 100%;
  height: 100%;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.youtube-section__item:hover .youtube-section__play-button {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.youtube-section__video-title {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
  color: #333;
  margin: 0;
  padding: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: auto;
}
.youtube-section__footer {
  text-align: center;
}
.youtube-section__button {
  display: inline-block;
  padding: 12px 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.youtube-section__button:hover {
  background: #094;
  border-color: #094;
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .youtube-section {
    padding: 40px 0;
  }
  .youtube-section__header {
    margin-bottom: 40px;
    padding: 0 10px;
  }
  .youtube-section__header::before, .youtube-section__header::after {
    width: 50px;
  }
  .youtube-section__header::before {
    left: calc(50% - 100px);
  }
  .youtube-section__header::after {
    right: calc(50% - 100px);
  }
  .youtube-section__grid {
    margin-bottom: 40px;
  }
  .youtube-section__video-title {
    padding: 12px;
    font-size: 0.875rem;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}

.about .bg-white {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.d1garagepoint-swiper {
  width: calc(100% + (100vw - 1090px) / 2);
  overflow: hidden;
  margin: 40px auto;
}
.d1garagepoint-swiper .d1garage_img img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .d1garagepoint-swiper {
    width: 100%;
    margin: clamp(30px, 4vw, 40px) auto;
  }
}
@media print, screen and (max-width: 767px) {
  .d1garagepoint-swiper {
    width: 100%;
    margin: 30px auto;
  }
  .d1garagepoint-swiper .d1garage_img img {
    aspect-ratio: 16/9;
  }
}

.about .business_introduction {
  position: relative;
}
.about .business_introduction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.about .business_introduction .business_introduction__container {
  position: relative;
}
.about .business_introduction .container {
  position: relative;
  z-index: 1;
}
.about #content-01 .wp-block-image {
  display: block !important;
  margin: 2em 0;
}
.about #content-01 .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about .business_introduction .col-12 {
  display: block;
}
.about .business_introduction__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__grid {
    gap: clamp(80px, 10vw, 120px);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__grid {
    gap: 30px;
  }
}
.about .business_introduction__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content {
    gap: clamp(0px, 1vw, 10px);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 0;
  }
}
.about .business_introduction__content:not(.business_introduction__content--reverse) {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content:not(.business_introduction__content--reverse) {
    -webkit-transform: translateX(clamp(-60px, -6vw, -40px));
            transform: translateX(clamp(-60px, -6vw, -40px));
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content:not(.business_introduction__content--reverse) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.about .business_introduction__content:not(.business_introduction__content--reverse).is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.about .business_introduction__content--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content--reverse {
    -webkit-transform: translateX(clamp(40px, 6vw, 60px));
            transform: translateX(clamp(40px, 6vw, 60px));
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content--reverse {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.about .business_introduction__content--reverse.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content--reverse a {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.about .business_introduction__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #383838;
  text-decoration: none;
  gap: 0;
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about .business_introduction__content .business_introduction__content__img {
  position: relative;
  -webkit-box-flex: 1.8;
      -ms-flex: 1.8;
          flex: 1.8;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content .business_introduction__content__img {
    -webkit-box-flex: 1.6;
        -ms-flex: 1.6;
            flex: 1.6;
    aspect-ratio: 2.5/1;
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content .business_introduction__content__img {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.about .business_introduction__content .business_introduction__content__img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 16/9;
}
.about .business_introduction__content .business_introduction__content__img::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #094;
}
.about .business_introduction__content:nth-child(odd) .business_introduction__content__img::before {
  bottom: -2em;
  left: -2em;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content:nth-child(odd) .business_introduction__content__img::before {
    bottom: clamp(-1.5em, -2vw, -1em);
    left: clamp(-1.5em, -2vw, -1em);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content:nth-child(odd) .business_introduction__content__img::before {
    display: none;
  }
}
.about .business_introduction__content:nth-child(even) .business_introduction__content__img::before {
  bottom: -2em;
  right: -2em;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content:nth-child(even) .business_introduction__content__img::before {
    bottom: clamp(-1.5em, -2vw, -1em);
    right: clamp(-1.5em, -2vw, -1em);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content:nth-child(even) .business_introduction__content__img::before {
    display: none;
  }
}
.about .business_introduction__content .business_introduction__content__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 60px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content .business_introduction__content__inner {
    padding: clamp(40px, 5vw, 50px) clamp(40px, 5vw, 50px);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content .business_introduction__content__inner {
    padding: 30px 0;
  }
}
.about .business_introduction__content.is-visible .business_introduction__content__img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.about .business_introduction__content.is-visible .business_introduction__content__inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, -webkit-transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.about .business_introduction__content .business_introduction__content__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #094;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content .business_introduction__content__number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: clamp(18px, 2vw, 20px);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content .business_introduction__content__number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
  }
}
.about .business_introduction__content .business_introduction__content__title {
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content .business_introduction__content__title {
    margin-bottom: clamp(20px, 2.5vw, 24px);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content .business_introduction__content__title {
    margin-bottom: 18px;
  }
}
.about .business_introduction__content .business_introduction__content__title__ja {
  font-size: var(--font-size-h3);
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 0 8px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content .business_introduction__content__title__ja {
    font-size: clamp(1.2rem, 1.8vw, var(--font-size-h3));
    margin: 0 0 clamp(6px, 0.8vw, 8px) 0;
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content .business_introduction__content__title__ja {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    line-height: 1.3;
    margin: 0 0 6px 0;
  }
}
.about .business_introduction__content .business_introduction__content__title__en {
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content .business_introduction__content__title__en {
    font-size: clamp(0.8rem, 1vw, 0.875rem);
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content .business_introduction__content__title__en {
    font-size: 0.75rem;
  }
}
.about .business_introduction__content .business_introduction__content__text {
  line-height: 2;
  color: #666;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .about .business_introduction__content .business_introduction__content__text {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
  }
}
@media print, screen and (max-width: 767px) {
  .about .business_introduction__content .business_introduction__content__text {
    line-height: 1.7;
  }
}
.about .business_introduction__content:hover .business_introduction__content__title__ja {
  color: #094;
}
.about .business_introduction__content:hover .business_introduction__content__text {
  color: #333;
}
.about .president {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  margin: 1em 0 0;
}
.about .president p {
  margin: 0;
}
.about .president .president_name {
  font-weight: 900;
  margin-left: 1em;
  font-size: var(--font-size-h3);
  text-indent: 0 !important;
}

.company-table table,
table.company-table table {
  width: 100%;
  border: none;
  border-radius: 0;
}
.company-table table th,
.company-table table td,
table.company-table table th,
table.company-table table td {
  padding: 1em 2em;
  border: 1px solid #ccc;
}
.company-table table tr,
table.company-table table tr {
  border: none;
  border-bottom: 1px solid #ccc;
}
.company-table table th,
table.company-table table th {
  width: 25%;
  vertical-align: middle;
  background: #f8f9fa;
  font-weight: bold;
  color: #333;
}
.company-table .company-table__item__content:nth-of-type(1),
table.company-table .company-table__item__content:nth-of-type(1) {
  margin-bottom: 2em;
}
.company-table .company-table__item__content__title,
table.company-table .company-table__item__content__title {
  font-size: var(--font-size-h4);
  font-weight: bold;
}
.company-table .company-table__item__content__item__address,
.company-table .company-table__item__content__item__tel,
table.company-table .company-table__item__content__item__address,
table.company-table .company-table__item__content__item__tel {
  display: block;
}
.company-table iframe,
table.company-table iframe {
  display: block;
  margin: 0.5em 0;
}
.company-table .map,
table.company-table .map {
  display: inline-block;
  color: #094;
  text-decoration: none;
  position: relative;
  padding-right: 10px;
}
.company-table .map::after,
table.company-table .map::after {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #094;
  border-right: solid 1px #094;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  margin: 0 0 0 0.25em;
  position: absolute;
  top: 50%;
  right: 0;
}
.company-table .map:hover,
table.company-table .map:hover {
  text-decoration: underline;
}
.company-table .map::after,
table.company-table .map::after {
  content: "";
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .company-table table th,
  .company-table table td,
  table.company-table table th,
  table.company-table table td {
    padding: clamp(0.75em, 1.2vw, 1em) clamp(1em, 1.5vw, 1.5em);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }
  .company-table .company-table__item__content__title,
  table.company-table .company-table__item__content__title {
    font-size: clamp(1.1rem, 1.5vw, var(--font-size-h4));
  }
}
@media print, screen and (max-width: 767px) {
  .company-table table tr,
  table.company-table table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company-table table th,
  .company-table table td,
  table.company-table table th,
  table.company-table table td {
    width: 100%;
    padding: 0.8em 1em;
  }
  .company-table .company-table__item__content:nth-of-type(1),
  table.company-table .company-table__item__content:nth-of-type(1) {
    margin-bottom: 1.5em;
  }
  .company-table .company-table__item__content__title,
  table.company-table .company-table__item__content__title {
    font-size: 1.1rem;
  }
  .company-table iframe,
  table.company-table iframe {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
}

#History {
  position: relative;
}

.history-bg {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.company-timeline {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 1200px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media print, screen and (min-width: 768px) {
  .company-timeline {
    margin-top: 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .company-timeline {
    margin-top: 160px;
    padding: 0 20px;
  }
}
.company-timeline:before {
  background-color: #000;
  content: "";
  display: block;
  left: calc(50% - 0.5px);
  position: absolute;
  top: 260px;
  width: 1px;
}

@media print, screen and (min-width: 768px) {
  .company-timeline:before {
    height: calc(100% - 280px);
  }
}
@media print, screen and (max-width: 767px) {
  .company-timeline:before {
    height: calc(100% + 181px);
  }
}
.timeline-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 3;
}

.timeline-label {
  display: block;
  width: 100%;
  padding: 1em;
  text-align: center;
}

.timeline-label.history {
  width: 412px;
  background: #e6e7e2;
}

.timeline-label-left {
  width: 50%;
}

.timeline-label-right {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 10px;
  width: 50%;
}
.timeline-label-right .timeline-label {
  background: #fff;
}

@media print, screen and (min-width: 768px) {
  .timeline-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 49px;
    top: 58px;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 98px;
    margin-bottom: 64px;
    row-gap: 6px;
    top: 67px;
  }
}
.timeline-header__year {
  background-color: #000;
  color: #fff;
  font-family: ouma-latin-variable, sans-serif;
  font-variation-settings: "wght" 600;
  left: 50%;
  letter-spacing: -0.04em;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

@media print, screen and (min-width: 768px) {
  .timeline-header__year {
    font-size: 49px;
    padding: 16px 38px 8px 40px;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-header__year {
    font-size: 62px;
    margin-right: 100px;
    padding: 24px 44px 12px 48px;
  }
}
.timeline-label-right,
.timeline-label-left {
  display: inline-block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  position: relative;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.timeline-border {
  border: 1px solid #000;
  border-radius: 20px;
}

@media print, screen and (min-width: 768px) {
  .timeline-label-right.evolution,
  .timeline-label-right.new-product {
    margin-bottom: 60px;
  }
  .timeline-label-right.evolution::before,
  .timeline-label-right.new-product::before {
    content: "";
    display: block;
    width: 0.1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    background: #000;
  }
  .timeline-label-right.evolution {
    width: 206px;
    margin-left: calc(50% + 190px);
    position: relative;
  }
  .timeline-label-right.evolution::before {
    height: 3400%;
  }
  .timeline-label-right.new-product {
    width: 206px;
    margin-left: calc(50% + 190px + 206px);
  }
  .timeline-label-right.new-product::before {
    height: 800%;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-label-right,
  .timeline-label-left {
    font-size: 20px;
    line-height: 1.9;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.timeline-event-left-content-item {
  background-color: #e6e7e2;
}

.timeline-event-right-content-item,
.timeline-event-left-content-item {
  padding: 1em 2em;
}

.timeline-event-right-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 20px;
  background-color: #fff;
}

.timeline-event-right-content-item.e-v-line {
  position: relative;
}
.timeline-event-right-content-item.e-v-line::after {
  content: "";
  position: absolute;
  width: 0.1px;
  height: 1800%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  background: #000;
}

.timeline-event-right-content-item.n-v-line {
  position: relative;
}
.timeline-event-right-content-item.n-v-line::after {
  content: "";
  position: absolute;
  width: 0.1px;
  height: 300%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  background: #000;
}

.timeline-event-right.long::before {
  width: 400px;
  right: 0;
  left: auto;
  -webkit-transform: translate(calc(-100% + 200px));
          transform: translate(calc(-100% + 200px));
}

.timeline-event-right-content.column-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.timeline-event-right-content.column-02 .timeline-event-right-content-item {
  width: 50%;
}

.timeline-event-right-content.column-02.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.timeline-year {
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  font-family: ouma-latin-variable, sans-serif;
  font-variation-settings: "wght" 600;
  letter-spacing: -0.04em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  z-index: 2;
}

@media print, screen and (min-width: 768px) {
  .timeline-year {
    font-size: 23px;
    margin-top: 36px;
    padding-bottom: 5px;
    padding-top: 10px;
    width: 112px;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-year {
    font-size: 36px;
    margin-top: 58px;
    padding-bottom: 10px;
    padding-top: 18px;
    width: 182px;
  }
}
.timeline-event,
.timeline-event-right,
.timeline-event-left {
  opacity: 0;
  position: relative;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.3s cubic-bezier(0.34, 1.86, 0.64, 1);
  transition: 0.3s cubic-bezier(0.34, 1.86, 0.64, 1);
  z-index: 1;
}

@media print, screen and (min-width: 768px) {
  .timeline-event,
  .timeline-event-right,
  .timeline-event-left {
    border-radius: 17px;
    width: 412px;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-event,
  .timeline-event-right,
  .timeline-event-left {
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 48px;
    width: calc(100% - 40px);
    max-width: 400px;
  }
}
@media print, screen and (min-width: 768px) {
  .timeline-event-right:before,
  .timeline-event-left:before,
  .timeline-event:before {
    background-image: linear-gradient(90deg, #000 5px, transparent 0);
    background-repeat: repeat-x;
    background-size: 10px 1px;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    width: 190px;
  }
}
.timeline-event-right.is-show,
.timeline-event-left.is-show,
.timeline-event.is-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media print, screen and (min-width: 768px) {
  .timeline-event-right + .timeline-event,
  .timeline-event-right + .timeline-event-right,
  .timeline-event-right + .timeline-event-left,
  .timeline-event-left + .timeline-event,
  .timeline-event-left + .timeline-event-right,
  .timeline-event-left + .timeline-event-left,
  .timeline-location--negative + .timeline-event,
  .timeline-location--negative + .timeline-event-right,
  .timeline-location--negative + .timeline-event-left,
  .timeline-location--normal + .timeline-event,
  .timeline-location--normal + .timeline-event-right,
  .timeline-location--normal + .timeline-event-left {
    margin-top: 14px;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-event-right + .timeline-event,
  .timeline-event-right + .timeline-event-right,
  .timeline-event-right + .timeline-event-left,
  .timeline-event-left + .timeline-event,
  .timeline-event-left + .timeline-event-right,
  .timeline-event-left + .timeline-event-left,
  .timeline-location--negative + .timeline-event,
  .timeline-location--negative + .timeline-event-right,
  .timeline-location--negative + .timeline-event-left,
  .timeline-location--normal + .timeline-event,
  .timeline-location--normal + .timeline-event-right,
  .timeline-location--normal + .timeline-event-left {
    margin-top: 28px;
  }
}
@media print, screen and (min-width: 768px) {
  .timeline-location--negative02 + .timeline-event,
  .timeline-location--negative02 + .timeline-event-right,
  .timeline-location--negative02 + .timeline-event-left {
    margin-top: 35px;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-location--negative02 + .timeline-event,
  .timeline-location--negative02 + .timeline-event-right,
  .timeline-location--negative02 + .timeline-event-left {
    margin-top: 29px;
  }
}
@media print, screen and (min-width: 768px) {
  .timeline-year + .timeline-event,
  .timeline-year + .timeline-event-right,
  .timeline-year + .timeline-event-left {
    margin-top: 35px;
  }
}
@media print, screen and (max-width: 767px) {
  .timeline-year + .timeline-event,
  .timeline-year + .timeline-event-right,
  .timeline-year + .timeline-event-left {
    margin-top: 64px;
  }
}
.timeline-event-right-content-item {
  background-color: #fff;
}

@media print, screen and (min-width: 768px) {
  .timeline-event-right {
    margin-left: auto;
    margin-right: 0;
  }
  .timeline-event-right:before {
    left: 0;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}
.timeline-event-left-content-item {
  background-color: #e6e7e2;
}

@media print, screen and (min-width: 768px) {
  .timeline-event-left {
    margin-left: 0;
    margin-right: auto;
  }
  .timeline-event-left:before {
    right: 0;
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
}
.event-title {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 0 !important;
}

.timeline-event__txt {
  letter-spacing: 0.03em;
  font-size: 12px;
}

.event-note {
  font-size: 80%;
  letter-spacing: 0.03em;
  margin: 0 !important;
}

.timeline-location,
.timeline-location--negative,
.timeline-location--negative02,
.timeline-location--normal {
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.03em;
  position: relative;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  z-index: 1;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
  font-size: 17px;
  line-height: 1.42105;
  padding: 5px 23px 7px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-location--normal {
  margin-left: 616px;
  margin-right: auto;
}

.timeline-location--normal:before {
  background-image: linear-gradient(90deg, #000 5px, transparent 0);
  background-repeat: repeat-x;
  background-size: 10px 1px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  width: 190px;
}

.timeline-event-right + .timeline-location--normal {
  margin-top: 14px;
}

.timeline-location--negative {
  margin-left: auto;
  margin-right: -25px;
}

.timeline-event-right + .timeline-location--negative {
  margin-top: -18px;
}

.timeline-location--negative02 {
  margin-left: 616px;
  margin-right: auto;
  position: relative;
}

.timeline-location--negative02:before {
  background-image: linear-gradient(90deg, #000 5px, transparent 0);
  background-repeat: repeat-x;
  background-size: 10px 1px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  width: 150px;
}

.timeline-year + .timeline-location--negative02 {
  margin-top: -36px;
}

.timeline-location__desc {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.timeline-location__desc:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.705' height='23.749' viewBox='0 0 18.705 23.749'%3E%3Cpath fill='%23fff' d='M9.357 11.507a2.04 2.04 0 0 0 1.5-.627 2.06 2.06 0 0 0 .622-1.507 2.04 2.04 0 0 0-.627-1.5 2.06 2.06 0 0 0-1.507-.622 2.04 2.04 0 0 0-1.5.627 2.06 2.06 0 0 0-.622 1.507 2.04 2.04 0 0 0 .627 1.5 2.06 2.06 0 0 0 1.507.622m0 10.473a31.6 31.6 0 0 0 5.875-6.579 11.2 11.2 0 0 0 2.16-5.785 8.2 8.2 0 0 0-2.29-5.97 7.68 7.68 0 0 0-5.745-2.353 7.68 7.68 0 0 0-5.745 2.353 8.2 8.2 0 0 0-2.29 5.97 11.2 11.2 0 0 0 2.16 5.785A31.6 31.6 0 0 0 9.35 21.98Zm0 1.769a40.6 40.6 0 0 1-7-7.663A12 12 0 0 1 .003 9.617a9.34 9.34 0 0 1 2.724-6.9A9.03 9.03 0 0 1 9.35 0a9.03 9.03 0 0 1 6.629 2.717 9.34 9.34 0 0 1 2.724 6.9 12 12 0 0 1-2.354 6.469 40.6 40.6 0 0 1-6.999 7.663ZM9.35 9.378'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 21px;
  width: 16px;
}

.timeline-badge05 {
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
  margin-left: 6px;
  margin-top: -69px;
  width: 209px;
}

.timeline-badge05__seal {
  opacity: 0;
  -webkit-transform: scale(0) rotate(2deg);
          transform: scale(0) rotate(2deg);
  -webkit-transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 209px;
}

.timeline-badge05.is-show .timeline-badge05__seal {
  opacity: 1;
  -webkit-transform: scale(1) rotate(-8deg);
          transform: scale(1) rotate(-8deg);
}

.timeline-badge07 {
  position: relative;
  z-index: 2;
  margin-bottom: -138px;
  margin-left: 6px;
  margin-top: 75px;
  width: 206px;
}

.timeline-badge07__seal {
  opacity: 0;
  -webkit-transform: scale(0) rotate(2deg);
          transform: scale(0) rotate(2deg);
  -webkit-transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 170px;
}

.timeline-badge07.is-show .timeline-badge07__seal {
  opacity: 1;
  -webkit-transform: scale(1) rotate(-8deg);
          transform: scale(1) rotate(-8deg);
}

.timeline-badge07__label {
  opacity: 0;
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  top: -27px;
  -webkit-transform: scale(0) rotate(-4deg);
          transform: scale(0) rotate(-4deg);
  width: 113px;
}

.timeline-badge07.is-show .timeline-badge07__label {
  opacity: 1;
  -webkit-transform: scale(1) rotate(11deg);
          transform: scale(1) rotate(11deg);
}

.timeline-animation-label {
  -webkit-animation: labelAppearAnim 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: labelAppearAnim 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.timeline-animation-seal {
  -webkit-animation: badgeAppearAnim 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: badgeAppearAnim 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.timeline-animation-round {
  -webkit-animation: roundAppearAnim 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: roundAppearAnim 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@-webkit-keyframes badgeAppearAnim {
  0% {
    opacity: 1;
    -webkit-transform: scale(0) rotate(-30deg);
            transform: scale(0) rotate(-30deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-20deg);
            transform: scale(1) rotate(-20deg);
  }
}

@keyframes badgeAppearAnim {
  0% {
    opacity: 1;
    -webkit-transform: scale(0) rotate(-30deg);
            transform: scale(0) rotate(-30deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(-20deg);
            transform: scale(1) rotate(-20deg);
  }
}
@-webkit-keyframes labelAppearAnim {
  0% {
    opacity: 1;
    -webkit-transform: scale(0) rotate(0);
            transform: scale(0) rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(10deg);
            transform: scale(1) rotate(10deg);
  }
}
@keyframes labelAppearAnim {
  0% {
    opacity: 1;
    -webkit-transform: scale(0) rotate(0);
            transform: scale(0) rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(10deg);
            transform: scale(1) rotate(10deg);
  }
}
@-webkit-keyframes roundAppearAnim {
  0% {
    opacity: 1;
    -webkit-transform: scale(0) rotate(0);
            transform: scale(0) rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(1turn);
            transform: scale(1) rotate(1turn);
  }
}
@keyframes roundAppearAnim {
  0% {
    opacity: 1;
    -webkit-transform: scale(0) rotate(0);
            transform: scale(0) rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) rotate(1turn);
            transform: scale(1) rotate(1turn);
  }
}
.price_list {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
}
.price_list .price_list_tr {
  display: table-row;
  width: 100%;
}
.price_list .price_list_tr .price_list_th-head {
  background-color: #f8f9fa;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.price_list .price_list_tr .price_list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price_list .price_list_tr .price_list_title_txt {
  font-weight: bold;
}
.price_list .price_list_tr .price_list_title_txt-rcm {
  display: inline-block;
  margin-left: 0.75em;
  padding: 0.25em 0.75em;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
  font-size: 0.75em;
  font-weight: bold;
  border-radius: 12px;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 2px 4px rgba(238, 90, 82, 0.3);
          box-shadow: 0 2px 4px rgba(238, 90, 82, 0.3);
  vertical-align: middle;
  line-height: 1.2;
}
.price_list .price_list_tr .price_list_more {
  display: inline-block;
  padding: 0.5em 3em;
  background: transparent;
  color: #000;
  text-decoration: none;
  text-align: center;
  border: 1px solid #000;
  border-radius: 2px;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.price_list .price_list_tr .price_list_more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  mask-image: url(../../images/common/arrow-r.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../../images/common/arrow-r.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.price_list .price_list_tr .price_list_more:hover {
  color: #094;
  border-color: #094;
}
.price_list .price_list_tr .price_list_more:hover::after {
  background-color: #094;
  -webkit-animation: slide-out-in 0.6s ease-in-out;
          animation: slide-out-in 0.6s ease-in-out;
}
.price_list .price_list_tr .price_list_th,
.price_list .price_list_tr .price_list_td {
  vertical-align: middle;
  padding: 1em;
}
.price_list .price_list_tr .price_list_th a,
.price_list .price_list_tr .price_list_td a {
  color: #333;
  text-decoration: none;
}
.price_list .price_list_tr .price-more-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0.5em 0;
  background: transparent;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  border: none;
  font-weight: normal;
  font-size: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
}
.price_list .price_list_tr .price-more-btn::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #000;
  mask-image: url(../images/new_window.svg);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/new_window.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.price_list .price_list_tr .price-more-btn:hover {
  color: #094;
  font-weight: bold;
  text-decoration: none;
}
.price_list .price_list_tr .price-more-btn:hover::after {
  background-color: #094;
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.price_list .price_list_tr .price_list_th {
  width: 15%;
  text-align: center;
  display: table-cell;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  font-weight: bold;
}
.price_list .price_list_tr .price_list_td {
  display: table-cell;
  border: 1px solid #ddd;
}
.price_list .price_list_tr .price_list_td a {
  text-align: center;
}
.price_list .price_list_tr .price_list_td.aligncenter {
  text-align: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .price_list {
    margin-bottom: clamp(1.5em, 2.5vw, 2em);
  }
  .price_list .price_list_tr .price_list_th-head {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    padding: clamp(0.75em, 1.2vw, 1em);
  }
  .price_list .price_list_tr .price_list_th,
  .price_list .price_list_tr .price_list_td {
    padding: clamp(0.75em, 1.2vw, 1em);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }
  .price_list .price_list_tr .price_list_title_txt {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }
  .price_list .price_list_tr .price_list_title_txt-rcm {
    font-size: clamp(0.7em, 0.9vw, 0.75em);
    margin-left: clamp(0.5em, 0.8vw, 0.75em);
    padding: clamp(0.2em, 0.4vw, 0.25em) clamp(0.6em, 0.9vw, 0.75em);
  }
  .price_list .price_list_tr .price_list_more {
    padding: clamp(0.4em, 0.8vw, 0.5em) clamp(2em, 3.5vw, 3em);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }
  .price_list .price_list_tr .price_list_more::after {
    right: clamp(0.75em, 1.2vw, 1em);
    width: clamp(8px, 1.2vw, 10px);
    height: clamp(8px, 1.2vw, 10px);
  }
  .price_list .price_list_tr .price-more-btn {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    padding: clamp(0.4em, 0.8vw, 0.5em) 0;
  }
  .price_list .price_list_tr .price-more-btn::after {
    width: clamp(12px, 1.5vw, 14px);
    height: clamp(12px, 1.5vw, 14px);
  }
}
@media print, screen and (max-width: 767px) {
  .price_list {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5em;
    font-size: 0.9rem;
  }
  .price_list .price_list_tr {
    width: 100%;
    min-width: 580px;
  }
  .price_list .price_list_tr .price_list_th-head {
    font-size: 0.95rem;
    padding: 0.8em 0.6em;
    letter-spacing: 0.05em;
    font-weight: bold;
  }
  .price_list .price_list_tr .price_list_title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5em;
    padding: 0.8em 0.6em;
  }
  .price_list .price_list_tr .price_list_title_txt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.3em;
  }
  .price_list .price_list_tr .price_list_title_txt-rcm {
    font-size: 0.7em;
    margin-left: 0.5em;
    padding: 0.2em 0.6em;
  }
  .price_list .price_list_tr .price_list_title p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
  }
  .price_list .price_list_tr .price_list_more {
    padding: 0.5em 1.5em;
    font-size: 0.9rem;
    width: 100%;
    margin: 0.5em 0;
  }
  .price_list .price_list_tr .price_list_more::after {
    right: 1em;
    width: 9px;
    height: 9px;
  }
  .price_list .price_list_tr .price_list_th,
  .price_list .price_list_tr .price_list_td {
    padding: 0.8em 0.6em;
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: break-word;
  }
  .price_list .price_list_tr .price_list_th {
    width: 20%;
    font-size: 0.88rem;
    font-weight: bold;
  }
  .price_list .price_list_tr .price_list_td {
    font-size: 0.9rem;
  }
  .price_list .price_list_tr .price_list_td p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0.3em 0;
  }
  .price_list .price_list_tr .price_list_td p:first-child {
    margin-top: 0;
  }
  .price_list .price_list_tr .price_list_td p:last-child {
    margin-bottom: 0;
  }
  .price_list .price_list_tr .price-more-btn {
    font-size: 0.9rem;
    padding: 0.5em 0;
    line-height: 1.5;
  }
  .price_list .price_list_tr .price-more-btn::after {
    width: 12px;
    height: 12px;
  }
}

.sdgs-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.sdgs {
  overflow: hidden;
  position: relative;
}

.sdgs * {
  font-family: Noto Sans JP, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.sdgs .bg {
  background-image: url(../images/sdgs/bg-trim.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1100px;
  left: 50%;
  overflow: hidden;
  position: fixed;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 600px) {
  .sdgs > .inner {
    margin: auto;
    position: relative;
    z-index: 2;
  }
  .sdgs > .inner > .key-visual {
    background-color: #fff;
  }
  .sdgs > .inner > .key-visual .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: auto;
    overflow: hidden;
    padding: 160px 0;
    width: 1100px;
  }
  .sdgs > .inner > .key-visual .inner .logo {
    height: 288px;
    width: 550px;
  }
  .sdgs > .inner > .key-visual .inner .logo img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner > .key-visual .inner .catch {
    width: 486px;
  }
  .sdgs > .inner > .key-visual .inner .catch h1 {
    color: #2689d2;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 30px;
  }
  .sdgs > .inner > .key-visual .inner .catch p {
    color: #555;
    font-size: 16px;
    font-weight: 400;
  }
  .sdgs > .inner .introduction .inner {
    margin: auto;
    padding: 120px 70px;
    width: 1100px;
  }
  .sdgs > .inner .introduction .inner p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.62;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    width: 480px;
  }
  .sdgs > .inner .introduction .inner p strong {
    font-weight: 600;
  }
  .sdgs > .inner .messages {
    background-color: #fafafa;
  }
  .sdgs > .inner .messages .inner {
    margin: auto;
    padding: 80px 70px;
    width: 1100px;
  }
  .sdgs > .inner .messages .inner p {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 84px;
    padding: 0 70px;
  }
  .sdgs > .inner .messages .inner p strong {
    color: #6ebf21;
    font-size: inherit;
    font-weight: 600;
  }
  .sdgs > .inner .messages .inner ul {
    list-style-type: none;
  }
  .sdgs > .inner .messages .inner ul li {
    background-color: #fff;
    background-image: url(../images/sdgs/messages-down.svg);
    background-position: top 50% right 25px;
    background-repeat: no-repeat;
    background-size: 23px auto;
    border: 1px solid #eee;
    margin-bottom: 14px;
    padding: 16px 23px;
  }
  .sdgs > .inner .messages .inner ul li a {
    background-repeat: no-repeat;
    background-size: 54px auto;
    border-bottom: 2px solid #6ebf21;
    color: #333;
    display: block;
    font-size: 24px;
    font-weight: 600;
    padding: 15px 0 12px 72px;
  }
  .sdgs > .inner .messages .inner ul li:first-child a {
    background-image: url(../images/sdgs/messages-1.svg);
  }
  .sdgs > .inner .messages .inner ul li:nth-child(2) a {
    background-image: url(../images/sdgs/messages-2.svg);
  }
  .sdgs > .inner .messages .inner ul li:nth-child(3) a {
    background-image: url(../images/sdgs/messages-3.svg);
  }
  .sdgs > .inner .messages .inner ul li:nth-child(4) a {
    background-image: url(../images/sdgs/messages-4.svg);
  }
  .sdgs > .inner .messages .inner ul li:nth-child(5) a {
    background-image: url(../images/sdgs/messages-5.svg);
  }
  .sdgs > .inner .society {
    background-color: #edf7e3;
    padding: 48px 0;
  }
  .sdgs > .inner .society .inner {
    background-color: #fff;
    border-radius: 16px;
    margin: auto;
    padding: 48px 70px;
    width: 1100px;
  }
  .sdgs > .inner .society .inner h3 {
    background-color: #ff5d20;
    border-radius: 8px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 62px;
    margin-bottom: 32px;
    text-align: center;
  }
  .sdgs > .inner .society .inner .image {
    background-image: url(../images/sdgs/society-arrow-1.svg);
    background-position: top 50% left 53%;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sdgs > .inner .society .inner .image .left h4 {
    background-image: url(../images/sdgs/society-1.svg);
    background-repeat: no-repeat;
    font-size: 18px;
    font-weight: 600;
    line-height: 72px;
    margin-bottom: 33px;
    padding-left: 89px;
  }
  .sdgs > .inner .society .inner .image .left img {
    height: auto;
    width: 443px;
  }
  .sdgs > .inner .society .inner .image .right h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 72px;
    margin-bottom: 7px;
  }
  .sdgs > .inner .society .inner .image .right img {
    height: auto;
    width: 376px;
  }
  .sdgs > .inner .each-message.message-1 {
    background-color: #fafafa;
  }
  .sdgs > .inner .each-message.message-1 h3 {
    background-image: url(../images/sdgs/messages-1.svg);
  }
  .sdgs > .inner .each-message.message-1 .flags {
    background-color: #fafafa !important;
  }
  .sdgs > .inner .each-message.message-2 {
    background-color: #fff;
  }
  .sdgs > .inner .each-message.message-2 h3 {
    background-image: url(../images/sdgs/messages-2.svg);
  }
  .sdgs > .inner .each-message.message-2 .flags {
    background-color: #fff !important;
  }
  .sdgs > .inner .each-message.message-3 {
    background-color: #fafafa;
  }
  .sdgs > .inner .each-message.message-3 h3 {
    background-image: url(../images/sdgs/messages-3.svg);
  }
  .sdgs > .inner .each-message.message-3 .flags {
    background-color: #fafafa !important;
  }
  .sdgs > .inner .each-message.message-4 {
    background-color: #fff;
  }
  .sdgs > .inner .each-message.message-4 h3 {
    background-image: url(../images/sdgs/messages-4.svg);
  }
  .sdgs > .inner .each-message.message-4 .flags {
    background-color: #fff !important;
  }
  .sdgs > .inner .each-message.message-5 {
    background-color: #fafafa;
  }
  .sdgs > .inner .each-message.message-5 h3 {
    background-image: url(../images/sdgs/messages-5.svg);
  }
  .sdgs > .inner .each-message.message-5 .flags {
    background-color: #fafafa !important;
  }
  .sdgs > .inner .each-message > .inner {
    margin: auto;
    padding: 80px 70px;
    width: 1100px;
  }
  .sdgs > .inner .each-message > .inner h3 {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 54px auto;
    border-bottom: 2px solid #6ebf21;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .sdgs > .inner .each-message > .inner h3 span {
    background-image: url(../images/sdgs/leaf.svg);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 64px auto;
    display: block;
    font-size: 32px;
    font-weight: 600;
    padding: 12px 23px 10px 70px;
  }
  .sdgs > .inner .each-message > .inner > .key-visual {
    margin-bottom: 120px;
    position: relative;
  }
  .sdgs > .inner .each-message > .inner > .key-visual > img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner .each-message > .inner > .key-visual .flags {
    background-color: #fff;
    bottom: -40px;
    padding: 16px 0 0 16px;
    position: absolute;
    right: 0;
    z-index: 2;
  }
  .sdgs > .inner .each-message > .inner > p.introduction {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 85px;
    padding: 0 70px;
  }
  .sdgs > .inner .each-message > .inner > p.introduction.mb0 {
    margin-bottom: 0;
  }
  .sdgs > .inner .each-message > .inner > p.introduction strong {
    color: #6ebf21;
    font-weight: 600;
  }
  .sdgs > .inner .each-message > .inner .subjects {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 16px;
    margin-bottom: 32px;
    padding: 39px 32px 32px;
    width: 464px;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject.white {
    background-color: #fff;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject h4 {
    color: #22640e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject ul {
    list-style-type: none;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject ul li {
    color: #555;
    font-weight: 400;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject ul li:before {
    color: #6ebf21;
    content: "●";
    font-size: 9px;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 12px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sdgs > .inner .each-message .narrow {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 56px 48px;
  }
  .sdgs > .inner .each-message .narrow.white {
    background-color: #fff;
  }
  .sdgs > .inner .each-message .green {
    background-color: #edf7e3;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 16px;
    padding: 36px 32px;
  }
  .sdgs > .inner .each-message .green h4 {
    color: #22640e;
    font-size: 22px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 45px;
    padding-left: 60px;
    position: relative;
    width: 100%;
  }
  .sdgs > .inner .each-message .green h4 span {
    background-color: #22640e;
    border-radius: 38px;
    color: #fff;
    display: block;
    font-size: 22px;
    left: 0;
    line-height: 38px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 38px;
  }
  .sdgs > .inner .each-message .green h5 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .sdgs > .inner .each-message .green p {
    color: #555;
    font-weight: 400;
    line-height: 1.6;
  }
  .sdgs > .inner .each-message .green a {
    background-color: #ff5d20;
    background-image: url(../images/sdgs/message-2-8.svg);
    background-position: top 50% right 15px;
    background-repeat: no-repeat;
    border-bottom: none;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 0 #cc4a1b;
            box-shadow: 0 4px 0 #cc4a1b;
    color: #fff;
    display: block;
    font-weight: 600;
    line-height: 56px;
    margin: 0 auto 16px;
    text-align: center;
    width: 320px;
  }
  .sdgs > .inner .each-message .green a.mb0 {
    margin-bottom: 0;
  }
  .sdgs > .inner .each-message .green .before-after {
    background-image: url(../images/sdgs/message-2-7.svg);
    background-position: top 45% left 50%;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sdgs > .inner .each-message .green .before-after > div {
    font-size: 12px;
    width: 171px;
  }
  .sdgs > .inner .each-message .green .before-after > div img {
    display: block;
    margin-bottom: 5px;
  }
  .sdgs > .inner .each-message .green .products {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .sdgs > .inner .each-message .green .products .product {
    width: 20%;
  }
  .sdgs > .inner .each-message .green .products .product > div {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
    text-align: center;
  }
  .sdgs > .inner .each-message .green .products .product img {
    display: block;
    margin: 0 auto 15px;
  }
  .sdgs > .inner .each-message .green .products .product strong {
    display: block;
    font-weight: 600;
    text-align: center;
  }
  .sdgs > .inner .each-message .green .left, .sdgs > .inner .each-message .green .right {
    width: 384px;
  }
  .sdgs > .inner .each-message .green .left img, .sdgs > .inner .each-message .green .right img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner .each-message .message-1-description {
    margin-bottom: 32px;
  }
  .sdgs > .inner .each-message .message-1-description .header {
    background-color: #22640e;
    background-image: url(../images/sdgs/message-1-7.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 36px auto;
    border-radius: 8px 8px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px 32px;
  }
  .sdgs > .inner .each-message .message-1-description .header > div {
    background-color: #fff;
    color: #22640e;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    padding: 15px 0;
    text-align: center;
    width: 368px;
  }
  .sdgs > .inner .each-message .message-1-description .body {
    background-image: url(../images/sdgs/message-1-8.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 64px auto;
    border: 2px solid #22640e;
    border-radius: 0 0 8px 8px;
    border-top: none;
    padding: 47px 0 35px;
  }
  .sdgs > .inner .each-message .message-1-description .body h6 {
    border-bottom: 2px solid #22640e;
    color: #22640e;
    font-size: 22px;
    font-weight: 600;
    margin: 0 auto 40px;
    padding-bottom: 10px;
    text-align: center;
    width: 300px;
  }
  .sdgs > .inner .each-message .message-1-description .body ul {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style-type: none;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li {
    background-position: top;
    background-repeat: no-repeat;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    padding-top: 95px;
    text-align: center;
    width: 30%;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li:first-child {
    background-image: url(../images/sdgs/message-1-3.svg);
    background-size: 91px auto;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li:nth-child(2) {
    background-image: url(../images/sdgs/message-1-4.svg);
    background-size: 101px auto;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li:nth-child(3) {
    background-image: url(../images/sdgs/message-1-5.svg);
    background-size: 96px auto;
  }
  .sdgs > .inner .each-message .message-2-description {
    background-image: url(../images/sdgs/message-2-3.png);
    background-position: 50%;
    background-repeat: no-repeat;
    height: 290px;
    margin-bottom: 32px;
    position: relative;
    width: 100%;
  }
  .sdgs > .inner .each-message .message-2-description .desc1 {
    font-size: 16px;
    font-weight: 400;
    left: 140px;
    line-height: 1.6;
    position: absolute;
    text-align: center;
    top: 160px;
  }
  .sdgs > .inner .each-message .message-2-description .desc2 {
    font-size: 16px;
    font-weight: 400;
    left: 578px;
    line-height: 1.6;
    position: absolute;
    text-align: center;
    top: 160px;
  }
  .sdgs > .inner .sponsors {
    background-color: #fff;
    padding: 48px 0;
  }
  .sdgs > .inner .sponsors .inner {
    margin: auto;
    padding: 48px 70px;
    width: 1100px;
  }
  .sdgs > .inner .sponsors .inner h3 {
    background-color: #ff5d20;
    border-radius: 8px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 62px;
    margin-bottom: 32px;
    text-align: center;
  }
  .sdgs > .inner .sponsors .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    list-style-type: none;
  }
  .sdgs > .inner .sponsors .inner ul li {
    color: #555;
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
    width: 33.33%;
  }
  .sdgs > .inner .sponsors .inner ul li a {
    border: none;
    text-decoration: none;
  }
  .sdgs > .inner .sponsors .inner ul li a:hover {
    text-decoration: underline;
  }
  .sdgs > .inner .sponsors .inner ul li:before {
    color: #6ebf21;
    content: "●";
    font-size: 9px;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sdgs > .inner .company .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: auto;
    padding: 80px 70px;
    width: 1100px;
  }
  .sdgs > .inner .company .inner .img {
    width: 480px;
  }
  .sdgs > .inner .company .inner .img img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner .company .inner p {
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    width: 448px;
  }
}
@media print, screen and (max-width: 767px) {
  .sdgs > .inner {
    margin: auto;
    position: relative;
    width: 100%;
    z-index: 2;
  }
  .sdgs > .inner > .key-visual {
    background-color: #fff;
  }
  .sdgs > .inner > .key-visual .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow: hidden;
    padding: clamp(60px, 20.367278798vw, 20.367278798vw) clamp(15px, 5.0083472454vw, 5.0083472454vw) clamp(66px, 22.0367278798vw, 22.0367278798vw);
  }
  .sdgs > .inner > .key-visual .inner .logo {
    height: clamp(140px, 46.7445742905vw, 46.7445742905vw);
    margin-bottom: clamp(23px, 7.8464106845vw, 7.8464106845vw);
    width: 100%;
  }
  .sdgs > .inner > .key-visual .inner .logo img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner > .key-visual .inner .catch h1 {
    color: #2689d2;
    font-size: clamp(20px, 6.8948247078vw, 6.8948247078vw);
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 clamp(20px, 6.6777963272vw, 6.6777963272vw);
  }
  .sdgs > .inner > .key-visual .inner .catch p {
    color: #555;
    font-size: clamp(14px, 3.5058430718vw, 3.5058430718vw);
    font-weight: 400;
    line-height: 1.6;
  }
  .sdgs > .inner .introduction .inner {
    margin: auto;
    padding: clamp(49px, 16.3606010017vw, 16.3606010017vw) clamp(15px, 5.1752921536vw, 5.1752921536vw);
  }
  .sdgs > .inner .introduction .inner p {
    color: #fff;
    font-size: clamp(10px, 3.5726210351vw, 3.5726210351vw);
    font-weight: 400;
    line-height: 1.62;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
  .sdgs > .inner .introduction .inner p strong {
    font-size: inherit;
    font-weight: 600;
  }
  .sdgs > .inner .messages {
    background-color: #fafafa;
  }
  .sdgs > .inner .messages .inner {
    margin: auto;
    padding: clamp(40px, 13.3555926544vw, 13.3555926544vw) clamp(15px, 5.0083472454vw, 5.0083472454vw);
  }
  .sdgs > .inner .messages .inner p {
    color: #555;
    font-size: clamp(10px, 3.5726210351vw, 3.5726210351vw);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: clamp(24px, 8.1803005008vw, 8.1803005008vw);
  }
  .sdgs > .inner .messages .inner p strong {
    color: #6ebf21;
    font-size: inherit;
    font-weight: 600;
  }
  .sdgs > .inner .messages .inner ul {
    list-style-type: none;
  }
  .sdgs > .inner .messages .inner ul li {
    background-color: #fff;
    background-image: url(../images/sdgs/messages-down.svg);
    background-position: top 50% right clamp(12px, 4.1736227045vw, 4.1736227045vw);
    background-repeat: no-repeat;
    background-size: clamp(26px, 5.8430717863vw, 5.8430717863vw) auto;
    border: 1px solid #eee;
    margin-bottom: clamp(7px, 2.3372287145vw, 2.3372287145vw);
    padding: clamp(12px, 4.0066777963vw, 4.0066777963vw) clamp(40px, 13.3555926544vw, 13.3555926544vw) clamp(12px, 4.0066777963vw, 4.0066777963vw) clamp(12px, 4.0066777963vw, 4.0066777963vw);
  }
  .sdgs > .inner .messages .inner ul li a {
    background-repeat: no-repeat;
    background-size: clamp(53px, 11.6861435726vw, 11.6861435726vw) auto;
    border: none;
    color: #333;
    display: block;
    font-size: clamp(16px, 3.67278798vw, 4.0066777963vw);
    font-weight: 600;
    padding: 0 0 clamp(6px, 2.0033388982vw, 2.0033388982vw) clamp(41px, 13.6894824708vw, 13.6894824708vw);
    position: relative;
  }
  .sdgs > .inner .messages .inner ul li a:after {
    background-color: #6ebf21;
    bottom: 0;
    content: "";
    height: 3px;
    left: clamp(40px, 13.3555926544vw, 13.3555926544vw);
    position: absolute;
    width: calc(100% - clamp(45px, 15.0250417362vw, 15.0250417362vw));
  }
  .sdgs > .inner .messages .inner ul li:first-child a {
    background-image: url(../images/sdgs/messages-1.svg);
  }
  .sdgs > .inner .messages .inner ul li:nth-child(2) a {
    background-image: url(../images/sdgs/messages-2.svg);
  }
  .sdgs > .inner .messages .inner ul li:nth-child(3) a {
    background-image: url(../images/sdgs/messages-3.svg);
  }
  .sdgs > .inner .messages .inner ul li:nth-child(4) a {
    background-image: url(../images/sdgs/messages-4.svg);
    padding-bottom: 25px;
    padding-top: 15px;
  }
  .sdgs > .inner .messages .inner ul li:nth-child(5) a {
    background-image: url(../images/sdgs/messages-5.svg);
  }
  .sdgs > .inner .society {
    background-color: #edf7e3;
    padding: clamp(30px, 10.183639399vw, 61px) clamp(15px, 5.0083472454vw, 30px);
  }
  .sdgs > .inner .society .inner {
    background-color: #fff;
    border-radius: clamp(12px, 2.6711185309vw, 16px);
    margin: auto;
    padding: clamp(12px, 4.0066777963vw, 24px) clamp(6px, 2.0033388982vw, 12px);
  }
  .sdgs > .inner .society .inner h3 {
    background-color: #ff5d20;
    border-radius: 8px;
    color: #fff;
    font-size: clamp(22px, 5.0083472454vw, 30px);
    font-weight: 600;
    line-height: 2.3;
    margin-bottom: clamp(12px, 4.0066777963vw, 4.0066777963vw);
    padding: clamp(10px, 2.5041736227vw, 2.5041736227vw) 0;
    text-align: center;
  }
  .sdgs > .inner .society .inner .image {
    background-image: url(../images/sdgs/society-arrow-2.svg);
    background-position: top clamp(242px, 80.9682804674vw, 80.9682804674vw) left 50%;
    background-repeat: no-repeat;
    background-size: clamp(72px, 16.0267111853vw, 16.0267111853vw) auto;
  }
  .sdgs > .inner .society .inner .image .left {
    margin-bottom: clamp(73px, 24.5409015025vw, 24.5409015025vw);
    padding: 0 clamp(5px, 1.6694490818vw, 1.6694490818vw);
  }
  .sdgs > .inner .society .inner .image .left h4 {
    background-image: url(../images/sdgs/society-1.svg);
    background-repeat: no-repeat;
    background-size: clamp(60px, 15.5258764608vw, 93px) auto;
    font-size: clamp(13px, 2.1702838063vw, 20px);
    font-weight: 600;
    line-height: 4.65;
    margin: 0 0 clamp(16px, 5.5091819699vw, 33px);
    padding-left: clamp(57px, 19.1986644407vw, 115px);
    padding-top: 0;
  }
  .sdgs > .inner .society .inner .image .left img {
    display: block;
    height: auto;
    width: 100%;
  }
  .sdgs > .inner .society .inner .image .right {
    padding: 0 clamp(5px, 1.6694490818vw, 1.6694490818vw);
  }
  .sdgs > .inner .society .inner .image .right h4 {
    font-size: clamp(16px, 3.3388981636vw, 3.3388981636vw);
    font-weight: 600;
    margin-bottom: clamp(14px, 4.674457429vw, 4.674457429vw);
    text-align: center;
  }
  .sdgs > .inner .society .inner .image .right img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner .each-message.message-1 {
    background-color: #fafafa;
  }
  .sdgs > .inner .each-message.message-1 h3 {
    background-image: url(../images/sdgs/messages-1.svg);
  }
  .sdgs > .inner .each-message.message-1 .flags {
    background-color: #fafafa !important;
    max-width: 436px;
    width: clamp(327px, 72.7879799666vw, 72.7879799666vw);
  }
  .sdgs > .inner .each-message.message-2 {
    background-color: #fff;
  }
  .sdgs > .inner .each-message.message-2 h3 {
    background-image: url(../images/sdgs/messages-2.svg);
  }
  .sdgs > .inner .each-message.message-2 .flags {
    background-color: #fff !important;
    max-width: 346px;
    width: clamp(260px, 57.7629382304vw, 57.7629382304vw);
  }
  .sdgs > .inner .each-message.message-3 {
    background-color: #fafafa;
  }
  .sdgs > .inner .each-message.message-3 h3 {
    background-image: url(../images/sdgs/messages-3.svg);
  }
  .sdgs > .inner .each-message.message-3 .flags {
    background-color: #fafafa !important;
    max-width: 436px;
    width: clamp(327px, 72.7879799666vw, 72.7879799666vw);
  }
  .sdgs > .inner .each-message.message-4 {
    background-color: #fff;
  }
  .sdgs > .inner .each-message.message-4 h3 {
    background-image: url(../images/sdgs/messages-4.svg);
  }
  .sdgs > .inner .each-message.message-4 .flags {
    background-color: #fff !important;
  }
  .sdgs > .inner .each-message.message-5 {
    background-color: #fafafa;
  }
  .sdgs > .inner .each-message.message-5 h3 {
    background-image: url(../images/sdgs/messages-5.svg);
  }
  .sdgs > .inner .each-message.message-5 .flags {
    background-color: #fafafa !important;
    max-width: 348px;
    width: clamp(261px, 58.0968280467vw, 348px);
  }
  .sdgs > .inner .each-message > .inner {
    margin: auto;
    padding: clamp(30px, 10.0166944908vw, 10.0166944908vw) clamp(15px, 5.0083472454vw, 5.0083472454vw) clamp(18px, 6.0100166945vw, 6.0100166945vw);
  }
  .sdgs > .inner .each-message > .inner h3 {
    background-position: top;
    background-repeat: no-repeat;
    background-size: clamp(52px, 11.5191986644vw, 69px) auto;
    border-bottom: 3px solid #6ebf21;
    color: #333;
    margin-bottom: clamp(18px, 6.0100166945vw, 36px);
  }
  .sdgs > .inner .each-message > .inner h3 span {
    background-image: url(../images/sdgs/leaf.svg);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: clamp(28px, 6.3439065109vw, 6.3439065109vw) auto;
    display: block;
    font-size: clamp(20px, 5.0083472454vw, 5.0083472454vw);
    font-weight: 600;
    padding: clamp(35px, 11.6861435726vw, 11.6861435726vw) 0 clamp(5px, 1.6694490818vw, 1.6694490818vw);
  }
  .sdgs > .inner .each-message > .inner > .key-visual {
    margin-bottom: clamp(30px, 10.0166944908vw, 60px);
  }
  .sdgs > .inner .each-message > .inner > .key-visual > img {
    display: block;
    height: auto;
    margin-bottom: clamp(6px, 2.0033388982vw, 2.0033388982vw);
    width: 100%;
  }
  .sdgs > .inner .each-message > .inner > .key-visual .flags {
    background-color: #fff;
  }
  .sdgs > .inner .each-message > .inner > .key-visual .flags img {
    width: 100%;
  }
  .sdgs > .inner .each-message > .inner > p.introduction {
    color: #555;
    font-size: clamp(10px, 3.5726210351vw, 3.5726210351vw);
    font-weight: 400;
    line-height: 2;
    margin-bottom: clamp(34px, 11.3522537563vw, 11.3522537563vw);
    padding: 0;
  }
  .sdgs > .inner .each-message > .inner > p.introduction.mb0 {
    margin-bottom: 0;
  }
  .sdgs > .inner .each-message > .inner > p.introduction strong {
    color: #6ebf21;
    font-size: inherit;
    font-weight: 600;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: clamp(12px, 2.6711185309vw, 16px);
    margin-bottom: clamp(6px, 2.0033388982vw, 12px);
    padding: clamp(22px, 7.5125208681vw, 45px) clamp(18px, 6.0100166945vw, 36px);
  }
  .sdgs > .inner .each-message > .inner .subjects .subject.white {
    background-color: #fff;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject h4 {
    color: #22640e;
    font-size: clamp(18px, 5.0083472454vw, 5.0083472454vw);
    font-weight: 600;
    margin-bottom: clamp(10px, 3.3388981636vw, 3.3388981636vw);
  }
  .sdgs > .inner .each-message > .inner .subjects .subject ul {
    list-style-type: none;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject ul li {
    color: #555;
    font-size: clamp(10px, 3.5058430718vw, 21px);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: clamp(4px, 1.3355592654vw, 8px);
    padding-left: clamp(17px, 5.8430717863vw, 35px);
    position: relative;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject ul li:last-child {
    margin-bottom: 0;
  }
  .sdgs > .inner .each-message > .inner .subjects .subject ul li:before {
    color: #6ebf21;
    content: "●";
    font-size: clamp(9px, 2.0033388982vw, 2.0033388982vw);
    left: 0;
    line-height: 1;
    position: absolute;
    top: clamp(8px, 2.8380634391vw, 2.8380634391vw);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sdgs > .inner .each-message .narrow {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: clamp(12px, 2.6711185309vw, 2.6711185309vw);
    padding: clamp(18px, 6.0100166945vw, 6.0100166945vw);
  }
  .sdgs > .inner .each-message .narrow.white {
    background-color: #fff;
  }
  .sdgs > .inner .each-message .green {
    background-color: #edf7e3;
    border-radius: 8px;
    margin-bottom: clamp(8px, 2.6711185309vw, 16px);
    padding: clamp(18px, 6.0100166945vw, 36px) clamp(12px, 4.0066777963vw, 24px);
  }
  .sdgs > .inner .each-message .green h4 {
    color: #22640e;
    font-size: clamp(18px, 4.5075125209vw, 4.5075125209vw);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: clamp(16px, 5.3422370618vw, 5.3422370618vw);
    padding-left: clamp(37px, 12.5208681135vw, 12.5208681135vw);
    position: relative;
    width: 100%;
  }
  .sdgs > .inner .each-message .green h4 span {
    background-color: #22640e;
    border-radius: clamp(28px, 9.5158597663vw, 9.5158597663vw);
    color: #fff;
    display: block;
    font-size: clamp(16px, 5.5091819699vw, 5.5091819699vw);
    left: 0;
    line-height: clamp(28px, 9.5158597663vw, 9.5158597663vw);
    position: absolute;
    text-align: center;
    top: 0;
    width: clamp(28px, 9.5158597663vw, 9.5158597663vw);
  }
  .sdgs > .inner .each-message .green h5 {
    color: #333;
    font-size: clamp(18px, 4.0066777963vw, 24px);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: clamp(12px, 4.0066777963vw, 24px);
  }
  .sdgs > .inner .each-message .green p {
    color: #555;
    font-size: clamp(10px, 3.5058430718vw, 21px);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: clamp(16px, 5.5091819699vw, 5.5091819699vw);
  }
  .sdgs > .inner .each-message .green a {
    background-color: #ff5d20;
    background-image: url(../images/sdgs/message-2-8.svg);
    background-position: top 50% right clamp(10px, 3.3388981636vw, 3.3388981636vw);
    background-repeat: no-repeat;
    background-size: clamp(22px, 5.0083472454vw, 5.0083472454vw) auto;
    border-bottom: none;
    border-radius: 8px;
    -webkit-box-shadow: 0 clamp(3px, 1.0016694491vw, 1.0016694491vw) 0 #cc4a1b;
            box-shadow: 0 clamp(3px, 1.0016694491vw, 1.0016694491vw) 0 #cc4a1b;
    color: #fff;
    display: block;
    font-size: clamp(14px, 3.5058430718vw, 3.5058430718vw);
    font-weight: 600;
    line-height: clamp(42px, 14.0233722871vw, 14.0233722871vw);
    margin: 0 auto clamp(15px, 5.0083472454vw, 5.0083472454vw);
    padding: clamp(6px, 2.0033388982vw, 2.0033388982vw) 0;
    text-align: center;
    width: 100%;
  }
  .sdgs > .inner .each-message .green .before-after {
    background-image: url(../images/sdgs/message-2-7.svg);
    background-position: top 45% left 50%;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sdgs > .inner .each-message .green .before-after > div {
    color: #333;
    font-size: clamp(10px, 2.0033388982vw, 2.0033388982vw);
    font-weight: 400;
    max-width: 180px;
    width: clamp(135px, 30.0500834725vw, 30.0500834725vw);
  }
  .sdgs > .inner .each-message .green .before-after > div img {
    display: block;
    margin-bottom: 5px;
  }
  .sdgs > .inner .each-message .green .products {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .sdgs > .inner .each-message .green .products .product {
    margin-bottom: clamp(13.5px, 4.5075125209vw, 4.5075125209vw);
    width: 50%;
  }
  .sdgs > .inner .each-message .green .products .product > div {
    color: #555;
    font-size: clamp(12px, 2.3372287145vw, 2.3372287145vw);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: clamp(10px, 3.3388981636vw, 3.3388981636vw);
    text-align: center;
  }
  .sdgs > .inner .each-message .green .products .product img {
    display: block;
    margin: 0 auto 15px;
  }
  .sdgs > .inner .each-message .green .products .product strong {
    display: block;
    font-weight: 600;
    text-align: center;
  }
  .sdgs > .inner .each-message .green .products .product:last-child {
    margin-bottom: 0;
  }
  .sdgs > .inner .each-message .green .left img, .sdgs > .inner .each-message .green .right img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner .each-message .message-1-description {
    margin-bottom: clamp(18px, 6.0100166945vw, 6.0100166945vw);
  }
  .sdgs > .inner .each-message .message-1-description .header {
    background-color: #22640e;
    background-image: url(../images/sdgs/message-1-7.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: clamp(40px, 9.0150250417vw, 9.0150250417vw) auto;
    border-radius: 8px 8px 0 0;
    padding: clamp(10px, 3.3388981636vw, 3.3388981636vw) clamp(12px, 4.0066777963vw, 4.0066777963vw);
  }
  .sdgs > .inner .each-message .message-1-description .header > div {
    background-color: #fff;
    color: #22640e;
    font-size: clamp(16px, 4.5075125209vw, 27px);
    font-weight: 600;
    padding: clamp(15px, 5.0083472454vw, 30px) 0;
    text-align: center;
  }
  .sdgs > .inner .each-message .message-1-description .header > div:first-child {
    margin-bottom: clamp(40px, 13.3555926544vw, 13.3555926544vw);
  }
  .sdgs > .inner .each-message .message-1-description .body {
    background-image: url(../images/sdgs/message-1-8.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: clamp(72px, 16.0267111853vw, 96px) auto;
    border: 2px solid #22640e;
    border-radius: 0 0 8px 8px;
    border-top: none;
    padding: clamp(23px, 7.8464106845vw, 47px) 0 clamp(17px, 5.8430717863vw, 35px);
  }
  .sdgs > .inner .each-message .message-1-description .body h6 {
    border-bottom: 3px solid #22640e;
    color: #22640e;
    font-size: clamp(20px, 4.5075125209vw, 4.5075125209vw);
    font-weight: 600;
    margin: 0 auto clamp(19.5px, 6.510851419vw, 6.510851419vw);
    padding-bottom: clamp(5px, 1.6694490818vw, 1.6694490818vw);
    text-align: center;
    width: 80%;
  }
  .sdgs > .inner .each-message .message-1-description .body ul {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style-type: none;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li {
    background-position: top;
    background-repeat: no-repeat;
    color: #333;
    font-size: clamp(13px, 3.0050083472vw, 18px);
    font-weight: 600;
    padding-top: clamp(71px, 15.8597662771vw, 95px);
    text-align: center;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li:first-child {
    background-image: url(../images/sdgs/message-1-3.svg);
    background-size: clamp(68px, 15.0250417362vw, 90px) auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 50%;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li:nth-child(2) {
    background-image: url(../images/sdgs/message-1-4.svg);
    background-size: clamp(74px, 16.5275459098vw, 99px) auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .sdgs > .inner .each-message .message-1-description .body ul li:nth-child(3) {
    background-image: url(../images/sdgs/message-1-5.svg);
    background-size: clamp(71px, 15.6928213689vw, 94px) auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
  }
  .sdgs > .inner .each-message .message-2-description {
    background-image: url(../images/sdgs/message-2-3-sp.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: clamp(164px, 36.5609348915vw, 219px);
    margin-bottom: clamp(16px, 5.3422370618vw, 32px);
    position: relative;
    width: 100%;
  }
  .sdgs > .inner .each-message .message-2-description .desc1 {
    color: #333;
    font-size: clamp(10px, 2.4207011686vw, 14.5px);
    font-weight: 400;
    left: clamp(18px, 5.1752921536vw, 31px);
    line-height: 1.3;
    position: absolute;
    text-align: center;
    top: clamp(75px, 16.694490818vw, 100px);
  }
  .sdgs > .inner .each-message .message-2-description .desc2 {
    color: #333;
    font-size: clamp(10px, 2.4207011686vw, 14.5px);
    font-weight: 400;
    left: clamp(200px, 55.4257095159vw, 332px);
    line-height: 1.3;
    position: absolute;
    text-align: center;
    top: clamp(86px, 19.1986644407vw, 115px);
  }
  .sdgs > .inner .sponsors {
    background-color: #fff;
    padding: clamp(32px, 10.8514190317vw, 65px) clamp(15px, 5.0083472454vw, 30px);
  }
  .sdgs > .inner .sponsors .inner {
    margin: auto;
    padding: 0;
  }
  .sdgs > .inner .sponsors .inner h3 {
    background-color: #ff5d20;
    border-radius: 8px;
    color: #fff;
    font-size: clamp(22px, 5.3422370618vw, 32px);
    font-weight: 600;
    line-height: 1.9375;
    margin-bottom: clamp(16px, 5.3422370618vw, 32px);
    padding: clamp(10px, 2.5041736227vw, 15px) 0;
    text-align: center;
  }
  .sdgs > .inner .sponsors .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    list-style-type: none;
  }
  .sdgs > .inner .sponsors .inner ul li {
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
    width: 50%;
  }
  .sdgs > .inner .sponsors .inner ul li a {
    border: none;
    color: #555;
    font-size: clamp(14px, 3.5058430718vw, 3.5058430718vw);
    font-weight: 400;
    text-decoration: none;
  }
  .sdgs > .inner .sponsors .inner ul li a:hover {
    text-decoration: underline;
  }
  .sdgs > .inner .sponsors .inner ul li:before {
    color: #6ebf21;
    content: "●";
    font-size: clamp(7px, 1.5025041736vw, 9px);
    left: 0;
    line-height: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sdgs > .inner .company .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: clamp(30px, 10.0166944908vw, 60px) clamp(15px, 5.0083472454vw, 30px);
  }
  .sdgs > .inner .company .inner .img {
    width: 100%;
  }
  .sdgs > .inner .company .inner .img img {
    height: auto;
    width: 100%;
  }
  .sdgs > .inner .company .inner p {
    color: #fff;
    font-size: clamp(10px, 3.5058430718vw, 21px);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: clamp(22px, 7.5125208681vw, 45px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
}
.research-row.hidden {
  display: none;
}

.research-row.fade-in {
  -webkit-animation: fadeInUp 0.3s ease-out forwards;
          animation: fadeInUp 0.3s ease-out forwards;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.load-more-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 320px;
  margin: 30px auto 0;
  padding: 14px 0;
  width: 100%;
  color: #094;
  border: 1px solid #094;
  border-radius: 25px;
  background: transparent;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.load-more-button:hover:not(:disabled) {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: linear-gradient(135deg, #094 0%, #094 100%);
}
.load-more-button:active:not(:disabled) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.load-more-button:disabled {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #666;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.load-more-button.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #094;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.load-more-button.loading:hover::after {
  border-top-color: #fff;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
            transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
            transform: translateY(-50%) rotate(360deg);
  }
}
@media print, screen and (max-width: 767px) {
  .load-more-button {
    padding: 12px 0;
    font-size: 14px;
    max-width: 280px;
  }
}
.slider-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 20px;
  margin-top: 30px;
}
.slider-btn .prev,
.slider-btn .next {
  width: 50px;
  height: 50px;
  background: #094;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.slider-btn .prev:hover,
.slider-btn .next:hover {
  background: #007a3a;
}
.slider-btn .prev::before,
.slider-btn .next::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
.slider-btn .prev::before {
  border-width: 8px 12px 8px 0;
  border-color: transparent white transparent transparent;
  margin-left: -3px;
}
.slider-btn .next::before {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent white;
  margin-right: -3px;
}

.manufacturing .bullet_points {
  margin-bottom: 30px;
}
.manufacturing .bullet_points h3 {
  background: #f5f5f5;
  padding: 0.5em 1em;
}
.manufacturing .bullet_points p {
  text-indent: 0;
}
.manufacturing .border-button .wp-block-button__link {
  background: transparent;
  color: #cf2e2e;
  font-weight: normal;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #cf2e2e;
  text-decoration: none !important;
}
.manufacturing .border-button .wp-block-button__link:hover {
  background: #cf2e2e;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .manufacturing .filter-tabs.about__tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (max-width: 767px) {
  .manufacturing .filter-tabs.about__tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-timeline {
  position: relative;
  padding-left: 60px;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline {
    padding-left: clamp(50px, 5vw, 60px);
    margin-top: clamp(30px, 3vw, 40px);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline {
    padding-left: 40px;
    margin-top: 30px;
  }
}
.c-timeline__list {
  list-style: none;
  padding: 0;
  margin-bottom: 150px;
  position: relative;
}
.c-timeline__list::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
  z-index: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__list::before {
    left: -36px;
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__list::before {
    left: -26px;
  }
}
.c-timeline__item {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__item {
    margin-bottom: clamp(25px, 3vw, 30px);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__item {
    margin-bottom: 25px;
  }
}
.c-timeline__item:last-child {
  margin-bottom: 0;
}
.c-timeline__item:last-child .c-timeline__line {
  display: none;
}
.c-timeline__item.fadein.scrollIn .c-timeline__dot {
  background: #094;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 153, 68, 0.2);
          box-shadow: 0 0 0 3px rgba(0, 153, 68, 0.2);
}
.c-timeline__item.fadein.scrollIn .c-timeline__line {
  background: #094;
}
.c-timeline__item.fadein.scrollIn dt {
  color: #383838;
}
.c-timeline__item.fadein.scrollIn dt span {
  color: #094;
}
.c-timeline__item.fadein.scrollIn dd {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.c-timeline__dot {
  position: absolute;
  left: -52px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ddd;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 0 2px #ddd;
          box-shadow: 0 0 0 2px #ddd;
  z-index: 3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__dot {
    left: -42px;
    width: clamp(14px, 1.5vw, 16px);
    height: clamp(14px, 1.5vw, 16px);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__dot {
    left: -32px;
    width: 14px;
    height: 14px;
  }
}
.c-timeline__line {
  position: absolute;
  left: -46px;
  top: 28px;
  width: 2px;
  background: #e0e0e0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__line {
    left: -36px;
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__line {
    left: -26px;
  }
}
.c-timeline__content {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__content {
    gap: clamp(30px, 3.5vw, 40px);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__content {
    display: block;
    gap: 15px;
  }
}
.c-timeline__content dt {
  font-weight: bold;
  color: #ddd;
  line-height: 1.4;
  font-size: 1rem;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__content dt {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__content dt {
    font-size: 0.9rem;
    margin-bottom: 1em;
    white-space: normal;
  }
}
.c-timeline__content dt span {
  font-size: 1.375rem;
  color: #ddd;
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__content dt span {
    font-size: clamp(1.2rem, 1.5vw, 1.375rem);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__content dt span {
    font-size: 1.2rem;
  }
}
.c-timeline__content dd {
  width: 70%;
  margin: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__content dd {
    width: 65%;
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__content dd {
    width: 100%;
  }
}
.c-timeline__title {
  line-height: 1.5;
  font-weight: normal;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__title {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__title {
    font-size: 1rem;
  }
}
.c-timeline__title + p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .c-timeline__title + p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
  }
}
@media print, screen and (max-width: 767px) {
  .c-timeline__title + p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.company--history {
  margin: 80px auto 0;
  padding: 40px 0 40px;
  background: #f5f5f5;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .company--history {
    margin: clamp(60px, 7vw, 80px) auto 0;
    padding: clamp(30px, 3.5vw, 40px) 0;
  }
}
@media print, screen and (max-width: 767px) {
  .company--history {
    margin: 50px auto 0;
    padding: 30px 0;
  }
}

.p-history__section {
  margin-bottom: 120px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__section {
    margin-bottom: clamp(80px, 10vw, 120px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__section {
    margin-bottom: 60px;
  }
}
.p-history__section:last-child {
  margin-bottom: 0;
}
.p-history__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__head {
    gap: clamp(10px, 1.2vw, 12px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__head {
    gap: 10px;
  }
}
.p-history__head span {
  font-size: 1.25rem;
  color: #666;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__head span {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__head span {
    font-size: 1.1rem;
  }
}
.p-history__body {
  width: 100%;
  padding: 15px;
  margin: 30px 0;
  background: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__body {
    padding: clamp(12px, 1.5vw, 15px);
    margin: clamp(25px, 3vw, 30px) 0;
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__body {
    padding: 12px;
    margin: 20px 0;
  }
}
.p-history__body:first-child {
  margin: 0 0 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__body:first-child {
    margin: 0 0 clamp(25px, 3vw, 30px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__body:first-child {
    margin: 0 0 20px;
  }
}
.p-history__bodyinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__bodyinner {
    gap: clamp(15px, 2vw, 20px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__bodyinner {
    gap: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.p-history__image {
  width: 140px;
  height: 140px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  margin: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__image {
    width: clamp(120px, 14vw, 140px);
    height: clamp(120px, 14vw, 140px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 clamp(120px, 14vw, 140px);
            flex: 0 0 clamp(120px, 14vw, 140px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 30%;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
  }
}
.p-history__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media print, screen and (max-width: 767px) {
  .p-history__image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-history__bodycontent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media print, screen and (max-width: 767px) {
  .p-history__bodycontent {
    width: 100%;
  }
}
.p-history__bodycontent p {
  line-height: 1.8;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__bodycontent p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.7;
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__bodycontent p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
  }
}
.p-history__label {
  display: inline-block;
  background: #094;
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__label {
    padding: clamp(5px, 0.6vw, 6px) clamp(14px, 1.5vw, 16px);
    font-size: clamp(0.8rem, 1vw, 0.875rem);
    margin-bottom: clamp(18px, 2vw, 20px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__label {
    padding: 6px 14px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: inline-block;
  }
}
.p-history__title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 16px;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__title {
    font-size: clamp(16px, 1.8vw, 18px);
    margin: 0 0 clamp(14px, 1.6vw, 16px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__title {
    font-size: 1rem;
    font-weight: bold;
    margin: 10px 0;
    line-height: 1.4;
  }
}
.p-history__subtitle {
  font-size: 1.125rem;
  color: #666;
  margin: 0 0 20px;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .p-history__subtitle {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    margin: 0 0 clamp(18px, 2vw, 20px);
  }
}
@media print, screen and (max-width: 767px) {
  .p-history__subtitle {
    font-size: 0.95rem;
    margin: 0 0 12px;
    line-height: 1.5;
    color: #666;
  }
}

.about.page #content-03,
.about.page #content-04 {
  margin-bottom: -100px;
}

.philosophy-container {
  margin: 35px 0;
}
.philosophy-container .philosophy-section {
  margin-bottom: 30px;
}
.philosophy-container .philosophy-section:last-child {
  margin-bottom: 0;
}
.philosophy-container .philosophy-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  margin-bottom: 2px;
}
.philosophy-container .philosophy-title {
  font-size: 1.875rem;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  margin: 0;
  color: #333;
  line-height: 1.2;
}
.philosophy-container .philosophy-subtitle {
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  color: #999;
}
.philosophy-container .philosophy-line {
  width: 62px;
  height: 3px;
  background: #094;
  margin: 0 0 4px;
}
.philosophy-container .philosophy-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media print, screen and (max-width: 767px) {
  .philosophy-container {
    margin: 40px 0;
  }
  .philosophy-container .philosophy-section {
    margin-bottom: 40px;
  }
  .philosophy-container .philosophy-title {
    font-size: 1.5rem;
  }
  .philosophy-container .philosophy-subtitle {
    font-size: 0.9rem;
  }
  .philosophy-container .philosophy-text {
    font-size: 1rem;
  }
}

.philosophy-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.philosophy-image img {
  width: 350px;
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.philosophy-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.philosophy-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.philosophy-title {
  font-size: 28px;
  font-weight: 700;
}

.philosophy-subtitle {
  font-size: 14px;
  color: #555;
}

.philosophy-line {
  width: 60px;
  height: 4px;
  background: #008443;
  margin: 12px 0 20px;
}

.philosophy-text {
  margin-bottom: 40px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .philosophy-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .philosophy-image {
    display: none;
  }
}
.president {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  margin: 1em 0 0;
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
}
.president p,
.president strong {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1;
}
.president_name {
  font-weight: 900;
}

.about_rinen {
  overflow: hidden;
  position: relative;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 80px;
}

@media print, screen and (min-width: 768px) {
  .filter-tabs.about__tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media print, screen and (max-width: 767px) {
  .filter-tabs.about__tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-section.fluid-exchange-section {
  margin: 60px 0;
  padding: 40px 0;
}
.service-section.fluid-exchange-section .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
.service-section.fluid-exchange-section .content-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service-section.fluid-exchange-section .content-column.description-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.service-section.fluid-exchange-section .content-column.info-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.service-section.fluid-exchange-section .service-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.service-section.fluid-exchange-section .service-description .service-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #383838;
  margin: 0;
}
.service-section.fluid-exchange-section .service-description .service-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #383838;
  margin: 0;
}
.service-section.fluid-exchange-section .service-description .service-recommendation {
  font-size: 1rem;
  line-height: 1.8;
  color: #383838;
  margin: 0;
}
.service-section.fluid-exchange-section .service-features {
  margin: 8px 0;
}
.service-section.fluid-exchange-section .service-features.sod-recommendation .feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.service-section.fluid-exchange-section .service-features.sod-recommendation .feature-list .feature-item {
  list-style-type: none;
  font-size: 1rem;
  line-height: 1.8;
  color: #383838;
  padding-left: 1.5em;
  position: relative;
}
.service-section.fluid-exchange-section .service-features.sod-recommendation .feature-list .feature-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #009944;
  font-weight: bold;
}
.service-section.fluid-exchange-section .service-benefit {
  font-size: 1rem;
  line-height: 1.8;
  color: #383838;
  margin: 0;
}
.service-section.fluid-exchange-section .action-buttons {
  margin-top: 0;
  padding-top: 20px;
}
.service-section.fluid-exchange-section .action-buttons .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.service-section.fluid-exchange-section .action-buttons .btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
.service-section.fluid-exchange-section .action-buttons .btn.btn-primary {
  background-color: #009944;
  color: #fff;
}
.service-section.fluid-exchange-section .action-buttons .btn.btn-primary:hover {
  background-color: #008443;
  opacity: 0.9;
}
.service-section.fluid-exchange-section .price_list {
  margin-bottom: 0;
}
.service-section.fluid-exchange-section .service-image-wrapper {
  margin: 0;
  width: 100%;
}
.service-section.fluid-exchange-section .service-image-wrapper .service-image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .service-section.fluid-exchange-section {
    margin: clamp(50px, 6vw, 60px) 0;
    padding: clamp(30px, 4vw, 40px) 0;
  }
  .service-section.fluid-exchange-section .content-wrapper {
    gap: clamp(30px, 4vw, 40px);
    margin-bottom: clamp(30px, 4vw, 40px);
  }
  .service-section.fluid-exchange-section .content-column.description-column {
    gap: clamp(20px, 2.5vw, 24px);
  }
  .service-section.fluid-exchange-section .content-column.info-column {
    gap: clamp(24px, 3vw, 30px);
  }
  .service-section.fluid-exchange-section .service-description {
    gap: clamp(14px, 1.8vw, 16px);
  }
  .service-section.fluid-exchange-section .service-description .service-intro,
  .service-section.fluid-exchange-section .service-description .service-text,
  .service-section.fluid-exchange-section .service-description .service-recommendation {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
  }
  .service-section.fluid-exchange-section .service-features.sod-recommendation .feature-list {
    gap: clamp(10px, 1.3vw, 12px);
  }
  .service-section.fluid-exchange-section .service-features.sod-recommendation .feature-list .feature-item {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
  }
  .service-section.fluid-exchange-section .service-benefit {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
  }
  .service-section.fluid-exchange-section .action-buttons {
    padding-top: clamp(16px, 2vw, 20px);
  }
  .service-section.fluid-exchange-section .action-buttons .button-group {
    gap: clamp(12px, 1.6vw, 16px);
  }
  .service-section.fluid-exchange-section .action-buttons .btn {
    padding: clamp(12px, 1.5vw, 14px) clamp(28px, 3.2vw, 32px);
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    min-width: clamp(180px, 22vw, 200px);
  }
}
@media print, screen and (max-width: 767px) {
  .service-section.fluid-exchange-section {
    margin: 40px 0;
    padding: 30px 0;
  }
  .service-section.fluid-exchange-section .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  .service-section.fluid-exchange-section .content-column {
    width: 100%;
  }
  .service-section.fluid-exchange-section .content-column.description-column {
    gap: 20px;
  }
  .service-section.fluid-exchange-section .content-column.info-column {
    gap: 24px;
  }
  .service-section.fluid-exchange-section .service-description {
    gap: 14px;
  }
  .service-section.fluid-exchange-section .service-description .service-intro,
  .service-section.fluid-exchange-section .service-description .service-text,
  .service-section.fluid-exchange-section .service-description .service-recommendation {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .service-section.fluid-exchange-section .service-features {
    margin: 4px 0;
  }
  .service-section.fluid-exchange-section .service-features.sod-recommendation .feature-list {
    gap: 10px;
  }
  .service-section.fluid-exchange-section .service-features.sod-recommendation .feature-list .feature-item {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .service-section.fluid-exchange-section .service-benefit {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .service-section.fluid-exchange-section .action-buttons {
    margin-top: 0;
    padding-top: 20px;
  }
  .service-section.fluid-exchange-section .action-buttons .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  .service-section.fluid-exchange-section .action-buttons .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: auto;
  }
  .service-section.fluid-exchange-section .service-image-wrapper .service-image {
    width: 100%;
  }
}

.contact-section__title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}
.contact-section__note {
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 24px;
}
.contact-section__note a {
  font-weight: bold;
  text-underline-offset: 0.25em;
  text-decoration: underline;
  color: #094;
}
.contact-section__note a:hover {
  text-decoration: none;
}
.contact-section__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  background: #fff;
}
.contact-section__web, .contact-section__line, .contact-section__tel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .contact-section {
    padding: clamp(3rem, 5vw, 4em) clamp(1.5rem, 2.5vw, 2rem);
  }
  .contact-section__title {
    font-size: clamp(1.75rem, 2.5vw, 2rem);
  }
  .contact-section__note {
    font-size: clamp(0.95rem, 1.3vw, 1rem);
    margin-bottom: clamp(24px, 4vw, 32px);
  }
  .contact-section__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(20px, 3vw, 24px);
  }
  .contact-section__web, .contact-section__line, .contact-section__tel {
    min-width: clamp(180px, 25vw, 200px);
  }
}
@media print, screen and (min-width: 1000px) {
  .contact-section {
    padding: 4em 0;
  }
  .contact-section__title {
    font-size: 2rem;
  }
  .contact-section__note {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .contact-section__grid {
    gap: 24px;
  }
  .contact-section__web, .contact-section__line, .contact-section__tel {
    min-width: 200px;
  }
}
.contact-section__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-section__web-title, .contact-section__line-title, .contact-section__tel-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  color: #383838;
}
.contact-section__btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 16px;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #333;
  border-radius: 2rem;
}
.contact-section__btn--main {
  background: #fff;
  margin-bottom: 12px;
  color: #333;
}
.contact-section__btn--main:hover {
  background: #333;
  color: #fff;
}
.contact-section__btn--line {
  border: none;
  padding: 0;
}
.contact-section__tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  color: #383838;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.contact-section__web-info {
  font-size: 90%;
  color: #555;
}
.contact-section__web-info span {
  display: inline-block;
}
.contact-section__tel-info {
  color: #555;
}

.contact .about__tabs {
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.contact__text {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

@media print, screen and (min-width: 768px) {
  .contact__text {
    max-width: clamp(600px, 50vw, 800px);
    padding: 0;
  }
}
@media print, screen and (min-width: 1000px) {
  .contact__text {
    max-width: 800px;
  }
}
.wpcf7-form {
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.wpcf7-form dl {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
  padding: 1em 0;
  border-bottom: 1px solid #E7E7E7;
  gap: 2em;
}
.wpcf7-form dd .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control.wpcf7-previous {
  display: block !important;
}

.wpcf7-form dd input,
.wpcf7-form dd select,
.wpcf7-form dd textarea {
  border-width: 1px;
  width: 100%;
  padding: 0.5em;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7-form dd input:focus,
.wpcf7-form dd select:focus,
.wpcf7-form dd textarea:focus {
  outline: none;
}
.wpcf7-form dd input,
.wpcf7-form dd select {
  height: 2rem;
}
.wpcf7-form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.wpcf7-form label.required::before {
  content: "必須";
  background: #ff0000;
  color: #fff;
  padding: 2px 8px;
  font-size: 0.875rem;
  border-radius: 4px;
  margin-right: 1em;
  display: inline-block;
}
.wpcf7-form label.any::before {
  content: "任意";
  background: #E7E7E7;
  padding: 2px 8px;
  font-size: 0.875rem;
  border-radius: 4px;
  margin-right: 1em;
  display: inline-block;
}
.wpcf7-form dd input,
.wpcf7-form dd select,
.wpcf7-form dd textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 44px;
  background-color: rgb(246, 246, 246);
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  padding: 0px 12px;
  border: none;
  border-radius: 3px;
}
.wpcf7-form dd textarea {
  height: 200px;
}
@media print, screen and (min-width: 768px) {
  .wpcf7-form {
    max-width: clamp(800px, 60vw, 960px);
    padding: 0;
  }
  .wpcf7-form dl {
    grid-template-columns: clamp(12em, 15vw, 15em) 1fr;
  }
  .wpcf7-form dd input,
  .wpcf7-form dd select,
  .wpcf7-form dd textarea {
    height: clamp(44px, 6vw, 48px);
    padding: 0px clamp(12px, 1.8vw, 14px);
  }
  .wpcf7-form dd textarea {
    height: clamp(200px, 26vw, 250px);
  }
}
@media print, screen and (min-width: 1000px) {
  .wpcf7-form {
    max-width: 960px;
  }
  .wpcf7-form dd input,
  .wpcf7-form dd select,
  .wpcf7-form dd textarea {
    height: 48px;
    padding: 14px;
  }
  .wpcf7-form dd textarea {
    height: 250px;
  }
}
.wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 0.5em;
}
.wpcf7-form .wpcf7-response-output {
  border: none !important;
}
.wpcf7-form .wpcf7-spinner {
  display: none;
}

.thanks h2 {
  text-align: center;
}

.contact-section__note a {
  color: #094 !important;
}

.contact-tab-content {
  display: none;
}
.contact-tab-content.active {
  display: block;
}
.contact-tab-content .contact-section__grid {
  margin-top: 2rem;
}
.contact-tab-content .contact-section__web,
.contact-tab-content .contact-section__tel,
.contact-tab-content .contact-section__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
.contact-tab-content .contact-section__btn--main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  background: #094 !important;
  color: #fff !important;
  border: none !important;
}
.contact-tab-content .contact-section__btn--main:hover {
  background: #0a5 !important;
  color: #fff !important;
}
.contact-tab-content .contact-section__btn--line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  border: 2px solid #094 !important;
  background: #fff !important;
  padding: 1rem !important;
}
.contact-tab-content .contact-section__btn--line img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-tab-content .contact-section__btn--line span {
  color: #094;
  font-weight: bold;
}
.contact-tab-content .contact-section__btn--line:hover {
  background: #f0f8f0 !important;
}
.contact-tab-content .contact-section__tel .contact-section__tel-title {
  margin-bottom: 1rem;
}
.contact-tab-content .contact-section__item {
  background: #f7f7f7;
  padding: 3em;
}

.contact-faq-notice {
  margin: 0 0 2rem;
}

@keyframes slide-out-in {
  0% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(-50%) translateX(100%);
            transform: translateY(-50%) translateX(100%);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateY(-50%) translateX(-100%);
            transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px auto;
}
@media print, screen and (max-width: 768px) {
 .btn-area {
  gap: 20px;
} 
}
.contact .contact-faq-btn,
.contact-faq-btn,.btn-inquiry,.btn-shop {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 1em 2em;
  border: 1px solid #E7E7E7;
  min-width: 250px;
  position: relative;
  margin-top: 2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
.btn-shop {
  background: #094;
  color: #fff !important;
}
.contact .contact-faq-btn::after,
.contact-faq-btn::after,.btn-inquiry::after,.btn-shop::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
  width: 10px;
  height: 10px;
  background-color: #094;
  mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-shop::after {
    background-color: #fff;
}
.contact .contact-faq-btn:hover,
.contact-faq-btn:hover,.btn-inquiry:hover {
  border-color: #094;
  color: #094;
  text-decoration: none !important;
}
.btn-shop:hover {
  color: #fff;
}
.contact .contact-faq-btn:hover::after,
.contact-faq-btn:hover::after,.btn-inquiry:hover::after,.btn-shop:hover::after {
  -webkit-animation: slide-out-in 0.6s ease-in-out;
          animation: slide-out-in 0.6s ease-in-out;
}

@media print, screen and (max-width: 768px) {
  .btn-inquiry , .btn-shop {
    width: 100%;
    margin-top: 0;
  }
}

.content-wrapper .content-body .btn-wrapper {
  margin-bottom: 20px;
    text-align: center;
}

.content-wrapper .content-body .btn-wrapper a, .content-wrapper .content-body .btn-wrapper button {
    background-color: #094;
    border: 2px solid #094;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    min-width: 300px;
    padding: 1em 2em;
    text-align: center;
    width: auto;
}


.contact-category-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.news-hero__lead {
  margin-top: 0.8rem;
  color: #5b6370;
  line-height: 1.8;
}

.news-hero__breadcrumb {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #808796;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.news-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.news-hero__breadcrumb a:hover {
  text-decoration: underline;
}



@media print, screen and (max-width: 900px) {
  .news-body {
    grid-template-columns: 1fr;
  }
}
.news-filter {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid #e6e9ed;
  -ms-flex-item-align: start;
      align-self: start;
}

.news-filter-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.news-filter-select__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2733;
}

.news-filter-select__control {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.news-filter-select__control::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1f2733;
}

.news-filter-select__control select {
  min-width: 160px;
  padding: 0.55rem 2.25rem 0.55rem 0.85rem;
  border: 1px solid #cdd3da;
  background-color: #fff;
  font-size: 0.95rem;
  color: #1f2733;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.news-filter-select__control select:focus {
  border-color: #094;
  outline: none;
}

.news-filter-select__control select:hover {
  border-color: #9ca6b4;
}

@media print, screen and (max-width: 767px) {
  .news-filter-select {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
  .news-filter-select__control select {
    width: 100%;
  }
}
.news-filter__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-filter__list {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.news-filter__button {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f3f5f7;
  color: #4a5360;
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-filter__button:hover {
  background: #e9ecf1;
}

.news-filter__button.is-active {
  background: #094;
  color: #fff;
  border-color: #094;
  font-weight: 600;
}

.post-type-archive-news .news-list {
  background: #fff;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.news-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.news-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-pagination__button {
  min-width: 42px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #cdd3da;
  background: #fff;
  color: #1f2733;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-pagination__button:hover {
  border-color: #094;
  color: #094;
}

.news-pagination__button.is-active {
  background: #094;
  border-color: #094;
  color: #fff;
}

.news-group {
  display: none;
}

.news-group.is-active {
  display: block;
}

.news-group__year {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2733;
  margin-bottom: 1rem;
}

.news-item-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.news-item {
  position: relative;
}
.news-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #333, #333 1px, transparent 1px, transparent 5px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
}
.news-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #094;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-item:hover .news-item__title {
  font-weight: bold;
}
.news-item:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media print, screen and (max-width: 600px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.news-item__date {
  font-weight: bold;
  color: #222;
  letter-spacing: 0.08em;
}

.news-item__title {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  color: #222;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5em 0;
  text-decoration: none;
  line-height: 1.6;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.news-item__title:hover {
  color: #094;
}
.news-item__title:hover .news-item__date {
  color: #094;
}

.news-list__empty {
  padding: 1.5rem 0;
}

.news-empty {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e6e9ed;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.news-empty__body {
  max-width: 520px;
  margin: 0 auto;
}

.news-empty h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1f2733;
}

.news-empty p {
  color: #5b6370;
  line-height: 1.7;
}

.error404 #site-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.notfound__container {
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
.notfound__content {
  background: #fff;
  padding: 40px;
}
.notfound__title {
  font-size: 2rem;
  color: #333;
  margin: 0 0 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 20px;
}
.notfound__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #094;
}
.notfound__description {
  font-size: 1rem;
  color: #555;
  margin: 0 0 40px;
  line-height: 2;
  letter-spacing: 0.03em;
}
.notfound__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.notfound__btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 1em 2em;
  border: 1px solid #E7E7E7;
  min-width: 250px;
  position: relative;
  margin-top: 2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
.notfound__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
  width: 10px;
  height: 10px;
  background-color: #094;
  mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.notfound__btn:hover {
  border-color: #094;
  color: #094;
  text-decoration: none !important;
}
.notfound__btn:hover::after {
  -webkit-animation: slide-out-in 0.6s ease-in-out;
          animation: slide-out-in 0.6s ease-in-out;
}

@media print, screen and (max-width: 767px) {
  .notfound__container {
    padding: 40px 15px;
  }
  .notfound__content {
    padding: 30px 20px;
  }
  .notfound__title {
    font-size: 4rem;
  }
  .notfound__subtitle {
    font-size: 1.5rem;
  }
  .notfound__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .notfound__btn {
    width: 100%;
    max-width: 300px;
  }
}
.maintenance-mode__container {
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  min-height: calc(100vh - 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.maintenance-mode__content {
  background: #fff;
  padding: 60px 40px;
  width: 100%;
}
.maintenance-mode__icon {
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  -webkit-animation: pulse 2s ease-in-out infinite;
          animation: pulse 2s ease-in-out infinite;
}
.maintenance-mode__icon svg {
  width: 100%;
  height: 100%;
}
.maintenance-mode__title {
  font-size: 2.5rem;
  color: #333;
  margin: 0 0 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 20px;
}
.maintenance-mode__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #094;
}
.maintenance-mode__description {
  font-size: 1.125rem;
  color: #555;
  margin: 0 0 30px;
  line-height: 2;
  letter-spacing: 0.03em;
}
.maintenance-mode__info {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 4px;
}
.maintenance-mode__info-text {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.maintenance-mode__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.maintenance-mode__btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 1em 2em;
  border: 1px solid #E7E7E7;
  min-width: 200px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.maintenance-mode__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
  width: 10px;
  height: 10px;
  background-color: #094;
  mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.maintenance-mode__btn:hover {
  border-color: #094;
  color: #094;
  text-decoration: none !important;
}
.maintenance-mode__btn:hover::after {
  -webkit-animation: slide-out-in 0.6s ease-in-out;
          animation: slide-out-in 0.6s ease-in-out;
}
.maintenance-mode__footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}
.maintenance-mode__footer-text {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .maintenance-mode__container {
    padding: 50px 20px;
  }
  .maintenance-mode__content {
    padding: 50px 35px;
  }
  .maintenance-mode__title {
    font-size: 2.25rem;
  }
  .maintenance-mode__description {
    font-size: 1.05rem;
  }
}
@media print, screen and (max-width: 767px) {
  .maintenance-mode__container {
    padding: 40px 15px;
    min-height: calc(100vh - 150px);
  }
  .maintenance-mode__content {
    padding: 40px 25px;
  }
  .maintenance-mode__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }
  .maintenance-mode__title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .maintenance-mode__description {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.8;
  }
  .maintenance-mode__info {
    margin: 25px 0;
    padding: 15px;
  }
  .maintenance-mode__info-text {
    font-size: 0.9rem;
  }
  .maintenance-mode__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
    margin: 30px 0 25px;
  }
  .maintenance-mode__btn {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 0.9em 1.5em;
  }
  .maintenance-mode__footer {
    margin-top: 25px;
    padding-top: 25px;
  }
  .maintenance-mode__footer-text {
    font-size: 0.85rem;
  }
}
.page.products .product-section {
  margin-bottom: 40px;
}
.page.products .product-section__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.page.products .container {
  position: relative;
  z-index: 2;
}
.page.products .product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.page.products .product-card {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 2px;
  text-decoration: none;
}
.page.products .product-card:hover img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.page.products .product-card-link,
.page.products .product-card-link:hover {
  color: #333;
  text-decoration: none;
}
.page.products .product-category {
  letter-spacing: 0.15em;
  display: block;
}
.page.products .product-category span {
  margin-top: -0.5em;
  letter-spacing: normal;
  display: block;
  font-size: 60%;
  color: #094;
  font-style: italic;
}
.page.products .product-subcategory {
  font-size: 0.9em;
}
.page.products .product-thumbnail {
  padding-bottom: 10px;
  border-bottom: 1px solid #383838;
}
.page.products .product-thumbnail img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.page.products .product-subcategory,
.page.products .product-tags,
.page.products .product-name {
  margin: 0.25em 0;
}
.page.products .product-tags {
  font-size: 0.9rem;
  word-break: auto-phrase;
}
.page.products .product-name {
  font-size: 1.1rem;
  font-weight: bold;
}
.page.products .products__wp-block {
  margin: 50px auto;
}

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .page.products .product-section__title {
    font-size: 1.8rem;
  }
  .page.products .product-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .page.products .product-card {
    padding: 16px;
  }
}
@media print, screen and (max-width: 767px) {
  .page.products .product-section__title {
    font-size: 1.5rem;
  }
  .page.products .product-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .page.products .product-card {
    padding: 14px;
  }
  .page.products .product-name {
    font-size: 1rem;
  }
  .page.products .product-tags,
  .page.products .product-subcategory {
    font-size: 0.9rem;
  }
}
.product-adjacent {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .product-adjacent {
    margin: 30px auto 0;
  }
}
.product-adjacent__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.product-adjacent__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #383838;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .product-adjacent__title {
    font-size: 1.65rem;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .product-adjacent__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}
.product-adjacent__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-adjacent__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.product-adjacent__item {
  padding: 1em;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-adjacent__item:hover .product-adjacent__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .product-adjacent__item {
    padding: 12px;
  }
}
.product-adjacent__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product-adjacent__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
  }
}
.product-adjacent__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  padding-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 20px;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product-adjacent__arrow {
    margin-left: 0;
    margin-top: 8px;
    padding-right: 0;
  }
}
.product-adjacent__arrow img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-adjacent__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #094;
  mask-image: url(../images/common/arrow-r.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../images/common/arrow-r.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  pointer-events: none;
}
.product-adjacent__arrow img {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .product-adjacent__arrow {
    padding-right: 10px;
    width: 16px;
    height: 16px;
  }
}
.product-adjacent__item:hover .product-adjacent__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.product-adjacent__thumb {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-adjacent__thumb {
    max-width: 20%;
  }
}
.product-adjacent__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.product-adjacent__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .product-adjacent__body {
    padding: 16px;
    gap: 8px;
  }
}
.product-adjacent__name {
  color: #383838;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.product-adjacent__item:hover .product-adjacent__name {
  color: #009944;
}
@media screen and (max-width: 767px) {
  .product-adjacent__name {
    font-size: 1rem;
  }
}
.product-adjacent__catch {
  line-height: 1.7;
  word-break: auto-phrase;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #383838;
}
@media screen and (max-width: 767px) {
  .product-adjacent__catch {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

.usage__tabs__container .usage__tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usage__tabs__container .usage__tabs::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #f5f5f5;
  bottom: 0;
  left: 0;
}
.usage__tabs__container .usage__tabs li {
  background: #f5f5f5;
  height: 50px;
  list-style: none;
}
.usage__tabs__container .usage__tabs li button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.95rem;
  color: #333;
  background: none;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.usage__tabs__container .usage__tabs li button.active::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  width: 100%;
  height: 3px;
  background: #333;
  bottom: 0;
  left: 0;
}

.stores ul, .stores ul li {
  list-style-type: none;
}

.shop-listbeginning {
  margin-bottom: 60px;
}

.shop-information:last-child {
  margin-top: 1em;
}

.shop-tab-content .shop-search-form,
.shop-prefectures__container .shop-search-form,
.content-wrapper .shop-search-form {
  margin-bottom: 40px;
  padding: 0;
  background: transparent;
}
.shop-tab-content .shop-search-form .shop-search-form__inner,
.shop-prefectures__container .shop-search-form .shop-search-form__inner,
.content-wrapper .shop-search-form .shop-search-form__inner {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-tab-content .shop-search-form .shop-search-form__inner,
  .shop-prefectures__container .shop-search-form .shop-search-form__inner,
  .content-wrapper .shop-search-form .shop-search-form__inner {
    max-width: 100%;
    width: 100%;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
.shop-tab-content .shop-search-form .shop-search-form__inner--business,
.shop-prefectures__container .shop-search-form .shop-search-form__inner--business,
.content-wrapper .shop-search-form .shop-search-form__inner--business {
  grid-template-rows: auto auto;
}
.shop-tab-content .shop-search-form .shop-search-form__row,
.shop-prefectures__container .shop-search-form .shop-search-form__row,
.content-wrapper .shop-search-form .shop-search-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  grid-column: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shop-tab-content .shop-search-form .shop-search-form__row::after,
.shop-prefectures__container .shop-search-form .shop-search-form__row::after,
.content-wrapper .shop-search-form .shop-search-form__row::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.shop-tab-content .shop-search-form .shop-search-form__row--single,
.shop-prefectures__container .shop-search-form .shop-search-form__row--single,
.content-wrapper .shop-search-form .shop-search-form__row--single {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  justify-self: start;
}
.shop-tab-content .shop-search-form .shop-search-form__row--single::after,
.shop-prefectures__container .shop-search-form .shop-search-form__row--single::after,
.content-wrapper .shop-search-form .shop-search-form__row--single::after {
  display: none;
}
.shop-tab-content .shop-search-form .shop-search-form__row--single .shop-search-form__field:empty,
.shop-prefectures__container .shop-search-form .shop-search-form__row--single .shop-search-form__field:empty,
.content-wrapper .shop-search-form .shop-search-form__row--single .shop-search-form__field:empty {
  display: none;
}
.shop-tab-content .shop-search-form .shop-search-form__row:first-child,
.shop-prefectures__container .shop-search-form .shop-search-form__row:first-child,
.content-wrapper .shop-search-form .shop-search-form__row:first-child {
  grid-row: 1;
}
.shop-tab-content .shop-search-form .shop-search-form__row:last-child,
.shop-prefectures__container .shop-search-form .shop-search-form__row:last-child,
.content-wrapper .shop-search-form .shop-search-form__row:last-child {
  grid-row: 2;
}
.shop-tab-content .shop-search-form .shop-search-form__field,
.shop-prefectures__container .shop-search-form .shop-search-form__field,
.content-wrapper .shop-search-form .shop-search-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.shop-tab-content .shop-search-form .shop-search-form__label,
.shop-prefectures__container .shop-search-form .shop-search-form__label,
.content-wrapper .shop-search-form .shop-search-form__label {
  font-weight: 600;
  color: #1f2733;
  font-size: 0.95rem;
  white-space: nowrap;
  width: 150px;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-tab-content .shop-search-form .shop-search-form__label,
  .shop-prefectures__container .shop-search-form .shop-search-form__label,
  .content-wrapper .shop-search-form .shop-search-form__label {
    width: 150px;
  }
}
.shop-tab-content .shop-search-form .shop-search-form__control,
.shop-prefectures__container .shop-search-form .shop-search-form__control,
.content-wrapper .shop-search-form .shop-search-form__control {
  position: relative;
  min-width: 250px;
  max-width: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-tab-content .shop-search-form .shop-search-form__control,
  .shop-prefectures__container .shop-search-form .shop-search-form__control,
  .content-wrapper .shop-search-form .shop-search-form__control {
    min-width: 150px;
    max-width: 150px;
  }
}
.shop-tab-content .shop-search-form .shop-search-form__control::after,
.shop-prefectures__container .shop-search-form .shop-search-form__control::after,
.content-wrapper .shop-search-form .shop-search-form__control::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1f2733;
}
.shop-tab-content .shop-search-form .shop-search-form__select,
.shop-prefectures__container .shop-search-form .shop-search-form__select,
.content-wrapper .shop-search-form .shop-search-form__select {
  width: 100%;
  padding: 0.65rem 2.5rem 0.65rem 1rem;
  border: 1px solid #cdd3da;
  border-radius: 4px;
  background-color: #fff;
  font-size: 0.95rem;
  color: #1f2733;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.shop-tab-content .shop-search-form .shop-search-form__select:focus,
.shop-prefectures__container .shop-search-form .shop-search-form__select:focus,
.content-wrapper .shop-search-form .shop-search-form__select:focus {
  border-color: #094;
  outline: none;
}
.shop-tab-content .shop-search-form .shop-search-form__select:hover,
.shop-prefectures__container .shop-search-form .shop-search-form__select:hover,
.content-wrapper .shop-search-form .shop-search-form__select:hover {
  border-color: #9ca6b4;
}
.shop-tab-content .shop-search-form .shop-search-form__select:disabled,
.shop-prefectures__container .shop-search-form .shop-search-form__select:disabled,
.content-wrapper .shop-search-form .shop-search-form__select:disabled {
  color: #9ca6b4;
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.shop-tab-content .shop-search-form .shop-search-form__button-wrapper,
.shop-prefectures__container .shop-search-form .shop-search-form__button-wrapper,
.content-wrapper .shop-search-form .shop-search-form__button-wrapper {
  grid-column: 2;
  grid-row: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-self: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-tab-content .shop-search-form .shop-search-form__button-wrapper,
  .shop-prefectures__container .shop-search-form .shop-search-form__button-wrapper,
  .content-wrapper .shop-search-form .shop-search-form__button-wrapper {
    grid-column: 1 !important;
    grid-row: 3 !important;
    align-self: auto !important;
    margin-top: 3rem;
    width: 100%;
  }
}
.shop-tab-content .shop-search-form .shop-search-form__button,
.shop-prefectures__container .shop-search-form .shop-search-form__button,
.content-wrapper .shop-search-form .shop-search-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  background: #094;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  min-width: 150px;
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-tab-content .shop-search-form .shop-search-form__button,
  .shop-prefectures__container .shop-search-form .shop-search-form__button,
  .content-wrapper .shop-search-form .shop-search-form__button {
    max-width: 320px;
    height: 60px;
  }
}
.shop-tab-content .shop-search-form .shop-search-form__button:hover,
.shop-prefectures__container .shop-search-form .shop-search-form__button:hover,
.content-wrapper .shop-search-form .shop-search-form__button:hover {
  background: #094;
}
.shop-tab-content .shop-search-form .shop-search-form__button:active,
.shop-prefectures__container .shop-search-form .shop-search-form__button:active,
.content-wrapper .shop-search-form .shop-search-form__button:active {
  background: #178048;
}
.shop-tab-content .shop-search-form .shop-search-form__button-icon,
.shop-prefectures__container .shop-search-form .shop-search-form__button-icon,
.content-wrapper .shop-search-form .shop-search-form__button-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
}
@media print, screen and (max-width: 767px) {
  .shop-tab-content .shop-search-form .shop-search-form__inner,
  .shop-prefectures__container .shop-search-form .shop-search-form__inner,
  .content-wrapper .shop-search-form .shop-search-form__inner {
    grid-template-columns: 1fr;
    gap: 0;
    grid-template-rows: auto auto auto;
  }
  .shop-tab-content .shop-search-form .shop-search-form__inner--business,
  .shop-prefectures__container .shop-search-form .shop-search-form__inner--business,
  .content-wrapper .shop-search-form .shop-search-form__inner--business {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }
  .shop-tab-content .shop-search-form .shop-search-form__row,
  .shop-prefectures__container .shop-search-form .shop-search-form__row,
  .content-wrapper .shop-search-form .shop-search-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    grid-column: 1;
    width: 100%;
  }
  .shop-tab-content .shop-search-form .shop-search-form__row:first-child,
  .shop-prefectures__container .shop-search-form .shop-search-form__row:first-child,
  .content-wrapper .shop-search-form .shop-search-form__row:first-child {
    grid-row: 1;
  }
  .shop-tab-content .shop-search-form .shop-search-form__row:last-child,
  .shop-prefectures__container .shop-search-form .shop-search-form__row:last-child,
  .content-wrapper .shop-search-form .shop-search-form__row:last-child {
    grid-row: 2;
  }
  .shop-tab-content .shop-search-form .shop-search-form__field,
  .shop-prefectures__container .shop-search-form .shop-search-form__field,
  .content-wrapper .shop-search-form .shop-search-form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin-bottom: 1em;
  }
  .shop-tab-content .shop-search-form .shop-search-form__label,
  .shop-prefectures__container .shop-search-form .shop-search-form__label,
  .content-wrapper .shop-search-form .shop-search-form__label {
    width: 100%;
  }
  .shop-tab-content .shop-search-form .shop-search-form__control,
  .shop-prefectures__container .shop-search-form .shop-search-form__control,
  .content-wrapper .shop-search-form .shop-search-form__control {
    width: 100%;
    min-width: auto;
    max-width: none;
  }
  .shop-tab-content .shop-search-form .shop-search-form__select,
  .shop-prefectures__container .shop-search-form .shop-search-form__select,
  .content-wrapper .shop-search-form .shop-search-form__select {
    width: 100%;
  }
  .shop-tab-content .shop-search-form .shop-search-form__button-wrapper,
  .shop-prefectures__container .shop-search-form .shop-search-form__button-wrapper,
  .content-wrapper .shop-search-form .shop-search-form__button-wrapper {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    margin-top: 2em;
    padding-left: 0;
  }
  .shop-tab-content .shop-search-form .shop-search-form__button,
  .shop-prefectures__container .shop-search-form .shop-search-form__button,
  .content-wrapper .shop-search-form .shop-search-form__button {
    width: 70%;
    height: 50px;
  }
  .shop-tab-content .shop-search-form .shop-search-form__inner--business,
  .shop-prefectures__container .shop-search-form .shop-search-form__inner--business,
  .content-wrapper .shop-search-form .shop-search-form__inner--business {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 12px;
  }
  .shop-tab-content .shop-search-form .shop-search-form__inner--business .shop-search-form__row,
  .shop-prefectures__container .shop-search-form .shop-search-form__inner--business .shop-search-form__row,
  .content-wrapper .shop-search-form .shop-search-form__inner--business .shop-search-form__row {
    width: 100%;
    grid-column: 1;
  }
  .shop-tab-content .shop-search-form .shop-search-form__inner--business .shop-search-form__button-wrapper,
  .shop-prefectures__container .shop-search-form .shop-search-form__inner--business .shop-search-form__button-wrapper,
  .content-wrapper .shop-search-form .shop-search-form__inner--business .shop-search-form__button-wrapper {
    grid-column: 1;
    grid-row: 3;
  }
}

.shop-tabs-container {
  margin-bottom: 40px;
}
.shop-tabs-container .shop-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  position: relative;
}
.shop-tabs-container .shop-tabs::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #f5f5f5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.shop-tabs-container .shop-tabs .shop-tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  position: relative;
  margin: 0;
}
.shop-tabs-container .shop-tabs .shop-tab-item .shop-tab-button {
  width: 100%;
  padding: 20px;
  border: none;
  background: #f5f5f5;
  color: #666;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  position: relative;
  text-align: center;
}
.shop-tabs-container .shop-tabs .shop-tab-item .shop-tab-button::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.shop-tabs-container .shop-tabs .shop-tab-item .shop-tab-button::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  width: 1px;
  background: #ddd;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.shop-tabs-container .shop-tabs .shop-tab-item .shop-tab-button .shop-tab-icon {
  font-size: 1.5rem;
  display: inline-block;
  line-height: 1;
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shop-tabs-container .shop-tabs .shop-tab-item .shop-tab-button .shop-tab-text {
  display: inline-block;
}
.shop-tabs-container .shop-tabs .shop-tab-item:first-child .shop-tab-button::after {
  right: 0;
  left: auto;
}
.shop-tabs-container .shop-tabs .shop-tab-item:last-child .shop-tab-button::after {
  left: 0;
  right: auto;
}
.shop-tabs-container .shop-tabs .shop-tab-item.active .shop-tab-button {
  border: 1px solid #ccc;
  border-bottom: none;
  background: #fff;
  color: #333;
}
.shop-tabs-container .shop-tabs .shop-tab-item.active .shop-tab-button::before {
  background: #094;
}
.shop-tabs-container .shop-tabs .shop-tab-item.active .shop-tab-button::after {
  background: #ddd;
}
.shop-tabs-container .shop-tabs .shop-tab-item.active .shop-tab-button .shop-tab-icon {
  opacity: 1;
}
.shop-tabs-container .shop-tabs .shop-tab-item:not(.active) .shop-tab-button {
  background: #f5f5f5;
  color: #666;
}
.shop-tabs-container .shop-tabs .shop-tab-item:not(.active) .shop-tab-button:hover {
  background: #e8e8e8;
}
@media print, screen and (max-width: 767px) {
  .shop-tabs-container .shop-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
  .shop-tabs-container .shop-tabs .shop-tab-item {
    width: 50%;
  }
  .shop-tabs-container .shop-tabs .shop-tab-item .shop-tab-button::after {
    display: none;
  }
}

.shop-prefectures-list-grp-title {
  font-weight: 500;
  margin-bottom: 1em;
}

.distributor {
  width: 100%;
  padding: 3em;
  text-align: center;
  background: #f4f4f4;
}

.distributor-link {
  background: #1eaa39;
  max-width: 220px;
  height: 70px;
  margin: 2em auto 2em;
  text-align: center;
}
.distributor-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.shop-search {
  display: grid;
  grid-template-columns: 220px 680px;
  gap: 70px;
}

.shop-categorys:nth-of-type(1) {
  grid-area: 1/1/2/2;
}
.shop-categorys:nth-of-type(2) {
  grid-area: 1/2/2/3;
}
.shop-categorys:nth-of-type(3) {
  grid-area: 1/3/2/4;
}
.shop-categorys:nth-of-type(4) {
  grid-area: 2/1/3/4;
}

.shop-categorys.at-cvt {
  max-width: 468px;
  width: 100%;
  text-align: center;
  margin-left: auto;
}

.shop-prefectures-item-list,
.shop-categorys-item-list {
  border: 1px solid #cccccc;
}

.shop-prefectures-all,
.shop-categorys-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70px;
  background: #1eaa39;
  color: #fff;
  text-align: left;
  margin-bottom: 0;
}

.shop-prefectures-item-list,
.shop-categorys-item-list {
  padding: 2em;
}
.shop-prefectures-item-list .shop-categorys-item-list-item-child,
.shop-categorys-item-list .shop-categorys-item-list-item-child {
  padding-left: 2em;
}

.shop-prefectures-item-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  margin-bottom: 1em;
}

.shop-prefectures-item .shop-prefectures-item-list-grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  margin: 0;
}

.shop-prefectures-item-list-grp_item,
.shop-categorys-item-list-item,
.shop-categorys-item-list-item-child-item,
.one-shop__category-list-item {
  list-style: none;
}

.shop-prefectures-item-list-grp-title {
  width: 8em;
  text-align: right;
  font-weight: bold;
}

.shop-prefectures-category {
  display: none;
}
.shop-prefectures-category:first-child {
  display: block;
}

.shop-prefectures-item-list-item button,
.shop-categorys-item-list-item button {
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  text-align: center;
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.shop-prefectures-item-list-item button:hover,
.shop-categorys-item-list-item button:hover {
  color: #1eaa39;
}

.shop-prefectures-item-list-item {
  text-align: center;
}

.shop-categorys-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-row-gap: 60px;
}

.shop-prefectures-list-grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2em;
  margin-bottom: 1em;
}
.shop-prefectures-list-grp .shop-prefectures-list-item {
  width: 100%;
}
.shop-prefectures-list-grp .shop-prefectures-list-item button.active,
.shop-prefectures-list-grp .shop-prefectures-list-item button:hover {
  color: #1eaa39;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.shop-prefectures-list-grp .shop-prefectures-list-item {
  display: inline-block;
  width: auto;
}
.shop-prefectures-list-grp .shop-prefectures-list-item button {
  padding: 0;
  height: 100%;
  border: none;
  background: transparent;
  text-align: center;
  color: #333;
}

.shop-city-block .one-shop {
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
}
.shop-city-block .one-shop__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-city-block .one-shop__inner {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
}
.shop-city-block .one-shop a {
  color: #333;
  text-decoration: none;
}
.shop-city-block .one-shop__name {
  font-size: 14px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-city-block .one-shop__name {
    grid-column: 1/-1;
    grid-row: 1;
  }
}
.shop-city-block .one-shop__name a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.shop-city-block .one-shop__name a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/new_window.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.shop-city-block .one-shop__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  font-size: 14px;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-city-block .one-shop__address {
    grid-column: 2;
    grid-row: 2;
  }
}
.shop-city-block .one-shop__address .postal-code {
  font-size: 14px;
}
.shop-city-block .one-shop__address .address {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.shop-city-block .one-shop__address .address a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.shop-city-block .one-shop__address .address a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../images/map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.shop-city-block .one-shop__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  text-align: center;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-city-block .one-shop__contact {
    grid-column: 1;
    grid-row: 2;
  }
}
.shop-city-block .one-shop__contact .tel,
.shop-city-block .one-shop__contact .fax {
  font-size: 14px;
  color: #333;
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
  .shop-city-block .one-shop__category {
    grid-column: 3;
    grid-row: 2;
  }
}
.shop-city-block .one-shop__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item {
  list-style-type: none;
  text-align: center;
  color: #999;
  border: 1px solid #ddd;
  padding: 0.5em 1em;
  border-radius: 4px;
  font-size: 0.875rem;
  margin: 0;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item button {
  padding: 0;
  border: none;
  color: inherit;
  background: none;
  cursor: pointer;
  font-size: inherit;
  width: 100%;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item:disabled,
.shop-city-block .one-shop__category-list .one-shop__category-list-item button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item.car.active {
  background: #1eaa39;
  border-color: #1eaa39;
  color: #fff;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item.bike.active {
  background: #8dc21f;
  border-color: #8dc21f;
  color: #fff;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item.ship.active {
  background: #2ca6e0;
  border-color: #2ca6e0;
  color: #fff;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item.active button {
  color: #fff;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item.car, .shop-city-block .one-shop__category-list .one-shop__category-list-item.bike, .shop-city-block .one-shop__category-list .one-shop__category-list-item.ship {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: calc(33.333% - 6px);
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item.at {
  width: 100%;
  margin-top: 0;
}
.shop-city-block .one-shop__category-list .one-shop__category-list-item.at.active {
  background: #f7b52c;
  border-color: #f7b52c;
  color: #fff;
}

.shop-prefecture-block {
  margin-top: 4rem;
}
.shop-prefecture-block:first-of-type {
  margin-top: 0;
}

.shop-prefecture-title {
  margin-bottom: 2rem;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1f2733;
}

.shop-city-block {
  margin-top: 3rem;
}
.shop-city-block:first-of-type {
  margin-top: 0;
}

.shop-city-title {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid #094;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 600;
  color: #1f2733;
}

.shop-list-dispaly .shop-prefecture-block--hidden,
.shop-prefecture-block--hidden {
  display: none !important;
}

.shop-more-prefectures-wrapper {
  text-align: center;
  margin: 40px 0;
}

.shop-list-dispaly .shop-more-prefectures-button,
.shop-more-prefectures-wrapper .shop-more-prefectures-button,
.shop-more-prefectures-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px 0;
  width: 100%;
  color: #094;
  border: 1px solid #094;
  border-radius: 25px;
  background: transparent;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shop-list-dispaly .shop-more-prefectures-button:hover,
.shop-more-prefectures-wrapper .shop-more-prefectures-button:hover,
.shop-more-prefectures-button:hover {
  background: #094;
  color: #fff;
}

.shop-empty-message {
  margin-top: 2rem;
  text-align: center;
  color: #666;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

#shop-tab-content-business .one-shop__inner {
  grid-template-columns: 1fr 1fr 1fr;
}
#shop-tab-content-business #shop-search-form-business {
  gap: 0;
}

@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .shop-search {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .shop-categorys-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .shop-city-block .one-shop__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  #shop-tab-content-business .one-shop__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (max-width: 767px) {
  .shop-search {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .shop-prefectures-list-grp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1em;
  }
  .shop-prefectures-item-list,
  .shop-categorys-item-list {
    padding: 1em;
  }
  .shop-categorys-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .shop-prefectures-item-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.75em;
  }
  .shop-prefectures-item .shop-prefectures-item-list-grp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75em;
  }
  .shop-prefectures-item-list-grp-title {
    width: auto;
    text-align: left;
  }
  .shop-city-block .one-shop__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .shop-city-block .one-shop__address {
    gap: 0;
    margin-bottom: 1em;
  }
  .shop-city-block .one-shop__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.25em;
    text-align: left;
  }
  #shop-tab-content-business .one-shop__inner {
    grid-template-columns: 1fr;
  }
}
.faqs .faq-load-more-container {
  text-align: center;
  margin-top: 20px;
}
.faqs .faq-load-more-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px 0;
  width: 100%;
  color: #094;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #094;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faqs .faq-load-more-btn .arrow_u::before {
  border-bottom: solid 2px #094;
  border-right: solid 2px #094;
}
.faqs .faq-load-more-btn:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: linear-gradient(135deg, #094 0%, #094 100%);
}
.faqs .faq-load-more-btn:hover .arrow_u::before {
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}
.faqs .faq-load-more-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.faqs .faq-item {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faqs .faq-item.faq-item-hidden {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.faqs .faq-item.faq-item-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.faqs .faqs--section__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.faqs .popular-faq-section {
  background: linear-gradient(135deg, #f8fdf9 0%, #f0f8f4 100%);
  padding: 3rem 2rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  border: 1px solid #e0f0e8;
}
.faqs .popular-faq-section .faqs--section__title {
  position: relative;
  color: #094;
  margin-bottom: 1.5rem;
}
.faqs .popular-faq-section__text {
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
.faqs .popular-faq-section__text a {
  color: #094;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.faqs .popular-faq-section__text a:hover {
  color: #0a5;
  text-decoration: none;
}
.faqs .popular-faq-section .faq-list {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
}
.faqs .popular-faq-section .faq-item {
  margin-bottom: 1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faqs .popular-faq-section .faq-item:last-child {
  margin-bottom: 0;
}
.faqs .popular-faq-section .faq-item:hover {
  border-color: #c8e6d4;
}
.faqs .popular-faq-section .faq-item.active {
  background: #fff;
  border-color: #94d4b0;
}
.faqs .popular-faq-section .faq-item::before, .faqs .popular-faq-section .faq-item::after {
  display: none;
}
.faqs .popular-faq-section .faq-question {
  border-radius: 6px 6px 0 0;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
}
.faqs .popular-faq-section .faq-question .faq-text {
  color: #333;
  font-weight: 600;
}
.faqs .popular-faq-section .faq-question .faq-toggle::before, .faqs .popular-faq-section .faq-question .faq-toggle::after {
  background: #094;
}
.faqs .popular-faq-section .faq-answer {
  background: #fff;
  border-radius: 0 0 6px 6px;
}
.faqs .popular-faq-section .faq-answer .faq-a {
  background: linear-gradient(135deg, #0a5 0%, #094 100%);
}
@media print, screen and (max-width: 767px) {
  .faqs .popular-faq-section {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  .faqs .popular-faq-section .faqs--section__title {
    font-size: 20px;
  }
  .faqs .popular-faq-section .faqs--section__title::before {
    font-size: 1.2rem;
  }
  .faqs .popular-faq-section .faq-list {
    padding: 1rem;
  }
  .faqs .popular-faq-section .faq-question {
    padding: 12px 12px 12px 56px;
  }
  .faqs .popular-faq-section .faq-answer-inner {
    padding: 1rem 1rem 1rem 3.5rem;
  }
}
.faqs .faq-category-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-bottom: 1px solid #e5e5e5;
  gap: 0;
}
.faqs .faq-category-tabs li {
  width: 33%;
  list-style: none;
}
.faqs .faq-category-tabs .faq-category-tab {
  position: relative;
  width: 100%;
  padding: 1em 2em;
  background: transparent;
  color: #666;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  font-weight: normal;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.faqs .faq-category-tabs .faq-category-tab:hover {
  color: #094;
  background: rgba(0, 153, 68, 0.05);
}
.faqs .faq-category-tabs .faq-category-tab.active {
  color: #094;
  font-weight: bold;
  border-bottom-color: #094;
  background: rgba(0, 153, 68, 0.05);
}
.faqs .faq-item {
  position: relative;
  border-bottom: 1px solid #e0e8e4;
  margin-bottom: 1.5rem;
}
.faqs .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.faqs .faq-item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #eeeeee 8px, transparent 8px);
  background-size: 10px 8px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.faqs .faq-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5%;
  height: 1px;
  background-image: linear-gradient(to right, #094 8px, transparent 8px);
  background-size: 10px 8px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.faqs .faq-question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 40px 15px 70px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.faqs .faq-question .faq-q {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.125rem;
  background: #F4F4F4;
  font-family: Arial, Helvetica, sans-serif;
}
.faqs .faq-question .faq-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
}
.faqs .faq-question .faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  -webkit-transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  will-change: transform;
  margin: 0 20px;
}
.faqs .faq-question .faq-toggle:hover {
  -webkit-transform: scale(0.92);
          transform: scale(0.92);
}
.faqs .faq-question .faq-toggle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 75%;
  height: 3px;
  border-radius: 10px;
  background: #383838;
  display: block;
}
.faqs .faq-question .faq-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 3px;
  height: 75%;
  border-radius: 10px;
  background: #383838;
  display: block;
  -webkit-transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.faqs .faq-question .faq-toggle.active:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.faqs .faq-answer {
  display: none;
  margin: 0 auto;
}
.faqs .faq-answer-inner {
  position: relative;
  padding: 20px 40px 20px 70px;
}
.faqs .faq-answer.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faqs .faq-answer .faq-a {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 1.125rem;
  color: #fff;
  background: #094;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.faqs .faq-answer .faq-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faqs .faq-load-more {
  text-align: center;
  margin-top: 60px;
  text-align: center;
}
.faqs .faq-load-more .load-more-btn {
  width: 300px;
  height: 70px;
  margin: 0 auto;
  background-color: #094;
  color: #fff;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 160px;
}
.faqs .product-search-section {
  position: relative;
}
.faqs .product-search-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
}
.faqs .product-category {
  margin-bottom: 20px;
}
.faqs .product-category__title {
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.faqs .product-category:last-of-type {
  margin-bottom: 0;
}
.faqs .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(25% - 20px));
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.faqs .product-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  border: 1px solid #F4F4F4;
  background: #F4F4F4;
  padding: 5px 20px;
  color: #333;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faqs .product-item::after {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #094;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.faqs .product-item:hover {
  color: #fff;
}
.faqs .product-item:hover::after {
  width: 100%;
}
.faqs .product-item .product-image {
  position: relative;
  z-index: 3;
  max-width: 60px;
}
.faqs .product-item .product-name {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .faqs .faq-category-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .faqs .faq-category-tabs li {
    width: 48%;
  }
  .faqs .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media print, screen and (max-width: 767px) {
  .faqs .parts-filters {
    grid-area: auto;
  }
  .faqs .parts-filters .parts-filter {
    padding: 10px 20px;
    font-size: 12px;
  }
  .faqs .faq-question {
    padding: 12px 0 12px 56px;
  }
  .faqs .faq-question .faq-text {
    font-size: 14px;
  }
  .faqs .faq-question .faq-q {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .faqs .faq-question .faq-toggle {
    width: 22px;
    height: 22px;
    margin: 0 12px;
  }
  .faqs .faq-answer {
    padding: 0;
  }
  .faqs .faq-answer .faq-text {
    font-size: 14px;
  }
  .faqs .faq-answer .faq-answer-inner {
    padding: 12px 12px 12px 56px;
  }
  .faqs .faq-answer .faq-a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 12px;
  }
  .faqs .faq-category-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    border-bottom: none;
  }
  .faqs .faq-category-tabs li {
    width: 100%;
  }
  .faqs .faq-category-tabs .faq-category-tab {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
  }
  .faqs .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .faqs .product-item .product-image {
    max-width: 24%;
  }
  .faqs .product-item .product-name {
    font-size: 12px;
  }
}

.pdf-viewer-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
}
.pdf-viewer-container .pdf-iframe {
  width: 100%;
  height: 1200px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page.maintenance {
  /*背景の数字部分*/
}
.page.maintenance .maintenance-image-with-text {
  margin: 0;
  width: 100%;
  text-align: center;
}
.page.maintenance .maintenance-image-with-text span {
  display: block;
  font-size: 120%;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.075em;
}
.page.maintenance .maintenance-image-with-text img {
  width: 100%;
  height: auto;
  display: block;
}
.page.maintenance .shop-tag {
  font-size: 1rem;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page.maintenance .maintenance-intro__content {
  text-align: center;
  margin: 2rem auto 0;
    margin-bottom: 100px;
}
.page.maintenance .maintenance-intro__content p {
  line-height: 3;
}
.page.maintenance .maintenance-intro__content p span {
  display: inline-block;
}
.page.maintenance .maintenance-image-section {
  position: relative;
  z-index: 1;
}
.page.maintenance .maintenance-image-section h2.wp-block-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 767px) {
  .page.maintenance .maintenance-image-section h2.wp-block-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.page.maintenance .maintenance-image-section::before {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 40%;
  background: rgba(0, 153, 68, 0.08);
  z-index: -1;
}
.page.maintenance .catch-copy-wrapper {
  text-align: center;
  margin: 40px auto;
}
.page.maintenance .catch-copy {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  font-style: normal;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.page.maintenance .catch-copy__quote {
  font-size: 1.5em;
  vertical-align: top;
  line-height: 1;
}
.page.maintenance .catch-copy__main {
  display: inline-block;
  padding: 0 0.5em;
  font-size: 1em;
  position: relative;
}
.page.maintenance .catch-copy__main::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  right: 0;
  height: 0.15em;
  z-index: -1;
}
.page.maintenance .catch-copy__response {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: normal;
  color: #333;
  margin-top: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .page.maintenance .catch-copy {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .page.maintenance .catch-copy__response {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }
}
@media screen and (min-width: 1100px) {
  .page.maintenance .catch-copy {
    font-size: 3rem;
  }
  .page.maintenance .catch-copy__response {
    font-size: 1.6rem;
  }
}
.page.maintenance .reservation-badge {
  display: block;
  margin: 1.5rem 0;
  color: #cf2e2e;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
}
.page.maintenance .strength-item {
  position: relative;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
}
.page.maintenance .strength-item:last-child {
  margin-bottom: 0;
}
.page.maintenance .strength-item__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.page.maintenance .strength-item__label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #094;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "Roboto", sans-serif;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .page.maintenance .strength-item__label {
    font-size: 1.125rem;
  }
}
.page.maintenance .strength-item__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #094;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  border-radius: 4px;
  letter-spacing: 0.05em;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .page.maintenance .strength-item__number {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
}
.page.maintenance .strength-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #094;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: left;
  margin: 0 0 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .page.maintenance .strength-item__title {
    font-size: 1.375rem;
  }
}
.page.maintenance .strength-item__content {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.page.maintenance .strength-item__content::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 130%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(0, 153, 68, 0.08);
  right: -100%;
  z-index: -1;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .page.maintenance .strength-item__content::after {
    right: -50%;
    height: 120%;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .page.maintenance .strength-item__content::after {
    right: -30%;
  }
}
@media print, screen and (min-width: 1440px) {
  .page.maintenance .strength-item__content::after {
    right: -30%;
  }
}
@media print, screen and (max-width: 767px) {
  .page.maintenance .strength-item__content::after {
    top: 40%;
    height: 50%;
    right: -30%;
  }
}
@media screen and (min-width: 768px) {
  .page.maintenance .strength-item__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}
.page.maintenance .strength-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page.maintenance .strength-item__text .strength-item__title {
  margin-top: 0;
}
.page.maintenance .strength-item__text p {
  line-height: 2;
  color: #333;
  margin-bottom: 0;
}
.page.maintenance .strength-item__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.page.maintenance .strength-item__image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #094;
  bottom: -5%;
  right: -5%;
  z-index: -1;
}
.page.maintenance .strength-item__image figure {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page.maintenance .strength-item__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.page.maintenance .strength-item__buttons {
  margin-top: 2rem;
  gap: 1rem;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.page.maintenance .strength-item__buttons .wp-block-button {
  margin-bottom: 0;
}
.page.maintenance .strength-item__note {
  color: #383838;
  margin-top: 1em;
  position: relative;
  z-index: 1;
}
.page.maintenance .strength-item__note a {
  color: #094;
  text-decoration: underline;
}
.page.maintenance .strength-item__note a:hover {
  text-decoration: none;
}
.page.maintenance .oil-brand-section {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section {
    padding: 2.5rem 2rem;
  }
}
.page.maintenance .oil-brand-section__heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.75rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__heading {
    font-size: 2rem;
  }
}
.page.maintenance .oil-brand-section__subtitle {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: #094;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}
.page.maintenance .oil-brand-section__subtitle strong {
  font-weight: 600;
}
.page.maintenance .oil-brand-section__content {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 1.25rem;
    margin-bottom: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page.maintenance .oil-brand-section__brands {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__brands {
    padding: 2rem 1.75rem;
  }
}
.page.maintenance .oil-brand-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.page.maintenance .oil-brand-section__list li {
  padding: 0.5rem 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 1.25rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__list li {
    font-size: 1rem;
    padding-left: 1.5rem;
    letter-spacing: -0.015em;
  }
}
.page.maintenance .oil-brand-section__list li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: #094;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page.maintenance .oil-brand-section__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.page.maintenance .oil-brand-section__image figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.page.maintenance .oil-brand-section__image figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page.maintenance .oil-brand-section__message {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e9ecef;
  text-align: center;
}
.page.maintenance .oil-brand-section__message figure {
  margin: 0 auto 2rem;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__message figure {
    margin-bottom: 2.5rem;
  }
}
.page.maintenance .oil-brand-section__message figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page.maintenance .oil-brand-section__message-text {
  font-size: 1.05rem;
  line-height: 2;
  color: #333;
  margin: 0 auto;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .page.maintenance .oil-brand-section__message-text {
    font-size: 1.125rem;
  }
}
.page.maintenance .equipment-section__inner {
  background: #f8f9fa;
  padding: 2rem 1.5rem;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .page.maintenance .equipment-section__inner {
    padding: 2.5rem 2rem;
  }
}
.page.maintenance .equipment-section__heading {
  color: #222;
  text-align: left;
  border-bottom: 2px solid #094;
}
@media screen and (min-width: 768px) {
  .page.maintenance .equipment-section__heading {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.page.maintenance .equipment-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .page.maintenance .equipment-section__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.page.maintenance .equipment-section__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page.maintenance .equipment-section__item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.page.maintenance .equipment-section__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.page.maintenance .equipment-section__item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #094;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .page.maintenance .equipment-section__item-title {
    font-size: 18px;
    margin: 0.75rem auto;
  }
}
.page.maintenance .equipment-section__item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .page.maintenance .equipment-section__item p {
    font-size: 1rem;
    line-height: 2;
  }
}
.page.maintenance .equipment-section__images {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page.maintenance .equipment-section__images {
    height: auto;
    gap: 1.25rem;
  }
}
.page.maintenance .equipment-section__image-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page.maintenance .equipment-section__image-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}
.page.maintenance .equipment-section__image-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.page.maintenance .equipment-section__image-item figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page.maintenance .equipment-section__image-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page.maintenance .content-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.page.maintenance .content-columns__text p {
  line-height: 1.8;
}
.page.maintenance .content-columns__text p span {
  display: inline-block;
}
.page.maintenance .content-columns__image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px auto;
}
.page.maintenance .content-columns__image-grid figure {
  margin: 0;
}
.page.maintenance .content-columns__image-grid figure img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .page.maintenance .content-columns__image-grid {
    grid-template-columns: 1fr;
  }
}
.page.maintenance .content-columns__image-grid.garage-image-grid img {
  border-radius: 8px;
  overflow: hidden;
}
.page.maintenance .content-columns__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page.maintenance .content-columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
  .page.maintenance .content-columns__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .page.maintenance .content-columns__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.page.maintenance .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.page.maintenance .button-group .wp-block-buttons {
  margin: 0;
}
.page.maintenance .button-group .wp-block-button {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page.maintenance .button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
}
.page.maintenance .button-group__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.page.maintenance .button-group__note a {
  color: #094;
  text-decoration: underline;
}
.page.maintenance .button-group__note a:hover {
  text-decoration: none;
}
.page.maintenance .strength-head-content {
  margin-bottom: 80px;
}
.page.maintenance .is-style-vkp-heading-overlap {
  position: relative;
  z-index: 1;
}
.page.maintenance .is-style-vkp-heading-overlap::before {
  content: "01";
  position: absolute;
  font-family: "Roboto", sans-serif;
  /*上下中央寄せ*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  color: rgba(203, 38, 38, 0.1);
  font-size: 5rem;
  z-index: -1;
}
.page.maintenance .flow-container {
  padding: 3rem 2rem;
  border-radius: 12px;
}
.page.maintenance .flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: relative;
}
.page.maintenance .flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
}
.page.maintenance .flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 3rem;
  top: 6rem;
  width: 2px;
  height: calc(100% - 3rem);
  border-left: 2px dashed #ccc;
  z-index: 0;
}
.page.maintenance .flow-item:last-child {
  padding-bottom: 0;
}
.page.maintenance .flow-icon {
  width: 6rem;
  height: 6rem;
  min-width: 6rem;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.page.maintenance .flow-icon img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page.maintenance .flow-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.5rem;
}
.page.maintenance .flow-step-label {
  color: #094;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.page.maintenance .flow-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #222;
  margin: 0 0 1rem 0;
}
.page.maintenance .flow-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}
.page.maintenance .notice-points {
  list-style: none;
  padding: 2rem;
  margin: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  background: #f9f9f9;
  border-radius: 8px;
}
.page.maintenance .notice-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 4px;
  background: #fff;
}
.page.maintenance .notice-point-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: #094;
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page.maintenance .notice-point-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  padding-top: 0.25rem;
}
.page.maintenance .document-submission {
  margin: 2rem 0;
  padding: 0;
}
.page.maintenance .document-submission-title {
  font-weight: bold;
  margin: 0 0 1rem 0;
  padding: 0.35rem 1rem;
  border-left: 4px solid #094;
}
.page.maintenance .document-submission-box {
  background: #fff;
}
.page.maintenance .document-submission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  background: transparent;
  padding: 1.5rem 1.5rem 0 1.5rem;
}
.page.maintenance .document-submission-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.75rem;
  padding: 0;
}
.page.maintenance .document-submission-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.125rem;
}
.page.maintenance .document-submission-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page.maintenance .document-submission-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}
.page.maintenance .document-submission-note {
  margin: 0;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .page.maintenance .maintenance-image-with-text span {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
  }
  .page.maintenance .shop-tag {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }
  .page.maintenance .maintenance-intro__content {
    margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  }
  .page.maintenance .maintenance-intro__content p {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
  }
  .page.maintenance .catch-copy-wrapper {
    margin: clamp(30px, 4vw, 40px) auto;
  }
  .page.maintenance .reservation-badge {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }
  .page.maintenance .strength-item {
    margin-bottom: clamp(3rem, 5vw, 4rem);
    padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2rem);
  }
  .page.maintenance .strength-head-content {
    margin-bottom: clamp(60px, 8vw, 80px);
  }
  .page.maintenance .is-style-vkp-heading-overlap::before {
    font-size: clamp(4rem, 6vw, 5rem);
  }
  .page.maintenance .flow-container {
    padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2rem);
  }
  .page.maintenance .flow-item {
    gap: clamp(1.5rem, 2.5vw, 2rem);
    padding-bottom: clamp(2rem, 3.5vw, 3rem);
  }
  .page.maintenance .flow-item:not(:last-child)::after {
    left: clamp(2.5rem, 4vw, 3rem);
  }
  .page.maintenance .flow-icon {
    width: clamp(5rem, 7vw, 6rem);
    height: clamp(5rem, 7vw, 6rem);
    min-width: clamp(5rem, 7vw, 6rem);
  }
  .page.maintenance .flow-title {
    font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  }
  .page.maintenance .flow-description {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
  }
  .page.maintenance .notice-points {
    padding: clamp(1.5rem, 2.5vw, 2rem);
    margin: clamp(1.5rem, 2.5vw, 2rem) 0;
  }
  .page.maintenance .notice-point {
    padding: clamp(0.75rem, 1.2vw, 1rem);
  }
  .page.maintenance .notice-point-text {
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  }
  .page.maintenance .document-submission-list {
    padding: clamp(1.25rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.5rem) 0 clamp(1.25rem, 2vw, 1.5rem);
  }
  .page.maintenance .document-submission-text {
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  }
}
@media print, screen and (max-width: 767px) {
  .page.maintenance .maintenance-image-with-text span {
    font-size: 1rem;
  }
  .page.maintenance .shop-tag {
    font-size: 0.875rem;
    margin: 0.4rem 0;
  }
  .page.maintenance .maintenance-intro__content {
    margin: 1.5rem auto 0;
    text-align: left;
  }
  .page.maintenance .maintenance-intro__content p {
    font-size: 0.9rem;
    line-height: 2.5;
  }
  .page.maintenance .maintenance-intro__content p span {
    display: inline;
  }
  .page.maintenance .maintenance-image-section::before {
    bottom: 10%;
    height: 20%;
  }
  .page.maintenance .catch-copy-wrapper {
    margin: 30px auto;
  }
  .page.maintenance .reservation-badge {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
  .page.maintenance .strength-item {
    margin-bottom: 3rem;
    padding: 2rem 0;
  }
  .page.maintenance .strength-item__heading {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  .page.maintenance .strength-item__label {
    font-size: 0.9rem;
  }
  .page.maintenance .strength-item__number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }
  .page.maintenance .strength-item__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .page.maintenance .strength-item__content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .page.maintenance .strength-item__text p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .page.maintenance .strength-item__buttons {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }
  .page.maintenance .strength-item__note {
    font-size: 0.875rem;
  }
  .page.maintenance .oil-brand-section {
    padding: 0;
  }
  .page.maintenance .oil-brand-section__heading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
  }
  .page.maintenance .oil-brand-section__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .page.maintenance .oil-brand-section__content {
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .page.maintenance .oil-brand-section__brands {
    padding: 0;
  }
  .page.maintenance .oil-brand-section__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .page.maintenance .oil-brand-section__list li {
    font-size: 0.875rem;
    padding-left: 1rem;
  }
  .page.maintenance .oil-brand-section .wp-block-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .page.maintenance .oil-brand-section .wp-block-list li {
    font-size: 0.875rem;
    padding-left: 1rem;
    position: relative;
  }
  .page.maintenance .oil-brand-section .wp-block-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #094;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
  }
  .page.maintenance .oil-brand-section__message {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .page.maintenance .oil-brand-section__message figure {
    margin-bottom: 1.5rem;
  }
  .page.maintenance .oil-brand-section__message-text {
    font-size: 0.95rem;
  }
  .page.maintenance .equipment-section__inner {
    padding: 1.5rem 1rem;
  }
  .page.maintenance .equipment-section__heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .page.maintenance .equipment-section__content {
    gap: 1.5rem;
  }
  .page.maintenance .equipment-section__item-title {
    font-size: 1rem;
    margin: 0 0 0.4rem 0;
  }
  .page.maintenance .equipment-section__item p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .page.maintenance .equipment-section__images {
    gap: 0.75rem;
  }
  .page.maintenance .equipment-section__image-grid {
    gap: 0.75rem;
  }
  .page.maintenance .content-columns {
    gap: 1.5rem;
  }
  .page.maintenance .content-columns__image-grid {
    gap: 20px;
    margin: 30px auto;
  }
  .page.maintenance .content-columns__text p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .page.maintenance .button-group {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .page.maintenance .button-group__note {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
  .page.maintenance .strength-head-content {
    margin-bottom: 60px;
  }
  .page.maintenance .is-style-vkp-heading-overlap::before {
    font-size: 3.5rem;
  }
  .page.maintenance .flow-container {
    padding: 2rem 1rem;
  }
  .page.maintenance .flow-item {
    gap: 1rem;
    padding-bottom: 2rem;
  }
  .page.maintenance .flow-item:not(:last-child)::after {
    left: 2rem;
    top: 5rem;
  }
  .page.maintenance .flow-icon {
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
  }
  .page.maintenance .flow-content {
    padding-top: 0.25rem;
  }
  .page.maintenance .flow-step-label {
    font-size: 0.875rem;
  }
  .page.maintenance .flow-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .page.maintenance .flow-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .page.maintenance .notice-points {
    padding: 1.5rem;
    margin: 1.5rem 0;
    gap: 0.4rem;
  }
  .page.maintenance .notice-point {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .page.maintenance .notice-point-icon {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    font-size: 0.9rem;
  }
  .page.maintenance .notice-point-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .page.maintenance .document-submission {
    margin: 1.5rem 0;
  }
  .page.maintenance .document-submission-title {
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    padding: 0.3rem 0.75rem;
  }
  .page.maintenance .document-submission-list {
    padding: 1.25rem 1rem 0 1rem;
    gap: 0.5rem;
  }
  .page.maintenance .document-submission-item {
    gap: 0.5rem;
  }
  .page.maintenance .document-submission-number {
    font-size: 1.125rem;
  }
  .page.maintenance .document-submission-text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .page.maintenance .document-submission-note {
    padding: 0.75rem 1rem 1.25rem 1rem;
    font-size: 0.875rem;
  }
  .page.maintenance .d1_garage {
    position: relative;
    padding: 40px 0 0;
  }
  .page.maintenance .d1_garage::before {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 40%;
    background: #f8f9fa;
    z-index: -1;
  }
}
@media print, screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  .page.maintenance .d1_garage::before {
    bottom: 15%;
    height: 35%;
  }
}
@media print, screen and (max-width: 767px) and (max-width: 767px) {
  .page.maintenance .d1_garage::before {
    bottom: 25%;
    height: 20%;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@media print, screen and (max-width: 767px) and (max-width: 767px) {
  .page.maintenance .d1_garage__inner {
    padding: 0;
  }
}
@media print, screen and (max-width: 767px) and (max-width: 767px) {
  .page.maintenance .d1_garage__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page.maintenance .d1_garage__header .d1_garage__title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .page.maintenance .d1_garage__header .d1_garage__map-link {
    margin-left: 1em;
  }
}
@media print, screen and (min-width: 768px) {
  .page.maintenance .about__tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media print, screen and (max-width: 767px) {
  .page.maintenance .about__tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (max-width: 767px) {
  .page.maintenance .price_list {
    display: block;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 1.5em;
    font-size: 0.9rem;
  }
  .page.maintenance .price_list .price_list_tr {
    display: table;
    width: 100%;
    min-width: 600px;
    table-layout: fixed;
  }
  .page.maintenance .price_list .price_list_tr > *:nth-child(2) {
    width: 16%;
  }
  .page.maintenance .price_list .price_list_tr > *:nth-child(3) {
    width: 26%;
  }
  .page.maintenance .price_list .price_list_tr > *:nth-child(4) {
    width: 16%;
  }
  .page.maintenance .price_list .price_list_tr .border-none {
    display: table-cell;
  }
  .page.maintenance .price_list .price_list_tr .price_list_th-head {
    font-size: 0.95rem;
    padding: 0.8em 0.6em;
    letter-spacing: 0.05em;
    font-weight: bold;
    display: table-cell;
  }
  .page.maintenance .price_list .price_list_tr .price_list_title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5em;
    padding: 0.8em 0.6em;
  }
  .page.maintenance .price_list .price_list_tr .price_list_title_txt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.3em;
  }
  .page.maintenance .price_list .price_list_tr .price_list_title_txt-rcm {
    font-size: 0.7em;
    margin-left: 0.5em;
    padding: 0.2em 0.6em;
  }
  .page.maintenance .price_list .price_list_tr .price_list_title p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
  }
  .page.maintenance .price_list .price_list_tr .price_list_more {
    padding: 0.5em 1.5em;
    font-size: 0.9rem;
    width: 100%;
    margin: 0.5em 0;
  }
  .page.maintenance .price_list .price_list_tr .price_list_more::after {
    right: 1em;
    width: 9px;
    height: 9px;
  }
  .page.maintenance .price_list .price_list_tr .price_list_th,
  .page.maintenance .price_list .price_list_tr .price_list_td {
    padding: 0.8em 0.6em;
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: break-word;
    vertical-align: top;
    display: table-cell;
  }
  .page.maintenance .price_list .price_list_tr .price_list_th {
    font-size: 0.88rem;
    font-weight: bold;
  }
  .page.maintenance .price_list .price_list_tr .price_list_td {
    font-size: 0.9rem;
    vertical-align: middle;
  }
  .page.maintenance .price_list .price_list_tr .price_list_td p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0.3em 0;
  }
  .page.maintenance .price_list .price_list_tr .price_list_td p:first-child {
    margin-top: 0;
  }
  .page.maintenance .price_list .price_list_tr .price_list_td p:last-child {
    margin-bottom: 0;
  }
  .page.maintenance .price_list .price_list_tr .price-more-btn {
    font-size: 0.9rem;
    padding: 0.5em 0;
    line-height: 1.5;
  }
  .page.maintenance .price_list .price_list_tr .price-more-btn::after {
    width: 12px;
    height: 12px;
  }
}

.l-content-section {
  padding: 40px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .l-content-section {
    padding: clamp(2rem, 4vw, 2.5rem) 0;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .l-content-section {
    padding: 30px 0;
  }
}
@media print, screen and (min-width: 1440px) {
  .l-content-section {
    padding: 30px 0;
  }
}


.page.manufacturing .development__columns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page.manufacturing .development__columns .development__column.wp-block-column-text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 2em;
  z-index: 2;
}
.page.manufacturing .development__columns .development__column.wp-block-column-image {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page.manufacturing .needs__image {
  margin: 40px auto;
}
.page.manufacturing .needs__image img {
  margin: 0 auto;
}
.page.manufacturing .needs-item-columns {
  margin-bottom: 20px;
}
.page.manufacturing .needs-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1em;
}
.page.manufacturing .needs-item__content:last-of-type {
  margin-bottom: 0;
}
.page.manufacturing .needs-item__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  font-size: var(--font-size-h4);
  position: relative;
  background: #094;
  color: #fff;
  padding: 0.5em 2em 0.5em 1em;
  -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
  min-width: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page.manufacturing .needs-item p {
  font-size: var(--font-size-h5);
  margin: 0;
}
.page.manufacturing .supply {
  position: relative;
  background: #f5f5f5;
  background-image: url(./../images/about/earth-bg.png);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: bottom;
  background-size: contain;
  padding: 30px 0 30px;
}
.page.manufacturing .supply::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #ffffff;
}
.page.manufacturing .supply .supply__content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 30px;
}
.page.manufacturing .supply h4 {
  text-align: center;
}
.page.manufacturing .supply__content__item__image {
  border-radius: 10px;
  overflow: hidden;
  margin: 1em auto;
}
.page.manufacturing .supply .wp-block-list {
  list-style-position: inside;
}
.page.manufacturing .supply__content__item {
  width: 30%;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}
.page.manufacturing .treatise-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  padding: 1em 0;
  border-bottom: 1px solid #094;
  margin-bottom: 30px;
}
.page.manufacturing .treatise-tabs .treatise-tab {
  background: #f5f5f5;
  color: #383838;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page.manufacturing .treatise-tabs .treatise-tab:hover {
  background: #094;
  color: #fff;
}
.page.manufacturing .treatise-tabs .treatise-tab.active {
  background: #094;
  color: #fff;
}
.page.manufacturing .load-more-container {
  text-align: center;
}
.page.manufacturing .load-more {
  text-align: center;
}
.page.manufacturing .pdf-table {
  width: 100%;
  margin-bottom: 0;
}
.page.manufacturing .pdf-table tr:nth-child(even) {
  background: #f5f5f5;
}
.page.manufacturing .pdf-table tr th,
.page.manufacturing .pdf-table tr td {
  padding: 1em;
  border: 1px solid #e9ecef;
}
.page.manufacturing .pdf-table tr th a,
.page.manufacturing .pdf-table tr td a {
  color: #383838;
  text-decoration: none;
}
.page.manufacturing .pdf-table tr th {
  text-align: center;
}
.page.manufacturing .background-purpose {
  position: relative;
  z-index: 2;
}
.page.manufacturing .background-purpose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./../images/about/sod-1-plus.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.1;
}
.page.manufacturing .background-purpose__title {
  text-align: center;
}
.page.manufacturing .background-purpose__content {
  text-align: center;
}
.page.manufacturing .background-purpose__content p {
  margin: 0;
  line-height: 3;
  color: #333;
  font-size: 1rem;
}
.page.manufacturing .background-purpose__content p span {
  display: inline-block;
}
.page.manufacturing .basic-research-intro__description {
  margin-bottom: 2.5rem;
}
.page.manufacturing .basic-research-intro__description p {
  margin: 0 0 1.5rem 0;
  line-height: 2;
  color: #333;
  font-size: 1rem;
}
.page.manufacturing .basic-research-intro__description p:last-child {
  margin-bottom: 0;
}
.page.manufacturing .basic-research-intro__papers {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 4px;
}
.page.manufacturing .basic-research-intro__papers-title {
  font-size: var(--font-size-h4);
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: #333;
}
.page.manufacturing .basic-research-intro__papers-list {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}
.page.manufacturing .basic-research-intro__papers-list li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: #333;
}
.page.manufacturing .basic-research-intro__papers-list li:last-child {
  margin-bottom: 0;
}
.page.manufacturing .basic-research-intro__supplement {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}
.page.manufacturing .basic-research-intro__supplement-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
}
.page.manufacturing .basic-research-intro__supplement-list li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  position: relative;
  padding-left: 1em;
}
.page.manufacturing .basic-research-intro__supplement-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #666;
}
.page.manufacturing .basic-research-intro__supplement-list li:last-child {
  margin-bottom: 0;
}
.page.manufacturing .basic-research-intro__supplement-list li a {
  color: #094;
  text-decoration: none;
  font-size: 0.95rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page.manufacturing .basic-research-intro__supplement-list li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.page.manufacturing .evaluation-themes {
  background: #fff;
  border-top: 2px solid #094;
  border-bottom: 2px solid #094;
  padding: 1.5rem 0;
  margin: 1.5rem 0 2rem 0;
}
.page.manufacturing .evaluation-themes__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
  font-weight: 500;
}
.page.manufacturing .evaluation-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.page.manufacturing .evaluation-item {
  background: #fff;
  border: 1px solid #e9ecef;
  border-left: 4px solid #094;
  padding: 1.5rem;
  border-radius: 4px;
}
.page.manufacturing .evaluation-item__title {
  font-size: var(--font-size-h4);
  font-weight: bold;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}
.page.manufacturing .evaluation-item__content p {
  margin: 0;
  line-height: 1.8;
  color: #333;
  padding-left: 1em;
  text-indent: -1em;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .page.manufacturing .development__columns .development__column.wp-block-column-text {
    width: 55%;
    padding: 1.5em;
  }
  .page.manufacturing .needs-item__title {
    min-width: 350px;
    font-size: clamp(1rem, 1.5vw, var(--font-size-h4));
  }
  .page.manufacturing .supply__content__list {
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }
  .page.manufacturing .supply__content__item {
    width: 32%;
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 2vw, 20px);
  }
  .page.manufacturing .evaluation-items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  .page.manufacturing .evaluation-item {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}
@media print, screen and (max-width: 767px) {
  .page.manufacturing .development__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page.manufacturing .development__columns .development__column.wp-block-column-text {
    position: relative;
    width: 100%;
    padding: 1.5em;
    margin-top: 1em;
  }
  .page.manufacturing .development__columns .development__column.wp-block-column-image {
    width: 100%;
  }
  .page.manufacturing .needs__image {
    margin: 30px auto;
  }
  .page.manufacturing .needs-item__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.75rem;
  }
  .page.manufacturing .needs-item__title {
    min-width: 100%;
    width: 100%;
    font-size: 1rem;
    padding: 0.5em 1em;
  }
  .page.manufacturing .needs-item p {
    font-size: 0.9rem;
  }
  .page.manufacturing .supply {
    background-size: contain;
    padding: 20px 0;
    background-position: center top;
  }
  .page.manufacturing .supply::after {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #ffffff;
  }
  .page.manufacturing .supply__content__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-bottom: 20px;
  }
  .page.manufacturing .supply__content__item {
    width: 100%;
    padding: 15px;
  }
  .page.manufacturing .supply__content__item__image {
    margin: 0.75em auto;
  }
  .page.manufacturing .treatise-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    padding: 0.75em 0;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .page.manufacturing .treatise-tabs .treatise-tab {
    padding: 0.4em 0.8em;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .page.manufacturing .pdf-table {
    display: block;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .page.manufacturing .pdf-table tr th,
  .page.manufacturing .pdf-table tr td {
    padding: 0.75em 0.5em;
    font-size: 0.875rem;
  }
  .page.manufacturing .background-purpose__content p {
    font-size: 0.9rem;
    line-height: 2;
  }
  .page.manufacturing .basic-research-intro__description {
    margin-bottom: 2rem;
  }
  .page.manufacturing .basic-research-intro__description p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .page.manufacturing .basic-research-intro__papers {
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .page.manufacturing .basic-research-intro__papers-title {
    font-size: 1.125rem;
  }
  .page.manufacturing .basic-research-intro__papers-list {
    padding-left: 1.25rem;
    font-size: 0.9rem;
  }
  .page.manufacturing .basic-research-intro__papers-list li {
    margin-bottom: 0.5rem;
  }
  .page.manufacturing .basic-research-intro__supplement {
    margin-top: 2rem;
    padding-top: 1rem;
  }
  .page.manufacturing .basic-research-intro__supplement-list {
    padding-left: 1rem;
  }
  .page.manufacturing .basic-research-intro__supplement-list li {
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
  }
  .page.manufacturing .basic-research-intro__supplement-list li a {
    font-size: 0.85rem;
  }
  .page.manufacturing .evaluation-themes {
    padding: 1rem 0;
    margin: 1rem 0 1.5rem 0;
  }
  .page.manufacturing .evaluation-themes__text {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  .page.manufacturing .evaluation-items {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .page.manufacturing .evaluation-item {
    padding: 1rem;
  }
  .page.manufacturing .evaluation-item__title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
  }
  .page.manufacturing .evaluation-item__content p {
    font-size: 0.9rem;
    padding-left: 0.75em;
    text-indent: -0.75em;
  }
}

#mechanic-login {
  padding: 100px 0;
}
#mechanic-login .login-form-wrapper {
  width: 100%;
  text-align: center;
}
#mechanic-login .login-form-wrapper .login-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1em;
}
#mechanic-login .login-form-wrapper .login-description {
  margin: 0 auto;
  background: #f5f5f5;
  padding: 2em;
  margin-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  #mechanic-login .login-form-wrapper .login-description {
    padding: 1em;
  }
}
#mechanic-login .form_btns {
  gap: 0;
}

@media print, screen and (max-width: 767px) {
  #mechanic-login {
    padding: 0;
  }
  #mechanic-login .login-form-wrapper {
    padding: 0;
  }
  #mechanic-login .login-form-wrapper .login-title {
    font-size: 1.5rem;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.login-form-wrapper {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}

.content.pickup .content__title {
  color: #000;
}
.content.pickup .content__title,
.content.pickup .content__description {
  display: inline-block;
}

.pickup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0;
}

.pickup__inner--left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  width: 100%;
}

.pickup__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media print, screen and (max-width: 767px) {
  .pickup__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    margin-bottom: 2em;
  }
  .pickup__header .l-top-content__title--en {
    margin: 0 10px 0 0;
    display: inline-block;
  }
  .pickup__header .top-news__ja {
    margin: 0;
    display: inline-block;
  }
  .pickup__header .l-top-content__link {
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .pickup__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .pickup__inner--left {
    -webkit-box-flex: clamp(12rem, 20vw, 12.5rem);
        -ms-flex: clamp(12rem, 20vw, 12.5rem) 0 0px;
            flex: clamp(12rem, 20vw, 12.5rem) 0 0;
    width: auto;
  }
}
@media print, screen and (min-width: 1000px) {
  .pickup__inner--left {
    -webkit-box-flex: 220px;
        -ms-flex: 220px 0 0px;
            flex: 220px 0 0;
  }
}
:root {
  --slide-width: 280px;
}

@media print, screen and (min-width: 768px) {
  :root {
    --slide-width: clamp(18rem, 25vw, 20rem);
  }
}
@media print, screen and (min-width: 1000px) {
  :root {
    --slide-width: 300px;
  }
}
@media print, screen and (min-width: 1000px) and (max-width: 1400px) {
  :root {
    --slide-width: 250px;
  }
  .pickup-swiper .swiper-slide {
    margin-right: 20px;
  }
}
.pickup__container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0;
}

.pickup__body {
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .pickup__container {
    margin: clamp(1.5rem, 3vw, 1.875rem) 0;
    padding: 0;
  }
}
@media print, screen and (min-width: 1000px) {
  .pickup__container {
    margin: 50px auto;
  }
  .pickup__body {
    width: calc(100% + (100vw - 1200px) / 2);
  }
}
.pickup-swiper {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  overflow: visible;
}
.pickup-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pickup__featured {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--slide-width);
          flex: 0 0 var(--slide-width);
  width: var(--slide-width);
}

.pickup__featured--sticky {
  position: relative;
}
.pickup__featured--sticky::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url("./../../images/news/pin-icon.svg") no-repeat center/contain;
}

.pickup-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: var(--slide-width);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pickup__article--sticky {
  position: relative;
}
.pickup__article--sticky::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url("./../../images/news/pin-icon.svg") no-repeat center/contain;
  z-index: 1;
}

.pickup__article {
  width: 100%;
  height: 100%;
  list-style: none;
}
.pickup__article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

@media print, screen and (max-width: 900px) {
  .article-box__body {
    margin: 60px auto;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .pickup-swiper .article-box__title {
    font-size: 14px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1em;
  }
}
@media print, screen and (max-width: 767px) {
  .works-list .works-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .works-list .works-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  .pickup-swiper .article-box__title {
    font-size: 14px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1em;
  }
}
@media print, screen and (min-width: 1440px) {
  .pickup-swiper .article-box__title {
    font-size: 16px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1em;
  }
}
@media print, screen and (max-width: 600px) {
  .article-box__body {
    margin: 40px auto;
  }
  .article-box__img {
    max-height: 150px;
  }
  .article-box__title {
    font-size: 14px;
  }
}
.swiper-button-prev,
.swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #094;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #094;
  color: #fff;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1em;
  color: #094;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pickup-swiper__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin: 16px auto 0;
  max-width: 1200px;
}

@media print, screen and (min-width: 768px) {
  .pickup-swiper__controls {
    gap: clamp(1.25rem, 2.5vw, 1.5rem);
    margin: clamp(1.25rem, 2.5vw, 1.5rem) auto 0;
  }
}
.pickup-swiper__controls .swiper-button-prev,
.pickup-swiper__controls .swiper-button-next {
  position: static;
  margin: 0;
  -webkit-transform: none;
          transform: none;
}
.pickup-swiper__controls .swiper-pagination {
  position: static;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.pickup-swiper__controls .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pickup-swiper__controls .swiper-pagination-bullet-active {
  background: #094;
}

#mechanic-login {
  min-height: 66vh;
}

.mechanic-archive .archive-content-wrapper {
  margin-top: 2rem;
}
.mechanic-archive .main-content-area {
  min-width: 0;
}
.mechanic-archive .archive-header {
  margin-bottom: 3rem;
  text-align: center;
}
.mechanic-archive .archive-header .archive-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.mechanic-archive .archive-header .archive-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.mechanic-archive .mechanic-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 767px) {
  .mechanic-archive .mechanic-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.mechanic-archive .mechanic-post-item {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.mechanic-archive .mechanic-post-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.mechanic-archive .mechanic-post-item .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.mechanic-archive .mechanic-post-item .post-thumbnail img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mechanic-archive .mechanic-post-item .post-thumbnail:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.mechanic-archive .mechanic-post-item .post-content {
  padding: 1.5rem;
}
.mechanic-archive .mechanic-post-item .post-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.mechanic-archive .mechanic-post-item .post-title a {
  color: #333;
  text-decoration: none;
}
.mechanic-archive .mechanic-post-item .post-title a:hover {
  color: #007cba;
}
.mechanic-archive .mechanic-post-item .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}
.mechanic-archive .mechanic-post-item .post-meta .post-date {
  color: #999;
}
.mechanic-archive .mechanic-post-item .post-meta .post-categories,
.mechanic-archive .mechanic-post-item .post-meta .post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mechanic-archive .mechanic-post-item .post-meta .post-categories a,
.mechanic-archive .mechanic-post-item .post-meta .post-tags a {
  color: #007cba;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: #f0f8ff;
  font-size: 0.8rem;
}
.mechanic-archive .mechanic-post-item .post-meta .post-categories a:hover,
.mechanic-archive .mechanic-post-item .post-meta .post-tags a:hover {
  background: #007cba;
  color: #fff;
}
.mechanic-archive .mechanic-post-item .post-excerpt {
  color: #666;
  margin-bottom: 1rem;
}
.mechanic-archive .mechanic-post-item .protection-status {
  margin-bottom: 1rem;
}
.mechanic-archive .mechanic-post-item .protection-status .protected-badge {
  display: inline-block;
  background: #d63638;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}
.mechanic-archive .mechanic-post-item .read-more .read-more-link {
  display: inline-block;
  background: #007cba;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.mechanic-archive .mechanic-post-item .read-more .read-more-link:hover {
  background: #005a87;
}
.mechanic-archive .no-posts {
  text-align: center;
  padding: 3rem;
  background: #f9f9f9;
  border-radius: 8px;
}
.mechanic-archive .no-posts h2 {
  color: #333;
  margin-bottom: 1rem;
}
.mechanic-archive .no-posts p {
  color: #666;
}

@media print, screen and (max-width: 767px) {
  .mechanic-archive .archive-header .archive-title {
    font-size: 2rem;
  }
  .mechanic-archive .mechanic-posts-grid {
    grid-template-columns: 1fr;
  }
}
.post-type-archive-news .post-page__title {
  background: url(./../../images/news/news.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media print, screen and (max-width: 900px) {
  .news-body {
    grid-template-columns: 1fr;
  }
}
.news-archive .news-body {
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .news-archive .news-body {
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-archive .news-body {
    margin-top: 2rem;
  }
}

.news-filter-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .news-filter-select {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: clamp(1rem, 1.5vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-filter-select {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.news-filter-select__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .news-filter-select__group {
    width: auto;
    gap: clamp(0.5rem, 0.8vw, 0.75rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-filter-select__group {
    gap: 0.75rem;
  }
}

.news-filter-select__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2733;
  white-space: nowrap;
  min-width: 4.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .news-filter-select__label {
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
    min-width: clamp(4.5em, 6vw, 5em);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-filter-select__label {
    font-size: 0.95rem;
    min-width: 5em;
  }
}

.news-filter-select__control {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news-filter-select__control::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1f2733;
}
.news-filter-select__control select {
  width: 100%;
  min-width: 160px;
  padding: 0.5rem 2.25rem 0.5rem 0.85rem;
  border: 1px solid #cdd3da;
  background-color: #fff;
  font-size: 0.9rem;
  color: #1f2733;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.news-filter-select__control select:focus {
  border-color: #094;
  outline: none;
}
.news-filter-select__control select:hover {
  border-color: #9ca6b4;
}
@media print, screen and (min-width: 768px) {
  .news-filter-select__control {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .news-filter-select__control::after {
    right: clamp(0.875rem, 1.2vw, 1rem);
    border-left: clamp(5px, 0.8vw, 6px) solid transparent;
    border-right: clamp(5px, 0.8vw, 6px) solid transparent;
    border-top: clamp(5px, 0.8vw, 6px) solid #1f2733;
  }
  .news-filter-select__control select {
    width: auto;
    min-width: clamp(160px, 22vw, 180px);
    padding: clamp(0.45rem, 0.7vw, 0.55rem) clamp(2rem, 3vw, 2.25rem) clamp(0.45rem, 0.7vw, 0.55rem) clamp(0.75rem, 1.1vw, 0.85rem);
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-filter-select__control::after {
    right: 1rem;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1f2733;
  }
  .news-filter-select__control select {
    min-width: 180px;
    padding: 0.55rem 2.25rem 0.55rem 0.85rem;
    font-size: 0.95rem;
  }
}

.news-list {
  background: #fff;
  padding: 1.5rem 0;
}
@media print, screen and (min-width: 768px) {
  .news-list {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
}
@media print, screen and (min-width: 1000px) {
  .news-list {
    padding: 2.5rem 0;
  }
}

.news-group {
  display: none;
}
.news-group.is-active {
  display: block;
}

.news-list__empty {
  padding: 1.25rem 0;
  color: #7c8594;
  text-align: center;
  font-size: 0.9rem;
}
@media print, screen and (min-width: 768px) {
  .news-list__empty {
    padding: clamp(1.25rem, 2.5vw, 1.5rem) 0;
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-list__empty {
    padding: 1.5rem 0;
    font-size: 0.95rem;
  }
}

.news-list__empty--filtered {
  padding: 1.5rem 0;
  color: #7c8594;
  text-align: center;
  font-size: 0.9rem;
}
@media print, screen and (min-width: 768px) {
  .news-list__empty--filtered {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-list__empty--filtered {
    padding: 2rem 0;
    font-size: 1rem;
  }
}

.news-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .news-pagination {
    gap: clamp(0.5rem, 0.8vw, 0.5rem);
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-pagination {
    gap: 0.5rem;
    margin-top: 2.5rem;
  }
}

.news-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media print, screen and (min-width: 768px) {
  .news-pagination__list {
    gap: clamp(0.5rem, 0.8vw, 0.5rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-pagination__list {
    gap: 0.5rem;
  }
}

.news-pagination__button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #cdd3da;
  background: #fff;
  color: #1f2733;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.news-pagination__button:hover {
  border-color: #094;
  color: #094;
}
.news-pagination__button.is-active {
  background: #094;
  border-color: #094;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .news-pagination__button {
    width: clamp(36px, 5vw, 40px);
    height: clamp(36px, 5vw, 40px);
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-pagination__button {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

.news-empty {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6e9ed;
  padding: 2rem 1rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .news-empty {
    border-radius: clamp(12px, 2.3vw, 18px);
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 2vw, 1.5rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-empty {
    border-radius: 18px;
    padding: 3rem 1.5rem;
  }
}

.news-empty__body {
  max-width: 100%;
  margin: 0 auto;
}
.news-empty__body h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1f2733;
}
.news-empty__body p {
  color: #7c8594;
  line-height: 1.6;
  font-size: 0.9rem;
}
@media print, screen and (min-width: 768px) {
  .news-empty__body {
    max-width: clamp(480px, 65vw, 520px);
  }
  .news-empty__body h2 {
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  }
  .news-empty__body p {
    font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  }
}
@media print, screen and (min-width: 1000px) {
  .news-empty__body {
    max-width: 520px;
  }
  .news-empty__body h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .news-empty__body p {
    font-size: 0.95rem;
  }
}

.post-case-study .print-button {
  text-align: right;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  color: #333;
  border: 1px solid #333;
  padding: 0.5em 1em;
}
.post-case-study .product__info {
  margin-bottom: 40px;
}
.post-case-study .product__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.post-case-study .case-study-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.post-case-study .case-study-single .case-study-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}
.post-case-study .case-study-single .case-study-header .case-study-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.post-case-study .case-study-single .case-study-header .case-study-client {
  margin-bottom: 1rem;
}
.post-case-study .case-study-single .case-study-header .case-study-client .label {
  font-weight: bold;
  color: #666;
  margin-right: 0.5rem;
}
.post-case-study .case-study-single .case-study-header .case-study-client .value {
  color: #333;
  font-weight: 500;
}
.post-case-study .case-study-single .case-study-header .case-study-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.post-case-study .case-study-single .case-study-header .case-study-meta .meta-item .label {
  font-weight: bold;
  color: #666;
  margin-right: 0.5rem;
}
.post-case-study .case-study-single .case-study-header .case-study-meta .meta-item .value {
  color: #333;
}
.post-case-study .case-study-single .case-study-image {
  margin-bottom: 2rem;
}
.post-case-study .case-study-single .case-study-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.post-case-study .case-study-single .case-study-content {
  margin-bottom: 2rem;
}
.post-case-study .case-study-single .case-study-content p {
  margin-bottom: 1rem;
}
.post-case-study .case-study-single .case-study-details .case-study-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
}
.post-case-study .case-study-single .case-study-details .case-study-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007cba;
}
.post-case-study .case-study-single .case-study-details .case-study-section .content p {
  margin-bottom: 1rem;
}
.post-case-study .case-study-single .case-study-details .case-study-section.testimonial {
  background: #f0f8ff;
  border-left: 4px solid #007cba;
}
.post-case-study .case-study-single .case-study-details .case-study-section.testimonial blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  padding: 1rem;
  background: white;
  border-radius: 4px;
}
.post-case-study .case-study-single .case-study-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}
.post-case-study .case-study-single .case-study-footer .case-study-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-previous,
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-previous a,
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-next a {
  display: block;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-previous a:hover,
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-next a:hover {
  background: #e9e9e9;
}
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-previous a .nav-label,
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-next a .nav-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-previous a .nav-title,
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-next a .nav-title {
  display: block;
  font-weight: bold;
  color: #333;
}
.post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-next {
  text-align: right;
}
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags {
  margin-bottom: 1rem;
}
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories .label,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags .label {
  font-weight: bold;
  color: #666;
  margin-right: 0.5rem;
}
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories .category-link,
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories .tag-link,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags .category-link,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags .tag-link {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  margin: 0.2rem;
  background: #007cba;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories .category-link:hover,
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories .tag-link:hover,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags .category-link:hover,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags .tag-link:hover {
  background: #005a87;
}
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories .tag-link,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags .tag-link {
  background: #666;
}
.post-case-study .case-study-single .case-study-footer .case-study-categories .categories .tag-link:hover,
.post-case-study .case-study-single .case-study-footer .case-study-categories .tags .tag-link:hover {
  background: #444;
}
.post-case-study .construction-txt {
  margin: 100px auto;
  background: #f5f5f5;
  padding: 5% 10%;
}
.post-case-study .work-content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.post-case-study .work-content-table th,
.post-case-study .work-content-table td {
  border: 1px solid #666666;
  padding: 8px 12px;
  text-align: left;
}
.post-case-study .work-content-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}
.post-case-study .work-content-table td {
  color: #ccc;
}
.post-case-study .work-content-table .selected-menu td {
  color: #333;
}
.post-case-study .contamination-table {
  table-layout: auto;
}
.post-case-study .contamination-table tr td:nth-of-type(1) {
  width: 15%;
}
.post-case-study .contamination-table tr td:nth-of-type(2) {
  width: 35%;
  text-align: left;
}
.post-case-study .contamination-table tr td:nth-of-type(3) {
  width: 50%;
}
.post-case-study .contamination-table th,
.post-case-study .contamination-table td {
  vertical-align: middle;
  border: 1px solid #666666;
  text-align: center;
  width: auto;
  padding: 8px 12px;
}
.post-case-study .contamination-image {
  text-align: center;
  vertical-align: middle;
}
.post-case-study .contamination-image > img {
  display: inline;
}
.post-case-study .adjustment-conditions-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.post-case-study .adjustment-conditions-table th,
.post-case-study .adjustment-conditions-table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
}
.post-case-study .adjustment-conditions-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  width: 50%;
}
.post-case-study .contamination-result {
  padding: 1rem;
  background-color: #e8f4fd;
  border-left: 4px solid #007cba;
  border-radius: 4px;
  margin: 1rem 0;
}
.post-case-study .construction-info-table th,
.post-case-study .construction-info-table td,
.post-case-study .car-info-table th,
.post-case-study .car-info-table td,
.post-case-study .contamination-table th,
.post-case-study .contamination-table td {
  color: #333;
}
@media print, screen and (max-width: 767px) {
  .post-case-study .case-study-single {
    padding: 1rem;
  }
  .post-case-study .case-study-single .case-study-header .case-study-title {
    font-size: 1.5rem;
  }
  .post-case-study .case-study-single .case-study-header .case-study-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .post-case-study .case-study-single .case-study-footer .case-study-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .post-case-study .case-study-single .case-study-footer .case-study-navigation .nav-next {
    text-align: left;
  }
  .post-case-study .case_study-archive .case_study-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .post-case-study .work-content-table,
  .post-case-study .adjustment-conditions-table {
    font-size: 0.9rem;
  }
  .post-case-study .work-content-table th,
  .post-case-study .work-content-table td,
  .post-case-study .adjustment-conditions-table th,
  .post-case-study .adjustment-conditions-table td {
    padding: 6px 8px;
  }
}
.post-case-study .print-button-container {
  text-align: right;
}

@media print, screen and (max-width: 767px) {
  .post-case-study .print-button-container {
    display: none !important;
  }
}

.works-search__categories {
  margin-bottom: 20px;
}
.works-search__categories span {
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works-search__categories span:first-child {
  cursor: default;
}
.works-search__categories .search-keyword {
  cursor: pointer;
}
.works-search__categories .search-keyword:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.works-search__categories .work-search__keyword--tag {
  text-decoration: none;
  color: #333;
}
.works-search__categories .work-search__keyword--tag:not(:first-of-type) {
  margin-left: 1em;
}

.works-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.works-search__form input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}
.works-search__form button {
  padding: 12px 24px;
  background: #094;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.works-list {
  margin: 40px 0;
}
.works-list h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
.works-list .works-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.works-list .works-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-list .works-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.works-list .works-card:hover .works-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works-list .works-card__img {
  height: 200px;
  overflow: hidden;
}
.works-list .works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-list .works-card__meta {
  padding: 15px 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.works-list .works-card__meta .works-card__label {
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}
.works-list .works-card__meta .works-card__date {
  color: #666;
  font-size: 14px;
}
.works-list .works-card__meta .works-card__new {
  background: #ff4757;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}
.works-list .works-card__title {
  padding: 0 20px 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.works-list .works-card__desc {
  padding: 0 20px 20px;
}
.works-list .works-card__desc .post-summary {
  color: #666;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.works-list .works-card.sticky-post {
  border: 2px solid gold;
  position: relative;
}
.works-list .works-card.sticky-post::before {
  content: "注目";
  position: absolute;
  top: 10px;
  right: 10px;
  background: gold;
  color: #333;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}
.works-list .works-card.search-highlight {
  border: 2px solid #0073aa !important;
  -webkit-animation: searchPulse 2s ease-in-out;
          animation: searchPulse 2s ease-in-out;
}

@media print, screen and (max-width: 767px) {
  .works-list .works-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .works-list .works-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@keyframes searchPulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.posts-display-info {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  text-align: right;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 480px) {
  .works-search__categories span {
    padding: 6px 12px;
    font-size: 12px;
    margin: 0 4px 6px 0;
  }
  .works-search__form input[type=text] {
    padding: 10px 12px;
    font-size: 14px;
  }
  .works-search__form button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .works-list .works-cards {
    gap: 15px;
  }
  .works-list .works-card__img {
    height: 120px;
  }
  .works-list .works-card__meta {
    padding: 12px 15px 8px;
  }
  .works-list .works-card__meta .works-card__label,
  .works-list .works-card__meta .works-card__new {
    font-size: 11px;
    padding: 3px 6px;
  }
  .works-list .works-card__meta .works-card__date {
    font-size: 12px;
  }
  .works-list .works-card__title {
    padding: 0 15px 8px;
    font-size: 15px;
  }
  .works-list .works-card__desc {
    padding: 0 15px 15px;
  }
  .works-list .works-card__desc .post-summary {
    font-size: 13px;
  }
}
.works-load-more {
  text-align: center;
  margin-top: 40px;
}
.works-load-more .load-more-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px 0;
  width: 100%;
  color: #094;
  border: 1px solid #094;
  border-radius: 25px;
  background: transparent;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works-load-more .load-more-button:hover:not(:disabled) {
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: linear-gradient(135deg, #094 0%, #094 100%);
}
.works-load-more .load-more-button:active:not(:disabled) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.works-load-more .load-more-button:disabled {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #666;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.works-load-more .load-more-button.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #094;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.works-load-more .load-more-button.loading:hover::after {
  border-top-color: #fff;
}

@keyframes spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(360deg);
            transform: translateY(-50%) rotate(360deg);
  }
}
@media print, screen and (max-width: 767px) {
  .works-load-more .load-more-button {
    padding: 12px 0;
    font-size: 14px;
    max-width: 280px;
  }
}
.print-logo {
  display: none !important;
}

@media print {
  .print-logo {
    display: block !important;
    width: 100px;
    height: auto;
    z-index: 999;
    margin: 25px 0;
  }
  .article-header-block {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
    page-break-before: auto !important;
    -webkit-column-break-before: auto !important;
       -moz-column-break-before: auto !important;
            break-before: auto !important;
    page-break-after: auto !important;
    -webkit-column-break-after: auto !important;
       -moz-column-break-after: auto !important;
            break-after: auto !important;
    display: block !important;
    margin-bottom: 0 !important;
    orphans: 3 !important;
    widows: 3 !important;
  }
  .post_case-study_name {
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    orphans: 3 !important;
    widows: 3 !important;
  }
  .article-box__meta {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    orphans: 3 !important;
    widows: 3 !important;
  }
  .post_case-study_name + .article-box__meta {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    margin-top: 0 !important;
  }
  .print-block {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  .work-content-table.Work-details_table {
    table-layout: auto;
    width: 100%;
  }
  .work-content-table.Work-details_table th,
  .work-content-table.Work-details_table td {
    border: 1px solid #666666;
    padding: 8px 12px;
    text-align: left;
    width: auto;
  }
  .work-content-table.Work-details_table th {
    background-color: #f5f5f5;
    font-weight: bold;
  }
  .work-content-table.Work-details_table td {
    color: #ccc !important;
  }
  .work-content-table.Work-details_table .selected-menu td {
    color: #333 !important;
  }
}
#post-product .product__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  #post-product .product__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
#post-product .curtain-text {
  font-size: 120%;
  font-weight: bold;
  background: #094;
  padding: 1em;
}
#post-product .curtain-text strong {
  color: #fff;
}
#post-product .product-thumbnail {
  border: none;
  background: #f5f5f5;
}
#post-product .product-thumbnail img {
  display: block;
  max-width: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #post-product .product-thumbnail img {
    max-width: 100%;
  }
}
#post-product .product-price-group {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 767px) {
  #post-product .product-price-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
  }
}
#post-product .product-subcategory {
  font-weight: bold;
}
#post-product .product-subcategory,
#post-product .product-tags {
  display: inline-block;
  vertical-align: middle;
}
#post-product .product-tag {
  display: inline-block;
  margin-left: 0.5em;
  padding: 4px 12px;
  color: #094;
  background: #094;
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #094;
  border-radius: 12px;
  text-decoration: none;
  vertical-align: middle;
}
#post-product .product-name {
  margin: 1em 0;
}
#post-product .product-name-en {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  border: none;
  padding: 0;
}
#post-product .product-name-kana {
  font-size: 1rem;
}
#post-product .product-patent {
  display: inline-block;
  padding: 12px 20px;
  margin: 0.5em 0;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #post-product .product-patent {
    padding: 10px 16px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
#post-product .product-catch-copy {
  margin: 1em 0;
  font-size: 1.25rem;
  font-weight: bold;
}
#post-product .product-description {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #post-product .product-description {
    font-size: 13px;
  }
}
#post-product .product-contaminant-checker-intro {
  margin-top: 32px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro {
    margin-top: 24px;
    padding: 20px 16px;
  }
}
#post-product .product-contaminant-checker-intro__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro__content {
    gap: 16px;
  }
}
#post-product .product-contaminant-checker-intro__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro__lead {
    font-size: 0.95rem;
  }
}
#post-product .product-contaminant-checker-intro__lead strong {
  color: #009944;
  font-weight: 600;
}
#post-product .product-contaminant-checker-intro__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro__main {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#post-product .product-contaminant-checker-intro__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#post-product .product-contaminant-checker-intro__image figure {
  margin: 0;
}
#post-product .product-contaminant-checker-intro__img {
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro__img {
    max-width: 100%;
    margin: 0 auto;
  }
}
#post-product .product-contaminant-checker-intro__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
#post-product .product-contaminant-checker-intro__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #009944;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro__title {
    font-size: 1.1rem;
  }
}
#post-product .product-contaminant-checker-intro__description {
  margin: 0;
  line-height: 1.8;
  color: #333;
  font-size: 0.95rem;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro__description {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
#post-product .product-contaminant-checker-intro__link {
  margin-top: 4px;
}
#post-product .product-contaminant-checker-intro__button {
  display: inline-block;
  padding: 12px 24px;
  background: #009944;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (max-width: 767px) {
  #post-product .product-contaminant-checker-intro__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
#post-product .product-contaminant-checker-intro__button:hover {
  background: #007a35;
}
#post-product .product-intro-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
#post-product .product-intro-section__heading {
  margin-bottom: 24px;
  line-height: 1.7;
}
#post-product .product-intro-section__text p {
  margin-bottom: 1em;
  line-height: 1.8;
}
#post-product .product-intro-section__text p:last-child {
  margin-bottom: 0;
}
#post-product .product-feature-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
#post-product .product-feature-section__title {
  border: none;
  background: none;
  position: relative;
  padding: 0;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: bold;
  color: #383838;
  letter-spacing: 0.25em;
}
#post-product .product-feature-section__title::before {
  content: attr(data-en);
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #094;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__title {
    margin-bottom: 32px;
    padding: 20px 24px;
    font-size: 1.6rem;
  }
}
#post-product .product-feature-section__subtitle {
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__subtitle {
    margin-bottom: 16px;
  }
}
#post-product .product-feature-section__description {
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__description {
    margin-bottom: 32px;
  }
}
#post-product .product-feature-section__group {
  margin-bottom: 30px;
}
#post-product .product-feature-section__group-title {
  margin-bottom: 24px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #383838;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__group-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}
#post-product .product-feature-section__group-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__group-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
#post-product .product-feature-section__group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#post-product .product-feature-section__group-item:hover {
  background: #f0f0f0;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
#post-product .product-feature-section__group-item img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
#post-product .product-feature-section__group-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #383838;
}
#post-product .product-feature-section__group--effects {
  margin-bottom: 40px;
}
#post-product .product-feature-section__group--two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__group--two-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
#post-product .product-feature-section__group--two-columns > .product-feature-section__function-content {
  margin-bottom: 0;
}
#post-product .product-feature-section__three-steps {
  padding: 40px;
  background: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-steps {
    padding: 24px 20px;
    margin-bottom: 32px;
  }
}
#post-product .product-feature-section__three-steps-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-steps-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}
#post-product .product-feature-section__three-steps-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-steps-list {
    gap: 24px;
    margin-bottom: 24px;
  }
}
#post-product .product-feature-section__three-steps-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-steps-item {
    gap: 16px;
    padding: 20px 16px;
  }
}
#post-product .product-feature-section__three-steps-number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #009944 0%, #007a35 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-steps-number {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}
#post-product .product-feature-section__three-steps-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#post-product .product-feature-section__three-steps-text {
  margin: 0;
  line-height: 1.8;
  color: #555;
  font-size: 0.95rem;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-steps-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
#post-product .product-feature-section__three-steps-text strong {
  color: #333;
  font-weight: 600;
}
#post-product .product-feature-section__attachment-title {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__attachment-title {
    margin-bottom: 20px;
  }
}
#post-product .product-feature-section__attachment-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__attachment-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#post-product .product-feature-section__attachment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#post-product .product-feature-section__attachment-list li {
  padding-left: 2em;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.6;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__attachment-list li {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
}
#post-product .product-feature-section__attachment-list li::marker {
  display: none;
}
#post-product .product-feature-section__attachment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: normal;
}
#post-product .product-feature-section__attachment-list li:nth-child(1)::before {
  content: "①";
}
#post-product .product-feature-section__attachment-list li:nth-child(2)::before {
  content: "②";
}
#post-product .product-feature-section__attachment-list li:nth-child(3)::before {
  content: "③";
}
#post-product .product-feature-section__attachment-list li:nth-child(4)::before {
  content: "④";
}
#post-product .product-feature-section__attachment-list li:nth-child(5)::before {
  content: "⑤";
}
#post-product .product-feature-section__attachment-list li:nth-child(6)::before {
  content: "⑥";
}
#post-product .product-feature-section__attachment-list li:nth-child(7)::before {
  content: "⑦";
}
#post-product .product-feature-section__attachment-list li:nth-child(8)::before {
  content: "⑧";
}
#post-product .product-feature-section__attachment-list li:nth-child(9)::before {
  content: "⑨";
}
#post-product .product-feature-section__attachment-list li:nth-child(10)::before {
  content: "⑩";
}
#post-product .product-feature-section__attachment-list li:nth-child(11)::before {
  content: "⑪";
}
#post-product .product-feature-section__attachment-list li:nth-child(12)::before {
  content: "⑫";
}
#post-product .product-feature-section__attachment-list li:nth-child(13)::before {
  content: "⑬";
}
#post-product .product-feature-section__attachment-list li:nth-child(14)::before {
  content: "⑭";
}
#post-product .product-feature-section__attachment-list li:nth-child(15)::before {
  content: "⑮";
}
#post-product .product-feature-section__attachment-list li:nth-child(16)::before {
  content: "⑯";
}
#post-product .product-feature-section__attachment-list li:nth-child(17)::before {
  content: "⑰";
}
#post-product .product-feature-section__attachment-list li:nth-child(18)::before {
  content: "⑱";
}
#post-product .product-feature-section__attachment-list li:nth-child(19)::before {
  content: "⑲";
}
#post-product .product-feature-section__attachment-list li:nth-child(20)::before {
  content: "⑳";
}
#post-product .product-feature-section__attachment-image {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__attachment-image {
    text-align: center;
  }
}
#post-product .product-feature-section__attachment-img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__attachment-img {
    margin: 0 auto;
  }
}
#post-product .product-feature-section__kit-contents-title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__kit-contents-title {
    margin-bottom: 12px;
  }
}
#post-product .product-feature-section__kit-contents-description {
  margin-bottom: 24px;
  color: #666;
  font-size: 0.95rem;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__kit-contents-description {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
}
#post-product .product-feature-section__kit-contents-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__kit-contents-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#post-product .product-feature-section__kit-contents-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
#post-product .product-feature-section__kit-contents-image {
  margin: 0 0 12px 0;
}
#post-product .product-feature-section__kit-contents-img {
  max-width: 100%;
  height: auto;
  display: block;
}
#post-product .product-feature-section__kit-contents-label {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__kit-contents-label {
    font-size: 0.9rem;
  }
}
#post-product .product-feature-section__image {
  margin: 0;
  text-align: center;
}
#post-product .product-feature-section__image img {
  max-width: 100%;
  height: auto;
}
#post-product .product-feature-section__three-functions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-functions {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
#post-product .product-feature-section__three-functions-text p {
  margin-bottom: 1em;
  line-height: 1.8;
}
#post-product .product-feature-section__three-functions-text p:last-child {
  margin-bottom: 0;
}
#post-product .product-feature-section__three-functions-lead {
  position: relative;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__three-functions-lead {
    padding: 20px 24px;
    font-size: 1.1rem;
  }
  #post-product .product-feature-section__three-functions-lead::before, #post-product .product-feature-section__three-functions-lead::after {
    font-size: 1.3rem;
  }
}
#post-product .product-feature-section__three-functions-image {
  text-align: center;
}
#post-product .product-feature-section__three-functions-diagram {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#post-product .product-feature-section .three-functions-diagram {
  position: relative;
  width: 100%;
  padding-top: 90%;
  margin: 0 auto;
}
#post-product .product-feature-section .three-functions-diagram__title {
  position: absolute;
  top: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: bold;
  color: #3498db;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__title {
    font-size: 0.95rem;
    top: 1%;
  }
}
#post-product .product-feature-section .three-functions-diagram__circle {
  position: absolute;
  width: 26%;
  padding-top: 26%;
  border-radius: 50%;
  background: #fff;
  border: 3px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
#post-product .product-feature-section .three-functions-diagram__circle--cleaning {
  top: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-color: #3498db;
}
#post-product .product-feature-section .three-functions-diagram__circle--cleaning .three-functions-diagram__text-jp {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #3498db;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__circle--cleaning .three-functions-diagram__text-jp {
    font-size: 1rem;
    top: 35%;
  }
}
#post-product .product-feature-section .three-functions-diagram__circle--cleaning .three-functions-diagram__text-en {
  position: absolute;
  bottom: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: bold;
  color: #999;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__circle--cleaning .three-functions-diagram__text-en {
    font-size: 0.7rem;
    bottom: 15%;
  }
}
#post-product .product-feature-section .three-functions-diagram__circle--protection {
  bottom: 28%;
  left: 15%;
  border-color: #27ae60;
}
#post-product .product-feature-section .three-functions-diagram__circle--protection .three-functions-diagram__text-jp {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #27ae60;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__circle--protection .three-functions-diagram__text-jp {
    font-size: 1rem;
    top: 35%;
  }
}
#post-product .product-feature-section .three-functions-diagram__circle--protection .three-functions-diagram__text-en {
  position: absolute;
  bottom: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: bold;
  color: #999;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__circle--protection .three-functions-diagram__text-en {
    font-size: 0.7rem;
    bottom: 15%;
  }
}
#post-product .product-feature-section .three-functions-diagram__circle--recovery {
  bottom: 28%;
  right: 15%;
  border-color: #ff8c00;
}
#post-product .product-feature-section .three-functions-diagram__circle--recovery .three-functions-diagram__text-jp {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff8c00;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__circle--recovery .three-functions-diagram__text-jp {
    font-size: 1rem;
    top: 35%;
  }
}
#post-product .product-feature-section .three-functions-diagram__circle--recovery .three-functions-diagram__text-en {
  position: absolute;
  bottom: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: bold;
  color: #999;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__circle--recovery .three-functions-diagram__text-en {
    font-size: 0.7rem;
    bottom: 15%;
  }
}
#post-product .product-feature-section .three-functions-diagram__center {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
#post-product .product-feature-section .three-functions-diagram__center-text {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__center-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
#post-product .product-feature-section .three-functions-diagram__arrow {
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 6%;
  background: #ccc;
  z-index: 1;
}
#post-product .product-feature-section .three-functions-diagram__arrow::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #ccc;
}
#post-product .product-feature-section .three-functions-diagram__result {
  position: absolute;
  bottom: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 85%;
  z-index: 1;
}
#post-product .product-feature-section .three-functions-diagram__result-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section .three-functions-diagram__result-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
#post-product .product-feature-section .three-functions-diagram__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#post-product .product-feature-section__function-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__function-title {
    font-size: 1.2rem;
  }
}
#post-product .product-feature-section__function-subtitle {
  margin-bottom: 16px;
  line-height: 1.6;
}
#post-product .product-feature-section__function-subtitle mark {
  background: transparent;
}
#post-product .product-feature-section__function-description {
  margin-bottom: 16px;
  line-height: 1.8;
}
#post-product .product-feature-section__function-note {
  margin-bottom: 32px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}
#post-product .product-feature-section__function-note mark {
  background: transparent;
  font-weight: bold;
}
#post-product .product-feature-section__function-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#post-product .product-feature-section__function-content:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__function-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#post-product .product-feature-section__function-content--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__function-content--vertical {
    gap: 20px;
  }
}
#post-product .product-feature-section__function-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#post-product .product-feature-section__function-text p {
  margin: 0;
}
#post-product .product-feature-section__function-point {
  padding: 24px;
  margin: 0;
  background: #f0f8f4;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__function-point {
    padding: 20px 16px;
  }
}
#post-product .product-feature-section__function-point-icon {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 18px;
  background: #009944;
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__function-point-icon {
    margin-bottom: 10px;
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}
#post-product .product-feature-section__function-point-text {
  margin: 0;
  line-height: 1.9;
  color: #333;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__function-point-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
#post-product .product-feature-section__function-image {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 10px solid #f5f5f5;
  border-radius: 8px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#post-product .product-feature-section__function-image p {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: bold;
  background: #f5f5f5;
  padding: 0.5em;
  display: inline-block;
  letter-spacing: 0.05em;
}
#post-product .product-feature-section__function-image figure {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#post-product .product-feature-section__function-image .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__function-image .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#post-product .product-feature-section__function-image .wp-block-columns .wp-block-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
#post-product .product-feature-section__function-image .wp-block-columns .wp-block-column .product-feature-section__function-image-label {
  margin-bottom: 0;
  text-align: center;
}
#post-product .product-feature-section__function-image .wp-block-columns .wp-block-column .product-feature-section__function-image-label.no-border {
  border: none;
}
#post-product .product-feature-section__function-image .wp-block-columns .wp-block-column .product-feature-section__image {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#post-product .product-feature-section__function-image .wp-block-columns .wp-block-column .product-feature-section__image img {
  height: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#post-product .product-feature-section__function-image-label.has-text-align-center {
  text-align: center;
}
#post-product .product-feature-section__function-image-label.has-text-align-left {
  text-align: left;
}
#post-product .product-feature-section__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #post-product .product-feature-section__button-area {
    margin-top: 32px;
  }
}
#post-product .product-feature-section__button-wrapper {
  max-width: 320px;
  width: 100%;
}
#post-product .product-feature-section__button {
  display: block;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  background-color: #009944;
  color: #fff;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#post-product .product-feature-section__button:hover {
  background-color: #007a35;
  color: #fff;
}
#post-product .product-effects-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#post-product .product-effects-list__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list__lead {
    margin-bottom: 24px;
    padding: 16px 0;
    gap: 12px;
  }
}
#post-product .product-effects-list__lead-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  background: #009944;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list__lead-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
#post-product .product-effects-list__lead-text {
  margin: 0;
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  font-weight: 500;
}
#post-product .product-effects-list__lead-text strong {
  color: #009944;
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list__lead-text {
    font-size: 1rem;
  }
  #post-product .product-effects-list__lead-text strong {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#post-product .product-effects-list__column {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
#post-product .product-effects-list__column:hover {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list__column {
    padding: 16px;
  }
}
#post-product .product-effects-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #009944;
}
#post-product .product-effects-list__category {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
#post-product .product-effects-list__category strong {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list__category {
    font-size: 1.1rem;
  }
}
#post-product .product-effects-list__percent-badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 60px;
  padding: 8px 16px;
  background: #009944;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 153, 68, 0.3);
          box-shadow: 0 2px 4px rgba(0, 153, 68, 0.3);
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list__percent-badge {
    min-width: 50px;
    padding: 6px 12px;
    font-size: 1rem;
  }
}
#post-product .product-effects-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
#post-product .product-effects-list__items li {
  list-style-type: none;
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #333;
}
#post-product .product-effects-list__items li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: #009944;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #post-product .product-effects-list__items li {
    padding: 8px 0;
    padding-left: 24px;
    font-size: 0.9rem;
  }
  #post-product .product-effects-list__items li::before {
    top: 8px;
    font-size: 1rem;
  }
}
#post-product .cleanliness-color {
  color: #3498db;
}
#post-product .protection-color {
  color: #27ae60;
}
#post-product .recovery-color {
  color: #e74c3c;
}
#post-product .product-expected-effects-section {
  position: relative;
}
#post-product .product-expected-effects-section__group {
  margin: 0 auto;
  padding: 0;
}
#post-product .product-expected-effects-section__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 20px;
}
#post-product .product-expected-effects-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#009944), to(#00c853));
  background: linear-gradient(90deg, #009944 0%, #00c853 100%);
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  #post-product .product-expected-effects-section__title {
    font-size: 1.7rem;
    margin-bottom: 36px;
    padding-bottom: 16px;
  }
}
#post-product .product-expected-effects-section__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #post-product .product-expected-effects-section__items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#post-product .product-expected-effects-section__items li {
  list-style-type: none;
  padding: 24px 28px;
  padding-left: 64px;
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  font-size: 1.05rem;
  color: #2c2c2c;
  line-height: 1.7;
  font-weight: 500;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
#post-product .product-expected-effects-section__items li:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(0, 153, 68, 0.2);
}
#post-product .product-expected-effects-section__items li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #094;
  border-radius: 50%;
}
#post-product .product-expected-effects-section__items li::after {
  content: "?";
  position: absolute;
  left: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  #post-product .product-expected-effects-section__items li {
    padding: 20px 24px;
    padding-left: 56px;
    font-size: 0.98rem;
  }
  #post-product .product-expected-effects-section__items li::before, #post-product .product-expected-effects-section__items li::after {
    left: 20px;
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}
#post-product .product-functions-section {
  background: #ffffff;
  position: relative;
}
#post-product .product-functions-section__group {
  margin: 0 auto;
}
#post-product .product-functions-section__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 20px;
}
#post-product .product-functions-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#009944), to(#00c853));
  background: linear-gradient(90deg, #009944 0%, #00c853 100%);
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  #post-product .product-functions-section__title {
    font-size: 1.7rem;
    margin-bottom: 36px;
    padding-bottom: 16px;
  }
}
#post-product .product-functions-section__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  #post-product .product-functions-section__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#post-product .product-functions-section__column {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e8ecef;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
#post-product .product-functions-section__column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#009944), to(#00c853));
  background: linear-gradient(90deg, #009944 0%, #00c853 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#post-product .product-functions-section__column:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
#post-product .product-functions-section__column:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 767px) {
  #post-product .product-functions-section__column {
    padding: 28px 24px;
  }
}
#post-product .product-functions-section__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
#post-product .product-functions-section__items li {
  list-style-type: none;
  padding: 14px 0;
  padding-left: 0;
  position: relative;
  font-size: 1.05rem;
  color: #2c2c2c;
  line-height: 1.8;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#post-product .product-functions-section__items li:last-child {
  border-bottom: none;
}
#post-product .product-functions-section__items li:first-child {
  font-weight: 700;
  font-size: 1.4rem;
  color: #009944;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid #e0e0e0;
  padding-left: 0;
  letter-spacing: 0.02em;
  position: relative;
}
#post-product .product-functions-section__items li:first-child::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#009944), to(#00c853));
  background: linear-gradient(90deg, #009944 0%, #00c853 100%);
}
#post-product .product-functions-section__items li:first-child::before {
  display: none;
}
#post-product .product-functions-section__items li:not(:first-child) {
  padding-left: 32px;
  position: relative;
}
#post-product .product-functions-section__items li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: #009944;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 153, 68, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 153, 68, 0.1);
}
#post-product .product-functions-section__items li:not(:first-child):hover {
  color: #009944;
  padding-left: 36px;
}
#post-product .product-functions-section__items li:not(:first-child):hover::before {
  -webkit-box-shadow: 0 0 0 4px rgba(0, 153, 68, 0.15);
          box-shadow: 0 0 0 4px rgba(0, 153, 68, 0.15);
}
@media screen and (max-width: 767px) {
  #post-product .product-functions-section__items li {
    padding: 12px 0;
    font-size: 1rem;
  }
  #post-product .product-functions-section__items li:first-child {
    font-size: 1.2rem;
    padding-bottom: 16px;
    margin-bottom: 12px;
  }
  #post-product .product-functions-section__items li:not(:first-child) {
    padding-left: 28px;
  }
  #post-product .product-functions-section__items li:not(:first-child):hover {
    padding-left: 32px;
  }
}
#post-product .no-addition, #post-product .color-red {
  color: #ff0000;
}

.product-post-template {
  padding: 0 0 50px;
  border-bottom: 1px solid #333;
}

.product-buttons-container {
  margin: 50px auto 0;
}
.product-buttons-container .product-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
@media print, screen and (max-width: 767px) {
  .product-buttons-container .product-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
.product-buttons-container .product-buttons a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  background: #fff;
  text-align: center;
  color: #094;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #094;
  border-radius: 3px;
}
.product-buttons-container .product-buttons a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #094;
  border-right: 3px solid #094;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 2px);
  right: 2em;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-buttons-container .product-buttons a:hover::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 1.5em;
}
@media print, screen and (max-width: 767px) {
  .product-buttons-container .product-buttons a {
    font-size: 12px;
  }
}
.product-buttons-container .product-buttons a:hover,
.product-buttons-container .product-buttons a.active {
  background: #094;
  color: #fff;
  border: 1px solid #094;
}

.product-info-precautions button {
  padding: 0;
  background: none;
  color: #0073aa;
  font-weight: bold;
}

.product-info-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .product-info-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.product-info-left,
.product-info-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-table-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}
.product-table-container table.product-table {
  border: 1px solid #ddd;
}
.product-table-container table.product-table.compact {
  font-size: 0.9rem;
}
.product-table-container table.product-table.compact td,
.product-table-container table.product-table.compact th {
  padding: 8px 12px;
}
.product-table-container table td,
.product-table-container table th {
  padding: 1em;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}
.product-table-container table th {
  width: 150px;
  background: #f8f9fa;
  font-weight: bold;
  color: #333;
}
.product-table-container table td {
  font-size: 14px;
}
.product-table-container table table {
  margin: 10px 0;
  border: 1px solid #ccc;
}
.product-table-container table table td,
.product-table-container table table th {
  padding: 8px 10px;
  font-size: 0.9rem;
}
.product-table-container ul,
.product-table-container ol {
  margin: 10px 0;
  padding-left: 20px;
}
.product-table-container ul li,
.product-table-container ol li {
  margin-bottom: 5px;
}
.product-table-container p {
  margin-bottom: 10px;
}
.product-table-container strong {
  font-weight: bold;
  color: #333;
}
.product-table-container em {
  font-style: italic;
  color: #666;
}
.product-table-container a {
  color: #0073aa;
  text-decoration: none;
}
.product-table-container a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .product-info-left h2,
  .product-info-right h2 {
    font-size: 1.3rem;
  }
  .product-table-container table {
    font-size: 0.9rem;
  }
  .product-table-container table td,
  .product-table-container table th {
    padding: 8px 10px;
  }
  .product-table-container table th {
    width: 100px;
  }
}
.single-news .post-news .single-news__date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.single-news .post-news .single-news__date-main {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding-left: 1.8em;
}
.single-news .post-news .single-news__date-main::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/single/watch.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.single-news .post-news .single-news__date-category {
  padding: 2px 8px;
  background: #094;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
}
.single-news .post-news .single-news__title-area {
  margin-top: 20px;
}
.single-news .post-news .single-news__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 20px;
  padding: 0;
  color: #333;
  border: none;
}
.single-news .post-news .post__contents {
  margin-top: 40px;
  line-height: 1.8;
}
.single-news .post-news .post__contents a {
  color: #094;
}
.single-news .post-news .post__contents h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #094;
}
.single-news .post-news .post__contents h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 1.5em 0 1em;
}
.single-news .post-news .post__contents h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 1.25em 0 0.75em;
}
.single-news .post-news .post__contents p {
  margin-bottom: 1.5em;
}
.single-news .post-news .post__contents ul,
.single-news .post-news .post__contents ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
.single-news .post-news .post__contents ul li,
.single-news .post-news .post__contents ol li {
  margin-bottom: 0.75em;
}
.single-news .post-news .post__contents blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  background: #f5f5f5;
  border-left: 4px solid #094;
  font-style: italic;
}
.single-news .post-news .post__contents img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}
.single-news .post-news .post__contents table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
.single-news .post-news .post__contents table th,
.single-news .post-news .post__contents table td {
  padding: 6px 8px;
  border: 1px solid #ddd;
  text-align: left;
}
.single-news .post-news .post__contents table th {
  background: #f5f5f5;
  font-weight: bold;
}
@media print, screen and (max-width: 767px) {
  .single-news .post-news .single-news__title {
    font-size: 1.5rem;
  }
  .single-news .post-news .single-news__date-main {
    font-size: 1.25rem;
  }
  .single-news .post-news .post__contents h2 {
    font-size: 1.5rem;
  }
  .single-news .post-news .post__contents h3 {
    font-size: 1.25rem;
  }
}

.single-case_study .post-case-study .single-case-study__date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-case_study .post-case-study .single-case-study__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 20px;
  padding: 0;
  color: #333;
  border: none;
}
.single-case_study .post-case-study .single-case-study__date-main {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding-left: 1.8em;
}
.single-case_study .post-case-study .single-case-study__date-main::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/single/watch.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.single-case_study .post-case-study .single-case-study__date-category {
  padding: 2px 8px;
  background: #094;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
}
.single-case_study .post-case-study .single-case-study__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 20px;
  padding: 0;
  color: #333;
  border: none;
}
.single-case_study .post-case-study .single-case-study__header {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-case_study .post-case-study .product__container {
  margin-top: 40px;
}
.single-case_study .post-case-study .product__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.single-case_study .post-case-study .construction-image {
  border: none;
}
.single-case_study .post-case-study .construction-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-case_study .post-case-study .product__detail h3 {
  font-size: 18px;
  font-weight: bold;
}
.single-case_study .post-case-study .work-content-table {
  width: 100%;
  border-collapse: collapse;
}
.single-case_study .post-case-study .work-content-table th,
.single-case_study .post-case-study .work-content-table td {
  padding: 6px 8px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 14px;
}
.single-case_study .post-case-study .work-content-table th {
  background: #f5f5f5;
  font-weight: bold;
}
.single-case_study .post-case-study .work-content-table td {
  background: #fff;
}
.single-case_study .post-case-study .product__contents {
  margin-top: 40px;
}
.single-case_study .post-case-study .post__contents {
  margin-top: 40px;
  line-height: 1.8;
}
.single-case_study .post-case-study .post__contents a {
  color: #094;
}
.single-case_study .post-case-study .post__contents h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #094;
}
.single-case_study .post-case-study .post__contents h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 1.5em 0 1em;
}
.single-case_study .post-case-study .post__contents h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 1.25em 0 0.75em;
}
.single-case_study .post-case-study .post__contents p {
  margin-bottom: 1.5em;
}
.single-case_study .post-case-study .post__contents ul,
.single-case_study .post-case-study .post__contents ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
.single-case_study .post-case-study .post__contents ul li,
.single-case_study .post-case-study .post__contents ol li {
  margin-bottom: 0.75em;
}
.single-case_study .post-case-study .post__contents blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  background: #f5f5f5;
  border-left: 4px solid #094;
  font-style: italic;
}
.single-case_study .post-case-study .post__contents img {
  max-width: 100%;
  height: auto;
}
.single-case_study .post-case-study .post__contents table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
.single-case_study .post-case-study .post__contents table th,
.single-case_study .post-case-study .post__contents table td {
  padding: 6px 8px;
  border: 1px solid #ddd;
  text-align: left;
}
.single-case_study .post-case-study .post__contents table th {
  background: #f5f5f5;
  font-weight: bold;
}
.single-case_study .post-case-study .article-header-block {
  margin-bottom: 40px;
}
.single-case_study .post-case-study .post_case-study_name_text {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px;
}
.single-case_study .post-case-study .post-card__new {
  padding: 4px 12px;
  background: #ff6b6b;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 4px;
}
.single-case_study .post-case-study .related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
.single-case_study .post-case-study .related-articles__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.single-case_study .post-case-study .related-articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.single-case_study .post-case-study .related-articles__item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.single-case_study .post-case-study .related-articles__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.single-case_study .post-case-study .related-articles__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.single-case_study .post-case-study .related-articles__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}
.single-case_study .post-case-study .related-articles__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .single-case_study .post-case-study .product__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .single-case_study .post-case-study .related-articles__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media print, screen and (max-width: 767px) {
  .single-case_study .post-case-study .single-news__title {
    font-size: 1.5rem;
  }
  .single-case_study .post-case-study .single-news__date-main {
    font-size: 1.25rem;
  }
  .single-case_study .post-case-study .single-case-study__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-case_study .post-case-study .product__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .single-case_study .post-case-study .related-articles__list {
    grid-template-columns: 1fr;
  }
  .single-case_study .post-case-study .post__contents {
    font-size: 13px;
  }
  .single-case_study .post-case-study .post__contents p {
    font-size: 13px;
  }
  .single-case_study .post-case-study .post__contents li {
    font-size: 13px;
  }
  .single-case_study .post-case-study .post__contents h2 {
    font-size: 1.5rem;
  }
  .single-case_study .post-case-study .post__contents h3 {
    font-size: 1.25rem;
  }
  .single-case_study .post-case-study .post__contents table th,
  .single-case_study .post-case-study .post__contents table td {
    font-size: 13px;
  }
}

.post-case-study.content-wrapper.example #post-case-study .right .conditions,
.post-case-study.content-wrapper.example .right .conditions {
  margin-bottom: 10px;
  padding-left: 10px;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list,
.post-case-study.content-wrapper.example .right .example-list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .no-result,
.post-case-study.content-wrapper.example .right .example-list .no-result {
  color: #999;
  text-align: center;
  width: 100%;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece,
.post-case-study.content-wrapper.example .right .example-list .example-piece {
  margin-bottom: 10px;
  padding: 0 5px;
  width: 33%;
  display: block;
  padding: 0;
  width: 100%;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner,
.post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner {
  height: 100%;
  padding: 10px;
  margin-bottom: 10px;
  padding: 10px;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner a,
.post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner a {
  border: none;
  display: block;
  height: 100%;
  width: 100%;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner .thumb,
.post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner .thumb {
  margin-bottom: 15px;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner .thumb img,
.post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner .thumb img {
  width: 100%;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner .title,
.post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner .title {
  font-weight: 700;
  line-height: 1.5;
}
.post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner .category,
.post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner .category {
  color: #666;
  margin-top: 10px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail h3.example-title,
.post-case-study.content-wrapper.example .right.example-detail h3.example-title {
  border-bottom: 2px solid #cbcbcb;
  line-height: 1.5;
  margin-bottom: 10px;
  padding: 0 0 10px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail h3:not(.example-title),
.post-case-study.content-wrapper.example .right.example-detail h3:not(.example-title) {
  border-bottom: none;
  position: relative;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .date,
.post-case-study.content-wrapper.example .right.example-detail .date {
  color: #666;
  margin-bottom: 30px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .info,
.post-case-study.content-wrapper.example .right.example-detail .info {
  border: 1px solid #cbcbcb;
  line-height: 1.6;
  margin-bottom: 50px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .info > div,
.post-case-study.content-wrapper.example .right.example-detail .info > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .info > div img,
.post-case-study.content-wrapper.example .right.example-detail .info > div img {
  width: 100%;
  height: auto;
  display: block;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .info img,
.post-case-study.content-wrapper.example .right.example-detail .info img {
  margin: auto;
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  display: block;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .info h4,
.post-case-study.content-wrapper.example .right.example-detail .info h4 {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .info .info-right,
.post-case-study.content-wrapper.example .right.example-detail .info .info-right {
  padding-left: 10px;
  padding-left: 0;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice,
.post-case-study.content-wrapper.example .right.example-detail .voice {
  margin-bottom: 60px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice h4,
.post-case-study.content-wrapper.example .right.example-detail .voice h4 {
  color: #6ebf21;
  line-height: 18px;
  margin-bottom: 10px;
  padding: 0;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice h4 img,
.post-case-study.content-wrapper.example .right.example-detail .voice h4 img {
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
  height: 27px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice p,
.post-case-study.content-wrapper.example .right.example-detail .voice p {
  background-color: #f6f6f6;
  line-height: 1.7;
  padding: 20px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice .voice-img,
.post-case-study.content-wrapper.example .right.example-detail .voice .voice-img {
  background-color: #f6f6f6;
  padding: 10px 30px 30px;
}
/* .post-case-study.content-wrapper.example #post-case-study .right.example-detail .back a,
.post-case-study.content-wrapper.example .right.example-detail .back a {
  border: none;
  color: #6ebf21;
} */
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .back a:before,
.post-case-study.content-wrapper.example .right.example-detail .back a:before {
  content: "<";
  padding-right: 10px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body,
.post-case-study.content-wrapper.example .right.example-detail .content-body {
  margin-bottom: 40px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body h3,
.post-case-study.content-wrapper.example .right.example-detail .content-body h3 {
  border-bottom: 2px solid #cbcbcb;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 0 0 10px;
  font-weight: 700;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .body-wrapper,
.post-case-study.content-wrapper.example .right.example-detail .content-body .body-wrapper {
  margin-bottom: 20px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout,
.post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2,
.post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2 .layout-child,
.post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 .layout-child {
  padding: 15px;
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2 .layout-child .thumb,
.post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 .layout-child .thumb {
  margin-bottom: 10px;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2 .layout-child .thumb img,
.post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 .layout-child .thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2 .layout-child .caption,
.post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 .layout-child .caption {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.layout-child.no-content {
  visibility: hidden;
}

.post-case-study.content-wrapper.example .voices {
  margin: auto;
  width: 100%;
  max-width: 800px;
}
.post-case-study.content-wrapper.example .voices .voice-piece {
  margin-bottom: 20px;
}
.post-case-study.content-wrapper.example .voices .voice-piece a {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  width: 100%;
}
.post-case-study.content-wrapper.example .voices .voice-piece a:hover {
  background-color: #f5f5f5;
}
.post-case-study.content-wrapper.example .voices .voice-piece a:hover .thumb img {
  opacity: 0.6;
}
.post-case-study.content-wrapper.example .voices .voice-piece a:hover .detail span {
  background-color: #6ebf21 !important;
  color: #fff !important;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .thumb {
  margin-bottom: 30px;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .thumb img {
  width: 100%;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .info {
  padding-left: 15px;
  position: relative;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .info .title {
  font-weight: 700;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .info .category {
  color: #666;
  margin-bottom: 10px;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .info .voice {
  line-height: 1.7;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .info .detail {
  bottom: 10px;
  position: absolute;
  right: 10px;
  margin-top: 30px;
  position: static;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .info .detail span {
  background-color: #fff;
  border: 2px solid #6ebf21;
  border-radius: 18px;
  color: #6ebf21;
  display: block;
  line-height: 36px;
  margin: 0 auto;
  text-align: center;
  width: 240px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post-case-study.content-wrapper.example .voices .voice-piece a .info .detail span:after {
  content: ">";
  padding-left: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .info,
  .post-case-study.content-wrapper.example .right.example-detail .info {
    gap: 15px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2,
  .post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 {
    gap: 15px;
  }
  .post-case-study.content-wrapper.example .voices {
    width: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .post-case-study.content-wrapper.example .left {
    padding: 0;
  }
  .post-case-study.content-wrapper.example .left .search-wrapper {
    margin: 0 -20px 30px;
    padding: 0;
  }
  .post-case-study.content-wrapper.example .left .search-wrapper ul li a {
    line-height: 64.6px;
    padding-left: 20px;
  }
  .post-case-study.content-wrapper.example .left .search-wrapper ul li:after {
    right: 20px;
  }
  .post-case-study.content-wrapper.example .left .search-wrapper input[type=text] {
    display: block;
    height: 45px;
    margin: auto;
    padding: 10px;
    width: 90%;
  }
  .post-case-study.content-wrapper.example .left .search-wrapper h4 {
    padding: 0 10px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right .example-list .no-result,
  .post-case-study.content-wrapper.example .right .example-list .no-result {
    color: #999;
    text-align: center;
  }
  .post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece,
  .post-case-study.content-wrapper.example .right .example-list .example-piece {
    display: block;
    padding: 0;
    width: 100%;
  }
  .post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner,
  .post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner {
    margin-bottom: 10px;
    padding: 10px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right .example-list .example-piece .example-piece-inner .thumb img,
  .post-case-study.content-wrapper.example .right .example-list .example-piece .example-piece-inner .thumb img {
    width: 100%;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail h3.example-title,
  .post-case-study.content-wrapper.example .right.example-detail h3.example-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .info,
  .post-case-study.content-wrapper.example .right.example-detail .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 12px;
    margin-bottom: 30px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .info > div,
  .post-case-study.content-wrapper.example .right.example-detail .info > div {
    width: 100%;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .info img,
  .post-case-study.content-wrapper.example .right.example-detail .info img {
    margin-bottom: 20px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .info h4,
  .post-case-study.content-wrapper.example .right.example-detail .info h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .info .info-right,
  .post-case-study.content-wrapper.example .right.example-detail .info .info-right {
    padding-left: 0;
    font-size: 14px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice,
  .post-case-study.content-wrapper.example .right.example-detail .voice {
    margin-bottom: 40px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice h4,
  .post-case-study.content-wrapper.example .right.example-detail .voice h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice h4 img,
  .post-case-study.content-wrapper.example .right.example-detail .voice h4 img {
    height: 20px;
    margin-right: 5px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .voice p,
  .post-case-study.content-wrapper.example .right.example-detail .voice p {
    font-size: 14px;
    padding: 15px;
    line-height: 1.6;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body,
  .post-case-study.content-wrapper.example .right.example-detail .content-body {
    margin-bottom: 30px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body h3,
  .post-case-study.content-wrapper.example .right.example-detail .content-body h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2,
  .post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2 .layout-child,
  .post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 .layout-child {
    padding: 12px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2 .layout-child .thumb,
  .post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 .layout-child .thumb {
    margin-bottom: 8px;
  }
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .content-body .additional-layout.type2 .layout-child .caption,
  .post-case-study.content-wrapper.example .right.example-detail .content-body .additional-layout.type2 .layout-child .caption {
    font-size: 13px;
    line-height: 1.5;
  }
  .post-case-study.content-wrapper.example .load-more a {
    border-radius: 34.5px;
    height: 69px;
    line-height: 24px;
  }
  .post-case-study.content-wrapper.example .voices {
    width: 100%;
  }
  .post-case-study.content-wrapper.example .voices .voice-piece a .thumb {
    margin-bottom: 30px;
  }
  .post-case-study.content-wrapper.example .voices .voice-piece a .thumb img {
    width: 100%;
  }
  .post-case-study.content-wrapper.example .voices .voice-piece a .info .detail {
    margin-top: 30px;
    position: static;
  }
  .post-case-study.content-wrapper.example .voices .voice-piece a .info .detail span {
    border-radius: 18px;
    line-height: 36px;
    width: 240px;
  }
}
.post-case-study.content-wrapper.example a {
  word-break: break-all;
}

.post__hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.post__hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post__hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .post__container {
    display: block;
  }
}

.about .president {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.about .president p {
  margin: 0;
}
.about .president .president_name {
  text-indent: 0 !important;
  margin-left: 0.5em;
  font-size: 1.5rem;
}

.post__date {
  margin-bottom: 1.5em;
  color: #666;
  font-size: 0.9rem;
}
.post__date .post__category {
  color: #009944;
  font-weight: bold;
  margin-right: 1em;
}
.post__date .post__time {
  margin-left: 1em;
}

.post__content .single-case-study__date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post__content .single-case-study__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto 20px;
  padding: 0;
  color: #333;
  border: none;
}
.post__content .single-case-study__date-main {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding-left: 1.8em;
}
.post__content .single-case-study__date-main::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/single/watch.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.post__content .single-case-study__date-category {
  padding: 2px 8px;
  background: #094;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
}
.post__content .single-case-study__title-area {
  margin-top: 20px;
}
.post__content .single-case-study__header {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post__content .post__new {
  padding: 4px 12px;
  background: #ff6b6b;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 4px;
}
.post__content .post__contents {
  margin-top: 40px;
  line-height: 1.8;
}
.post__content .post__contents a {
  color: #094;
}
.post__content .post__contents h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
}
.post__content .post__contents h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 1.5em 0 1em;
}
.post__content .post__contents h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 1.25em 0 0.75em;
}
.post__content .post__contents p {
  margin-bottom: 1.5em;
}
.post__content .post__contents ul,
.post__content .post__contents ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
.post__content .post__contents ul li,
.post__content .post__contents ol li {
  margin-bottom: 0.75em;
}
.post__content .post__contents blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  background: #f5f5f5;
  border-left: 4px solid #094;
  font-style: italic;
}
.post__content .post__contents img {
  max-width: 100%;
  height: auto;
}

.post__content .post__contents table th,
.post__content .post__contents table td {
  padding: 6px 8px;
  border: 1px solid #ddd;
  text-align: left;
}
.post__content .post__contents table th {
  background: #f5f5f5;
  font-weight: bold;
}

@media print, screen and (max-width: 767px) {
  .post__content .single-case-study__title {
    font-size: 1.5rem;
  }
  .post__content .single-case-study__date-main {
    font-size: 1.25rem;
  }
  .post__content .single-case-study__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post__content .post__contents {
    font-size: 13px;
  }
  .post__content .post__contents p {
    font-size: 13px;
  }
  .post__content .post__contents li {
    font-size: 13px;
  }
  .post__content .post__contents h2 {
    font-size: 1.5rem;
  }
  .post__content .post__contents h3 {
    font-size: 1.25rem;
  }
  .post__content .post__contents table th,
  .post__content .post__contents table td {
    font-size: 13px;
  }
}
.post__img {
  margin: 2em auto;
}
.post__img .post__img--img {
  width: 100%;
  height: auto;
}

.related-articles {
  margin: 100px auto;
}
.related-articles__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 2em;
  color: #383838;
  text-align: center;
}
.related-articles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 600px) {
  .related-articles__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.related-articles__link {
  text-decoration: none;
  color: inherit;
  gap: 20px;
}
.related-articles__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  background: #eee;
  width: 100%;
  height: 200px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.related-articles__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.related-articles__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.related-articles__catdate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.85em;
  color: #009944;
  margin-bottom: 2px;
}
.related-articles__catdate .related-articles__cat {
  font-weight: bold;
  padding-right: 1em;
}
.related-articles__catdate .related-articles__date {
  position: relative;
  padding-left: 1em;
  color: #888;
  font-weight: normal;
}
.related-articles__catdate .related-articles__date::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 1px;
  height: 1em;
  background: #888;
}
.related-articles__text {
  font-size: 0.97em;
  color: #383838;
  font-weight: 500;
}

#ez-toc-container {
  display: block;
  border: none;
  padding: 2em 6em;
}
#ez-toc-container br {
  display: none;
}

.related-articles__title {
  font-size: 1.6rem;
}

.single--categorys {
  margin: 100px auto;
  margin: 100px auto;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
}
.category-list .category-item {
  position: relative;
  display: block;
  color: #383838;
  text-decoration: none;
  padding: 1em 0.5em;
  border-top: 1px solid #383838;
}
.category-list .category-item:nth-last-of-type(-n+4) {
  border-bottom: 1px solid #383838;
}
.category-list .category-item:hover {
  color: #094;
}
.category-list .category-item:hover::after {
  right: 0;
  border-right: 2px solid #094;
  border-bottom: 2px solid #094;
}
.category-list .category-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #383838;
  border-bottom: 2px solid #383838;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media print {
  .post {
    background: #fff !important;
  }
  .post__hero {
    display: none !important;
  }
  .post__container {
    display: block !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .post__title {
    page-break-after: avoid !important;
  }

  .post__img img {
    max-width: 100% !important;
    height: auto !important;
  }
  .post__contents {
    color: #000 !important;
  }
  .post__contents h1,
  .post__contents h2,
  .post__contents h3,
  .post__contents h4,
  .post__contents h5,
  .post__contents h6 {
    page-break-after: avoid !important;
    page-break-inside: avoid !important;
  }
  .post__contents p {
    page-break-inside: avoid !important;
  }
  .post__contents table {
    border-collapse: collapse !important;
  }
  .post__contents a {
    text-decoration: underline !important;
  }
  .related-articles {
    page-break-inside: avoid !important;
  }

}
@media print and (max-width: 768px) {
  .post__container {
    display: block !important;
  }
}
.single-news .single-news__back-to-archive {
  margin: 100px auto;
}
@media print, screen and (max-width: 767px) {
  .single-news .single-news__back-to-archive {
    margin: 60px auto;
  }
}
.back a::before {
  display: none;
}
.single-news .single-news__back-to-archive a,.back a {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #222;
  padding: 22px 0 20px;
  border: 1px solid #d7d8d9;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  font-size: 14px;
  text-decoration: none !important;
}
@media print, screen and (max-width: 767px) {
  .single-news .single-news__back-to-archive a,.back a {
    max-width: 100%;
    padding: 18px 20px 16px;
    font-size: 13px;
  }
}
.single-news .single-news__back-to-archive:hover a,.back a:hover {
  background-color: #009944;
}
.single-news .single-news__back-to-archive:hover a, .single-news .single-news__back-to-archive:hover p ,.back a:hover{
  color: #fff !important;
}

@media print {
  header,
  footer,
  .post__hero,
  .print-button-container, .single-case_study .btn-area,
  .single-case_study .back {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }
  body {
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
    zoom: 100% !important;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .no-print {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }
  .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
  }
  .wp-block-columns {
    max-width: 100% !important;
    width: 100% !important;
  }
  /* ①.voice h4 imgがdisplay:blockにならないようにする */
  .voice h4 img {
    display: inline !important;
  }
  /* ②.infoが横並びになるようにする */
  .post-case-study.content-wrapper.example #post-case-study .right.example-detail .info,
  .post-case-study.content-wrapper.example .right.example-detail .info {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
}
/* WordPress投稿記事用包括的スタイル */
/* ========================================
   基本リセット・ベース
======================================== */
/* 段落 */
.wp__contents p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.wp__contents p:last-child {
  margin-bottom: 0;
}

/* ========================================
   見出しスタイル
======================================== */
.wp__contents h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 2em 0 1em 0;
  padding-bottom: 0.5em;
  color: #333;
}
.wp__contents h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 2em 0 1em 0;
  padding: 0.5em 0;
}
.wp__contents h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1.5em 0 0.8em 0;
  padding-bottom: 0.3em;
  border-bottom: 2px solid #e9ecef;
  color: #333;
}
.wp__contents h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 1.2em 0 0.6em 0;
  color: #333;
}
.wp__contents h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 1em 0 0.5em 0;
  color: #333;
}
.wp__contents h6 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0.8em 0 0.4em 0;
  color: #666;
}

/* ========================================
   テキストスタイル
======================================== */
.wp__contents strong {
  font-weight: bold;
  color: #333;
}
.wp__contents em {
  font-style: italic;
  color: #666;
}
.wp__contents mark {
  background: #fff3cd;
  padding: 0.2em 0.4em;
  border-radius: 3px;
}
.wp__contents del {
  text-decoration: line-through;
  color: #999;
}
.wp__contents ins {
  text-decoration: underline;
  color: #094;
}


/* ========================================
   リスト
======================================== */
.wp__contents ul,
.wp__contents ol {
  margin: 1em 0 1.5em 0;
  padding-left: 2em;
}
.wp__contents li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}
.wp__contents ul li {
  list-style-type: disc;
}
.wp__contents ol li {
  list-style-type: decimal;
}
.wp__contents ul ul,
.wp__contents ol ol,
.wp__contents ul ol,
.wp__contents ol ul {
  margin: 0.5em 0;
}

/* ========================================
   引用
======================================== */
.wp__contents blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  border-left: 4px solid #094;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}
.wp__contents blockquote p {
  margin-bottom: 0.5em;
}
.wp__contents blockquote p:last-child {
  margin-bottom: 0;
}
.wp__contents cite {
  display: block;
  margin-top: 1em;
  font-size: 0.9em;
  color: #666;
  font-style: normal;
}

/* ========================================
   画像
======================================== */
.wp__contents img {
  max-width: 100%;
  height: auto;
}
.wp__contents .alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}
.wp__contents .alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}
.wp__contents .aligncenter {
  display: block;
  margin: 1.5em auto;
}

/* ========================================
   テーブル
======================================== */
.wp__contents table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
}
.wp__contents th,
.wp__contents td {
  padding: 1em;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.wp__contents th {
  background: #094;
  color: #fff;
  font-weight: bold;
}

/* ========================================
   コード
======================================== */
.wp__contents code {
  background: #f8f9fa;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #e83e8c;
}
.wp__contents pre {
  background: #f8f9fa;
  padding: 1.5em;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5em 0;
  border-left: 4px solid #094;
}
.wp__contents pre code {
  background: none;
  padding: 0;
  color: #333;
}

/* ========================================
   区切り線
======================================== */
.wp__contents hr {
  border: none;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#094), to(transparent));
  background: linear-gradient(to right, transparent, #094, transparent);
  margin: 3em 0;
}

/* ========================================
   ボタン
======================================== */
.wp__contents .wp-block-button {
  margin: 2em 0;
}
.wp__contents .wp-block-button__link {
  display: inline-block;
  padding: 1em 2em;
  background: #094;
  color: #fff !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wp__contents .wp-block-button__link:hover {
  background: #007a3a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 153, 68, 0.3);
          box-shadow: 0 4px 12px rgba(0, 153, 68, 0.3);
}

/* ========================================
   カラム
======================================== */
.wp__contents .wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2em 0;
  gap: 2em;
}
.wp__contents .wp-block-column {
  margin-bottom: 1em;
}

/* ========================================
   メディア
======================================== */
.wp__contents .wp-block-video {
  margin: 2em 0;
}
.wp__contents .wp-block-audio {
  margin: 2em 0;
}
.wp__contents .wp-block-embed {
  margin: 2em 0;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media print, screen and (max-width: 767px) {
  .wp__contents {
    font-size: 13px;
  }
  .wp__contents p {
    font-size: 13px;
  }
  .wp__contents li {
    font-size: 13px;
  }
  .wp__contents h1 {
    font-size: 2rem;
  }
  .wp__contents h2 {
    font-size: 1.5rem;
  }
  .wp__contents h3 {
    font-size: 1.25rem;
  }
  .wp__contents .alignleft,
  .wp__contents .alignright {
    float: none;
    margin: 1em auto;
    display: block;
  }
  .wp__contents table {
    font-size: 0.9em;
  }
  .wp__contents th,
  .wp__contents td {
    padding: 0.8em;
    font-size: 13px;
  }
}
/* ========================================
   印刷用スタイル
======================================== */
/* 印刷時のページ余白設定 */
@page {
  size: A4;
  margin: 1cm !important;
}
@media print {
  /* コンテンツエリアにパディングを設定してページ端から離す */
  body {
    zoom: 0.68 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* カラムレイアウトが崩れないようにコンテナの幅とパディングを設定 */
  .print-block,
  .print-block .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
  }
  /* .no-print 要素は印刷時に完全に非表示（余白も削除） */
  .no-print {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
  /* .print-block の前で改ページが起きないようにする */
  .print-block {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  /* .no-print の直後の .print-block の余白を削除 */
  .no-print + .print-block {
    margin-top: 0 !important;
    padding-top: 0 !important;
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
  }
  /* main や .post-case-study の余白も削除 */
  main.post-case-study,
  .post-case-study {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  /* カラムレイアウトが崩れないようにコンテナの幅を制限 */
  .product__container,
  section#post-case-study {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
  }
  .wp__contents {
    color: #000 !important;
  }
  .wp__contents h1,
  .wp__contents h2,
  .wp__contents h3,
  .wp__contents h4,
  .wp__contents h5,
  .wp__contents h6 {
    page-break-after: avoid;
  }
  .wp__contents p {
    page-break-inside: avoid;
  }
  .wp__contents img {
    height: auto !important;
  }
  .wp__contents a {
    text-decoration: underline !important;
  }
  /* ========================================
     事例紹介ページ 印刷用スタイル
  ======================================== */
  /* 印刷ボタンは非表示 */
  .print-button-container,
  .print-button {
    display: none !important;
  }
  /* 印刷用ロゴ */
  .print-logo {
    display: block !important;
    width: 100px;
    height: auto;
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  /* .print-logo の前の改ページを防ぐ */
  .print-block > .container:first-child {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
  }
  .print-block > .container > .article-header-block:first-child {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
  }
  .print-block > .container > .article-header-block > .article-box__text-inner:first-child {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
  }
  /* ヘッダーブロック */
  .article-header-block {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  .post_case-study_name {
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
  }
  .post_case-study_name_text {
    font-size: 1.8rem !important;
  }
  .article-box__meta {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
  }
  /* 製品情報エリア */
  .product__info {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  /* 事例紹介ページのグリッドレイアウトを保持 */
  .post-case-study .product__wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
  /* その他のページはブロック表示 */
  .product__wrapper:not(.post-case-study .product__wrapper) {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  .construction-image {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  .construction-image img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .product__detail h3 {
    font-size: 1.3rem !important;
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
  }
  /* テーブルスタイル */
  .work-content-table,
  .construction-info-table,
  .car-info-table,
  .contamination-table,
  .adjustment-conditions-table {
    width: 100% !important;
    border-collapse: collapse !important;
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
    font-size: 12px !important;
  }
  .work-content-table th,
  .work-content-table td,
  .construction-info-table th,
  .construction-info-table td,
  .car-info-table th,
  .car-info-table td,
  .contamination-table th,
  .contamination-table td,
  .adjustment-conditions-table th,
  .adjustment-conditions-table td {
    border: 1px solid #666666 !important;
  }
  .work-content-table th,
  .construction-info-table th,
  .car-info-table th,
  .contamination-table th,
  .adjustment-conditions-table th {
    font-weight: bold !important;
  }
  /* 事例紹介ページのテーブルスタイル保持 */
  .post-case-study .work-content-table .selected-menu td {
    font-weight: bold !important;
  }
  /* 事例紹介ページのコンタミ画像スタイル保持 */
  .post-case-study .contamination-image {
    text-align: center !important;
    vertical-align: middle !important;
  }
  .post-case-study .contamination-image > img {
    display: inline !important;
  }
  /* コンタミテーブルのレイアウト保持 */
  .post-case-study .contamination-table {
    table-layout: auto !important;
  }
  .post-case-study .contamination-table tr td:nth-of-type(1) {
    width: 15% !important;
  }
  .post-case-study .contamination-table tr td:nth-of-type(2) {
    width: 35% !important;
    text-align: left !important;
  }
  .post-case-study .contamination-table tr td:nth-of-type(3) {
    width: 50% !important;
  }
  .post-case-study .contamination-table th,
  .post-case-study .contamination-table td {
    vertical-align: middle !important;
    text-align: center !important;
  }
  /* その他の画像 */
  .contamination-image:not(.post-case-study .contamination-image) {
    text-align: center;
    vertical-align: middle;
  }
  .contamination-image img:not(.post-case-study .contamination-image > img) {
    max-width: 100% !important;
    height: auto !important;
    display: inline-block;
  }
  /* 事例紹介ページのセクションスタイル保持 */
  .post-case-study .case-study-section {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  .post-case-study .case-study-section h2,
  .post-case-study .case-study-section h3 {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
  }
  /* その他のセクション */
  .case-study-section:not(.post-case-study .case-study-section) {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  .case-study-section h3:not(.post-case-study .case-study-section h3) {
    font-size: 1.3rem !important;
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
  }
  /* コンテンツエリア */
  .product__contents,
  .product__contents.wp__contents {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  /* セクションとコンテナの表示確保 */
  section#post-case-study,
  .product__container,
  .container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  /* 改ページ制御 - style.css の設定を上書き */
  .print-block {
    /* style.css の page-break-inside: avoid を上書き */
    page-break-inside: auto !important;
    -webkit-column-break-inside: auto !important;
       -moz-column-break-inside: auto !important;
            break-inside: auto !important;
    orphans: 3 !important;
    widows: 3 !important;
    /* .print-block の前で改ページが起きないように */
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
  }
  .print-block > .container {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
  }
  /* .article-header-block の style.css の設定を上書き */
  .article-header-block {
    /* style.css の page-break-before: auto を上書き */
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  /* .print-logo を含む最初のセクション全体を改ページから保護 */
  .print-block > .container > .article-header-block:first-child {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  /* .print-logo 自体とその周辺を保護 */
  .print-logo,
  .article-box__text-inner .print-logo:first-child {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
    page-break-after: avoid !important;
    -webkit-column-break-after: avoid !important;
       -moz-column-break-after: avoid !important;
            break-after: avoid !important;
  }
  /* .article-box__text-inner が .print-logo を含む場合 */
  .article-box__text-inner:first-child {
    page-break-before: avoid !important;
    -webkit-column-break-before: avoid !important;
       -moz-column-break-before: avoid !important;
            break-before: avoid !important;
  }
  /* 非表示要素 */
  .no-print {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
  /* 事例紹介ページの製品情報エリアのマージン保持 */
  /* 調整条件テーブルのスタイル保持 */
  .post-case-study .adjustment-conditions-table th {
    width: 50% !important;
    font-size: 14px !important;
  }
  .post-case-study .adjustment-conditions-table td {
    font-size: 14px !important;
  }
  /* 施工画像のスタイル保持 */
  .post-case-study .construction-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
  }
  /* ========================================
     WordPressブロックカラム 印刷用スタイル
  ======================================== */
  /* カラムブロックのレイアウト保持（global-styles-inline-css のスタイルを保持） */
  .wp__contents .wp-block-columns,
  .wp__contents [class*=wp-block-columns],
  .wp__contents .wp-block-columns.is-layout-flex,
  .wp__contents .wp-block-columns.is-layout-grid,
  .wp__contents [class*=wp-container-core-columns],
  :where(.wp-block-columns.is-layout-flex),
  :where(.wp-block-columns.is-layout-grid) {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; /* 印刷時は横並びを強制 */
    max-width: 100% !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  /* カラムのスタイル保持 */
  .wp__contents .wp-block-column,
  .wp__contents [class*=wp-block-column] {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  /* カラム内の段落のマージン調整 */
  /* ========================================
     WordPress画像ブロック 印刷用スタイル
  ======================================== */
  /* 画像ブロックのスタイル保持 */
  .wp__contents .wp-block-image,
  .wp__contents figure,
  .wp__contents .wp-block-group .wp-block-image {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
    display: block !important;
  }
  .wp__contents .wp-block-image img,
  .wp__contents figure img,
  .wp__contents .wp-block-group .wp-block-image img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* 画像キャプション */
  .wp__contents .wp-block-image figcaption,
  .wp__contents figure figcaption {
    font-size: 0.9em !important;
    text-align: center !important;
  }
  /* 画像グループのスタイル保持 */
  .wp__contents .wp-block-group,
  .wp__contents [class*=wp-block-group] {
    page-break-inside: avoid !important;
    -webkit-column-break-inside: avoid !important;
       -moz-column-break-inside: avoid !important;
            break-inside: avoid !important;
  }
  /* カラム内の画像 */
}
/* WordPress投稿記事用 - 柔軟なCSS変数システム */
:root {
  /* カラーパレット */
  --primary-color: #094;
  --primary-hover: #007a3a;
  --text-color: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg-light: #f8f9fa;
  --border-color: #e9ecef;
  --border-primary: #094;
  --accent-color: #e50012;
  /* タイポグラフィ - スマホ用（デフォルト） */
  --font-size-base: 16px;
  --font-size-h1: 1.75rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  --line-height-base: 1.8;
  --line-height-heading: 1.3;
  /* スペーシング */
  --spacing-xs: 0.25em;
  --spacing-sm: 0.5em;
  --spacing-md: 1em;
  --spacing-lg: 1.5em;
  --spacing-xl: 2em;
  --spacing-xxl: 3em;
  /* ボーダー */
  --border-radius: 8px;
  --border-radius-sm: 3px;
  --border-width: 1px;
  --border-width-thick: 3px;
  /* シャドウ */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 153, 68, 0.3);
  /* トランジション */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   基本スタイル
======================================== */
.wp__contents {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}
.wp__contents p {
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-base);
}
.wp__contents p:last-child {
  margin-bottom: 0;
}

/* ========================================
   テキストスタイル
======================================== */
.wp__contents strong {
  font-weight: bold;
}
.wp__contents em {
  font-style: italic;
  color: var(--text-light);
}
.wp__contents mark {
  background: #fff3cd;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
}
.wp__contents del {
  text-decoration: line-through;
  color: var(--text-muted);
}
.wp__contents ins {
  text-decoration: underline;
  color: var(--primary-color);
}

/* ========================================
   リンク
======================================== */
.wp__contents a {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: color var(--transition-normal);
  transition: color var(--transition-normal);
}
.wp__contents a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* ========================================
   リスト
======================================== */
.wp__contents ul,
.wp__contents ol {
  margin: var(--spacing-md) 0 var(--spacing-lg) 0;
  padding-left: var(--spacing-xl);
}
.wp__contents li {
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-base);
}
.wp__contents ul li {
  list-style-type: disc;
}
.wp__contents ol li {
  list-style-type: decimal;
}

/* ========================================
   引用
======================================== */
.wp__contents blockquote {
  margin: var(--spacing-xl) 0;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-left: 4px solid var(--border-primary);
  background: var(--bg-light);
  font-style: italic;
  color: var(--text-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.wp__contents blockquote p {
  margin-bottom: var(--spacing-sm);
}
.wp__contents blockquote p:last-child {
  margin-bottom: 0;
}
.wp__contents cite {
  display: block;
  margin-top: var(--spacing-md);
  font-size: 0.9em;
  color: var(--text-muted);
  font-style: normal;
}

/* ========================================
   画像
======================================== */
.wp__contents img {
  max-width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform var(--transition-normal);
  transition: -webkit-transform var(--transition-normal);
  transition: transform var(--transition-normal);
  transition: transform var(--transition-normal), -webkit-transform var(--transition-normal);
}
.wp__contents .alignleft {
  text-align: left;
  margin: 0 var(--spacing-lg) var(--spacing-md) 0;
}
.wp__contents .alignright {
  text-align: right;
  margin: 0 0 var(--spacing-md) var(--spacing-lg);
}
.wp__contents .aligncenter {
  display: block;
  margin: var(--spacing-lg) auto;
  text-align: center;
}

/* ========================================
   テーブル
======================================== */
.wp__contents table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
}
.wp__contents th,
.wp__contents td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: var(--border-width) solid var(--border-color);
}
.wp__contents th {
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
}

/* ========================================
   ボタン
======================================== */
.wp__contents .wp-block-button__link {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  -webkit-transition: all var(--transition-normal);
  transition: all var(--transition-normal);
}
.wp__contents .wp-block-button__link:hover {
  background: var(--primary-hover);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}

/* ========================================
   カスタムクラス - テーマ別対応
======================================== */
.wp__contents {
  /* ダークテーマ用 */
  /* ミニマルテーマ用 */
  /* カラフルテーマ用 */
}
.wp__contents.theme-dark {
  --text-color: #fff;
  --text-light: #ccc;
  --text-muted: #999;
  --bg-light: #2a2a2a;
  --border-color: #444;
}
.wp__contents.theme-minimal {
  --primary-color: #000;
  --primary-hover: #333;
  --border-primary: #000;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
}
.wp__contents.theme-colorful {
  --primary-color: #ff6b6b;
  --primary-hover: #ff5252;
  --border-primary: #ff6b6b;
}

/* ========================================
   レスポンシブ対応
======================================== */
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  :root {
    --font-size-base: 16px;
    --font-size-h1: clamp(1.75rem, 3vw, 2rem);
    --font-size-h2: clamp(1.5rem, 2.5vw, 1.75rem);
    --font-size-h3: clamp(1.25rem, 2vw, 1.5rem);
    --font-size-h4: clamp(1.125rem, 1.8vw, 1.25rem);
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    --line-height-base: 1.8;
    --line-height-heading: 1.3;
  }
}
@media print, screen and (min-width: 1024px) and (max-width: 1439px) {
  :root {
    --font-size-base: 16px;
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.875rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    --line-height-base: 1.8;
    --line-height-heading: 1.3;
  }
}
@media print, screen and (min-width: 1440px) {
  :root {
    --font-size-base: 16px;
    --font-size-h1: 1.75rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 1rem;
    --line-height-base: 1.8;
    --line-height-heading: 1.3;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --spacing-xl: 1.5em;
    --spacing-xxl: 2em;
  }
  .wp__contents .alignleft,
  .wp__contents .alignright {
    float: none;
    margin: var(--spacing-md) auto;
    display: block;
  }
  .wp__contents table {
    font-size: 0.9em;
  }
  .wp__contents th,
  .wp__contents td {
    padding: var(--spacing-sm);
  }
}
/* ========================================
   ユーティリティクラス
======================================== */
.wp__contents .text-center {
  text-align: center;
}
.wp__contents .text-left {
  text-align: left;
}
.wp__contents .text-right {
  text-align: right;
}
.wp__contents .text-small {
  font-size: 0.9em;
}
.wp__contents .text-large {
  font-size: 1.1em;
}
.wp__contents .text-muted {
  color: var(--text-muted);
}
.wp__contents .text-primary {
  color: var(--primary-color);
}
.wp__contents .bg-light {
  background: var(--bg-light);
}
.wp__contents .border {
  border: var(--border-width) solid var(--border-color);
}
.wp__contents .rounded {
  border-radius: var(--border-radius);
}

/* ========================================
   目次
======================================== */
#ez-toc-container nav {
  margin-top: 1em;
}
#ez-toc-container li,
#ez-toc-container ul,
#ez-toc-container ul li,
#ez-toc-container div.ez-toc-widget-container,
#ez-toc-container div.ez-toc-widget-container li {
  line-height: 2;
}

.color-primary {
  color: var(--primary-color);
}

.color-accent {
  color: var(--accent-color);
}

/* 関連記事 */
.related-articles {
  margin: 100px auto;
}
.related-articles__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 2em;
  color: #383838;
  text-align: center;
  font-size: 1.6rem;
}
.related-articles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media print, screen and (max-width: 600px) {
  .related-articles__list {
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.related-articles__list.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media print, screen and (max-width: 768px) {
  .related-articles__list.grid-layout {
    grid-template-columns: 1fr;
  }
}
.related-articles__item {
  width: 33%;
  background: #fff;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media print, screen and (max-width: 768px) {
  .related-articles__item {
    width: 100%;
  } 
}

.related-articles__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.related-articles__link {
  text-decoration: none;
  color: inherit;
  gap: 20px;
  display: block;
}
.related-articles__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  background: #eee;
  width: 100%;
  height: 200px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.related-articles__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.related-articles__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.related-articles__catdate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.85em;
  color: #094;
  margin-bottom: 2px;
}
.related-articles__catdate .related-articles__cat {
  font-weight: bold;
  padding-right: 1em;
}
.related-articles__catdate .related-articles__date {
  position: relative;
  padding-left: 1em;
  color: #888;
  font-weight: normal;
}
.related-articles__catdate .related-articles__date::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 1px;
  height: 1em;
  background: #888;
}
.related-articles__text {
  font-size: 0.97em;
  color: #383838;
  font-weight: 500;
}

@media print {
  .related-articles {
    margin: 30px 0 !important;
    page-break-inside: avoid !important;
  }
  .related-articles__title {
    color: #000 !important;
  }
}

.manufacturing-hero{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
}
.manufacturing-hero__media img{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
}

.manufacturing-needs{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:start;
}
.manufacturing-needs__image img{
  width:100%;
  height:auto;
  display:block;
}
.manufacturing-needs__caption{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  font-size:14px;
  line-height:1.5;
}
.manufacturing-needs__capTitle{
  font-weight:700;
  margin-bottom:4px;
}

@media (max-width: 768px){
  .manufacturing-hero,
  .manufacturing-needs{
    grid-template-columns: 1fr;
  }
  .manufacturing-needs__caption{
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Usage Page Content Styles
   ======================================== */
/* タブコンテンツの初期状態（非表示） */
.usage-page__content {
  display: none;
}

.product_usage-template-default .usage-page__tabs-list {
  padding: 0;
  margin: 0;
}

.usage-page__content.active {
  display: block;
}

.product_usage-template-default .usage-page__content {
  position: relative;
  margin-bottom: 40px;
  padding: 0;
}

.product_usage-template-default .usage-page__content-title {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  padding-right: 100px;
  color: #333;
  line-height: 1.5;
  border-bottom: 3px solid #000;
  padding-bottom: .25em;
}



.product_usage-template-default .usage-page__content-subtitle {
  display: block;
  margin-left: 1em;
  font-weight: normal;
  line-height: 1.5;
  font-size: 80%;
}

.product_usage-template-default .usage-page__content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product_usage-template-default .usage-page__content-item {
  list-style: none;
  position: relative;
}

.product_usage-template-default .usage-page__content-item:last-child {
  border-bottom: none;
}


.product_usage-template-default .usage-page__content-item-title {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.6;
}

.product_usage-template-default .usage-page__content-item-title::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: .25em;
  background: url(./../images/usage-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1;
}

.product_usage-template-default .usage-page__content-item-text {
  color: #cf2e2e;
  line-height: 1.8;
  margin: 0;
}

/* タブレット対応（768px ~ 1023px） */
@media print, screen and (min-width: 768px) and (max-width: 1023px) {
  .product_usage-template-default .usage-page__content {
    margin-bottom: 2.5rem;
  }

  .product_usage-template-default .usage-page__content-title {
    padding-right: 90px;
    margin-bottom: 1.125rem;
  }

  .product_usage-template-default .usage-page__content-item-title {
    margin-bottom: 0.4375rem;
  }


}

/* スマホ対応（767px以下） */
@media print, screen and (max-width: 767px) {
  .product_usage-template-default .usage-page__content {
    margin-bottom: 1.875rem;
  }

  .product_usage-template-default .usage-page__content-title {
    line-height: 1.5;
  }
  .product_usage-template-default .usage-page__content-item-title {
    line-height: 1.5;
  }

  .product_usage-template-default .usage-page__content-item-text {
    line-height: 1.7;
  }
}

/* ========================================
   works-categories レイアウト
======================================== */
.works-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
  gap: 10px 15px;
}

.works-category-parent {
  margin-bottom: 15px;
  border-bottom: 1px solid #383838;
  padding: 0.5em 0.5em;
}

.works-category-parent a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color: #383838;
}


.works-category-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  margin-right: 8px;
  background-color: #ccc;
}

.works-category-name-ja {
  flex: 1;
}

.works-category-parent.is-active a {
  color: #094;
}

.works-category-children {
  list-style: none;
  padding: 0;
  margin: 0;
}

.works-category-child {
  margin-bottom: 8px;
}

.works-category-child:last-child {
  margin-bottom: 0;
}

.works-category-child a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #383838;
}
.works-category-child a::before {
  content: "・";
}


.works-category-child a:hover {
  color: #094;
  text-decoration: underline;
}

.works-category-child.is-active a {
  color: #094;
  font-weight: bold;
}

.works-category--arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #009b63;
  width: clamp(28px, 4.4vw, 35px);
  height: clamp(28px, 4.4vw, 35px);
  border-radius: 50%;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .works-category--arrow {
    width: clamp(32px, 4.4vw, 35px);
    height: clamp(32px, 4.4vw, 35px);
  }
}
@media print, screen and (min-width: 1000px) {
  .works-category--arrow {
    width: 35px;
    height: 35px;
  }
}
.works-category--arrow::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 50%;
}

.works-category-item.cars .works-category-icon{
  background: url(./../images/case-study/category-car-icon.svg);
}
.works-category-item.bikes .works-category-icon{
  background: url(./../images/case-study/category-bike-icon.svg);
}
.works-category-item.trucks .works-category-icon{
  background: url(./../images/case-study/category-truck-icon.svg);
}
.works-category-item.ships .works-category-icon{
  background: url(./../images/case-study/category-ships-icon.svg);
}

.works-category-item.pickup-case .works-category-icon{
  background: url(./../images/case-study/category-pickup-case-icon.svg);
}
.works-category-item.improvement-case .works-category-icon{
  background: url(./../images/case-study/category-improvement-case-icon.svg);
}
.works-category-item.construction-shop-introduction .works-category-icon{
  background: url(./../images/case-study/category-shop-icon.svg);
}
.works-category-item.paper .works-category-icon{
  background: url(./../images/case-study/category-paper-icon.svg);
}

/* タブレット対応（768px ~ 1023px） */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works-categories {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
  }


  .works-category-parent {
    margin-bottom: 12px;
  }

  .works-category-parent a {
    font-size: 0.95rem;
  }

  .works-category-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  .works-category-child a {
    font-size: 0.85rem;
  }
}

/* スマホ対応（767px以下） */
@media screen and (max-width: 767px) {
  .works-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .works-category-parent {
    margin-bottom: 10px;
  }

  .works-category-parent a {
    font-size: 0.9rem;
  }

  .works-category-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .works-category-child {
    margin-bottom: 6px;
  }

  .works-category-child a {
    font-size: 0.8rem;
  }
}


.works-category--arrow {}