@charset "utf-8";

/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

:root {
  --color01: #1e52a6;
  --color02: #333;
  --color03: #333;
  --color04: #333;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
* {box-sizing: border-box;}
img {max-width: 100%;}
.fcred {color: #FF0000;}
.fwbold {font-weight: bold;}
.fs80 {font-size: 0.8em;}
.fs120 {font-size: 1.2em;}
.left {float: left;}
.right {float: right;}
.center {text-align: center;}
.clear {clear: both;}
.italic {font-style: italic;}
sup {
  font-size: 0.5em;
  vertical-align: super;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  line-height: 1.875;
  color: var(--color02);
}
button , input , textarea,select,option {
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.875;
  color: var(--color02);
}
@media screen and (min-width: 801px){
  .sp_cont {display: none!important;}
}
a:hover {
  text-decoration: underline;
  color: inherit;
}
.hover_btn {transition: 0.5s;opacity: 1;}
.hover_btn:hover {transition: 0.5s;opacity: 0.75;}
.josefin {font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;}
.oswald {font-family: 'Oswald', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;}
.anc {
  width: 100%;
  height: 0;
  background: none;
  border: none;
  clear: both;
}
a.pkc {
  color: #1e52a6;
  text-decoration: underline;
  transition: 0.5s;
}
a.pkc:hover {opacity: 0.5;}
a.pkc::after {
  display: inline-block;
  content: "";
  width: 22px;
  height: 16px;
  margin: 0 0.2em 0.2em;
  background: url("../img/ico_pkc.png") no-repeat center / cover;
  vertical-align: middle;
}

body figure {margin: 0;}

/* -----------------------------------------------------------
  template
----------------------------------------------------------- */

/* :::::::::: header :::::::::: */

/* header {
  position: fixed;
  width: 100%;
  height: 120px;
  background: #FFFFFF;
  padding: 37px 50px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: 0.5s;
}
header.header_transparent {background: none;}
header.hide {top: -150px;}
header .logo {
  position: relative;
  transition: 0.5s;
  z-index: 0;
}
header .logo:hover {opacity: 0.5;}
header .logo img {
  position: absolute;
  display: block;
  left: 0;
  z-index: 0;
  transition: 0.5s;
}
header .logo img:nth-of-type(1) {
  width: 100px;
  top: 5px;
  opacity: 1;
  visibility: visible;
}
header .logo img:nth-of-type(2) {
  width: 190px;
  top: 14px;
  opacity: 0;
  visibility: hidden;
}
header.header_transparent .logo img:nth-of-type(1) {
  opacity: 0;
  visibility: hidden;
}
header.header_transparent .logo img:nth-of-type(2) {
  opacity: 1;
  visibility: visible;
} */



/* :::::::::: nav :::::::::: */

nav .menu {display: none;}
nav .g_nav {
  position: absolute;
  display: inline-block;
  height: 44px;
  border-right: solid 1px var(--color03);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 260px;
}
.header_transparent nav .g_nav {border-right: solid 1px #FFFFFF;}
nav .g_nav_bg {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 0;
  background: #FFFFFF;
  opacity: 0;
  top: 120px;
  left: 0;
  right: 0;
  transition: 0.5s linear;
  z-index: -1;
}
nav .g_nav_bg.open {opacity: 1;}
.hide nav .g_nav_bg.open {opacity: 0;}
nav .g_nav > li {
  display: inline-block;
  height: 77px;
  line-height: 44px;
  padding: 0 20px 0 0;
  vertical-align: top;
}
nav .g_nav > li:last-child {padding:0 30px 0 0;}
nav .g_nav > li > .sp_ac {display: none;}

nav .g_nav > li > span {display: inline-block;}
nav .g_nav > li > span.current {border-bottom: solid 3px var(--color03);}
nav .g_nav > li > span a {
  font-weight: 500;
  color: var(--color03);
  text-decoration: none;
}
.header_transparent nav .g_nav > li > span a {color: #FFFFFF;}
nav .g_nav > li > span a:hover {color: var(--color01);}
nav .g_nav > li > div {
  position: fixed;
  align-items: center;
  width: 100%;
  padding: 120px 0;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  top: 120px;
  z-index: 10;
  transition: 0.5s;
}
nav .g_nav > li > div.open {
  opacity: 1;
  visibility: visible;
}
.hide nav .g_nav > li > div.open {
  opacity: 0;
  visibility: hidden;
}
nav .g_nav > li > div > div {
  width: 100%;
  max-width: 1190px;
  padding: 0 40px;
  margin:0 auto;
  overflow: hidden;
}
nav .g_nav > li > div > div p {
  width: 450px;
  float:left;
}
nav .g_nav > li > div > div p span:nth-of-type(1) {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color01);
  line-height: 1.3;
}
nav .g_nav > li > div > div p span:nth-of-type(2) {
  display: block;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  line-height: 1.875;
  margin: 5px 0 0;
}
nav .g_nav > li > div > div ul {
  width: calc(100% - 450px);
  float: left;
  overflow: hidden;
}
nav .g_nav > li > div > div ul li {
  width: 30%;
  height: 40px;
  margin: 0 5% 40px 0;
  float: left;
}
nav .g_nav > li > div > div ul li:nth-child(3n) { margin:0 0 40px;}
nav .g_nav > li > div > div ul li a {
  position: relative;
  display: block;
  line-height: 40px;
  color: var(--color02);
  text-decoration: none;
  border-bottom: solid 1px var(--color02);
  z-index: 0;
}
nav .g_nav > li > div > div ul li a:hover {color: var(--color01);}
nav .g_nav > li > div > div ul li a::before {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 13px;
  background: url("../img/menu_li_hover.png") no-repeat center / cover;
  margin: auto;
  right: 0;
  top: 0;
  bottom: 0;
}
nav .g_nav > li > div > div ul li a:hover::before {background: url("../img/menu_li_hover_b.png") no-repeat center / cover;}
nav .g_nav > li > div > div ul li a::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background: var(--color01);
  left: auto;
  right: 0;
  bottom: -1px;
  transition: 0.5s;
}
nav .g_nav > li > div > div ul li a:hover::after {
  width: 100%;
  left: 0;
  right: 0;
}
nav .btn_nav {
  position: absolute;
  width: 120px;
  height: 60px;
  top: 30px;
  right: 130px;
  z-index: 10;
}
nav .btn_nav li {
  width: 50%;
  height: 60px;
  float: left;
}
nav .btn_nav li a {
  display: block;
  font-size: 10px;
  color: var(--color03);
  text-align: center;
  text-decoration: none;
  padding: 36px 0 0;
  transition: 0.5s;
}
nav .btn_nav li:nth-child(1) a {background: url("../img/menu_catalog.png") no-repeat top 13px center;}
nav .btn_nav li:nth-child(2) a {background: url("../img/menu_dl.png") no-repeat top 10px center;}
.header_transparent nav .btn_nav li a {color: #FFFFFF;}
.header_transparent nav .btn_nav li:nth-child(1) a {background: url("../img/menu_catalog_w.png") no-repeat top 13px center;}
.header_transparent nav .btn_nav li:nth-child(2) a {background: url("../img/menu_dl_w.png") no-repeat top 10px center;}
nav .btn_nav li a:hover {color: var(--color01);}
nav .btn_nav li:nth-child(1) a:hover {background: url("../img/menu_catalog_hover.png") no-repeat top 13px center;}
nav .btn_nav li:nth-child(2) a:hover {background: url("../img/menu_dl_hover.png") no-repeat top 10px center;}
nav .btn_contact {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  right: 0;
  z-index: 10;
}
nav .btn_contact a {
  display: block;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 37px 0 38px;
  background: var(--color01);
  transition: 0.5s;
}
nav .btn_contact a:hover {opacity: 0.75;}
nav .btn_contact a span {
  display: inline-block;
  padding: 25px 0 0;
  background: url("../img/menu_contact.png") no-repeat top center;
}

@media screen and (max-width: 1300px){

  /* :::::::::: header :::::::::: */

  /* header {padding: 37px 40px;}
  header .logo img:nth-of-type(1) {
    width: 60px;
    top: 11px;
  }
  header .logo img:nth-of-type(2) {
  } */



  /* :::::::::: nav :::::::::: */

  nav .g_nav {right: 240px;}
  nav .g_nav > li {
    padding: 0 10px 0 0;
    font-size: 1.4rem;
  }
  nav .g_nav > li:last-child {padding:0 20px 0 0;}
  nav .g_nav > li > div {padding: 120px 30px;}
  nav .g_nav > li > div > div {padding:0;}
  nav .g_nav > li > div > div p {width: 350px;}
  nav .g_nav > li > div > div p span:nth-of-type(1) {font-size: 3.2rem;}
  nav .g_nav > li > div > div ul {width: calc(100% - 350px);}
  nav .g_nav > li > div > div ul li {
    width: 32%;
    margin: 0 2% 40px 0;
  }
  nav .btn_nav {width: 100px;}
}

@media screen and (max-width: 1130px){
  header .logo img:nth-of-type(2) {
    width: 140px;
    top: 16px;
  }
  header.header_transparent nav .g_nav > li {
    font-size: 1.3rem;
    padding: 0 5px 0 0;
  }
  header.header_transparent nav .g_nav > li:last-child {padding:0 10px 0 0;}
}

/* :::::::::: main :::::::::: */

main {
  display:block;
  width:100%;
  height:auto;
  padding: 120px 0 90px;
}
main.home {padding: 0;}
main article {
  width:100%;
  height:auto;
  overflow:hidden;
  margin:0 auto;
}
.box {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
.content_box {
  width: 100%;
  max-width: 1190px;
  padding: 0 40px;
  margin: 0 auto;
}
.area_w {background: #FFFFFF;}
.area_g {background: #F5F5F5;}
.area_t {color: #FFFFFF;}
.color01 {color: var(--color01);}
.bg_color01 {background: var(--color01);}

/* :::::::::: aside :::::::::: */

aside {
  position: relative;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 30px;
  overflow: hidden;
  z-index: 0;
}
aside::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,85,154,0.6);
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
aside .bg_aside {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 60vh;
  background: url("../img/bg_aside.jpg") no-repeat center / cover;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
}
main.home + aside::after,
main.home + aside .bg_aside {display: none;}
aside h2 span:nth-of-type(1) {
  display: block;
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0 auto 30px;
}
aside h2 span:nth-of-type(2) {
  display: block;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-size: 7.5rem;
  line-height: 1.1;
}
aside h2 + p {
  font-size: 2.6rem;
  margin: 0 auto 40px;
}
aside ul li {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 20px;
}

/* :::::::::: footer :::::::::: */

/* -----------------------------------------------------------
 common_parts
----------------------------------------------------------- */

.title_area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1190px;
  padding: 120px 40px;
  margin: 0 auto;
}
.title_area > div {display: inline-block;}
.title_area > div:nth-of-type(1) {min-width: 500px;}
.title_area > div .h1_title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color01);
  line-height: 1.3;
}
.title_area > div .h1_title + p {
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  margin: 5px 0 0;
}
.title_area .breadcrumbs {
  font-size: 1.3rem;
  color:var(--color04);
  text-align: right;
}
.title_area .breadcrumbs > span {display: inline-block;}
.title_area .breadcrumbs > span::after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 1px;
  background: var(--color03);
  transform: rotate(-45deg);
  vertical-align: middle;
}
.title_area .breadcrumbs > span:nth-last-of-type(1)::after {display: none;}
.title_area .breadcrumbs > span:nth-of-type(1)::before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background: url("../img/ico_bc.png") no-repeat center / cover;
  margin:0 0.5em 0.2em 0;
  vertical-align: middle;
}
.title_area .breadcrumbs > span a {color:var(--color03);}
.lead {
  margin: 0 0 90px;
  line-height: 2.1;
}
.bg_box {
  background: #F5F5F5;
  padding: 30px;
}

/** slick **/


.slick-slide img {width: 100%;}
.slick-dots {
  position: static!important;
  /* width: 180px!important; */
  display: inline-block;
  margin: 50px auto 0!important;
}
.slick-dots li {margin: 0 5px;}
.slick-dots li button {
  content: "";
  width: 12px!important;
  height: 12px!important;
  border-radius: 50%;
  background: #DBDBDB!important;
  opacity: 1!important;
  margin: auto;
}
.slick-dots li button:before {display: none!important;}
.slick-dots li.slick-active button {background: var(--color01)!important;}
.slick-arrow::before {content: none!important;}
.slick-arrow.slick-prev ,.slick-arrow.slick-next {
  width: 47px;
  height: 47px;
  z-index: 10;
}
.slick-arrow.slick-prev {background: url("../img/al.svg") no-repeat center / cover;}
.slick-arrow.slick-next {
background: url("../img/ar.svg") no-repeat center / cover;}
.slick-arrow.slick-prev:hover, .slick-arrow.slick-prev:focus {background: url("../img/al_h.svg") no-repeat center / cover;}
.slick-arrow.slick-next:hover, .slick-arrow.slick-next:focus {background: url("../img/ar_h.svg") no-repeat center / cover;}

/** btn_more **/

.btn_more {
  position: relative;
  width: 220px;
  height: 50px;
  padding: 0 0 0 20px;
  z-index: 0;
}
.btn_more p {
  position: relative;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  color: var(--color02);
  text-align: center;
  line-height: 50px;
  border: solid 1px var(--color02);
  border-left: none;
  z-index: 1;
}
.btn_more p span {
  position: relative;
  display: block;
  z-index: 2;
}
.btn_more p a {
  position: relative;
  display: block;
  text-decoration: none;
  z-index: 3;
  transition: 0.5s;
}
.btn_more p a:hover {color: var(--color01);}
.btn_more::before,
.btn_more::after,
.btn_more p::before,
.btn_more p::after,
.btn_more a::before,
.btn_more a::after,
.btn_more span::before,
.btn_more span::after {
  position: absolute;
  display: block;
  content: "";
}
.btn_more::before ,
.btn_more::after {
  width: 1px;
  height: 13px;
  background: var(--color02);
  left: 20px;
  z-index: 0;
}
.btn_more::before {top: 0;}
.btn_more::after {bottom: -1px;}

.btn_more p::before {
  width: 40px;
  height: 1px;
  background: var(--color02);
  background: -moz-linear-gradient(left,  rgba(0,85,154,1) 0%, rgba(0,85,154,1) 0%, rgba(100,100,100,1) 0%, rgba(100,100,100,1) 0%, rgba(100,100,100,1) 100%);
  background: -webkit-linear-gradient(left, rgba(0,85,154,1) 0%,rgba(0,85,154,1) 0%,rgba(100,100,100,1) 0%, rgba(100,100,100,1) 0%,rgba(100,100,100,1) 100%);
  background: linear-gradient(to right, rgba(0,85,154,1) 0%,rgba(0,85,154,1) 0%,rgba(100,100,100,1) 0%, rgba(100,100,100,1) 0,rgba(100,100,100,1) 100%);
  top: 25px;
  left: -20px;
  z-index: 0;
  transition:background 0.5s linear;
}
.btn_more p::after {
  width: 2px;
  width: 1px;
  height: 0;
  background: var(--color01);
  top: -2%;
  right: -1px;
  z-index: 1;
  transition:0.15s linear 0.3s;
}
.btn_more span::before ,
.btn_more span::after {
  width: 2px;
  width: 1px;
  height: 0;
  background: var(--color01);
  left: 0;
  z-index: 1;
}
.btn_more span::before {
  bottom: 38px;
  transition:0.05s linear 0.7s;
}
.btn_more span::after {
  bottom: 1px;
  transition:0.05s linear;
}
.btn_more a::before ,
.btn_more a::after {
  width: 0;
  height: 2px;
  height: 1px;
  background: var(--color01);
  z-index: 1;
}
.btn_more a::before {
  top: -1px;
  left: 0;
  transition:0.25s linear 0.45s;
}
.btn_more a::after {
  bottom: -1px;
  right: 0;
  transition:0.25s linear 0.05s;
}
.btn_more:hover p::before {
  background: -moz-linear-gradient(left,  rgba(0,85,154,1) 0%, rgba(0,85,154,1) 100%, rgba(100,100,100,1) 100%, rgba(100,100,100,1) 100%, rgba(100,100,100,1) 100%);
  background: -webkit-linear-gradient(left, rgba(0,85,154,1) 0%,rgba(0,85,154,1) 100%,rgba(100,100,100,1) 100%, rgba(100,100,100,1) 100%,rgba(100,100,100,1) 100%);
  background: linear-gradient(to right, rgba(0,85,154,1) 0%,rgba(0,85,154,1) 100%,rgba(100,100,100,1) 100%, rgba(100,100,100,1) 100%,rgba(100,100,100,1) 100%);
  height: 2px;
  height: 1px;
}
.btn_more:hover p::after {
  height: 104%;
  transition:0.15s linear 0.3s;
}
.btn_more:hover span::before {
  height: 13px;
  transition:0.05s linear;
}
.btn_more:hover span::after {
  height: 13px;
  transition:0.05s linear 0.7s;
}
.btn_more:hover a::before {
  width: 100%;
  transition:0.25s linear 0.05s;
}
.btn_more:hover a::after {
  width :100%;
  transition:0.25s linear 0.45s;
}
.btn_more_w p {
  color: rgba(255,255,255,0.75);
  border: solid 1px rgba(255,255,255,0.75);
  border-left: none;
}
.btn_more_w p a:hover {color: rgba(255,255,255,1);}
.btn_more_w::before ,
.btn_more_w::after {background: rgba(255,255,255,0.75);}
.btn_more_w p::before {background: rgba(255,255,255,0.75);}
.btn_more_w p::after {background: #FFFFFF;}
.btn_more_w span::before ,
.btn_more_w span::after {background: #FFFFFF;}
.btn_more_w a::before ,
.btn_more_w a::after {background: #FFFFFF;}
.btn_more_w:hover p::before {background: #FFFFFF;}

@media screen and (max-width: 1000px){
  .btn_more {
    width: 180px;
    height: 40px;
    padding: 0 0 0 15px;
  }
  .btn_more p {line-height: 40px;}
  .btn_more::before ,
  .btn_more::after {
    height: 8px;
    left: 15px;
  }
  .btn_more p::before {
    width: 30px;
    top: 20px;
    left: -15px;
  }
  .btn_more span::before {bottom: 32px;}
  .btn_more:hover span::before {height: 8px;}
  .btn_more:hover span::after {height: 8px;}
}

/** btn_ar **/

.btn_ar {overflow: hidden;}
.btn_ar li {
  width: 32%;
  margin: 0 2% 20px 0;
  float: left;
}
.btn_ar li:nth-child(3n) {margin: 0 0 20px;}
.btn_ar li a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  height: 70px;
  line-height: 70px;
  padding: 0 20px;
  text-decoration: none;
  border: solid 1px var(--color02);
  transition: 0.5s;
}
.btn_ar li a:hover {
  color: var(--color01);
  border: solid 1px var(--color01);
}
.btn_ar li a::after {
  position: absolute;
  display: block;
  content: "";
  width: 15px;
  height: 14px;
  background: url("../img/ico_ar.svg") no-repeat center / cover;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
}
.btn_ar li a:hover::after {background: url("../img/ico_ar_h.svg") no-repeat center / cover;}
.btn_usage li a {
  font-feature-settings: "palt";
  padding: 0 20px 0 90px;
}
.btn_usage li.inhouse a {background: url("../img/home/usage01.png") no-repeat left 22px center;}
.btn_usage li.apartment a {background: url("../img/home/usage02.png") no-repeat left 20px center;}
.btn_usage li.government a {background: url("../img/home/usage03.png") no-repeat left 20px center;}
.btn_usage li.commercial a {background: url("../img/home/usage04.png") no-repeat left 20px center;}
.btn_usage li.independent_use a {background: url("../img/home/usage05.png") no-repeat left 25px center;}
.btn_usage li.hotel a {background: url("../img/home/usage06.png") no-repeat left 20px center;}
.btn_usage li.inhouse a:hover {background: url("../img/home/usage01_h.png") no-repeat left 22px center;}
.btn_usage li.apartment a:hover {background: url("../img/home/usage02_h.png") no-repeat left 20px center;}
.btn_usage li.government a:hover {background: url("../img/home/usage03_h.png") no-repeat left 20px center;}
.btn_usage li.commercial a:hover {background: url("../img/home/usage04_h.png") no-repeat left 20px center;}
.btn_usage li.independent_use a:hover {background: url("../img/home/usage05_h.png") no-repeat left 25px center;}
.btn_usage li.hotel a:hover {background: url("../img/home/usage06_h.png") no-repeat left 20px center;}

@media screen and (max-width: 1150px){
  .btn_ar li {
    width: 32%;
    margin: 0 2% 20px 0;
  }
  .btn_ar li a {
    font-size: 1.4rem;
    padding: 0 10px;
  }
  .btn_ar li a::after {right: 10px;}
  .btn_usage li a {padding: 0 10px 0 65px;}
  .btn_usage li.inhouse a {background: url("../img/home/usage01.png") no-repeat left 12px center / auto 34px;}
  .btn_usage li.apartment a {background: url("../img/home/usage02.png") no-repeat left 10px center / auto 37px;}
  .btn_usage li.government a {background: url("../img/home/usage03.png") no-repeat left 10px center / auto 37px;}
  .btn_usage li.commercial a {background: url("../img/home/usage04.png") no-repeat left 10px center / auto 34px;}
  .btn_usage li.independent_use a {background: url("../img/home/usage05.png") no-repeat left 15px center / auto 32px;}
  .btn_usage li.hotel a {background: url("../img/home/usage06.png") no-repeat left 10px center / auto 33px;}
  .btn_usage li.inhouse a:hover {background: url("../img/home/usage01_h.png") no-repeat left 12px center / auto 34px;}
  .btn_usage li.apartment a:hover {background: url("../img/home/usage02_h.png") no-repeat left 10px center / auto 37px;}
  .btn_usage li.government a:hover {background: url("../img/home/usage03_h.png") no-repeat left 10px center / auto 37px;}
  .btn_usage li.commercial a:hover {background: url("../img/home/usage04_h.png") no-repeat left 10px center / auto 34px;}
  .btn_usage li.independent_use a:hover {background: url("../img/home/usage05_h.png") no-repeat left 15px center / auto 32px;}
  .btn_usage li.hotel a:hover {background: url("../img/home/usage06_h.png") no-repeat left 10px center / auto 33px;}
}
@media screen and (max-width: 900px){
  .btn_ar li a {
    font-size: 1.2rem;
  }
  .btn_ar li a::after {right: 10px;}
  .btn_usage li a {padding: 0 10px 0 55px;}
  .btn_usage li.inhouse a {background: url("../img/home/usage01.png") no-repeat left 7px center / auto 34px;}
  .btn_usage li.apartment a {background: url("../img/home/usage02.png") no-repeat left 5px center / auto 37px;}
  .btn_usage li.government a {background: url("../img/home/usage03.png") no-repeat left 5px center / auto 37px;}
  .btn_usage li.commercial a {background: url("../img/home/usage04.png") no-repeat left 5px center / auto 34px;}
  .btn_usage li.independent_use a {background: url("../img/home/usage05.png") no-repeat left 10px center / auto 32px;}
  .btn_usage li.hotel a {background: url("../img/home/usage06.png") no-repeat left 5px center / auto 33px;}
  .btn_usage li.inhouse a:hover {background: url("../img/home/usage01_h.png") no-repeat left 7px center / auto 34px;}
  .btn_usage li.apartment a:hover {background: url("../img/home/usage02_h.png") no-repeat left 5px center / auto 37px;}
  .btn_usage li.government a:hover {background: url("../img/home/usage03_h.png") no-repeat left 5px center / auto 37px;}
  .btn_usage li.commercial a:hover {background: url("../img/home/usage04_h.png") no-repeat left 5px center / auto 34px;}
  .btn_usage li.independent_use  a:hover {background: url("../img/home/usage05_h.png") no-repeat left 10px center / auto 32px;}
  .btn_usage li.hotel a:hover {background: url("../img/home/usage06_h.png") no-repeat left 5px center / auto 33px;}
}

/** commmon_section **/

.common_section {
  margin: 0 auto 180px;
  overflow: hidden;
}
.common_section:nth-last-of-type(1) {margin: 0 auto;}
.common_section > section {margin: 0 auto 90px;}
.common_section > section:nth-last-of-type(1) {margin: 0 auto;}
.common_section > section > section {margin: 0 auto 60px;}
.common_section > section > section:nth-last-of-type(1) {margin: 0 auto;}
.common_section h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color02);
  margin: 0 0 90px;
  line-height: 1.3;
  padding: 0 0 0 0.75em;
  border-left: solid 3px var(--color01);
}
.common_section .h2_common60 {margin: 0 0 60px;}
.common_section .h2_common30 {margin: 0 0 30px;}
.common_section > section h3 {
  position: relative;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--color01);
  margin: 0 0 60px;
  line-height: 1.3;
  padding: 0 0 0 1.2em;
  z-index: 0;
}
.common_section > section h3::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1em;
  height: 2px;
  background: var(--color01);
  top: 0.7em;
  left: 0;
  z-index: 0;
}
.common_section > section section h4 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color01);
  margin: 0 0 20px;
  line-height: 1.3;
}

