@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');


/* ----------------------------------------------------------
 Reset,Base CSS
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  border-style:none;
  box-sizing: border-box !important;
}
html {
  color: #000000;
  background-color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  line-height: 1.85em;
  text-align: left;
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size-adjust: none;
  -webkit-font-size-adjust: none;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  position: relative;
  background-color: #ffffff;
}
html,body,#wrapper { height: 100%; }
main { display: block; }
section { margin: 0; }
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #000000;
  text-decoration : none;
  border: none;
  outline: none;
  transition: 0.6s;
}
* a {
  display: block;
  width: 100%;
  height: 100%;
}
a:hover {
  transition: 0.6s;
}
a[href^="tel:"] { cursor: default; }
ul, ol {
  margin: 0;
  padding: 0;
  list-style : none;
}
ul li {
  font-size: 1rem;
  line-height: 1.85em;
}
figure {
  margin: 0;
  padding: 0;
  min-height: 0% !important;
  line-height: 0;
}
img {
  margin: 0;
  padding: 0;
  min-height: 0;
  line-height: 0;
}
p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.85em;
}

/* ----------------------------------------------------------
 Responsive Settings
---------------------------------------------------------- */
.wrapper { overflow: hidden; }

@media print, screen and (min-width : 767px) { /* PC */
  .wrapper {
    min-width: 1200px;
    margin: 0 auto;
  }
  .pcoff {
    display: none !important;
  }
  .wrap {
    width: 85%;
    min-width: 1100px;
    /* max-width: 1400px; */
    margin: 0 auto;
  }
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  .smpoff {
    display: none !important;
  }
  html,p {
    font-size: 4.5vw;
    line-height: 1.75em;
  }
}


/* ----------------------------------------------------------
 Header
---------------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 2rem;
  background-color: rgba(255,255,255,0.95);
}
header.fixed {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  box-shadow: 0 0 0.5rem #aaaaaa;
  padding: 1rem 2rem;
}
.pc-nav,
header h1,
.drawerbox {
  width: calc(100% / 3);
}

.pc-nav ul {
  display: flex;
  font-family: 'Open Sans', sans-serif;
}
.pc-nav ul li {
  margin-right: 2em;
}
.pc-nav ul li a:hover {
  color: #6c96ca;
}
.pc-nav ul li.ig img {
  width: 1.75rem;
  height: 1.75rem;
  transition: .3s;
}
.pc-nav ul li.ig img:hover {
  opacity: .7;
  transition: .3s;
}
header h1 {
  text-align: center;
}
header h1 img {
  width: 80%;
}
header.fixed h1 img {
  width: 60%;
}
.drawerbox {
  display: flex;
  justify-content: flex-end;
}
.drawerbox img {
  border: 1px solid #6c96ca;
  width: 60px;
  height: 60px;
}



/*　ヘッダー、ナビゲーション
--------------------------------------------- */
#nav-toggle {
  /*position: fixed;*/
  top: 0;
  right: 0;
  cursor: pointer;
}
#nav-toggle div {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  transition: 0.6s;
  border: 1px solid #6c96ca;
}
#nav-toggle div:hover {
  opacity: 0.7;
  transition: 0.6s;
}
#nav-toggle div span {
  width: 45%;
  height: 2px;
  left: 27.5%;
  display: block;
  background: #000000;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle div span:nth-child(1) { top: 22px; }
#nav-toggle div span:nth-child(2) { top: 28px; }
#nav-toggle div span:nth-child(3) { top: 34px; }

.open #nav-toggle span { background: #fff; }
.open #nav-toggle span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 28px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 28px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle { z-index: 1000; }
#container { z-index: 900; }

#gloval-nav {
  background: rgba(108,150,202,0.95);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0;
  line-height: 1.5em;
  transition: color .6s ease;
}
#gloval-nav a { color: #fff; }
#gloval-nav h2 {
  opacity: 0;
  transition:  transform .6s ease, opacity .2s ease;
  transform: translateX(200px);
  transition-delay: .45s;
  font-size: 2rem;
  margin-bottom: 2rem;
  width: 15%;
  margin: 0 auto 2rem auto;
}
#gloval-nav h2 img {
  width: 100%;
}
#gloval-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}
#gloval-nav ul li {
  width: 46%;
  margin: 0 2%;
  opacity: 0;
  transform: translateX(200px);
  transition:  transform .6s ease, opacity .2s ease;
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}
#gloval-nav ul li.ig a {
  display: flex;
  align-items: center;
  justify-content: center;
}
#gloval-nav ul li.ig img {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.25rem;
}
#gloval-nav ul li:nth-child(2) { transition-delay: .15s; }
#gloval-nav ul li:nth-child(3) { transition-delay: .2s; }
#gloval-nav ul li:nth-child(4) { transition-delay: .25s; }
#gloval-nav ul li:nth-child(5) { transition-delay: .25s; }
#gloval-nav ul li:nth-child(6) { transition-delay: .3s; }
#gloval-nav ul li:nth-child(7) { transition-delay: .3s; }
#gloval-nav ul li:nth-child(8) { transition-delay: .3s; }
#gloval-nav ul li:nth-child(9) { transition-delay: .25s; }
#gloval-nav ul li:nth-child(10) { transition-delay: .25s; }
#gloval-nav ul li:nth-child(11) { transition-delay: .2s; }
#gloval-nav ul li:nth-child(12) { transition-delay: .15s; }

/* open */
.open { overflow: hidden; }
.open #nav-toggle div:after {
  display: none;
  transition: 0.6s;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav h2 {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}
.open #gloval-nav li a {
  transition: 0.6s;
}
.open #gloval-nav li a:hover {
  opacity: 0.5;
  transition: 0.6s;
}

@media screen and (max-width : 768px) { /* スマホ */
  header {
    padding: 0;
    justify-content: center;
    position: relative;
    height: 55px;
  }
  header h1 {
    width: 45%;
  }
  header h1 a {
    display: flex;
    align-items: center;
  }
  header h1 a img,
  header.fixed h1 img {
    width: 100%;
  }
  header.fixed {
    padding: 0;
  }
  .pc-nav {
    display: none;
  }
  .drawerbox {
    position: absolute;
    top: 0;
    right: 0;
  }
  #nav-toggle div {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    transition: 0.6s;
    border: 0;
  }
  .drawerbox img {
    display: none;
  }
  #nav-toggle div:after {
    font-size: 2vw;
    bottom: 0;
  }
  #nav-toggle div span:nth-child(1) { top: 15px; }
  #nav-toggle div span:nth-child(2) { top: 23px; }
  #nav-toggle div span:nth-child(3) { top: 31px; }
  .open #nav-toggle span:nth-child(1),
  .open #nav-toggle span:nth-child(2),
  .open #nav-toggle span:nth-child(3) {
    top: 30px;
  }
  #gloval-nav ul {
    width: 90%;
  }
  #gloval-nav h2 {
    width: 30%;
    margin: 0 auto 2rem auto;
  }
  #gloval-nav h2 img {
    width: 100%;
  }
  #gloval-nav ul li {
    width: 100%;
    margin: 0;
  }
  #gloval-nav ul li.ig img {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
  }
  #gloval-nav a {
    padding: 0.25rem 0;
  }
}


/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer {
  color: #ffffff;
  background-color: #6c96ca;
  display: flex;
  flex-wrap: wrap;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: 600px 334px;
  background-position: right 25vw bottom 0;
  margin-top: 4rem;
}
footer img {
  width: 100%;
}
footer div:nth-of-type(1) {
  width: 75%;
  padding: 0 0 2rem 4rem;
}
footer div:nth-of-type(1) .ul_footer {
  display: flex;
  width: 780px;
}
footer div:nth-of-type(1) .ul_footer > li {
  margin-right: 2.5rem;
}
footer div:nth-of-type(1) .ul_footer > li h2 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
footer div:nth-of-type(1) .ul_footer > li h2 span {
  font-size: 1.75rem;
  font-family: 'Open Sans', sans-serif;
  display: block;
  color: #ffffff;
}
footer div:nth-of-type(1) .ul_footer ul li {
  font-size: 0.9rem;
}
footer div:nth-of-type(1) .ul_footer ul li a {
  color: #ffffff;
  display: flex;
  align-items: center;
}
footer div:nth-of-type(1) .ul_footer ul li a:before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../images/icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: .5s;
}
footer div:nth-of-type(1) .ul_footer ul li a:hover {
  background-color: #427bba;
  transition: .5s;
}
footer div:nth-of-type(2) {
  width: 25%;
  padding: 0 4rem 2rem 2rem;
  border-left: 1px solid #ffffff;
}
footer div:nth-of-type(2) h2 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
footer div:nth-of-type(2) h2 span {
  font-size: 1.75rem;
  font-family: 'Open Sans', sans-serif;
  display: block;
  color: #ffffff;
}
footer div:nth-of-type(2) p:nth-of-type(2) {
  margin-bottom: 0;
}
footer div:nth-of-type(2) p.mail {
  margin-top: 1rem;
  margin-bottom: 0;
}
footer div:nth-of-type(2) p.mail a,
footer div:nth-of-type(2) p.ig a {
  display: flex;
  align-items: center;
  color: #ffffff;
}
footer div:nth-of-type(2) p.mail a:hover,
footer div:nth-of-type(2) p.ig a:hover {
  background-color: #427bba;
  transition: .5s;
}
footer div:nth-of-type(2) p.mail a:before {
  content: "";
  display: block;
  width: 2em;
  height: 1.5em;
  margin-right: 0.25em;
  background: url(../images/icon-mail.svg) no-repeat center center / contain;
}
footer div:nth-of-type(2) p.ig a:before {
  content: "";
  display: block;
  width: 2em;
  height: 1.5em;
  margin-right: 0.25em;
  background: url(../images/icon-ig_w.svg) no-repeat center center / contain;
}
footer small {
  display: block;
  width: 100%;
  padding: 0 5rem 2rem 5rem;
  line-height: 1.5em;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  footer {
    display: block;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: 300px 167px;
    background-position: right 0 bottom 0;
    padding-bottom: 2rem;
  }
  footer img {
    width: 200%;
    margin-bottom: 1rem;
  }
  footer h2 {
    width: 100% !important;
  }
  footer p {
    margin-bottom: 0;
  }
  footer div:nth-of-type(1) {
    display: none;
  }
  footer div:nth-of-type(2) {
    width: 100%;
    padding: 0 1rem;
    border-left: 0;
  }
  footer small {
    width: 100%;
    padding: 1rem;
  }
}

/* ----------------------------------------------------------
 Loading
---------------------------------------------------------- */
.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:rgba(108,150,202,1);
  z-index:9999;
  animation: byeShutter 2.25s forwards;
}
.shutter::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  margin:auto;
  background-color:#dbebff;
  width:0;
  height:1px;
  animation: shutterOpen1 2.25s forwards;
}
.shutter::after {
  content:'';
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  margin:auto;
  width:120%;
  height:0;
  margin-left:-10%;
  background-color:#ffffff;
  animation: shutterOpen2 2.25s forwards;
}
.content {
  animation: contentScale 2.25s forwards;
}
@keyframes byeShutter{
  70%{
    opacity:1;
  }
  100%{
    opacity:0;
    display:none;
    z-index:-1;
  }
}

