@import "https://fonts.googleapis.com/css2?family=Poppins&display=swap";

@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap";

@import "https://fonts.googleapis.com/css2?family=Barlow:wght@600&display=swap";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 400;
}

body.is-menu-open {
  height: 100%;
  overflow: hidden;
}

body a,
body button {
  transition: .2s opacity;
  cursor: pointer;
}

body a:hover,
body button:hover {
  opacity: .6;
}

body a[href^=tel] {
  text-decoration: none;
  font-weight: normal;
  opacity: 1 !important;
}

body strong,
body b {
  font-weight: 500;
}

*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg *,symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

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

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

@-webkit-keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@-webkit-keyframes hover {
  0% {
    opacity: 0;
  }

  10% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hover {
  0% {
    opacity: 0;
  }

  10% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.c-accordion-btn {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 39px 5px 19px;
  border: 1px solid #000;
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: 500;
  position: relative;
  border-radius: 35px;
}

.c-accordion-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 6px;
  background: url("../images/common/icon_arrow.svg") no-repeat bottom center/100% 100%;
  z-index: 1;
  transition: all .3s ease;
}

.c-accordion-btn+* {
  margin-top: 20px;
}

.c-accordion-btn.is-active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

@-webkit-keyframes drop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes drop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.js-fade-in-left {
  transition: -webkit-clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) .3s;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) .3s;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) .3s, -webkit-clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) .3s;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.js-fade-in-left.slid__open {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.js-fadeIn,
.js-fadeIn-2,
.js-delay-item {
  opacity: 0;
}

.is-fadein {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.js-fadeleft {
  opacity: 0;
}

.is-fadeleft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  to {
    display: block;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  to {
    display: block;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.js-faderight {
  opacity: 0;
}

.is-faderight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    display: block;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    display: block;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.js-fixed {
  transition: .1s;
}

.js-fixed.hidden {
  opacity: 0;
}

[data-fade-anime] {
  opacity: 0;
}

.border-img,
.c-standards__img,
.c-mainvisual__pic,
.c-features__img {
  position: relative;
}

.border-img::before,
.c-standards__img::before,
.c-mainvisual__pic::before,
.c-features__img::before {
  position: absolute;
  content: "";
  z-index: -1;
  left: -6px;
  top: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background: #fff;
}

.border-img img,
.c-standards__img img,
.c-mainvisual__pic img,
.c-features__img img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.c-breadcrumbs {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.c-breadcrumbs li {
  white-space: nowrap;
  color: #046636;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4166666667;
  padding-right: 10px;
  letter-spacing: .03em;
}

.c-breadcrumbs li a {
  text-decoration: none;
  position: relative;
  padding-right: 15px;
  display: block;
  transition: all .3s ease;
  color: #000;
  font-weight: 400;
}

.c-breadcrumbs li a::after {
  position: absolute;
  top: 50%;
  right: -1px;
  content: "";
  background: url("../images/common/icon_breadcrumb.svg") no-repeat right center/100% 100%;
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 11px;
}

.c-breadcrumbs li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-btn {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  line-height: 1.4375;
  font-weight: 500;
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 11px 29px;
  position: relative;
  letter-spacing: .03em;
}

.c-btn--prev {
  padding-left: 43px;
}

.c-btn--prev::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 11px;
  background: url("../images/common/icon_arrow_left.svg") no-repeat left center/cover;
  z-index: 1;
}

.c-btn--next {
  padding-right: 43px;
}

.c-btn--next::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 11px;
  background: url("../images/common/icon_arrow_right.svg") no-repeat right center/cover;
  z-index: 1;
}

.c-btn-default {
  display: inline-block;
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 500;
  padding: 11px 29px;
  border: 1px solid #000;
  border-radius: 53px;
  position: relative;
  transition: all .3s ease;
  letter-spacing: .03em;
}

.c-btn-default::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -26px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 5px;
  background: url("../images/common/icon_arrow_btn_black.svg") no-repeat right center/cover;
  transition: all .3s ease;
}

.c-cta--en .c-cta__contact__inner {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-cta__link {
  margin-top: 15px;
}

.c-cta__link.is-center {
  text-align: center;
}

.c-cta__link a {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .03em;
  border-radius: 60px;
  border: 1px solid #fff;
}

.c-cta__link a:hover::after {
  -webkit-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}

.c-cta__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -26px;
  display: inline-block;
  width: 44px;
  aspect-ratio: 44/4;
  background: url("../images/top/icon_arrow_white.svg") no-repeat center center/contain;
}

.c-cta__recruit {
  padding: 20px;
  width: 100%;
  background: url("../images/common/bg_recruit_sp.webp") no-repeat center center/cover;
}

.c-cta__recruit__inner {
  background: rgba(0,0,0,.3);
  padding: 95px 20px;
}

.c-cta__recruit__title {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0,0,0,.23);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: .03em;
}

.c-cta__contact {
  width: 100%;
  padding: 20px;
}

.c-cta__contact__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 25px 20px;
  border-radius: 30px;
  background: #77b43d;
}

.c-cta__contact__icon {
  width: 90px;
}

.c-cta__contact__title {
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.c-category {
  margin-right: -30px;
  overflow: hidden;
}

.c-category__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-right: 17px;
}

.c-category .cat-item {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 20px;
  margin-right: 13px;
}

.c-category .cat-item__text {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: 500;
  padding: 5px 19px;
  border-radius: 35px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  transition: all .3s ease;
  letter-spacing: .03em;
}