/** hX **/

.h2_center {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color01);
  line-height:1.4;
  text-align: center;
  margin: 0 0 40px;
}
.h2_left {margin: 0 0 50px;}
.h2_left span {display: block;}
.h2_left span:nth-of-type(1) {
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color03);
  line-height: 1.1;
}
.h2_left span:nth-of-type(2) {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color01);
  line-height:1.6;
}
.area_t .h2_left span:nth-of-type(1) ,
.area_t .h2_left span:nth-of-type(2) {color: #FFFFFF;}
.h3_center {
  width: 100%;
  text-align: center;
  margin: 0 auto 60px;
}
.h3_center span:nth-of-type(1) {
  display: inline-block;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.1;
  border-bottom: solid 1px var(--color03);
  padding: 0 0 2px;
}
.h3_center span:nth-of-type(2) {
  display: block;
  font-weight: 500;
  font-size: 3.2rem;
  color: var(--color01);
  line-height: 1.3;
  margin: 10px auto 0;
}

/** table **/

.table_common {table-layout: fixed;}
.table_common th {
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding: 1em;
  border: solid 1px var(--color04);
}
.table_common td {
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  padding: 1em;
  border: solid 1px var(--color04);
  vertical-align: top;
}
.table_common td.center {text-align: center;}
.table_common .bg_color01 {color: #FFFFFF;}
.table_common ul li {
  position: relative;
  padding: 0 0 0 0.7em;
}
.table_common ul li::before {
  position: absolute;
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  background: var(--color03);
  border-radius: 50%;
  top: 0.65em;
  left: 0;
}
.table_common caption {
  font-size: 1.4rem;
  caption-side: bottom;
  text-align: right;
}

/** tab **/
.tab_content {display: none;}
.tab_content.active {display: block;}

/** faq **/

.faq_ac {
  position: relative;
  z-index: 0;
}
.faq_ac::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background: var(--color03);
  bottom: 0;
  left: auto;
  right: 0;
  transition: 0.5s;
}
.faq_ac:hover::after {
  width: 100%;
  left: 0;
  right: 0;
}
.faq_ac:nth-of-type(1) {border-top: solid 1px var(--color04);}
.faq_ac dt {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 30px 90px 30px 70px;
  border-bottom: solid 1px var(--color04);
  cursor: pointer;
}
.faq_ac dt::before {
  position: absolute;
  display: block;
  content: "Q";
  font-size: 2.2rem;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  left: 28px;
  top: 28px;
}
.faq_ac dt::after {
  position: absolute;
  display: block;
  content: "";
  width: 46px;
  height: 46px;
  margin: auto;
  right: 22px;
  top: -100%;
  bottom: -100%;
  background: url("../img/ac.svg") no-repeat center / cover;
  transition: 0.5s;
}
.faq_ac dt.open::after {transform: rotate(180deg);}
.faq_ac dd {
  display: none;
  font-size: 1.5rem;
  color: var(--color01);
  line-height: 1.5;
  padding: 30px 70px 30px 100px;
  background: #F5F5F5;
  border-bottom: solid 1px var(--color04);
}
.faq_ac dd span {position: relative;}
.faq_ac dd span::before {
  position: absolute;
  display: block;
  content: "A.";
  font-size: 2.2rem;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  left: -1.3em;
  top: -0.1em;
}

/* -----------------------------------------------------------
 single
----------------------------------------------------------- */

.related_section {
  position: relative;
  padding: 90px 0 0;
  z-index: 0;
}
.related_section::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: calc(210px + 10vw);
  max-height: 330px;
  background: #F5F5F5;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.editor_contents > *:nth-child(1) {margin-top: 0!important;}
.editor_contents > *:nth-last-child(1) {margin-bottom: 0!important;}
.editor_contents h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  background: var(--color01);
  margin: 90px 0 60px;
  padding: 0.5em 1em;
  clear: both;
}
.editor_contents h3 {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color02);
  line-height: 1.5;
  margin: 60px 0 30px;
  padding: 0.2em 0.5em 0.5em 1em;
  border-bottom: solid 1px var(--color04);
  clear: both;
}
.editor_contents h3::before {
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: 90%;
  background: var(--color01);
  top: 0;
  left: 0;
}
.editor_contents h4 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color01);
  line-height: 1.5;
  margin: 50px 0 30px;
  padding: 0.25em 0.5em;
  border-top: solid 1px var(--color01);
  border-bottom: solid 1px var(--color01);
  clear: both;
}
.editor_contents h5 {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color02);
  line-height: 1.5;
  margin: 40px 0 20px;
  padding: 0 0 0.3em;
  border-bottom: solid 1px var(--color04);
  clear: both;
}
.editor_contents h6 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color02);
  line-height: 1.5;
  margin: 30px 0 20px;
  clear: both;
}
.editor_contents p {
  margin: 0 0 20px;
  font-weight: 300;
}
.editor_contents a {
  color: #1A73E8;
  text-decoration: underline;
}
.editor_contents table {
  width: auto;
  height: auto;
  margin: 0 0 20px;
  max-width: 100%;
  clear:both;
}
.editor_contents table th {
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background: var(--color01);
  padding: 0.7em 1em;
  border: solid 1px var(--color04);
}
.editor_contents table td {
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  padding: 0.7em 1em;
  border: solid 1px var(--color04);
  vertical-align: top;
}
.editor_contents ul {margin: 0 0 20px;}
.editor_contents ul li {
  position: relative;
  line-height:1.5;
  margin: 0 0 0.2em;
  padding: 0 0 0 1.2em;
}
.editor_contents ul li::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: var(--color01);
  border-radius: 50%;
  top: 0.4em;
  left: 0;
}
.editor_contents ul.link li::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.4em;
  height: 0.4em;
  background: none;
  border-top: solid 3px var(--color01);
  border-right: solid 3px var(--color01);
  border-radius: 0;
  transform: rotate(45deg);
  top: 0.55em;
  left: 0.2em;
}
.editor_contents ul.link li a {
  color: var(--color02);
  text-decoration: none;
}
.editor_contents ul.link li a:hover {text-decoration: underline;}
.editor_contents ul.link li a::after {
  display: inline-block;
  content: "";
  width: 1.2em;
  height: 1.2em;
  margin: 0 0 0.25em 0.5em;
  vertical-align: middle;
}
.editor_contents a[target="_blank"]::after {background: url("../img/link_target.png") no-repeat center / 100%;}
.editor_contents a[href$=".pdf"]::after {background: url("../img/link_pdf.png") no-repeat center / auto 100%;}
.editor_contents a[href$=".doc"]::after,
.editor_contents a[href$=".docs"]::after {background: url("../img/link_word.png") no-repeat center / auto 100%;}
.editor_contents a[href$=".xls"]::after,
.editor_contents a[href$=".xlsx"]::after {background: url("../img/link_excel.png") no-repeat center / auto 100%;}
.editor_contents ol {margin:0 0 20px;}
.editor_contents ol li {
  position: relative;
  line-height: 1.5;
  margin: 0 0 0.2em;
  padding: 0 0 0 1.2em;
  counter-increment: item;
}
.editor_contents ol li::before {
  position: absolute;
  display: block;
  color: var(--color01);
  content: counter(item)".";
  top: 0;
  left: 0;
}
.editor_contents .bg_box {margin: 40px auto;}
.editor_contents .bg_box p {font-weight: 400;}
.editor_contents .bg_box > *:nth-last-of-type(1) {margin-bottom: 0;}
.editor_contents figure {margin: 40px auto;}
.editor_contents figure img {display: block;}
.editor_contents figure figcaption {
  font-size: 1.4rem;
  font-weight: 300;
  margin: 1em 0 0;
}
.editor_contents .wp-block-columns.is-layout-flex {gap: 0;}