@keyframes shutterOpen1{
  0%{
    width:0;
    height:1px;
  }
  50%{
    width:100%;
    height:1px;
  }
  90%{
    width:100%;
    height:100%;
  }
  100%{
    width:100%;
    height:100%;
  }
}

@keyframes shutterOpen2{
  60%{
    width:120%;
    height:0;
    transform:rotate(5deg);
  }
  90%{
    width:120%;
    height:100%;
    transform:rotate(-5deg);
  }
  100%{
    width:120%;
    height:100%;
    transform:rotate(-5deg);
  }
}

@keyframes contentScale{
  70%{
    transform:perspective(800px) scale(0.9) rotateX(15deg);
  }
  100%{
    transform:perspective(800px) scale(1) rotateX(0);
  }
}



/* ----------------------------------------------------------
 Effects
---------------------------------------------------------- */

/* fadein */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 0.75s;
}
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}

/* pagefadein */
body.page {
  animation: pageFadeIn 2s ease 0s 1 normal;
  -webkit-animation: pageFadeIn 2s ease 0s 1 normal;
}

@keyframes pageFadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

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

/* ----------------------------------------------------------
 Top
---------------------------------------------------------- */

/*　ファーストビュー
--------------------------------------------- */
.sec_first {
  width: 100%;
  padding: 0 5px;
  margin-bottom: 3rem;
}
.sec_first .main_image {
  position: relative;
  overflow: hidden;
}
.sec_first img {
  width: 100%;
}
.sec_first .main_image img.../images {
  position: relative;
  z-index: 0;  opacity: 0;
  animation: mainimage 0.5s ease 1.75s 1;
  animation-fill-mode: forwards;
}
@keyframes mainimage {
  from   { 
    opacity: 0;
    top: 0.5rem;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
.sec_first .main_image img.text {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  opacity: 0;
  animation: maintext 0.5s ease 2s 1;
  animation-fill-mode: forwards;
}
@keyframes maintext {
  from   { 
    opacity: 0;
    top: 0.5rem;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
#particles {
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 3;
}
@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_first {
    padding: 0;
  }
}


/*　INFORMATION
--------------------------------------------- */
.sec_info {
  display: flex;
  flex-wrap: wrap;
}
.sec_info article {
  width: 100%;
  padding: 4rem;
}
.sec_info article div.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.sec_info article h2 span {
  display: block;
  font-size: 3rem;
  line-height: 1.25em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.sec_info article p {
  margin-bottom: 0;
}
.sec_info article p span a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1em;
  border-radius: 0.25em;
  color: #ffffff;
  background-color: #6c96ca;
}
.sec_info article p span a:hover {
  opacity: .8;
}
.sec_info article p span a:after {
  display: block;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 3em;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
}
/* PICK UP */
.sec_info .art_pickup {
  background-color: #e3edf6;
}
.sec_info .art_pickup h2 {
  color: #6c96ca;
}
.swiper-wrap {
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.swiper-slide {
  height: initial !important;
}
.swiper-button-next {
  right: -36px !important;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22595.3px%22%20height%3D%22841.9px%22%20viewBox%3D%220%200%20595.3%20841.9%22%20enable-background%3D%22new%200%200%20595.3%20841.9%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%236c96ca%22%20d%3D%22M555.9%2C420.9L555.9%2C420.9L135%2C841.9l-40.2-40.2l380.8-380.8L94.8%2C40.2L135%2C0L555.9%2C420.9L555.9%2C420.9z%22%2F%3E%3C%2Fsvg%3E') !important;
}
.swiper-button-prev {
  left: -36px !important;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22595.3px%22%20height%3D%22841.9px%22%20viewBox%3D%220%200%20595.3%20841.9%22%20enable-background%3D%22new%200%200%20595.3%20841.9%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%236c96ca%22%20d%3D%22M39.3%2C420.9L460.3%2C0l40.2%2C40.2L119.7%2C420.9l380.8%2C380.8l-40.2%2C40.2L39.3%2C420.9L39.3%2C420.9L39.3%2C420.9z%22%2F%3E%3C%2Fsvg%3E') !important;
}
.swiper-button-prev,
.swiper-button-next {
  color: #6c96ca !important;
}
.sec_info .art_pickup ul li {
  background-color: #ffffff;
}
.sec_info .art_pickup ul li:last-child {
  border-right: 0;
}
.sec_info .art_pickup ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  transition: .5s;
}
.sec_info .art_pickup ul li a figure {
  width: 100%;
  margin-bottom: 0.5rem;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}
.sec_info .art_pickup ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.sec_info .art_pickup ul li a:hover figure img {
  transform: scale(1.1,1.1);
  transition: .5s;
}
.sec_info .art_pickup ul li a time {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 auto 0.25em auto;
  color: #6c96ca;
}
.sec_info .art_pickup ul li a h3 {
  width: calc(100% - 2rem);
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5em;
}

/* INFO */
.sec_info .art_info {
  color: #ffffff;
  background-color: #000000;
}
.sec_info .art_info ul {
  display: flex;
  flex-wrap: wrap;
}
.sec_info .art_info ul li {
  width: 25%;
  padding: 0 2rem;
  border-right: 1px solid #cccccc;
}
.sec_info .art_info ul li:last-child {
  border-right: 0;
}
.sec_info .art_info ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  padding-bottom: 1rem;
  border-bottom: 3px solid #000000;
  transition: .5s;
}
.sec_info .art_info ul li a:hover {
  border-bottom: 3px solid #6c96ca;
  transition: .5s;
}
.sec_info .art_info ul li a figure {
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}
.sec_info .art_info ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.sec_info .art_info ul li a:hover figure img {
  transform: scale(1.1,1.1);
  transition: .5s;
}
.sec_info .art_info ul li a div.cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
  line-height: 1.25em;
}
.sec_info .art_info ul li a div.cat time {
  font-family: 'Open Sans', sans-serif;
}
.sec_info .art_info ul li a div.cat span {
  color: #ffffff;
  background-color: #6c96ca;
  padding: 0.25rem 0.5em;
  border-radius: 0.25em;
  font-size: 0.85rem;
}
.sec_info .art_info ul li a div.cat span.works {
  background-color: #7cc48f;
}
.sec_info .art_info ul li a div.cat span.everydaylife {
  background-color: #e198a6;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_info {
    flex-direction: column;
  }
  .sec_info article {
    width: 100%;
    padding: 2rem 5%;
  }
  .sec_info article div.title {
    margin-bottom: 2rem;
  }
  .sec_info article h2 span {
    font-size: 8vw;
    margin-bottom: 0.25rem;
  }
  .swiper-wrap {
    width: 90%;
  }
  .sec_info .art_info ul li {
    width: 50%;
    padding: 0 1rem;
    border-right: 0;
  }
  .sec_info .art_info ul li a figure {
    margin-bottom: 0.5rem;
  }
  .sec_info .art_info ul li a div.cat {
    flex-direction: column;
    align-items: flex-start;
  }
  .sec_info .art_info ul li a div.cat span {
    display: block;
    width: 100%;
    order: 1;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .sec_info .art_info ul li a div.cat time {
    order: 2;
  }
  .sec_info article p span a {
    display: flex;
    width: 50%;
    margin: 2rem auto 1rem auto;
  }
}


