@charset "utf-8";

:root {
  --color01: #1e52a6;
  --color02: #333;
  --color03: #333;
  --color04: #333;
}

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

@media screen and (max-width: 800px){
  body {
    -webkit-text-size-adjust: 100%;
    font-size:14px;
  }
  .pc_cont {display:none!important;}
}

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

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

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

  nav .menu {
    position: absolute;
    display: block;
    width: 20px;
    height: 14px;
    right: 40px;
    top: 33px;
    cursor: pointer;
    z-index: 10;
  }
  nav .menu::before,nav .menu::after {
    position: absolute;
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background: var(--color03);
    margin: auto;
    left: 0;
    right: 0;
    transition: 0.5s;
  }
  nav .menu::before {
    top: 0;
    box-shadow: 0 6px 0 0 var(--color03);
  }
  nav .menu::after {bottom: 0;}
  .open nav .menu::before {
    top: 0;
    bottom: 0;
    box-shadow: none;
    transform:rotate(225deg);
  }
  .open nav .menu::after {
    top: 0;
    bottom: 0;
    transform:rotate(-225deg);
  }
  .header_transparent nav .menu::before,.header_transparent nav .menu::after {background: #FFFFFF;}
  .header_transparent nav .menu::before {
    top: 0;
    box-shadow: 0 6px 0 0 #FFFFFF;
  }
  .header_transparent.open nav .menu::before,.header_transparent.open nav .menu::after {background: var(--color03);}
  nav .menu span {font-size: 0;}
  nav .menu_box {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    padding: 20px 40px;
    background: #FFFFFF;
    z-index:10;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .open nav .menu_box {
    opacity: 1;
    visibility: visible;
  }
  nav .g_nav {
    position: static;
    display: block;
    height: auto;
    border: none;
    margin: 0;
  }
  .header_transparent nav .g_nav {border-right: none;}
  nav .g_nav_bg {display: none;}
  nav .g_nav > li {
    position: relative;
    display: block;
    height: auto;
    line-height: 1.3;
    padding: 0;
    z-index: 0;
  }
  nav .g_nav > li:last-child {padding: 0;}

  nav .g_nav > li > span {
    display: block;
    border-bottom: solid 1px var(--color04);
    background: url("../img/common/menu_li_hover.png") no-repeat right 23px center / 14px;
  }
  nav .g_nav > li > span.current {border-bottom: solid 1px var(--color04);}
  nav .g_nav > li.parent > span {background: none;}

  nav .g_nav > li.parent > .sp_ac {
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    background: url("../img/common/menu_li_hover.png") no-repeat center / 14px;
    transform: rotate(90deg);
    border:none;
    transition: 0.5s;
    cursor: pointer;
  }
  nav .g_nav > li.parent > .sp_ac.open {transform: rotate(270deg);}
  nav .g_nav > li > span a {
    width: 100%;
    display: block;
    font-weight: 700;
    padding: 1.5em 0;
  }
  nav .g_nav > li.parent > span a {width: calc(100% - 60px);}
  .header_transparent nav .g_nav > li > span a {color: var(--color02);}
  nav .g_nav > li > div {
    display: none;
    position: static;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  nav .g_nav > li > div > div {
    width: 100%;
    margin:0 auto;
    overflow: hidden;
  }
  nav .g_nav > li > div > div p {display: none;}
  nav .g_nav > li > div > div ul {
    width: 100%;
    float: none;
    overflow: hidden;
  }
  nav .g_nav > li > div > div ul li {
    width: 100%;
    height: auto;
    margin: 0;
    float: none;
  }
  nav .g_nav > li > div > div ul li:nth-child(3n) {margin: 0;}
  nav .g_nav > li > div > div ul li a {
    color: #969696;
    padding: 1.5em 0;
    line-height: 1.5;
    border-bottom: solid 1px var(--color04);
  }
  nav .g_nav > li > div > div ul li a::before {
    background: url("../img/common/menu_li.png") no-repeat center / cover;
    right: 25px;
  }
  nav .g_nav > li > div > div ul li a::after {display: none;}
  nav .btn_nav {
    position: static;
    width: 180px;
    height: 90px;
    margin: 30px auto;
  }
  nav .btn_nav li {
    width: 50%;
    height: 60px;
    float: left;
  }
  nav .btn_nav li a {
    font-size: 1.5rem;
    padding: 50px 0 0;
  }
  nav .btn_nav li:nth-child(1) a {background: url("../img/common/menu_catalog_sp.png") no-repeat top 16px center / 36px;}
  nav .btn_nav li:nth-child(2) a {background: url("../img/common/menu_dl_sp.png") no-repeat top 10px center / 36px;}
  .header_transparent nav .btn_nav li a {color: var(--color01);}
  .header_transparent nav .btn_nav li:nth-child(1) a {background: url("../img/common/menu_catalog_sp.png") no-repeat top 16px center / 36px;}
  .header_transparent nav .btn_nav li:nth-child(2) a {background: url("../img/common/menu_dl_sp.png") no-repeat top 10px center / 36px;}
  nav .btn_nav li:nth-child(1) a:hover {background: url("../img/common/menu_catalog_sp_hover.png") no-repeat top 16px center / 36px;}
  nav .btn_nav li:nth-child(2) a:hover {background: url("../img/common/menu_dl_sp_hover.png") no-repeat top 10px center / 36px;}
  nav .btn_contact {
    position: static;
    width: 100%;
    height: 70px;
  }
  nav .btn_contact a {
    font-size: 1.4rem;
    line-height: 70px;
    padding: 0;
    transition: 0.5s;
  }
  nav .btn_contact a span {
    padding: 0;
    background: none;
  }
  nav .btn_contact a::before {
    display: inline-block;
    content: "";
    width: 24px;
    height: 19px;
    padding: 0;
    margin:0 10px 3px 0;
    background: url("../img/common/menu_contact.png") no-repeat center / cover;
    vertical-align: middle;
  }

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

  main {padding: 80px 0 10%;}
  main.home {padding: 0;}

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

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

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


  /* :::::::::: nav :::::::::: */
  nav .menu {right: 7%;}
  nav .menu_box {padding: 20px 7% 80px;}

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

  .box {padding: 0 7%;}
  /* .content_box {padding: 0 7%;} */
  .content_box {padding: 0;}


  /* :::::::::: aside :::::::::: */
}
/* -----------------------------------------------------------
 common_parts
----------------------------------------------------------- */

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

  .title_area {
    display: block;
    padding: 50px 7%;
  }
  .title_area > div {display: block;}
  .title_area > div:nth-of-type(1) {min-width: auto;}
  .title_area > div .h1_title {
    font-size: 2.8rem;
    margin: 0;
  }
  .title_area > div .h1_title + p {
    font-size: 1rem;
    margin: 5px 0 20px;
  }
  .title_area .breadcrumbs {
    font-size: 1.1rem;
    text-align: left;
  }
  .title_area .breadcrumbs > span::after {
    width: 20px;
    margin:0 0 3px;
  }
  .lead {margin: 0 0 10%;}
  .bg_box {padding: 5%;}
  .figure_outer {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #828282 #828282;
    padding: 0 0 2%;
  }
  .figure_outer::-webkit-scrollbar {height: 5px;}
  .figure_outer::-webkit-scrollbar-track {background: #C7C7C7;}
  .figure_outer::-webkit-scrollbar-thumb {background: #828282;}
  .figure_outer > figure,
  .figure_outer > table {width: 250%;}

  /** slick **/

  .slick-dots {
    width: 100%!important;
    display: block;
    margin: 6% auto 0!important;
  }
  .slick-arrow.slick-prev,.slick-arrow.slick-next {
    width: 40px;
    height: 40px;
  }

  /** btn_more **/

  .btn_more {
    width: 220px;
    height: 50px;
    padding: 0 0 0 20px;
    margin: 8% auto 0;
    transform: translateX(-10px);
  }
  .btn_more p {line-height: 50px;}
  .btn_more::before ,
  .btn_more::after {
    height: 13px;
    left: 20px;
  }
  .btn_more p::before {
    width: 40px;
    top: 25px;
    left: -20px;
  }
  .btn_more span::before {bottom: 37px;}
  .btn_more:hover span::before {height: 13px;}
  .btn_more:hover span::after {height: 13px;}

  /** btn_ar **/

  .btn_ar {
    padding: 0 5%;
    border: solid 1px var(--color03);
  }
  .btn_ar li {
    width: 100%;
    margin: 0;
    float: none;
  }
  .btn_ar li:nth-child(3n) {margin: 0;}
  .btn_ar li a {
    height: 50px;
    line-height: 50px;
    font-size: 1.4rem;
    padding: 0;
    border-left:none;
    border-right:none;
    border-top:none;
  }
  .btn_ar li a:hover {
    border-left:none;
    border-right:none;
    border-top:none;
  }
  .btn_ar li:last-child a {border: none;}
  .btn_ar li:last-child a:hover {border: none;}
  .btn_ar li a::after {right: 0;}
  .btn_ar li a:hover::after {background: url("../img/common/ico_ar_h.svg") no-repeat center / cover;}
  .btn_usage li a {
    font-size: 1.4rem;
    padding: 0 0 0 60px;
  }
  .btn_usage li.inhouse a {background: url("../img/home/usage01.png") no-repeat left 3px center / auto 34px;}
  .btn_usage li.apartment a {background: url("../img/home/usage02.png") no-repeat left center / auto 37px;}
  .btn_usage li.government a {background: url("../img/home/usage03.png") no-repeat left 2px center / auto 37px;}
  .btn_usage li.commercial a {background: url("../img/home/usage04.png") no-repeat left center / auto 34px;}
  .btn_usage li.independent_use a {background: url("../img/home/usage05.png") no-repeat left 6px center / auto 32px;}
  .btn_usage li.hotel a {background: url("../img/home/usage06.png") no-repeat left center / auto 33px;}
  .btn_usage li.inhouse a:hover {background: url("../img/home/usage01_h.png") no-repeat left 3px center / auto 34px;}
  .btn_usage li.apartment a:hover {background: url("../img/home/usage02_h.png") no-repeat left center / auto 37px;}
  .btn_usage li.government a:hover {background: url("../img/home/usage03_h.png") no-repeat left 2px center / auto 37px;}
  .btn_usage li.commercial a:hover {background: url("../img/home/usage04_h.png") no-repeat left center / auto 34px;}
  .btn_usage li.independent_use a:hover {background: url("../img/home/usage05_h.png") no-repeat left 6px center / auto 32px;}
  .btn_usage li.hotel a:hover {background: url("../img/home/usage06_h.png") no-repeat left center / auto 33px;}

  /** commmon_section **/

  .common_section {margin: 0 auto 18%;}
  .common_section > section {margin: 0 auto 12%;}
  .common_section > section > section {margin: 0 auto 6%;}
  .common_section h2 {
    font-size: 2.2rem;
    margin: 0 0 12%;
  }
  .common_section > .h2_common60 {margin: 0 0 12%;}
  .common_section > .h2_common30 {margin: 0 0 6%;}
  .common_section > section h3 {
    font-size: 2rem;
    margin: 0 0 6%;
  }
  .common_section > section section h4 {
    font-size: 1.7rem;
    margin: 0 0 4%;
  }

  /** hX **/

  .h2_center {
    font-size: 2.6rem;
    margin: 0 0 8%;
  }
  .h2_left {margin: 0 0 6%;}
  .h2_left span:nth-of-type(1) {font-size: 1.2rem;}
  .h2_left span:nth-of-type(2) {font-size: 2.6rem;}
  .h3_center {margin: 0 auto 12%;}
  .h3_center span:nth-of-type(1) {font-size: 1.2rem;}
  .h3_center span:nth-of-type(2) {font-size: 2.2rem;}

  /** faq **/

  .faq_ac dt {
    font-size: 1.4rem;
    padding: 20px 60px 20px 40px;
  }
  .faq_ac dt::before {
    font-size: 2rem;
    left: 8px;
    top: 18px;
  }
  .faq_ac dt::after {
    width: 40px;
    height: 40px;
    right: 5px;
  }
  .faq_ac dd {
    font-size: 1.4rem;
    padding: 20px 20px 20px 40px;
  }
  .faq_ac dd::before {
    font-size: 2rem;
    left: 10px;
    top: 17px;
  }
}

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

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

  .related_section {
    padding: 12% 0 0;
    background: #f5f5f5;
  }
  .related_section .content_box {padding: 0 7%;}
  .related_section::before {
    background: #FFFFFF;
    height: 60vw;
    max-height: 60vw;
    top: auto;
    bottom: 0;
  }
  .case_single .related_section::before {
    height: 80vw;
    max-height: 80vw;
  }
  .editor_contents h2 {
    font-size: 1.9rem;
    margin: 15% 0 10%;
  }
  .editor_contents h3 {
    font-size: 1.7rem;
    margin: 12% 0 6%;
  }
  .editor_contents h4 {
    font-size: 1.8rem;
    margin: 10% 0 6%;
  }
  .editor_contents h5 {
    font-size: 1.6rem;
    margin: 8% 0 4%;
  }
  .editor_contents h6 {
    font-size: 1.4rem;
    margin: 6% 0 4%;
  }
  .editor_contents p {margin: 0 0 5%;}
  .editor_contents table {margin: 0 0 5%;}
  .editor_contents ul {margin: 0 0 5%;}
  .editor_contents ul li::before {top: 0.35em;}
  .editor_contents ul.link li::before {
    width: 0.4em;
    height: 0.4em;
    border-top: solid 2px var(--color01);
    border-right: solid 2px var(--color01);
  }
  .editor_contents ol {margin:0 0 5%;}
  .editor_contents .bg_box {margin: 8% auto;}
  .editor_contents figure {margin: 8% auto;}
  .editor_contents figure figcaption {
    font-size: 1.3rem;
    margin: 0.5em 0 0;
  }
  .editor_contents .figure_outer {margin: 0 auto 5%;}
  .editor_contents .figure_outer table {
    width: 200%;
    max-width: none;
  }
  .editor_contents .wp-block-pullquote blockquote {padding: 5%;}

  .editor_contents .btn_cv {
    width: 100%;
    margin: 15% auto 0;
  }
  .editor_contents .btn_cv a {padding: 2em 1.5em;}




  /** column_single **/

  .column_single .content_box {padding: 0;}
  .column_single .related_section .content_box {padding: 0 7%;}
  .column_single .post_date {padding: 12% 7% 0;}
  .column_single h1 {
    font-size: 2.2rem;
    padding: 0 7%;
    margin: 0 0 12%;
  }
  .column_single .editor_contents {
    padding: 7% 7% 12%;
    margin: 0 auto;
  }
  .column_single .editor_contents .column_eyecatch {margin: 0 auto 8%;}
  .column_single .wp-block-group figure {
    width: 100%;
    margin: 0 auto 8%;
    float: none;
  }
  .column_single .wp-block-columns {margin: 0 auto;}
  .column_single .wp-block-columns .wp-block-column {margin: 0 0 8%;}
  .column_single .wp-block-columns .wp-block-column:nth-of-type(2) {margin: 0 0 8%;}


  /** case_single **/

  .case_title {
    height: 48vw;
    margin: 0 auto 15%;
  }
  .case_title h1 {font-size: 2.2rem;}
  .case_slider {margin: 0 auto 20%!important;}
  .case_slider .slick-prev {bottom: -27px;}
  .case_slider .slick-next {bottom: -27px;}
  .case_single .catch {
    font-size: 1.9rem;
    margin: 0 0 3%;
  }
  .case_single .editor_contents {padding: 12% 0;}
  .case_single .case_detail {
    width: 100%;
    margin: 0;
    float: none;
  }
  .case_single .case_detail:nth-of-type(2) {margin: 0 0 12%;}
  .case_single .case_detail:nth-of-type(2) th ,
  .case_single .case_detail:nth-of-type(2) td {border-top: none;}
  .case_single .wp-block-group figure {
    width: 100%;
    margin: 0 auto 8%;
    float: none;
  }
  .case_single .wp-block-columns {margin: 0 auto;}
  .case_single .wp-block-columns .wp-block-column {margin: 0 0 8%;}
  .case_single .wp-block-columns .wp-block-column:nth-of-type(2) {margin: 0 0 8%;}

  /** toc **/
  .editor_contents #toc_container {margin: 10% 0;}
  .editor_contents #toc_container + h2 {margin-top: 10%;}
  .editor_contents #toc_container .toc_title {font-size: 1.9rem;}
  .editor_contents #toc_container .toc_title + .toc_list {padding: 6% 7%;}
  .editor_contents #toc_container .toc_title + .toc_list li {font-size: 1.4rem;}
  .editor_contents #toc_container ul ul {margin: 0 0 0 0.5em;}


}

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

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

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

  /** fixed **/

  .loading_area p {
    width: 150px;
    height: 71px;
  }
  .float_banner {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .float_banner li {
    position: relative;
    width: 100%;
    margin: 0;
  }
  .float_banner li img {width: 100%;}
  .float_banner li.close {transform: translateY(500px);}

  /** home_kv **/

  .home_kv div p:nth-of-type(1) {
    font-size: 6.2rem;
    margin:0 auto 5%;
  }
  .home_kv div p:nth-of-type(2) {width: 320px;}
  .home_kv .scroll {
    width: 35px;
    height:35px;
    bottom: 5%;
  }
  .home_lead {padding: 15% 7%;}
  .home_lead p {margin: 0 auto 8%;}
  .home_lead p:nth-last-child(1) {
    width: 120px;
    margin: 12% auto 0;
  }

  .home .h2_left + p {font-size: 1.4rem;}

  /** home_facility **/

  .home_facility {padding: 25% 0 10%;}
  .home_facility .box .btn_more {
    position: relative;
    margin: 6% auto 0;
    top: auto;
    right: auto;
  }
  .home_facility .slider .slick-list {overflow: hidden;}
  .home_facility .slider .slick-slide {padding: 0;margin:0 2vw;}
  .home_facility .slider li a div {margin:0 auto 4%;}
  .home_facility .slider li a div > p {font-size: 1.2rem;}
  .home_facility .slider li a div > p span {font-size: 2rem;}
  .home_facility .slider li a > p {padding: 0;}

  /** home_mobility **/

  .home_mobility {padding: 16% 0 0;}
  .home_mobility .box > div {margin:0 auto 24%;}
  .home_mobility .btn_more {margin: 8% auto;}
  .home_mobility figure {
    position: static;
    width: 100%;
  }
  .home_mobility figure img {transform: scale(1.4);}

  /** home_news **/

  .home_news {padding: 16% 0;}
  .home_news figure {
    width: 100%;
    float: none;
    text-align: center;
    margin: 0 auto 8%;
  }
  .home_news .box > div {
    position: static;
    width: 100%;
    float: none;
  }
  .home_news .box > div .btn_more {
    position: relative;
    top: auto;
    right: auto;
  }
  .home_news .box > div .news_outer {
    height: auto;
    overflow: visible;
    margin: 0 auto 14%;
  }
  .home_news .box > div .news_outer dl dd {font-size: 1.4rem;}

  /** home_about **/

  .home_about {padding: 16% 0;}
  .home_about .btn_more {margin: 8% auto 0;}
  .home_about figure {
    position: static;
    width: 100%;
    top: auto;
    left: auto;
    margin: 6% auto 0;
  }
  .home_about figure img {
    transform: scale(1.5);
    transform-origin: top center;
  }

  /** home_case **/

  .home_case {padding: 16% 0;}
  .home_case h2 + p {margin: 0 0 8%;}
  .home_case .box > div .btn_more {
    position: relative;
    top: auto;
    right: auto;
  }
  .home_case .slider {margin: 0!important;}
  .home_case .slider .slick-list {overflow: hidden;}
  .home_case .slider .slick-slide {
    padding: 0;
    margin: 0 2vw;
  }
  .home_case .slider li a div {margin:0 auto 4%;}
  .home_case .slider li a dl dt {
    font-size: 1.6rem;
    margin:0 0 4%;
  }
  .home_case .slider li a dl dd p {font-size: 1.4rem;}
  .home_case section {margin: 16% auto 0;}
  .home_case section + section {margin: 8% auto 0;}
  .home_case section h3 {
    font-size: 1.8rem;
    margin: 0 0 5%;
  }
  .home_case section h3::after {margin: 0 0 0.5em 0.5em;}

  /** home_column **/

  .home_column {padding: 16% 0;}
  .home_column h2 + p {margin: 0 0 8%;}
  .home_column .box .btn_more {
    position: relative;
    top: auto;
    right: auto;
  }
  .home_column .slider {margin: 0!important;}
  .home_column .slider .slick-list {overflow: hidden;}
  .home_column .slider .slick-slide {
    padding: 0;
    margin: 0 2vw;
  }
  .home_column .slider li a div {margin:0 auto 4%;}
  .home_column .slider li a dl dt {
    font-size: 1.4rem;
    margin:0 0 3%;
  }
  .home_column .slider li a dl dd {font-size: 1.4rem;}

  /** home_link **/

  .home_link {height: auto;}
  .home_link section {
    width: 100%;
    height: 100vw;
    float: none;
  }
  .home_link section > div {padding: 0 7%;}
  .home_link section > div h2 {margin: 0 auto 6%;}
  .home_link section > div h2 span:nth-of-type(1) {font-size: 1.2rem;}
  .home_link section > div h2 span:nth-of-type(2) {font-size: 2.6rem;}
  .home_link section > div h2 + p {
    font-size: 1.4rem;
    text-align: left;
  }
  .home_link section > div .btn_more {margin: 8% auto 0;}

  /** img_link **/

  .home .img_link {padding: 16% 0 0;}
  .home .img_link li {
    width: 100%;
    margin:0 auto 8%;
    float: none;
  }
  .home .img_link li:nth-child(3n) {margin:0 auto 8%;}
  .home .img_link li a p {
    font-size: 1.6rem;
    margin: 0 0 3%;
  }

  /** home_faq **/

  .home_faq {padding: 16% 0 20%;}
  .home_faq h2 {
    width: 100%;
    float: none;
  }
  .home_faq h2 + div {
    width: 100%;
    float: none;
  }
  .home_faq .btn_more {
    position: relative;
    margin: 12% auto 1%;
    left: auto;
    top: auto;
  }
}

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

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

  .kv_portal {
    padding: 0 7%;
    margin: 0 auto 15%;
  }
  .kv_portal .v_area {
    width: 93vw;
    height: 62%;
  }
  .portal .h2_left {margin: 0 0 6%;}
  .portal .lead {font-size: 1.4rem;}
  .portal_link {margin: 15% auto 0;}
  .portal_link li {
    width: 100%;
    margin: 0 0 8%;
    float: none;
  }
  .portal_link li:nth-child(even) {margin: 0 0 8%;}
  .portal_link li:nth-last-child(1) {margin: 0;}
  .portal_link li:nth-last-child(2)  {margin: 0 0 8%;}
  .portal_link li a p {
    font-size: 1.6rem;
    padding: 0.75em 1em;
  }
  .portal_link li a p::after {right: 1em;}

  /** products **/

  .portal_products {
    min-height: auto;
    background: #F5F5F5;
    padding: calc(8% + 70px) 0 8%;
    margin: 0 auto 140px;
  }
  .portal_products:nth-of-type(1) {margin: 140px auto;}
  .portal_products:nth-of-type(even) {
    min-height: auto;
    margin: 0 auto 140px;
  }
  .portal_products:nth-last-of-type(1) {margin: 0 auto 20%;}
  .portal_products::after {display: none;}
  .portal_products .content_box > figure {
    position: relative;
    width: 93vw;
    height: auto;
    margin: 0 0 5%;
    left: 0;
  }
  .portal_products:nth-of-type(even) .content_box > figure {
    width: 93vw;
    height: auto;
    right: 7vw;
    left: auto;
  }
  .portal_products .content_box h3 {
    position: absolute;
    width: 100%;
    text-align: center;
    margin: auto;
    top: -180px;
    left: 0;
    right: 0;
  }
  .portal_products:nth-of-type(even) .content_box h3 {margin: 0 0 6%;}
  .portal_products .content_box h3 > span:nth-of-type(1) {
    display: block;
    font-size: 1.2rem;
    margin: 0;
  }
  .portal_products .content_box h3 > span > span {
    display: block;
    font-size: 11rem;
    margin: 0 auto 10px;
  }
  .portal_products .content_box h3 > span:nth-of-type(2) {font-size: 2.2rem;}
  .portal_products .content_box p {
    width: 100%;
    margin: 0;
  }
  .portal_products:nth-of-type(even) .content_box p {
    width: 100%;
    margin: 0;
  }
  .portal_products .content_box div {
    width: 100%;
    margin: 5% 0 0;
  }
  .portal_products .content_box div figure {width: 48%;}

  /** future **/

  .portal_future {padding: 0 0 15%;}
  .portal_future:nth-of-type(1) {
    margin: 24% 0 0;
    padding: 15% 0;
  }
  .portal_future:nth-of-type(even) .content_box > div {padding: 0;}
  .portal_future .content_box > div h2 + p {
    font-size: 1.45rem;
    line-height: 2;
    margin: 0 0 8%;
  }
  .portal_future figure {
    position: relative;
    width: 100vw;
    height: auto;
    margin:0 auto 6%;
    left: -7vw;
  }
  .portal_future:nth-of-type(1) .content_box {position: relative;}
  .portal_future:nth-of-type(1) figure {
    width: 100%;
    height: auto;
    margin: 0 auto 6%;
    left: 8%;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .portal_future:nth-of-type(1) figure img {
    transform: scale(1.5);
    transform-origin: bottom center;
  }
  .portal_future:nth-of-type(3) figure {
    left: -7vw;
    right: 0;
  }
}


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

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

  .g_ar {
    margin: 0 auto 30%;
    padding: 0 0 15%;
  }
  .g_ar > .content_box > figure:nth-of-type(1) {
    width: 120vw;
    margin:0 auto 10%;
    left: -15vw;
  }
  .g_ar > .content_box > figure:nth-of-type(1) figcaption {
    position: relative;
    width: 84vw;
    margin:10px auto 0;
    left: -7vw;
  }
  .g_ar > .content_box > figure:nth-of-type(1)::before {
    width: 120vw
  }
  .g_ar h4 {
    font-size: 1.7rem;
    margin: 0 auto 5%;
  }
  .g_ar .content_box div.col02 figure ,
  .g_ar .content_box div.col03 figure {
    width: 100%;
    margin: 0 auto 5%;
    float: none;
  }
  .g_ar figure + figure {margin: 8% auto 0;}
  .g_ar .content_box div.col02 + .col02 {margin-top: 5%;}
  .g_ar figure figcaption {font-size: 1.2rem;}

  /** environment **/

  .environment .h2_center + p {
    text-align: left;
    margin: 0 auto 8%;
  }
  .environment .h2_center + p + figure {margin: 0 auto 8%;}
  .environment .h2_center + p + figure figcaption {
    font-size: 1.2rem;
    text-align: left;
    margin: 8% auto 0;
  }
  .environment .h3_center + p {margin: 0 auto 12%;}
  .environment .g_ar > .content_box:nth-last-of-type(1) > figure:nth-of-type(1) {
    width: 100vw;
    left: -7vw;
  }

  /** ev **/

  .ev .h2_center + p {margin: 0 auto 8%;}
  .ev .h2_center + p + figure {margin: 0 auto 8%;}
  .ev .h3_center + p {margin: 0 auto 12%;}
  .ev .h3_center + p + figure figcaption {text-align: right;}
  .ev .g_ar section {
    width: 100%;
    margin:0 auto 10%;
  }
  .ev .g_ar section:nth-of-type(even) {margin: 0 auto 10%;}
  .ev .g_ar section h4 {
    font-size: 2rem;
    margin: 0 0 5%;
  }
  .ev .g_ar section figure {margin: 4% 0 0;}
  .ev .ev_btn {margin: 5% auto 0;}
  .ev .ev_btn li {
    width: 100%;
    float: none;
    font-size: 1.2rem;
    margin: 0 0 4%;
  }
  .ev .ev_btn li p {font-size: 1.5rem;}

  /** disaster_prevention **/

  .disaster_prevention .h2_center + p {margin: 0 auto 8%;}
  .disaster_prevention .h2_center + p + figure {margin: 0 auto 8%;}
  .disaster_prevention .h3_center + p {margin: 0 auto 12%;}
  .disaster_prevention .h3_center + p + figure figcaption {text-align: right;}

  /** exterior **/

  .exterior_list {overflow: hidden;}
  .exterior_list li {
    width: 48%;
    margin: 0 4% 10% 0;
    float: left;
  }
  .exterior_list li:nth-child(even) ,
  .exterior_list li:nth-child(4n) {margin: 0 0 10%;}
  .exterior_list li figure {margin: 0 auto 5%;}
  .exterior_list li dl dt {
    font-size: 1.7rem;
    margin: 0 0 3%;
  }
  .exterior_list li dl dd {margin: 0 0 3%;}
  .exterior_list li p a {font-size: 1.6rem;}

  /** afterservice **/

  .service_ba > section > section > div:nth-of-type(1) {
    width: 100%;
    float: none;
    margin: 0 auto 8%;
  }
  .service_ba > section > section > div:nth-of-type(2) ,
  .service_ba > section > section > figure {
    width: 100%;
    float: none;
  }
  .service_ba > section > section > div:nth-of-type(2) figure figcaption {
    font-size: 1.2rem;
    margin: 2% 0 0;
  }
  .service_solution h2 {margin: 0 0 6%;}
  .service_solution .solution_list {
    padding: 0 5%;
    margin: 6% auto;
    border: solid 1px var(--color03);
  }
  .service_solution .solution_list li {
    width: 100%;
    margin: 0;
    border-bottom: solid 1px var(--color03);
    float: none;
  }
  .service_solution .solution_list li:last-child {
    margin: 0;
    border: none;
  }
  .service_solution .solution_list li a {
    position: relative;
    height: 50px;
    line-height: 50px;
    padding: 0;
    background: none;
  }
  .service_solution .solution_list li a::after {
    position: absolute;
    display: block;
    content: "";
    width: 1em;
    height: 0.9em;
    background: url("../img/common/ico_arn.svg") no-repeat center / cover;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 5%;
    transform: rotate(90deg);
  }
  .service_solution > section:nth-of-type(1) {margin-top: 12%;}
  .service_solution > section > h3 {
    width: 100%;
    float: none;
  }
  .service_case,
  .service_case > section {overflow: visible;}
  .service_case h2 {margin: 0 0 6%;}
  .service_case > section {margin: 16% auto 0;}
  .service_case > section:nth-last-of-type(1) {margin: 12% auto 0;}
  .service_case > section > figure {
    width: 100vw;
    float: none;
    margin:0 auto 8%;
    transform: translate(-7vw);
  }
  .service_case > section > div {
    width: 100%;
    float: none;
  }
  .service_case > section > div p:nth-of-type(1) {margin: 0 auto 3%;}
  .service_case > section > div h3 {margin: 0 0 4%;}
  .service_case > section > div h3 + p {
    font-size: 1.4rem;
    margin: 0 0 6%;
  }
  .service_case > section > div figure {width: 100%;}
  .service_case > section > div figure img {
    display: block;
    width: 100%;
  }

  /** parking_lease **/

  .parking_lease .common_section > h2 + p {margin:0 0 12%;}
  .parking_lease .common_section:nth-of-type(1) {overflow:visible;}
  .parking_lease .common_section:nth-of-type(1) figure {
    width: 100vw;
    transform: translateX(-7vw);
  }
  .parking_lease .common_section:nth-of-type(2) > h2 {margin: 0 0 3%;}
  .parking_lease .common_section:nth-of-type(2) > section {margin: 6% 0 0;}
  .parking_lease .common_section:nth-of-type(2) > section h3 {margin: 0 0 3%;}
}

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

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

  /** certification **/

  .certification .table_common td {font-size:1.3rem;}

  /** faq **/

  .tab_outer {
    width: 100%;
    margin: 0 0 9%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #828282 #828282;
    padding: 0 0 2%;
  }
  .tab_outer::-webkit-scrollbar {height: 5px;}
  .tab_outer::-webkit-scrollbar-track {background: #C7C7C7;}
  .tab_outer::-webkit-scrollbar-thumb {background: #828282;}
  .faq_tab {
    width: 32em;
    margin: 0 0 6%;
  }
  .faq_tab li {
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
  }

  /** catalog **/

  .download_list li {
    width: 46%;
    margin: 0 8% 12% 0;
  }
  .download_list li:nth-child(even) ,
  .download_list li:nth-child(4n) {margin: 0 0 12%;}
  .download_list li:nth-child(odd) {clear: both;}
  .download_list li figure {margin: 0 0 5%;}
  .download_list li dl {
    padding: 0 0 5%;
    margin: 0 0 5%;
  }
  .download_list li dl dt {
    font-size: 1.5rem;
    margin: 0 0 4%;
  }
  .download_list li dl dd {font-size: 1.1rem;}
  .download_list li p {font-size: 1.3rem;}

  /** data **/

  .data_list {margin: 0 auto 12%;}
  .data_list li {
    width: 100%;
    margin: 0 auto 12%;
    float: none;
  }
  .data_list li figure {margin: 0 auto 4%;}
  .data_list li figure img {margin: 0 auto;}
  .data_list li p:nth-of-type(1) {
    height: 50px;
    line-height: 50px;
    margin: 0 0 6%;
  }
  .data_list li p:nth-of-type(1) a {
    font-size: 1.6rem;
    padding: 0 5%;
  }
  .data_list li p:nth-of-type(1) a::after {right: 5%;}
  .data_form {
    margin: 20% 0 10%;
    padding: 20% 0;
  }
  .data_form > div {padding: 5% 5% 0;}
  .data_form > div iframe {height: 360px;}
  .form_caution {
    text-align: left;
    margin: 0 auto;
  }
  .table_data th {padding: 0.7em 0.5em;}
  .table_data td {padding: 0.7em 0.5em;}
  .table_data th:nth-of-type(1) {width: 45%;}
  .table_data th:nth-of-type(2) {width: 20%;}
  .table_data th:nth-of-type(3) {width: 35%;}
  .table_data td:nth-of-type(1) {padding: 0.9em 0.5em;}
  .table_data td:nth-of-type(3) a {
    display: block;
    width: 3em;
    margin:0.5em auto 0;
    padding: 0 0 0.5em;
    border: none;
    border-bottom: solid 1px #1A73E8;
  }

  /** flow **/

  .delivery_flow .type_flow {margin: 0 auto 10%;}
  .delivery_flow .type_flow li {padding: 6% 0;}
  .delivery_flow .type_flow li::after {width: 70px;}
  .delivery_flow .type_flow li p {width: 70px;}
  .delivery_flow .type_flow li dl {width: calc(100% - 70px);}
  .delivery_flow .type_flow li dl dt {
    font-size: 1.7rem;
    margin: 0 0 2%;
  }
  .delivery_flow .type_flow li dl dd {font-size: 1.4rem;}
}

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

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

  /** PPP/PFI **/

  .ppp_pfi .common_section > section h3 {margin: 0 0 6%;}
  .ppp_pfi .common_section:nth-of-type(1) > figure {margin: 0 auto 12%;}
  .ppp_pfi .common_section:nth-of-type(1) > figure img {width: 100%;}
  .ppp_pfi .common_section:nth-of-type(1) section figure {margin: 8% 0 0;}
  .ppp_pfi .common_section:nth-of-type(1) figure figcaption {
    font-size: 1.1rem;
    text-align: center;
  }
  .ppp_pfi .common_section:nth-of-type(2) .figure_outer figure {margin: 0 auto 12%;}
  .ppp_pfi .common_section:nth-of-type(2) figure figcaption {font-size: 1.4rem;}
  .ppp_pfi .common_section:nth-of-type(2) > figure:nth-last-of-type(1) {margin: 8% auto 0;}
  .ppp_pfi .common_section:nth-of-type(2) > figure:nth-last-of-type(1) img {width: 100%;}
  .ppp_pfi .common_section .table_common th {width: 30%;}
  .ppp_pfi .nayami > p {
    font-size: 1.9rem;
    line-height: 1.4;
    margin: 10% auto;
  }
  .ppp_pfi .nayami ul:nth-of-type(1) li {
    width: 100%;
    height: 70px;
    margin: 0 0 3%;
    float: none;
  }
  .ppp_pfi .nayami ul:nth-of-type(1) li span {font-size: 1.8rem;}
  .ppp_pfi .nayami ul:nth-of-type(2) li {
    width: 48%;
    padding: 5% 2%;
    margin: 0 4% 4% 0;
  }
  .ppp_pfi .nayami ul:nth-of-type(2) li:nth-child(even) {margin: 0 0 4%;}
  .ppp_pfi .nayami ul:nth-of-type(2) li p {
    font-size: 1.3rem;
    padding: 0 0 5%;
  }
  .ppp_pfi .nayami ul:nth-of-type(2) li p span {font-size: 1.8rem;}
  .ppp_pfi .nayami ul:nth-of-type(2) li figure {
    height: auto;
    padding: 10% 0 0;
  }
  .ppp_pfi .nayami ul:nth-of-type(2) li figure img {
    width: auto;
    height: 50px;
  }

  /** numazu **/

  .numazu .numazu_lead::after {height: 10vw;}
  .numazu .btn_ar li {
    width: 100%;
    margin: 0;
  }
  .numazu .btn_ar li:nth-child(3n) {margin: 0;}
  .numazu .floor_anc {padding: 15% 0 5%;}
  .numazu .floor_anc figure {width: 90%;}
  .numazu .floor_anc ul {display: none;}
  .numazu .kv_numazu {
    height: auto;
    margin: 0 auto 30%;
  }
  .numazu .kv_numazu::before {height: 10vw;}
  .numazu .kv_numazu img {
    position: static;
    height: auto;
  }
  .numazu .kv_numazu h2 {
    font-size: 6vw;
    top: 45vw;
  }
  .numazu .kv_numazu h2 span {font-size: 3.5em;}
  .numazu .numazu_content section::before {top: 60px;}
  .numazu .numazu_content #anc01 + section::before {height: calc(90vw + 70px + 3em);}
  .numazu .numazu_content #anc02+ section::before {height: calc(90vw + 70px + 3em);}
  .numazu .numazu_content #anc03 + section::before {height: calc(90vw + 70px + 4em);}
  .numazu .numazu_content #anc04 + section::before {height: calc(50vw + 70px + 2em);}
  .numazu .numazu_content #anc05 + section::before {height: calc(50vw + 70px + 2em);}
  .numazu .numazu_content #anc06 + section::before {height: calc(40vw + 70px);}

  .numazu .numazu_content h3 {
    text-align: center;
    margin: 0 0 8%;
  }
  .numazu .numazu_content h3 > span:nth-of-type(1) {font-size: 1.2rem;}
  .numazu .numazu_content h3 > span:nth-of-type(2)  {
    display: block;
    font-size: 10rem;
  }
  .numazu .numazu_content h3 > span:nth-of-type(3) {
    display: block;
    font-size: 2.2rem;
    margin: 0.5em auto;
    transform: translateY(0);
  }
  .numazu .numazu_content h3 + figure {
    position: static;
    width: 100%;
    margin: 0 auto 8%;
  }
  .numazu .numazu_content h3 + p ,
  .numazu .numazu_content figure + p {
    width: 100%;
    margin: 0 0 10%;
  }
  .numazu .numazu_content ul {margin: 0 auto 10%;}
  .numazu .numazu_content ul li {
    width: 100%;
    font-size: 1.4rem;
    margin: 0 0 15%;
    float: none;
  }
  .numazu .numazu_content ul li:nth-child(3n) {margin: 0 0 15%;}
  .numazu .numazu_content ul li img {margin: 0 0 5%;}
  .numazu .numazu_content ul li p {
    font-size: 1.7rem;
    margin: 0 0 4%;
  }
  .numazu .numazu_content .table_common {margin: 0 auto 10%;}
  .numazu .numazu_content .table_common th {width: 30%;}
  .numazu .numazu_content .map {
    width: 100%;
    height: 80vw;
  }
}

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

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

  .sitemap .sitemap_list > li {
    width: 100%;
    margin: 0 0 10%;
    float: none;
  }
  .sitemap .sitemap_list > li:nth-child(3n) {margin: 0 0 10%;}
  .sitemap .sitemap_list:nth-last-of-type(1) > li {margin-bottom: 10%;}
  .sitemap .sitemap_list > li.no_header {padding: 0;}
  .sitemap .sitemap_list > li p {
    font-size: 2rem;
    margin: 0 0 3%;
  }
}

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

@media screen and (max-width: 800px) {
  #iuk_form {height: 1550px;}
}

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

@media screen and (max-width: 800px) {
  .page_404 {padding: 120px 0 100px;}
  .page_404 h1 {
    font-size: 2.2rem;
    margin: 0 auto 6%;
    line-height: 1.4;
  }
  .page_404 h1 span {font-size:16rem;}
  .page_404 h1 + p {text-align: left;}
  .page_404 .btn_more {margin: 10% auto;}
}

/* 202501 お問い合わせページへ電話番号追加 ===========*/
@media screen and (max-width: 800px) {
  main.contact h2{
    font-size: 1.9rem;
    margin: 15% 0 10%;
  }
  main.contact p.has-medium-font-size{font-size: 17px !important;}
  main.contact .tel_num{font-size: 28px;}

}
@media screen and (min-width:768px) {a[href*=tel]{pointer-events: none;}}