.editor_contents .wp-block-pullquote {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.875;
  padding: 0;
}
.editor_contents .wp-block-pullquote blockquote {
  background: #F5F5F5;
  padding: 30px;
  text-align: left;
}
.editor_contents .wp-block-pullquote blockquote p {font-weight: 400;}
.editor_contents .wp-block-pullquote blockquote cite {
  display: block;
  font-weight: 400;
  text-align: right;
}

.editor_contents .btn_cv {
  width: 380px;
  margin: 80px auto 0;
}
.editor_contents .btn_cv a {
  display: block;
  height: 100%;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  padding: 30px 20px;
  background: var(--color01);
  text-decoration: none;
  transition: 0.5s;
}
.editor_contents .btn_cv a:hover {opacity: 0.5;}

.editor_contents .is-provider-youtube.wp-block-embed-youtube > .wp-block-embed__wrapper {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0;
}
.editor_contents .is-provider-youtube.wp-block-embed-youtube > .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}
.editor_contents > .g_map {
  position: relative;
  width: 100%;
  height: 0;
  padding: 60% 0 0;
  z-index: 0;
}
.editor_contents > .g_map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

/** column_single **/

.column_single .area_g {overflow: hidden;}
.column_single .post_date {
  color: var(--color01);
  padding: 90px 0 0;
}
.column_single h1 {
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--color01);
  line-height: 1.6;
  margin: 0 0 90px;
}
.column_single .editor_contents {
  background: #FFFFFF;
  padding: 60px;
  margin: 0 auto;
}
.column_single .editor_contents .column_eyecatch {margin: 0 auto 40px;}
.column_single .editor_contents .column_eyecatch img {
  width: auto;
  margin: 0 auto;
}
.column_single .wp-block-columns {overflow: hidden;margin: 0 auto 5%;}
.column_single .wp-block-columns .wp-block-column {margin: 0 5% 0 0;}
.column_single .wp-block-columns .wp-block-column:nth-last-of-type(1) {margin: 0;}
.column_single .wp-block-column figure {margin: 0;}
.column_single .wp-block-column figure {
  position: relative;
  aspect-ratio: 3 / 2;
}
.column_single .wp-block-column figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/** case_single **/

.case_title {
  position: relative;
  height: 260px;
  margin: 0 auto 90px;
  background: url("../img/case/sample01.jpg") no-repeat center / cover;
  z-index: 0;
}
.case_title::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top,  rgba(0,85,154,0.8) 0%, rgba(0,85,154,0.9) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,85,154,0.8) 0%,rgba(0,85,154,0.9) 100%);
  background: linear-gradient(to bottom,  rgba(0,85,154,0.8) 0%,rgba(0,85,154,0.9) 100%);
  opacity: 0.8;
  top: 0;
  left: 0;
  right: 0;
}
.case_title h1 {
  position: absolute;
  width: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.case_cat {
  font-size: 0;
  margin: 0 0 10px;
}
.case_cat li {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--color01);
  line-height: 1.2;
  padding: 0.4em;
  margin:0 10px 5px 0;
  border: solid 1px var(--color01);
}
.case_slider {margin: 0 auto 90px!important;}
.case_slider .slick-slide {aspect-ratio: 3 / 2;}
.case_slider .slick-slide img {
  width: auto;
  height: 100%;
  margin: auto;
}
.case_slider .slick-prev {
  left: auto;
  right: calc(50% + 100px);
  top: auto;
  bottom: -35px;
}
.case_slider .slick-next {
  right: auto;
  left: calc(50% + 100px);
  top: auto;
  bottom: -35px;
}
.case_single .catch {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color01);
  line-height: 1.5;
  margin: 0 0 10px;
}
.case_single .catch + p {font-weight: 300;}
.case_single .editor_contents {
  padding: 90px 0;
  overflow: hidden;
}
.case_single .case_detail {
  table-layout: fixed;
  width: 47.5%;
  margin: 0 5% 90px 0;
  float: left;
}
.case_single .case_detail:nth-of-type(2) {
  margin: 0 0 90px;
  clear: none;
}
.case_single .case_detail th {
  width: 30%;
  color: var(--color02);
  background: #F5F5F5;
}
.case_single .wp-block-columns {overflow: hidden;margin: 0 auto 5%;}
.case_single .wp-block-columns .wp-block-column {margin: 0 5% 0 0;}
.case_single .wp-block-columns .wp-block-column:nth-last-of-type(1) {margin: 0;}
.case_single .wp-block-column figure {margin: 0;}
.case_single .wp-block-column figure {
  position: relative;
  aspect-ratio: 3 / 2;
}
.case_single .wp-block-column figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/** toc **/