/*　WORKS
--------------------------------------------- */
.sec_works {
  padding: 4rem 0 2rem 0;
}
.sec_works h2 {
  margin: 0 auto 3rem auto;
}
.sec_works h2 span {
  color: #7cc48f;
  font-size: 3.25rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-right: 1rem;
}
/* 空調設備・電気工事・自動制御設備 */
ul.works1 {
  position: relative;
  padding-bottom: 2rem;
  min-width: 1200px !important;
  margin-bottom: 4rem;
}
ul.works1 li {
  position: relative;
  z-index: 2;
}
ul.works1 li a {
  display: flex;
  align-items: flex-end;
}
ul.works1 li a .left {
  width: 60%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-left: 4rem;
}
ul.works1 li a .left .text {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}
ul.works1 li a .left .text h3 {
  font-size: 1.75rem;
  margin-right: 3rem;
  width: 180px;
  position: relative;
}
ul.works1 li a .left .text h3:before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #7cc48f;
  opacity: 0;
  transition: .5s;
  position: absolute;
  left: 0;
  bottom: -5px;
}
ul.works1 li a:hover .left .text h3:before {
  opacity: 1;
}
ul.works1 li a .left .text h3 span {
  display: block;
  color: #7cc48f;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
ul.works1 li a .left .text p {
  margin-bottom: 0;
}
ul.works1 li a .left .text p.des {
  line-height: 1.75em;
  width: 235px;
  margin-right: 2rem;
}
ul.works1 li a .left .text p.more {
  border-bottom: 1px solid #7cc48f;
}
ul.works1 li a .left div.daikin {
  position: relative;
  width: 100%;
  padding-top: 2rem;
  background-color: #faf5ec;
}
ul.works1 li a .left div.daikin:after {
  content: "";
  position: absolute;
  left: -4rem;
  top: 0;
  display: block;
  width: 150vw;
  height: calc(100% + 2rem);
  background-color: #faf5ec;
}
ul.works1 li a .left div.daikin img {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  padding: 0.5rem 100px;
  width: 100%;
  max-width: 550px;
}
ul.works1 li a .right {
  width: 40%;
  position: relative;
  z-index: 3;
}
ul.works1 li a .right figure {
  overflow: hidden;
}
ul.works1 li a .right figure img {
  width: 100%;
  transition: .5s;
}
ul.works1 li a:hover .right figure img {
  transform: scale(1.1,1.1);
  transition: .5s;
}
/* FA・システム開発,融雪・床暖房工事 */
ul.works2 {
  display: flex;
  position: relative;
  padding-bottom: 2rem;
  min-width: 1200px !important;
}
ul.works2:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-color: #faf5ec;
}
ul.works2 li {
  width: 50%;
}
ul.works2 li a {
  display: flex;
}
ul.works2 li a figure {
  width: 45%;
  overflow: hidden;
}
ul.works2 li a figure img {
  width: 100%;
  transition: .5s;
}
ul.works2 li a:hover figure img {
  transform: scale(1.1,1.1);
  transition: .5s;
}
ul.works2 li a div {
  width: 55%;
}
ul.works2 li a div h3 {
  font-size: 1.75rem;
  padding: 1rem 2rem;
  background-color: #ffffff;
  position: relative;
}
ul.works2 li a div h3:after {
  content: "";
  display: block;
  width: calc(100% - 4rem);
  height: 3px;
  background-color: #7cc48f;
  position: absolute;
  left: 2rem;
  bottom: 0;
  opacity: 0;
  transition: .5s;
}
ul.works2 li a:hover div h3:after {
  opacity: 1;
  transition: .5s;
}
ul.works2 li:first-child div h3:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 50%;
  background-color: #ffffff;
}
ul.works2 li div h3 span {
  display: block;
  color: #7cc48f;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
ul.works2 li div p {
  margin-bottom: 0;
  margin: 0 2rem;
}
ul.works2 li div p.des {
  line-height: 1.75em;
  padding-top: 1em;
  margin-bottom: 1em;
}
ul.works2 li div p.more {
  display: inline-block;
  border-bottom: 1px solid #7cc48f;
}
.sec_works p.fron {
  margin-top: 4rem;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_works {
    padding: 2rem 0 0 0;
  }
  .sec_works h2 {
    width: 90%;
    margin: 0 auto 1.5rem auto;
  }
  .sec_works h2 span {
    display: block;
    font-size: 8vw;
    margin-bottom: 0.25rem;
  }
  ul.works1 {
    width: 90%;
    min-width: initial !important;
    margin: 0 auto;
  }
  ul.works1 li a {
    flex-direction: column;
    align-items: initial;
  }
  ul.works1 li a .left {
    padding-left: 0;
    width: 100%;
  }
  ul.works1 li a .left .text {
    display: block;
    padding-bottom: 1rem;
  }
  ul.works1 li a .left .text h3 {
    font-size: 6vw;
    margin-right: 0;
    width: 100%;
    padding: 0;
  }
  ul.works1 li a .left .text h3 span {
    margin-top: 0;
  }
  ul.works1 li a .left .text p.des {
    width: 100%;
  }
  ul.works1 li a .left .text p.more {
    display: inline-block;
  }
  ul.works1 li a .left div.daikin {
    background-color: #ffffff;
    padding-top: 0;
  }
  ul.works1 li a .left div.daikin img {
    border: 1px solid #cccccc;
  }
  ul.works1 li a .left div.daikin:after {
    content: none;
  }
  ul.works1 li a .right {
    width: 100%;
  }
  ul.works2 {
    padding-bottom: 0;
  }
  ul.works2:before {
    content: none;
  }
  ul.works2 li a div h3 {
    font-size: 6vw;
    margin-right: 0;
    width: 100%;
    padding: 0;
  }
  ul.works2 li a div h3 span {
    margin-top: 0;
  }
  ul.works2 {
    min-width: initial !important;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  ul.works2 li {
    width: 100%;
    margin-bottom: 2rem;
  }
  ul.works2 li a {
    flex-direction: column;
  }
  ul.works2 li a div {
    order: 1;
    width: 100%;
    margin-bottom: 1rem;
  }
  ul.works2 li a figure {
    order: 2;
    width: 100%;
  }
  ul.works2 li div p {
    margin: 0 !important;
  }
  ul.works2 li div p.des {
    padding-top: 0;
  }
  .sec_works p.fron {
    margin-top: 0;
  }
}


/*　SPECIAL
--------------------------------------------- */
.sec_special {
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  background-color: #000000;
}
.sec_special article {
  width: 50%;
  padding: 4rem;
}
.sec_special article h2 {
  margin-bottom: 1rem;
}
.sec_special article h2 span {
  display: block;
  font-size: 3rem;
  line-height: 1.25em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

/* covid, hyddro */
.sec_special .art_covid {
  background-image: url(../images/covid.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.sec_special .art_covid:after {
  content: "共同研究";
  position: absolute;
  right: 2em;
  top: 2em;
  border: 2px solid #fff;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
}
.sec_special .art_hydro {
  background-image: url(../images/hydro.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.sec_special .art_hydro:after {
  content: "発電中";
  position: absolute;
  right: 2em;
  top: 2em;
  border: 2px solid #fff;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
}
.sec_special .art_covid a,
.sec_special .art_hydro a {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 3px solid rgba(00,00,00,0);
}
.sec_special .art_covid a:hover,
.sec_special .art_hydro a:hover {
  border-bottom: 3px solid #6c96ca;
}
.sec_special .art_covid h3,
.sec_special .art_hydro h3 {
  font-size: 1.5rem;
  line-height: 1.5em;
}
.sec_special .art_covid h3 span,
.sec_special .art_hydro h3 span {
  display: block;
  font-size: 0.9rem;
}
.sec_special .art_covid h3 span:nth-of-type(1),
.sec_special .art_hydro h3 span:nth-of-type(1) {
  margin-top: 2rem;
}
@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_special {
    flex-direction: column;
  }
  .sec_special article {
    width: 100%;
    padding: 2rem 5%;
  }
  .sec_special article h2 span {
    font-size: 8vw;
    margin-bottom: 0.25rem;
  }
  .sec_special .art_covid:after,
  .sec_special .art_hydro:after {
    right: 1em;
    top: 1em;
    font-size: 0.9rem;
  }
}


/* ABOUT US
--------------------------------------------- */
.sec_about {
  padding: 4rem 0;
}
.sec_about h2 {
  margin: 0 auto 3rem auto;
}
.sec_about h2 span {
  display: block;
  color: #6c96ca;
  font-size: 3.25rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.sec_about ul {
  display: flex;
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
  min-width: 1200px !important;
}
.sec_about ul:before {
  content: "";
  display: block;
  width: 100vw;
  height: 60%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-color: #faf5ec;
}
.sec_about ul li {
  width: 30%;
  margin-left: 3%;
  background-color: #ffffff;
  box-shadow: 3px 3px 3px #cccccc;
}
.sec_about ul li a {
  border-bottom: 3px solid #ffffff;
  transition: .5s;
}
.sec_about ul li a:hover {
  border-bottom: 3px solid #6c96ca;
  transition: .5s;
}
.sec_about ul li a figure {
  width: 100%;
  overflow: hidden;
}
.sec_about ul li a figure img {
  width: 100%;
  transition: .5s;
}
.sec_about ul li a:hover figure img {
  transform: scale(1.1,1.1);
  transition: .5s;
}
.sec_about ul li a h3 {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}
.sec_about ul li a h3 span {
  display: block;
  color: #6c96ca;
  font-size: 0.8rem;
  line-height: 1em;
  margin-top: 0.5rem;
}
.sec_about ul li a p {
  padding: 0 2rem 1rem 2rem;
}
.sec_about div.contact {
  display: flex;
  justify-content: center;
}
.sec_about div.contact a {
  display: inline-block;
  width: initial !important;
  padding: 1rem 4rem;
  margin-top: 3rem;
  color: #ffffff;
  background-color: #7cc48f;
}
.sec_about div.contact a:hover {
  opacity: 0.7;
}
.sec_about div.contact a div {
  display: flex;
  align-items: center;
}
.sec_about div.contact a div::before {
  content: "";
  display: block;
  width: 4rem;
  height: 3rem;
  margin-right: 1em;
  background: url(../images/icon-contact.svg) no-repeat center center / contain;
}
.sec_about div.contact a p {
  font-size: 1.25rem;
  line-height: 1em;
  margin-bottom: 0;
}
.sec_about div.contact a span {
  position: relative;
  display: block;
  margin-top: 0.25em;
  font-size: 0.9rem;
}
.sec_about div.contact a span:after {
  content: "";
  display: block;
  width: 2.5em;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
}


@media screen and (max-width : 768px) { /* Smart Phone*/
  .sec_about {
    padding: 3rem 0;
  }
  .sec_about h2 {
    width: 90%;
    margin: 0 auto 1.5rem auto;
  }
  .sec_about h2 span {
    display: block;
    font-size: 8vw;
    margin-bottom: 0.25rem;
  }
  .sec_about ul {
    padding: 0 5%;
    min-width: initial !important;
    flex-direction: column;
  }
  .sec_about ul li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .sec_about ul li a h3 {
    padding: 1rem;
  }
  .sec_about ul li a p {
    padding: 0 1rem 1rem 1rem;
  }
  .sec_about div.contact {
    width: 90%;
    margin: 1rem auto 0 auto;
  }
  .sec_about div.contact a {
    display: block;
    width: 100% !important;
    padding: 1rem 0;
  }
  .sec_about div.contact a div {
    justify-content: center;
  }
}


/* ----------------------------------------------------------
 Page Common
---------------------------------------------------------- */
body.page main {
  position: relative;
  padding-top: 4rem;
}
body.page main:before {
  content: "";
  display: block;
  width: calc(100% - 4rem);
  height: 2px;
  background-color: #333333;
  position: absolute;
  left: 2rem;
  top: 0;
}
body.page h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}
body.page h2 span {
  display: block;
  color: #6c96ca;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
body.page h2 span.blue {
  color: #6c96ca;
}
body.page h2 span.green {
  color: #7cc48f;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  body.page main {
    padding-top: 2rem;
  }
  body.page h2 {
    font-size: 6vw;
    width: 90%;
    margin: 0 auto 1rem auto;
  }
  body.page h2 span {
    margin-top: 0;
    line-height: 1.5em;
  }
}



/* ----------------------------------------------------------
 Company
---------------------------------------------------------- */

/* 私たちの事業 */
article.aboutus {
  margin-bottom: 4rem;
}

/* 会社概要 */
article.gaiyou {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
article.gaiyou dl {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
}
article.gaiyou dl dt {
  width: 25%;
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}
article.gaiyou dl dd {
  width: 75%;
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}
article.gaiyou:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  background-color: #faf5ec;
}

/* 営業所一覧 */
article.access {
  padding: 4rem 0;
}
article.access ul {
  margin: 1rem auto;
}
article.access ul li {
  display: flex;
  padding: 2rem;
  border-bottom: 1px solid #ccc;
}
article.access ul li:last-child {
  border-bottom: 0;
}
article.access ul li figure {
  width: 33%;
}
article.access ul li figure img {
  width: 100%;
}
article.access ul li p {
  display: flex;
  align-items: center;
  width: calc(100% - 66%);
  margin-bottom: 0;
  padding: 0 1em;
}
article.access ul li div {
  width: 33%;
}
article.access ul li div iframe {
  width: 100% !important;
  height: 100% !important;
}
article.access + .shikaku dl {
  border-top: 2px solid #cccccc;
  padding-top: 2rem;
}

/* 主要取扱メーカー一覧 */
.sec_maker {
  background-color: #faf5ec;
  padding: 4rem 2rem;
  margin-top: 4rem;
  position: relative;
}
.sec_maker:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-color: #faf5ec;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  article.aboutus p {
    width: 90%;
    margin: 1rem auto;
  } 
  article.gaiyou dl {
    width: 90%;
    margin: 1rem auto;
  }
  article.access ul li {
    flex-direction: column;
  }
  article.access ul li figure {
    width: 100%;
  }
  article.access ul li figure img {
    width: 100%;
  }
  article.access ul li p {
    width: 100%;
    padding: 1em 0;
  }
  article.access ul li div {
    width: 100%;
    height: 150px;
  }
  article.shikaku {
    width: 90%;
    margin: 0 5%;
  }
  .sec_maker {
    margin-top: 2rem;
    padding: 2rem 5%;
  }
  .sec_maker h2 {
    width: 100% !important;
  }
}



/* ----------------------------------------------------------
 Works
---------------------------------------------------------- */

main.works article.des {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
main.works article.des figure {
  width: 60%;
}
main.works article.des figure img {
  width: 100%;
}
main.works article.des div.des {
  width: 40%;
  padding-left: 4rem;
}
main.works article.des div.des h3 {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-bottom: 1em;
}
main.works article.des div.image {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  align-items: flex-start;
}
main.works article.des div.image img {
  width: 31%;
}


main.works article.des2 figure {
  order: 2;
}
main.works article.des2 div.des {
  padding-left: 0;
  padding-right: 4rem;
  order: 1;
}
main.works article.des2 div.image {
  order: 3;
}

/* お役立ち実例 */
.sec_ex {
  padding: 4rem 0;
  background-color: #faf5ec;
}
.sec_ex article.wrap {
  display: flex;
  flex-wrap: wrap;
}
article.wrap > div {
  width: 35%;
}
article.wrap > div h3 {
  font-size: 1.5rem;
  color: #6c96ca;
  margin-bottom: 1em;
}
article.wrap > div h3 + p {
  font-size: 1.25rem;
}
.sec_ex ul {
  display: flex;
  margin-bottom: 2rem;
}
.sec_ex ul:nth-of-type(1) {
  width: 65%;
  justify-content: flex-end;
}
.sec_ex ul:nth-of-type(2) {
  width: 100%;
  justify-content: flex-start;
  margin-top: 2rem;
}
.sec_ex ul li {
  width: 25vw;
  background-color: #ffffff;
  box-shadow: 3px 3px 3px #cccccc;
  display: flex;
  flex-wrap: wrap;
}
.sec_ex ul:nth-of-type(1) li:nth-child(1),
.sec_ex ul:nth-of-type(2) li:nth-child(1),
.sec_ex ul:nth-of-type(2) li:nth-child(2) {
  margin-right: 2rem;
}
.sec_ex ul li figure.main,
.sec_ex ul li figure.main img {
  width: 100%;
}
.sec_ex ul li div {
  padding: 1.5rem 1rem 2rem 1rem;
  width: 70%;
}
.sec_ex ul li div h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.sec_ex ul li div p {
  margin-bottom: 0;
}
.sec_ex ul li figure.thumb {
  width: 30%;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}
.sec_ex ul li figure.thumb img {
  width: 100%
}
p.fron a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
p.fron a img {
  width: 1000px;
  margin: 1rem auto;
}
p.fron a:hover {
  opacity: 0.7;
}

/* ご発注の流れ */
.sec_order {
  padding: 3rem 0;
}
.sec_order .hacchu {
  margin-bottom: 4rem;
}
.sec_order .hacchu h3 {
  font-size: 2.5rem !important;
  font-weight: bold;
}
.sec_order .hacchu h3 span {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #000000;
  padding-top: 0.5rem;
}
.sec_order .hacchu {
  width: 100%;
}
.sec_order .hacchu ul {
  display: flex;
  justify-content: space-between;
  min-width: 1260px;
}
.sec_order .hacchu ul li {
  width: 22%;
  padding: 1rem;
  border: 2px solid #6c96ca;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sec_order .hacchu ul li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5px 0 12.5px 20px;
  border-color: transparent transparent transparent #6c96ca;
  position: absolute;
  top: 50%;
  right: -14%;
  margin-top: -12.5px;
}
.sec_order .hacchu ul li:last-child:after {
  content: none;
}
.sec_order .hacchu ul li h4 {
  font-size: 1.25rem;
  color: #6c96ca;
  border-bottom: 1px solid #6c96ca;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.sec_order .hacchu ul li p {
  text-align: left;
}
.sec_order .hacchu ul li figure {
  width: 100%;
  margin-top: auto;
  position: relative;
}
.sec_order .hacchu ul li figure img {
  width: 100%;
}
.sec_order .hacchu ul li figcaption {
  position: absolute;
  width: 100%;
  height: 2em;
  left: 0;
  bottom: 0;
  color: #ffffff;
  background-color: rgba(00,00,00,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* レトロフィットメンテナンスプラン */
.sec_order .retro {
  width: 90%;
  margin: 1rem auto;
  border: 1px solid rgba(12, 115, 182, 1);
}
.sec_order .retro h3 {
  color: #ffffff;
  background-color: rgba(12, 115, 182, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0, 0, 0, 0.1) 4px, rgba(0, 0, 0, 0.1) 8px );
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.5em;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.sec_order .retro .taisho {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  margin: 1rem;
}
.sec_order .retro .taisho:before {
  content: "対象";
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  color: #ffffff;
  background-color: #c30d23;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.sec_order .retro .taisho h4 {
  font-weight: bold;
  font-size: 1.75rem;
  text-align: center;
}
.sec_order .retro .taisho h4 span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  padding-top: 0.25rem;
}
.sec_order .retro .taisho + p {
  font-size: 1rem;
  padding: 0.5rem;
  margin: 1rem;
  text-align: center;
  background-color: #efefef;
}
.sec_order .retro dl {
  margin: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.sec_order .retro dl dt {
  width: 25%;
  padding: 0.5rem;
  border-bottom: 1px solid #cccccc;
}
.sec_order .retro dl dd {
  width: 75%;
  padding: 0.5rem;
  border-bottom: 1px solid #cccccc;
}
.sec_order .retro dl dd span {
  color: #c30d23;
}
.sec_order .retro dl + p {
  background-color: #f3e929;
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5em;
  height: 70px;
  width: calc(100% - 2rem - 25px);
  margin-left: 1rem;
  box-sizing: border-box !important;
  display: flex;
  align-items: center;
}
.sec_order .retro dl + p a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #c30d23;
  position: absolute;
  top: 0;
  right: 0;
  width: 8em;
  height: 100%;
  padding: 0 1rem;
  font-size: 1.5rem;
}
.sec_order .retro dl + p a:hover {
  color: rgba(255,255,255,0.6);
}
.sec_order .retro dl + p a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 25px;
  border-color: transparent transparent transparent #c30d23;
  position: absolute;
  top: 0;
  right: -25px;
}
.sec_order .retro .retro-contact {
  display: flex;
  align-items: center;
  background-color: #faf5ec;
  padding: 1rem;
  margin: 1rem;
}
.sec_order .retro .retro-contact img {
  background-color: #ffffff;
  padding: 0.5rem;
  width: 20%;
  margin-right: 1rem;
}
.sec_order .retro .retro-contact p {
  width: 80%;
  font-size: 1.75rem;
  line-height: 1.5em;
  font-weight: 500;
  margin-bottom: 0;
}

/* 仕事を知る */
main.works .kenshu > div {
  margin-bottom: 4rem;
  display: flex;
  position: relative;
}
main.works .kenshu > div div {
  position: relative;
  z-index: 1;
}
main.works .kenshu div ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
main.works .kenshu div ul li {
  width: 25vw;
  background-color: #ffffff;
  box-shadow: 3px 3px 3px #cccccc;
}
main.works .kenshu div ul li figure {
  width: 100%;
}
main.works .kenshu div ul li figure img {
  width: 100%;
}
main.works .kenshu div ul li dl {
  padding: 1.5rem;
}
main.works .kenshu div ul li dl dt {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
main.works .kenshu .div01 ul li,
main.works .kenshu .div03 ul li {
  margin-left: 2rem;
}
main.works .kenshu .div02 ul li,
main.works .kenshu .div04 ul li {
  margin-right: 2rem;
}
main.works .kenshu .div01 {
  padding-left: 2rem;
}
main.works .kenshu .div01 div {
  width: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.works .kenshu .div01 div h3 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
main.works .kenshu .div01 ul {
  width: 70vw;
  justify-content: flex-end;
}
main.works .kenshu .div01:after,
main.works .kenshu .div03:after {
  content: "";
  display: block;
  width: 100vw;
  height: 60%;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  background-color: #faf5ec;
}
main.works .kenshu .div02:after,
main.works .kenshu .div04:after {
  content: "";
  display: block;
  width: 100vw;
  height: 60%;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  background-color: #faf5ec;
}
main.works .kenshu .div03 ul,
main.works .kenshu .div03 {
  justify-content: flex-end;
}
main.works .kenshu .div04 ul {
  width: 30vw;
}
main.works .kenshu .div04 div {
  width: calc(100% - 30vw);
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #6c96ca;
}
main.works .kenshu .div04 div h3 {
  font-size: 1.25rem;
  margin-bottom: 1em;
}
main.works .kenshu .div04 div p.link {
  margin-top: 1rem;
}
main.works .kenshu .div04 div p.link a {
  color: #ffffff;
  background-color: #6c96ca;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
}
main.works .kenshu .div04 div p.link a:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon-mail.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}
main.works .kenshu .div04 div p.link a:hover {
  background-color: #427bba;
  transition: .5s;
}


@media screen and (max-width : 768px) { /* Smart Phone*/
  main.works article.des {
    flex-direction: column;
  }
  main.works article.des figure {
    width: 100%;
    margin-bottom: 1rem;
  }
  main.works article.des div.des {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    margin: 1rem auto;
  }
  main.works article.des div.image {
    width: 90%;
    margin: 0 auto;
  }
  .sec_ex article.wrap {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  article.wrap > div {
    width: 100%;
  }
  .sec_ex ul {
    flex-direction: column;
    margin-bottom: 0;
  }
  .sec_ex ul:nth-of-type(1) {
    width: 100%;
  }
  .sec_ex ul:nth-of-type(2) {
    margin-top: 0;
  }
  .sec_ex ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  p.fron a img {
    width: 90%;
    margin: 1rem auto;
  }
  .sec_order {
    padding: 3rem 5%;
  }
  .sec_order .hacchu ul {
    min-width: initial;
    flex-direction: column;
  }
  .sec_order .hacchu ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .sec_order .hacchu ul li:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 1.25rem solid #6c96ca;
    border-right: 1rem solid transparent;
    border-left: 1rem solid transparent;
    position: absolute;
    top: initial;
    right: 50%;
    margin-right: -0.5rem;
    margin-top: 0;
    bottom: -2.5rem;
  }
  .sec_order .retro {
    width: 100%;
  }
  .sec_order .retro h3 {
    font-size: 5.5vw;
    text-align: left;
    padding: 0.5rem;
  }
  .sec_order .retro .taisho {
    flex-direction: column;
  }
  .sec_order .retro .taisho:before {
    width: 100%;
    height: initial;
    font-size: 1rem;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .sec_order .retro .taisho h4 {
    font-size: 6vw;
    text-align: left;
  }
  .sec_order .retro .taisho + p {
    text-align: left;
  }
  .sec_order .retro dl dt {
    width: 100%;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .sec_order .retro dl dd {
    width: 100%;
  }
  .sec_order .retro dl + p {
    display: block;
    width: 90%;
    height: initial;
    margin: 2rem auto;
  }
  .sec_order .retro dl + p a {
    position: relative;
    width: 100%;
    margin: 4.5vw 0;
    padding: 0.5rem 0;
    font-size: 1.25rem;
  }
  .sec_order .retro dl + p a:after {
    content: none;
  }
  .sec_order .retro .retro-contact {
    flex-direction: column;
  }
  .sec_order .retro .retro-contact img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .sec_order .retro .retro-contact p {
    width: 100%;
    font-size: 6vw;
  }
  main.works .kenshu > div {
    flex-direction: column;
    margin-bottom: 0;
    padding: 0 5%;
  }
  main.works .kenshu .div01 {
    padding: 0 5%;
  }
  main.works .kenshu .div01 div {
    width: 100%;
  }
  main.works .kenshu .div01 div h3 {
    font-size: 1.5rem;
    line-height: 1.5em;
    margin: 1rem 0 1.5rem 0;
  }
  main.works .kenshu div ul {
    flex-direction: column;
    margin-bottom: 0;
  }
  main.works .kenshu .div01 ul {
    width: 100%;
  }
  main.works .kenshu div ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  main.works .kenshu .div01 ul li, 
  main.works .kenshu .div03 ul li {
    margin-left: 0;
  }
  main.works .kenshu .div01:after {
    content: "";
    display: block;
    width: 100vw;
    height: 70%;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    background-color: #faf5ec;
  }
  main.works .kenshu .div02:after,
  main.works .kenshu .div03:after,
  main.works .kenshu .div04:after {
    content: none;
  }
  main.works .kenshu .div02,
  main.works .kenshu .div03,
  main.works .kenshu .div04 {
    background-color: #faf5ec;
  }
  main.works .kenshu .div04 ul {
    width: 100%;
  }
  main.works .kenshu .div04 div {
    width: 100vw;
    position: relative;
    left: -5%;
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #6c96ca;
  }
  main.works .kenshu .div04 div p.link a {
    width: 100%;
  }
}

/* ----------------------------------------------------------
 仕事を頼む
---------------------------------------------------------- */
/* タイトル */
main.request .request {
  display: flex;
  margin-bottom: 4rem;
}
main.request .request .left {
  width: 55%;
  padding-right: 3rem;
}
main.request .request .left h3 {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-bottom: 2em;
}
main.request .request .left figure {
  width: 100%;
  margin-bottom: 2rem;
}
main.request .request .left figure img {
  width: 100%;
}
main.request .request figure {
  width: 45%;
}
main.request .request figure img {
  width: 100%;
}
main.request .request h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* 工程・記録 */
main.request .kiroku > div {
  margin-bottom: 4rem;
  display: flex;
  position: relative;
}
main.request .kiroku div ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
main.request .kiroku div ul li {
  width: 25vw;
  background-color: #ffffff;
  box-shadow: 3px 3px 3px #cccccc;
}
main.request .kiroku div ul li figure {
  width: 100%;
}
main.request .kiroku div ul li figure img {
  width: 100%;
}
main.request .kiroku div ul li dl {
  padding: 1.5rem;
}
main.request .kiroku div ul li dl dt {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
main.request .kiroku .div01 ul li,
main.request .kiroku .div03 ul li {
  margin-left: 2rem;
}
main.request .kiroku .div02 ul li,
main.request .kiroku .div04 ul li {
  margin-right: 2rem;
}
main.request .kiroku .div01:after,
main.request .kiroku .div03:after {
  content: "";
  display: block;
  width: 100vw;
  height: 60%;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  background-color: #faf5ec;
}
main.request .kiroku .div02:after {
  content: "";
  display: block;
  width: 100vw;
  height: 60%;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  background-color: #faf5ec;
}
main.request .kiroku .div03 ul,
main.request .kiroku .div03 {
  justify-content: flex-end;
}
main.request .kiroku .link_works {
  width: 990px;
  margin: 2rem auto;
}
main.request .kiroku .link_works a {
  display: flex;
  border: 2px solid #6c96ca;
}
main.request .kiroku .link_works a:hover {
  opacity: .7;
}
main.request .kiroku .link_works a figure {
  width: calc(100% / 3);
}
main.request .kiroku .link_works a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.request .kiroku .link_works a div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc((100% / 3) * 2);
  padding: 0.5rem 1.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
}
main.request .kiroku .link_works a div h3 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.5em;
}
main.request .kiroku .link_works a div p:nth-of-type(1) {
  margin: 0.5em auto;
  font-size: 1.25rem;
  font-weight: 500;
}
main.request .kiroku .link_works a div p:nth-of-type(1) span {
  padding: 0.25em 0.5em;
  margin-right: 0.5em;
  border-radius: 0.25em;
  color: #ffffff;
  background-color: #7cc48f;
}
main.request .kiroku .link_works a div p:nth-of-type(2) {
  font-size: 0.9rem;
}

/* ご発注の流れ */
main.request .flow {
  position: relative;
  margin: 4rem auto;
  padding: 2rem 0;
  background-color: #fbe054;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
}
main.request .flow:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  background-color: #fbe054;
  transform: translateX(-50%);
}
main.request .flow h3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #6c96ca;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1em;
}
main.request .flow h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 8px;
  background-color: #6c96ca;
}
main.request .flow h3 span {
  margin-bottom: 0.25em;
  color: #000000;
  font-size: 2rem;
  line-height: 1em;
}
main.request .flow ul {
  display: flex;
  justify-content: space-between;
  min-width: 1000px;
}
main.request .flow ul li {
  width: 22%;
  padding: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
main.request .flow ul li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #6c96ca;
  position: absolute;
  top: 50%;
  right: -14%;
  margin-top: -25px;
}
main.request .flow ul li:last-child:after {
  content: none;
}
main.request .flow ul li h4 {
  margin-bottom: 0.5rem;
  padding: 0.125rem 0;
  color: #ffffff;
  background-color: #6c96ca;
  text-align: center;
  font-size: 1.125rem;
}
main.request .flow ul li p {
  text-align: left;
  line-height: 1.5em;
}

/* お問い合わせ */
main.request .contact figure {
  display: flex;
  justify-content: space-between;
}
main.request .contact figure img {
  width: 32%;
  height: auto;
}
main.request .contact .flex {
  display: flex;
  margin: 2rem auto;
}
main.request .contact .flex .left {
  width: 32%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
main.request .contact .flex .left .link a {
  color: #ffffff;
  background-color: #6c96ca;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
}
main.request .contact .flex .left .link a:hover {
  background-color: #427bba;
  transition: .5s;
}
main.request .contact .flex .left .link a:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon-mail.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 0.5rem;
}
main.request .contact .flex > p {
  padding-left: 2rem;
  font-size: 1.125rem;
  color: #6c96ca;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  main.request .request {
    flex-direction: column;
    padding: 0 5%;
  }
  main.request .request .left {
    width: 100%;
    padding-right: 0;
  }
  main.request .request .left h3 {
    font-size: 1.125rem;
  }
  main.request .request figure {
    width: 100%;
  }
  main.request .kiroku > div {
    flex-direction: column;
    margin-bottom: 0;
    padding: 0 5%;
  }
  main.request .kiroku .div01 {
    padding: 0 5%;
  }
  main.request .kiroku .div01 div {
    width: 100%;
  }
  main.request .kiroku .div01 div h3 {
    font-size: 1.5rem;
    line-height: 1.5em;
    margin: 1rem 0 1.5rem 0;
  }
  main.request .kiroku div ul {
    flex-direction: column;
    margin-bottom: 0;
  }
  main.request .kiroku .div01 ul {
    width: 100%;
  }
  main.request .kiroku div ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  main.request .kiroku .div01 ul li, 
  main.request .kiroku .div03 ul li {
    margin-left: 0;
  }
  main.request .kiroku .div01:after {
    content: "";
    display: block;
    width: 100vw;
    height: 90%;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    background-color: #faf5ec;
  }
  main.request .kiroku .div02:after,
  main.request .kiroku .div03:after {
    content: none;
  }
  main.request .kiroku .div02,
  main.request .kiroku .div03 {
    background-color: #faf5ec;
  }
  main.request .kiroku .link_works {
    width: 100%;
  }
  main.request .kiroku .link_works a {
    flex-direction: column;
  }
  main.request .kiroku .link_works a figure {
    width: 100%;
  }
  main.request .kiroku .link_works a div {
    width: 100%;
  }
  main.request .kiroku .link_works a div h3 {
    font-size: 1.25rem;
  }
  main.request .kiroku .link_works a div p:nth-of-type(1) {
    font-size: 1rem;
  }
  main.request .flow {
    margin: 3rem auto;
    padding: 2rem 5%;
  }
  main.request .flow h3 {
    border-bottom: 2px solid #6c96ca;
    flex-direction: column;
    font-size: 2rem;
  }
  main.request .flow h3:after {
    content: none;
  }
  main.request .flow h3 span {
     margin: 0.25em 0 0.5em 0;
    font-size: 1rem;
  }
  main.request .flow ul {
    min-width: initial;
    flex-direction: column;
  }
  main.request .flow ul li {
    width: 100%;
    margin-bottom: 2rem;
  }
  main.request .flow ul li:last-child {
    margin-bottom: 0;
  }
  main.request .flow ul li:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 1.25rem solid #6c96ca;
    border-right: 1rem solid transparent;
    border-left: 1rem solid transparent;
    position: absolute;
    top: initial;
    right: 50%;
    margin-right: -0.5rem;
    margin-top: 0;
    bottom: -2.5rem;
  }
  main.request .contact .flex {
    flex-direction: column;
    padding: 0 5%;
  }
  main.request .contact .flex .left {
    order: 2;
    width: 100%;
    justify-content: center;
  }
  main.request .contact .flex > p {
    order: 1;
    padding: 0;
  }
}


/* ----------------------------------------------------------
 Covid-19
---------------------------------------------------------- */
main.covid section h2 {
  font-size: 2rem;
  line-height: 1.25em;
}
main.covid section h2 span.blue {
  font-size: 1rem;
}
main.covid article h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid #cccccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
main.covid article h4 {
  font-size: 1.15rem;
  color: #6c96ca;
  margin-bottom: 1em;
}

/* 導入 
-------------------------*/
main.covid .art01 {
  padding: 3rem 3rem 3rem 0;
  position: relative;
  background-color: #faf5ec;
}
main.covid .art01:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  background-color: #faf5ec;
}
main.covid .art01 .div01 {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
main.covid .art01 .div01 figure {
  width: 35%;
}
main.covid .art01 .div01 figure img {
  width: 100%;
}
main.covid .art01 .div01 div {
  width: 65%;
  padding-left: 2rem;
}
main.covid .art01 .div02 {

  position: relative;
    z-index: 1;
}
main.covid .art01 .div02 p a {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  width: initial;
  display: initial;
  border-radius: 0.5rem;
}
main.covid .art01 .div02 p a:hover {
  color: #6c96ca;
}

/* 実験
-------------------------*/
main.covid .art02 {
  padding: 3rem 0;
}
main.covid .art02 .div01 {
  display: flex;
  margin: 2rem auto;
}
main.covid .art02 .div01 div:nth-of-type(1) {
  width: 60%;
  padding-right: 2rem;
}
main.covid .art02 .div01 div:nth-of-type(1) p.caution {
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #faf5ec;
}
main.covid .art02 .div01 div:nth-of-type(2) {
  width: 40%;
}
main.covid .art02 .div01 div:nth-of-type(2) figure {
  width: 100%;
  position: relative;
}
main.covid .art02 .div01 figure figcaption {
  color: #ffffff;
  background-color: rgba(00,00,00,0.6);
  padding: 1rem 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
main.covid .art02 .div01 figure img {
  width: 100%;
  line-height: 0;
}
main.covid .art02 .div02 {
  display: flex;
  padding: 2rem;
  background-color: #e3edf6;
  border-radius: 1rem;
}
main.covid .art02 .div02 h4 {
  margin-bottom: 0.5rem;
}
main.covid .art02 .div02 div:nth-of-type(1) {
  width: 40%;
}
main.covid .art02 .div02 div:nth-of-type(1) figure,
main.covid .art02 .div02 div:nth-of-type(1) figure img {
  width: 100%;
}
main.covid .art02 .div02 div:nth-of-type(2) {
  width: 60%;
  padding-left: 3rem;
}
main.covid .art02 .div02 .smpscroll {
  width: 100% !important;
  padding: 0 !important;
}
main.covid .art02 .div02 table {
  width: 100%;
}
main.covid .art02 .div02 table:nth-of-type(1) {
  margin-bottom: 2rem;
}
main.covid .art02 .div02 table thead  {
  color: #ffffff;
  background-color: #6990c0;
  text-align: center;
}
main.covid .art02 .div02 table thead td {
  padding: 0.25rem 0.5rem;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
main.covid .art02 .div02 table thead td:last-of-type {
  border-right: 1px solid #6990c0;
}
main.covid .art02 .div02 table tbody td {
  background-color: #ffffff;
  padding: 0.25rem 0.5rem;
  border: 1px solid #6990c0;
}
main.covid .art02 .div02 table tbody td.title {
  background-color: #b5cbe0;
}
main.covid .art02 .div02 table:nth-of-type(2) tbody td {
  text-align: center;
}
main.covid .art02 .div02 table:nth-of-type(2) tbody td.title {
  text-align: left;
}

/* 実験結果
-------------------------*/
main.covid .art03 {
  margin: 1rem auto 4rem auto;
}
main.covid .art03 ul {
  display: flex;
  margin: 2rem auto 3rem auto;
}
main.covid .art03 ul li {
  width: 48%;
}
main.covid .art03 ul li:first-child {
  margin-right: 4%;
}
main.covid .art03 ul li p {
  margin-bottom: 0;
}
main.covid .art03 ul li figure,
main.covid .art03 ul li figure img {
  width: 100%;
}
main.covid .art03 div {
  margin: 2rem auto;
  padding: 2rem;
  background-color: #e3edf6;
  border-radius: 1rem;
}
main.covid .art03 div > p {
  text-align: center;
}
main.covid .art03 div ul {
  display: flex;
  width: 90%;
  margin: 2rem auto 1rem auto;
}
main.covid .art03 div ul li {
  width: 48%;
}
main.covid .art03 div ul li:first-child {
  margin-right: 4%;
}
main.covid .art03 div ul li figure,
main.covid .art03 div ul li figure img {
  width: 100%;
}

/* 今後の具体策
-------------------------*/
main.covid .art04 div {
  position: relative;
  padding: 3rem 0 3rem 3rem;
  margin-bottom: 2rem;
}
main.covid .art04 div:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-color: #faf5ec;
}
main.covid .art04 div + p {
  text-align: center;
  margin-bottom: 2rem;
}
main.covid .art04 div + p a {
  display: inline;
}
main.covid .art04 div + p a:hover {
  color: #6c96ca;
}
main.covid .art04 div + p + p {
  text-align: center;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  main.covid section h2,
  main.covid article h3 {
    font-size: 6vw;
  }
  /* 導入 */
  main.covid .art01 {
    padding: 2rem 5%;
  }
  main.covid .art01 .div01 {
    display: block;
  }
  main.covid .art01 .div01 figure {
    width: 100%;
    margin-bottom: 1rem;
  }
  main.covid .art01 .div01 div {
    width: 100%;
    padding-left: 0;
  }
  main.covid .art02 .div01 {
    display: flex;
    flex-direction: column;
    margin: 2rem auto 1rem auto;
  }
  main.covid .art01 .div02 p a {
    display: block;
  }
  /* 実験 */
  main.covid .art02 {
    padding: 2rem 5%;
  }
  main.covid .art02 .div01 div:nth-of-type(1) {
    order: 2;
    width: 100%;
    padding-right: 0;
  }
  main.covid .art02 .div01 div:nth-of-type(2) {
    order: 1;
    width: 100%;
    padding-left: 0;
  }
  main.covid .art02 .div01 figure {
    margin-bottom: 1rem;
  }
  main.covid .art02 .div01 figure figcaption {
    font-size: 3.5vw;
  }
  main.covid .art02 .div02 {
    display: block;
    padding: 1rem;
  }
  main.covid .art02 .div02 h4 {
    text-align: center;
  }
  main.covid .art02 .div02 div:nth-of-type(1) {
    width: 100%;
    margin-bottom: 1rem;
  }
  main.covid .art02 .div02 div:nth-of-type(2) {
    width: 100%;
    padding-left: 0;
  }
  .smpscroll table {
    width:100%;
    white-space: nowrap;
    margin-bottom: 0.5rem !important;
  }
  .smpscroll table + p {
    color: #6c96ca;
    border-bottom: 1px solid rgba(255,255,255,0.7);
  }
  .smpscroll {
    overflow: auto;
  }
  .smpscroll::-webkit-scrollbar{
    height: 5px;
  }
  .smpscroll::-webkit-scrollbar-track{
    background: #ffffff;
  }
  .smpscroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  /* 実験結果 */
  main.covid .art03 {
    padding: 0 5%;
    margin: 1rem auto 2rem auto;
  }
  main.covid .art03 ul {
    display: block;
  }
  main.covid .art03 ul li {
    width: 100%;
    margin: 0 0 1rem 0;
  }
  main.covid .art03 div {
    padding: 1rem;
  }
  main.covid .art03 div > p {
    text-align: left;
  }
  main.covid .art03 div ul {
    display: block;
    width: 100%;
    margin: 1rem auto;
  }
  main.covid .art03 div ul li {
    width: 100%;
    margin: 0 0 1rem 0;
  }
  /* 今後の具体策 */
  main.covid .art04 div {
    padding: 2rem 5%;
  }
  main.covid .art04 p {
    padding: 0 5%;
    text-align: left !important;
  }
}



/* ----------------------------------------------------------
 Contact
---------------------------------------------------------- */
main.contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1em;
  padding: 0 4rem;
}
main.contact h3 a {
  display: inline;
}
main.contact h3 + p {
  background-color: #faf5ec;
  padding: 1rem 4rem;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.art_tel h3 + p:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-color: #faf5ec;
}
.art_form h3 + p:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-color: #faf5ec;
}

#form dl {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4rem;
  margin-bottom: 1rem;
}
#form dl dt {
  width: 25%;
  padding: 1.5rem 0;
  border-bottom: 1px solid #cccccc;
}
#form dl dt span {
  display: block;
  font-size: 1rem;
  color: #c30d23;
}
#form dl dd {
  width: 75%;
  padding: 1.5rem 0;
  border-bottom: 1px solid #cccccc;
}
#form dl dd p {
  margin-bottom: 0;
}
#form dl dd .wpcf7-checkbox,
#form dl dd .wpcf7-radio {
  display: flex;
  flex-direction: column;
}
#form input[type="checkbox"],
#form input[type="radio"] {
  margin-right: 0.25rem;
}
#form input[type="text"],
#form input[type="tel"],
#form input[type="email"],
#form textarea {
  border: 1px solid #cccccc;
  width: 100%;
  padding: 0.5rem;
  font-size: 1.1rem;
}
#form input[type="email"]:nth-of-type(2) {
  margin-top: 1rem;
}
#form + p {
  text-align: center;
}
#form div.button {
  display: flex;
  justify-content: center;
  text-align: center;
}
#form div.button > span {
  width: 49%;
  margin: 0 0.5%;
}
input.wpcf7-submit,
input.wpcf7-previous {
  color: #ffffff;
  background-color: #6c96ca;
  padding: 0.5rem 0;
  border-radius: 2rem;
  width: 60%;
  margin: 1rem auto;
  font-size: 1.2rem;
  cursor: pointer;
}
body.contact-confirm input.wpcf7-submit,
body.contact-confirm input.wpcf7-previous {
  width: 100%;
}
p.btn2 {
  display: flex;
  justify-content: center;
}
p.btn2 input {
  width: 30% !important;
  margin: 1rem;
}
body.contact-thanks main {
  min-height: 50vh;
}

