@charset "UTF-8";

/* ---------------------------------------------
  reset css
--------------------------------------------- */
::before,
::after {
  pointer-events: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  font-kerning: none;
  line-height: 1;
  word-break: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

textarea {
  resize: vertical;
}

button {
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}


/* ---------------------------------------------
  utility
--------------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Noto+Serif+SC:wght@200..900&display=swap');

@media (min-width: 768px) {
  .is-hidden_pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .is-hidden_sp {
    display: none !important;
  }
}


/* ---------------------------------------------
  パーツ
--------------------------------------------- */

a {
  color: inherit;
  text-decoration: none;
}

a:hover{
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

a:hover{
  transition-duration: .5s;  
  opacity: 0.8;
}

table {
  width: 100%;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.top-ttl{
  font-size: 35px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
}

.top-ttl::before{
  content: url(../img/common/head-icon.svg);
  margin-right: 10px;
  transform: translateY(6px);
}

.top-ttl.outer::before{
  margin-left: -50px;
}

@media (max-width: 1200px){
  .top-ttl.outer::before{
    margin-left: 0;
  }
}

.top-concept .top-ttl::before{
  content: url(../img/common/head-icon-bk.svg);
}

.top-ttl .small{
  font-size: 10px;
  font-weight: 500;
  margin-left: 5px;
}

#totop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  display: none;
  cursor: pointer;
}

#totop .totop-arrow{
  display: block;
  width: 48px;
  height: 65px;
  background: rgb(39,154,47);
  background: linear-gradient(180deg, rgba(39,154,47,1) 60%, rgba(204,231,11,1) 100%);
}

#totop .totop-arrow::before{
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: 24px;
  width: 2px;
  height: 24px;
  background: #fff;
}

#totop .totop-arrow::after{
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 17px;
  width: 12px;
  height: 12px;
  border: 2px solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(135deg);
}

#totop:hover {
  transform: translateY(-10px);
  transition: ease-in-out .4s;
}

.more-btn{
  background-color: #ffec00;
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  border: none;
  width: 140px;
  height: 55px;
  color: #464646;
}

.more-btn a{
  width: 100%;
  padding: 1rem 0;
  position: relative;
}

.more-btn a::after{
  content: url(../img/common/r-arrow.svg);
  transition: .5s; 
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  margin-left: auto;
}

.more-btn:hover a::after{
  transform: translate(7px, -50%);
}

.panel-wrap .panel{
  display: none;
  opacity: 0;
}

.panel-wrap .panel.is-active{
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}


@media (max-width: 767px){
  #totop {
    right: 0;
    bottom: 0;
  }

  #totop img{
    width: 80%;
  }

  #totop:hover {
    transform: none;
    transition: ease-in-out .4s;
  }

  .top-ttl{
    font-size: 26px;
  }

  .top-ttl.outer::before{
    margin-left: 0;
  }
}

/* ---------------------------------------------
  base 専用
--------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #464646;
  background-color: #F7F7F7;
}

.container {
  position: relative;
  box-sizing: border-box;
  width: min(1040px, 100%);
  padding: 0 20px;
  margin: auto;
}

.narrow-container{
  max-width: 650px;
  margin: auto;
}

main {
  display: block;
  overflow-x: hidden;
}

.subpage main{
  padding-top: 84px;
}

.subpage .headding{
  margin: 6rem auto 8rem;
}

.subpage .headding h1{
  margin-bottom: 5rem;
}

.twomark-ttl,
.mark-ttl{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.twomark-ttl::before{
  content: "";
  width: 15px;
  height: 33px;
  background: linear-gradient(90deg, #000 0%, #000 47%, #fff 47%, #fff 53%, #ffec00 53%, #ffec00 100%);
  margin-right: 1rem;
}

.mark-ttl::before{
  content: "";
  width: 6px;
  height: 24px;
  background: #ffec00;
  margin-right: 1rem;
}

.mark-ttl.u-line::after{
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: #c1c1c1;
  margin-left: calc(6px + 2rem);
  margin-top: 1rem;
}

.marker{
  background:linear-gradient(transparent 65%, #ffec00 65%);
  width: fit-content;
  line-height: 1;
}

.subpage .headding ul{
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage .headding ul:nth-of-type(2){
  justify-content: flex-start;
}

.subpage .headding ul li{
  width: calc(100% / 5);
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  transition: .5s;
  cursor: pointer;
}

.subpage .headding ul:first-of-type{
  margin-bottom: 2rem;
}

.subpage .headding ul li::before{
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #707070;
}

.subpage .headding ul li:last-of-type::after{
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #707070;
}

.subpage .headding ul li:hover,
.subpage .headding ul li.is-active{
  background-color: #eaeaea;
}

.subpage .headding ul li a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3px;
  box-sizing: border-box;
}

.subpage .top-contact{
  margin-top: 20rem;
}

.subpage .headding-ttl{
  position: relative;
}

.subpage .headding-ttl img{
  width: 100%;
}

.top-ttl.maskItem::after{
  content: "钢网";
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  top: -15px;
  left: 60px;
}

@media (max-width: 1200px){
  .subpage .headding ul{
    font-size: 14px;
  }
}

@media (max-width: 820px){
  .subpage .top-contact{
    margin-top: 12rem;
  }

  .subpage .headding{
    margin: 2rem auto 4rem;
  }
  
  .subpage .headding h1{
    margin-bottom: 3rem;
  }

  .subpage .headding ul{
    flex-wrap: wrap;
    gap: 10px 0;
    justify-content: flex-start;
    font-size: 13px;
  }

  .subpage .headding ul:first-of-type{
    margin-bottom: 10px;
  }

  .subpage .headding ul li{
    width: calc(100% / 3);
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    transition: .5s;
    cursor: pointer;
  }

  .subpage .headding ul li:nth-of-type(3n):not(:last-of-type):after{
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    background: #707070;
  }

  .subpage .headding-ttl{
    padding-top: 90px;
  }

  .subpage .headding-ttl img{
    display: none;
  }
}


@media (max-width: 767px){
  body {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 769px) and (orientation: portrait) {
  main {
    min-height: 95vh;
  }
}

/* ---------------------------------------------
  animation
--------------------------------------------- */
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* .fadeInTrigger{
  opacity: 0;
}

.fadeInTrigger.fadeIn{
  opacity: 1;
  transition: 1.8s;
}

.fadeIn-items{
  overflow: hidden;
  position: relative;
}

.fadeIn-items.fadeIn.image-left::before{
  animation: image-left 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.fadeIn-items.fadeIn.image-left::after{
  animation: image-left 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: .3s;
  background: linear-gradient(90deg, transparent 0%, rgba(255,236,0,0.5) 10%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes image-left {
  100% {
    transform: translateX(100%);
  }
}

.text-split span {
  opacity: 0;
}
.is-active .text-split span {
  animation: flash 0.1s 2 cubic-bezier(0.47, 0, 0.745, 0.715) forwards normal 0.2s;
}
.is-active .text-split span:nth-child(1) {
  animation-delay: 0.1s;
}
.is-active .text-split span:nth-child(2) {
  animation-delay: 0.125s;
}
.is-active .text-split span:nth-child(3) {
  animation-delay: 0.15s;
}
.is-active .text-split span:nth-child(4) {
  animation-delay: 0.175s;
}
.is-active .text-split span:nth-child(5) {
  animation-delay: 0.2s;
}
.is-active .text-split span:nth-child(6) {
  animation-delay: 0.225s;
}
.is-active .text-split span:nth-child(7) {
  animation-delay: 0.25s;
}
.is-active .text-split span:nth-child(8) {
  animation-delay: 0.275s;
}
.is-active .text-split span:nth-child(9) {
  animation-delay: 0.3s;
}
.is-active .text-split span:nth-child(10) {
  animation-delay: 0.325s;
}
.is-active .text-split span:nth-child(11) {
  animation-delay: 0.35s;
}
.is-active .text-split span:nth-child(12) {
  animation-delay: 0.375s;
}
.is-active .text-split span:nth-child(13) {
  animation-delay: 0.4s;
}
.is-active .text-split span:nth-child(14) {
  animation-delay: 0.425s;
}
@keyframes flash {
  0% {
      opacity: 1;
  }
  50% {
      opacity: 0.4;
  }
  100% {
      opacity: 1;
  }
} */


/* ---------------------------------------------
  header
--------------------------------------------- */

header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  color: #fff;
  padding: 1.5rem 50px;
  width: 100%;
  box-sizing: border-box;
  transition: .3s;
}

.subpage header{
  color: #464646;
  background-color: #fff;
  border-bottom: 5px solid #ffec00;
}

header.bk-bg{
  background-color: rgba(0, 0, 0, .8);
}

.subpage header.bk-bg{
  background-color: #fff;
}

header .top-nav-wrap{
  display: flex;
  align-items: flex-end;
}

header .header-logo-wrap{
  display: flex;
  align-items: flex-end;
}

header .header-logo{
  width: 130px;
}

header .ip-logo{
  width: 110px;
  margin-left: 1.5rem;
}

header .top-nav-wrap .header-nav{
  margin-left: auto;
  margin-right: 9rem;
  font-size: 15px;
}

header .top-nav-wrap .header-nav .gnav-pearent{
  display: flex;
  align-items: center;
  gap: 30px;
}

header .top-nav-wrap .header-nav .gnav-pearent > li > a{
  padding-bottom: 16px;
  position: relative;
}

header .top-nav-wrap .header-nav .gnav-pearent > li > a::before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 1rem;
  transition: .4s;
  transform: scale(1, 1);
  transform-origin: right top;
  transition-delay: .2s;
}

.subpage header .top-nav-wrap .header-nav .gnav-pearent > li > a::before{
  background: #707070;
}

header .top-nav-wrap .header-nav .gnav-pearent > li > a:hover::before{
  transition: .3s;
  transform: scale(0, 1);
  transform-origin: right top;
}

header .top-nav-wrap .header-nav .gnav-pearent > li > a::after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ffec00;
  position: absolute;
  left: 0;
  bottom: 1rem;
  transition: .4s;
  transform: scale(0, 1);
  transform-origin: left top;
}

header .top-nav-wrap .header-nav .gnav-pearent > li > a:hover::after{
  transition: .4s;
  transition-delay: .2s;
  transform: scale(1, 1);
  transform-origin: left top;
}

header .top-nav-wrap .lang{
  position: absolute;
  top: 2rem;
  right: 4rem;
  font-size: 14px;
}

header .top-nav-wrap .lang a:first-of-type::after{
  content: "/";
  margin: 0 .5rem;
}

header .top-nav-wrap .header-nav .dpdown-list-wrap{
  width: 100%;
  background-color: rgba(0, 0, 0, .8);
  position: absolute;
  top: 80px;
  left: 0;
  display: none;
}

.subpage header .top-nav-wrap .header-nav .dpdown-list-wrap{
  background-color: #fff;
  box-shadow: 0 0px 15px -5px rgba(0, 0, 0, .2);
  top: 84px;
}

header .top-nav-wrap .header-nav .dpdown-list-wrap .inner{
  padding: 2rem 0 4rem;
  margin: auto;
}

header .top-nav-wrap .header-nav .dpdown-list-wrap h2{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 2rem;
}