.editor_contents #toc_container + h2 {margin-top: 70px;}
.editor_contents #toc_container {
  width: 100%;
  background: #f5f5f5;
  border: none;
  padding: 0;
  margin: 70px 0;
}
.editor_contents #toc_container .toc_title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  background: var(--color01);
  margin: 0;
  padding: 0.5em 1em;
  text-align: left;
}
.editor_contents #toc_container .toc_title + .toc_list {
  margin: 0;
  padding: 30px 40px;
}
.editor_contents #toc_container .toc_title + .toc_list li {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
}
.editor_contents #toc_container .toc_title + .toc_list li::before {content: none;}
.editor_contents #toc_container .toc_title + .toc_list li a {color: var(--color01);}
.editor_contents #toc_container ul ul {margin: 0 0 0 1em;}


/* -----------------------------------------------------------
 Archive
----------------------------------------------------------- */

/** post_info **/

.post_info {
  margin: 0 0 10px;
  line-height: 1.3;
  overflow: hidden;
}
.post_info .info_serach {float: left;}
.post_info .info_number {float: right;}

/** pagenation **/

.pagenation {
  width: 100%;
  clear: both;
  text-align: center;
  padding: 90px 0 0;
}
.wp-pagenavi > span ,
.wp-pagenavi > a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #000000;
  text-align: center;
  text-decoration: none;
  margin: 0 4px 4px;
  border: solid 1px var(--color02);
  border-radius: 999px;
  vertical-align: top;
}
.wp-pagenavi > .current {
  background: var(--color01);
  color: #FFFFFF;
}
.wp-pagenavi > a:hover,
.wp-pagenavi > a.first,
.wp-pagenavi > a.last {
  border: solid 1px var(--color01);
  color: var(--color01);
}
.wp-pagenavi > a.previouspostslink ,
.wp-pagenavi > a.nextpostslink {position: relative;}
.wp-pagenavi > a.previouspostslink::before ,
.wp-pagenavi > a.nextpostslink::before {
  position: absolute;
  display: block;
  content:"";
  width: 1em;
  height: 1em;
  background: url("../img/ico_arn.svg") no-repeat center;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.wp-pagenavi > a.previouspostslink::before {transform: rotate(180deg);}
.wp-pagenavi > a.previouspostslink:hover::before ,
.wp-pagenavi > a.nextpostslink:hover::before {
  background: url("../img/ico_arn_h.svg") no-repeat center;
}
.wp-pagenavi > .extend {
  width: 20px;
  border: none;
}
.wp-pagenavi > .pages {display:none;}

/** NEWS-archive **/

.news_list {border-top: solid 1px var(--color04);}
.news_list li {
  font-size: 0;
  padding: 40px 0;
  border-bottom: solid 1px var(--color04);
}
.news_list li p {
  display: inline-block;
  line-height: 1.5;
  vertical-align: middle;
}
.news_list li p:nth-of-type(1) {
  width: 200px;
  font-size: 1.3rem;
  color: var(--color01);
  padding: 0 30px;
}
.news_list li p:nth-of-type(2) {
  width: calc(100% - 200px);
  font-size: 1.5rem;
  color: var(--color02);
}
.news_list li a:hover p:nth-of-type(2) {text-decoration: underline;}
.news_list li p:nth-of-type(1) > span {
  display: inline-block;
  vertical-align: middle;
}
.news_list li p:nth-of-type(1) > span:nth-of-type(1) {
  padding: 0 0.75em 0 0;
  border-right: solid 1px var(--color01);
}
.news_list li p:nth-of-type(1) > span:nth-of-type(2) {padding: 0 0 0 0.75em;}
.news_list li p:nth-of-type(1) > span:nth-of-type(2) > span {display: block;}

/** COLUMN-archive **/

.column_list {overflow: hidden;}
.column_list li {
  width: 31%;
  margin: 0 3.5% 60px 0;
  float: left;
}
.column_list li:nth-child(3n) {margin: 0 0 60px;}
.column_list li:nth-child(3n+1) {clear: both;}
.column_list li a {text-decoration: none;}
.column_list li a div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 400 / 268;
  margin:0 auto 20px;
  z-index: 0;
  overflow: hidden;
}
.column_list li a div > img {
  object-fit: cover;
  transition: 0.5s;
  z-index: -1;
}
.column_list li a:hover div > img {transform: scale(1.1);}
.column_list li a dl {transition: 0.5s;}
.column_list li a:hover dl {opacity: 0.5;}
.column_list li a dl dt {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color01);
  line-height: 1.3;
  margin:0 0 10px;
}
.column_list li a dl dd {font-size: 1.5rem;}
.column_archive .pagenation {padding: 20px 0 0;}

/** case-archive **/

.case_list {overflow: hidden;}
.case_list > li {
  width: 31%;
  margin: 0 3.5% 60px 0;
  float: left;
}
.case_list > li:nth-child(3n) {margin: 0 0 60px;}
.case_list > li:nth-child(3n+1) {clear: both;}
.case_list > li a {text-decoration: none;}
.case_list > li a div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 400 / 268;
  margin:0 auto 30px;
  z-index: 0;
  overflow: hidden;
}
.case_list > li a div > img {
  object-fit: cover;
  transition: 0.5s;
  z-index: -1;
}
.case_list > li a:hover div > img {transform: scale(1.1);}
.case_list > li a dl {transition: 0.5s;}
.case_list > li a:hover dl {opacity: 0.5;}
.case_list > li a dl dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color01);
  line-height: 1.3;
  margin:0 0 15px;
}
.case_list > li a dl dd ul {
  font-size: 0;
  margin: 0 0 10px;
}
.case_list > li a dl dd ul li {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--color01);
  line-height: 1.2;
  padding: 0.4em;
  margin:0 10px 5px 0;
  border: solid 1px var(--color01);
}
.case_list > li a dl dd p {
  font-size: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.case_archive .pagenation {padding: 20px 0 0;}

.case_search {margin: 0 auto 60px;}
.case_search h2 {
  position: relative;
  height: 90px;
  line-height: 90px;
  font-size: 1.8rem;
  text-align: center;
  border-top: solid 1px var(--color04);
  border-bottom: solid 1px var(--color04);
  z-index: 0;
  cursor: pointer;
}

.case_search h2::before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background: var(--color03);
  bottom: -1px;
  left: auto;
  right: 0;
  transition: 0.5s;
}
.case_search h2:hover::before {
  width: 100%;
  left: 0;
  right: 0;
}

.case_search h2::after {
  position: absolute;
  display: block;
  content: "";
  width: 46px;
  height: 46px;
  margin: auto;
  right: 22px;
  top: -100%;
  bottom: -100%;
  background: url(../img/ac.svg) no-repeat center / cover;
  transition: 0.5s;
}
.case_search h2.open::after {transform: rotate(180deg);}
.case_search .ac_box {
  display: none;
  padding: 60px 50px;
  background: #F5F5F5;
  border-bottom: solid 1px var(--color02);
  line-height: 1.5;
}
.case_search .ac_box dl {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 0 15px;
  z-index: 0;
}
.case_search .ac_box dl::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--color02);
  top: 0;
  left: 110px;
}
.case_search .ac_box dl:nth-of-type(1) {padding: 15px 0;}
.case_search .ac_box dl dt {
  width: 110px;
  padding: 2px 0 0;
  pointer-events: none;
}
.case_search .ac_box dl dd {
  width: calc(100% - 110px);
  padding: 0 30px;
}
.case_search label {
  display: inline-block;
  width: auto;
  font-feature-settings: "palt";
  font-size: 1.4rem;
  margin: 0 1em 0 0;
  cursor: pointer;
}
.case_search label input + span {position: relative;}
.case_search label input + span::before {
  display: inline-block;
  content: "";
  width: 1.1em;
  height: 1.1em;
  margin: 0 0.5em 0.2em 0;
  border: solid 1px var(--color02);
  vertical-align: middle;
}
.case_search label input:checked + span::before {
  background: var(--color01);
  border: solid 1px var(--color01);
}
.case_search label input + span::after {
  position: absolute;
  display: none;
  content: "";
  width: 0.3em;
  height: 0.65em;
  border-right: solid 2px #FFFFFF;
  border-bottom: solid 2px #FFFFFF;
  transform: rotate(40deg);
  left: 0.42em;
  top: 0.25em;
  z-index: 1;
}
.case_search label input:checked + span::after {display: block;}

.case_search .ac_box p {margin: 60px auto;}
.case_search .ac_box p span {
  display: inline-block;
  width: 110px;
}
.case_search .ac_box p input[type="text"] {
  display: inline-block;
  width: 440px;
  height: 40px;
  padding: 0 0.5em;
  border: solid 1px var(--color02);
}
.case_search .ac_box button {
  position: relative;
  display: block;
  width: 300px;
  height: 50px;
  margin: 0 auto;
  border: solid 1px var(--color02);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 0;
  transition: 0.3s;
}
.case_search .ac_box button:hover {
  color: #FFFFFF;
  border: solid 1px var(--color01);
}
.case_search .ac_box button::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 0;
  background: var(--color01);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.3s;
}
.case_search .ac_box button:hover::after {height: 100%;}
.case_archive .data_list li p:nth-of-type(1) a:hover {
  color: var(--color01);
  border: solid 1px var(--color01);
}
.case_archive .data_list li p:nth-of-type(1) a::after {transform: rotate(0);}
.case_archive .data_list li p:nth-of-type(1) a:hover::after {background: url("../img/ico_ar_h.svg") no-repeat center / cover;}
.case_archive .data_list li p:nth-of-type(1) a:hover::after {top: 0;}

.case_archive .btn_ar {margin: 0 auto 60px;}
.case_archive .btn_ar li {
  width: 31%;
  margin: 0 3.5% 3.5% 0;
}
.case_archive .btn_ar li:nth-child(3n) {margin: 0 0 3.5%;}

/* -----------------------------------------------------------
 HOME
----------------------------------------------------------- */

/** fixed **/

.loading_area {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0;
  background: #FFFFFF;
  z-index: 1100;
  transform: translateY(-31vh);
  transition: 0.5s;
}
.loading_area::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 30vh;
  background: #00559A;
  top: 100%;
  left: 0;
  right: 0;
}
.loading_area.loading {
  height: 100vh;
  transform: translateY(0);
}
.loading_area p {
  width: 235px;
  height: 110px;
  overflow: hidden;
}
.loading_area p img {
  animation: loading_logo 3s linear forwards;
  display: block;
}
@keyframes loading_logo {
  0% {transform: translateY(102%);}
  10% {transform: translateY(102%);}
  20% {transform: translateY(0);}
  80% {transform: translateY(0%);}
  90% {transform: translateY(-102%);}
  100% {transform: translateY(-102%);}
}