/* エラー */
.error {
  color: #c30d23;
}
body.contact-thanks .wrapper + p {
  display: none;
}

/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}

/* 任意のページ限定で表示させる */
.page-id-13 .grecaptcha-badge,
.page-id-15 .grecaptcha-badge {
  visibility: visible;
}


@media screen and (max-width : 768px) { /* Smart Phone*/
  main.contact h3 {
    padding: 1rem 5%;
    background-color: #faf5ec;
    margin-bottom: 0;
    font-size: 5vw;
    border-bottom: 1px solid #cccccc;
  }
  main.contact h3 + p {
    padding: 1rem 5%;
  }
  main.contact .art_form h3 {
    background-color: #ffffff;
  }
  main.contact .art_form p {
    background-color: #ffffff;
    padding: 0;
    margin: 1rem auto;
  }
  main.contact .art_form h3 + p:before {
    content: none;
  }
  #form dl {
    width: 90%;
    margin: 1rem auto;
    padding: 0;
    border-top: 1px solid #cccccc;
  }
  #form dl dt {
    width: 100%;
    border-bottom: 0;
    padding: 1rem 0 0 0;
  }
  #form dl dd {
    width: 100%;
  }
  main.contact .art_form p {
    width: 90%;
    margin: 2rem auto;
    text-align: left;
  }
  p.btn input {
    display: block;
    width: 100%;
  }
  p.btn2 {
    flex-direction: column;
  }
  p.btn2 input {
    display: block;
    width: 100% !important;
    margin: 0 0 0.5rem 0;
  }
  #form + p {
    text-align: left;
  }
  #form div.button {
    width: 85%;
    margin: 1rem auto;
  }
  input.wpcf7-submit,
  input.wpcf7-previous {
    padding: 0.5rem 1em;
    width: initial;
  }
}