.c-category .cat-item__input {
  all: revert;
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.c-category .cat-item__input:checked+.cat-item__text {
  border-color: #046636;
  background: #046636;
  color: #fff;
}

.c-category .cat-item.is-empty {
  pointer-events: none;
  opacity: .6;
}

.is-hide {
  display: none;
}

.c-company-nav {
  background: url("../images/common/bg_company_nav_sp.svg") no-repeat center center/cover;
  padding: 60px 0;
}

.c-company-nav li {
  display: block;
}

.c-company-nav li:nth-child(n+2) {
  margin-top: 20px;
}

.c-company-nav a {
  display: block;
  position: relative;
  border-radius: 30px;
  color: #fff;
  padding: 30px 30px 39px;
}

.c-company-nav a::after {
  position: absolute;
  content: "";
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 4px;
  background: url("../images/common/icon_arrow_white.svg") no-repeat right center/contain;
  z-index: 1;
}

.c-company-nav .u-bg-green {
  background: #1f9246;
}

.c-company-nav .u-bg-pink {
  background: #c9818e;
}

.c-company-nav .u-bg-purple {
  background: #877b99;
}

.c-company-nav__en {
  display: block;
  font-size: 22px;
  line-height: 1.45454545;
  font-weight: 500;
  letter-spacing: .03em;
}

.c-company-nav__ja {
  margin-top: 5px;
  display: block;
  font-size: 16px;
  line-height: 1.4375;
  font-weight: 400;
  letter-spacing: .03em;
}

.c-factory {
  margin-bottom: 60px;
  padding: 60px 0;
  background: var(--COLOR_MAIN, #77B43D);
  color: #fff;
}

.c-factory__inner {
  padding: 0 10px;
}

.c-factory__ttl {
  text-align: center;
  color: var(--COLOR_MAIN, #77B43D);
}

.c-factory__ttl>span {
  padding: 5px 10px;
  background: #fff;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  display: block;
  letter-spacing: .03em;
}

.c-factory__txt {
  letter-spacing: .03em;
}

.c-factory__txt p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7777777778;
}

.c-features {
  background: rgba(255,255,255,.77);
  padding: 60px 0;
}

.c-features__item:nth-child(n+2) {
  margin-top: 50px;
}

.c-features__img img {
  display: block;
  width: 100%;
}

.c-features__img img:nth-child(n+2) {
  margin-top: 10px;
}

.c-features__desc {
  padding-top: 20px;
}

.c-features__num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--COLOR_MAIN, #77b43d);
  color: var(--COLOR_MAIN, #77b43d);
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: .03em;
}

.c-features__ttl {
  margin-top: 10px;
  color: var(--COLOR_MAIN, #77b43d);
  font-size: 26px;
  line-height: 1.385;
  font-weight: 500;
}

.c-features__ttl>span {
  padding: 6.5px 10px;
  background: #fff;
  display: inline-block;
  letter-spacing: .03em;
}

.c-features__sttl {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.7916666667;
  font-weight: 500;
  margin-bottom: -5px;
}

.c-features__sttl>span {
  padding: 0 10px;
  background: #fff;
  display: inline-block;
  letter-spacing: .03em;
}

.c-features__copy {
  padding: 10px 10px;
  background: #fff;
  font-size: 16px;
  line-height: 1.8125;
  margin-top: 10px;
  letter-spacing: .03em;
}

.c-features__copy p+p {
  margin-top: 20px;
}

.c-features__proven {
  padding: 10px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: .03em;
  margin-top: 5px;
}

.c-features__proven dt {
  width: 100%;
  border: 1px solid #000;
  padding: 14px 10px;
  font-weight: 500;
}

.c-features__proven dd {
  padding: 20px 0;
}

.c-headline-lv2 {
  font-size: 28px;
  line-height: 1.7857142857;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.c-headline-lv2>span {
  display: inline-block;
  padding: 0 10px;
  background: #fff;
  letter-spacing: .03em;
}

.c-headline-lv3 {
  font-size: 26px;
  line-height: 1.3846153846;
  font-weight: 500;
  margin-bottom: 20px;
}

.c-headline-lv3>span {
  display: inline-block;
  padding: 6.5px 10px;
  background: #fff;
  color: var(--COLOR_MAIN, #77B43D);
  letter-spacing: .03em;
}

.c-img-fit {
  font-family: "object-fit: cover;";
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.c-information {
  padding-top: 60px;
}

.c-information-certification__img {
  aspect-ratio: 335/223;
}

.c-information-certification__img img {
  display: block;
  width: 100%;
}

.c-information-certification__desc {
  background: #fff;
  padding: 10px 30px 30px;
}

.c-information-certification__ttl {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.8181818182;
  letter-spacing: .03em;
}

.c-information-certification__copy {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0;
}

.c-information-certification__copy a {
  text-decoration: underline;
}

.c-information-download__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  padding: 30px;
  position: relative;
}

.c-information-download__link::after {
  position: absolute;
  content: "";
  top: 44px;
  right: 30px;
  height: 22px;
  width: 6px;
  background: url("../images/common/icon_arrow_down.svg") no-repeat left bottom/cover;
  z-index: 1;
}

.c-information-download__link .ico {
  width: 50px;
  height: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: var(--COLOR_MAIN, #77B43D);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  letter-spacing: 0;
}

.c-information-download__link .text {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 10px;
  padding-right: 24px;
  font-size: 18px;
  line-height: 1.3888888889;
  font-weight: 500;
  letter-spacing: .03em;
}

.c-information-download__link .underline {
  text-decoration: underline;
}

.c-information-download__link:nth-child(n+2) {
  margin-top: 30px;
}

.c-information .c-information-certification+.c-information-download {
  margin-top: 60px;
}

.c-information .c-information-download+.c-information-certification {
  margin-top: 60px;
}

.c-introduction {
  padding-top: 60px;
  text-align: center;
}

.c-introduction__movie {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.c-introduction__movie>img {
  width: 100%;
  height: 100%;
}

.c-introduction__desc {
  display: inline-block;
  background-color: #fff;
  color: #046636;
  text-align: center;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .69px;
  padding: 15px 10px;
  margin-top: 20px;
}

.c-list-dots li,
.c-list-notes li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-list-notes li {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
}

.c-mainvisual {
  padding-bottom: 60px;
}

.c-mainvisual img {
  display: block;
  width: 100%;
}

.c-mainvisual__main-img {
  margin: 0 -20px;
  position: relative;
}

.c-mainvisual__main-img-caption {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.c-mainvisual__main-img-caption span {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  color: #046636;
  font-size: 23px;
  line-height: 1.7826086957;
  font-size: 6.13333333vw;
  letter-spacing: .03em;
  font-weight: 700;
  padding: 0 10px;
}

.c-mainvisual__desc {
  margin-top: 50px;
  letter-spacing: .03em;
}

.c-mainvisual__caption {
  text-align: center;
  font-size: 26px;
  line-height: 1.8;
  font-weight: 500;
  margin: 6px 0 0;
  letter-spacing: .03em;
  display: block;
}

.c-mainvisual__txt {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.8125;
}

.c-mainvisual__txt p {
  padding: 10px;
  background: #fff;
}

.c-mainvisual__lead {
  margin: 0 -20px;
  background: rgba(255,255,255,.77);
  padding: 10px 20px 20px;
}

.c-mainvisual__lead p {
  background: #fff;
  padding: 10px;
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: 400;
  letter-spacing: .03em;
}

:lang(en) .c-mainvisual__main-img-caption span {
  line-height: 1.85;
  font-size: 4.6vw;
}

body.is-modal-open {
  overflow: hidden;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh)*100);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  transition: .3s;
}

.c-modal__inner {
  background: rgba(0,0,0,.7);
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.c-modal__body {
  max-width: min(1100px,100vw - 60px);
  position: relative;
}

.c-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all .3s ease;
}

.c-modal__close:hover {
  opacity: .6;
}

.c-modal__content {
  width: 100%;
  max-height: calc(100vh - 60px);
  max-height: calc(var(--vh, 1vh)*100 - 60px);
  background: #fff;
  overflow-y: auto;
}

.c-modal__content__inner {
  padding: 70px 22.5px 20px;
}

.c-modal.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-page-header {
  width: 100%;
  padding: 40px 0;
  letter-spacing: 0;
}

.c-page-header__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-weight: 400;
}

.c-page-header__en {
  font-size: 32px;
  line-height: 1.28125;
}

.c-page-header__ja {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.4285714286;
}

.c-pagetop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: .3s;
  width: 56px;
  height: 56px;
  transition: 1s;
  z-index: 1001;
}

.c-pagetop>div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(74deg, #34bfff 0%, #00bfff 58%, #65f7c6 100%);
  border: 2px solid #00bfff;
  border-radius: 50%;
  transition: all .3s ease-out;
  cursor: pointer;
}

.c-pagetop>div>span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.c-pagetop>div>span::before,
.c-pagetop>div>span::after {
  content: "";
  width: 13px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background: #00bfff;
  position: absolute;
  top: 50%;
  transition: all .5s ease-out;
}

.c-pagetop>div>span::before {
  left: calc(50% - 4px);
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
  transform: translate(-50%, -50%) rotate(315deg);
}

.c-pagetop>div>span::after {
  left: calc(50% + 4px);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-pagetop>div::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease-out;
}

.c-pagetop.active {
  opacity: 1;
  visibility: visible;
}

.c-pagetop.recruit {
  bottom: 80px;
}

.c-pagination {
  padding-top: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  letter-spacing: 0;
}

.c-pagination .page {
  font-size: 16px;
  line-height: 1.4375;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-pagination .dots {
  height: 23px;
  min-width: 24px;
  text-align: center;
}

.c-pagination .page-arrow {
  height: 23px;
  min-width: 15px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-pagination .page-arrow img {
  width: 5px;
  height: 11px;
}

.c-pagination .is-current {
  color: #046636;
  font-weight: 700;
}

.c-products {
  background: rgba(255,255,255,.4);
  padding: 60px 0 0;
}

.c-products__list {
  padding-bottom: 50px;
}

.c-products__item {
  background: #fff;
  padding: 10px;
}

.c-products__item:nth-child(n+2) {
  margin-top: 10px;
}

.c-products__img {
  aspect-ratio: 335/200;
}

.c-products__img img {
  display: block;
  width: 100%;
}

.c-products__desc {
  padding-top: 5px;
}

.c-products__ttl {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  letter-spacing: .03em;
}

.c-products-electric {
  padding-bottom: 60px;
}

.c-products-electric__item:nth-child(n+2) {
  margin-top: 30px;
}

.c-products-electric__item:nth-child(2n+1) {
  --COLOR_GREEN: #1F9246;
}

.c-products-electric__item:nth-child(2n) {
  --COLOR_GREEN: #046636;
}

.c-products-electric__img {
  padding: 20px 20px 0 0;
  position: relative;
}

.c-products-electric__img::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: var(--COLOR_GREEN);
  z-index: 1;
}

.c-products-electric__img img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.c-products-electric__desc {
  background: #fff;
  padding-top: 20px;
}

.c-products-electric__desc__inner {
  padding: 10px 30px 30px;
}

.c-products-electric__ttl {
  color: #fff;
  background: var(--COLOR_GREEN);
  padding: 3px 10px 3px 30px;
  font-weight: 600;
  letter-spacing: .03em;
  font-size: 24px;
  line-height: 1.7916666667;
}

.c-products-electric__copy {
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 400;
  letter-spacing: .03em;
}

.c-products-electric__btn {
  margin-top: 20px;
}

.c-products-electric__btn .c-btn-default {
  font-size: 13px;
  line-height: 1.7692307692;
  padding: 7px 19px;
  letter-spacing: .03em;
}

.c-products-electric__btn .c-btn-default::after {
  right: -19px;
  width: 34px;
  height: 5px;
  background-image: url("../images/common/icon_arrow_btn_black_02.svg");
}

.c-single__article {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  letter-spacing: .03em;
}

.c-single__header {
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
}

.c-single__title {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.c-single__meta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.c-single__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.c-single__cat li {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: 500;
  padding: 5px 19px;
  border-radius: 35px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.c-single__time {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
}

.c-single__eyecatch {
  margin-top: 30px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.c-single__eyecatch img {
  font-family: "object-fit: cover;";
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.c-single__content {
  padding: 0 0 30px;
  font-size: 16px;
  line-height: 1.8;
}

.c-single__content h2,
.c-single__content h3,
.c-single__content h4,
.c-single__content h5,
.c-single__content h6,
.c-single__content blockquote,
.c-single__content p,
.c-single__content figure,
.c-single__content ul,
.c-single__content ol {
  margin-top: 30px;
}

.c-single__content h2 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6111111111;
  font-weight: 500;
  padding-left: 15px;
  border-left: 10px solid #77b43d;
}

.c-single__content h3 {
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 500;
  padding-bottom: 18px;
  position: relative;
}

.c-single__content h3::before,
.c-single__content h3::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 3px;
  left: 0;
}

.c-single__content h3::before {
  z-index: 1;
  width: 100%;
  background: #f2f2f2;
}

.c-single__content h3::after {
  z-index: 2;
  background: #77b43d;
  width: 130px;
  max-width: 60%;
}

.c-single__content h4 {
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 500;
  color: #77b43d;
}

.c-single__content h5 {
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 400;
  background: #f2f2f2;
  padding: 15px 25px;
}

.c-single__content h6 {
  padding: 0;
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: 400;
}

.c-single__content blockquote {
  padding: 5px 47px 35px;
  background: #f2f2f2;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
}

.c-single__content blockquote::before,
.c-single__content blockquote::after {
  position: absolute;
  content: "";
  z-index: 1;
  width: 22px;
  height: 16px;
  background: no-repeat center center/100% 100%;
}

.c-single__content blockquote::before {
  background-image: url("../images/common/icon_blockquote01.svg");
  left: 15px;
  top: 15px;
}

.c-single__content blockquote::after {
  background-image: url("../images/common/icon_blockquote02.svg");
  right: 15px;
  bottom: 15px;
}

.c-single__content blockquote pre {
  margin: 10px 0 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7857142857;
  font-weight: 400;
  color: #ccc;
}

.c-single__content ul li {
  padding-left: 18px;
  position: relative;
}

.c-single__content ul li::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77b43d;
  z-index: 1;
}

.c-single__content ul li:nth-child(n+2) {
  margin-top: 10px;
}

.c-single__content ol {
  counter-reset: item;
}

.c-single__content ol li {
  position: relative;
  padding-left: 25px;
}

.c-single__content ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: item;
  content: counter(item) ".";
  color: #77b43d;
  font-weight: 500;
}

.c-single__content ol li:nth-child(n+2) {
  margin-top: 10px;
}

.c-single__content strong,
.c-single__content b {
  font-weight: 500;
}

.c-single__content em {
  font-style: italic;
}

.c-single__content a {
  font-weight: 500;
  text-decoration: underline;
}

.c-single__content .wp-block-image {
  overflow: hidden;
}

.c-single__content .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-single__content .wp-block-image figcaption {
  margin: 0;
  padding: 5px 5px 0;
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: 400;
}

.c-single__content .wp-block-embed {
  width: 100%;
  margin: 20px -20px;
}

.c-single__content .wp-block-embed__wrapper {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.c-single__content .wp-block-embed iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-single__content hr {
  border-color: #ccc;
  margin: 30px 0;
}

.c-single__btn {
  padding-top: 30px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.c-single-latest {
  margin-top: 50px;
}

.c-single-latest__title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 23px;
  line-height: 1.4347826087;
  letter-spacing: .03em;
}

.c-standards {
  margin-top: 60px;
  background: rgba(255,255,255,.77);
  padding: 60px 0;
}

.c-standards__lead p {
  font-size: 16px;
  line-height: 1.8125;
  padding: 0 10px;
  background: #fff;
  letter-spacing: .03em;
}

.c-standards__item {
  margin-top: 50px;
}

.c-standards__img img {
  display: block;
  width: 100%;
}

.c-standards__desc {
  padding-top: 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-standards__copy {
  padding: 0 10px;
  background: #fff;
  font-size: 16px;
  line-height: 1.8125;
  letter-spacing: .03em;
  display: inline-block;
}

.c-standards__sttl {
  text-align: center;
  margin: 50px 0 20px;
}

.c-standards__sttl>span {
  font-size: 24px;
  line-height: 1.7916666667;
  padding: 0 10px;
  font-weight: 500;
  background: #fff;
  letter-spacing: .03em;
}

.c-table-layout-dl {
  position: relative;
  letter-spacing: .06em;
}

.c-table-layout-dl::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}

.c-table-layout-dl dl {
  position: relative;
  padding: 30px 20px;
}

.c-table-layout-dl dl::after {
  position: absolute;
  content: "";
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}

.c-table-layout-dl dt {
  font-weight: 500;
  padding-bottom: 10px;
}

.c-table__scroll table,
.c-table__scroll th,
.c-table__scroll td {
  border-collapse: collapse;
  border: 1px solid #bcddaa;
}

.c-table__tbl {
  width: 100%;
}

.c-table__tbl th {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .03em;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  background-color: #f9fff4;
  padding: 23px 10px;
}

.c-table__tbl td {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  padding: 23px 10px;
}

.c-table__tbl td.fz-small {
  font-size: 14px;
  line-height: 1.5;
}

.c-table__tbl--tbl02 td {
  padding: 20px 5px 19px;
}

.c-table__tbl--w1 {
  width: 33.33%;
}

.c-table__tbl--w2 {
  width: 66.66%;
}

.js-tabs-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2px;
  column-gap: 2px;
}

.js-tabs-btn {
  width: 25%;
  background-color: var(--COLOR_MAIN, #77B43D);
  min-height: 76px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: background-color .3s ease-out;
}

.js-tabs-btn span {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: .03em;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-right: 20px;
  color: #fff;
  transition: color .3s ease-out;
}

.js-tabs-btn span:after {
  content: "";
  width: 14px;
  height: 8px;
  background: url("../images/common/icon_arr_tab.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -2px;
  margin-top: 1px;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.js-tabs-btn:hover {
  background-color: #fff;
}

.js-tabs-btn:hover span {
  color: var(--COLOR_MAIN, #77B43D);
}

.js-tabs-btn:hover span:after {
  background: url("../images/common/icon_arr_tab_hov.svg") no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.js-tabs-btn.is-current {
  background-color: #fff;
}

.js-tabs-btn.is-current span {
  color: var(--COLOR_MAIN, #77B43D);
}

.js-tabs-btn.is-current span:after {
  background: url("../images/common/icon_arr_tab_hov.svg") no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%) scaleY(-1);
  transform: translateY(-50%) scaleY(-1);
  margin-top: 0;
}

.js-tabs-content {
  display: none;
  background-color: #fff;
  padding: 80px 100px;
}

.js-tabs-content.is-current {
  display: block;
}

:lang(en) .js-tabs-btn {
  min-width: 200px;
}

:lang(en) .js-tabs-btn span {
  font-size: 14px;
}

.c-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.c-title--center {
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  text-align: center;
}

.c-title-h-center {
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.c-title__text {
  font-size: 40px;
  font-family: "Poppins",sans-serif;
  font-weight: 400;
  line-height: 1;
}

.c-title__text small {
  font-size: 30px;
}

.c-title__text>span {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP",sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 8px;
}

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

.c-title__text--blue {
  color: #00bfff;
}

.c-title__text--blue>span {
  color: #333;
}

.c-use {
  background: #fff;
  padding: 22px 30px 30px;
}

.c-use__lead {
  color: var(--COLOR_MAIN, #77B43D);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: .03em;
  margin-bottom: 16px;
}

.c-use__item:nth-child(n+2) {
  margin-top: 20px;
}

.c-use__img {
  aspect-ratio: 275/187;
}

.c-use__img img {
  display: block;
  width: 100%;
}

.c-use__desc {
  padding-top: 5px;
}

.c-use__ttl {
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: 500;
  text-align: center;
  letter-spacing: .03em;
}

.c-use__other {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: .03em;
}

.c-use__other dt {
  border: 1px solid #000;
  font-weight: 500;
  padding: 14px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.ytb-thumbnail {
  position: relative;
}

.ytb-thumbnail__btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 30px;
  cursor: pointer;
  z-index: 1;
}

.ytb-thumbnail img {
  display: block;
}

.ed-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0,.5);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 9999;
}

div#modalOverlay {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.ed-closeModal {
  position: absolute;
  top: -35px;
  right: 5px;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
}

.ed-closeModal::before,
.ed-closeModal::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.ed-closeModal::before {
  left: 0;
}

.ed-closeModal::after {
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.modalContent {
  width: 90%;
  max-width: 800px;
  margin: auto;
  position: relative;
}

.video {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 2px 5px #313131);
  filter: drop-shadow(0px 2px 5px #313131);
  -webkit-animation: fadeIn 1.2s ease 0s 1 normal;
  animation: fadeIn 1.2s ease 0s 1 normal;
}

.video iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.c-video-play-button {
  position: relative;
}

.c-video-play-button:before {
  content: "";
  width: 42px;
  height: 42px;
  display: block;
  background-image: url("../images/common/play_btn.svg");
  background-size: 42px 42px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  z-index: 5;
}

.modal-youtube__wrap {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.l-footer {
  padding: 100px 20px 20px;
  background: #f2f2f2;
  overflow: hidden;
}

.l-footer__inner .footer_head_block__logo-70th {
  max-width: 137px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.l-footer__inner .footer_head_block__logo-70th img {
  width: 100%;
}

.l-footer__inner .footer_head_block__logo {
  max-width: 174px;
  margin-inline: auto;
}

.l-footer__inner .footer_head_block__logo img {
  width: 100%;
}

.l-footer__inner .footer_head_block__title {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .03em;
  margin-top: 40px;
  text-align: center;
}

.l-footer__inner .footer_head_block__text {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .03em;
  line-height: 1.6;
  margin-top: 5px;
  text-align: center;
}

.l-footer__inner .footer_head_block__map {
  width: 100%;
  height: 205px;
  margin-top: 40px;
}

.l-footer__inner .footer_head_block__map iframe {
  width: 100%;
  height: 100%;
}

.l-footer__inner .footer_middle_block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 60px;
  padding: 0 10px;
}

.l-footer__inner .footer_middle_block__list {
  width: 50%;
}

.l-footer__inner .footer_middle_block__list.is-list02 {
  padding-left: 31px;
}

.l-footer__inner .footer_middle_block__list.is-list02 .footer_middle_block__group {
  margin-top: 10px;
}

.l-footer__inner .footer_middle_block__item+.footer_middle_block__item {
  margin-top: 20px;
}

.l-footer__inner .footer_middle_block__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: .2s color;
}

.l-footer__inner .footer_middle_block__title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background: #000;
  transition: .2s background;
}

.l-footer__inner .footer_middle_block__title+.footer_middle_block__title {
  margin-top: 20px;
}

.l-footer__inner .footer_middle_block__group {
  margin-top: 20px;
  padding-left: 20px;
}

.l-footer__inner .footer_middle_block__subTitle {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: .2s color;
}

.l-footer__inner .footer_middle_block__subTitle:hover {
  color: #77b43d;
}

.l-footer__inner .footer_middle_block__subTitle+.footer_middle_block__text {
  margin-top: 15px;
}

.l-footer__inner .footer_middle_block__text {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .03em;
  margin-top: 7px;
  transition: .2s color;
}

.l-footer__inner .footer_middle_block__text:hover {
  color: #77b43d;
}

.l-footer__inner .footer_middle_block__logo {
  display: block;
  padding: 0 10px;
  max-width: 315px;
  width: 100%;
  margin-inline: auto;
  margin-top: 30px;
}

.l-footer__inner .footer_bottom_block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 60px;
  padding: 0 20px;
}

.l-footer__inner .footer_bottom_block__link {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .03em;
  transition: .2s color;
}

.l-footer__inner .footer_bottom_block__link:hover {
  color: #77b43d;
}

.l-footer__copy {
  text-align: center;
  color: #000;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .03em;
  margin-top: 50px;
}

.g-nav {
  transition: .5s;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #fff;
  padding: 150px 0 40px;
}

.g-nav.is-menu {
  opacity: 1;
  visibility: visible;
}

.g-nav__inner {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding-inline: 30px;
}

.g-nav__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.g-nav__item {
  width: 50%;
}

.g-nav__item:nth-child(2) {
  padding-left: 31px;
}

.g-nav__title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .03em;
}

.g-nav__title::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background: #000;
}

.g-nav__title+.g-nav__title {
  margin-top: 20px;
}

.g-nav__group {
  padding-top: 20px;
  padding-left: 20px;
}

.g-nav__group.is-pt10 {
  padding-top: 10px;
}

.g-nav__group+.g-nav__title {
  margin-top: 20px;
}

.g-nav__subTitle {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .03em;
}

.g-nav__subTitle+.g-nav__text {
  margin-top: 15px;
}

.g-nav__text {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .03em;
  margin-top: 8px;
}

.g-nav__banner {
  display: block;
  max-width: 160px;
  margin-inline: auto;
  margin-top: 30px;
}

.g-nav__banner>img {
  display: block;
  width: 100%;
  height: auto;
}

.g-nav__bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 30px;
}

.g-nav__bottom_item {
  color: #000;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .03em;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.l-header__inner {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  z-index: 2;
}

.l-header__logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 23px;
  width: 177px;
  height: 82px;
  box-shadow: 3px 3px 10px 0px rgba(84,84,84,.09);
  border-radius: 0px 0px 16px 0px;
  background: #fff;
}

.l-header__logo>img {
  height: auto;
}

.l-header__logo>img:nth-child(1) {
  width: 45px;
}

.l-header__logo>img:nth-child(2) {
  width: 70px;
}

.l-header__logo.open {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 101px;
  height: 118px;
  gap: 14px;
  box-shadow: initial;
}

.l-header__nav {
  position: relative;
  background: #fff;
  border-radius: 0px 0px 0px 16px;
  box-shadow: 3px 3px 10px 0px rgba(84,84,84,.09);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-header__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-header__item.is-accordion:hover {
  width: auto;
}

.l-header__item.is-accordion:hover .l-header__button {
  opacity: .6;
}

.l-header__item.is-accordion:hover .l-header__button::after {
  opacity: 1;
}

.l-header__item.is-accordion:hover .l-header__button::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.l-header__item.is-accordion:hover .l-header__button .l-header__text_en {
  color: #77b43d;
}

.l-header__item.is-accordion:hover .l-header__button+.l-header__accordion {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.l-header__link {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding-inline: 10px;
}

.l-header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 4px;
  background: #77b43d;
  transition: opacity .3s;
  opacity: 0;
}

.l-header__link:hover::after {
  opacity: 1;
}

.l-header__link:hover .l-header__text_en {
  color: #77b43d;
}

.l-header__button {
  position: relative;
  z-index: 12;
  padding-inline: 10px 20px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  transition: .2s opacity;
}

.l-header__button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 4px;
  background: #77b43d;
  transition: opacity .3s;
  opacity: 0;
}

.l-header__button::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  aspect-ratio: 12/6;
  background: url("../images/common/icon_arrow.svg") no-repeat center center/contain;
  transition: .2s transform;
}

.l-header__accordion {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 0;
  visibility: hidden;
  transition: .2s opacity;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
  padding: 110px 10px 40px;
  border-radius: 16px 0px 0px 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 90px;
  z-index: 9;
  box-shadow: 2px 2px 13px 0px rgba(84,84,84,.09);
}

.l-header__accordion:hover {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.l-header__accordion.is-about .l-header__accordion_text {
  margin-top: 0;
}

.l-header__accordion_title {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: .2s color;
}

.l-header__accordion_title+.l-header__accordion_text {
  margin-top: 15px;
}

.l-header__accordion_title:hover {
  color: #77b43d;
}

.l-header__accordion_text {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .03em;
  margin-top: 8px;
  transition: .2s color;
}

.l-header__accordion_text:hover {
  color: #77b43d;
}

.l-header__text_en {
  position: relative;
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  z-index: 10;
  transition: .2s color;
}

.l-header__text_jp {
  position: relative;
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  z-index: 10;
}

.l-header__lang {
  border-radius: 3px;
  overflow: hidden;
  background: #eaeaea;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-inline: 25px;
  position: relative;
  z-index: 12;
}

.l-header__lang_item {
  padding: 2.5px 10px;
  color: #000;
  font-size: 13px;
  font-weight: 300;
}

.l-header__lang_item.is-current {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: #77b43d;
}

.l-header__contact {
  background: #77b43d;
  padding: 11px 10px;
  border-radius: 0px 0px 0px 16px;
}

.l-header__contact_icon {
  width: 35px;
  margin-inline: auto;
}

.l-header__contact_icon img {
  vertical-align: bottom;
}

.l-header__contact_text {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin-top: 5px;
}

.l-main {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner {
  margin: 0 auto;
  padding: 0 20px;
}

.grecaptcha-badge {
  bottom: 100px !important;
}

.l-box-content {
  background: #fff;
  padding: 30px 30px 50px;
}

.nav-btn {
  position: relative;
  z-index: 1300;
  cursor: pointer;
  width: 80px;
  height: 70px;
  background-color: #fff;
}

.nav-btn__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-btn__wrap__box {
  margin: 0 auto;
  position: relative;
  width: 28px;
  height: 18px;
  z-index: 1201;
}

.nav-btn__line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1100;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all .3s;
}

.nav-btn__line:nth-of-type(1) {
  top: 0px;
}

.nav-btn__line:nth-of-type(2) {
  top: calc(50% - 1px);
}

.nav-btn__line:nth-of-type(3) {
  bottom: 0;
}

.nav-btn__text {
  color: #000;
  font-size: 10px;
  font-weight: 700;
  margin-top: 5px;
}

.nav-btn__text.is-close {
  display: none;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(2) {
  opacity: 0;
}

.nav-btn.is-close .nav-btn__line:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.l-page {
  padding-top: 120px;
  padding-bottom: 60px;
  background: url("../images/common/bg_page_sp.svg") no-repeat top center/cover;
}

.l-page--02 {
  background-image: url("../images/common/bg_page_02_sp.svg");
  background-position: top left;
}

.l-page--03 {
  background-image: url("../images/common/bg_page_03_sp.svg");
  background-position: top left;
}

.l-page--04 {
  background-image: url("../images/common/bg_page_04_sp.svg");
}

.p-404 {
  padding: 100px 0;
}

.p-404__img {
  max-width: 160px;
  height: auto;
  margin: 0 auto -51px;
}

.p-404__img>img {
  width: 100%;
  height: auto;
}

.p-404__text {
  text-align: center;
}

.p-404__text__head {
  font-family: "Poppins",sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  color: #00bfff;
  line-height: 1;
  margin-bottom: 10px;
}

.p-404__text__title {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .88px;
  margin-bottom: 30px;
}

.p-404__text__desc {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .56px;
}

.p-404__back {
  text-align: center;
  margin-top: 40px;
}

.l-page--access {
  background-size: 100% auto;
}

.l-page--access .l-page-content {
  background: rgba(255,255,255,.768627451);
  padding: 120px 0;
}

.l-page--access .l-box-content {
  background-color: rgba(0,0,0,0);
}

.c-box-access .txt-description {
  letter-spacing: 0;
  margin-bottom: 62px;
  width: 100%;
  line-height: 1.8;
  margin-bottom: 10px;
}

.c-box-access__map {
  position: relative;
  max-width: 646px;
  margin: 0 auto 5px;
}

.c-box-access__map li {
  position: absolute;
  right: 6px;
  bottom: 111px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 70px;
  height: 37px;
}

.c-box-access__map li:nth-child(2) {
  right: 19px;
  bottom: 64px;
}

.c-box-access__map li:nth-child(3) {
  right: 71px;
  bottom: 17px;
}

.c-box-access__map input.hidden {
  height: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  display: none;
}

.c-box-access__map #tohoku_toggle:checked+label::after,
.c-box-access__map #mainOffice_toggle:checked+label::after,
.c-box-access__map #factory_toggle:checked+label::after {
  opacity: 0;
}

.c-box-access__map .toggle {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  transition: background-color .2s,color .2s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2;
  position: relative;
  border-radius: 40px;
  padding: 2px 28px 4px 15px;
  background-color: #a94f88;
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 13px;
  line-height: 1.5;
}

.c-box-access__map .toggle::before,
.c-box-access__map .toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  background-color: #fff;
  width: 8px;
  height: 2px;
}

.c-box-access__map .toggle::after {
  -webkit-transform: rotate(90deg) translateY(-50%);
  transform: rotate(90deg) translateY(-50%);
  right: 16px;
  top: calc(50% - 1px);
}

.c-box-access__map .toggle[for=mainOffice_toggle] {
  background-color: #d65b6a;
}

.c-box-access__map .toggle[for=factory_toggle] {
  background-color: #de8b54;
}

.c-box-access__map .toggle.current::after {
  opacity: 0;
}

.c-infor__item {
  margin-bottom: 50px;
}

.c-infor__item:last-child {
  margin-bottom: 0;
}

.c-infor__item.show {
  display: block;
}

.c-infor__item.hidden {
  display: none;
}

.c-infor__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.8;
  letter-spacing: .06em;
  margin-bottom: 11px;
}

.c-infor__pic {
  margin: 0 auto 10px;
}

.c-infor__pic picture {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-infor__tit {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.c-infor__txt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  margin-bottom: 20px;
}

.c-infor__box {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .06em;
  margin-bottom: 40px;
}

.c-infor__box dt {
  border: 1px solid #000;
  font-weight: 500;
  padding: 10px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.c-infor__box dd {
  text-align: center;
}

.c-infor__address {
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.c-infor__address.not-border {
  border-top: 0px;
  padding-top: 30px;
}

.c-infor__address p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.c-infor__address p:last-child {
  margin-bottom: 0;
}

.p-ir .box-inner:not(:first-child) {
  margin-top: 50px;
}

.p-ir__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: .03em;
  margin-bottom: 20px;
}

.p-ir__list-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 89px;
  border-bottom: 1px solid #ccc;
}

.p-ir__list-item:first-child {
  border-top: 1px solid #ccc;
}

.p-ir__list-item dt {
  width: 107px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4478571429;
  letter-spacing: .03em;
  text-align: left;
  padding-left: 20px;
}

.p-ir__list-item dd {
  width: calc(100% - 107px);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .03em;
}

.c-anchor02__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px;
}

.c-anchor02-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: .03em;
  padding: 5px 33px 5px 19px;
  border-radius: 60px;
  border: 1px solid #000;
  width: -webkit-max-content;
  width: max-content;
  position: relative;
}

.c-anchor02-item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
  background-image: url("../images/about-ir/ico_arrow01.svg");
  width: 6px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: contain;
}

.l-page.l-page--about {
  padding-bottom: 0;
}

.p-about-top {
  padding-bottom: 120px;
}

.p-about-top__item {
  position: relative;
}

.p-about-top__item a {
  display: block;
}

.p-about-top__item a:hover {
  opacity: 1;
}

.p-about-top__item a:hover .p-about-top__des {
  opacity: 1;
}

.p-about-top__item:nth-child(1) .p-about-top__des {
  background-color: #875e2f;
}

.p-about-top__item:nth-child(1) .p-about-top__des:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #875e2f;
}