.fixed_movie {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.fixed_movie video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fixed_movie .v_over {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,85,154,0.8);
  z-index: 1;
}
.float_banner {
  position:fixed;
  bottom: 200px;
  right: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.float_banner.show {
  visibility: visible;
  opacity: 1;
}
.float_banner li {
  position: relative;
  margin: 20px 0 0;
  transition:transform 0.5s linear,opacity 0.25s linear;
}
.float_banner li.close {
  opacity: 0;
  margin: 0;
  transform: translateX(300px);
}
.float_banner li a {transition: 0.5s;}
.float_banner li a:hover {opacity: 0.5;}
.float_banner li img {display: block;}
.float_banner li span {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color01);
  top: 10px;
  right: 10px;
  z-index: 1;
  cursor: pointer;
}
.float_banner li span::before {
  display: block;
  content: "×";
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
}
.float_banner li:nth-child(2) span {background: #FFFFFF;}
.float_banner li:nth-child(2) span::before {color: var(--color01);}

@media screen and (max-width: 1000px){
  .float_banner li {width: 220px;}
  .float_banner li span {
    width: 15px;
    height: 15px;
    top: 5px;
    right: 5px;
  }
  .float_banner li span::before {
    font-size: 12px;
    line-height: 15px;
  }
}

/** home_kv **/

.home_kv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: 0;
}
.home_kv div {
  color: #FFFFFF;
  text-align: center;
}
.home_kv div p:nth-of-type(1) {
  font-family: 'Oswald', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 11rem;
  font-weight: 500;
  line-height: 1.1;
  margin:0 auto 20px;
}
.home_kv div p:nth-of-type(2) {
  width: 360px;
  margin: 0 auto;
}
.home_kv .scroll {
  position: absolute;
  width: 50px;
  height: 50px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 1;
  cursor: pointer;
}
.home_kv .scroll::after {
  position: absolute;
  display: block;
  content: "";
  width: 96%;
  height: 96%;
  border: solid 1px #FFFFFF;
  border-radius: 50%;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  transition: 0.5s;
}
.home_kv .scroll:hover::after {opacity: 0;}
.arrow_icon {
	position: absolute;
	transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  margin: auto;
  left: -100%;
  right: -100%;
  z-index: 2;
}
.arrow_icon .circle {
	transition: stroke-dashoffset 0.3s ease;
	stroke-dasharray: 180;
	stroke-dashoffset: 180;
}
.scroll:hover .arrow_icon .circle {stroke-dashoffset: 0;}
.arrow_icon .arrow {
  stroke: #FFFFFF;
  stroke-width: 1.5;
  transition: 0.5s;
}
.scroll:hover .arrow_icon .arrow {stroke: var(--color01);}
.home_lead {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 125px 30px;
}
.home_lead p {
  line-height: 2.25;
  margin: 0 auto 40px;
}
.home_lead p:nth-last-child(1) {
  width: 150px;
  margin: 60px auto 0;
}
.home .h2_left + p {
  font-size: 1.5rem;
  line-height: 2.1;
}

@media screen and (max-width: 1000px){
  .home_kv div p:nth-of-type(1) {font-size: 9rem;}
}

/** home_facility **/

.home_facility {padding: 200px 0 50px;}
.home_facility .box {position: relative;}
.home_facility .box .btn_more {
  position: absolute;
  top: 20px;
  right: 30px;
}
.home_facility .slider {
  max-width: 1000px;
  margin: 0 auto!important;
}
.home_facility .slider .slick-list {overflow: visible;}
.home_facility .slider .slick-slide {
  padding: 0 20px;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.home_facility .slider .slick-slide.slick-active, .home_facility .slider .slick-slide.slick-current {opacity: 1;}
.home_facility .slider li a {
  line-height: 1.6;
  text-decoration: none;
}
.home_facility .slider li a div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 480 / 300;
  margin:0 auto 20px;
  z-index: 0;
  overflow: hidden;
}
.home_facility .slider li a div > img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.5s;
  z-index: -1;
}
.home_facility .slider li a:hover div > img {transform: scale(1.1);}
.home_facility .slider li a div > p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.3;
  transition: 0.5s;
}
.home_facility .slider li a div > p span {
  display: block;
  font-family: 'Oswald', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3rem;
  font-weight: 500;
}
.home_facility .slider li a:hover div > p {opacity: 0.5;}
.home_facility .slider li a > p {
  padding: 0 2em;
  transition: 0.5s;
}
.home_facility .slider li a:hover > p {opacity: 0.5;}
.home_facility .slider .slick-arrow {
  top: auto;
  bottom: -10px;
  transform: translate(0,0);
}
.home_facility .slider .slick-arrow.slick-prev {right: calc(50% + 100px);left: auto;}
.home_facility .slider .slick-arrow.slick-next {left: calc(50% + 100px);right: auto;}

/** home_mobility **/

.home_mobility {padding: 120px 0 220px;}
.home_mobility .box {
  position: relative;
  z-index: 0;
}
.home_mobility .btn_more {margin: 40px 0 0;}
.home_mobility figure {
  position: absolute;
  width: 80%;
  top: -120px;
  left: 380px;
}
@media screen and (max-width: 1250px){
  .home_mobility figure {
    width:calc(100% - 380px);
    top: 0;
  }
}

/** home_news **/

.home_news {
  padding: 120px 0;
  overflow: hidden;
}
.home_news figure {
  width: 46%;
  float: left;
}
.home_news .box > div {
  position: relative;
  width: 46%;
  float: right;
}
.home_news .box > div .btn_more {
  position: absolute;
  top: 25px;
  right: 0;
}
.home_news .box > div .news_outer {
  height: 385px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color03) var(--color04);
}
.home_news .box > div .news_outer::-webkit-scrollbar {width: 5px;}
.home_news .box > div .news_outer::-webkit-scrollbar-track {background: var(--color04);}
.home_news .box > div .news_outer::-webkit-scrollbar-thumb {background: var(--color03);}
.home_news .box > div .news_outer dl {
  padding: 20px 0;
  border-bottom:solid 1px var(--color04);
}
.home_news .box > div .news_outer dl:nth-of-type(1) {border-top:solid 1px var(--color04);}
.home_news .box > div .news_outer dl dt {
  color: var(--color01);
  font-size: 1.3rem;
  line-height: 1.6;
  margin :0 0 10px;
}
.home_news .box > div .news_outer dl dt > span:nth-of-type(1) {
  margin: 0 1em 0 0;
  padding: 0 1em 0 0;
  border-right: solid 1px var(--color01);
}
.home_news .box > div .news_outer dl dt > span:nth-of-type(2) span {margin: 0 1em 0 0;}
.home_news .box > div .news_outer dl dd {
  font-size: 1.5rem;
  line-height: 1.3;
}
.home_about {
  padding: 120px 0;
  overflow: hidden;
}
.home_about .box {position: relative;}
.home_about .btn_more {margin: 40px 0 0;}
.home_about figure {
  position: absolute;
  width: 72%;
  top: -40px;
  left: 520px;
}

@media screen and (max-width: 1250px){
  .home_about figure {
    width:calc(100% - 380px);
    top: 0;
  }
}

/** home_case **/

.home_case {padding: 120px 0;}
.home_case .box {position: relative;}
.home_case h2 + p {margin: 0 0 70px;}
.home_case .box > div .btn_more {
  position: absolute;
  top: 120px;
  right: 30px;
}
.home_case .slider {
  position: static!important;
  max-width: 920px;
  margin: 0 0 0 100px!important;
}
.home_case .slider .slick-list {overflow: visible;}
.home_case .slider .slick-slide {
  padding: 0 50px 0 0;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.home_case .slider .slick-slide.slick-active, .home_case .slider .slick-slide.slick-current {opacity: 1;}
.home_case .slider li a {text-decoration: none;}
.home_case .slider li a div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 400 / 268;
  margin:0 auto 30px;
  z-index: 0;
  overflow: hidden;
}
.home_case .slider li a div > img {
  object-fit: cover;
  transition: 0.5s;
  z-index: -1;
}
.home_case .slider li a:hover div > img {transform: scale(1.1);}
.home_case .slider li a dl {transition: 0.5s;}
.home_case .slider li a:hover dl {opacity: 0.5;}
.home_case .slider li a dl dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color01);
  line-height: 1.3;
  margin:0 0 15px;
}
.home_case .slider li a dl dd ul {
  font-size: 0;
  margin: 0 0 10px;
}
.home_case .slider li a dl dd ul li {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--color01);
  line-height: 1.2;
  padding: 0.4em;
  margin:0 10px 5px 0;
  border: solid 1px var(--color01);
}
.home_case .slider li a dl dd p {
  font-size: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.home_case .slider .slick-arrow {
  top: 120px;
  bottom: auto;
  transform: translate(0,0);
}
.home_case .slider .slick-arrow.slick-prev {right: 350px;left: auto;}
.home_case .slider .slick-arrow.slick-next {right: 280px;left: auto;}
.home_case section {margin: 90px auto 0;}
.home_case section + section {margin: 60px auto 0;}
.home_case section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color01);
  line-height: 1.3;
  margin: 0 0 20px;
}
.home_case section h3::after {
  display: inline-block;
  margin: 0 0 0 0.5em;
  content: "";
  width: 78px;
  height: 10px;
  background: url("../img/home/h3_after.svg") no-repeat center / cover;
  vertical-align: middle;
}

@media screen and (max-width: 950px){
  .home_case .slider .slick-arrow.slick-prev ,
  .home_case .slider .slick-arrow.slick-next {
    top: 125px;
    width: 30px;
    height: 30px;
  }
  .home_case .slider .slick-arrow.slick-prev {right: 270px;}
  .home_case .slider .slick-arrow.slick-next {right: 230px;}
}

/** home_column **/

.home_column {padding: 120px 0;}
.home_column .box {position: relative;}
.home_column h2 + p {margin: 0 0 70px;}
.home_column .box .btn_more {
  position: absolute;
  top: 120px;
  right: 30px;
}
.home_column .slider {
  position: static!important;
  max-width: 920px;
  margin: 0 0 0 100px!important;
}
.home_column .slider .slick-list {overflow: visible;}
.home_column .slider .slick-slide {
  padding: 0 50px 0 0;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.home_column .slider .slick-slide.slick-active, .home_column .slider .slick-slide.slick-current {opacity: 1;}
.home_column .slider li a {text-decoration: none;}
.home_column .slider li a div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 400 / 268;
  margin:0 auto 20px;
  z-index: 0;
  overflow: hidden;
}
.home_column .slider li a div > img {
  object-fit: cover;
  transition: 0.5s;
  z-index: -1;
}
.home_column .slider li a:hover div > img {transform: scale(1.1);}
.home_column .slider li a dl {transition: 0.5s;}
.home_column .slider li a:hover dl {opacity: 0.5;}
.home_column .slider li a dl dt {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color01);
  line-height: 1.3;
  margin:0 0 10px;
}
.home_column .slider li a dl dd {font-size: 1.5rem;}
.home_column .slider .slick-arrow {
  top: 120px;
  bottom: auto;
  transform: translate(0,0);
}
.home_column .slider .slick-arrow.slick-prev {right: 350px;left: auto;}
.home_column .slider .slick-arrow.slick-next {right: 280px;left: auto;}

@media screen and (max-width: 950px){
  .home_column .slider .slick-arrow.slick-prev ,
  .home_column .slider .slick-arrow.slick-next {
    top: 125px;
    width: 30px;
    height: 30px;
  }
  .home_column .slider .slick-arrow.slick-prev {right: 270px;}
  .home_column .slider .slick-arrow.slick-next {right: 230px;}
}

/** home_link **/

.home_link {height: 500px;}
.home_link section {
  position: relative;
  width: 50%;
  height: 500px;
  text-align: center;
  float: left;
}
.home_link section {background: url("../img/home/home_link01.jpg") no-repeat center / cover;}
.home_link section:nth-of-type(2) {background: url("../img/home/home_link02.jpg") no-repeat center / cover;}
.home_link section > a {
  display: block;
  height: 100%;
  mix-blend-mode: multiply;
  background: rgba(19,131,197,0.8);
  text-decoration: none;
  z-index: 0;
  transition: 0.5s;
}
.home_link section > a:hover {background: rgba(19,131,197,0.2);}
.home_link section > div.totop {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(0%)!important;
  z-index: 1;
  pointer-events: none;
}
.home_link section > div.totop.fadein {
  transform: translateY(-50%)!important;
}
.home_link section > div h2 {
  line-height: 1.3;
  margin: 0 auto 40px;
}
.home_link section > div h2 span:nth-of-type(1) {
  display: block;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}
.home_link section > div h2 span:nth-of-type(2) {
  font-size: 3.6rem;
  font-weight: 700;
}
.home_link section > div h2 + p {font-size: 1.5rem;}
.home_link section > div .btn_more {margin: 50px auto 0;}

@media screen and (max-width: 1000px){
  .home_link {height: 400px;}
  .home_link section {height: 400px;}
}