/* ----------------------------------------------------------
 Privacy Policy
---------------------------------------------------------- */
.privacy dl dt {
  color: #6c96ca;
  border-bottom: 1px solid #6c96ca;
}
.privacy dl dd {
  margin-bottom: 1rem;
}
.privacy dl dd ul {
  padding: 0 1em;
}
.privacy dl dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.privacy dl dd ul li:before {
  content: "■";
}
.privacy dl dd ol {
  counter-reset: olcount;
  padding: 0 1em;
}
.privacy dl dd ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.privacy dl dd ol li:before {
  counter-increment: olcount;
  content: counter(olcount)".";
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  .privacy {
    width: 90%;
    margin: 1rem auto;
  }
  .privacy dl dd ul,
  .privacy dl dd ol {
    padding: 0.5rem 0;
  }
}

/* ----------------------------------------------------------
 フロン排出抑制法
---------------------------------------------------------- */
body.furon article figure.title,
body.furon article figure.title img {
  width: 100%;
}
body.furon article h1 {
  margin: 1em 0 0.5em 0;
  padding-bottom: 0.25em;
  font-size: 2rem;
  line-height: 1.5em;
  border-bottom: 1px solid #6c96ca;
}
body.furon article h2 {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin: 2rem 0 1rem 0;
  color: #6c96ca;
}
body.furon article p a {
  color: #6c96ca;
}
body.furon article p a:before {
  content: "\0bb";
}
body.furon article .back-y {
  display: flex;
  flex-wrap: wrap;
  margin: 1.25rem 0;
  padding: 1rem;
  border-radius: 0.25rem;
  background-color: #faf5ec;
}
body.furon article .back-y h3 {
  width: 100%;
}
body.furon article .back-y div.left {
  width: 55%;
}
body.furon article .back-y div.left h3 {
  margin-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}