header .top-nav-wrap .header-nav .dpdown-list-wrap h3{
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

header .top-nav-wrap .header-nav .child-list-wrap{
  display: flex;
}

header .top-nav-wrap .header-nav .child-list{
  width: 25%;
  font-size: 15px;
}

header .top-nav-wrap .header-nav .child-list li{
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

header .top-nav-wrap .header-nav .child-list li::before{
  content: "";
  width: 6px;
  height: 24px;
  background: #ffec00;
  margin-right: .5rem;
  display: block;
}

header .top-nav-wrap .close-btn{
  position: absolute;
  top: 5px;
  right: 0;
  border: none;
  background: none;
  width: 30px;
}

header .top-nav-wrap .close-btn span{
  background: #fff;
  width: 100%;
  height: 3px;
  display: inline-block;
  transition: ease .4s;
}

.subpage header .top-nav-wrap .close-btn span{
  background: #464646;
}

header .top-nav-wrap .close-btn span:nth-of-type(1){
  transform: translateY(21px) rotate(-45deg);
}

header .top-nav-wrap .close-btn span:nth-of-type(2){
  transform: translateY(0px) rotate(45deg);
}

@media (max-width: 1200px){
  header .top-nav-wrap .header-nav .dpdown-list-wrap .inner{
    padding: 2rem 2rem 4rem 2rem;
  }

  header .top-nav-wrap .close-btn {
    right: 20px;
  }

  header .header-logo-wrap{
    margin: 1rem 0 0 2rem;
  }

  header .header-logo{
    width: 120px;
  }
  
  header .ip-logo{
    width: 100px;
    margin-left: 1rem;
  }
}

@media (max-width: 820px){
  .pc-nav{
    display: none !important;
  }

  .sp-nav{
    display: block;
  }
}

@media (min-width: 821px){
  .pc-nav{
    display: block;
  }

  .sp-nav{
    display: none !important;
  }
}

@media (max-width: 820px){
  header{
    padding: 1rem 0;
    height: 75px;
  }

  header.active{
    background-color: #000;
  }

  .subpage header.active{
    background-color: #fff;
  }
  
  header .top-nav-wrap{
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 20px;
    padding-top: 5rem;
    height: 100dvh;
    background-color: #000;
    transition: .5s;
    position: relative;
  }

  .subpage header .top-nav-wrap{
    background-color: #fff;
  }

  header.bk-bg{
    background-color: rgba(0, 0, 0, 1);
  }

  .subpage header .top-nav-wrap .header-nav .dpdown-list-wrap{
    box-shadow: none;
  }

  .top-nav-wrap.active{
    visibility: visible;
    opacity: 1;
  }
  
  header .header-logo{
    width: 125px;
    display: block;
    margin: auto;
  }
  
  header .ip-logo{
    width: 90px;
  }
  
  header .top-nav-wrap .header-nav{
    margin: 0;
  }
  
  header .top-nav-wrap .header-nav .gnav-pearent{
    display: flex;
    align-items: flex-start;
    gap: 22px;
    flex-direction: column;
  }
  
  header .top-nav-wrap .header-nav .gnav-pearent > li > a:hover::before{
    transition: .3s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  
  header .top-nav-wrap .header-nav .gnav-pearent > li > a:hover::after{
    transition: .4s;
    transition-delay: .2s;
    transform: scale(1, 1);
    transform-origin: left top;
  }
  
  header .top-nav-wrap .lang{
    position: initial;
    font-size: 14px;
    margin-top: 4rem;
  }
  
  header .top-nav-wrap .header-nav .dpdown-list-wrap{
    width: 60%;
    background-color: rgba(0, 0, 0, .8);
    top: 5rem;
    left: initial;
    right: 0;
    height: 460px;
    overflow-y: scroll;
    padding-bottom: 3rem;
  }
  
  .subpage header .top-nav-wrap .header-nav .dpdown-list-wrap{
    top: 5rem;
    background-color: #fff;
  }
  
  header .top-nav-wrap .header-nav .dpdown-list-wrap .inner{
    padding: 0 0 4rem;
    margin: auto;
  }
  
  header .top-nav-wrap .header-nav .dpdown-list-wrap h3{
    font-size: 15px;
    margin-bottom: 1rem;
  }
  
  header .top-nav-wrap .header-nav .child-list-wrap{
    display: block;
  }
  
  header .top-nav-wrap .header-nav .child-list{
    width: 100%;
    font-size: 13px;
    margin-bottom: 2.2rem;
  }

  header .top-nav-wrap .header-nav .gnav-list:first-of-type .child-list{
    margin-bottom: 0;
  }
  
  header .top-nav-wrap .header-nav .child-list li{
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }
  
  header .top-nav-wrap .header-nav .child-list li::before{
    width: 5px;
  }
}
/* ---------------------------------------------
  hamburger menu
--------------------------------------------- */

  .hamburger{
    position: fixed;
    cursor: pointer;
    width: 35px;
    top: 20px;
    right: 6%;
    z-index: 9999;
  }

  .hamburger__inner{
    position: relative;
    height: 32px;
    width: 100%;
  }

  .hamburger__inner span{
    display: inline-block;
    transition: ease .4s;
    position: absolute;
    height: 3px;
    background: #fff;
    right: 0;
  }

  .subpage .hamburger__inner span{
    background: #464646;
  }

  .hamburger__inner span:nth-of-type(1){
    top: 0;
    width: 100%;
  }

  .hamburger__inner span:nth-of-type(2){
    top: 50%;
    width: 100%;
  }

  .hamburger__inner span:nth-of-type(3){
    top: 100%;
    width: 100%;
  }

  .hamburger__inner.active span:nth-of-type(1) {
    top: 10px;
    transform: translateY(6px) rotate(-135deg);
    width: 100%;
  }

  .hamburger__inner.active span:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger__inner.active span:nth-of-type(3){
    top: 22px;
    transform: translateY(-6px) rotate(135deg);
    width: 100%;
  }

  
/* ---------------------------------------------
  top-mv
--------------------------------------------- */
.mv-wrap{
  width: 100%;
  position: relative;
}

.mv-wrap::after{
  content: "";
  display: block;
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ffec00;
}

.mv-wrap picture img{
  width: 100%;
}

.deco-img{
  position: absolute;
}

.mv-wrap .deco1{
  bottom: -130px;
  left: -7%;
  width: 260px;
  z-index: 2;
}

.mv-wrap .deco2{
  top: -27%;
  right: -28.5%;
  z-index: 5;
  width: 80vw;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mv-wrap .deco3{
  bottom: 0%;
  right: 17.5%;
  z-index: 10;
}

.mv-wrap .deco4{
  top: -19%;
  right: 0%;
  z-index: 10;
}

.mv-wrap .deco5{
  top: 27.5%;
  right: 60.5%;
  width: 6.5vw;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mv-wrap .deco6{
  top: 22.5%;
  right: 47.5%;
  width: 12vw;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mv-wrap .deco7{
  top: 46%;
  right: 44%;
  width: 19vw;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mv-copy{
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  z-index: 10;
}

.mv-copy h1{
  font-size: 89px;
  color: #fff;
  font-family: "Noto Serif SC", serif;
  line-height: 1.2;
}

.mv-copy h1 span{
  font-size: 30px;
  display: block;
  margin-top: 30px;
}

@media (max-width: 767px){
  .mv-wrap{
    height: 100vh;
    height: 100svh;
    background-color: #000;
  }

  .mv-wrap::after{
    bottom: -1px;
  }
  
  .mv-wrap .deco1{
    display: none;
  }
  
  .mv-wrap .deco2{
    top: initial;
    bottom: -6%;
    right: -53%;
    z-index: 1;
    width: 110vw;
  }
  
  .mv-wrap .deco3{
    bottom: 0%;
    right: initial;
    z-index: 10;
    left: -34%;
    width: 60vw;
  }
  
  .mv-wrap .deco4{
    top: 5%;
    right: -8%;
    z-index: 10;
    width: 45vw;
  }
  
  .mv-wrap .deco5{
    display: none;
  }
  
  .mv-wrap .deco6{
    top: 2%;
    right: initial;
    width: 42vw;
    left: -21%;
  }
  
  .mv-wrap .deco7{
    top: initial;
    right: 37%;
    width: 45vw;
    bottom: -2.5%;
    z-index: 1;
  }
  
  .mv-copy{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  
  .mv-copy h1{
    font-size: 80px;
    padding: 0 20px;
  }
  
  .mv-copy h1 span{
    font-size: 25px;
  }
}

/* ---------------------------------------------
  top-product
--------------------------------------------- */

.product-wrap{
  padding-top: 175px;
  position: relative;
  margin-bottom: 15rem;
}

.product-wrap .content-inner::after{
  display: block;
  content: "";
  background: #fff;
  width: 1180px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -180px;
  z-index: -1;
}

.product-wrap .content-inner{
  padding: 8rem 0;
  position: relative;
}

.product-wrap .tab-wrap{
  position: relative;
}

.product-wrap .tab-wrap .deco-img{
  left: 62%;
  bottom: 0;
  width: min(550px, 39vw);
}

.product-wrap .tab-wrap ul{
  display: flex;
  flex-wrap: wrap;
  width: 52%;
  gap: 20px 0;
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.product-wrap .tab-wrap li{
  width: calc((100% - 5px) / 4);
  text-align: center;
  height: 55px;
  display: flex;
  align-items: center;
  transition: .5s;
  cursor: pointer;
}

.product-wrap .tab-wrap li::before{
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #707070;
}

.product-wrap .tab-wrap li:nth-of-type(4n)::after,
.product-wrap .tab-wrap li:last-of-type::after{
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #707070;
}

.product-wrap .tab-wrap li:hover,
.product-wrap .tab-wrap li.is-active{
  background-color: #eaeaea;
}

.product-wrap .tab-wrap li p{
  width: 100%;
}

.product-wrap .tab-wrap li span{
  display: block;
  font-size: 10px;
  line-height: 1.2;
}

.product-wrap .panel{
  min-height: 240px;
}

.product-wrap .panel-inner{
  display: flex;
  gap: 50px;
}

.product-wrap .panel-list{
  width: 52%;
}

.product-wrap .panel-list li{
  width: 100%;
  margin: 10px 0;
  background-color: #f2f2f2;
  height: 30px;
  transition: .5s;
}

.product-wrap .panel-list li:first-of-type{
  margin-top: 0;
}

.product-wrap .panel-list li:hover{
  background-color: #d0d0d0;
}

.product-wrap .panel-list li a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.product-wrap .panel-list li a::before{
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background: #ffec00;
  margin-right: 1rem;
}

.product-wrap .panel-list li a::after{
  content: url(../img/common/r-arrow.svg);
  margin-left: auto;
  margin-right: 1rem;
}

.product-wrap .panel-image{
  width: 300px;
  height: 100%;
}


@media (max-width: 1200px){
  .product-wrap .tab-wrap li{
    font-size: 14px;
    width: calc((100% - 29px) / 4);
  }

  .product-wrap .tab-wrap li p{
    padding: 0 3px;
  }
}

@media (max-width: 820px){
  .product-wrap .tab-wrap ul{
    width: 60%;
  }

  .product-wrap .tab-wrap ul li{
    font-size: 13px;
  }
}

@media (max-width: 767px){
  .product-wrap{
    padding-top: 60px;
    position: relative;
    margin-bottom: 8rem;
  }

  .product-wrap .deco-img{
    top: 40px;
    width: 345px;
    right: -5px;
  }
  
  .product-wrap .content-inner::after{
    content: none;
  }

  .product-wrap .sp-inner{
    background-color: #fff;
  }
  
  .product-wrap .content-inner{
    padding: 3rem 0;
    position: relative;
    padding-top: 330px;
  }
  
  .product-wrap .tab-wrap{
    position: relative;
  }
  
  .product-wrap .tab-wrap ul{
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 5rem;
  }
  
  .product-wrap .tab-wrap li{
    width: calc((100% - 4px) / 3);
  }
  
  .product-wrap .tab-wrap li:nth-of-type(4n)::after{
    content: none;
  }

  .product-wrap .tab-wrap li:nth-of-type(3n)::after,
  .product-wrap .tab-wrap li:last-of-type::after{
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    background: #707070;
  }
  
  .product-wrap .panel{
    min-height: auto;
  }
  
  .product-wrap .panel-list{
    width: 100%;
  }
  
  .product-wrap .panel-image{
    display: none;
  }
}
  
/* ---------------------------------------------
  top-contact
--------------------------------------------- */
.top-contact{
  margin-bottom: 12rem;
}

.top-contact .text-wrap > span{
  font-size: 10px;
  margin-bottom: 2rem;
  display: block;
}

.top-contact .contact-inner{
  background-color: #fff;
  display: flex;
}

.top-contact .contact-inner .deco-img{
  top: -22%;
  right: 550px;
  width: min(565px, 42vw);
}

.top-contact .text-wrap{
  padding: 10rem 12rem 10rem;
  margin-left: auto;
  max-width: 400px;
}

.top-contact .text-wrap p:first-of-type{
  margin: 1rem 0 .5rem;
}

.top-contact .mail-text{
  font-size: 13px;
  display: flex;
  align-items: center;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.top-contact .mail-text::before{
  content: url(../img/common/mail-icon.svg);
  margin-right: 1em;
}

.top-contact .tel-text{
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.top-contact .tel-text::before{
  content: url(../img/common/tel-icon.svg);
  margin-right: 1em;
}

@media (max-width: 820px){
  .top-contact .contact-inner .deco-img{
    right: 425px;
  }
}

@media (max-width: 767px){
  .top-contact{
    margin-bottom: 5rem;
  }
  
  .top-contact .text-wrap > span{
    font-size: 10px;
    margin-bottom: 2rem;
    display: block;
  }
  
  .top-contact .contact-inner{
    display: block;
    padding-top: 2rem;
  }
  
  .top-contact .contact-inner .deco-img{
    position: initial;
    width: 330px;
    margin-left: -4rem;
  }
  
  .top-contact .text-wrap{
    padding: 4rem 2rem 6rem;
    margin-left: 0;
  }
  
  .top-contact .text-wrap p:first-of-type{
    margin: 1rem 0 .5rem;
    padding-left: 40px;
  }

  .top-contact .text-wrap > span{
    padding-left: 40px;
  }
  
  .top-contact .mail-text{
    padding-left: 40px;
  }
  
  .top-contact .tel-text{
    padding-left: 40px;
  }
}

/* ---------------------------------------------
  top-news
--------------------------------------------- */
.top-news{
  margin-bottom: 15rem;
  position: relative;
}

.top-news::before{
  position: absolute;
  content: url(../img/common/deco-img.svg);
  top: -27%;
  right: -402px;
}

.top-news h2{
  justify-content: center;
  margin-bottom: 6rem;
}

.top-news .newsList-wrap{
  display: flex;
  justify-content: space-between;
}

.top-news .newsList-wrap ul{
  max-width: 780px;
  width: 80%;
}

.top-news .newsList-wrap li{
  border-top: 1px solid #464646;
}

.top-news .newsList-wrap li:last-of-type{
  border-bottom: 1px solid #464646;
}

.top-news .newsList-wrap li a{
  display: block;
  padding: 2rem 0;
  position: relative;
}

.top-news .newsList-wrap li a::after{
  content: "";
  display: block;
  background: url(../img/common/r-arrow.svg) no-repeat;
  width: 12px;
  height: 12px;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: .5s;
}

.top-news .newsList-wrap li a:hover::after{
  transform: translate(10px, -50%);
}

.newsList-wrap .news-info{
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
}

.top-news .newsList-wrap li a p{
  font-weight: 600;
}

.newsList-wrap .category{
  display: block;
  color: #fff;
  font-size: 13px;
  padding: 2px 0;
  text-align: center;
  width: 72px;
}

.category.news{
  background-color: #86B75A;
}

.category.event{
  background-color: #3380EB;
}

.category.product{
  background-color: #4CBAB3;
}

@media (max-width: 820px){
  .top-news .newsList-wrap{
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
  }

  .top-news .newsList-wrap ul{
    max-width: initial;
    width: 100%;
    margin-top: 2rem;
  }
  
  .top-news .newsList-wrap li a{
    display: block;
    padding: 2rem 0;
    position: relative;
  }
  
  .top-news .newsList-wrap li a::after{
    content: none;
  }
}

@media (max-width: 767px){
  .top-news{
    margin-bottom: 6rem;
    position: relative;
  }

  .top-news::before{
    position: absolute;
    content: "";
    background: url(../img/common/deco-img.svg) no-repeat;
    width: 330px;
    height: 330px;
    background-size: 100%;
    top: -7%;
    right: -45%;
  }
  
  .top-news h2{
    justify-content: center;
    margin-bottom: 4rem;
  }
  
  .newsList-wrap .news-info{
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
  }
  
  .top-news .newsList-wrap li a p{
    font-weight: 600;
  }
  
  .newsList-wrap .category{
    font-size: 10px;
    width: 58px;
  }
}

/* ---------------------------------------------
  top-about
--------------------------------------------- */
.top-about{
  margin-bottom: 12rem;
  position: relative;
}

.top-about::before{
  position: absolute;
  content: url(../img/common/deco-img.svg);
  top: 41%;
  left: -391px;
  z-index: -1;
}

.top-about .about-detail{
  margin-top: 4rem;
  color: #fff;
  padding: 8rem 0 6rem 7rem;
  position: relative;
}

.top-about .about-detail .deco-img{
  top: -14%;
  right: 0;
}

.top-about .about-detail::before{
  content: "";
  background: url(../img/top/about-bg.jpg) no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  width: 1180px;
  height: 100%;
  top: 0;
  right: -180px;
  z-index: -1;
}

.top-about .about-detail h3{
  font-size: 25px;
  margin-bottom: 3rem;
}

.top-about .about-detail p{
  width: 420px;
  margin-bottom: 4rem;
}

.top-about .about-detail ul{
  display: flex;
  width: 100%;
  gap: 40px;
  margin-top: 6rem;
  justify-content: space-around;
}

.top-about .about-detail li{
  width: calc((100% - 40px) / 2);
}

.top-about .about-detail li a{
  display: block;
  border: 1px solid #fff;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  padding: 2rem 0;
}

.top-about .about-detail li a::after{
  content: url(../img/common/r-arrow_wh.svg);
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
  transition: .5s;
}

.top-about .about-detail li a:hover::after{
  transform: translate(5px, -50%);
}

.top-about .about-detail li a > div span{
  display: block;
  font-size: 10px;  
}

@media (max-width: 820px){
  .top-about .about-detail .deco-img {
    top: -8%;
    max-width: 320px;
  }
}

@media (max-width: 767px){
  .top-about{
    margin-bottom: 5rem;
    position: relative;
  }
  
  .top-about::before{
    content: "";
    background: url(../img/common/deco-img.svg) no-repeat;
    width: 330px;
    height: 330px;
    background-size: 100%;
    top: 41%;
    left: -391px;
    z-index: -1;
  }
  
  .top-about .top-ttl{
    justify-content: center;
  }

  .top-about .about-detail{
    margin-top: 3rem;
    padding: 3rem 0 6rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .top-about .about-detail .deco-img{
    order: -1;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .top-about .about-detail::before{
    content: "";
    background: url(../img/top/about-bg_sp.jpg) no-repeat;
    background-size: 100%;
    display: block;
    position: absolute;
    width: 400px;
    top: 0;
    right: initial;
  }
  
  .top-about .about-detail h3{
    font-size: 20px;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .top-about .about-detail p{
    width: 100%;
    margin-bottom: 3rem;
  }
  
  .top-about .about-detail ul{
    display: flex;
    width: 100%;
    gap: 20px;
    margin-top: 6rem;
    flex-direction: column;
    align-items: center;
  }
  
  .top-about .about-detail li{
    width: 85%;
    font-size: 16px;
  }
}

/* ---------------------------------------------
  top-concept
--------------------------------------------- */
.top-concept{
  margin-bottom: 8rem;
}

.top-concept .content-inner{
  width: 85%;
  background-color: #ffec00;
  text-align: center;
  margin: auto;
  padding: 8rem 3rem 4rem;
  box-sizing: border-box;
}

.top-concept h2.top-ttl{
  justify-content: center;
  margin-bottom: 4rem;
}

.top-concept h3{
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.top-concept p{
  margin-bottom: 4rem;
}

.top-concept .more-btn{
  border: 1px solid #707070;
  margin: auto;
}

@media (max-width: 767px){
  .top-concept{
    margin-bottom: 6rem;
  }
  
  .top-concept .content-inner{
    width: 100%;
    padding: 6rem 2rem;
  }
  
  .top-concept h3{
    font-size: 20px;
    margin-bottom: 2rem;
  }
}

/* ---------------------------------------------
  top-network
--------------------------------------------- */
.top-network{
  margin-bottom: 6rem;
}

.top-network h2{
  margin-bottom: 2rem;
}

.top-network h2::before{
  margin-left: 0;
}

.top-network .content-outer{
  background-color: #EDEDED;
}

.top-network .content-inner{
  max-width: 1200px;
  padding: 6rem 3rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: auto;
}

.top-network .content-inner .office-list{
  width: calc(50% - 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.top-network .content-inner .office-list li{
  width: calc(50% - 20px);
  font-size: 12px;
  cursor: pointer;
}

.top-network .content-inner .office-list li dt{
  font-size: 15px;
  font-weight: 600;
}

.top-network .content-inner .panel iframe{
  max-width: 48vw;
}

@media (max-width: 1200px){
  .top-network .content-inner{
    gap: 2rem;
  }

  .top-network .content-inner .office-list{
    width: calc(55% - 2rem);
  }
}

@media (max-width: 767px){
  .top-network{
    margin-bottom: 6rem;
  }

  .top-network .top-ttl{
    justify-content: center;
  }
  
  .top-network h2{
    margin-bottom: 2rem;
  }
  
  .top-network .content-inner{
    max-width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: auto;
    flex-direction: column-reverse;
  }
  
  .top-network .content-inner .office-list{
    width: 100%;
    padding: 0 40px;
    padding-bottom: 4rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
  }
  
  .top-network .content-inner .office-list li{
    width: calc(50% - 10px);
    font-size: 10px;
  }

  .top-network .content-inner .panel-wrap{
    width: 100%;
  }

  .top-network .content-inner .panel iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 75 / 44;
  }

  .top-network .content-inner .panel iframe{
    max-width: initial;
  }
}

/* ---------------------------------------------
  footer
--------------------------------------------- */
footer{
  background-color: #ffec00;
  padding-bottom: 3rem;
}

footer .content{
  padding-top: 6rem;
}

footer .company-info{
  margin: auto;
  font-size: 12px;
  text-align: center;
}

footer .company-info .footer-logo{
  width: 155px;
  display: block;
  margin: auto;
  margin-bottom: 3rem;
}

footer nav {
  margin-bottom: 4rem;
}

footer nav .parent-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer nav .parent-list .child-wrap{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}

footer nav .parent-list .child-list{
  font-size: 12px;
}

footer nav .parent-list h2{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}

footer nav .parent-list .child-list h3{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}

footer nav .parent-list > li:nth-of-type(2) .child-list-wrap{
  display: flex;
  gap: 35px;
}

footer nav .parent-list > li:last-of-type .child-list-wrap > a{
  display: block;
  font-size: 16px;
  margin-bottom: 1rem;
}

footer nav .parent-list .child-list > ul{
  margin-bottom: 2rem;
}

footer nav .parent-list li{
  margin-bottom: 1rem;
}

footer nav .child-list li{
  margin-bottom: 1rem;
}

@media (max-width: 820px){
  footer{
    padding-bottom: 3rem;
  }
  
  footer .content{
    padding-top: 3rem;
  }
  
  footer .company-info .footer-logo{
    width: 125px;
    margin-bottom: 3rem;
  }
  
  footer nav {
    margin-bottom: 2rem;
  }
  
  footer nav .parent-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
  }
  
  footer nav .parent-list .child-wrap{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  footer nav .parent-list .child-list{
    font-size: 12px;
  }
  
  footer nav .parent-list h2{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  footer nav .parent-list .child-list h3{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  footer nav .parent-list > li:nth-of-type(2) .child-list-wrap{
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  
  footer nav .parent-list > li:last-of-type .child-list-wrap > a{
    display: block;
    font-size: 14px;
    margin-bottom: 1rem;
  }
  
  footer nav .parent-list .child-list > ul{
    margin-bottom: 0;
  }

  footer .copy{
    font-size: 10px;
    margin-top: 1rem;
  }

  footer .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition:all .5s ease-out;
  }
  
  footer .accordion-content.active{
    max-height: 1000px;
    transition: all .5s ease-in;
  }

  footer .accordion-header{
    display: flex;
    align-items: center;    
  }

  footer .accordion-header div{
    margin-left: auto;
    width: 12px;
    height: 12px;
  }

  footer .accordion-header div span{
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: block;
    transition: .5s;
  }

  footer .accordion-header div span:first-of-type{
    transform: translateY(6px);
  }

  footer .accordion-header.active div span:first-of-type{
    transform: translateY(6px) rotate(-135deg);
  }

  footer .accordion-header div span:last-of-type{
    transform: translateY(4px) rotate(90deg);
  }

  footer .accordion-header.active div span:last-of-type{
    transform: translateY(4px) rotate(-225deg);
  }
}

/* ---------------------------------------------
  company page
--------------------------------------------- */
.aboutpage .about-intro{
  margin-bottom: 4rem;
  position: relative;
}

.aboutpage .about-intro .deco-img{
  top: 0;
  right: -90px;
  width: 345px;
}

.aboutpage .about-intro .deco-img::after{
  content: "";
  background: url(../img/company/intro-img02.jpg) no-repeat;
  position: absolute;
  bottom: -120px;
  left: -50px;
  display: block;
  width: 200px;
  height: 150px;
  background-size: 100%;
}

@media (max-width: 1200px){
  .aboutpage .about-intro .deco-img {
    top: -50px;
    width: 320px;
  }

  .aboutpage .about-intro .deco-img::after{
    content: "";
    background: url(../img/company/intro-img02.jpg) no-repeat;
    position: absolute;
    bottom: -100px;
    left: -50px;
    display: block;
    width: 180px;
    height: 140px;
    background-size: 100%;
  }
}

.aboutpage h2{
  font-size: 23px;
  font-weight: 600;
}

.aboutpage .about-intro h2{
  border-bottom: 1px solid #707070;
  padding-bottom: 1rem;
  width: 100%;
}

.aboutpage .about-intro p{
  line-height: 2;
  font-weight: 600;
}

.aboutpage .about-intro .read{
  margin: 3rem 0 4rem;
  font-size: 29px;
  max-width: 600px;
}

.aboutpage .about-point{
  position: relative;
}

.aboutpage .about-point::before{
  position: absolute;
  content: url(../img/common/deco-img.svg);
  top: -31%;
  right: -440px;
  z-index: -1;
}

.aboutpage .about-point::after{
  position: absolute;
  content: url(../img/common/deco-img.svg);
  bottom: -24%;
  left: -450px;
  z-index: -1;
}

.aboutpage .about-point .content-inner{
  background-color: #fff;
  padding: 8rem 3rem;
  box-sizing: border-box;
}

.aboutpage .about-point .point-detail{
  display: flex;
  gap: 35px;
  margin-bottom: 10rem;
}

.aboutpage .about-point .point-detail:last-of-type{
  margin-bottom: 0;
}

.aboutpage .about-point .point-detail.reverse{
  flex-direction: row-reverse;
}

.aboutpage .about-point .point-detail .text-wrap{
  max-width: 550px;
}

.aboutpage .about-point .point-detail img{
  max-width: 330px;
  height: 100%;
}

.aboutpage .about-point .point-detail h3{
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #707070;
  padding-bottom: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}

.aboutpage .top-message{
  margin-bottom: 4rem;
}

.aboutpage .top-message h2{
  margin-bottom: 2rem;
}

.aboutpage .top-message .content-outer{
  background-color: #000;
}

.aboutpage .top-message .content-detail{
  color: #fff;
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 5rem;
}

.aboutpage .top-message .content-detail figure{
  max-width: 620px;
  margin-left: -180px;
}

.aboutpage .top-message .content-detail .text-wrap{
  max-width: 510px;
  margin-left: auto;
  padding: 2rem 0;
  line-height: 1.8;
  flex-shrink: 0;
}

@media (max-width: 1200px){
  .aboutpage .top-message .content-detail .text-wrap{
    max-width: 470px;
  }

  .aboutpage .top-message .content-detail figure {
    margin-left: -80px;
    width: 55vw;
  }
}

.aboutpage .top-message .content-detail .text-wrap h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.aboutpage .top-message .content-detail .text-wrap div{
  font-size: 22px;
  font-weight: 600;
}

.aboutpage .top-message .content-detail .text-wrap div span{
  margin-right: 2rem;
  font-size: 20px;
  display: block;
  font-weight: 500;
}

.aboutpage .mvvss{
  position: relative;
}

.aboutpage .mvvss::before{
  position: absolute;
  content: url(../img/common/deco-img.svg);
  top: -432px;
  right: -425px;
}

.aboutpage .mvvss::after{
  position: absolute;
  content: url(../img/common/deco-img.svg);
  bottom: 30%;
  left: -420px;
  z-index: -1;
}

.aboutpage .mvvss .content-inner{
  background-color: #fff;
  padding: 4rem 3rem;
  box-sizing: border-box;
}

.aboutpage .mvvss figure{
  margin-bottom: 10rem;
}

.aboutpage .mvvss-list > li{
  padding: 5rem 0;
  border-top: 1px solid #707070;
}

.aboutpage .mvvss-list > li:last-of-type{
  border-bottom: 1px solid #707070;
}

.aboutpage .mvvss-list li dl{
  display: flex;
  font-size: 15px;
}

.aboutpage .mvvss-list dt{
  width: 195px;
  flex-shrink: 0;
  margin-right: 40px;
}

.aboutpage .mvvss-list dd:first-of-type{
  font-size: 17px;
  font-weight: 600;
  padding-right: 20px;
}

@media (max-width: 1200px){
  .aboutpage .mvvss-list dd:first-of-type{
    font-size: 16px;
    margin-right: 1rem;
  }

  .aboutpage .mvvss-list dt {
    margin-right: 20px;
    width: 175px;
  }

  .aboutpage .access-wrap iframe{
    max-width: 100%;
  }
}

.aboutpage .mvvss-list dd:last-of-type{
  max-width: 360px;
  margin-left: auto;
}

.aboutpage .company-detail{
  margin-bottom: 12rem;
}

.aboutpage .company-detail table tr{
  border-top: 1px solid #c1c1c1;
}

.aboutpage .company-detail table tr:last-of-type{
  border-bottom: 1px solid #c1c1c1;
}

.aboutpage .company-detail table th{
  text-align: left;
  width: 165px;
}

.aboutpage .company-detail table td{
  padding: 3rem 0;
}

.aboutpage .company-detail table td ul{
  display: flex;
  flex-wrap: wrap;
}

.aboutpage .company-detail table td li{
  width: 45%;
  margin-bottom: .5rem;
}

.aboutpage .policy-wrap .policy-content{
  margin-bottom: 10rem;
}

.aboutpage .policy-wrap .policy-detail{
  margin-bottom: 8rem;
}

.aboutpage .policy-wrap .policy-content h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.aboutpage .policy-wrap .policy-content p{
  margin-bottom: 3rem;
}

.aboutpage .policy-wrap .policy-content ol{
  counter-reset: num;
}

.aboutpage .policy-wrap .policy-content li::before{
  counter-increment: num;
  content: '0'counter(num);
  border-right: 5px solid #ffec00;
  font-size: 36px;
  font-weight: 300;
  padding-right: 1.5rem;
  margin-right: 2rem;
}

.aboutpage .policy-wrap .policy-content li{
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.aboutpage .about-intro .message{
  margin-bottom: 10rem;
  max-width: 600px;
}

.aboutpage .about-intro p{
  margin-top: 3rem;
}

.aboutpage .iso-content h3{
  font-size: 20px;
  font-weight: 600;
  display: inline;
}

.aboutpage .iso-content .image-wrap{
  margin: 4rem auto;
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.aboutpage .iso-content .image-wrap figure{
  max-width: 240px;
}

.aboutpage .iso-content .image-wrap figure img{
  margin-bottom: 3rem;
}

.aboutpage .history-wrap{
  margin-bottom: 10rem;
}

.aboutpage .history-wrap table tr{
  border-bottom: 1px solid #c1c1c1;
}

.aboutpage .history-wrap table th{
  width: 165px;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.aboutpage .history-wrap table td{
  padding: 2rem 0 2rem 4rem;
}

.aboutpage .access-wrap{
  position: relative;
  margin-bottom: 24rem;
}

.aboutpage .access-wrap dl{
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.aboutpage .access-wrap dt{
  font-weight: 600;
  min-width: 80px;
}

.aboutpage .access-wrap::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 320px;
  background: #ededed;
  bottom: -8%;
  left: 0;
}

.aboutpage .plant-wrap h3,
.aboutpage .office-wrap h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3rem;
}

.aboutpage .plant-wrap .content-wrap{
  margin-bottom: 10rem;
}

.aboutpage .plant-wrap h4{
  background-color: #fff;
  padding-left: 3rem;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.aboutpage .plant-wrap h4 span img{
  height: 110px;
}

.aboutpage .plant-wrap .plant-detail{
  display: flex;
}

.aboutpage .plant-wrap .plant-info dl:first-of-type dt{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #000;
  width: 65px;
  text-align: center;
  margin-bottom: .5rem;
}

.aboutpage .plant-wrap .plant-info dl:first-of-type dd{
  margin-bottom: 2rem;
}

.aboutpage .plant-wrap .plant-info dl:nth-of-type(n+2){
  display: flex;
  margin-bottom: .5rem;
}

.aboutpage .plant-wrap .plant-info dl:nth-of-type(n+2) dt{
  font-weight: 600;
  width: 65px;
  margin-right: 2rem;
}

.aboutpage .plant-wrap .plant-map{
  margin-left: auto;
}

.aboutpage .plant-wrap.office .office-list,
.aboutpage .plant-wrap.oversea .office-list,
.aboutpage .plant-wrap.ipgroup .office-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8rem;
}

.aboutpage .plant-wrap.office .office-list li,
.aboutpage .plant-wrap.oversea .office-list li,
.aboutpage .plant-wrap.ipgroup .office-list li{
  display: flex;
  flex-direction: column;
  width: calc(50% - 4rem);
}

.aboutpage .plant-wrap.office .content-inner{
  background-color: #fff;
  padding: 4rem 3rem 8rem;
  box-sizing: border-box;
}

.aboutpage .plant-wrap.office h4{
  background-color: #F7F7F7;
}

.aboutpage .plant-wrap.office .mail-wrap{
  background-color: #F7F7F7;
  border-left: 7px solid #ffec00;
  margin-top: auto;
  padding: 5px 0;
}

.aboutpage .plant-wrap.office .mail-wrap span{
  font-size: 14px;
  font-weight: 600;
  margin: 0 2rem 0 1rem;
}

.aboutpage .plant-wrap.office .plant-info dl:last-of-type{
  margin-bottom: 2rem;
}

.aboutpage .plant-wrap.oversea{
  margin-bottom: 8rem;
}

.aboutpage .plant-wrap.ipgroup .plant-detail.first{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6rem;
}

.aboutpage .plant-wrap.ipgroup  .plant-detail.first h4{
  padding-left: 0;
  background-color: initial;
  font-size: 23px;
  margin-bottom: 2rem;
}

.aboutpage .plant-wrap.ipgroup  .plant-detail dl > div{
  display: flex;
  margin-bottom: 2rem;
  gap: 1rem;
  align-items: flex-start;
}

.aboutpage .plant-wrap.ipgroup .plant-info dl:first-of-type dd {
  margin-bottom: 0;
}

.aboutpage .plant-wrap.ipgroup .plant-info dl:first-of-type dt{
  flex-shrink: 0;
}

@media (max-width: 1200px){
  .aboutpage .plant-wrap iframe{
    max-width: 43vw;
  }

  .aboutpage .plant-wrap.office .office-list,
  .aboutpage .plant-wrap.oversea .office-list,
  .aboutpage .plant-wrap.ipgroup .office-list{
    gap: 6rem 3rem;
  }

  .aboutpage .plant-wrap.office .office-list li,
  .aboutpage .plant-wrap.oversea .office-list li,
  .aboutpage .plant-wrap.ipgroup .office-list li{
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 820px){
  .aboutpage .top-message{
    margin-bottom: 4rem;
  }
  
  .aboutpage .top-message h2{
    margin-bottom: 2rem;
  }
  
  .aboutpage .top-message .content-detail .text-wrap div span{
    margin-right: 0;
    font-size: 16px;
  }
  
  .aboutpage .top-message .content-detail{
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    gap: 0;
    flex-direction: column;
  }
  
  .aboutpage .top-message .content-detail figure{
    max-width: 100%;
    margin-left: 0;
    padding-top: 4rem;
  }
  
  .aboutpage .top-message .content-detail .text-wrap{
    max-width: 100%;
    padding: 4rem 0;

  }
  
  .aboutpage .top-message .content-detail .text-wrap h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .aboutpage .mvvss{
    position: relative;
  }
  
  .aboutpage .mvvss::before{
    position: absolute;
    content: "";
    background: url(../img/common/deco-img.svg) no-repeat;
    background-size: 100%;
    display: block;
    width: 400px;
    height: 400px;
    top: -232px;
    right: -236px;
  }
  
  .aboutpage .mvvss::after{
    position: absolute;
    content: "";
    background: url(../img/common/deco-img.svg) no-repeat;
    background-size: 100%;
    display: block;
    width: 400px;
    height: 400px;
    bottom: -9%;
    left: -296px;
    z-index: -1;
  }
  
  .aboutpage .mvvss .content-inner{
    padding: 3rem 2rem;
  }
  
  .aboutpage .mvvss figure{
    margin-bottom: 4rem;
  }
  
  .aboutpage .mvvss-list > li{
    padding: 3rem 0;
  }
  
  .aboutpage .mvvss-list li dl{
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .aboutpage .mvvss-list dt{
    width: 100%;
    margin-right: 0;
  }
  
  .aboutpage .mvvss-list dd:last-of-type{
    max-width: 100%;
    margin-left: 0;
  }

  .aboutpage .company-detail table th{
    width: 110px;
  }
  
  .aboutpage .company-detail table td li{
    width: 100%;
  }

  .aboutpage .plant-wrap .content-wrap{
    margin-bottom: 6rem;
  }

  .aboutpage .plant-wrap h4 span{
    max-width: 145px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .aboutpage .plant-wrap h4{
    padding-left: 1rem;
  }
  
  .aboutpage .plant-wrap .plant-detail{
    flex-direction: column-reverse;
  }

  .aboutpage .plant-wrap iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
  }

  .aboutpage .plant-wrap iframe{
    max-width: initial;
  }
  
  .aboutpage .plant-wrap .plant-info dl:first-of-type dt{
    font-size: 13px;
  }
  
  .aboutpage .plant-wrap .plant-info dl:first-of-type dd{
    margin-bottom: 2rem;
  }
  
  .aboutpage .plant-wrap .plant-info dl:nth-of-type(n+2){
    display: flex;
    margin-bottom: .5rem;
    flex-direction: column;
  }
  
  .aboutpage .plant-wrap .plant-info dl:nth-of-type(n+2) dt{
    margin-right: 1rem;
  }
  
  .aboutpage .plant-wrap .plant-map{
    margin-left: 0;
    margin-bottom: 2rem;
  }
  
  .aboutpage .plant-wrap.office .office-list,
  .aboutpage .plant-wrap.oversea .office-list,
  .aboutpage .plant-wrap.ipgroup .office-list{
    gap: 4rem;
    flex-direction: column;
  }
  
  .aboutpage .plant-wrap.office .office-list li,
  .aboutpage .plant-wrap.oversea .office-list li,
  .aboutpage .plant-wrap.ipgroup .office-list li{
    width: 100%;
  }
  
  .aboutpage .plant-wrap.office .content-inner{
    padding: 4rem 2rem 8rem 2rem;
  }
  
  .aboutpage .plant-wrap.office .mail-wrap span{
    display: block;
  }

  .aboutpage .plant-wrap.office .mail-wrap a{
    padding-left: 1rem;
  }
  
  .aboutpage .plant-wrap.oversea{
    margin-bottom: 8rem;
  }
  
  .aboutpage .plant-wrap.ipgroup  .plant-detail dl > div{
    gap: .5rem;
    flex-direction: column;
  }
}

@media (max-width: 767px){
  .aboutpage .about-intro{
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 4rem;
  }

  .aboutpage .about-intro > div{
    display: flex;
    flex-direction: column;
  }
  
  .aboutpage .about-intro .deco-img{
    position: relative;
    top: 0;
    right: initial;
    width: 310px;
    left: 40px;
    order: 1;
    margin-top: 2rem;
  }
  
  .aboutpage .about-intro .deco-img::after{
    position: absolute;
    bottom: -90px;
    left: -30px;
    width: 150px;
  }
  
  .aboutpage .about-intro .read {
    margin: 2rem 0 2rem;
    font-size: 24px;
  }

  .aboutpage .about-intro .message{
    margin-bottom: 4rem;
  }
  
  .aboutpage .about-point::before{
    position: absolute;
    content: "";
    background: url(../img/common/deco-img.svg) no-repeat;
    width: 300px;
    height: 300px;
    display: block;
    top: -10%;
    right: -178px;
    z-index: -1;
    background-size: 100%;
  }
  
  .aboutpage .about-point::after{
    position: absolute;
    content: "";
    background: url(../img/common/deco-img.svg) no-repeat;
    width: 300px;
    height: 300px;
    display: block;
    bottom: -9%;
    left: -174px;
    z-index: -1;
    background-size: 100%;
  }
  
  .aboutpage .about-point .content-inner{
    padding: 6rem 3rem;
  }
  
  .aboutpage .about-point .point-detail{
    margin-bottom: 6rem;
    flex-direction: column;
    gap: 20px;
  }
  
  .aboutpage .about-point .point-detail.reverse{
    flex-direction: column;
  }
  
  .aboutpage .about-point .point-detail .text-wrap{
    max-width: 100%;
  }
  
  .aboutpage .about-point .point-detail img{
    max-width: 100%;
  }

  .aboutpage.overview .about-intro{
    padding-bottom: 0;
  }
  
  .aboutpage .company-detail{
    margin-bottom: 8rem;
  }
  
  .aboutpage .company-detail table td{
    padding: 2rem 0;
  }
  
  .aboutpage .company-detail table td li{
    width: 100%;
  }
  
  .aboutpage .policy-wrap .policy-content{
    margin-bottom: 8rem;
  }
  
  .aboutpage .policy-wrap .policy-detail{
    margin-bottom: 4rem;
  }
  
  .aboutpage .policy-wrap .policy-content h3{
    font-size: 18px;  
  }
  
  .aboutpage .policy-wrap .policy-content li::before{
    font-size: 24px;
    padding-right: 1rem;
    margin-right: 1.5rem;
  }
  
  .aboutpage .policy-wrap .policy-content li{
    margin-bottom: 1.5rem;
  }
  
  .aboutpage .about-intro p{
    margin-top: 0;
  }
  
  .aboutpage .iso-content h3{
    font-size: 18px;
  }
  
  .aboutpage .iso-content .image-wrap{
    margin: 4rem auto;
    display: flex;
    gap: 4rem;
    justify-content: center;
  }
  
  .aboutpage .iso-content .image-wrap figure{
    max-width: 240px;
  }
  
  .aboutpage .iso-content .image-wrap figure img{
    margin-bottom: 3rem;
  }
  
  .aboutpage .history-wrap{
    margin-bottom: 8rem;
  }
  
  .aboutpage .history-wrap table th{
    width: 100%;
    justify-content: flex-start;
    display: block;
    padding-top: 2rem;
  }

  .aboutpage .history-wrap table td{
    padding: 1rem 0 2rem 0;
    display: block;
  }
  
  .aboutpage .access-wrap{
    position: relative;
    margin-bottom: 16rem;
  }
  
  .aboutpage .access-wrap dl{
    gap: 1rem;
    flex-direction: column;
  }
  
  .aboutpage .access-wrap::before{
    height: 60px;
    bottom: -4%;
    left: 0;
  }

  .aboutpage .access-wrap iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
  }
}

/* ---------------------------------------------
  mask page
--------------------------------------------- */
.maskpage h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.maskpage .iso-icon{
  display: flex;
  align-items: center;
}

.maskpage .iso-icon::after{
  content: "ISO対象製品";
  border: 1px solid #707070;
  border-radius: 30px;
  font-size: 15px;
  display: block;
  width: 105px;
  padding: .5rem 1rem;
  background-color: #fff;
  text-align: center;
  margin-left: 4rem;
  font-weight: 500;
}

.maskpage .item-detail{
  margin-bottom: 8rem;
}

.maskpage .item-detail h2{
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #707070;
  padding-bottom: 2rem;
  width: 100%;
}

.maskpage .item-detail .content-inner{
  background-color: #fff;
  padding: 3rem;
  box-sizing: border-box;
}

.maskpage .item-detail .content-inner > div{
  margin-bottom: 4rem;
}

.maskpage .item-detail .read{
  margin-bottom: 3rem;
}

.maskpage .item-detail h3{
  font-size: 18px;
  font-weight: 600;
  margin-left: -3rem;
  margin-bottom: 2rem;
}

.maskpage .item-detail h3::before{
  margin-right: 2.5rem;
}

.maskpage .item-detail .feature-list{
  margin-bottom: 4rem;
}

.maskpage .item-detail .feature-list > li::before{
  content: "●";
}

.maskpage .item-detail .feature-list li{
  text-indent: -1em;
  padding-left: 1em;
}

.maskpage .item-detail .feature-list > li:not(:last-of-type){
  margin-bottom: 1rem;
}

.maskpage .item-detail .content-detail.flex{
  display: flex;
  gap: 70px;
  margin-bottom: 6rem;
}

.maskpage .item-detail .content-detail.flex .image-wrap,
.maskpage .item-detail .content-detail.flex table{
  width: 50%;
}

.maskpage .item-detail .content-detail.flex .image-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.maskpage .item-detail .content-detail .image-wrap figure{
  width: calc(50% - .5rem);
}

.maskpage .item-detail figcaption{
  font-size: 15px;
}

.maskpage .item-detail.hgp table{
  border-collapse: separate;
  border-spacing: 0 11px;
}

.maskpage .item-detail.hgp .content-detail th,
.maskpage .item-detail.hgp .content-detail td{
  vertical-align: middle;
}

.maskpage .item-detail.hgp .content-detail th{
  font-size: 15px;
  height: 35px;
}

.maskpage .item-detail .content-detail th.bg-y{
  background-color: #ffec00;
}

.maskpage .item-detail.hgp .content-detail th:first-of-type{
  border-right: 15px solid #fff;
}

.maskpage .item-detail.hgp .content-detail tr > td:nth-of-type(n+2){
  padding-left: 2rem;
}

.maskpage .item-detail.hgp .content-detail td{
  border-top: 1px solid #707070;
}

.maskpage .item-detail.hgp .content-detail tr:last-of-type{
  border-bottom: 1px solid #707070;
}

.maskpage .item-detail .content-detail .result-wrap{
  padding: 2rem 4rem;
}

.maskpage .item-detail .content-detail:nth-of-type(2){
  position: relative;
}

.maskpage .item-detail .content-detail:nth-of-type(2)::after{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #707070;
}

.maskpage .item-detail .content-detail:nth-of-type(2) figure{
  margin-bottom: 2rem;
}

.maskpage .item-detail .content-detail:nth-of-type(2) h4{
  margin-bottom: 2rem;
}

.maskpage .item-detail .graph-image{
  width: 90%;
  margin: auto;
}

.maskpage .item-detail.shg .feature-list > li:last-of-type::before{
  content: none;
}

.maskpage .item-detail.shg .feature-list .child-list{
  font-size: 13px;
}

.maskpage .item-detail.shg .feature-image{
  max-width: 650px;
  margin: 4rem auto 6rem;
}

.maskpage .item-detail .three-imgList{
  display: flex;
  gap: 1.5rem;
  max-width: 650px;
  margin: auto;
}

.maskpage .item-detail .three-imgList li{
  width: calc((100% - 3rem) / 3);
}

.maskpage .item-detail.shg table{
  border-collapse: separate;
  border-spacing: 0 30px;
}

.maskpage .item-detail.shg table tr::after{
  content: "";
  height: 1px;
  width: 100%;
  background: #707070;
}

.maskpage .item-detail.shg .assessment-list li{
  display: flex;
  padding: 1.5rem 0;
  border-bottom: 1px solid #707070;
}

.maskpage .item-detail.shg .assessment-list li:first-of-type{
  border-top: 1px solid #707070;
}

.maskpage .item-detail.shg .assessment-list li h4{
  width: 170px;
  background-color: #ffec00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maskpage .item-detail.shg .assessment-list li > div{
  flex-grow: 1;
}

.maskpage .item-detail.shg .assessment-list li img{
  max-width: 460px;
  display: block;
  margin: auto;
}

.maskpage .item-detail.hqual .feature-wrap{
  display: flex;
  margin-bottom: 4rem;
}

.maskpage .item-detail.hqual .feature-wrap img{
  max-width: 320px;
  margin-left: auto;
}

.maskpage .item-detail.hqual .three-imgList{
  margin-bottom: 4rem;
}

.maskpage .item-detail.hqual table{
  border-collapse: separate;
  border-spacing: 0 11px;
  max-width: 650px;
  margin: auto;
}

.maskpage .item-detail.hqual table tr:nth-of-type(n+2) th,
.maskpage .item-detail.hqual table tr:nth-of-type(n+2) td{
  border-bottom: 1px solid #707070;
  padding: 3rem 0;
}

.maskpage .item-detail.hqual table tr:nth-of-type(2) th,
.maskpage .item-detail.hqual table tr:nth-of-type(2) td{
  border-top: 1px solid #707070;
}

.maskpage .item-detail.hqual table tr:nth-of-type(n+2) th{
  text-align: left;
}

.maskpage .item-detail.hqual table tr:first-of-type th{
  width: 160px;
}

.maskpage .item-detail.hqual table tr:first-of-type th:nth-of-type(n+2){
  background-color: #ffec00;
  border-right: 2rem solid #fff;
  padding: 1rem 0;
}

.maskpage .item-detail.hqual table tr:first-of-type th:last-of-type{
  border-right: none;
}

.maskpage .item-detail.hqual table td{
  text-align: center;
}

.maskpage .item-detail aside{
  font-size: 13px;
  text-align: right;
}

.maskpage .item-detail.hqual aside.narrow{
  max-width: 650px;
  margin: auto;
}

.maskpage .item-detail.hqual .detail-list{
  margin-bottom: 1rem;
}

.maskpage .item-detail.hqual .detail-list li{
  display: flex;
  padding: 2.5rem 0;
  border-top: 1px solid #707070;
  gap: 2rem;
}

.maskpage .item-detail.hqual .detail-list li:last-of-type{
  border-bottom: 1px solid #707070;
}

.maskpage .item-detail.hqual .detail-list li h4{
  width: 100px;
}

.maskpage .item-detail .feature-wrap{
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.maskpage .item-detail .feature-wrap .text-wrap{
  width: 54vw;
  max-width: 600px;
  flex-shrink: 0;
}

.maskpage .item-detail .image-wrap{
  display: flex;
  gap: 50px;
}

.maskpage .item-detail .image-wrap figure{
  max-width: 320px;
}

.maskpage .item-detail .feature-wrap figure{
  max-width: 290px;
}

.maskpage.phmask .item-detail .narrow-container{
  margin-top: 6rem;
}

.maskpage .item-detail .twocolor tr:nth-of-type(odd){
  background-color: #F7F7F7;
}

.maskpage .item-detail .twocolor th{
  padding: 0 2rem;
  text-align: left;
  width: 100px;
}

.maskpage .item-detail .twocolor td{
  padding: 2.5rem 0;
}

.maskpage .item-detail .narrow-container aside{
  text-align: right;
  font-size: 13px;
}

.maskpage.additivemask .item-detail .narrow-container{
  margin-bottom: 3rem;
}

.maskpage.additivemask .item-detail .narrow-container h4{
  font-weight: 600;
  margin-bottom: 1rem;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type{
  margin-top: 6rem;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type:last-of-type tr:first-of-type{
  border-top: 1px solid #c1c1c1;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type:last-of-type tr:nth-of-type(5),
.maskpage.additivemask .item-detail .narrow-container:last-of-type:last-of-type tr:last-of-type{
  border-bottom: 1px solid #c1c1c1;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type:last-of-type th{
  padding: 2.5rem 0;
  text-align: center;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type:last-of-type tr:not(:last-of-type) th{
  border-bottom: 1px solid #c1c1c1;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type td{
  background-color: #fff;
  vertical-align: middle;
  padding-left: 8rem;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type tr:last-of-type th{
  vertical-align: middle;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type tr:last-of-type th:last-of-type{
  padding: 2.5rem 0;
  text-align: right;
}

.maskpage.additivemask .item-detail .narrow-container:last-of-type tr:last-of-type td{
  padding: 1.5rem 0;
  text-align: right;

}

.maskpage.additivemask .item-detail .narrow-container:last-of-type tr:last-of-type td,
.maskpage.additivemask .item-detail .narrow-container:last-of-type tr:last-of-type td img{
  width: 155px;
}

.maskpage .item-detail .feature-table tr:not(:first-of-type){
  border-bottom: 1px solid #c1c1c1;
}

.maskpage .item-detail .feature-table tr:nth-of-type(2) td img{
  width: 230px;
}

.maskpage .item-detail .feature-table tr:first-of-type th:last-of-type{
  border-left: 5rem solid #fff;
}

.maskpage .item-detail .feature-table tr:first-of-type th:nth-of-type(2){
  background-color: #e2e2e2;
  width: 330px;
}

.maskpage .item-detail .feature-table tr:first-of-type th:last-of-type{
  background-color: #ffec00;
  width: 330px;
}

.maskpage .item-detail .feature-table td{
  width: 330px;
  padding: 4rem 0;
  text-align: center;
}

.maskpage .item-detail .feature-table tr:nth-of-type(n+3) th{
  text-align: left;
}

.maskpage .item-detail .feature-table tr:nth-of-type(n+3) th span{
  background-color: #ffec00;
  padding: 2rem 0;
  width: 170px;
  display: block;
  text-align: center;
}

.maskpage .item-detail .assignment tr{
  border-bottom: 1px solid #c1c1c1;
}

.maskpage .item-detail .assignment th{
  font-size: 18px;
  font-weight: 600;
  width: 70px;
  vertical-align: middle;
  text-align: left;
}

.maskpage .item-detail .assignment td{
  padding: 2rem 0;
}


.maskpage .item-detail .assignment td ol{
  margin-left: 2rem;
}

.maskpage .item-detail .assignment td ol li:not(:last-of-type){
  margin-bottom: 1rem;
}

.maskpage .item-detail .assignment td img{
  max-width: 480px;
  display: block;
  margin: auto;
}

.maskpage .item-detail .assignment td div{
  border-left: 1px solid #c1c1c1;
}

.maskpage.cobmask .item-detail .feature-wrap{
  margin-bottom: 6rem;
}

.maskpage.cobmask .item-detail .standard h4,
.maskpage.cobmask .item-detail .standard table tr{
  border-bottom: 1px solid #c1c1c1;
}

.maskpage.cobmask .item-detail .standard h4{
  padding-bottom: 1rem;
}

.maskpage.cobmask .item-detail .standard table td{
  padding: 2.5rem 0;
}

.maskpage.cobmask .item-detail .standard table th{
  text-align: left;
}


@media (max-width: 767px){  
  .maskpage .iso-icon{
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .maskpage .iso-icon::after{
    font-size: 10px;
    width: 80px;
    margin-left: 0;
  }
  
  .maskpage .item-detail{
    margin-bottom: 8rem;
  }
  
  .maskpage .item-detail .content-inner > div{
    margin-bottom: 4rem;
  }
  
  .maskpage .item-detail h3{
    font-size: 16px;
  }
  
  .maskpage .item-detail .feature-list > li:not(:last-of-type){
    margin-bottom: 1rem;
  }
  
  .maskpage .item-detail .content-detail.flex{
    gap: 30px;
    margin-bottom: 0;
    flex-direction: column;
  }
  
  .maskpage .item-detail .content-detail.flex .image-wrap,
  .maskpage .item-detail .content-detail.flex table{
    width: 100%;
  }
  
  .maskpage .item-detail .content-detail.flex .image-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .maskpage .item-detail figcaption{
    font-size: 13px;
  }
  
  .maskpage .item-detail.hgp table{
    font-size: 12px;
  }
  
  .maskpage .item-detail.hgp .content-detail th{
    font-size: 12px;
    height: 25px;
  }
  
  .maskpage .item-detail.hgp .content-detail th:first-of-type{
    border-right: 8px solid #fff;
  }
  
  .maskpage .item-detail.hgp .content-detail tr > td:nth-of-type(n+2){
    padding-left: 2rem;
  }
  
  .maskpage .item-detail .content-detail .result-wrap{
    padding: 2rem 0;
  }
  
  .maskpage .item-detail .content-detail:nth-of-type(2)::after{
    content: none;
  }
  
  .maskpage .item-detail .content-detail:nth-of-type(2) figure{
    margin-bottom: 2rem;
  }
  
  .maskpage .item-detail .content-detail:nth-of-type(2) h4{
    margin-bottom: 2rem;
  }
  
  .maskpage .item-detail .graph-image{
    width: 90%;
    margin: auto;
  }
  
  .maskpage .item-detail.shg .feature-list > li:last-of-type::before{
    content: none;
  }
  
  .maskpage .item-detail.shg .feature-list .child-list{
    font-size: 13px;
  }

  .maskpage .item-detail .scroll-image{
    overflow-x: scroll;
  } 

  .maskpage .item-detail.shg .feature-image{
    max-width: initial;
    width: 470px;
    margin: 4rem auto 0;
  }

  .maskpage .scroll-bar::-webkit-scrollbar{
    width: 10px;
 }

  .maskpage .scroll-bar::-webkit-scrollbar-thumb{
    background-color: #c1c1c1;
  }

  .maskpage .scroll-bar::-webkit-scrollbar-track{
    background-color: #ebebeb;
 }

  .maskpage .scroll-bar{
    scrollbar-color: #c1c1c1 #ebebeb;
  }
  
  .maskpage .item-detail .three-imgList{
    gap: 0;
    max-width: 100%;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .maskpage .item-detail .three-imgList li{
    width: calc((100% - 1.5rem) / 2);
  }

  .maskpage .item-detail .three-imgList li:first-of-type{
    margin-right: 1.5rem;
  }

  .maskpage .item-detail.shg table{
    border-collapse: separate;
    border-spacing: 0 30px;
  }
  
  .maskpage .item-detail.shg table tr::after{
    content: "";
    height: 1px;
    width: 100%;
    background: #707070;
  }
  
  .maskpage .item-detail.shg .assessment-list li{
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid #707070;
  }
  
  .maskpage .item-detail.shg .assessment-list li:first-of-type{
    border-top: 1px solid #707070;
  }
  
  .maskpage .item-detail.shg .assessment-list li h4{
    width: 75px;
    padding: 5px;
    font-size: 10px;
  }
  
  .maskpage .item-detail.shg .assessment-list li > div{
    flex-grow: 1;
  }
  
  .maskpage .item-detail.shg .assessment-list li img{
    max-width: 200px;
    display: block;
    margin: 0 0 0 auto;
  }
  
  .maskpage .item-detail.hqual .feature-wrap{
    margin-bottom: 4rem;
    flex-direction: column;
  }
  
  .maskpage .item-detail.hqual .feature-wrap img{
    max-width: 100%;
    margin-left: 0;
  }
  
  .maskpage .item-detail.hqual table{
    max-width: 100%;
  }
  
  .maskpage .item-detail.hqual table tr:nth-of-type(n+2) th,
  .maskpage .item-detail.hqual table tr:nth-of-type(n+2) td{
    padding: 2rem 0;
  }
  
  .maskpage .item-detail.hqual table tr:first-of-type th:nth-of-type(n+2){
    border-right: 1rem solid #fff;
  }
  
  .maskpage .item-detail aside{
    font-size: 10px;
  }
  
  .maskpage .item-detail.hqual aside.narrow{
    max-width: 100%;
  }
  
  .maskpage .item-detail.hqual .detail-list{
    margin-bottom: 1rem;
  }
  
  .maskpage .item-detail.hqual .detail-list li{
    padding: 2rem 0;
  }
  
  .maskpage .item-detail .feature-wrap{
    align-items: center;
    flex-direction: column;
  }
  
  .maskpage .item-detail .feature-wrap .text-wrap{
    width: 100%;
  }
  
  .maskpage .item-detail .feature-wrap figure{
    max-width: 100%;
  }
  
  .maskpage .item-detail .narrow-container aside{
    font-size: 10px;
  }

  .maskpage.cobmask .item-detail .image-wrap{
    flex-direction: column;
  }

  .maskpage .item-detail .image-wrap figure{
    max-width: 100%;
  }
  
  .maskpage.additivemask .item-detail .narrow-container{
    margin-bottom: 3rem;
  }
  
  .maskpage.additivemask .item-detail .narrow-container:last-of-type:last-of-type th{
    padding: 2rem 0;
  }
  
  .maskpage.additivemask .item-detail .narrow-container:last-of-type td{
    padding-left: 2rem;
  }
  
  .maskpage.additivemask .item-detail .narrow-container:last-of-type tr:last-of-type th:last-of-type{
    padding: 2rem 0;
  }
  
  .maskpage.additivemask .item-detail .narrow-container:last-of-type tr:last-of-type td{
    padding: 1.5rem 0;  
  }

  .maskpage .scroll{
    overflow-x: scroll;
  }

  .maskpage .scroll aside{
    margin-bottom: 1rem;
  }

  .maskpage .item-detail .feature-table{
    width: 520px;
  }
  
  .maskpage .item-detail .feature-table td{
    width: 100px;
    padding: 3rem 0;
  }
  
  .maskpage .item-detail .feature-table tr:nth-of-type(n+3) th span{
    width: 75px;
  }
  
  .maskpage .item-detail .assignment th{
    font-size: 16px;
    width: 70px;
    display: block;
    margin-top: 1rem;
  }
  
  .maskpage .item-detail .assignment td{
    display: block;
    padding: 1rem 0 2rem 0;
  }
  
  .maskpage .item-detail .assignment td ol{
    margin-left: 0;
  }
  
  .maskpage .item-detail .assignment td img{
    max-width: 100%;
  }
  
  .maskpage .item-detail .assignment td div{
    border-left: none;
  }
  
  .maskpage.cobmask .item-detail .feature-wrap{
    margin-bottom: 6rem;
  }
  
  .maskpage.cobmask .item-detail .standard h4,
  .maskpage.cobmask .item-detail .standard table tr{
    border-bottom: 1px solid #c1c1c1;
  }
  
  .maskpage.cobmask .item-detail .standard h4{
    padding-bottom: 1rem;
  }
  
  .maskpage.cobmask .item-detail .standard table td{
    padding: 2.5rem 0;
  }
  
  .maskpage.cobmask .item-detail .standard table th{
    text-align: left;
  }
}

/* ---------------------------------------------
  mask option
--------------------------------------------- */
.maskpage.half .content-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6rem 0;
  margin-bottom: 4rem;
}

.maskpage.half .content-list li{
  width: calc((100% - 110px) / 2);
}

.maskpage.half .content-list li:nth-of-type(2){
  margin-top: auto;
}

.maskpage.nameraka .content-list{
  margin-bottom: 6rem;
  display: flex;
  justify-content: space-between;
}

.maskpage.nameraka .content-inner > div:last-of-type .content-list{
  margin-bottom: 2rem;
}

.maskpage.nameraka .content-list li{
  width: calc((100% - 25px) / 2);
}

.maskpage.nameraka .arrow-img{
  padding: 0 10px;
  margin: auto;
}

.maskpage.nameraka .arrow-img{
  text-align: center;
}

.maskpage.coating .content-inner > div:last-of-type figure{
  margin-bottom: 4rem;
}

.maskpage.coating .content-inner .bg-y{
  width: 100%;
  background-color: #ffec00;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767px){
  .maskpage.half .content-list{
    gap: 4rem 0;
    flex-direction: column;
  }
  
  .maskpage.half .content-list li{
    width: 100%;
  }
  
  .maskpage.nameraka .content-list li{
    width: calc((100% - 15px) / 2);
  }
}

/* ---------------------------------------------
  shared system
--------------------------------------------- */
.maskpage.hayate .feature-list.square li::before{
  content: "■";
}

.maskpage.hayate .content-inner > div:nth-of-type(4) figure img{
  max-width: 340px;
  margin: auto;
  display: block;
}

.maskpage.system .feature-wrap figure{
  background-color: #f7f7f7;
  padding: 5px;
}

.maskpage.flm .item-detail .feature-list{
  margin-bottom: 0;
}

.maskpage.ff .item-detail .feature-list li{
  margin-bottom: 2rem;
}

.maskpage.ff .item-detail .content-inner > figure{
  margin-bottom: 4rem;
}

@media (max-width: 767px){
  .maskpage.hayate .content-inner > div:nth-of-type(4) figure img{
    max-width: 100%;
    margin: auto;
    display: block;
  }

  .maskpage.ff .content-inner > figure img{
    margin-bottom: 1rem;
  }
}

/* ---------------------------------------------
  finemask
--------------------------------------------- */
.maskpage.finemask .item-detail{
  margin-top: 6rem;
}

.maskpage.finemask .item-detail .image-wrap{
  display: flex;
  gap: 1.5rem;
}

.maskpage.finemask .item-detail .image-wrap figure{
  width: calc((100% - 1.5rem) / 2);
}

.maskpage.finemask .item-detail .twocolor{
  table-layout: fixed;
}

.maskpage.finemask .item-detail .twocolor tr:nth-of-type(odd){
  background-color: initial;
}

.maskpage.finemask .item-detail .twocolor tr:nth-of-type(even){
  background-color: #F7F7F7;
}

.maskpage.finemask .item-detail .twocolor tr:first-of-type th:first-of-type{
  width: 275px;
}

.maskpage.finemask .item-detail .twocolor tr:first-of-type th:nth-of-type(n+2),
.maskpage.finemask .item-detail .twocolor tr:nth-of-type(n+2) td{
  width: 80px;
  text-align: center;
}

.maskpage.finemask .item-detail .twocolor tr:last-of-type th{
  vertical-align: middle;
}

.maskpage.finemask .item-detail .three-imgList figcaption{
  font-weight: 600;
  margin-top: 1rem;
}

.maskpage.finemask .item-detail .three-imgList figcaption span{
  font-weight: initial;
  font-size: 15px;
  display: block;
  margin-top: 1rem;
}

@media (max-width: 767px){
  .maskpage.finemask .item-detail{
    margin-top: 6rem;
  }
  
  .maskpage.finemask .item-detail .twocolor{
    table-layout: auto;
  }
  
  .maskpage.finemask .item-detail .twocolor tr:first-of-type th:nth-of-type(n+2),
  .maskpage.finemask .item-detail .twocolor tr:nth-of-type(n+2) td{
    width: 90px;
  }
  
  .maskpage.finemask .item-detail .three-imgList figcaption span{
    font-size: 13px;
  }

  .maskpage.finemask .item-detail .three-imgList {
    gap: 2rem 0;
}

.maskpage.finemask .item-detail .image-wrap figure{
  width: 100%;
}
}

/* ---------------------------------------------
  jigpage
--------------------------------------------- */
.maskpage.jig .top-ttl.product::after{
  content: "商品情報";
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  top: -15px;
  left: 60px;
}

.maskpage.holder .item-detail .feature-wrap figure{
  max-width: 330px;
  position: relative;
}

.maskpage.holder .item-detail .feature-wrap figure figcaption{
  position: absolute;
  top: -10px;
  left: -40px;
}

.maskpage.divider .feature-wrap > div{
  width: 50%;
  position: relative;
}

.maskpage.divider .feature-wrap figure{
  position: relative;
}

.maskpage.divider .feature-wrap figcaption{
  font-weight: 600;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.maskpage.divider .feature-wrap .feature-list{
  margin-top: 2rem;
  margin-bottom: 0;
}

.maskpage.divider .feature-wrap > div{
  padding: 1rem 0;
}

.maskpage.divider .feature-wrap > div:last-of-type{
  padding-left: 3rem;
  position: relative;
}

.maskpage.divider .feature-wrap > div:last-of-type::before{
  content: "";
  border-left: 1px dotted #707070;
  position: absolute;
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
}

.maskpage.divider .content-inner > div{
  border-bottom: 1px dotted #707070;
  padding-bottom: 4rem;
}

.maskpage.divider .content-inner > div:last-of-type{
  margin-bottom: 1rem;
}

.maskpage.divider .content-inner > div:nth-of-type(n+2){
  display: flex;
  align-items: center;
  gap: 10rem;
}

.maskpage.divider .content-inner > div:nth-of-type(n+2) h4{
  font-weight: 600;
  flex-shrink: 0;
}

.maskpage.divider .content-inner > div:nth-of-type(n+2) figure{
  max-width: 520px;
}

.maskpage.divider .content-inner{
  padding-bottom: 6rem;
}

.maskpage.dip h2 img{
  display: block;
  width: 240px;
}

.maskpage.dip .itemList{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 4.5rem;
  margin-bottom: 6rem;
}

.maskpage.dip .itemList li{
  width: calc((100% - 4.5rem) / 2);
  background-color: #f7f7f7;
  position: relative;
  min-height: 260px;
}

.maskpage.dip .itemList li figure img{
  max-height: 240px;
  display: block;
  margin: auto;
  padding: 10px 0;
}

.maskpage.dip .itemList li figure.narrow img{
  max-height: 200px;
}

.maskpage.dip .itemList li figure figcaption{
  position: absolute;
  bottom: 10px;
  left: 15px;
  font-weight: 600;
}

.maskpage.dip .item-detail .twocolor th {
  padding: 0 2rem;
  text-align: left;
  width: 170px;
}

.maskpage.dip .item-detail .twocolor .sup{
  vertical-align: super;
  font-size: smaller;
}

.maskpage.dip .item-detail .outro{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.maskpage.magi h2 img{
  display: block;
  width: 360px;
}
.maskpage.magi .read .patent{
  display: block;
  font-size: 10px;
  margin-top: .5rem;
}

.maskpage.magi .item-detail .twocolor tr:nth-of-type(odd){
  background-color: initial;
}

.maskpage.magi .item-detail .twocolor tr:nth-of-type(even){
  background-color: #F7F7F7;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor{
  margin-bottom: .5rem;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor .row3{
  background-color: #e6e6e6;
  text-align: center;
  vertical-align: middle;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th{
  text-align: center;
  padding: 0;
  padding-bottom: .5rem;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor td{
  text-align: center;
  vertical-align: middle;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(2){
  width: 200px;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(3){
  width: 200px;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(4){
  width: 145px;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:last-of-type{
  width: 270px;
}

.maskpage.magi .item-detail .type-wrap{
  display: flex;
  gap: 5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.maskpage.magi .item-detail .type-wrap dl{
  width: calc((100% - 10rem) / 3);
}

.maskpage.magi .item-detail .type-wrap dt{
  font-weight: 600;
  margin-bottom: 1rem;
}

.maskpage.magi .item-detail .notes{
  display: flex;
  border: 1px solid #707070;
  align-items: center;
}

.maskpage.magi .item-detail .notes h4{
  font-weight: 600;
  background-color: #ffec00;
  border-right: 1px solid #707070;
  padding: 3rem 2rem;
  flex-shrink: 0;
}

.maskpage.magi .item-detail .notes p{
  padding: 0 2rem;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor th:first-of-type{
  width: auto;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor th:last-of-type{
  width: 250px;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor th{
  padding: 0;
  padding-bottom: .5rem;
  text-align: center;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor tr td:first-of-type{
  border-right: 13px solid #fff;
  padding-left: 2rem;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor tr td:last-of-type{
  text-align: center;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor tr:nth-of-type(-n+4) td:last-of-type{
  background-color: #F0EDC8;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor tr:nth-of-type(3) td:last-of-type{
  background-color: #FFFCDB;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(5) .twocolor th{
  width: 50%;
  padding: 0;
  padding-bottom: .5rem;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(5) .twocolor th:first-of-type{
  font-weight: 600;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(5) .twocolor td:first-of-type{
  padding-left: 2rem;
}

.maskpage.magi .item-detail .content-inner > div:nth-of-type(5) .twocolor td:last-of-type{
  text-align: center;
}

.maskpage.magi .feature-wrap > div{
  width: 50%;
  position: relative;
}

.maskpage.magi .feature-wrap figure{
  position: relative;
}

.maskpage.magi .feature-wrap figcaption{
  font-weight: 600;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.maskpage.magi .feature-wrap .feature-list{
  margin-top: 2rem;
  margin-bottom: 0;
}

.maskpage.magi .feature-wrap > div{
  padding: 1rem 0;
}

.maskpage.magi .feature-wrap > div:last-of-type{
  padding-left: 3rem;
  position: relative;
}

.maskpage.magi .feature-wrap > div:last-of-type::before{
  content: "";
  border-left: 1px dotted #707070;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 95%;
}

.maskpage.magi .feature-wrap h4{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2rem;
  height: 40px;
}

.maskpage.magi .feature-wrap > div:first-of-type h4 img{
  max-width: 230px;
}

.maskpage.magi .feature-wrap figure{
  max-width: 420px;
}

@media (max-width: 1000px){
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor{
    table-layout: fixed;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(2){
    width: 100px;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(3){
    width: 150px;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(4){
    width: 120px;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:last-of-type{
    width: 180px;
  }
  
}

@media (max-width: 767px){
  .maskpage.jig figure{
    width: 700px;    
  }

  .maskpage.holder .item-detail .image-wrap{
    width: 100%;
  }
  
  .maskpage.holder .item-detail .feature-wrap figure{
    max-width: 100%;
  }
  
  .maskpage.holder .item-detail .feature-wrap figure figcaption{
    position: absolute;
    top: -10px;
    left: -10px;
  }

  .maskpage.holder .item-detail .scroll-bar{
    margin-bottom: 1rem;
  }
  
  .maskpage.divider .feature-wrap{
    gap: 4rem;
  }
  
  .maskpage.divider .feature-wrap > div{
    width: 100%;
    position: relative;
  }
  
  .maskpage.divider .content-inner > div:nth-of-type(n+2){
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }
  
  .maskpage.divider .content-inner > div:nth-of-type(n+2) figure{
    max-width: 100%;
  }
  
  .maskpage.dip h2 img{
    width: 200px;
  }
  
  .maskpage.dip .itemList{
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 4.5rem;
    margin-bottom: 6rem;
    flex-direction: column;
  }
  
  .maskpage.dip .itemList li{
    width: 100%;
    background-color: #f7f7f7;
    position: relative;
    min-height: 260px;
  }

  .maskpage.dip .itemList li figure{
    max-width: 100%;
  }
  
  .maskpage.dip .itemList li figure img{
    max-height: initial;
    width: 100%;
  }
  
  .maskpage.dip .item-detail .twocolor th {
    width: 140px;
  }
  
  .maskpage.dip .item-detail .outro{
    font-size: 15px;
    font-weight: 600;
    text-align: center;
  }
  
  .maskpage.magi h2 img{
    display: block;
    width: 340px;
  }

  .maskpage.magi .feature-img{
    max-width: 100%;
  }
  
  .maskpage.magi .scroll-table{
    width: 680px;
  }

  .maskpage .item-detail .scroll-table th {
    width: 75px;
}
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(2){
    width: 160px;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(3){
    width: 160px;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:nth-of-type(4){
    width: 130px;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(2) .twocolor th:last-of-type{
    width: 170px;
  }
  
  .maskpage.magi .item-detail .type-wrap{
    gap: 3rem;
    flex-direction: column;
  }
  
  .maskpage.magi .item-detail .type-wrap dl{
    width: 100%;
  }
  
  .maskpage.magi .item-detail .notes{
    flex-direction: column;
  }
  
  .maskpage.magi .item-detail .notes h4{
    border-right: none;
    padding: 1rem 0rem;
    width: 100%;
    text-align: center;
  }
  
  .maskpage.magi .item-detail .notes p{
    padding: 1rem 2rem;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor th:first-of-type{
    width: 50%;
  }
  
  .maskpage.magi .item-detail .content-inner > div:nth-of-type(4) .twocolor th:last-of-type{
    width: 50%;
  }
  
  .maskpage.magi .feature-wrap > div{
    width: 100%;
  }
  
  .maskpage.magi .feature-wrap figure{
    position: relative;
  }
  
  .maskpage.magi .feature-wrap figcaption{
    font-weight: 600;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
  .maskpage.magi .feature-wrap .feature-list{
    margin-top: 2rem;
    margin-bottom: 0;
  }
  
  .maskpage.magi .feature-wrap > div{
    padding: 1rem 0;
  }
  
  .maskpage.magi .feature-wrap > div:last-of-type{
    padding-left: 3rem;
    position: relative;
  }
  
  .maskpage.magi .feature-wrap > div:last-of-type::before{
    content: none;
  }
  
  .maskpage.magi .feature-wrap h4{
    font-size: 16px;
    margin-bottom: 1rem;
    height: 30px;
  }
  
  .maskpage.magi .feature-wrap > div:first-of-type h4 img{
    max-width: 150px;
  }
  
  .maskpage.magi .feature-wrap figure{
    max-width: 100%;
  }
}

/* ---------------------------------------------
  accessory page
--------------------------------------------- */
.maskpage.accessory .top-ttl.product::after{
  content: "Product";
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  top: -15px;
  left: 60px;
}

.subpage.accessory .headding ul li {
  width: calc((100% - 7px) / 5);
  line-height: 1.3;
}

.maskpage.accessory .item-detail .feature-wrap figure{
  width: 260px;
}

.maskpage.accessory .item-detail .feature-wrap .text-wrap{
  width: 54vw;
}

.maskpage.accessory .item-detail{
  margin-top: 6rem;
}

.maskpage.accessory .item-detail .feature-wrap h4{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: .5rem;
}

.maskpage.accessory .item-detail .feature-wrap dl{
  display: flex;
  margin-bottom: .5rem;
}

.maskpage.accessory .item-detail .feature-wrap dt{
  width: 245px;
}

.maskpage.accessory .item-detail .feature-wrap dd{
  width: 425px;
  margin-left: 1rem;
}

.maskpage.accessory .content-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 0;
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.maskpage.accessory .content-list > li{
  width: calc((100% - 76px) / 2);
}

.maskpage.glassmask .content-inner div > p:nth-of-type(2){
  font-size: 13px;
  margin-bottom: 4rem;
}

.maskpage.glassmask .item-detail .twocolor tr:nth-of-type(odd){
  background-color: initial;
}

.maskpage.glassmask .item-detail .twocolor tr:nth-of-type(even){
  background-color: #F7F7F7;
}

.maskpage.glassmask .item-detail .twocolor th{
  width: initial;
  padding: 0;
}

.maskpage.glassmask .item-detail .twocolor td{
  text-align: center;
}

.maskpage.glassmask .item-detail .twocolor tr:first-of-type th:nth-of-type(n+2){
  width: 160px;
  text-align: center;
  padding-bottom: 1rem;
}

.maskpage.glassmask .item-detail .twocolor tr:not(:first-of-type) th{
  padding-left: 2rem;
}

.maskpage.glassmask h4{
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 820px){
  .subpage.accessory .headding ul li {
    width: calc((100% - 7px) / 2);
  }
}

@media (max-width: 767px){
  
  .maskpage.accessory .item-detail .feature-wrap figure{
    width: 100%;
  }
  
  .maskpage.accessory .item-detail .feature-wrap .text-wrap{
    width: 100%;
  }
  
  .maskpage.accessory .item-detail .feature-wrap dl{
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
  
  .maskpage.accessory .item-detail .feature-wrap dt{
    width: initial;
  }
  
  .maskpage.accessory .content-list{
    flex-direction: column;
  }
  
  .maskpage.accessory .content-list > li{
    width: 100%;
  }
  
  .maskpage.glassmask .item-detail .twocolor tr:first-of-type th:nth-of-type(n+2){
    width: 80px;
  }

  .maskpage.accessory .item-detail .feature-wrap dd{
    width: 100%;
  }
}
/* ---------------------------------------------
  spi page
--------------------------------------------- */

.maskpage.spi .top-ttl.spi::after{
  content: "装置";
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  top: -15px;
  left: 60px;
}

.maskpage.spi .item-detail {
  margin-top: 6rem;
}

.maskpage.spi .item-detail .intro{
  position: relative;
}

.maskpage.spi .item-detail .feature-wrap .text-wrap {
  max-width: 480px;
  width: 52vw;
}

.maskpage.spi .item-detail .feature-wrap .text-wrap .read{
  margin-bottom: 10rem;
}

.maskpage.spi .item-detail .feature-wrap .text-wrap figure{
  max-width: 100%;
}

.maskpage.spi .item-detail .feature-wrap > figure{
  max-width: 410px;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1200px){
  .maskpage.spi .item-detail .feature-wrap > figure{
    max-width: 33vw;
    top: 30px;
  }
}

.maskpage.spi .item-detail .spi-featureList li::before{
  content: none;
}

.maskpage.spi .item-detail .spi-featureList li:not(:last-of-type){
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #c1c1c1;
}

.maskpage.spi .item-detail .spi-featureList li,
.maskpage.spi .item-detail .spi-featureList li .image-wrap{
  display: flex;
}

.maskpage.spi .item-detail .spi-featureList li > div:nth-of-type(2){
  margin-left: auto;
}

.maskpage.spi .item-detail .spi-featureList li .text-wrap{
  width: 260px;
}

.maskpage.spi .item-detail .spi-featureList li .text-wrap h4{
  font-weight: 600;
  margin-bottom: 1rem;
}

.maskpage.spi .item-detail .spi-featureList li .text-wrap dt{
  font-weight: 500;
}

.maskpage.spi .item-detail .spi-featureList li .text-wrap h4::before{
  content: "●";
}

.maskpage.spi .item-detail .spi-featureList li:nth-of-type(-1n+2) .image-wrap{
  width: 100%;
  max-width: 570px;
  justify-content: space-between;
}

.maskpage.spi .item-detail .spi-featureList li:nth-of-type(2) > div:nth-of-type(2){
  width: 100%;
  max-width: 570px;
}

.maskpage.spi .item-detail .spi-featureList li:nth-of-type(2) > div:nth-of-type(2) p{
  font-size: 14px;
  text-align: right;
  margin-bottom: .5rem;
}

.maskpage.spi .item-detail .spi-featureList li:nth-of-type(2) > div:nth-of-type(2) aside{
  margin-top: .5rem;
}

.maskpage.spi .item-detail .spi-featureList li:first-of-type .image-wrap figure{
  max-width: 250px;
}

.maskpage.spi .item-detail .spi-featureList li:nth-of-type(2) .image-wrap figure{
  max-width: 220px;
}

.maskpage.spi .item-detail .spi-featureList li .image-wrap figcaption{
  font-size: 13px;
  text-align: center;
}

.maskpage.spi .item-detail .spi-featureList li:nth-of-type(n+4) .image-wrap{
  width: 100%;
  max-width: 630px;
}

.maskpage.spi .item-detail .content-inner > div:nth-of-type(n+3) .feature-list{
  font-weight: 600;
}

.maskpage.spi .item-detail .content-inner > div:nth-of-type(3) .feature-wrap{
  align-items: center;
}

.maskpage.spi .item-detail .content-inner > div:nth-of-type(3) .feature-wrap figure{
  max-width: 470px;
}

@media (max-width: 767px){

  .maskpage.spi .item-detail h3 {
    align-items: flex-start;
  }
  
  .maskpage.spi .item-detail .feature-wrap .text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .maskpage.spi .item-detail .feature-wrap .text-wrap .read{
    margin-bottom: 1rem;
    order: 1;
  }
  
  .maskpage.spi .item-detail .feature-wrap .text-wrap figure{
    max-width: 100%;
    margin: 2rem auto;
  }
  
  .maskpage.spi .item-detail .feature-wrap > figure{
    max-width: 100%;
    position: initial;
    order: -1;
  }
  
  .maskpage.spi .item-detail .spi-featureList li:not(:last-of-type){
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #c1c1c1;
  }
  
  .maskpage.spi .item-detail .spi-featureList li,
  .maskpage.spi .item-detail .spi-featureList li .image-wrap{
    display: flex;
  }

  .maskpage.spi .item-detail .spi-featureList li{
    flex-direction: column;
  }

  .maskpage.spi .item-detail .spi-featureList li .image-wrap{
    gap: 1rem;
  }
  
  .maskpage.spi .item-detail .spi-featureList li > div:nth-of-type(2){
    margin-left: 0;
  }
  
  .maskpage.spi .item-detail .spi-featureList li .text-wrap{
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .maskpage.spi .item-detail .spi-featureList li .text-wrap dl{
    margin-bottom: 1rem;
  }
  
  .maskpage.spi .item-detail .spi-featureList li:nth-of-type(2) > div:nth-of-type(2) p{
    font-size: 12px;
    margin-bottom: 1rem;
  }
  
  .maskpage.spi .item-detail .spi-featureList li:first-of-type .image-wrap figure{
    max-width: 100%;
  }
  
  .maskpage.spi .item-detail .spi-featureList li:nth-of-type(2) .image-wrap figure{
    max-width: 100%;
  }
  
  .maskpage.spi .item-detail .spi-featureList li .image-wrap figcaption{
    font-size: 12px;
  }
  
  .maskpage.spi .item-detail .spi-featureList li:nth-of-type(n+4) .image-wrap{
    width: 100%;
    max-width: 630px;
  }
  
  .maskpage.spi .item-detail .content-inner > div:nth-of-type(3) .feature-wrap figure{
    max-width: 100%;
  }
}

/* ---------------------------------------------
  processing
--------------------------------------------- */

.maskpage.processing .item-detail {
  margin-top: 6rem;
}

.maskpage.processing .item-detail .image-wrap{
  display: flex;
  gap: 1rem;
  margin-top: 6rem;
}

.maskpage.processing .item-detail .image-wrap figure{
  width: calc((100% - 2rem) / 3);
}

@media (max-width: 767px){

  .maskpage.accessory .item-detail,
  .maskpage.processing .item-detail {
    margin-top: 1rem;
  }

  .maskpage.processing .item-detail .image-wrap{
    margin-top: 3rem;
    flex-wrap: wrap;
    flex-direction: row;
  }
  
  .maskpage.processing .item-detail .image-wrap figure{
    width: calc((100% - 2rem) / 2);
  }
}

/* ---------------------------------------------
  newspage
--------------------------------------------- */
.newspage .content_box{
  display: flex;
  flex-direction: column;
}

.newspage .news-list-wrap li{
  padding: 6rem 3rem;
  background-color: #fff;
  width: 100%;
  margin-bottom: 4rem;
  box-sizing: border-box;
}

.newspage .news-list-wrap li .topics-date{
  margin-bottom: 1rem;
  order: -1;
}

.newspage .news-list-wrap li h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.newspage .news-list-wrap li .topics-content a{
  text-decoration: underline;
}

@media (max-width: 767px){
  .newspage .news-list-wrap li{
    padding: 4rem 2rem;
    width: 100%;
    margin-bottom: 3rem;
    box-sizing: border-box;
  }
  
  .newspage .news-list-wrap li .news-date{
    margin-bottom: 1rem;
  }
  
  .newspage .news-list-wrap li h3{
    font-size: 16px;
    margin-bottom: 2rem;
  }
}

/* ---------------------------------------------
  contactpage
--------------------------------------------- */
.contactpage .contact-wrap{
  max-width: 755px;
  margin: auto;
  text-align: center;
  margin-bottom: 12rem;
}

.contactpage .contact-wrap .mail-wrap{
  margin: 6rem 0;
  font-size: 31px;
  font-weight: 600;
  background-color: #fff;
  padding: 6rem 0;
}

@media (max-width: 767px){
  .contactpage .contact-wrap{
    max-width: 100%;
    margin-bottom: 12rem;
  }
  
  .contactpage .contact-wrap .mail-wrap{
    margin: 3rem 0;
    font-size: 22px;
    padding: 3rem 0;
  }
}

/* ---------------------------------------------
  recruitpage
--------------------------------------------- */
.recruitpage .recruit-wrap p{
  margin-bottom: 6rem;
  text-align: center;
}

.recruitpage .recruit-wrap > div{
  display: flex;
  justify-content: center;
  gap: 0 2rem;
  flex-wrap: wrap;
}

.recruitpage .recruit-wrap > div p{
  width: 100%;
}

/* ---------------------------------------------
  privacypage
--------------------------------------------- */
.privacypage .privacy-wrap .read{
  margin-bottom: 4rem;
}

.privacypage .privacy-wrap .content-inner{
  background-color: #fff;
  padding: 6rem 3rem;
  box-sizing: border-box;
}

.privacypage .privacy-wrap .content{
  margin-bottom: 6rem;
}

.privacypage .privacy-wrap .content:last-of-type{
  margin-bottom: 2rem;
}

.privacypage .privacy-wrap .content h2{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.privacypage .privacy-wrap .content p{
  margin-bottom: 3rem;
}

.privacypage .privacy-wrap .content ul li::before{
  content: "●";
}

.privacypage .privacy-wrap .content h3{
  font-weight: 600;
}

@media (max-width: 767px){
  .privacypage h1{
    font-size: 30px;
  }
  
  .privacypage .privacy-wrap .content-inner{
    padding: 4rem 2rem;
  }
  
  .privacypage .privacy-wrap .content{
    margin-bottom: 4rem;
  }
  
  .privacypage .privacy-wrap .content:last-of-type{
    margin-bottom: 2rem;
  }
  
  .privacypage .privacy-wrap .content h2{
    font-size: 18px;
    display: inline;
  }
  
  .privacypage .privacy-wrap .content p{
    margin-bottom: 3rem;
    margin-top: 2rem;
  }
}

/* ---------------------------------------------
  sitemappage
--------------------------------------------- */
.sitemappage .sitemap-wrap .content-inner{
  display: flex;
  align-items: flex-start;
}

.sitemappage .sitemap-wrap .content-inner .content-wrap{
  width: calc(100% / 3);
  border-left: 1px solid #707070;
  padding: 0 3rem;
}

.sitemappage .sitemap-wrap .content-inner .content-wrap:last-of-type{
  border-right: 1px solid #707070;
}

.sitemappage .sitemap-wrap .content-wrap .link-group:not(:last-of-type){
  margin-bottom: 4rem;
}

.sitemappage .sitemap-wrap .link-group h2{
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.sitemappage .sitemap-wrap .link-group li:not(:last-of-type){
  margin-bottom: 1.3rem;
}

.sitemappage .sitemap-wrap .content-wrap:last-of-type .link-group:nth-of-type(n+4) h2{
  margin-bottom: 1.3rem;
}

.sitemappage .sitemap-wrap .content-wrap:last-of-type .link-group:nth-of-type(n+4),
.sitemappage .sitemap-wrap .content-wrap:last-of-type .link-group:last-of-type h2{
  margin-bottom: 0;
}

@media (max-width: 767px){
  .sitemappage .sitemap-wrap .content-inner{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  
  .sitemappage .sitemap-wrap .content-inner .content-wrap{
    width: 100%;
    border-left: none;
    padding: 0;
    margin-bottom: 3rem;
  }
  
  .sitemappage .sitemap-wrap .content-inner .content-wrap:last-of-type{
    border-right: none;
  }
  
  .sitemappage .sitemap-wrap .content-wrap .link-group:not(:last-of-type){
    margin-bottom: 3rem;
  }
  
  .sitemappage .sitemap-wrap .link-group h2{
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
}

.maintenance-wrap{
  width: 100%;
  text-align: center;
  font-size: 20px;
  margin-top: 100px;
}

.maintenance-wrap h1{
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 60px;
}

.subpage.maintenance{
  position: relative;
  height: 100svh;
}

.subpage.maintenance footer{
  background-color: #F7F7F7;
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media (max-width: 767px){
  .maintenance-wrap{
    font-size: 15px;
    margin-top: 150px;
  }
  
  .maintenance-wrap h1{
    font-size: 25px;
  }
}