/** img_link **/

.home .img_link {
  padding: 90px 0 0;
  overflow: hidden;
}
.home .img_link li {
  width: 32%;
  margin:20px 2% 0 0;
  float: left;
}
.home .img_link li:nth-child(3n) {margin:20px 0 0;}
.home .img_link li a img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.home .img_link li a:hover img {opacity: 0.5;}
.home .img_link li a {text-decoration: none;}
.home .img_link li a p {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 10px;
}
.home .img_link li a p::after {
  display: inline-block;
  content: "";
  width: 0.83em;
  height: 0.77em;
  background: url("../img/ico_ar.svg") no-repeat center / cover;
  margin: 0 0 4px 0.5em;
  vertical-align: middle;
  transition: 0.5s;
}
.home .img_link li a:hover p::after {margin:0 0 4px 1em;}
.home .img_link li a[target="_blank"] p::after {
  width: 1.16em;
  height: 0.9em;
  background: url("../img/ico_target.png") no-repeat center / cover;
  margin:0 0 3px 0.5em;
}
.home .img_link li a[target="_blank"]:hover p::after {
  /*background: url("../img/ico_target_h.png") no-repeat center / cover;*/
  margin:0 0 3px 1em;
}

@media screen and (max-width: 900px){
  .home .img_link li a p {font-size: 1.5rem;}
}

/** home_faq **/

.home_faq {padding: 120px 0 180px;}
.home_faq .box {
  position: relative;
  overflow: hidden;
}
.home_faq h2 {
  width: 300px;
  float: left;
}
.home_faq h2 + div {
  width: calc(100% - 300px);
  float: left;
}
.home_faq .btn_more {
  position: absolute;
  left: 30px;
  top: 120px;
}

/* -----------------------------------------------------------
 portal
----------------------------------------------------------- */

.title_portal > div:nth-of-type(1) ,
.title_portal > div .h1_title {overflow: hidden;}
.title_portal > div .h1_title span {
  display: inline-block;
  transform: translateY(100%);
}
.title_portal .h1_title span:nth-child(1) {transition: 0.8s 0.03s;}
.title_portal .h1_title span:nth-child(2) {transition: 0.8s 0.06s;}
.title_portal .h1_title span:nth-child(3) {transition: 0.8s 0.09s;}
.title_portal .h1_title span:nth-child(4) {transition: 0.8s 0.12s;}
.title_portal .h1_title span:nth-child(5) {transition: 0.8s 0.15s;}
.title_portal .h1_title span:nth-child(6) {transition: 0.8s 0.18s;}
.title_portal .h1_title span:nth-child(7) {transition: 0.8s 0.21s;}
.title_portal .h1_title span:nth-child(8) {transition: 0.8s 0.24s;}
.title_portal .h1_title span:nth-child(9) {transition: 0.8s 0.27s;}
.title_portal .h1_title span:nth-child(10) {transition: 0.8s 0.30s;}
.title_portal .h1_title + p {
  opacity: 0;
  transform: translateY(100%);
  transition: 0.5s 1s;
}
.loaded .title_portal .h1_title span ,
.loaded .title_portal .h1_title + p {
  opacity: 1;
  transform: translateY(0);
}

.kv_portal {
  width: 100%;
  max-width: 1190px;
  padding: 0 40px;
  margin:0 auto 90px;
}
.kv_portal .v_area {
  position: relative;
  width: calc(50vw + 50%);
  height: 400px;
  z-index: 0;
  overflow: hidden;
}
.kv_portal .v_area video ,
.kv_portal .v_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title_portal + .kv_portal .v_area::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition: 0.65s;
}
.loaded .title_portal + .kv_portal .v_area::before {width: 0;}

.portal .h2_left {margin: 0 0 20px;}
.portal .lead {font-size: 1.5rem;}

.portal_link {
  margin: 150px auto 0;
  overflow: hidden;
}
.portal_link li {
  width: 47.5%;
  margin: 0 5% 5% 0;
  border: solid 1px #C5C5C5;
  float: left;
}
.portal_link li:nth-child(even) {margin: 0 0 5%;}
.portal_link li:nth-last-child(1) ,
.portal_link li:nth-last-child(2) {margin-bottom: 0;}
.portal_link li a {text-decoration: none;}
.portal_link li a div {overflow: hidden;}
.portal_link li a div img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.portal_link li a:hover div img {transform: scale(1.1);}
.portal_link li a p {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1em 1.5em;
  line-height: 1.5;
  transition: 0.5s;
}
.portal_link li a:hover p {color: var(--color01);}
.portal_link li a p::after {
  position: absolute;
  display: block;
  content: "";
  width: 0.8em;
  height: 0.75em;
  background: url("../img/ico_arn.svg") no-repeat center / cover;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 1.5em;
}
.portal_link li a:hover p::after {background: url("../img/ico_arn_h.svg") no-repeat center / cover;}

/** products **/

.portal_products {
  position: relative;
  height: auto;
  min-height: 410px;
  margin: 0 auto 130px;
  z-index: 0;
}
.portal_products:nth-of-type(even) {min-height: 530px;}
.portal_products:nth-last-of-type(1) {margin: 0 auto 220px;}
.portal_products::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  top: 80px;
  left: 0;
  right: 0;
  z-index: -1;
}
.portal_products .content_box {
  position: relative;
  z-index: 0;
}
.portal_products .content_box > figure {
  position: absolute;
  width: 50vw;
  height: 410px;
  top: 0;
  left: 50%;
  overflow: hidden;
}
.portal_products:nth-of-type(even) .content_box > figure {
  height: 530px;
  left: auto;
  right: 50%;
}
.portal_products .content_box > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portal_products .content_box h3 {
  width: 470px;
  line-height: 1;
  margin: 0 0 30px;
}
.portal_products:nth-of-type(even) .content_box h3 {margin: 0 0 40px calc(100% - 470px);}
.portal_products .content_box h3 > span:nth-of-type(1) {
  display: inline-block;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color03);
  text-align: center;
  margin: 0 2em 0 0;
}
.portal_products .content_box h3 > span > span {
  display: block;
  font-family: 'Oswald', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14rem;
  font-weight: 500;
  color: var(--color01);
}
.portal_products .content_box h3 > span:nth-of-type(2) {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color01);
}
.portal_products .content_box p {
  width: 470px;
  margin: 0 0 30px;
}
.portal_products:nth-of-type(even) .content_box p {margin: 0 0 30px calc(100% - 470px);}
.portal_products .content_box div {
  display: flex;
  justify-content: space-between;
  width: 470px;
  margin: 0 0 0 calc(100% - 470px);
}
.portal_products .content_box div figure {width: 46%;}
.portal_products .content_box div figure img {
  display: block;
  width: 100%;
}
.portal_products .content_box div figure figcaption {
  font-size: 1.2rem;
  text-align:right;
}

/** future **/

.portal_future {
  position: relative;
  padding: 130px 0 90px;
  background: #F5F5F5;
  z-index: 0;
}
.portal_future:nth-of-type(1) {
  margin: 150px 0 0;
  z-index :1;
}
.portal_future .content_box > div {
  position: relative;
  z-index: 1;
}
.portal_future:nth-of-type(even) .content_box > div {
  padding: 0 0 0 60%;
}
.portal_future .content_box > div h2 + p {
  font-size: 1.5rem;
  line-height: 2.1;
  margin: 0 0 40px;
}
.portal_future figure {
  position: absolute;
  width: calc(50vw + 10%);
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.portal_future figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.portal_future:nth-of-type(1) .content_box {position: relative;}
.portal_future:nth-of-type(1) figure {
  width: 80%;
  height: auto;
  aspect-ratio: 952 / 681;
  margin: auto;
  left: 36%;
  right: auto;
  top: -120%;
  bottom: -100%;
}
.portal_future:nth-of-type(1) figure img {
  display: block;
  width: 100%;
  height: auto;
}

.portal_future:nth-of-type(3) figure {
  left: auto;
  right: 0;
}
.portal_future:nth-of-type(3) figure img {object-position: left;}

@media screen and (max-width: 1200px){

  /** products **/

  .portal_products {
    min-height: 300px;
    margin: 0 auto 120px;
  }
  .portal_products:nth-of-type(even) {
    min-height: 360px;
    margin: 0 auto 100px;
  }
  .portal_products:nth-last-of-type(1) {margin: 0 auto 150px;}
  .portal_products::after {top: 50px;}
  .portal_products .content_box > figure {height: 300px;}
  .portal_products:nth-of-type(even) .content_box > figure {height: 360px;}
  .portal_products .content_box h3 {
    width: 45%;
    margin: 0 0 20px;
  }
  .portal_products:nth-of-type(even) .content_box h3 {margin: 0 0 20px 55%;}
  .portal_products .content_box h3 > span:nth-of-type(1) {
    font-size: 1rem;
    margin: 0 1em 0 0;
  }
  .portal_products .content_box h3 > span > span {font-size: 8rem;}
  .portal_products .content_box h3 > span:nth-of-type(2) {font-size: 2.2rem;}
  .portal_products .content_box p {
    width: 45%;
    margin: 0 0 20px;
  }
  .portal_products:nth-of-type(even) .content_box p {margin: 0 0 20px 55%;}
  .portal_products .content_box div {
    width: 45%;
    margin: 0 0 0 55%;
  }
  .portal_products .content_box div figure {width: 48%;}

  /** future **/

  .portal_future {padding: 100px 0 60px;}
  .portal_future:nth-of-type(1) figure {
    width: 70%;
    left: 38%;
  }
}

/* -----------------------------------------------------------
 PRODUCTS
----------------------------------------------------------- */

.g_ar {
  position: relative;
  margin: 0 auto 180px;
  padding: 0 0 90px;
  background: #F5F5F5;
  z-index: 0;
}
.g_ar:nth-last-of-type(1) {margin: 0 auto;}
.g_ar::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: solid 30px #F5F5F5;
  border-left: solid 40px transparent;
  border-right: solid 40px transparent;
  margin: auto;
  bottom: -30px;
  left: 0;
  right: 0;
}
.g_ar:nth-last-of-type(1)::after {display: none;}
.g_ar > .content_box > figure:nth-of-type(1) {
  position: relative;
  width: 100%;
  max-width: none;
  margin:0 auto 40px;
  overflow: visible;
  z-index: 1;
}
.g_ar > .content_box > figure:nth-of-type(1) figcaption {text-align:right;}
.g_ar > .content_box > figure:nth-of-type(1)::before {
  position:absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 50%;
  background: #FFFFFF;
  margin: auto;
  top: 0;
  left: -100vw;
  right:-100vw;
  z-index: -1;
}
.g_ar h4 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color01);
  line-height: 1.3;
  text-align: center;
  margin: 0 auto 20px;
}
.g_ar figure,
.g_ar .content_box div {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.g_ar figure + figure {margin: 70px auto 0;}

.g_ar .content_box div.col02 {max-width: 720px;}
.g_ar .content_box div.col02 + .col02 {margin-top: 40px;}
.g_ar .content_box div figure {
  width: 48%;
  margin: 0 4% 0 0;
  float: left;
}
.g_ar .content_box div.col02 figure:nth-child(even) {margin: 0;}
.g_ar .content_box div.col03 figure {
  width: 32%;
  margin: 0 2% 0 0;
  float: left;
}
.g_ar .content_box div.col03 figure:nth-child(3n) {margin: 0;}
.g_ar figure img,
.g_ar .content_box div figure img {
  display: block;
  margin: 0 auto;
}
.g_ar figure figcaption {
  font-size: 1.4rem;
  margin:10px auto 0;
}

/** environment **/

.environment .h2_center + p {
  line-height: 2;
  text-align: center;
  margin: 0 auto 40px;
}
.environment .h2_center + p + figure {
  text-align: center;
  margin: 0 auto 70px;
}
.environment .h2_center + p + figure figcaption {
  font-size: 1.4rem;
  color: var(--color02);
  margin: 40px auto 0;
}
.environment .h3_center + p {
  line-height: 2;
  margin: 0 auto 60px;
}
.environment .h3_center + p span {
  display: inline-block;
  line-height: 1.5;
}

/** ev **/

.ev .h2_center + p {
  line-height: 2;
  margin: 0 auto 60px;
}
.ev .h2_center + p + figure {
  text-align: center;
  margin: 0 auto 90px;
}
.ev .h3_center + p {
  line-height: 2;
  margin: 0 auto 60px;
}
.ev .h3_center + p a {
  color: #1A73E5;
  text-decoration: underline;
}
.ev .g_ar .of_box {overflow: hidden;}
.ev .g_ar section {
  width: 48%;
  margin: 0 4% 70px 0;
  text-align: left;
  float: left;
}
.ev .g_ar section:nth-of-type(odd) {clear: both;}
.ev .g_ar section:nth-of-type(even) {margin: 0 0 70px;}
.ev .g_ar section h4 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: left;
  color: var(--color01);
  padding: 0 0 0 1.4em;
  margin: 0 0 20px;
  line-height: 1.3;
}
.ev .g_ar section h4::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1em;
  height: 2px;
  background: var(--color01);
  top: 0.65em;
  left: 0;
}
.ev .g_ar section figure {
  width: 100%;
  display: block;
  margin: 20px 0 0;
}
.ev .ev_btn {margin: 20px auto 0;}
.ev .ev_btn li {
  width: 100%;
  padding: 1em;
  background: var(--color01);
  color:#FFFFFF;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px;
}
.ev .ev_btn li:nth-child(even) {margin: 0;}
.ev .ev_btn li p {
  font-size: 2rem;
  font-weight: 400;
}