body.furon article .back-y #slider {
  width: 45%;
  padding-left: 3rem;
  margin-bottom: 0;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  body.furon section.wrap {
    padding: 0 5%;
  }
  body.furon article h1 {
    font-size: 1.5rem;
  }
  body.furon article .back-y {
    flex-direction: column;
  }
  body.furon article .back-y div.left,
  body.furon article .back-y #slider {
    width: 100%;
    padding: 0;
  }
}


/* ----------------------------------------------------------
 News
---------------------------------------------------------- */
main.news > .wrap {
  display: flex;
  flex-wrap: wrap;
}
main.news > .wrap p.title {
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1em;
}
main.news > .wrap p.title span.blue {
  color: #6c96ca;
}
main.news > .wrap p.title span {
  display: block;
  color: #6c96ca;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* アーカイブ */
div.sidebar {
  width: calc(25% - 4rem);
  margin-right: 4rem;
}
div.sidebar div {
  padding: 1rem 1rem 15rem 0;
  background-color: #faf5ec;
  position: relative;
}
div.sidebar div:before {
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  background-color: #faf5ec;
}
div.sidebar div h3 {
  position: relative;
  font-size: 1.25rem;
  padding-bottom: 0.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #cccccc;
}
div.sidebar div ul {
  position: relative;
  margin-bottom: 2rem;
}
div.sidebar div ul li a {
  display: block;
  padding: 0.25rem 0;
  border-bottom: 1px dotted #cccccc;
}
div.sidebar div ul li a:hover {
  padding-left: 0.5rem;
  background: rgba(255,255,255,0.8);
}

/* 本文 */
.news-text {
  width: 75%;
}
.news-text figure {
  line-height: initial !important;
}
.news-text h1 {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-bottom: 0.5rem;
}
.news-text h1 + time {
  display: block;
  border-bottom: 2px solid #cccccc;
  padding-bottom: 0.25rem;
  margin-bottom: 0.5rem;
  color: #6c96ca;
}
.news-text .contents .cat {
  margin-bottom: 1rem;
}
.news-text .contents .cat span {
  color: #ffffff;
  background-color: #6c96ca;
  padding: 0.25rem 0.5em;
  border-radius: 0.25em;
  font-size: 0.85rem;
}
.news-text .contents .cat span.works {
  background-color: #7cc48f;
}
.news-text .contents .cat span.everydaylife {
  background-color: #e198a6;
}
.news-text .contents h2 {
  color: #ffffff;
  background-color: #6c96ca;
  padding: 0.25rem;
  margin-bottom: 1em;
  font-size: 1.25rem;
}
.news-text .contents h3 {
  font-size: 1.25rem;
  line-height: 1.5em;
  padding-bottom: 0.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #6c96ca;
  border-bottom: 1px dotted #6c96ca;
}
.news-text .contents p + h3 {
  margin-top: 4rem;
}
.news-text .contents h4 {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.news-text .contents h5 {
  border-bottom: 1px dotted #cccccc;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.news-text .contents h6 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.news-text .contents p {
  margin-bottom: 1.5em;
}
.news-text .contents p a {
  color: #6c96ca;
}
.news-text .contents p a:before {
  content: "\0bb";
}
.news-text .contents > a {
  display: initial !important;
}
.news-text .contents figure img,
.news-text .contents a figure img {
  padding: 0.5rem;
  border: 1px solid #cccccc;
}
.wp-block-eedee-block-gutenslide {
  margin-bottom: 1em;
  border: 1px solid #cccccc;
}

/* 左右配置 */
.news-text .back-y {
  background-color: #faf5ec;
  padding: 1rem;
  border-radius: 0.25rem;
}
.news-text .news-box {
  display: flex;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}
.news-text .news-box h4,
.news-text .news-box h5,
.news-text .news-box h6 {
  width: 100%;
  margin-bottom: 1rem;
}
.news-text .news-box p {
  width: 55%;
}

/* bxslider */
#slider {
  width: 60%;
  margin-bottom: 1rem;
}
 #slider img {
  width: 100%;
  border: 1px solid #cccccc;
}
.bg_img + div {
  display: flex;
  flex-wrap: wrap;
}
.bg_img + div a {
  display: block;
  width: 19%;
  margin: 0.5%;
  line-height: 0;
  position: relative;
  z-index: 10;
}
.bg_img + div a img {  
  width: 100% !important;
}  
.bx-wrapper {
  margin-bottom: 0.5rem !important;
  box-shadow: none !important;
  border: 0 !important;
}
.bx-wrapper .bx-caption {
  background: rgba(00,00,00,.75) !important;
}
.bx-wrapper .bx-caption span {
  text-align: center !important;
  padding: 0.25rem 0 !important;
}