.p-about-top__item:nth-child(2) .p-about-top__des {
  background-color: #30882e;
}

.p-about-top__item:nth-child(2) .p-about-top__des:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #30882e;
}

.p-about-top__item:nth-child(3) .p-about-top__des {
  background-color: #3a799d;
}

.p-about-top__item:nth-child(3) .p-about-top__des:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #3a799d;
}

.p-about-top__item:nth-child(4) .p-about-top__des {
  background-color: #574fb2;
}

.p-about-top__item:nth-child(4) .p-about-top__des:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #574fb2;
}

.p-about-top__item:nth-child(5) .p-about-top__des {
  background-color: #bb4763;
}

.p-about-top__item:nth-child(5) .p-about-top__des:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #bb4763;
}

.p-about-top__pic {
  line-height: 0;
}

.p-about-top__pic img {
  width: 100%;
  height: auto;
}

.p-about-top__des {
  min-height: 76px;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1;
  transition: opacity .3s ease-out;
}

.p-about-top__des:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  right: -34px;
  border-width: 47px 0 29px 34px;
  top: 0;
}

.p-about-top__ttl {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  display: block;
  color: #fff;
}

.p-about-top__txt {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  display: inline-block;
  margin-top: 8px;
  position: relative;
  padding-right: 39px;
  font-weight: 300;
}

.p-about-top__txt:after {
  content: "";
  width: 32px;
  height: 4px;
  background: url("../images/top/icon_arrow_white.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -4px;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.p-about-ms__item:nth-child(even) {
  padding-left: min(25.5vw,368px);
}

.p-about-ms__item:not(:last-child) {
  margin-bottom: 79px;
}

.p-about-ms__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 23px;
}

.p-about-ms__ttl span {
  font-size: 103px;
  line-height: 1;
  color: #77b43d;
  font-family: "Noto Serif JP",sans-serif;
  font-weight: 400;
  background-color: #fff;
  padding: 10px;
  letter-spacing: .03em;
  display: inline-block;
}

.p-about-ms__txt {
  font-size: 18px;
  line-height: 1;
  display: block;
  margin-bottom: 13px;
  margin-left: 9px;
  background-color: #fff;
  padding: 8px;
  letter-spacing: 0em;
}

.p-about-ms__desTop {
  font-size: 36px;
  line-height: 1.4444444444;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 30px;
  display: inline-block;
  letter-spacing: .03em;
}

.p-about-ms__des {
  background-color: #fff;
  padding: 10px;
  display: inline-block;
}

.p-about-ms p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .059em;
}

.p-about-ms p+p {
  margin-top: 32px;
}

.p-about-message__head {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

.p-about-message__ttl span {
  background-color: #fff;
  font-size: 36px;
  line-height: 1;
  color: #77b43d;
  font-family: "Noto Serif JP",sans-serif;
  padding: 4px 9px 6px;
  display: inline-block;
  letter-spacing: .03em;
}

.p-about-message__sub {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-size: 18px;
  line-height: 1;
  margin-left: 9px;
  padding: 10px;
}

.p-about-message__content {
  background-color: #fff;
  padding: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-about-message__pic {
  width: 381px;
}

.p-about-message__pic figure {
  line-height: 0;
  margin-bottom: 15px;
}

.p-about-message__pic figure img {
  width: 100%;
  height: auto;
}

.p-about-message__author {
  text-align: center;
}

.p-about-message__author span {
  display: block;
  font-size: 16px;
  line-height: 1.75;
}

.p-about-message__author .name {
  display: block;
  margin: 5px 0;
  line-height: 0;
}

.p-about-message__author .name img {
  width: 180px;
  height: auto;
}

.p-about-message__txt {
  width: calc(100% - 381px);
  padding-left: 50px;
}

.p-about-message__txt p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .03em;
}

.p-about-message__txt p+p {
  margin-top: 30px;
}

:lang(en) .p-about-top__des {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 min(1.4vw,20px);
}

.p-blog__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.p-blog__thumb {
  aspect-ratio: 275/155;
}

.p-blog__thumb img {
  display: block;
}

.p-blog__desc {
  padding: 10px 10px 20px;
}

.p-blog__title {
  font-size: 23px;
  line-height: 1.4347826087;
  font-weight: 500;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 132px;
  letter-spacing: .03em;
}

.p-blog__cat {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-blog__cat li {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  line-height: 1.4615384615;
  font-weight: 500;
  padding: 6px 19px;
  border-radius: 35px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  margin-bottom: 10px;
  margin-right: 10px;
  letter-spacing: .03em;
}

.p-blog__time {
  font-size: 13px;
  line-height: 1.4615384615;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: .03em;
}

.p-blog__time time {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding-right: 52px;
}

.p-blog__time time::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 32px;
  height: 4px;
  background: url("../images/common/icon_arrow_black.svg") no-repeat right center/contain;
  z-index: 1;
}

.p-blog__copy {
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  letter-spacing: .03em;
}

.p-company {
  line-height: 2;
  letter-spacing: .06em;
}

.p-company .c-table-layout-dl dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-company .c-table-layout-dl dd ul li::before {
  content: "・";
  display: inline;
  font-size: 100%;
}

.p-company__accordion-btn {
  margin-top: 20px;
  cursor: pointer;
  letter-spacing: .03em;
}

.p-company__logo {
  max-width: 207px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.p-company__logo img {
  display: block;
}

.p-contact {
  letter-spacing: .03em;
  word-break: break-all;
}

.p-contact__group:nth-child(n+2) {
  margin-top: 30px;
}

.p-contact__label {
  padding-bottom: 10px;
  line-height: 1;
}

.p-contact__label label {
  display: inline-block;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.4666666667;
  font-weight: 500;
}

.p-contact__label .lbl-required {
  color: #fff;
  background: #dd2c2c;
  border-radius: 3px;
  text-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  line-height: 1.4166666667;
  padding: 3px 6px;
  letter-spacing: 0;
  margin-left: 5px;
}

.p-contact__input {
  font-size: 15px;
  line-height: 1.4666666667;
  font-weight: 400;
  color: #000;
  padding: 9px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  width: 100%;
  display: block;
  outline: none;
}

.p-contact__input::-webkit-input-placeholder {
  color: #d9d9d9;
  opacity: 1;
  font-weight: 400;
}

.p-contact__input:-ms-input-placeholder {
  color: #d9d9d9;
  opacity: 1;
  font-weight: 400;
}

.p-contact__input::placeholder {
  color: #d9d9d9;
  opacity: 1;
  font-weight: 400;
}

.p-contact__input.wpcf7-not-valid {
  padding: 8px;
  border: 2px solid #dd2c2c;
}

.p-contact textarea {
  min-height: 160px;
}

.p-contact__list-radio,
.p-contact .wpcf7-radio {
  padding-top: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 15px;
}

.p-contact__list-radio li,
.p-contact__list-radio .wpcf7-list-item,
.p-contact .wpcf7-radio li,
.p-contact .wpcf7-radio .wpcf7-list-item {
  position: relative;
  margin: 0;
}

.p-contact input[type=radio] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.p-contact input[type=radio]+label,
.p-contact input[type=radio]+.wpcf7-list-item-label {
  padding-left: 23px;
  font-size: 15px;
  line-height: 1.46666667;
  font-weight: 400;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 1;
}

.p-contact input[type=radio]+label::before,
.p-contact input[type=radio]+.wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  z-index: 1;
  box-sizing: border-box;
}

.p-contact input[type=radio]+label::after,
.p-contact input[type=radio]+.wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #046636;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transition: all .3s ease;
}

.p-contact input[type=radio]:checked+label::after,
.p-contact input[type=radio]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.p-contact .custom-cf7e-confirm .p-contact__input {
  border-color: #fff;
  padding: 9px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: .03em;
}

.p-contact .custom-cf7e-confirm textarea {
  min-height: 46px;
}

.p-contact .custom-cf7e-confirm input[type=radio] {
  opacity: 0;
  visibility: hidden;
}

.p-contact .custom-cf7e-confirm input[type=radio]+label,
.p-contact .custom-cf7e-confirm input[type=radio]+.wpcf7-list-item-label {
  padding: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4444444444;
  cursor: default;
  letter-spacing: .03em;
}

.p-contact .custom-cf7e-confirm input[type=radio]+label::before,
.p-contact .custom-cf7e-confirm input[type=radio]+label::after,
.p-contact .custom-cf7e-confirm input[type=radio]+.wpcf7-list-item-label::before,
.p-contact .custom-cf7e-confirm input[type=radio]+.wpcf7-list-item-label::after {
  content: none;
}

.p-contact .custom-cf7e-confirm input[type=radio]:not(:checked)+label,
.p-contact .custom-cf7e-confirm input[type=radio]:not(:checked)+.wpcf7-list-item-label {
  display: none;
}

.p-contact .custom-cf7e-confirm .p-contact__list-radio,
.p-contact .custom-cf7e-confirm .wpcf7-radio {
  padding-top: 0;
}

.p-contact-privacy {
  margin-top: 30px;
  border-top: 1px solid #d9d9d9;
  padding-top: 50px;
}

.p-contact-privacy__headline {
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  line-height: 1.4375;
  margin-bottom: 20px;
}

.p-contact-privacy__wrap {
  border: 1px solid #d9d9d9;
  color: #000;
  border-radius: 3px;
}

.p-contact-privacy__inner {
  font-size: 14px;
  line-height: 1.42;
  padding: 19px;
  height: 318px;
  overflow-y: auto;
}

.p-contact-privacy__inner h3 {
  margin-bottom: 1.42em;
}

.p-contact-privacy__inner h4 {
  margin-top: 1.42em;
}

.p-contact-privacy__inner ul li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.p-contact-privacy__inner dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: .2em;
}

.p-contact-privacy__inner dl dt {
  margin-top: .3em;
  width: 5em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}

.p-contact-privacy__inner dl dd {
  margin-top: .3em;
  width: calc(100% - 5em);
}

.p-contact-privacy__inner ul,
.p-contact-privacy__inner ol {
  padding-top: .2em;
}

.p-contact-privacy__inner ul li,
.p-contact-privacy__inner ol li {
  margin-top: .3em;
}

.p-contact__privacy-consent {
  margin-top: 30px;
  text-align: center;
}

.p-contact__privacy-consent__inner {
  line-height: 1;
}

.p-contact__privacy-consent input[type=checkbox] {
  display: none;
  opacity: 0;
}

.p-contact__privacy-consent input[type=checkbox]+label {
  padding-left: 23px;
  font-size: 14px;
  line-height: 1.42857143;
  font-weight: 400;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.p-contact__privacy-consent input[type=checkbox]+label::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 6px;
  z-index: 1;
  box-sizing: border-box;
}

.p-contact__privacy-consent input[type=checkbox]+label::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 3px;
  width: 16px;
  height: 14px;
  background: url("../images/common/icon_checkbox.svg") no-repeat bottom center/100% 100%;
  z-index: 2;
  opacity: 0;
  transition: all .3s ease;
}

.p-contact__privacy-consent input[type=checkbox]:checked+label::after {
  opacity: 1;
}

.p-contact__group-btn {
  padding: 40px 0 0;
}

.p-contact__btn {
  margin-top: 10px;
  position: relative;
  display: block;
  width: 100%;
  padding: 24px 35px;
  border-radius: 73px;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4375;
  position: relative;
  text-align: center;
}

.p-contact__btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../images/common/icon_arrow_btn_back.svg") no-repeat center center/100% 100%;
  z-index: 1;
}

.p-contact__btn.is-submit {
  color: #fff;
  background: #046636;
  border-color: #046636;
}

.p-contact__btn.is-submit::after {
  left: auto;
  right: 9px;
  background-image: url("../images/common/icon_arrow_btn_submit.svg");
}

.p-contact__btn.is-submit:disabled {
  opacity: .3;
  pointer-events: none;
}

.p-contact-thanks {
  letter-spacing: .03em;
}

.p-contact-thanks__title {
  font-size: 22px;
  line-height: 1.8181818182;
  font-weight: 500;
  margin-bottom: 30px;
}

.p-contact-thanks__copy {
  font-size: 16px;
  line-height: 1.8;
}

.p-contact-thanks__btn {
  margin-top: 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 26px;
}

.c-electricconductor-sub {
  --COLOR_MAIN: #77B43D;
}

.p-product-detail {
  padding-top: 120px;
}

.p-product-detail__ttl {
  font-size: 28px;
  line-height: 1.4;
  color: var(--COLOR_MAIN, #77B43D);
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: .03em;
}

.p-product-detail__wrap-pic figure img {
  width: 100%;
  height: auto;
  display: block;
}

.p-product-detail p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .03em;
}

.p-product-detail__list li {
  font-size: 18px;
  line-height: 1.8;
  position: relative;
  font-weight: 500;
  padding-left: 18px;
  letter-spacing: .03em;
}

.p-product-detail__list li:before {
  content: "・";
  font-size: 18px;
  line-height: 1.8;
  position: absolute;
  top: 0;
  left: 0;
}