/** disaster_prevention **/

.disaster_prevention .h2_center + p {
  line-height: 2;
  margin: 0 auto 60px;
}
.disaster_prevention .h2_center + p + figure {
  text-align: center;
  margin: 0 auto 90px;
}
.disaster_prevention .h3_center + p {
  line-height: 2;
  margin: 0 auto 60px;
}
.disaster_prevention .h3_center + p a {
  color: #1A73E5;
  text-decoration: underline;
}

/** exterior **/

.exterior_list {overflow: hidden;}
.exterior_list li {
  width: 22%;
  margin: 0 4% 120px 0;
  float: left;
}
.exterior_list li:nth-child(4n) {margin: 0 0 120px;}
.exterior_list li:nth-child(4n+1) {clear: both;}
.exterior_list li figure {margin: 0 auto 20px;}
.exterior_list li figure img {
  display: block;
  width: 100%;
}
.exterior_list li dl dt {
  font-size: 2rem;
  color: var(--color01);
  line-height: 1.5;
  margin: 0 0 5px;
}
.exterior_list li dl dd {
  font-weight: 300;
  margin: 0 0 10px;
}
.exterior_list li p a {
  font-size: 1.8rem;
  text-decoration: none;
}
.exterior_list li p a::after {
  display: inline-block;
  content: "";
  width: 0.83em;
  height: 0.78em;
  background: url("../img/ico_ar.svg") no-repeat center / cover;
  margin: 0 0 0 0.5em;
  transition: 0.5s;
}
.exterior_list li p a:hover::after {margin: 0 0 0 1em;}

/** afterservice **/

.service_ba > section > section {overflow: hidden;}
.service_ba > section > section > div:nth-of-type(1) {
  width: 56%;
  float: left;
}
.service_ba > section > section > div:nth-of-type(1) p {font-weight: 300;}
.service_ba > section > section > div:nth-of-type(2) ,
.service_ba > section > section > figure {
  width: 40%;
  float: right;
}
.service_ba > section > section > div:nth-of-type(2) figure {
  width: 48%;
  margin: 0 4% 0 0;
  float: left;
}
.service_ba > section > section > div:nth-of-type(2) figure:nth-of-type(2) {margin: 0;}
.service_ba > section > section > div:nth-of-type(2) figure img {
  display: block;
  width: 100%;
}
.service_ba > section > section > div:nth-of-type(2) figure figcaption {
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: right;
  margin: 10px 0 0;
}
.service_ba > section:nth-last-of-type(1) > section p + p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0.5em 0 0;
}
.service_maintenance > section > section > div:nth-of-type(2) figure figcaption {text-align: left;}
.service_solution h2 {margin: 0 0 60px;}
.service_solution .solution_list {
  margin: 90px auto;
  overflow: hidden;
}
.service_solution .solution_list li {
  width: 18.4%;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 2% 0 0;
  float: left;
}
.service_solution .solution_list li:last-child {margin: 0;}
.service_solution .solution_list li a {
  display: block;
  padding: 0 0 1.4em;
  background: url("../img/products/bg_solution.png") no-repeat bottom center / 100%;
  text-decoration: none;
  transition: 0.5s;
}
.service_solution .solution_list li a:hover {opacity: 0.5;}
.service_solution > section:nth-of-type(1) {margin-top: 90px;}
.service_solution > section > h3 {
  width: 260px;
  float: left;
}
.service_case h2 {margin: 0 0 60px;}
.service_case > section {
  margin: 90px auto 0;
  overflow: hidden;
}
.service_case > section:nth-last-of-type(1) {margin: 90px auto 0;}
.service_case > section > figure {
  width: calc(100% - 470px);
  float: right;
}
.service_case > section > figure img {
  display: block;
  width: 100%;
}
.service_case > section > div {
  width: 430px;
  float: left;
}
.service_case > section > div p:nth-of-type(1) {
  line-height: 1.1;
  margin: 0 0 10px;
}
.service_case > section > div h3 {
  padding: 0;
  margin: 0 0 20px;
}
.service_case > section > div h3::before {display: none;}
.service_case > section > div h3 + p {
  font-size: 1.5rem;
  margin: 0 0 20px;
}

/** parking_lease **/

.parking_lease .common_section > h2 + p {
  margin:0 0 60px;
  font-weight: 300;
}
.parking_lease .common_section figure img {
  display: block;
  width: 100%;
}
.parking_lease .common_section:nth-of-type(2) > section {margin: 60px 0 0;}
.parking_lease .common_section:nth-of-type(2) > section h3 {margin: 0 0 30px;}
.parking_lease .table_common th {width: 28%;}
.parking_lease .table_common th:nth-of-type(1) {width: 16%;}
.parking_lease .bg_box ul li {
  position: relative;
  padding: 0 0 0 1.7em;
}
.parking_lease .bg_box ul li::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.2em;
  height: 1px;
  background: var(--color01);
  top: 0.95em;
  left: 0;
}

/* -----------------------------------------------------------
 about
----------------------------------------------------------- */

/** certification **/

.certification .table_common th {width: 42%;}
.certification .table_common th:nth-of-type(1) {width: 16%;}
.certification .table_common td {font-feature-settings: "palt";}
.certification .table_common td div {padding: 0 0 0 1em;}
.certification .table_common td span {
  display: inline-block;
  width: 5.5em;
  text-align: right;
}
.certification .table_common td dl dt {
  width: 6em;
  float: left;
  clear: both;
}
.certification .table_common td dl dt::before {content:"■"}
.certification .table_common td dl dt::after {content:"："}
.certification .table_common td dl dd {
  width: calc(100% - 6em);
  float: left;
}
.certification .table_common td > p {padding: 0 0 0 1em;}
.certification .table_common td .caution {
  text-indent: -1em;
  padding: 0 0 0 1em;
  clear: both;
}
.certification .table_common td .caution::before {content: "※";}

/** faq **/

.faq_tab {
  margin: 0 0 60px;
  overflow: hidden;
}
.faq_tab li {
  position: relative;
  width: 18%;
  height: 60px;
  line-height: 60px;
  color: var(--color04);
  margin: 0 2.5% 0 0;
  border-bottom: solid 1px var(--color04);
  z-index: 0;
  float: left;
  transition: 0.5s;
  cursor: pointer;
}
.faq_tab li:last-child {margin: 0;}
.faq_tab li:hover,.faq_tab li.active {color: var(--color03);}
.faq_tab li::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background: var(--color03);
  bottom: -1px;
  left: auto;
  right: 0;
  transition: 0.5s;
}
.faq_tab li.active::after ,
.faq_tab li:hover::after {
  width: 100%;
  left: 0;
  right: 0;
}
.faq_tab li a {
  display: block;
  text-decoration: none;
}


/** catalog **/

.download_list {overflow: hidden;}
.download_list li {
  width: 20%;
  float:left;
  margin: 0 calc(20% / 3) 90px 0;
}
.download_list li:nth-child(4n) {margin: 0 0 90px;}
.download_list li:nth-child(4n+1) {clear: both;}
.download_list li figure {
  margin: 0 0 20px;
  border: solid 1px var(--color04);
}
.download_list li figure img {
  display: block;
  width: 100%;
}
.download_list li dl {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: solid 1px var(--color04);
}
.download_list li dl dt {
  color: var(--color01);
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0 0 10px;
}
.download_list li dl dd {
  font-size: 1.5rem;
  color:var(--color02);
  line-height: 1.3;
}
.download_list li p {font-size: 1.5rem;}
.download_list li p a {
  color: var(--color02);
  transition: 0.5s;
}
.download_list li p a:hover {opacity: 0.5;}
.download_list li p a::before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 0.9em;
  background: url("../img/ico_ar.svg") no-repeat center / cover;
  margin: 0 0.5em 2px 0;
  vertical-align: middle;
}
.download_list li p a::after {
  display: inline-block;
  content: "";
  width: 1.3em;
  height: 1.1em;
  margin: 0 0 2px 0.5em;
  vertical-align: middle;
}
.download_list li p a.catalog_view::after {background:url(../img/download/ico_view.svg) no-repeat center / 100%;}
.download_list li p a.catalog_dl::after {background:url(../img/download/ico_dl.svg) no-repeat center / cover;}

/** data **/

.data_list {
  margin: 0 auto 90px;
  overflow: hidden;
}
.data_list li {
  width: 31%;
  margin: 0 3.5% 0 0;
  float: left;
}
.data_list li:nth-child(3n) {margin: 0;}
.data_list li figure {margin: 0 auto 20px;}
.data_list li figure img {display: block;}
.data_list li p {
  font-weight: 300;
  color: var(--color02);
}

.data_list li p:nth-of-type(2) {font-feature-settings: "palt";}
.data_list li p:nth-of-type(1) {
  width: 100%;
  height: 70px;
  line-height: 70px;
  margin: 0 0 30px;
}
.data_list li p:nth-of-type(1) a {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color02);
  padding: 0 20px;
  border: solid 1px var(--color02);
  text-decoration: none;
  z-index: 0;
}
.data_list li p:nth-of-type(1) a::after {
  position: absolute;
  content: "";
  display: block;
  width: 0.75em;
  height: 0.7em;
  background: url("../img/ico_ar.svg") no-repeat center / cover;
  margin: auto;
  top:0;
  bottom: 0;
  right: 20px;
  transform: rotate(90deg);
  transition: 0.5s;
}
.data_list li p:nth-of-type(1) a:hover::after {top: 20%;}
.data .common_section {overflow: visible;}
.data_form {
  position: relative;
  margin: 120px 0 70px;
  padding: 120px 0;
  z-index: 0;
}
.data_form::after {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--color01);
  margin: auto;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
  z-index: -1;
}
.data_form > div {
  padding: 40px 60px 0;
  background: #FFFFFF;
}
.data_form > div iframe {height: 300px;}

@media screen and (max-width: 1000px){
  .data_form > div iframe {height: 360px;}
}

.form_caution {
  font-weight: 500;
  text-align: center;
  margin: 0 auto 20px;
}
.table_data {
  width: 100%;
  table-layout: fixed;
  text-align: center;
}
.table_data th {
  font-weight: normal;
  line-height: 1.3;
  padding: 0.9em;
  background: #F5F5F5;
  border: solid 1px var(--color04);
}
.table_data td {
  line-height: 1.3;
  padding: 0.9em;
  border: solid 1px var(--color04);
}
.table_data th:nth-of-type(1) {width: calc(100% - 450px);}
.table_data th:nth-of-type(2) {width: 150px;}
.table_data th:nth-of-type(3) {width: 300px;}
.table_data td:nth-of-type(1) {
  text-align: left;
  padding: 0.9em 2em;
}
.table_data td:nth-of-type(2) a {transition: 0.5s;}
.table_data td:nth-of-type(2) a:hover {opacity: 0.5;}
.table_data td:nth-of-type(2) a img {width: 33px;}