/* dl */
.dl_normal {
  display: flex;
  flex-wrap: wrap;
  margin: 1.25rem 0;
  border: 1px solid #cccccc;
  border-bottom: 0;
}
.dl_normal dt {
  width: 30%;
  padding: 0.5rem;
  background-color: #efefef;
  border-bottom: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dl_normal dd {
  width: 70%;
  padding: 0.5rem;
  border-bottom: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dl_simple {
  display: flex;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}
.dl_simple dt {
  width: 30%;
  padding: 0.5rem 0;
  border-bottom: 1px dotted #cccccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dl_simple dd {
  width: 70%;
  padding: 0.5rem 0;
  border-bottom: 1px dotted #cccccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 一覧へもどる */
p.back-news {
  width: 75%;
  margin-left: 25%;
  margin-top: 3rem;
}
p.back-news a {
  display: block;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px dotted #cccccc;
  border-bottom: 1px dotted #cccccc;
}
p.back-news a:before {
  content: "\0ab";
  margin-right: 0.5em;
  color: #6c96ca;
  font-size: 1.2rem;
}

/* アーカイブ */
.news-archive h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.5em;
}
.news-archive h3 + span {
  display: block;
  border-bottom: 2px solid #cccccc;
  padding-bottom: 1em;
  margin-bottom: 2rem;
  color: #6c96ca;
}
.news-archive ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.news-archive ul li {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 3rem;
}
.news-archive ul li:nth-child(3n) {
  margin-right: 0;
}
.news-archive ul li a {
  display: block;
  border-bottom: 3px solid #ffffff;
  transition: .5s;
}
.news-archive ul li a:hover {
  border-bottom: 3px solid #6c96ca;
  transition: .5s;
}
.news-archive ul li a figure {
  width: 100%;
  margin-bottom: 0.5rem;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}
.news-archive ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.news-archive ul li a:hover figure img {
  transform: scale(1.1,1.1);
  transition: .5s;
}
.news-archive ul li a div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
  line-height: 1.25em;
}
.news-archive ul li a div time {
  display: inline-block;
  color: #6c96ca; 
}
.news-archive ul li a div span {
  color: #ffffff;
  background-color: #6c96ca;
  padding: 0.25rem 0.5em;
  border-radius: 0.25em;
  font-size: 0.85rem;
}
.news-archive ul li a div span.works {
  background-color: #7cc48f;
}
.news-archive ul li a div span.everydaylife {
  background-color: #e198a6;
}
.news-archive ul li a p {
  line-height: 1.5em;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  main.news>.wrap p.title {
    width: 90%;
    margin: 0 auto;
    font-size: 6vw;
  }
  .news-archive h3 {
    background: rgba(108,150,202,0.15);
    padding: 0.5rem 0.5rem 0 0.5rem;
  }
  .news-archive h3 + span {
    background: rgba(108,150,202,0.15);
    padding: 0 0.5rem 0.5rem 0.5rem;
  }
  .news-archive ul {
    padding: 0;
    justify-content: space-between;
  }
  .news-archive ul li {
    width: 48%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding: 0 0.25rem;
    border-bottom: 1px solid #cccccc;
  }
  .news-archive ul li a div {
    flex-direction: column;
    align-items: flex-start;
    font-size: 4vw;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .news-archive ul li a div span {
    order: 1;
    margin-bottom: 0.25rem;
    width: 100%;
    text-align: center;
  }
  .news-archive ul li a div time {
    order: 2;
  }
  .news-text {
    order: 1;
    width: 100%;
    padding: 1rem 5%;
  }
  .news-text h3 {
    background: rgba(108,150,202,0.15);
    padding: 0.5rem;
    font-size: 5vw;
    margin-bottom: 0;
  }
  .news-text h3 + time {
    background: rgba(108,150,202,0.15);
    padding: 0 0.5rem 0.5rem 0.5rem;
    margin-bottom: 1rem;
  }
  .news-text h4 {
    margin-top: 1rem;
    font-size: 5vw;
  }
  .news-text .news-box p {
    width: 100%;
  }
  .news-text > img,
  .news-text > a img {
    width: 95%;
    margin: 0.5rem 2.5%;
  }
  .news-box #slider,
  #slider {
    width: 100%;
    padding-left: 0;
  }
  .bx-wrapper .bx-caption span {
    font-size: 3.5vw;
    line-height: 1.5em;
    text-align: left !important;
    padding: 0.25rem !important;
  }
  .dl_normal dt {
    width: 100%;
    border-bottom: 0;
  }
  .dl_normal dd {
    width: 100%;
  }
  .dl_simple dt {
    width: 100%;
    border-bottom: 0;
    padding: 0.5rem 0 0 0;
  }
  .dl_simple dd {
    width: 100%;
    padding: 0 0 0.5rem 0;
  }
  p.back-news {
    order: 2;
    width: 90%;
    margin: 1rem auto 3rem auto;
  }
  div.sidebar {
    order: 3;
    width: 100%;
    margin: 0;
  }
  div.sidebar div {
    padding: 1rem 5% 2rem 5%;
  }
  div.sidebar div ul {
    display: flex;
    flex-wrap: wrap;
  }
  div.sidebar div ul li {
    width: 48%;
  }
  div.sidebar div ul li:nth-child(odd) {
    margin-right: 4%;
  }

}


/* ----------------------------------------------------------
 ページネーション
---------------------------------------------------------- */
.nav-links {
  display: flex;
  justify-content: center;
}
.nav-links .current {
  margin: 0 0.25em;
  padding: 0.5em;
  border: 1px solid #6c96ca;
  color: #6c96ca;
}
.nav-links a {
  width: initial;
  margin: 0 0.25em;
  padding: 0.5em;
  border: 1px solid #6c96ca;
  color: #ffffff;
  background-color: #6c96ca;
}




/* ----------------------------------------------------------
 福島増圧ポンプ所小水力発電所
---------------------------------------------------------- */
.hydro .blue { color: #1996f4; }
.hydro a { display: initial; }

.hydro article.wrap > div {
  width: initial;
}
.hydro .about {
  margin-bottom: 4rem;
}
.hydro .about .title {
  background-color: #000000;
  position: relative;
}
.hydro .about .title:after {
  content: "";
  display: block;
  width: 35%;
  height: 100%;
  background-image: url(../images/hydropower/title.jpg);
  background-size: cover;
  background-position: center bottom 15%;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
@media print, screen and (min-width : 767px) { /* PC */
  .hydro .about .title:before {
    content: "";
    display: block;
    width: 4rem;
    height: 3rem;
    background-image: url(../images/hydropower/icon-sankaku.svg);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    right: calc(35% + -2rem);
    top: 0;
    z-index: 2;
  }
}
.hydro .about h2 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.25em;
  background-color: #000000;
  padding: 2rem 0 2.5rem 0;
}
.hydro .about h2 span:nth-of-type(1) {
  color: #ffffff;
  background-color: #1996f4;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0 2rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.hydro .about h2 span:nth-of-type(1):before {
  content: "";
  display: block;
  width: 33vw;
  height: 100%;
  background-color: #1996f4;
  position: absolute;
  left: -32vw;
  top: 0;
  z-index: -1;
}
.hydro .about .art01 {
  display: flex;
  align-items: center;
}
.hydro .about .art01 .div01 {
  width: 65%;
  padding-right: 2rem;
}
.hydro .about .art01 .div01 h3 {
  color: #1996f4;
  font-weight: 500;
  line-height: 1.35em;
  padding-left: 3.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-bottom: 3rem;
}
.hydro .about .art01 .div01 h3 span {
  display: block;
  width: 100%;
  border-bottom: 1px solid #1996f4;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width : 767px) { /* PC */
  .hydro .about .art01 .div01 h3:before {
    content: "";
    display: block;
    width: 5em;
    height: 5em;
    border-radius: 5em;
    background-color: #1996f4;
    position: absolute;
    left: -2em;
  }
  .hydro .about .art01 .div01 h3:after {
    content: "県内初！";
    display: block;
    color: #ffffff;
    position: absolute;
    left: -1.75em;
    width: 5em;
    text-align: center;
  }
}
.hydro .about .art01 .div01 h4 {
  font-weight: 500;
  margin-bottom: 1em;
}
.hydro .about .art01 .div02 {
  width: 35%;
}
.hydro .about .art01 .div02 figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hydro .about .art01 .div02 figure img:nth-of-type(1) {
  width: 100%;
  margin-bottom: 1rem;
}
.hydro .about .art01 .div02 figure img:nth-of-type(2),
.hydro .about .art01 .div02 figure img:nth-of-type(3) {
  width: 48%;
  margin: 1%;
}

.hydro .shikumi {
  text-align: center;
  background: #000000 url(../images/hydropower/shikumi.jpg) no-repeat center top / cover ;
  padding: 3rem 0;
  position: relative;
  z-index: 0;
  margin-bottom: 4rem;
}
.hydro .shikumi:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hydro .shikumi h3 {
  color: #f3ea2e;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35em;
  margin-bottom: 1.5em;
}
.hydro .shikumi p {
  color: #ffffff;
  margin-bottom: 2em;
}
.hydro .shikumi figure {
  display: flex;
  justify-content: space-between;
}
.hydro .shikumi figure div {
  width: 48%;
  background-color: rgba(255, 255, 255, 0.85);
  position: relative;
}
.hydro .shikumi figure div:nth-of-type(2):before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid rgba(255, 255, 255, 0.85);
}
.hydro .shikumi figure div img {
  width: 100%;
}

.hydro .kouji .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hydro .kouji figure {
  display: flex;
  justify-content: space-between;
}
.hydro .kouji figure img {
  width: calc(100% / 3 - 2px)
}
.hydro .kouji h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35em;
  margin-top: -1.5rem;
  margin-bottom: 1rem;
}
.hydro .kouji h3 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35em;
}
.hydro .kouji h3 span:nth-of-type(1) {
  color: #fff;
  background-color: #1996f4;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.hydro .kouji h3 span:nth-of-type(1):before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #1996f4;
}
.hydro .kouji h3 span:nth-of-type(2),
.hydro .kouji h3 span:nth-of-type(3) {
  color: #1996f4;
}
.hydro .kouji p {
  text-align: center;
}
.hydro .kouji p + div {
  background-color: #e3edf6;
  padding: 1em 2em;
  display: inline-block;
}
.hydro .kouji p + div p {
  margin-bottom: 0;
}
.hydro .kouji .wrap > ul {
  width: 85%;
  margin: 3rem auto;
  display: flex;
  justify-content: space-between;
}
.hydro .kouji .wrap > ul > li {
  width: 48%;
  border: 1px solid #000000;
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hydro .kouji .wrap > ul > li h4 {
  width: 70%;
  text-align: center;
  color: #fff;
  background-color: #000000;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: -0.5em;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.hydro .kouji .wrap > ul > li p {
  text-align: center;
}
.hydro .kouji .wrap > ul > li ol {
  margin-bottom: 1.5rem;
  width: 100%;
}
.hydro .kouji .wrap ol li {
  list-style-type: none;
  counter-increment: cnt;
  margin-bottom: 0.25rem;
  padding-left: 2rem;
  position: relative;
}
.hydro .kouji .wrap ol li::before {
  content: counter(cnt);
  display: inline-block;
  text-align: center;
  width: 1.5em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  color: #ffffff;
}
.hydro .kouji .wrap ol li::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-color: #1996f4;
  position: absolute;
  left: 0;    
  top: 50%;
  transform: translateY(-50%);
}
.hydro .kouji .wrap > ul > li #slider {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