.p-product-detail__other {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.p-product-detail__other span {
  display: block;
  padding: 14px 5px;
  border: 1px solid #000;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .03em;
  margin-right: 20px;
  font-weight: 500;
  text-align: center;
  min-width: 132px;
}

.p-product-detail__other em {
  display: block;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .03em;
}

.p-product-detail-ttlBox {
  font-size: 26px;
  line-height: 1.8;
  color: var(--COLOR_MAIN, #77B43D);
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.p-product-detail__group-item:not(:last-child) {
  margin-bottom: 46px;
}

.p-product-detail .c-table__scroll:not(:last-child) {
  margin-bottom: 20px;
}

.p-harness {
  --COLOR_MAIN: #C9818E;
}

.harness-products-modal__ttl {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  letter-spacing: .03em;
}

.harness-products-modal__photo img {
  display: block;
  width: 100%;
}

.harness-products-modal__photo li+li {
  margin-top: 10px;
}

.l-page--history .l-page-content {
  background: rgba(255,255,255,.768627451);
  padding: 120px 0;
}

.l-page--history .l-box-content {
  background-color: rgba(0,0,0,0);
}

.c-box-history {
  padding: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-box-history .txt-description {
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 62px;
  width: 100%;
  line-height: 1.8;
}

.c-box--left {
  width: 235px;
}

.c-box--right {
  width: calc(100% - 235px);
  max-width: 775px;
}

.c-sidebar__sticky.fixed {
  position: fixed;
}

.c-anchor01 {
  padding-top: 3px;
}

.c-anchor01 li:not(:last-child) {
  margin-bottom: 15px;
}

.c-anchor01_item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 500;
  position: relative;
  font-size: 14px;
  line-height: 1.8;
  padding-left: 19px;
  z-index: 1;
  letter-spacing: .06em;
}

.c-anchor01_item::before {
  content: "";
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -2px;
  width: 10px;
  height: 10px;
  background: #d9d9d9;
  border-radius: 100%;
}

.c-anchor01_item::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  width: calc(100% - 20px);
  height: 100%;
  background: #fff;
  opacity: 0;
  z-index: -1;
}

.c-anchor01_item .year {
  font-size: 12px;
  line-height: 1.5833333333;
  font-weight: 400;
  letter-spacing: .06em;
  position: relative;
  z-index: 2;
}

.c-anchor01_item.current {
  color: #1f9246;
  pointer-events: none;
}

.c-anchor01_item.current::before {
  background: #1f9246;
}

.c-anchor01_item.current::after {
  opacity: 1;
}

.c-flow__wrap {
  width: 100%;
  position: relative;
}

.c-flow__wrap ol {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background-image: url("../images/history/line_history.webp");
  background-position: calc(50% - 8px) top;
  background-size: 600px calc(100% - 159px);
  background-repeat: no-repeat;
  padding-top: 0;
  padding-bottom: 61px;
}

.c-flow__wrap li {
  width: calc(50% - 37px);
  position: relative;
}

.c-flow__wrap li:nth-child(even) {
  margin-left: auto;
  width: 50%;
}

.c-flow__wrap li:nth-child(even) .c-flow--pic {
  left: 85px;
  right: auto;
}

.c-flow__wrap li:nth-child(odd) .c-flow--year {
  margin-left: auto;
}

.c-flow__wrap li:first-child .c-flow__item.wth-img {
  margin-top: 0;
}

.c-flow__wrap li:nth-child(7) .c-flow--txt,
.c-flow__wrap li:nth-child(9) .c-flow--txt,
.c-flow__wrap li:nth-child(10) .c-flow--txt,
.c-flow__wrap li:nth-child(15) .c-flow--txt,
.c-flow__wrap li:last-child .c-flow--txt {
  letter-spacing: 0;
}

.c-flow__item {
  width: 100%;
  position: relative;
  padding-top: 60px;
}

.c-flow__item.wth-img {
  padding-top: 220px;
  margin-top: -50px;
}

.c-flow__item:hover picture {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.c-flow--pic {
  position: absolute;
  display: block;
  left: auto;
  right: 24%;
  top: 0;
  width: 250px;
  height: 250px;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
}

.c-flow--pic picture {
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  display: block;
}

.c-flow--pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #1f9246;
  z-index: 2;
}

.c-flow--year {
  font-size: 22px;
  line-height: 1.4090909091;
  letter-spacing: .06em;
  font-weight: 500;
  background-color: #1f9246;
  color: #fff;
  width: -webkit-max-content;
  width: max-content;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  padding-bottom: 2px;
}

.c-flow--txt {
  max-width: 350px;
  width: 100%;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .06em;
  font-weight: 500;
}

.c-flow_plan span {
  width: -webkit-max-content;
  width: max-content;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
  background-color: #1f9246;
  display: block;
  letter-spacing: 0;
  -webkit-transform: translateX(-17px);
  transform: translateX(-17px);
}

.c-flow_logo {
  display: block;
  width: 350px;
  margin: 0 auto;
  -webkit-transform: translateX(-17px);
  transform: translateX(-17px);
}

:lang(en) .c-flow__wrap ol li:nth-child(1) .c-flow__item,
:lang(en) .c-flow__wrap ol li:nth-child(2) .c-flow__item {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

:lang(en) .c-flow__wrap ol li:nth-child(3) .c-flow__item {
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

:lang(en) .c-flow__wrap ol li:nth-child(4) .c-flow__item {
  -webkit-transform: translateY(65px);
  transform: translateY(65px);
}

:lang(en) .c-flow__wrap ol li:nth-child(5) .c-flow__item,
:lang(en) .c-flow__wrap ol li:nth-child(6) .c-flow__item {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

:lang(en) .c-flow__wrap ol li:nth-child(7) .c-flow__item {
  -webkit-transform: translateY(45px);
  transform: translateY(45px);
}

:lang(en) .c-flow__wrap ol li:nth-child(8) .c-flow__item {
  -webkit-transform: translateY(45px);
  transform: translateY(45px);
}

:lang(en) .c-flow__wrap ol li:nth-child(9) .c-flow__item {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

:lang(en) .c-flow__wrap ol li:nth-child(10) .c-flow__item {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

:lang(en) .c-flow__wrap ol li:nth-child(11) .c-flow__item {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

:lang(en) .c-flow__wrap ol li:nth-child(12) .c-flow__item {
  -webkit-transform: translateY(49px);
  transform: translateY(49px);
}

:lang(en) .c-flow__wrap ol li:nth-child(13) .c-flow__item {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

:lang(en) .c-flow__wrap ol li:nth-child(14) .c-flow__item {
  -webkit-transform: translateY(33px);
  transform: translateY(33px);
}

:lang(en) .c-flow__wrap ol li:nth-child(15) .c-flow__item {
  -webkit-transform: translateY(26px);
  transform: translateY(26px);
}

:lang(en) .c-flow__wrap ol li:nth-child(16) .c-flow__item,
:lang(en) .c-flow__wrap ol li:nth-child(17) .c-flow__item,
:lang(en) .c-flow__wrap ol li:nth-child(18) .c-flow__item {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

:lang(en) .c-flow__wrap ol li:nth-child(19) .c-flow__item,
:lang(en) .c-flow__wrap ol li:nth-child(20) .c-flow__item {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

:lang(en) .c-flow_plan span {
  padding: 0 10px;
}

.c-lightmetal {
  --COLOR_MAIN: #877B99;
}

.c-lightmetal .c-mainvisual__txt P {
  letter-spacing: 0;
  line-height: 2;
}

.c-lightmetal .c-usage {
  padding: 61px 0;
}

.c-lightmetal .c-usage__wrap {
  padding: 23px 30px;
  background-color: #fff;
}

.c-lightmetal .c-usage__lead {
  font-size: 20px;
  line-height: 1.4;
  color: var(--COLOR_MAIN, #877B99);
  letter-spacing: .03em;
  font-weight: 500;
  margin-bottom: 14px;
}

.c-lightmetal .c-usage__des {
  margin-bottom: 20px;
}

.c-lightmetal .c-usage__list li {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
}

.c-lightmetal .c-usage__pic {
  line-height: 0;
}

.c-lightmetal .c-usage__pic img {
  width: 100%;
  height: auto;
}

.c-lightmetal .c-processing {
  background: rgba(255,255,255,.77);
  padding: 66px 0;
}

.c-lightmetal .c-processing__top__pic {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 0;
}

.c-lightmetal .c-processing__top__pic:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: #fff;
}

.c-lightmetal .c-processing__top__pic img {
  width: 100%;
  height: auto;
}

.c-lightmetal .c-processing__top__des p {
  padding: 0 10px;
  background: #fff;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 2;
}

.c-lightmetal .c-processing__top__des p+p {
  margin-top: 10px;
}

.c-lightmetal .c-processing__list {
  margin-top: 50px;
}

.c-lightmetal .c-processing__list li {
  position: relative;
  z-index: 1;
  line-height: 0;
}

.c-lightmetal .c-processing__list li:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: -10px;
  top: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: #fff;
}

.c-lightmetal .c-processing__list li:not(:last-child) {
  margin-bottom: 30px;
}

.c-lightmetal .c-processing__list li img {
  width: 100%;
  height: auto;
}

.p-news__list {
  border-top: 1px solid #ccc;
}

.p-news__item {
  position: relative;
}

.p-news__item::after {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}

.p-news__item-inner {
  padding: 30px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-news__time {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
  letter-spacing: .03em;
}

.p-news__category {
  margin-top: 10px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: 500;
  padding: 5px 19px;
  border-radius: 35px;
  color: #000;
  border: 1px solid #000;
  background: #fff;
  letter-spacing: .03em;
}

.p-news__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 400;
  width: 100%;
  letter-spacing: .03em;
}

.p-ourspecilization {
  --COLOR_MAIN: #046636;
}

.p-policy {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.p-policy a {
  text-decoration: underline;
}

.p-policy__unit+.p-policy__unit {
  margin-top: 30px;
}

.p-policy__hdg01 {
  font-weight: 500;
  margin-bottom: 5px;
}

.p-policy__hdg02 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}

.p-policy__lead {
  font-weight: 500;
  font-size: 18px;
}

.p-policy ul li+li,
.p-policy ol li+li {
  margin-top: 10px;
}

.p-policy ul>li>ul,
.p-policy ul>li>ol,
.p-policy ol>li>ul,
.p-policy ol>li>ol {
  margin-top: 10px;
}

.p-policy__list-number {
  counter-reset: item;
}

.p-policy__list-number>li {
  position: relative;
  padding-left: 22px;
}

.p-policy__list-number>li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: item;
  content: counter(item) ".";
}

.p-policy__list-number02 {
  counter-reset: item;
}

.p-policy__list-number02>li {
  position: relative;
  padding-left: 27px;
}

.p-policy__list-number02>li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: item;
  content: "(" counter(item) ")";
}

.p-policy__list-01 li {
  position: relative;
  padding-left: 30px;
}

.p-policy__list-01 li .li-index {
  position: absolute;
  top: 0;
  left: 0;
}

.p-policy__list-02 li {
  position: relative;
  padding-left: 30px;
}

.p-policy__list-02 li::before {
  position: absolute;
  content: "";
  top: 14px;
  left: 0;
  width: 1em;
  background: #000;
  height: 1px;
  z-index: 1;
}

.p-policy__list-03 li {
  position: relative;
  padding-left: 76px;
}

.p-policy__list-03 li .li-index {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  font-weight: 500;
}

.p-recruitment {
  padding-top: 30px;
  padding-bottom: 10px;
}

.p-recruitment .txt-description {
  letter-spacing: .03em;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}

.p-recruitment__media {
  margin: 20px auto 56px;
  text-align: center;
}

.p-recruitment iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.p-recruitment__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: .03em;
  text-align: center;
  margin-bottom: 30px;
}

.p-recruitment-btn__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: 59px;
}

.p-recruitment-btn__link {
  padding: 30px 17px;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4477777778;
  letter-spacing: .03em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  background-color: #77b43d;
  border-radius: 30px;
  min-height: 105px;
}

.p-recruitment-btn__link::after {
  position: absolute;
  content: "";
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background: url("../images/common/icon_arrow_white.svg") no-repeat right center/contain;
  z-index: 1;
}

.p-recruitment-btn__link.bg-green02 {
  background-color: #046636;
}

.p-recruitment .c-table-layout-dl dl {
  padding: 34px 20px 30px;
}

.p-recruitment .c-table-layout-dl dl:nth-child(7) .c-list-dots {
  margin-top: 11px;
}

.p-recruitment .c-table-layout-dl dt {
  padding-bottom: 14px;
}

.p-recruitment .c-table-layout-dl dd {
  line-height: 2;
}

.p-recruitment .c-table-layout-dl dt,
.p-recruitment .c-table-layout-dl dd {
  letter-spacing: .06em;
}

.p-recruitment .c-list-notes li {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.p-recruitment .c-list-notes li .ico-notes {
  margin-right: 5px;
}

.p-recruitment .c-list-dots li {
  letter-spacing: .06em;
  font-size: 16px;
  line-height: 2;
  padding-left: 1.4em;
}

.p-top img {
  width: 100%;
  vertical-align: bottom;
}

.p-top .mainvisual_block {
  position: relative;
}

.p-top .mainvisual_block__banner {
  display: none;
}

.p-top .mainvisual_block__banner_close {
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 15px;
  transition: opacity .2s;
}

.p-top .mainvisual_block__banner_close:hover {
  opacity: .7;
}

.p-top .mainvisual_block__banner_close span {
  display: block;
  width: 20px;
  height: 20px;
  background: #d9d9d9;
  -webkit-clip-path: polygon(10% 0%, 0% 10%, 40% 50%, 0% 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 60% 50%, 100% 10%, 90% 0%, 50% 40%);
  clip-path: polygon(10% 0%, 0% 10%, 40% 50%, 0% 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 60% 50%, 100% 10%, 90% 0%, 50% 40%);
}

.p-top .mainvisual_block__fv {
  position: relative;
  z-index: -1;
  width: 100%;
  aspect-ratio: 375/680;
  overflow: hidden;
}

.p-top .mainvisual_block__fv>img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top .mainvisual_block__fv>video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top .mainvisual_block__main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 90%;
  max-width: 320px;
  margin-inline: auto;
  z-index: 8;
}

.p-top .mainvisual_block__text {
  width: 100%;
}

.p-top .mainvisual_block__button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  margin-top: 15px;
  margin-inline: auto;
  cursor: pointer;
}

.p-top .lead_block {
  position: relative;
  background: #77b43d;
  padding: 90px 40px;
  z-index: 1;
}

.p-top .lead_block__deco01 {
  position: absolute;
  top: -27px;
  left: 0;
  max-width: 171px;
}

.p-top .lead_block__deco02 {
  position: absolute;
  bottom: -42px;
  right: 0;
  max-width: 212px;
}

.p-top .lead_block__text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: .04em;
}

.p-top .contents_block {
  padding-top: 80px;
}

.p-top .contents_block.is-our-business {
  background-color: #f2f2f2;
  background-image: url("../images/top/bg_our_business_sp.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-position: -100px 187px;
}

.p-top .contents_block.is-about {
  background: url("../images/top/bg_about_sp.svg") no-repeat;
  background-position: center 164px;
}

.p-top .contents_block.is-banner {
  padding-top: 0;
}

.p-top .contents_block.is-blog {
  background: url("../images/top/bg_blog_sp.svg") no-repeat top center/cover;
}

.p-top .contents_block.is-news {
  position: relative;
  padding: 20px;
}

.p-top .contents_block .contents_button_block {
  margin-top: 40px;
  text-align: center;
}

.p-top .contents_block .contents_button_block a {
  position: relative;
  display: inline-block;
  color: #000;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .03em;
  padding: 8px 30px;
  border-radius: 60px;
  border: 1px solid #000;
}

.p-top .contents_block .contents_button_block a:hover::after {
  -webkit-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}

.p-top .contents_block .contents_button_block a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -26px;
  display: inline-block;
  width: 44px;
  aspect-ratio: 32/4;
  background: url("../images/top/icon_arrow_black.svg") no-repeat center center/contain;
}

.p-top .contents_block .contents_title_block__en {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.p-top .contents_block .contents_title_block__jp {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 9px;
}

.p-top .contents_block .contents01_block__inner {
  padding: 0 20px;
}

.p-top .contents_block .contents01_block__list {
  position: relative;
  margin-top: 20px;
  z-index: 1;
}

.p-top .contents_block .contents01_block__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
}

.p-top .contents_block .contents01_block__item+.contents01_block__item {
  margin-top: 20px;
}

.p-top .contents_block .contents01_block__item.is-item02 .contents01_block__img::before,
.p-top .contents_block .contents01_block__item.is-item02 .contents01_block__head {
  background: #c9818e;
}

.p-top .contents_block .contents01_block__item.is-item03 .contents01_block__img::before,
.p-top .contents_block .contents01_block__item.is-item03 .contents01_block__head {
  background: #877b99;
}

.p-top .contents_block .contents01_block__img {
  position: relative;
  padding-top: 20px;
  padding-right: 20px;
  width: 100%;
}

.p-top .contents_block .contents01_block__img::before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 0;
  right: 0;
  background: #1f9246;
}

.p-top .contents_block .contents01_block__img img {
  position: relative;
  z-index: 1;
}

.p-top .contents_block .contents01_block__img_button {
  position: absolute;
  right: 40px;
  bottom: 20px;
  display: block;
  width: 30px;
  cursor: pointer;
  z-index: 1;
}

.p-top .contents_block .contents01_block__main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  padding-top: 10px;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 40px;
}

.p-top .contents_block .contents01_block__head {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .03em;
  background: #1f9246;
  padding: 3px 30px;
}

.p-top .contents_block .contents01_block__head span {
  margin-left: -10px;
}

.p-top .contents_block .contents01_block__group {
  padding: 20px 30px 0;
}

.p-top .contents_block .contents01_block__title {
  color: #000;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .03em;
}

.p-top .contents_block .contents01_block__text {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .06em;
  margin-top: 10px;
}

.p-top .contents_block .contents01_block__link {
  position: relative;
  display: inline-block;
  color: #000;
  text-align: center;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .03em;
  margin-top: 20px;
  padding: 9px 20px;
  border-radius: 60px;
  border: 1px solid #000;
  margin-left: 30px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.p-top .contents_block .contents01_block__link:hover::after {
  -webkit-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}

.p-top .contents_block .contents01_block__link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -19px;
  display: inline-block;
  width: 32px;
  aspect-ratio: 32/4;
  background: url("../images/top/icon_arrow_black.svg") no-repeat center center/contain;
}

.p-top .contents_block .contents01_block__bottom {
  width: 100%;
  margin-top: 80px;
}

.p-top .contents_block .contents02_block {
  margin-top: 40px;
  padding: 0 20px 90px;
}

.p-top .contents_block .contents02_block__item {
  display: block;
  background: #fff;
  padding-bottom: 20px;
}

.p-top .contents_block .contents02_block__item+.contents02_block__item {
  margin-top: 20px;
}

.p-top .contents_block .contents02_block__item a {
  display: block;
}

.p-top .contents_block .contents02_block__img {
  width: 100%;
}

.p-top .contents_block .contents02_block__img img {
  aspect-ratio: 406/271;
  object-fit: cover;
}

.p-top .contents_block .contents02_block__group {
  margin-top: -45px;
  padding: 0 20px;
}

.p-top .contents_block .contents02_block__title_en {
  color: #000;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .03em;
}

.p-top .contents_block .contents02_block__title_en span {
  display: inline-block;
  padding: 0 10px;
  background: #fff;
}

.p-top .contents_block .contents02_block__title_jp {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .03em;
}

.p-top .contents_block .contents02_block__title_jp span {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  background: #fff;
}

.p-top .contents_block .contents02_block__title_jp span::after {
  content: "";
  display: inline-block;
  width: 32px;
  aspect-ratio: 32/4;
  background: url("../images/top/icon_arrow_black.svg") no-repeat center center/contain;
}

.p-top .contents_block .contents02_block__text {
  color: #000;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .03em;
  padding: 0 10px;
  margin-top: 10px;
  min-height: 48px;
}

.p-top .contents_block .contents03_block {
  position: relative;
  display: block;
  aspect-ratio: 375/417;
  overflow: hidden;
  background-image: url("../images/top/bg_banner_sp.webp");
  background-repeat: no-repeat;
  background-size: 100%;
}

.p-top .contents_block .contents03_block__inner {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-top .contents_block .contents03_block__title {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.p-top .contents_block .contents03_block__title span {
  position: relative;
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-inline: 7px;
}

.p-top .contents_block .contents03_block__title span::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -17px;
  width: 37px;
  aspect-ratio: 48/37;
  display: inline-block;
  background: url(../images/top/icon_contents03_deco.svg) no-repeat center center/contain;
}

.p-top .contents_block .contents03_block__text {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-top: 10px;
}

.p-top .contents_block .contents03_block__link {
  text-align: center;
  margin-top: 5px;
}

.p-top .contents_block .contents03_block__link a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 10px 30px;
  border-radius: 60px;
  border: 1px solid #fff;
}

.p-top .contents_block .contents03_block__link a:hover::after {
  -webkit-transform: translate(10%, -50%);
  transform: translate(10%, -50%);
}

.p-top .contents_block .contents03_block__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -26px;
  display: inline-block;
  width: 44px;
  aspect-ratio: 44/4;
  background: url("../images/top/icon_arrow_white.svg") no-repeat center center/contain;
}

.p-top .contents_block .contents04_block {
  padding: 0 20px 80px;
}

.p-top .contents_block .contents04_block__list {
  margin-top: 40px;
  gap: 30px;
}

.p-top .contents_block .contents04_block__item {
  width: 100%;
  background: #fff;
}

.p-top .contents_block .contents04_block__item+.contents04_block__item {
  margin-top: 30px;
}

.p-top .contents_block .contents04_block__item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.p-top .contents_block .contents04_block__img {
  width: 100%;
  aspect-ratio: 335/229;
  overflow: hidden;
}

.p-top .contents_block .contents04_block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top .contents_block .contents04_block__main {
  padding: 20px 30px 30px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-top .contents_block .contents04_block__title {
  color: #000;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .03em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /*! autoprefixer: on */
}

.p-top .contents_block .contents04_block__middle {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.p-top .contents_block .contents04_block__middle_right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.p-top .contents_block .contents04_block__category {
  display: inline-block;
  color: #000;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .03em;
  padding: 6px 20px;
  border: 1px solid #000;
  border-radius: 60px;
}

.p-top .contents_block .contents04_block__day {
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.p-top .contents_block .contents04_block__arrow {
  display: inline-block;
  width: 32px;
}

.p-top .contents_block .contents04_block__text {
  color: #000;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .03em;
  margin-top: 20px;
}

.p-top .contents_block .contents05_block {
  position: relative;
  padding: 60px 20px;
}

.p-top .contents_block .contents05_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 130px 0px;
  border: 1px solid #ccc;
  z-index: -1;
}

.p-top .contents_block .contents05_block__inner {
  max-width: 1040px;
  margin-inline: auto;
}

.p-top .contents_block .contents05_block__list {
  border-top: 1px solid #ccc;
  margin-top: 40px;
}

.p-top .contents_block .contents05_block__item {
  border-bottom: 1px solid #ccc;
}

.p-top .contents_block .contents05_block__item a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  padding: 27px 20px;
  color: #000;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .03em;
}

.p-top .contents_block .contents05_block__item a .is-day {
  color: #000;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .03em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-top .contents_block .contents05_block__item a .is-category {
  color: #000;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 6px 20px;
  border-radius: 60px;
  border: 1px solid #000;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

:lang(en) .p-top .contents_block .contents03_block {
  background-image: url("../images/top/bg_banner_sp_en.webp");
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-white {
  background-color: #fff;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

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

.u-c-blue {
  color: #00bfff !important;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-d-none {
  display: none !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

.u-sp-hide-f {
  display: none !important;
}

.u-sp-hide-ib {
  display: none !important;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mr-5 {
  margin-right: 5px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pr-5 {
  padding-right: 5px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pl-5 {
  padding-left: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mr-15 {
  margin-right: 15px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-ml-15 {
  margin-left: 15px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pr-15 {
  padding-right: 15px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pl-15 {
  padding-left: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mr-25 {
  margin-right: 25px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-ml-25 {
  margin-left: 25px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pr-25 {
  padding-right: 25px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pl-25 {
  padding-left: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mr-35 {
  margin-right: 35px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-ml-35 {
  margin-left: 35px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pr-35 {
  padding-right: 35px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pl-35 {
  padding-left: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mr-45 {
  margin-right: 45px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-ml-45 {
  margin-left: 45px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pr-45 {
  padding-right: 45px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pl-45 {
  padding-left: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mr-50 {
  margin-right: 50px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-ml-50 {
  margin-left: 50px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mr-55 {
  margin-right: 55px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-ml-55 {
  margin-left: 55px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pr-55 {
  padding-right: 55px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pl-55 {
  padding-left: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mr-65 {
  margin-right: 65px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-ml-65 {
  margin-left: 65px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pr-65 {
  padding-right: 65px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pl-65 {
  padding-left: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mr-70 {
  margin-right: 70px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-ml-70 {
  margin-left: 70px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pr-70 {
  padding-right: 70px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pl-70 {
  padding-left: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mr-75 {
  margin-right: 75px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-ml-75 {
  margin-left: 75px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pr-75 {
  padding-right: 75px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pl-75 {
  padding-left: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mr-85 {
  margin-right: 85px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-ml-85 {
  margin-left: 85px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pr-85 {
  padding-right: 85px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pl-85 {
  padding-left: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mr-90 {
  margin-right: 90px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-ml-90 {
  margin-left: 90px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pr-90 {
  padding-right: 90px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pl-90 {
  padding-left: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mr-95 {
  margin-right: 95px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-ml-95 {
  margin-left: 95px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pr-95 {
  padding-right: 95px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pl-95 {
  padding-left: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mr-100 {
  margin-right: 100px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-ml-100 {
  margin-left: 100px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pr-100 {
  padding-right: 100px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-pl-100 {
  padding-left: 100px !important;
}

.u-col-0p {
  width: 0%;
}

.u-col-1p {
  width: 1%;
}

.u-col-2p {
  width: 2%;
}

.u-col-3p {
  width: 3%;
}

.u-col-4p {
  width: 4%;
}

.u-col-5p {
  width: 5%;
}

.u-col-6p {
  width: 6%;
}

.u-col-7p {
  width: 7%;
}

.u-col-8p {
  width: 8%;
}

.u-col-9p {
  width: 9%;
}

.u-col-10p {
  width: 10%;
}

.u-col-11p {
  width: 11%;
}

.u-col-12p {
  width: 12%;
}

.u-col-13p {
  width: 13%;
}

.u-col-14p {
  width: 14%;
}

.u-col-15p {
  width: 15%;
}

.u-col-16p {
  width: 16%;
}

.u-col-17p {
  width: 17%;
}

.u-col-18p {
  width: 18%;
}

.u-col-19p {
  width: 19%;
}

.u-col-20p {
  width: 20%;
}

.u-col-21p {
  width: 21%;
}

.u-col-22p {
  width: 22%;
}

.u-col-23p {
  width: 23%;
}

.u-col-24p {
  width: 24%;
}

.u-col-25p {
  width: 25%;
}

.u-col-26p {
  width: 26%;
}

.u-col-27p {
  width: 27%;
}

.u-col-28p {
  width: 28%;
}

.u-col-29p {
  width: 29%;
}

.u-col-30p {
  width: 30%;
}

.u-col-31p {
  width: 31%;
}

.u-col-32p {
  width: 32%;
}

.u-col-33p {
  width: 33%;
}

.u-col-34p {
  width: 34%;
}

.u-col-35p {
  width: 35%;
}

.u-col-36p {
  width: 36%;
}

.u-col-37p {
  width: 37%;
}

.u-col-38p {
  width: 38%;
}

.u-col-39p {
  width: 39%;
}

.u-col-40p {
  width: 40%;
}

.u-col-41p {
  width: 41%;
}

.u-col-42p {
  width: 42%;
}

.u-col-43p {
  width: 43%;
}

.u-col-44p {
  width: 44%;
}

.u-col-45p {
  width: 45%;
}

.u-col-46p {
  width: 46%;
}

.u-col-47p {
  width: 47%;
}

.u-col-48p {
  width: 48%;
}

.u-col-49p {
  width: 49%;
}

.u-col-50p {
  width: 50%;
}

.u-col-51p {
  width: 51%;
}

.u-col-52p {
  width: 52%;
}

.u-col-53p {
  width: 53%;
}

.u-col-54p {
  width: 54%;
}

.u-col-55p {
  width: 55%;
}

.u-col-56p {
  width: 56%;
}

.u-col-57p {
  width: 57%;
}

.u-col-58p {
  width: 58%;
}

.u-col-59p {
  width: 59%;
}

.u-col-60p {
  width: 60%;
}

.u-col-61p {
  width: 61%;
}

.u-col-62p {
  width: 62%;
}

.u-col-63p {
  width: 63%;
}

.u-col-64p {
  width: 64%;
}

.u-col-65p {
  width: 65%;
}

.u-col-66p {
  width: 66%;
}

.u-col-67p {
  width: 67%;
}

.u-col-68p {
  width: 68%;
}

.u-col-69p {
  width: 69%;
}

.u-col-70p {
  width: 70%;
}

.u-col-71p {
  width: 71%;
}

.u-col-72p {
  width: 72%;
}

.u-col-73p {
  width: 73%;
}

.u-col-74p {
  width: 74%;
}

.u-col-75p {
  width: 75%;
}

.u-col-76p {
  width: 76%;
}

.u-col-77p {
  width: 77%;
}

.u-col-78p {
  width: 78%;
}

.u-col-79p {
  width: 79%;
}

.u-col-80p {
  width: 80%;
}

.u-col-81p {
  width: 81%;
}

.u-col-82p {
  width: 82%;
}

.u-col-83p {
  width: 83%;
}

.u-col-84p {
  width: 84%;
}

.u-col-85p {
  width: 85%;
}

.u-col-86p {
  width: 86%;
}

.u-col-87p {
  width: 87%;
}

.u-col-88p {
  width: 88%;
}

.u-col-89p {
  width: 89%;
}

.u-col-90p {
  width: 90%;
}

.u-col-91p {
  width: 91%;
}

.u-col-92p {
  width: 92%;
}

.u-col-93p {
  width: 93%;
}

.u-col-94p {
  width: 94%;
}

.u-col-95p {
  width: 95%;
}

.u-col-96p {
  width: 96%;
}

.u-col-97p {
  width: 97%;
}

.u-col-98p {
  width: 98%;
}

.u-col-99p {
  width: 99%;
}

.u-col-100p {
  width: 100%;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

@media screen and (min-width: 1000px) {
  body a[href^=tel] {
    pointer-events: none;
    cursor: default !important;
  }

  .c-accordion-btn {
    transition: all .3s ease;
  }

  .c-accordion-btn:hover {
    opacity: .6;
  }

  .border-img::before,
  .c-standards__img::before,
  .c-mainvisual__pic::before,
  .c-features__img::before {
    left: -10px;
    top: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }

  .c-breadcrumbs {
    padding: 0 20px;
  }

  .c-breadcrumbs li {
    font-size: 13px;
    line-height: 1.4615384615;
  }

  .c-breadcrumbs li a:hover {
    text-decoration: underline;
  }

  .c-btn {
    transition: all .3s ease;
  }

  .c-btn--prev::after {
    transition: all .3s ease;
  }

  .c-btn--prev:hover::after {
    left: 25px;
  }

  .c-btn--next::after {
    transition: all .3s ease;
  }

  .c-btn--next:hover::after {
    right: 25px;
  }

  .c-btn-default:hover::after {
    right: -30px;
  }

  .c-cta--en .c-cta__contact {
    max-width: 100%;
    padding: 40px 20px;
  }

  .c-cta--en .c-cta__contact__inner {
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 30px;
  }

  .c-cta {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .c-cta__recruit {
    padding: 40px;
    max-width: 840px;
    background: url("../images/common/bg_recruit.webp") no-repeat center center/cover;
  }

  .c-cta__recruit__inner {
    padding: 61px 20px;
  }

  .c-cta__recruit__title {
    font-size: 48px;
  }

  .c-cta__contact {
    max-width: 770px;
    padding: 0;
  }

  .c-cta__contact__inner {
    gap: 40px;
    padding: 30px 50px;
    border-radius: 30px 0px 0px 30px;
  }

  .c-cta__contact__icon {
    width: 120px;
  }

  .c-cta__contact__title {
    font-size: 50px;
    line-height: 1.44;
  }

  .c-category {
    margin-right: 0;
  }

  .c-category__list {
    padding-right: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow-x: hidden;
  }

  .c-company-nav {
    background-image: url("../images/common/bg_company_nav.svg");
    padding: 120px 0;
  }

  .c-company-nav li {
    width: calc((100% - 40px)/3);
  }

  .c-company-nav li:nth-child(n+2) {
    margin-top: 0;
    margin-left: 20px;
  }

  .c-company-nav li:nth-child(2) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
  }

  .c-company-nav li:nth-child(3) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
  }

  .c-company-nav a {
    padding: 30px 30px 44px 50px;
    transition: all .3s ease;
  }

  .c-company-nav a::after {
    right: 50px;
    transition: all .3s ease;
  }

  .c-company-nav a:hover::after {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

  .c-company-nav__ja {
    margin-top: 10px;
  }

  .c-company-nav__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .c-company-nav__list.row-1-col li {
    width: 100%;
  }

  .c-factory {
    margin-bottom: 120px;
    padding: 80px 0;
  }

  .c-factory__inner {
    padding: 0;
  }

  .c-factory__ttl>span {
    display: inline-block;
    padding: 0 10px;
    font-size: 36px;
    line-height: 1.8055555556;
  }

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

  .c-features {
    padding: 120px 0;
  }

  .c-features__list {
    max-width: 960px;
    margin: 0 auto;
  }

  .c-features__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
  }

  .c-features__item:nth-child(2n) .c-features__img {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .c-features__img {
    width: 470px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .c-features__desc {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 0;
  }

  .c-features__num {
    font-size: 22px;
    font-weight: 500;
  }

  .c-features__ttl {
    font-size: 28px;
    line-height: 1.3928571429;
  }

  .c-features__ttl>span {
    padding: 6px 10px;
  }

  .c-features__sttl {
    font-size: 26px;
    line-height: 1.8076923077;
    margin-bottom: 0;
  }

  .c-features__proven {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8125;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-features__proven dt {
    width: 198px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 14px 10px;
  }

  .c-features__proven dd {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 0 0 30px;
    text-align: left;
  }

  :lang(en) .p-electricconductor .c-features__item {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  :lang(en) .p-electricconductor .c-features__proven dt {
    width: 350px;
  }

  .c-headline-lv2 {
    font-size: 34px;
    line-height: 1.7941176471;
    margin-bottom: 50px;
  }

  .c-headline-lv3 {
    font-size: 28px;
    line-height: 1.3571428571;
    margin-bottom: 20px;
  }

  .c-information {
    padding-top: 120px;
  }

  .c-information-certification__row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .c-information-certification__img {
    width: 240px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    aspect-ratio: 240/160;
  }

  .c-information-certification__desc {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 30px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .c-information-certification__ttl {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.7916666667;
  }

  .c-information-download__link {
    padding: 41px 50px;
  }

  .c-information-download__link::after {
    top: 60px;
    right: 50px;
    height: 34px;
    transition: all .3s ease;
  }

  .c-information-download__link .ico {
    width: 70px;
    height: 70px;
    font-size: 22px;
    letter-spacing: 0;
  }

  .c-information-download__link .text {
    padding-left: 20px;
    font-size: 22px;
    letter-spacing: 0;
  }

  .c-information-download__link:hover::after {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  .c-information .c-information-certification+.c-information-download {
    margin-top: 50px;
  }

  .c-information .c-information-download+.c-information-certification {
    margin-top: 120px;
  }

  .c-introduction {
    padding-top: 120px;
  }

  .c-introduction__movie {
    margin-top: 80px;
  }

  .c-introduction__desc {
    font-size: 28px;
    line-height: 1.8;
    letter-spacing: .84px;
    padding: 2px 10px;
  }

  .c-mainvisual {
    padding-bottom: 120px;
  }

  .c-mainvisual__main-img {
    margin: 0;
  }

  .c-mainvisual__main-img-caption span {
    font-size: 36px;
    line-height: 1.8055555556;
  }

  .c-mainvisual__desc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1020px;
    margin: 50px auto 0;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
  }

  .c-mainvisual__pic {
    width: 450px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .c-mainvisual__caption {
    font-size: 28px;
    line-height: 1.8;
    margin: 3px 0;
  }

  .c-mainvisual__txt {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-top: 0;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .c-mainvisual__txt p {
    display: inline-block;
  }

  .c-mainvisual__lead {
    margin: 0;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  :lang(en) .c-mainvisual__main-img-caption span {
    font-size: 28px;
  }

  .c-modal__content__inner {
    padding: 90px 90px 50px;
  }

  .c-page-header {
    padding: 31px 0 50px;
  }

  .c-page-header__en {
    font-size: 38px;
    line-height: 1.2631578947;
  }

  .c-page-header__en.text-2line {
    font-size: 38px;
    line-height: 1.3552631579;
  }

  .c-page-header__ja {
    margin-top: 5px;
  }

  .c-pagetop>div:hover {
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
  }

  .c-pagetop>div:hover>span::before,
  .c-pagetop>div:hover>span::after {
    background: #fff;
  }

  .c-pagetop>div:hover::before {
    opacity: 0;
  }

  .c-pagination {
    padding-top: 50px;
  }

  .c-products {
    padding: 120px 0 0;
  }

  .c-products__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto;
  }

  .c-products__item {
    width: 320px;
    max-width: calc(33.33333% - 6.6666666667px);
  }

  .c-products__item:nth-child(n+2) {
    margin-top: 0;
  }

  .c-products__img {
    aspect-ratio: 300/200;
  }

  .c-products-electric {
    padding-bottom: 120px;
  }

  .c-products-electric__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    max-width: 980px;
    margin: 0 auto;
  }

  .c-products-electric__item {
    width: calc(50% - 15px);
  }

  .c-products-electric__item:nth-child(n+2) {
    margin-top: 0;
  }

  .c-products-electric__link:hover {
    opacity: 1 !important;
  }

  .c-products-electric__link:hover .c-products-electric__btn .c-btn-default {
    opacity: .6;
  }

  .c-products-electric__link:hover .c-products-electric__btn .c-btn-default::after {
    right: -24px;
  }

  .c-products-electric__btn .c-btn-default:hover::after {
    right: -24px;
  }

  .c-single {
    padding-top: 60px;
  }

  .c-single__header {
    padding: 30px;
  }

  .c-single__title {
    font-size: 26px;
    line-height: 1.6153846154;
    letter-spacing: .03em;
  }

  .c-single__cat {
    gap: 10px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .c-single__cat li {
    margin-bottom: 0;
  }

  .c-single__time {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .c-single__content {
    padding: 0 30px 30px;
  }

  .c-single__content .wp-block-image,
  .c-single__content .wp-block-embed {
    margin: 30px -30px 0;
  }

  .c-single__content h2 {
    font-size: 22px;
    line-height: 1.5909090909;
  }

  .c-single__content h3 {
    font-size: 18px;
    line-height: 1.7777777778;
  }

  .c-single__content h4 {
    font-size: 16px;
    line-height: 1.8125;
  }

  .c-single__content h5 {
    font-size: 16px;
    line-height: 1.8125;
  }

  .c-single__content h6 {
    padding: 0;
    font-size: 14px;
    line-height: 1.7857142857;
  }

  .c-single__content blockquote {
    padding: 20px 78px 50px;
  }

  .c-single__content blockquote::before,
  .c-single__content blockquote::after {
    width: 28px;
    height: 21px;
  }

  .c-single__content blockquote::before {
    left: 30px;
    top: 30px;
  }

  .c-single__content blockquote::after {
    right: 30px;
    bottom: 30px;
  }

  .c-single__content ul,
  .c-single__content ol {
    padding: 0 25px;
  }

  .c-single__content .wp-block-image figcaption {
    padding: 5px 20px 0;
    font-size: 14px;
    line-height: 1.7857142857;
  }

  .c-single__btn {
    padding-top: 50px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .c-single-latest {
    margin-top: 100px;
  }

  .c-single-latest__title {
    font-size: 28px;
    line-height: 1.4642857143;
  }

  .c-standards {
    padding: 120px 0;
    margin-top: 120px;
  }

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

  .c-standards__lead p {
    display: inline-block;
  }

  .c-standards__list {
    max-width: 840px;
    margin: 0 auto;
  }

  .c-standards__img {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 347px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .c-standards__desc {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 0;
  }

  .c-standards__num {
    font-size: 22px;
    font-weight: 500;
  }

  .c-standards__ttl {
    font-size: 28px;
    line-height: 1.3928571429;
  }

  .c-standards__ttl>span {
    padding: 6px 10px;
  }

  .c-standards__sttl {
    font-size: 26px;
    line-height: 1.8076923077;
    margin-bottom: 0;
  }

  .c-standards__proven {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8125;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-standards__proven dt {
    width: 198px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 14px 10px;
  }

  .c-standards__proven dd {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 0 0 30px;
    text-align: left;
  }

  .c-standards__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
  }

  .c-standards__item.standards-item-01 .c-standards__img {
    width: 337px;
  }

  .c-standards__item.standards-item-02 .c-standards__img {
    width: 347px;
    margin-top: -10px;
  }

  .c-standards__item.standards-item-03 .c-standards__img {
    width: 335px;
  }

  .c-standards__item.standards-item-03 .c-standards__desc {
    margin-top: 4px;
  }

  .c-standards__item.standards-item-04 .c-standards__img {
    width: 326px;
  }

  .c-table-layout-dl dl {
    padding: 30px 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .c-table-layout-dl dt {
    font-weight: 500;
    width: 200px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 0 0 30px;
  }

  .c-table-layout-dl dd {
    padding: 0 30px;
  }

  .c-table__tbl {
    table-layout: fixed;
  }

  .c-title {
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .c-title__text {
    font-size: 60px;
    letter-spacing: 2.4px;
    margin-right: 40px;
  }

  .c-title__text small {
    font-size: 43px;
  }

  .c-title__text>span {
    font-size: 16px;
    letter-spacing: .64px;
  }

  .c-use {
    padding: 70px 100px 80px;
  }

  .c-use__lead {
    font-size: 26px;
    line-height: 1.3846153846;
    margin-bottom: 45px;
  }

  .c-use__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
  }

  .c-use__item {
    width: 33.3333%;
    padding: 0 10px;
    margin-top: 0;
  }

  .c-use__item:nth-child(n+2) {
    margin-top: 0;
  }

  .c-use__item:nth-child(n+4) {
    margin-top: 20px;
  }

  .c-use__img {
    aspect-ratio: 280/187;
  }

  .c-use__other {
    font-size: 16px;
    line-height: 1.8125;
  }

  .c-use__other dl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-use__other dt {
    margin-bottom: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .c-use__other dd {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 20px;
  }

  .ytb-thumbnail__btn {
    right: 25px;
    bottom: 25px;
  }

  .ed-closeModal {
    top: -66px;
    width: 45px;
    height: 47px;
  }

  .ed-closeModal::before,
  .ed-closeModal::after {
    width: 66px;
  }

  .modalContent {
    width: 100%;
  }

  .c-video-play-button:before {
    width: 68px;
    height: 68px;
    background-size: 68px 68px;
  }

  .l-footer {
    padding: 90px 20px 40px;
  }

  .l-footer__inner {
    max-width: 1080px;
    margin-inline: auto;
  }

  .l-footer__inner .footer_head_block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 90px;
    margin-right: calc(50% - 50vw);
  }

  .l-footer__inner .footer_head_block__main {
    max-width: 301px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .l-footer__inner .footer_head_block__logo-70th {
    margin-inline: 0;
    margin-bottom: 31px;
  }

  .l-footer__inner .footer_head_block__logo {
    max-width: 137px;
    margin-inline: 0;
  }

  .l-footer__inner .footer_head_block__title {
    font-size: 18px;
    font-weight: 400;
    margin-top: 32px;
    text-align: left;
  }

  .l-footer__inner .footer_head_block__text {
    font-size: 16px;
    text-align: left;
  }

  .l-footer__inner .footer_head_block__map {
    max-width: 889px;
    width: 100%;
    height: 380px;
    margin-top: 0;
  }

  .l-footer__inner .footer_middle_block {
    gap: 20px;
    padding: 0;
  }

  .l-footer__inner .footer_middle_block__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    max-width: 580px;
    width: 100%;
  }

  .l-footer__inner .footer_middle_block__list.is-list02 {
    max-width: 612px;
    padding-left: 0;
  }

  .l-footer__inner .footer_middle_block__list.is-list02 .footer_middle_block__group {
    margin-top: 15px;
  }

  .l-footer__inner .footer_middle_block__item+.footer_middle_block__item {
    margin-top: 0;
  }

  .l-footer__inner .footer_middle_block__item>a:hover {
    color: #77b43d;
  }

  .l-footer__inner .footer_middle_block__item>a:hover::before {
    background: #77b43d;
  }

  .l-footer__inner .footer_middle_block__title+.footer_middle_block__title {
    margin-top: 15px;
  }

  .l-footer__inner .footer_middle_block__group {
    margin-top: 15px;
  }

  .l-footer__inner .footer_middle_block__subTitle+.footer_middle_block__text {
    margin-top: 7px;
  }

  .l-footer__inner .footer_middle_block__logo {
    max-width: 246px;
    padding: 0;
    margin-top: 0;
  }

  .l-footer__inner .footer_bottom_block {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0;
  }

  .l-footer__copy {
    font-size: 14px;
    margin-top: 60px;
  }

  .l-header {
    width: 0;
  }

  .l-header__inner {
    width: auto;
  }

  .l-header__logo {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    width: 193px;
    height: 196px;
    box-shadow: 2px 2px 10px 0px rgba(84,84,84,.09);
  }

  .l-header__logo>img:nth-child(1) {
    width: 74px;
  }

  .l-header__logo>img:nth-child(2) {
    width: 104px;
  }

  .l-header__nav {
    padding-left: 20px;
    border-radius: 16px 0px 0px 16px;
    box-shadow: 2px 2px 10px 0px rgba(84,84,84,.09);
    margin-top: 15px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
  }

  .l-header__list {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .l-header__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80px;
  }

  .l-header__contact {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 5px 25px;
    border-radius: 0;
    position: relative;
    z-index: 12;
  }

  .l-header__contact_icon {
    width: 39px;
  }

  .l-header__contact_text {
    font-size: 11px;
    margin-top: 5px;
  }

  .l-container {
    padding: 0 20px;
    max-width: 1240px;
  }

  .l-inner {
    max-width: 1120px;
  }

  .grecaptcha-badge {
    bottom: 100px !important;
  }

  .l-box-content {
    padding: 100px;
  }

  .nav-btn {
    display: none;
  }

  .l-page {
    padding-top: 130px;
    padding-bottom: 140px;
    background-image: url("../images/common/bg_page.svg");
  }

  .l-page--02 {
    background-image: url("../images/common/bg_page_02.svg");
  }

  .l-page--03 {
    background-image: url("../images/common/bg_page_03.webp");
    background-position: top center;
    background-size: auto auto;
  }

  .l-page--04 {
    background-image: url("../images/common/bg_page_04.svg");
    background-position-y: 266px;
  }

  :lang(en) .l-page--04 {
    background-position-y: 241px;
  }

  .p-404 {
    padding: 140px 0 120px;
  }

  .p-404__wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-404__img {
    max-width: 261px;
    margin: 0 65px 0 0;
  }

  .p-404__text {
    text-align: left;
  }

  .p-404__text__head {
    font-size: 125px;
    margin-bottom: 20px;
  }

  .p-404__back {
    margin-top: 80px;
  }

  .l-page--access .l-page-content {
    padding: 120px 0;
  }

  .c-box-access {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 740px;
  }

  .c-box-access .txt-description {
    text-align: center;
    width: 100%;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 60px;
  }

  .c-box-access__map {
    max-width: 615px;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    width: calc(100% - 430px);
    margin-right: 0;
  }

  .c-box-access__map li {
    right: 29px;
    bottom: 215px;
    min-width: 105px;
    height: 53px;
  }

  .c-box-access__map li:nth-child(2) {
    right: 59px;
    bottom: 131px;
  }

  .c-box-access__map li:nth-child(3) {
    right: 119px;
    bottom: 49px;
  }

  .c-box-access__map .toggle {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .06em;
    border-radius: 40px;
    padding: 5px 41px 5px 20px;
  }

  .c-box-access__map .toggle::after,
  .c-box-access__map .toggle::before {
    width: 12px;
    height: 2px;
    right: 20px;
  }

  .c-box-access__map .toggle::after {
    right: 21px;
  }

  .c-box-access .c-infor__list {
    direction: ltr;
  }

  .c-box-access__contents {
    width: 440px;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    height: calc(100% - 120px);
    display: block;
    overflow-y: auto;
    margin-left: -10px;
    padding-left: 10px;
    direction: rtl;
  }

  .c-box-access__contents::-webkit-scrollbar {
    width: 10px;
  }

  .c-box-access__contents::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eee;
  }

  .c-box-access__contents::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
  }

  .c-infor__item {
    margin-bottom: 48px;
  }

  .c-infor__item.wth-bbt {
    margin-bottom: 18px;
  }

  .c-infor__item.wth-bbt .c-infor__box {
    padding-bottom: 27px;
    margin-bottom: 0;
    border-bottom: 1px solid #ccc;
  }

  .c-infor__item.not-desciption .c-infor__address {
    padding-top: 10px;
  }

  .c-infor__item.item-sub {
    margin-bottom: 13px;
  }

  .c-infor__txt {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .06em;
    margin-bottom: 20px;
  }

  .c-infor__box {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .06em;
    margin-bottom: 40px;
  }

  .c-infor__box dl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-infor__box dt {
    margin-bottom: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 9px 19px;
    font-weight: 400;
  }

  .c-infor__box dd {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 20px;
    text-align: left;
  }

  .c-infor__address {
    border-top: 1px solid #ccc;
    padding-top: 19px;
  }

  .c-infor__address.not-border {
    border-top: 0px;
    padding-top: 30px;
  }

  .c-infor__address p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .06em;
  }

  .c-infor__address p strong {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .06em;
  }

  .p-ir__title {
    margin-bottom: 29px;
    font-size: 24px;
    line-height: 1.8;
  }

  .p-ir__list-item dt {
    padding-left: 30px;
    width: 117px;
  }

  .c-anchor02__list {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-about-top .l-inner {
    max-width: 1300px;
  }

  .p-about-top__wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-about-top__item {
    width: 20%;
    height: 460px;
    overflow: hidden;
    position: relative;
    transition: width .3s ease-out;
  }

  .p-about-top__item:nth-child(1) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
  }

  .p-about-top__item:nth-child(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
  }

  .p-about-top__item:nth-child(3) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
  }

  .p-about-top__item:nth-child(4) {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
  }

  .p-about-top__item:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }

  .p-about-top__item:nth-child(6) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }

  .p-about-top__item:nth-child(7) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
  }

  .p-about-top__item:nth-child(8) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
  }

  .p-about-top__item a {
    height: 100%;
  }

  .p-about-top__item.active {
    width: 378px;
  }

  .p-about-top__item.no-active .p-about-top__des {
    opacity: 0;
  }

  .p-about-top__item:nth-child(1) {
    background: url("../images/about/pic_about01.webp") left top no-repeat;
    background-size: cover;
  }

  .p-about-top__item:nth-child(2) {
    background: url("../images/about/pic_about02.webp") left top no-repeat;
    background-size: cover;
  }

  .p-about-top__item:nth-child(3) {
    background: url("../images/about/pic_about03.webp") left top no-repeat;
    background-size: cover;
  }

  .p-about-top__item:nth-child(4) {
    background: url("../images/about/pic_about04.webp") left top no-repeat;
    background-size: cover;
  }

  .p-about-top__item:nth-child(5) {
    background: url("../images/about/pic_about05.webp") left top no-repeat;
    background-size: cover;
  }

  .p-about-top__item a:hover .p-about-top__txt:after {
    -webkit-transform: translate(5px, -50%);
    transform: translate(5px, -50%);
  }

  .p-about-top__des {
    width: min(14.9vw,198px);
    padding: min(1.7vw,18px) 0 min(1.7vw,14px) min(1.4vw,20px);
  }

  .p-about-top__ttl {
    font-size: min(1.4vw,18px);
  }

  .p-about-top__txt {
    font-size: min(1.1vw,14px);
  }

  .p-about-ms {
    background: #fff url("../images/about/bg_ms.webp") center repeat-y;
    background-size: cover;
    padding: 119px 0 140px;
  }

  .p-about-message {
    background: #fff url("../images/top/bg_blog.svg") no-repeat top center/cover;
    padding: 120px 0;
  }

  :lang(en) .p-about-ms__item:nth-child(odd) {
    padding-right: min(25.5vw,368px);
  }

  .p-blog__list {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 30px;
  }

  .p-blog__item {
    width: calc(33.33333% - 20px);
  }

  .p-blog__link {
    display: block;
    height: 100%;
  }

  .p-blog__thumb {
    aspect-ratio: 273.33/191;
  }

  .p-blog__desc {
    padding: 20px;
  }

  .p-blog__title {
    font-size: 26px;
    line-height: 1.4615384615;
    -webkit-line-clamp: 3;
    max-height: 114px;
  }

  .p-blog__cat li {
    font-size: 13px;
    line-height: 1.7692307692;
    padding: 5px 19px;
  }

  .p-company__logo {
    margin-top: 0;
  }

  .p-contact__group-wrap {
    padding: 0 40px;
  }

  .p-contact__label label {
    font-size: 16px;
    line-height: 1.4375;
  }

  .p-contact__label .lbl-required {
    font-size: 12px;
    line-height: 1.5;
    padding: 1px 6px;
    font-weight: 700;
    -webkit-transform: translateY(-1.5px);
    transform: translateY(-1.5px);
  }

  .p-contact__input {
    font-size: 16px;
    line-height: 1.4375;
    padding: 9px;
  }

  .p-contact textarea {
    min-height: 140px;
  }

  .p-contact__list-radio,
  .p-contact .wpcf7-radio {
    padding-top: 0;
  }

  .p-contact input[type=radio] {
    cursor: pointer;
  }

  .p-contact input[type=radio]+label,
  .p-contact input[type=radio]+.wpcf7-list-item-label {
    font-size: 16px;
    line-height: 1.4375;
  }

  .p-contact input[type=radio]+label::before,
  .p-contact input[type=radio]+.wpcf7-list-item-label::before {
    top: 2.5px;
  }

  .p-contact input[type=radio]+label::after,
  .p-contact input[type=radio]+.wpcf7-list-item-label::after {
    top: 5.5px;
  }

  .p-contact-privacy {
    margin-top: 50px;
    padding-top: 66px;
  }

  .p-contact-privacy__wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
  }

  .p-contact-privacy__inner {
    line-height: 1.42;
    padding: 29px;
  }

  .p-contact-privacy__inner::-webkit-scrollbar {
    width: 10px;
  }

  .p-contact-privacy__inner::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #eee;
  }

  .p-contact-privacy__inner::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
  }

  .p-contact-privacy__inner h3 {
    margin-bottom: 1.42em;
  }

  .p-contact-privacy__inner h4 {
    margin-top: 1.42em;
  }

  .p-contact__privacy-consent input[type=checkbox]+label {
    cursor: pointer;
  }

  .p-contact__group-btn {
    padding: 60px 0 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }

  .p-contact__btn {
    margin-top: 0;
    width: calc(50% - 15px);
    padding: 24px 30px;
    transition: all .3s ease;
  }

  .p-contact__btn::after {
    left: 9px;
    transition: all .3s ease;
  }

  .p-contact__btn:hover::after {
    left: 5px;
  }

  .p-contact__btn.is-submit::after {
    right: 9px;
  }

  .p-contact__btn.is-submit:hover::after {
    left: auto;
    right: 5px;
  }

  .p-contact-thanks {
    text-align: center;
  }

  .p-contact-thanks__title {
    font-size: 32px;
    line-height: 1.4375;
  }

  .p-contact-thanks__btn {
    margin-top: 60px;
  }

  .p-product-detail__wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-product-detail__wrap-txt {
    width: calc(100% - 390px);
    padding-right: 50px;
  }

  .p-product-detail__wrap-pic {
    width: 390px;
  }

  .p-product-detail-ttlBox--mgb {
    margin-bottom: 24px;
  }

  .p-electricconductor .c-features__item:nth-child(1) .c-features__img {
    max-width: 350px;
  }

  .harness-products-modal__photo ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }

  .harness-products-modal__photo li {
    width: calc(33.333% - 6.6666666667px);
  }

  .harness-products-modal__photo li+li {
    margin-top: 0;
  }

  .c-sidebar__sticky {
    width: 100%;
    max-width: 235px;
  }

  .c-lightmetal .c-mainvisual__txt p:first-child {
    letter-spacing: 0;
    line-height: 2;
    margin-right: -20px;
  }

  .c-lightmetal .c-usage {
    padding: 120px 0;
  }

  .c-lightmetal .c-usage__wrap {
    padding: 88px 100px;
  }

  .c-lightmetal .c-usage__row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 29px;
  }

  .c-lightmetal .c-usage__lead {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 41px;
  }

  .c-lightmetal .c-usage__des {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 0;
  }

  .c-lightmetal .c-usage__list li {
    font-size: 18px;
    line-height: 1.8;
  }

  .c-lightmetal .c-usage__pic {
    width: 390px;
  }

  .c-lightmetal .c-processing {
    padding: 132px 0 90px;
  }

  .c-lightmetal .c-processing .l-inner {
    max-width: 1020px;
    margin: 0 auto;
  }

  .c-lightmetal .c-processing__top {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
    padding: 0 10px;
  }

  .c-lightmetal .c-processing__top__pic {
    width: 470px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .c-lightmetal .c-processing__top__des {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 0;
  }

  .c-lightmetal .c-processing__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 50px 0 0 -30px;
  }

  .c-lightmetal .c-processing__list li {
    width: calc(25% - 30px);
    margin: 0 0 0 30px;
  }

  .p-news__item-inner {
    padding: 30px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-news__time {
    width: 96px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .p-news__category {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px;
  }

  .p-news__text {
    margin-top: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .p-policy a:hover {
    text-decoration: none;
  }

  .p-policy__lead {
    padding-bottom: 20px;
  }

  .p-recruitment .txt-description {
    text-align: center;
  }

  .p-recruitment-btn__wrap {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 61px;
  }

  .p-recruitment-btn__link {
    min-height: 108px;
    min-width: 430px;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 50px;
    font-size: 20px;
    line-height: 1.448;
  }

  .p-recruitment-btn__link::after {
    left: auto;
    right: 50px;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
    transition: all .3s ease;
  }

  .p-recruitment-btn__link:hover::after {
    -webkit-transform: translateX(5px) translateY(-50%);
    transform: translateX(5px) translateY(-50%);
  }

  .p-recruitment {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-recruitment__media {
    margin-top: 30px;
    max-width: 800px;
  }

  .p-recruitment__title {
    font-size: 26px;
    line-height: 1.8;
    text-align: left;
    padding-left: 30px;
  }

  .p-recruitment .c-table-layout-dl dl {
    padding: 30px 20px;
  }

  .p-recruitment .c-table-layout-dl dl:nth-child(7) .c-list-dots {
    margin-top: 0;
  }

  .p-recruitment .c-table-layout-dl dt {
    padding-bottom: 0;
    padding-left: 10px;
    padding-top: 4px;
  }

  .p-recruitment .c-table-layout-dl dd {
    padding: 0 10px;
  }

  .p-recruitment .c-list-dots li {
    padding-left: 1em;
  }

  .p-top .mainvisual_block__banner {
    display: block;
    position: absolute;
    top: 120px;
    right: 30px;
    z-index: 8;
    width: min(36vw,516px);
  }

  .p-top .mainvisual_block__fv {
    aspect-ratio: 16/9;
  }

  .p-top .mainvisual_block__main {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    top: initial;
    bottom: 91px;
    left: initial;
    right: 134px;
    -webkit-transform: initial;
    transform: initial;
    max-width: 554px;
    margin-inline: initial;
  }

  .p-top .mainvisual_block__button {
    width: 47px;
    margin-top: 0;
    margin-right: 40px;
  }

  .p-top .lead_block {
    padding: 60px 20px;
  }

  .p-top .lead_block__deco01 {
    top: -41px;
    max-width: 502px;
  }

  .p-top .lead_block__deco02 {
    bottom: -62px;
    max-width: 502px;
  }

  .p-top .lead_block__text {
    font-size: 1.5rem;
    letter-spacing: .06em;
    text-align: center;
  }

  .p-top .contents_block {
    padding-top: 120px;
  }

  .p-top .contents_block.is-our-business {
    background-image: url("../images/top/bg_our_business.svg");
    background-position: 45px 273px;
  }

  .p-top .contents_block.is-about {
    background: url("../images/top/bg_about.svg") no-repeat;
    background-position: center 201px;
  }

  .p-top .contents_block.is-blog {
    background: url("../images/top/bg_blog.svg") no-repeat top center/cover;
  }

  .p-top .contents_block.is-news {
    padding: 40px;
  }

  .p-top .contents_block .contents_button_block {
    margin-top: 60px;
  }

  .p-top .contents_block .contents_button_block a {
    padding: 9px 30px;
  }

  .p-top .contents_block .contents_title_block__en {
    font-size: 38px;
    line-height: 1;
  }

  .p-top .contents_block .contents_title_block__jp {
    margin-top: 15px;
  }

  .p-top .contents_block .contents01_block__inner {
    padding: 0 60px;
  }

  .p-top .contents_block .contents01_block__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin: 50px auto 0;
    max-width: 1080px;
  }

  .p-top .contents_block .contents01_block__item {
    width: calc(33.3333333333% - 20px);
  }

  .p-top .contents_block .contents01_block__item+.contents01_block__item {
    margin-top: 0;
  }

  .p-top .contents_block .contents01_block__img {
    padding-top: 24px;
    padding-right: 24px;
  }

  .p-top .contents_block .contents01_block__img::before {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  .p-top .contents_block .contents01_block__img_button {
    right: 50px;
    bottom: 25px;
  }

  .p-top .contents_block .contents01_block__head {
    font-size: min(1.9vw,32px);
  }

  .p-top .contents_block .contents01_block__title {
    font-size: min(2.14vw,34px);
  }

  .p-top .contents_block .contents01_block__text {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: .03em;
    min-height: 64px;
  }

  .p-top .contents_block .contents01_block__link {
    padding: 5px 20px;
  }

  .p-top .contents_block .contents01_block__bottom {
    margin-top: -27px;
  }

  .p-top .contents_block .contents02_block {
    padding: 0 50px 120px;
  }

  .p-top .contents_block .contents02_block__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1080px;
    margin-inline: auto;
  }

  .p-top .contents_block .contents02_block__item+.contents02_block__item {
    margin-top: 0;
  }

  .p-top .contents_block .contents02_block__group {
    margin-top: -45px;
    padding: 0 20px;
  }

  .p-top .contents_block .contents03_block {
    aspect-ratio: 1440/455;
    background-image: url("../images/top/bg_banner_pc.webp");
  }

  .p-top .contents_block .contents03_block__inner {
    top: 24vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-top .contents_block .contents03_block__title {
    font-size: 2.875rem;
  }

  .p-top .contents_block .contents03_block__title span {
    font-size: 3.75rem;
    margin-inline: 10px;
  }

  .p-top .contents_block .contents03_block__title span::before {
    top: -14px;
    left: -19px;
    width: 48px;
  }

  .p-top .contents_block .contents03_block__text {
    font-size: 2.5rem;
  }

  .p-top .contents_block .contents03_block__link a {
    font-size: 16px;
  }

  .p-top .contents_block .contents04_block {
    margin: 0 auto;
    padding: 0 60px 120px;
  }

  .p-top .contents_block .contents04_block__list {
    max-width: 1080px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-inline: auto;
    margin: 50px auto 0;
  }

  .p-top .contents_block .contents04_block__item {
    max-width: 406px;
  }

  .p-top .contents_block .contents04_block__item+.contents04_block__item {
    margin-top: 0;
  }

  .p-top .contents_block .contents04_block__img {
    aspect-ratio: 406/229;
  }

  .p-top .contents_block .contents04_block__title {
    font-size: 26px;
  }

  .p-top .contents_block .contents04_block__middle {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-top .contents_block .contents04_block__middle_right {
    max-width: 150px;
    width: 100%;
  }

  .p-top .contents_block .contents04_block__category {
    font-size: .8125rem;
  }

  .p-top .contents_block .contents04_block__day {
    font-size: .8125rem;
  }

  .p-top .contents_block .contents05_block {
    padding: 80px 20px;
  }

  .p-top .contents_block .contents05_block__list {
    margin-top: 50px;
  }

  .p-top .contents_block .contents05_block__item a {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }

  :lang(en) .p-top .contents_block .contents03_block {
    background-image: url("../images/top/bg_banner_pc_en.webp");
  }

  .u-ta-l-pc {
    text-align: left !important;
  }

  .u-ta-c-pc {
    text-align: center !important;
  }

  .u-ta-r-pc {
    text-align: right !important;
  }

  .u-ta-j-pc {
    text-align: justify !important;
    -ms-text-justify: inter-ideograph !important;
    text-justify: inter-ideograph !important;
  }

  .u-sp-hide {
    display: block !important;
  }

  .u-pc-hide {
    display: none !important;
  }

  .u-sp-hide-f {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-sp-hide-ib {
    display: inline-block !important;
  }

  .u-mt-0-pc {
    margin-top: 0px !important;
  }

  .u-mr-0-pc {
    margin-right: 0px !important;
  }

  .u-mb-0-pc {
    margin-bottom: 0px !important;
  }

  .u-ml-0-pc {
    margin-left: 0px !important;
  }

  .u-pt-0-pc {
    padding-top: 0px !important;
  }

  .u-pr-0-pc {
    padding-right: 0px !important;
  }

  .u-pb-0-pc {
    padding-bottom: 0px !important;
  }

  .u-pl-0-pc {
    padding-left: 0px !important;
  }

  .u-mt-5-pc {
    margin-top: 5px !important;
  }

  .u-mr-5-pc {
    margin-right: 5px !important;
  }

  .u-mb-5-pc {
    margin-bottom: 5px !important;
  }

  .u-ml-5-pc {
    margin-left: 5px !important;
  }

  .u-pt-5-pc {
    padding-top: 5px !important;
  }

  .u-pr-5-pc {
    padding-right: 5px !important;
  }

  .u-pb-5-pc {
    padding-bottom: 5px !important;
  }

  .u-pl-5-pc {
    padding-left: 5px !important;
  }

  .u-mt-10-pc {
    margin-top: 10px !important;
  }

  .u-mr-10-pc {
    margin-right: 10px !important;
  }

  .u-mb-10-pc {
    margin-bottom: 10px !important;
  }

  .u-ml-10-pc {
    margin-left: 10px !important;
  }

  .u-pt-10-pc {
    padding-top: 10px !important;
  }

  .u-pr-10-pc {
    padding-right: 10px !important;
  }

  .u-pb-10-pc {
    padding-bottom: 10px !important;
  }

  .u-pl-10-pc {
    padding-left: 10px !important;
  }

  .u-mt-15-pc {
    margin-top: 15px !important;
  }

  .u-mr-15-pc {
    margin-right: 15px !important;
  }

  .u-mb-15-pc {
    margin-bottom: 15px !important;
  }

  .u-ml-15-pc {
    margin-left: 15px !important;
  }

  .u-pt-15-pc {
    padding-top: 15px !important;
  }

  .u-pr-15-pc {
    padding-right: 15px !important;
  }

  .u-pb-15-pc {
    padding-bottom: 15px !important;
  }

  .u-pl-15-pc {
    padding-left: 15px !important;
  }

  .u-mt-20-pc {
    margin-top: 20px !important;
  }

  .u-mr-20-pc {
    margin-right: 20px !important;
  }

  .u-mb-20-pc {
    margin-bottom: 20px !important;
  }

  .u-ml-20-pc {
    margin-left: 20px !important;
  }

  .u-pt-20-pc {
    padding-top: 20px !important;
  }

  .u-pr-20-pc {
    padding-right: 20px !important;
  }

  .u-pb-20-pc {
    padding-bottom: 20px !important;
  }

  .u-pl-20-pc {
    padding-left: 20px !important;
  }

  .u-mt-25-pc {
    margin-top: 25px !important;
  }

  .u-mr-25-pc {
    margin-right: 25px !important;
  }

  .u-mb-25-pc {
    margin-bottom: 25px !important;
  }

  .u-ml-25-pc {
    margin-left: 25px !important;
  }

  .u-pt-25-pc {
    padding-top: 25px !important;
  }

  .u-pr-25-pc {
    padding-right: 25px !important;
  }

  .u-pb-25-pc {
    padding-bottom: 25px !important;
  }

  .u-pl-25-pc {
    padding-left: 25px !important;
  }

  .u-mt-30-pc {
    margin-top: 30px !important;
  }

  .u-mr-30-pc {
    margin-right: 30px !important;
  }

  .u-mb-30-pc {
    margin-bottom: 30px !important;
  }

  .u-ml-30-pc {
    margin-left: 30px !important;
  }

  .u-pt-30-pc {
    padding-top: 30px !important;
  }

  .u-pr-30-pc {
    padding-right: 30px !important;
  }

  .u-pb-30-pc {
    padding-bottom: 30px !important;
  }

  .u-pl-30-pc {
    padding-left: 30px !important;
  }

  .u-mt-35-pc {
    margin-top: 35px !important;
  }

  .u-mr-35-pc {
    margin-right: 35px !important;
  }

  .u-mb-35-pc {
    margin-bottom: 35px !important;
  }

  .u-ml-35-pc {
    margin-left: 35px !important;
  }

  .u-pt-35-pc {
    padding-top: 35px !important;
  }

  .u-pr-35-pc {
    padding-right: 35px !important;
  }

  .u-pb-35-pc {
    padding-bottom: 35px !important;
  }

  .u-pl-35-pc {
    padding-left: 35px !important;
  }

  .u-mt-40-pc {
    margin-top: 40px !important;
  }

  .u-mr-40-pc {
    margin-right: 40px !important;
  }

  .u-mb-40-pc {
    margin-bottom: 40px !important;
  }

  .u-ml-40-pc {
    margin-left: 40px !important;
  }

  .u-pt-40-pc {
    padding-top: 40px !important;
  }

  .u-pr-40-pc {
    padding-right: 40px !important;
  }

  .u-pb-40-pc {
    padding-bottom: 40px !important;
  }

  .u-pl-40-pc {
    padding-left: 40px !important;
  }

  .u-mt-45-pc {
    margin-top: 45px !important;
  }

  .u-mr-45-pc {
    margin-right: 45px !important;
  }

  .u-mb-45-pc {
    margin-bottom: 45px !important;
  }

  .u-ml-45-pc {
    margin-left: 45px !important;
  }

  .u-pt-45-pc {
    padding-top: 45px !important;
  }

  .u-pr-45-pc {
    padding-right: 45px !important;
  }

  .u-pb-45-pc {
    padding-bottom: 45px !important;
  }

  .u-pl-45-pc {
    padding-left: 45px !important;
  }

  .u-mt-50-pc {
    margin-top: 50px !important;
  }

  .u-mr-50-pc {
    margin-right: 50px !important;
  }

  .u-mb-50-pc {
    margin-bottom: 50px !important;
  }

  .u-ml-50-pc {
    margin-left: 50px !important;
  }

  .u-pt-50-pc {
    padding-top: 50px !important;
  }

  .u-pr-50-pc {
    padding-right: 50px !important;
  }

  .u-pb-50-pc {
    padding-bottom: 50px !important;
  }

  .u-pl-50-pc {
    padding-left: 50px !important;
  }

  .u-mt-55-pc {
    margin-top: 55px !important;
  }

  .u-mr-55-pc {
    margin-right: 55px !important;
  }

  .u-mb-55-pc {
    margin-bottom: 55px !important;
  }

  .u-ml-55-pc {
    margin-left: 55px !important;
  }

  .u-pt-55-pc {
    padding-top: 55px !important;
  }

  .u-pr-55-pc {
    padding-right: 55px !important;
  }

  .u-pb-55-pc {
    padding-bottom: 55px !important;
  }

  .u-pl-55-pc {
    padding-left: 55px !important;
  }

  .u-mt-60-pc {
    margin-top: 60px !important;
  }

  .u-mr-60-pc {
    margin-right: 60px !important;
  }

  .u-mb-60-pc {
    margin-bottom: 60px !important;
  }

  .u-ml-60-pc {
    margin-left: 60px !important;
  }

  .u-pt-60-pc {
    padding-top: 60px !important;
  }

  .u-pr-60-pc {
    padding-right: 60px !important;
  }

  .u-pb-60-pc {
    padding-bottom: 60px !important;
  }

  .u-pl-60-pc {
    padding-left: 60px !important;
  }

  .u-mt-65-pc {
    margin-top: 65px !important;
  }

  .u-mr-65-pc {
    margin-right: 65px !important;
  }

  .u-mb-65-pc {
    margin-bottom: 65px !important;
  }

  .u-ml-65-pc {
    margin-left: 65px !important;
  }

  .u-pt-65-pc {
    padding-top: 65px !important;
  }

  .u-pr-65-pc {
    padding-right: 65px !important;
  }

  .u-pb-65-pc {
    padding-bottom: 65px !important;
  }

  .u-pl-65-pc {
    padding-left: 65px !important;
  }

  .u-mt-70-pc {
    margin-top: 70px !important;
  }

  .u-mr-70-pc {
    margin-right: 70px !important;
  }

  .u-mb-70-pc {
    margin-bottom: 70px !important;
  }

  .u-ml-70-pc {
    margin-left: 70px !important;
  }

  .u-pt-70-pc {
    padding-top: 70px !important;
  }

  .u-pr-70-pc {
    padding-right: 70px !important;
  }

  .u-pb-70-pc {
    padding-bottom: 70px !important;
  }

  .u-pl-70-pc {
    padding-left: 70px !important;
  }

  .u-mt-75-pc {
    margin-top: 75px !important;
  }

  .u-mr-75-pc {
    margin-right: 75px !important;
  }

  .u-mb-75-pc {
    margin-bottom: 75px !important;
  }

  .u-ml-75-pc {
    margin-left: 75px !important;
  }

  .u-pt-75-pc {
    padding-top: 75px !important;
  }

  .u-pr-75-pc {
    padding-right: 75px !important;
  }

  .u-pb-75-pc {
    padding-bottom: 75px !important;
  }

  .u-pl-75-pc {
    padding-left: 75px !important;
  }

  .u-mt-80-pc {
    margin-top: 80px !important;
  }

  .u-mr-80-pc {
    margin-right: 80px !important;
  }

  .u-mb-80-pc {
    margin-bottom: 80px !important;
  }

  .u-ml-80-pc {
    margin-left: 80px !important;
  }

  .u-pt-80-pc {
    padding-top: 80px !important;
  }

  .u-pr-80-pc {
    padding-right: 80px !important;
  }

  .u-pb-80-pc {
    padding-bottom: 80px !important;
  }

  .u-pl-80-pc {
    padding-left: 80px !important;
  }

  .u-mt-85-pc {
    margin-top: 85px !important;
  }

  .u-mr-85-pc {
    margin-right: 85px !important;
  }

  .u-mb-85-pc {
    margin-bottom: 85px !important;
  }

  .u-ml-85-pc {
    margin-left: 85px !important;
  }

  .u-pt-85-pc {
    padding-top: 85px !important;
  }

  .u-pr-85-pc {
    padding-right: 85px !important;
  }

  .u-pb-85-pc {
    padding-bottom: 85px !important;
  }

  .u-pl-85-pc {
    padding-left: 85px !important;
  }

  .u-mt-90-pc {
    margin-top: 90px !important;
  }

  .u-mr-90-pc {
    margin-right: 90px !important;
  }

  .u-mb-90-pc {
    margin-bottom: 90px !important;
  }

  .u-ml-90-pc {
    margin-left: 90px !important;
  }

  .u-pt-90-pc {
    padding-top: 90px !important;
  }

  .u-pr-90-pc {
    padding-right: 90px !important;
  }

  .u-pb-90-pc {
    padding-bottom: 90px !important;
  }

  .u-pl-90-pc {
    padding-left: 90px !important;
  }

  .u-mt-95-pc {
    margin-top: 95px !important;
  }

  .u-mr-95-pc {
    margin-right: 95px !important;
  }

  .u-mb-95-pc {
    margin-bottom: 95px !important;
  }

  .u-ml-95-pc {
    margin-left: 95px !important;
  }

  .u-pt-95-pc {
    padding-top: 95px !important;
  }

  .u-pr-95-pc {
    padding-right: 95px !important;
  }

  .u-pb-95-pc {
    padding-bottom: 95px !important;
  }

  .u-pl-95-pc {
    padding-left: 95px !important;
  }

  .u-mt-100-pc {
    margin-top: 100px !important;
  }

  .u-mr-100-pc {
    margin-right: 100px !important;
  }

  .u-mb-100-pc {
    margin-bottom: 100px !important;
  }

  .u-ml-100-pc {
    margin-left: 100px !important;
  }

  .u-pt-100-pc {
    padding-top: 100px !important;
  }

  .u-pr-100-pc {
    padding-right: 100px !important;
  }

  .u-pb-100-pc {
    padding-bottom: 100px !important;
  }

  .u-pl-100-pc {
    padding-left: 100px !important;
  }

  .u-col-0p-pc {
    width: 0%;
  }

  .u-col-1p-pc {
    width: 1%;
  }

  .u-col-2p-pc {
    width: 2%;
  }

  .u-col-3p-pc {
    width: 3%;
  }

  .u-col-4p-pc {
    width: 4%;
  }

  .u-col-5p-pc {
    width: 5%;
  }

  .u-col-6p-pc {
    width: 6%;
  }

  .u-col-7p-pc {
    width: 7%;
  }

  .u-col-8p-pc {
    width: 8%;
  }

  .u-col-9p-pc {
    width: 9%;
  }

  .u-col-10p-pc {
    width: 10%;
  }

  .u-col-11p-pc {
    width: 11%;
  }

  .u-col-12p-pc {
    width: 12%;
  }

  .u-col-13p-pc {
    width: 13%;
  }

  .u-col-14p-pc {
    width: 14%;
  }

  .u-col-15p-pc {
    width: 15%;
  }

  .u-col-16p-pc {
    width: 16%;
  }

  .u-col-17p-pc {
    width: 17%;
  }

  .u-col-18p-pc {
    width: 18%;
  }

  .u-col-19p-pc {
    width: 19%;
  }

  .u-col-20p-pc {
    width: 20%;
  }

  .u-col-21p-pc {
    width: 21%;
  }

  .u-col-22p-pc {
    width: 22%;
  }

  .u-col-23p-pc {
    width: 23%;
  }

  .u-col-24p-pc {
    width: 24%;
  }

  .u-col-25p-pc {
    width: 25%;
  }

  .u-col-26p-pc {
    width: 26%;
  }

  .u-col-27p-pc {
    width: 27%;
  }

  .u-col-28p-pc {
    width: 28%;
  }

  .u-col-29p-pc {
    width: 29%;
  }

  .u-col-30p-pc {
    width: 30%;
  }

  .u-col-31p-pc {
    width: 31%;
  }

  .u-col-32p-pc {
    width: 32%;
  }

  .u-col-33p-pc {
    width: 33%;
  }

  .u-col-34p-pc {
    width: 34%;
  }

  .u-col-35p-pc {
    width: 35%;
  }

  .u-col-36p-pc {
    width: 36%;
  }

  .u-col-37p-pc {
    width: 37%;
  }

  .u-col-38p-pc {
    width: 38%;
  }

  .u-col-39p-pc {
    width: 39%;
  }

  .u-col-40p-pc {
    width: 40%;
  }

  .u-col-41p-pc {
    width: 41%;
  }

  .u-col-42p-pc {
    width: 42%;
  }

  .u-col-43p-pc {
    width: 43%;
  }

  .u-col-44p-pc {
    width: 44%;
  }

  .u-col-45p-pc {
    width: 45%;
  }

  .u-col-46p-pc {
    width: 46%;
  }

  .u-col-47p-pc {
    width: 47%;
  }

  .u-col-48p-pc {
    width: 48%;
  }

  .u-col-49p-pc {
    width: 49%;
  }

  .u-col-50p-pc {
    width: 50%;
  }

  .u-col-51p-pc {
    width: 51%;
  }

  .u-col-52p-pc {
    width: 52%;
  }

  .u-col-53p-pc {
    width: 53%;
  }

  .u-col-54p-pc {
    width: 54%;
  }

  .u-col-55p-pc {
    width: 55%;
  }

  .u-col-56p-pc {
    width: 56%;
  }

  .u-col-57p-pc {
    width: 57%;
  }

  .u-col-58p-pc {
    width: 58%;
  }

  .u-col-59p-pc {
    width: 59%;
  }

  .u-col-60p-pc {
    width: 60%;
  }

  .u-col-61p-pc {
    width: 61%;
  }

  .u-col-62p-pc {
    width: 62%;
  }

  .u-col-63p-pc {
    width: 63%;
  }

  .u-col-64p-pc {
    width: 64%;
  }

  .u-col-65p-pc {
    width: 65%;
  }

  .u-col-66p-pc {
    width: 66%;
  }

  .u-col-67p-pc {
    width: 67%;
  }

  .u-col-68p-pc {
    width: 68%;
  }

  .u-col-69p-pc {
    width: 69%;
  }

  .u-col-70p-pc {
    width: 70%;
  }

  .u-col-71p-pc {
    width: 71%;
  }

  .u-col-72p-pc {
    width: 72%;
  }

  .u-col-73p-pc {
    width: 73%;
  }

  .u-col-74p-pc {
    width: 74%;
  }

  .u-col-75p-pc {
    width: 75%;
  }

  .u-col-76p-pc {
    width: 76%;
  }

  .u-col-77p-pc {
    width: 77%;
  }

  .u-col-78p-pc {
    width: 78%;
  }

  .u-col-79p-pc {
    width: 79%;
  }

  .u-col-80p-pc {
    width: 80%;
  }

  .u-col-81p-pc {
    width: 81%;
  }

  .u-col-82p-pc {
    width: 82%;
  }

  .u-col-83p-pc {
    width: 83%;
  }

  .u-col-84p-pc {
    width: 84%;
  }

  .u-col-85p-pc {
    width: 85%;
  }

  .u-col-86p-pc {
    width: 86%;
  }

  .u-col-87p-pc {
    width: 87%;
  }

  .u-col-88p-pc {
    width: 88%;
  }

  .u-col-89p-pc {
    width: 89%;
  }

  .u-col-90p-pc {
    width: 90%;
  }

  .u-col-91p-pc {
    width: 91%;
  }

  .u-col-92p-pc {
    width: 92%;
  }

  .u-col-93p-pc {
    width: 93%;
  }

  .u-col-94p-pc {
    width: 94%;
  }

  .u-col-95p-pc {
    width: 95%;
  }

  .u-col-96p-pc {
    width: 96%;
  }

  .u-col-97p-pc {
    width: 97%;
  }

  .u-col-98p-pc {
    width: 98%;
  }

  .u-col-99p-pc {
    width: 99%;
  }

  .u-col-100p-pc {
    width: 100%;
  }
}

@media screen and (min-width: 1000px)and (min-width: 2880px) {
  .l-page--03 {
    background-size: cover;
  }
}

@media screen and (min-width: 1200px) {
  .l-header__button {
    padding-inline: 20px;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
  }
}

@media screen and (min-width: 1275px) {
  .l-header__link {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 1275px) {
  .l-header__logo {
    width: 14vw;
  }

  .l-header__nav {
    width: 85vw;
  }
}

@media screen and (max-width: 1000px) {
  .l-footer__inner .footer_middle_block__logo>img {
    display: block;
    width: 160px;
    height: auto;
    margin: 0 auto;
  }

  .l-header__logo {
    width: 177px;
  }

  .l-header__nav {
    width: auto;
  }

  .l-header__lang {
    position: fixed;
    top: 20px;
    right: 148px;
  }

  .l-header__lang_item {
    padding: 6px 10px;
  }
}

@media screen and (max-width: 999px) {
  .c-standards__item.standards-item-02 .c-standards__desc {
    padding-right: 15px;
  }

  .c-table__scroll {
    overflow-x: auto;
  }

  .c-table__tbl th {
    min-width: 230px;
    padding: 20px 10px;
  }

  .c-table__tbl td {
    padding: 20px 5px;
  }

  .c-table__tbl--tbl02 th {
    min-width: 220px;
  }

  .c-table__tbl--tbl02 td {
    min-width: 110px;
  }

  .c-table__tbl--tbl03 th:first-child {
    min-width: 480px;
  }

  .js-tabs-list {
    overflow-x: auto;
  }

  .js-tabs-btn {
    min-width: 130px;
    width: 100%;
    min-height: 60px;
  }

  .js-tabs-btn span {
    font-size: 16px;
    line-height: 1.8;
  }

  .js-tabs-content {
    padding: 30px;
  }

  .l-header__inner {
    pointer-events: none;
  }

  .l-header__logo,
  .l-header__nav {
    pointer-events: auto;
  }

  .l-page--access {
    background-size: 100% auto;
  }

  .l-page--access .l-page-content {
    padding: 62px 0 0;
  }

  .p-about-top {
    padding-bottom: 60px;
  }

  .p-about-top__item:nth-child(even) .p-about-top__des {
    right: 0;
    left: auto;
  }

  .p-about-top__item:nth-child(even) .p-about-top__des:after {
    left: -34px;
    right: auto;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }

  .p-about-top__des {
    width: 200px;
    padding: 19px 19px 10px;
    bottom: 0;
  }

  .p-about-ms {
    background: #fff url("../images/about/bg_ms_sp.webp") center repeat-y;
    background-size: cover;
    padding: 48px 0 60px;
  }

  .p-about-ms__item {
    padding: 0 10px;
  }

  .p-about-ms__item:nth-child(even) {
    padding: 0 10px;
  }

  .p-about-ms__item:not(:last-child) {
    margin-bottom: 48px;
  }

  .p-about-ms__head {
    display: block;
    text-align: center;
    margin: 0 auto 26px;
  }

  .p-about-ms__ttl span {
    font-size: 60px;
    line-height: 1;
  }

  .p-about-ms__txt {
    margin: 2px 0 0;
  }

  .p-about-ms__desTop {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .p-about-ms p {
    font-size: 16px;
    line-height: 1.8;
  }

  .p-about-message {
    padding: 60px 0;
    background: #fff url("../images/top/bg_blog_sp.svg") no-repeat top center/cover;
  }

  .p-about-message__head {
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }

  .p-about-message__sub {
    margin: 5px 0 0;
  }

  .p-about-message__content {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 10px 20px 60px;
  }

  .p-about-message__pic {
    width: 100%;
  }

  .p-about-message__txt {
    width: 100%;
    padding: 0;
    margin-bottom: 59px;
  }

  .p-contact__group-btn {
    padding-bottom: 10px;
  }

  .p-contact-thanks__btn {
    padding-bottom: 10px;
  }

  .p-product-detail {
    padding-top: 50px;
  }

  .p-product-detail__ttl {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .p-product-detail__wrap-txt {
    margin-bottom: 20px;
  }

  .p-product-detail__list li {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 16px;
  }

  .p-product-detail__list li:before {
    font-size: 16px;
    line-height: 1.8;
  }

  .p-product-detail__other {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-product-detail__other span {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
    text-align: center;
  }

  .p-product-detail__other em {
    font-size: 14px;
    line-height: 1.8;
  }

  .p-product-detail-ttlBox {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .p-product-detail__group-item:not(:last-child) {
    margin-bottom: 21px;
  }

  .p-product-detail .c-table__scroll {
    margin-right: -30px;
    padding-right: 30px;
  }

  .p-electricconductor .c-mainvisual__desc {
    margin-top: 40px;
  }

  .p-electricconductor .c-mainvisual__txt {
    margin-top: 20px;
  }

  .p-harness .c-features__ttl {
    font-size: 25px;
    line-height: 1.4;
  }

  .p-harness .c-features__ttl>span {
    padding: 6.5px 10px;
  }

  .l-page--history .l-page-content {
    padding: 62px 0 55px;
  }

  .l-page--history .l-inner {
    padding: 0;
  }

  .c-box-history .txt-description {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .c-box--right {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }

  .c-flow__wrap ol {
    background-image: url("../images/history/line_history_sp.webp");
    background-position: calc(50% - 1px) top;
    background-size: 364px calc(100% - 157px);
    background-repeat: no-repeat;
    padding-top: 0;
    padding-bottom: 61px;
  }

  .c-flow__wrap li {
    width: calc(50% - 20px);
    position: relative;
  }

  .c-flow__wrap li:nth-child(even) {
    margin-left: auto;
    width: calc(50% - 20px);
  }

  .c-flow__wrap li:nth-child(even) .c-flow--pic {
    left: 0;
    right: auto;
  }

  .c-flow__wrap li:nth-child(even) .c-flow--txt {
    padding-right: 5px;
  }

  .c-flow__wrap li:nth-child(odd) {
    padding-left: 4px;
  }

  .c-flow__wrap li:nth-child(odd) .c-flow--year {
    margin-left: auto;
  }

  .c-flow__wrap li:first-child .c-flow__item.wth-img {
    margin-top: 0;
  }

  .c-flow__item {
    width: 100%;
    position: relative;
    padding-top: 59px;
  }

  .c-flow__item.wth-img {
    padding-top: 152px;
    margin-top: -50px;
  }

  .c-flow--pic {
    right: 1px;
    width: 162px;
    height: 162px;
  }

  .c-flow--year {
    font-size: 18px;
    line-height: 1.4444444444;
    margin-bottom: 10px;
    padding-bottom: 1px;
  }

  .c-flow--txt {
    max-width: 168px;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .c-flow_plan {
    padding: 0 25px;
  }

  .c-flow_plan span {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
    background-color: #1f9246;
    display: block;
    text-align: center;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    padding: 20px;
    width: 100%;
  }

  .c-flow_logo {
    width: 291px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .p-ourspecilization .c-features__ttl {
    font-size: 25px;
    line-height: 1.4;
  }

  .p-ourspecilization .c-features__ttl>span {
    padding: 6.5px 10px;
  }

  .p-ourspecilization .c-features .c-headline-lv2 {
    margin-left: -2px;
    margin-right: -2px;
  }

  .p-policy__hdg02 {
    margin-bottom: 10px;
  }

  .p-policy__list-number>li .p-policy__list-number02,
  .p-policy__list-number>li .p-policy__list-02,
  .p-policy__list-number>li .p-policy__list-03 {
    margin-left: -22px;
  }

  .u-ta-l-sp {
    text-align: left !important;
  }

  .u-ta-c-sp {
    text-align: center !important;
  }

  .u-ta-r-sp {
    text-align: right !important;
  }

  .u-ta-j-sp {
    text-align: justify !important;
    -ms-text-justify: inter-ideograph !important;
    text-justify: inter-ideograph !important;
  }

  .u-mt-0-sp {
    margin-top: 0px !important;
  }

  .u-mr-0-sp {
    margin-right: 0px !important;
  }

  .u-mb-0-sp {
    margin-bottom: 0px !important;
  }

  .u-ml-0-sp {
    margin-left: 0px !important;
  }

  .u-pt-0-sp {
    padding-top: 0px !important;
  }

  .u-pr-0-sp {
    padding-right: 0px !important;
  }

  .u-pb-0-sp {
    padding-bottom: 0px !important;
  }

  .u-pl-0-sp {
    padding-left: 0px !important;
  }

  .u-mt-5-sp {
    margin-top: 5px !important;
  }

  .u-mr-5-sp {
    margin-right: 5px !important;
  }

  .u-mb-5-sp {
    margin-bottom: 5px !important;
  }

  .u-ml-5-sp {
    margin-left: 5px !important;
  }

  .u-pt-5-sp {
    padding-top: 5px !important;
  }

  .u-pr-5-sp {
    padding-right: 5px !important;
  }

  .u-pb-5-sp {
    padding-bottom: 5px !important;
  }

  .u-pl-5-sp {
    padding-left: 5px !important;
  }

  .u-mt-10-sp {
    margin-top: 10px !important;
  }

  .u-mr-10-sp {
    margin-right: 10px !important;
  }

  .u-mb-10-sp {
    margin-bottom: 10px !important;
  }

  .u-ml-10-sp {
    margin-left: 10px !important;
  }

  .u-pt-10-sp {
    padding-top: 10px !important;
  }

  .u-pr-10-sp {
    padding-right: 10px !important;
  }

  .u-pb-10-sp {
    padding-bottom: 10px !important;
  }

  .u-pl-10-sp {
    padding-left: 10px !important;
  }

  .u-mt-15-sp {
    margin-top: 15px !important;
  }

  .u-mr-15-sp {
    margin-right: 15px !important;
  }

  .u-mb-15-sp {
    margin-bottom: 15px !important;
  }

  .u-ml-15-sp {
    margin-left: 15px !important;
  }

  .u-pt-15-sp {
    padding-top: 15px !important;
  }

  .u-pr-15-sp {
    padding-right: 15px !important;
  }

  .u-pb-15-sp {
    padding-bottom: 15px !important;
  }

  .u-pl-15-sp {
    padding-left: 15px !important;
  }

  .u-mt-20-sp {
    margin-top: 20px !important;
  }

  .u-mr-20-sp {
    margin-right: 20px !important;
  }

  .u-mb-20-sp {
    margin-bottom: 20px !important;
  }

  .u-ml-20-sp {
    margin-left: 20px !important;
  }

  .u-pt-20-sp {
    padding-top: 20px !important;
  }

  .u-pr-20-sp {
    padding-right: 20px !important;
  }

  .u-pb-20-sp {
    padding-bottom: 20px !important;
  }

  .u-pl-20-sp {
    padding-left: 20px !important;
  }

  .u-mt-25-sp {
    margin-top: 25px !important;
  }

  .u-mr-25-sp {
    margin-right: 25px !important;
  }

  .u-mb-25-sp {
    margin-bottom: 25px !important;
  }

  .u-ml-25-sp {
    margin-left: 25px !important;
  }

  .u-pt-25-sp {
    padding-top: 25px !important;
  }

  .u-pr-25-sp {
    padding-right: 25px !important;
  }

  .u-pb-25-sp {
    padding-bottom: 25px !important;
  }

  .u-pl-25-sp {
    padding-left: 25px !important;
  }

  .u-mt-30-sp {
    margin-top: 30px !important;
  }

  .u-mr-30-sp {
    margin-right: 30px !important;
  }

  .u-mb-30-sp {
    margin-bottom: 30px !important;
  }

  .u-ml-30-sp {
    margin-left: 30px !important;
  }

  .u-pt-30-sp {
    padding-top: 30px !important;
  }

  .u-pr-30-sp {
    padding-right: 30px !important;
  }

  .u-pb-30-sp {
    padding-bottom: 30px !important;
  }

  .u-pl-30-sp {
    padding-left: 30px !important;
  }

  .u-mt-35-sp {
    margin-top: 35px !important;
  }

  .u-mr-35-sp {
    margin-right: 35px !important;
  }

  .u-mb-35-sp {
    margin-bottom: 35px !important;
  }

  .u-ml-35-sp {
    margin-left: 35px !important;
  }

  .u-pt-35-sp {
    padding-top: 35px !important;
  }

  .u-pr-35-sp {
    padding-right: 35px !important;
  }

  .u-pb-35-sp {
    padding-bottom: 35px !important;
  }

  .u-pl-35-sp {
    padding-left: 35px !important;
  }

  .u-mt-40-sp {
    margin-top: 40px !important;
  }

  .u-mr-40-sp {
    margin-right: 40px !important;
  }

  .u-mb-40-sp {
    margin-bottom: 40px !important;
  }

  .u-ml-40-sp {
    margin-left: 40px !important;
  }

  .u-pt-40-sp {
    padding-top: 40px !important;
  }

  .u-pr-40-sp {
    padding-right: 40px !important;
  }

  .u-pb-40-sp {
    padding-bottom: 40px !important;
  }

  .u-pl-40-sp {
    padding-left: 40px !important;
  }

  .u-mt-45-sp {
    margin-top: 45px !important;
  }

  .u-mr-45-sp {
    margin-right: 45px !important;
  }

  .u-mb-45-sp {
    margin-bottom: 45px !important;
  }

  .u-ml-45-sp {
    margin-left: 45px !important;
  }

  .u-pt-45-sp {
    padding-top: 45px !important;
  }

  .u-pr-45-sp {
    padding-right: 45px !important;
  }

  .u-pb-45-sp {
    padding-bottom: 45px !important;
  }

  .u-pl-45-sp {
    padding-left: 45px !important;
  }

  .u-mt-50-sp {
    margin-top: 50px !important;
  }

  .u-mr-50-sp {
    margin-right: 50px !important;
  }

  .u-mb-50-sp {
    margin-bottom: 50px !important;
  }

  .u-ml-50-sp {
    margin-left: 50px !important;
  }

  .u-pt-50-sp {
    padding-top: 50px !important;
  }

  .u-pr-50-sp {
    padding-right: 50px !important;
  }

  .u-pb-50-sp {
    padding-bottom: 50px !important;
  }

  .u-pl-50-sp {
    padding-left: 50px !important;
  }

  .u-mt-55-sp {
    margin-top: 55px !important;
  }

  .u-mr-55-sp {
    margin-right: 55px !important;
  }

  .u-mb-55-sp {
    margin-bottom: 55px !important;
  }

  .u-ml-55-sp {
    margin-left: 55px !important;
  }

  .u-pt-55-sp {
    padding-top: 55px !important;
  }

  .u-pr-55-sp {
    padding-right: 55px !important;
  }

  .u-pb-55-sp {
    padding-bottom: 55px !important;
  }

  .u-pl-55-sp {
    padding-left: 55px !important;
  }

  .u-mt-60-sp {
    margin-top: 60px !important;
  }

  .u-mr-60-sp {
    margin-right: 60px !important;
  }

  .u-mb-60-sp {
    margin-bottom: 60px !important;
  }

  .u-ml-60-sp {
    margin-left: 60px !important;
  }

  .u-pt-60-sp {
    padding-top: 60px !important;
  }

  .u-pr-60-sp {
    padding-right: 60px !important;
  }

  .u-pb-60-sp {
    padding-bottom: 60px !important;
  }

  .u-pl-60-sp {
    padding-left: 60px !important;
  }

  .u-mt-65-sp {
    margin-top: 65px !important;
  }

  .u-mr-65-sp {
    margin-right: 65px !important;
  }

  .u-mb-65-sp {
    margin-bottom: 65px !important;
  }

  .u-ml-65-sp {
    margin-left: 65px !important;
  }

  .u-pt-65-sp {
    padding-top: 65px !important;
  }

  .u-pr-65-sp {
    padding-right: 65px !important;
  }

  .u-pb-65-sp {
    padding-bottom: 65px !important;
  }

  .u-pl-65-sp {
    padding-left: 65px !important;
  }

  .u-mt-70-sp {
    margin-top: 70px !important;
  }

  .u-mr-70-sp {
    margin-right: 70px !important;
  }

  .u-mb-70-sp {
    margin-bottom: 70px !important;
  }

  .u-ml-70-sp {
    margin-left: 70px !important;
  }

  .u-pt-70-sp {
    padding-top: 70px !important;
  }

  .u-pr-70-sp {
    padding-right: 70px !important;
  }

  .u-pb-70-sp {
    padding-bottom: 70px !important;
  }

  .u-pl-70-sp {
    padding-left: 70px !important;
  }

  .u-mt-75-sp {
    margin-top: 75px !important;
  }

  .u-mr-75-sp {
    margin-right: 75px !important;
  }

  .u-mb-75-sp {
    margin-bottom: 75px !important;
  }

  .u-ml-75-sp {
    margin-left: 75px !important;
  }

  .u-pt-75-sp {
    padding-top: 75px !important;
  }

  .u-pr-75-sp {
    padding-right: 75px !important;
  }

  .u-pb-75-sp {
    padding-bottom: 75px !important;
  }

  .u-pl-75-sp {
    padding-left: 75px !important;
  }

  .u-mt-80-sp {
    margin-top: 80px !important;
  }

  .u-mr-80-sp {
    margin-right: 80px !important;
  }

  .u-mb-80-sp {
    margin-bottom: 80px !important;
  }

  .u-ml-80-sp {
    margin-left: 80px !important;
  }

  .u-pt-80-sp {
    padding-top: 80px !important;
  }

  .u-pr-80-sp {
    padding-right: 80px !important;
  }

  .u-pb-80-sp {
    padding-bottom: 80px !important;
  }

  .u-pl-80-sp {
    padding-left: 80px !important;
  }

  .u-mt-85-sp {
    margin-top: 85px !important;
  }

  .u-mr-85-sp {
    margin-right: 85px !important;
  }

  .u-mb-85-sp {
    margin-bottom: 85px !important;
  }

  .u-ml-85-sp {
    margin-left: 85px !important;
  }

  .u-pt-85-sp {
    padding-top: 85px !important;
  }

  .u-pr-85-sp {
    padding-right: 85px !important;
  }

  .u-pb-85-sp {
    padding-bottom: 85px !important;
  }

  .u-pl-85-sp {
    padding-left: 85px !important;
  }

  .u-mt-90-sp {
    margin-top: 90px !important;
  }

  .u-mr-90-sp {
    margin-right: 90px !important;
  }

  .u-mb-90-sp {
    margin-bottom: 90px !important;
  }

  .u-ml-90-sp {
    margin-left: 90px !important;
  }

  .u-pt-90-sp {
    padding-top: 90px !important;
  }

  .u-pr-90-sp {
    padding-right: 90px !important;
  }

  .u-pb-90-sp {
    padding-bottom: 90px !important;
  }

  .u-pl-90-sp {
    padding-left: 90px !important;
  }

  .u-mt-95-sp {
    margin-top: 95px !important;
  }

  .u-mr-95-sp {
    margin-right: 95px !important;
  }

  .u-mb-95-sp {
    margin-bottom: 95px !important;
  }

  .u-ml-95-sp {
    margin-left: 95px !important;
  }

  .u-pt-95-sp {
    padding-top: 95px !important;
  }

  .u-pr-95-sp {
    padding-right: 95px !important;
  }

  .u-pb-95-sp {
    padding-bottom: 95px !important;
  }

  .u-pl-95-sp {
    padding-left: 95px !important;
  }

  .u-mt-100-sp {
    margin-top: 100px !important;
  }

  .u-mr-100-sp {
    margin-right: 100px !important;
  }

  .u-mb-100-sp {
    margin-bottom: 100px !important;
  }

  .u-ml-100-sp {
    margin-left: 100px !important;
  }

  .u-pt-100-sp {
    padding-top: 100px !important;
  }

  .u-pr-100-sp {
    padding-right: 100px !important;
  }

  .u-pb-100-sp {
    padding-bottom: 100px !important;
  }

  .u-pl-100-sp {
    padding-left: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .top__works__list li {
    width: 100%;
  }
}