.table_data td:nth-of-type(3) a {
  display: inline-block;
  color: #1A73E8;
  padding: 0 0.5em;
  border-right: solid 1px #1A73E8;
  text-decoration: none;
}
.table_data td:nth-of-type(3) a:last-child {border: none;}
.table_data td:nth-of-type(3) a:hover {text-decoration: underline;}

@media screen and (max-width: 1000px){
  .table_data th:nth-of-type(1) {width: calc(100% - 550px);padding: 0.9em;}
  .table_data th:nth-of-type(2) {width: 100px;}
  .table_data th:nth-of-type(3) {width: 250px;}
}

/** flow **/

.delivery_flow .type_flow {
  margin: 0 auto 90px;
  overflow: hidden;
}
.delivery_flow .type_flow li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: solid 2px #C8C8C8;
  z-index: 0;
}
.delivery_flow .type_flow li::after {
  position: absolute;
  display: block;
  content: "";
  width: 140px;
  height: 2px;
  background: #646464;
  bottom: -2px;
  left: 0;
}
.delivery_flow .type_flow li p {
  width: 140px;
  font-family: 'Oswald', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--color01);
  font-size: 1.8rem;
  line-height: 1.1;
  text-align: center;
}
.delivery_flow .type_flow li span {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
}
.delivery_flow .type_flow li dl {width: calc(100% - 140px);}
.delivery_flow .type_flow li dl dt {
  color: var(--color01);
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 10px;
}
.delivery_flow .type_flow li dl dd {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
}


/* -----------------------------------------------------------
 future
----------------------------------------------------------- */

/** PPP/PFI **/

.ppp_pfi .common_section {margin: 0 auto 90px;}
.ppp_pfi .common_section > section h3 {margin: 0 0 30px;}
.ppp_pfi .common_section:nth-of-type(1) > figure {margin: 0 auto 90px;}
.ppp_pfi .common_section:nth-of-type(1) section figure {
  max-width: 770px;
  margin: 60px auto 0;
}
.ppp_pfi .common_section:nth-of-type(1) figure figcaption {
  font-size: 1.4rem;
  text-align: right;
}
.ppp_pfi .common_section:nth-of-type(2) .figure_outer figure {margin: 0 auto 60px;}
.ppp_pfi .common_section:nth-of-type(2) > figure:nth-last-of-type(1) {margin: 0 auto;}
.ppp_pfi .common_section:nth-of-type(2) figure figcaption {
  font-size: 1.4rem;
  text-align: center;
}
.ppp_pfi .common_section .table_common {width: 100%;}
.ppp_pfi .common_section .table_common th {
  width: 18%;
  text-align: left;
  background: #F5F5F5;
}
.ppp_pfi .nayami > p {
  position: relative;
  font-size: 2.2rem;
  color: var(--color01);
  line-height: 1.2;
  text-align: center;
  margin: 50px auto;
  z-index: 0;
}
.ppp_pfi .nayami > p::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: solid 55px #DEEBF7;
  border-left: solid 55px transparent;
  border-right: solid 55px transparent;
  margin: auto;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.ppp_pfi .nayami ul {
  text-align: center;
  overflow: hidden;
}
.ppp_pfi .nayami ul:nth-of-type(1) li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31%;
  height: 120px;
  background: #DEEBF7;
  margin: 0 3.5% 0 0;
  float: left;
}
.ppp_pfi .nayami ul:nth-of-type(1) li:nth-child(3n) {margin: 0;}
.ppp_pfi .nayami ul:nth-of-type(1) li span {
  font-size: 2rem;
  line-height: 1.4;
  color: var(--color01);
}
.ppp_pfi .nayami ul:nth-of-type(2) li {
  width: 22%;
  color: #FFFFFF;
  background: var(--color01);
  margin: 0 4% 0 0;
  padding: 40px 30px;
  float: left;
}
.ppp_pfi .nayami ul:nth-of-type(2) li:nth-child(4n) {margin: 0;}
.ppp_pfi .nayami ul:nth-of-type(2) li p {
  font-feature-settings: "palt";
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0 0 40px;
  border-bottom: solid 1px #FFFFFF;
}
.ppp_pfi .nayami ul:nth-of-type(2) li p span {
  display: block;
  font-size: 2rem;
}
.ppp_pfi .nayami ul:nth-of-type(2) li figure {
  height: 140px;
  padding: 40px 0 0;
}

/** numazu **/

.numazu .numazu_lead {
  position: relative;
  z-index: 0;
}
.numazu .numazu_lead::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 80px;
  background: #DDEAF6;
  left: 0;
  right: 0;
  bottom: 0;
}

.numazu .btn_ar li {
  width: 31%;
  margin: 0 3.5% 3.5% 0;
}
.numazu .btn_ar li:nth-child(3n) {margin: 0 0 3.5%;}
.numazu .btn_ar li a::after {transform: rotate(90deg);}
.numazu .floor_anc {
  position: relative;
  padding: 50px 0 30px;
  z-index: 1;
}
.numazu .floor_anc figure {
  width: 60%;
  margin: 0 auto;
}
.numazu .floor_anc figure img {display: block;}
.numazu .floor_anc ul li {
  position: absolute;
  width: 210px;
  height: 40px;
  z-index: 1;
}
.numazu .floor_anc ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: 0.5s;
}
.numazu .floor_anc ul li a:hover {opacity: 0.5;}
.numazu .floor_anc ul li:nth-child(1) ,
.numazu .floor_anc ul li:nth-child(2) ,
.numazu .floor_anc ul li:nth-child(3) {left: 0;}
.numazu .floor_anc ul li:nth-child(4) ,
.numazu .floor_anc ul li:nth-child(5) ,
.numazu .floor_anc ul li:nth-child(6) {
  text-align: right;
  right: 0;
}
.numazu .floor_anc ul li:nth-child(1) {top: 10%;}
.numazu .floor_anc ul li:nth-child(2) {top: 35%;}
.numazu .floor_anc ul li:nth-child(3) {top: 60%;}
.numazu .floor_anc ul li:nth-child(4) {top: 10%;}
.numazu .floor_anc ul li:nth-child(5) {top: 35%;}
.numazu .floor_anc ul li:nth-child(6) {top: 60%;}
.numazu .floor_anc ul li:nth-child(1) a,
.numazu .floor_anc ul li:nth-child(2) a,
.numazu .floor_anc ul li:nth-child(3) a {background: url("../img/floor_anc_left.svg") no-repeat bottom / 100%;}
.numazu .floor_anc ul li:nth-child(4) a,
.numazu .floor_anc ul li:nth-child(5) a,
.numazu .floor_anc ul li:nth-child(6) a{background: url("../img/floor_anc_right.svg") no-repeat bottom / 100%;}

.numazu .kv_numazu {
  position: relative;
  width: 100%;
  height: 340px;
  margin: 0 auto 200px;
  z-index: 0;
}
.numazu .kv_numazu::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 80px;
  background: rgba(0,85,153,0.2);
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
.numazu .kv_numazu img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.numazu .kv_numazu h2 {
  position: absolute;
  font-family: 'Oswald', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--color01);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  top: 270px;
  z-index: 3;
}
.numazu .kv_numazu h2 span {
  display: block;
  font-size: 14rem;
}
.numazu .numazu_content section {
  position: relative;
  z-index: 0;
}
.numazu .numazu_content section::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 360px;
  background: #F4F4F4;
  left: 0;
  right: 0;
  top: 90px;
  z-index: 0;
}
.numazu .numazu_content #anc06 + section::before {height: 240px;}

.numazu .numazu_content section .content_box {
  position: relative;
  z-index: 0;
}
.numazu .numazu_content h3 {
  line-height: 1;
  margin: 0 0 40px;
}
.numazu .numazu_content h3 > span:nth-of-type(1) {
  display: block;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color03);
  margin: 0
}
.numazu .numazu_content h3 > span:nth-of-type(2)  {
  display: inline-block;
  font-family: 'Oswald', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14rem;
  font-weight: 500;
  color: var(--color01);
}
.numazu .numazu_content h3 > span:nth-of-type(3) {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--color01);
  margin: 0 0 0 1em;
  transform: translateY(-2px);
}
.numazu .numazu_content h3 + figure {
  position: absolute;
  width: 50%;
  top: 0;
  right: 40px;
}
.numazu .numazu_content h3 + figure img {
  display: block;
  width: 100%;
}
.numazu .numazu_content h3 + p ,
.numazu .numazu_content figure + p {
  width: 470px;
  margin: 0 0 50px;
}
.numazu .numazu_content ul {
  margin: 0 auto 70px;
  overflow: hidden;
}
.numazu .numazu_content ul li {
  width: 31%;
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0 3.5% 70px 0;
  float: left;
}
.numazu .numazu_content ul li:nth-child(3n) {margin: 0 0 70px;}
.numazu .numazu_content ul li:nth-child(3n+1) {clear: both;}
.numazu .numazu_content ul li img {
  display: block;
  width: 100%;
  margin: 0 0 30px;
}
.numazu .numazu_content ul li p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color01);
  margin: 0 0 20px;
}
.numazu .numazu_content .table_common {
  width: 100%;
  margin: 0 auto 90px;
}
.numazu .numazu_content .table_common th {
  width: 18%;
  text-align: left;
  background: #F5F5F5;
}
.numazu .numazu_content .table_common td {background: #FFFFFF;}
.numazu .numazu_content .map {
  position: relative;
  width: 100%;
  height: 550px;
  z-index: 0;
}
.numazu .numazu_content .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left:0 ;
  right: 0;
  z-index:0;
}

/* -----------------------------------------------------------
 sitemap
----------------------------------------------------------- */

.sitemap .sitemap_list {overflow: hidden;}
.sitemap .sitemap_list > li {
  width: 32%;
  margin: 0 2% 100px 0;
  float: left;
}
.sitemap .sitemap_list > li:nth-child(3n) {margin: 0 0 100px;}
.sitemap .sitemap_list > li:nth-child(3n+1) {clear: both;}
.sitemap .sitemap_list:nth-last-of-type(1) > li {margin-bottom: 50px;}
.sitemap .sitemap_list > li.no_header {padding: 64px 0 0;}
.sitemap .sitemap_list > li p {
  position: relative;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--color01);
  margin: 0 0 30px;
  line-height: 1.3;
  padding: 0 0 0 1.2em;
  z-index: 0;
}
.sitemap .sitemap_list > li p::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1em;
  height: 2px;
  background: var(--color01);
  top: 0.7em;
  left: 0;
  z-index: 0;
}
.sitemap .sitemap_list > li ul li {
  position: relative;
  padding: 0 0 0 1.7em;
  margin: 0 0 0.5em;
}
.sitemap .sitemap_list > li ul li::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.2em;
  height: 1px;
  background: var(--color01);
  top: 0.95em;
  left: 0;
}
.sitemap .sitemap_list > li ul li.head_list a {color: var(--color01);}

/* -----------------------------------------------------------
 iframe
----------------------------------------------------------- */

#iuk_form {height: 1080px;}

/* -----------------------------------------------------------
 404
----------------------------------------------------------- */

.page_404 {
  padding: 220px 0 140px;
  text-align: center;
}
.page_404 h1 {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color01);
  margin: 0 auto 20px;
  line-height: 1.2;
}
.page_404 h1 span {
  display: block;
  font-size:27.5rem;
  font-family: 'Josefin Sans', 'Noto Sans JP',"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  line-height: 0.9;
}
.page_404 .btn_more {margin: 40px auto;}

/* -----------------------------------------------------------
 animation
----------------------------------------------------------- */

.fade {
  opacity:0;
  transition:1s;
}
.fade.totop {transform:translateY(100px);}
.fadein {opacity:1;}
.fadein.totop {transform:translateY(0);}


/* ================================================================= */
/* 2024/08 須見追記(モビハブ改修) */
/* ================================================================= */
.home_mobility figure {left: 400px;}
nav .g_nav > li > div > div ul li a{
  font-size: 1.5rem;
  letter-spacing: -0.08em;
}
.h2_left span:nth-of-type(2) {line-height: 1.3;}


/* 202501 お問い合わせページへ電話番号追加 ===========*/
main.contact h2{
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  background: var(--color01);
  margin: 90px 0 60px;
  padding: 0.5em 1em;
  clear: both;
}
main.contact .content_box>h2:first-of-type{margin-top: 0;}
main.contact .tel_num{
  font-size: 35px;
  font-weight: 700;
  color: var(--color01);
}