.hydro .datsutanso {
  background-color: #e3edf6;
  padding: 3rem 0;
  margin: 2rem 0;
}
.hydro .datsutanso .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hydro .datsutanso .wrap figure {
  width: 35%;
}
.hydro .datsutanso .wrap figure img {
  width: 100%;
}
.hydro .datsutanso .wrap div {
  width: 65%;
  padding-left: 2rem;
}
.hydro .datsutanso .wrap div h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1em;
}

.hydro .media h3 {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #000;
}
.hydro .media ul {
  width: 95%;
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hydro .media ul li {
  width: 48%;
}
.hydro .media ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
  padding: 0.5rem;
}
.hydro .media ul li a:after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #1996f4;
  border-right: 2px solid #1996f4;
  transform: rotate(45deg);
  margin-right: 0.5rem;
}

@media screen and (max-width : 768px) { /* Smart Phone*/
  .hydro .about .title:after {
    position: relative;
    width: 100%;
    height: 50vw;
  }
  .hydro .about h2 {
    font-size: 7vw;
        padding: 1.5rem 0 0.5rem 0;
  }
  .hydro .about h2 span {
    font-size: 4.5vw;
    padding: 0 1em 0 0;
    margin-bottom: 0.5rem;
  }
  .hydro .about .title:before {
    content: "";
    background-image: none;
    position: absolute;
    z-index: 1;
    bottom: calc(50vw - 13px);
    left: 0;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid rgba(243, 234, 46, 1);
  }
  .hydro .about .art01 {
    flex-direction: column;
  }
  .hydro .about .art01 .div01 {
    width: 100%;
    padding: 2rem 5% 0 5%;
  }
  .hydro .about .art01 .div02 {
    width: 100%;
  }
  .hydro .about h2 span:nth-of-type(1) {
    padding: 0 1em 0 0;
  }
  .hydro .about .art01 .div01 h3 {
    flex-direction: column;
    padding: 0;
    margin-bottom: 2rem;
  }
  .hydro .about .art01 .div01 h3:before {
    content: "県内初！";
    display: block;
    color: #ffffff;
    background-color: #1996f4;
    font-size: 4.5vw;
    padding: 0 0.5rem;
    margin-bottom: 0.25rem;
    margin-right: auto;
  }
  .hydro .about .art01 .div02 figure {
    width: 90%;
    margin: 0 auto;
  }
  .hydro .shikumi .wrap {
    padding: 0 1em;
  }
  .hydro .shikumi h3 {
    margin-bottom: 1rem;
  }
  .hydro .shikumi p {
    text-align: left;
  }
  .hydro .shikumi figure {
    display: block;
  }
  .hydro .shikumi figure div {
    width: 100%;
  }
  .hydro .shikumi figure div:nth-of-type(1) {
    margin-bottom: 2rem;
  }
  .hydro .shikumi figure div:nth-of-type(2):before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid rgba(255, 255, 255, 0.85);
  }
  .hydro .kouji h3 {
    margin-top: -0.5rem;
    margin-bottom: 0;
    font-size: 5.5vw;
  }
  .hydro .kouji h3 span {
    font-size: 5.5vw;
  }
  .hydro .kouji p {
    text-align: left;
  }
  .hydro .kouji .wrap > p {
    width: 90%;
    margin: 1rem auto;
  }
  .hydro .kouji .wrap > p + div {
    width: 90%;
    margin: 0.5rem auto;
    padding: 1rem;
  }
  .hydro .kouji .wrap > ul {
    flex-direction: column;
  }
  .hydro .kouji .wrap > ul > li {
    width: 100%;
    padding: 0 1rem 1.5rem 1rem;
    margin-bottom: 2rem;
  }
  .hydro .kouji .wrap > ul > li h4 {
    width: 95%;
  }
  .hydro .datsutanso {
    margin-top: 0;
  }
  .hydro .datsutanso .wrap {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .hydro .datsutanso .wrap figure {
    order: 2;
    width: 100%;
  }
  .hydro .datsutanso .wrap div {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .hydro .media {
    padding: 0 5%;
  }
  .hydro .media ul {
    width: 100%;
  }
  .hydro .media ul li {
    width: 100%;
  }
}



.wp-block-table.is-style-stripes {
  font-size: 1rem;
  line-height: 1.8em;
}

.fancybox-slide--image .fancybox-content {
    background-color: transparent !important;
}