@charset "UTF-8";
@media only screen and (max-width: 1064px) {
  .case {
    width: 100%;
    flex-direction: column-reverse;
  }
  .case .l {
    width: 100%;
  }
  .case .l ul {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .case .l ul li {
    width: 48%;
  }
  .case .l ul li:last-child {
    margin-bottom: 0px;
  }
  .case .r {
    width: 100%;
  }

  .card__list .w_20 li {
    width: 48%;
  }
  .card__list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card__list ul li {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 25px;
    padding: 20px;
    width: 48%;
  }
  .card__list ul li figure {
    margin-bottom: 20px;
  }

  .points {
    margin: 45px 0 0;
    counter-reset: points;
  }
  .points .points__list {
    position: relative;
    padding: 38px 0 44px;
    border-top: 2px solid #ececec;
    z-index: 1;
  }
  .points .points__list p {
    margin: 10px 0px 0;
    line-height: 1.7;
    font-size: 104%;
  }
  .points .points__list:before {
    display: block;
    content: "0" counter(points);
    position: static;
    top: 35px;
    left: 0;
    font-family: "Heebo", sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0.075em;
    z-index: 1;
    counter-increment: points;
  }
  .points .points__list .sub_ttl {
    margin: 0 0px 0 0;
    padding: 0 0 10px 0px;
    font-size: 144%;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 42px;
  }

  .scroll {
    max-width: 100%;
    margin: 0px auto 40px;
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .scroll::-webkit-scrollbar {
    height: 5px;
  }

  .scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }

  .scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }

  .scroll table {
    width: 960px;
  }

  .slide_wrapper {
    position: relative;
    z-index: 0;
  }
  .slide_wrapper ul li img {
	  height: 600px;
	  width: 100%;
	  object-fit: cover;
  }
  .slide_wrapper .sub_ttl {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    color: #FFF;
    z-index: 1;
    width: 100%;
    text-align: center;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 274%;
  }
  .slide_wrapper .sub_ttl .jp {
    font-size: 50%;
  }
  .slide_wrapper .sub_ttl .sub {
    font-size: 70%;
  }
  .slide_wrapper .copy {
    position: absolute;
    bottom: 10%;
    font-size: 224%;
    line-height: 2;
  }
  .slide_wrapper .copy span {
    font-size: 50%;
  }

  .fixed {
    position: static !important;
    z-index: 1000;
    width: 100%;
    left: 0px;
    background: rgba(0, 0, 0, 0);
    top: 0px;
    padding: 0px;
  }

  .mincho {
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho" serif;
  }

  .sp_none {
    display: none !important;
  }

  .pc_none {
    display: block;
  }

  .sp_mt20 {
    margin-top: 20px;
  }

  .fixed {
    padding-top: 0px;
    position: static;
  }

  .local_nav {
    display: none;
  }

  .map__block_sp {
    display: none;
  }

  .map {
    width: 100%;
    height: 350px;
    margin-bottom: 40px;
  }

  .scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    /*追記*/
    right: 0;
    /*追記*/
  }

  #nav-drawer {
    position: relative;
    background: #0059B2;
    text-align: center;
  }

  .main_ttl {
    position: relative;
    top: -100px;
    background: #FFF;
    padding: 50px 0px;
  }

  .nav-unshown {
    display: none;
  }

  .half__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .half__column .box {
    width: 100%;
    margin-bottom: 25px;
  }

  .reverse {
    flex-direction: column-reverse;
  }

  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    position: fixed;
    padding: 10px;
    right: 0px;
    top: 0px;
    z-index: 1001;
    background: #00a0dc;
  }

  #nav-open span {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 30px;
    /*長さ*/
    background: #FFF;
    display: block;
    content: "";
    cursor: pointer;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  #nav-open span:nth-of-type(1) {
    top: 13px;
  }

  #nav-open span:nth-of-type(2) {
    top: 23px;
  }

  #nav-open span:nth-of-type(3) {
    top: 33px;
  }

  #nav-open.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  #nav-open.active span:nth-of-type(2) {
    opacity: 0;
  }

  #nav-open.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }

  /*閉じる用の薄黒カバー*/
  #nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }

  /*中身*/
  #nav-content {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
    -webkit-overflow-scrolling: touch;
  }

  #nav-content .sns {
    width: 100%;
    border-bottom: 1px solid #FFF;
    padding: 60px 0px;
  }
  #nav-content .sns ul {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
  #nav-content .sns ul li {
    margin-right: 30px;
  }
  #nav-content .sns ul li:last-child {
    margin-right: 0px;
  }

  #nav-content .box {
    display: flex;
    width: 100%;
  }

  #nav-content .box ul {
    width: 100%;
  }

  #nav-content .box .active {
    background: rgba(0, 0, 0, 0.7);
  }

  #nav-content .box a {
    color: #fff;
  }

  #nav-content .box a:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    color: #FFF;
    font-size: 124%;
    top: 20px;
    right: 10px;
  }

  #nav-content .box ul {
    width: 100%;
  }

  #nav-content .box ul .icon {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 26px;
    right: 10px;
  }

  #nav-content .box ul .icon span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #FFF;
  }

  #nav-content .box ul .icon span:nth-of-type(2) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }

  #nav-content .box ul .parent:after {
    display: none;
  }

  #nav-content .box ul .is-active span:nth-of-type(1) {
    display: none;
  }

  #nav-content .box ul .is-active span:nth-of-type(2) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }

  #nav-content .box ul li {
    width: 100%;
    text-align: left;
  }

  #nav-content .box ul li a {
    display: block;
    color: #fff;
    transition: 0.5s all;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid #FFF;
    width: 100%;
  }

  #nav-content .box ul li a:after {
    top: 15px;
  }

  #nav-content .box ul li ul {
    display: none;
  }

  #nav-content .box ul li ul li a {
    padding: 15px 15px 15px 40px;
  }

  #nav-content .box ul li ul li ul li a {
    padding: 15px 15px 15px 60px;
  }

  #nav-content .box .gas-plant_list li:not(:first-child) a, #nav-content .box .gas-plant_list .inner a {
    padding-left: 60px;
  }

  #nav-content .box .gas-plant_list li:not(:first-child) ul li a {
    padding-left: 80px;
  }

  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 0.5;
  }

  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 0.5;
  }

  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }

  

  /*/////////// 会社概要 ////////////*/
  .history_tbl dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .history_tbl dl dt {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-right: 1px solid #CCC;
    font-size: 84%;
    text-align: left;
  }
  .history_tbl dl dt span {
    font-size: 184%;
  }
  .history_tbl dl dd {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }
  .history_tbl table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    border: none;
    box-sizing: border-box;
  }
  .history_tbl table tr {
    width: 100%;
    border: 1px solid #CCC;
  }
  .history_tbl table th,
.history_tbl table td {
    box-sizing: border-box;
    padding: 15px;
    font-size: 16px;
    border: none;
    font-size: 100%;
    display: block;
  }
  .history_tbl table thead {
    display: none;
  }
  .history_tbl table tbody {
    text-align: left;
  }
  .history_tbl table tbody th {
    background: #F5F5F5;
    color: #211E27;
    text-align: left;
    width: 100%;
  }
  .history_tbl table tbody td {
    background: white;
  }

  .company_tbl table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    border: none;
    box-sizing: border-box;
  }
  .company_tbl table tr {
    width: 100%;
    border: 1px solid #CCC;
  }
  .company_tbl table th, .company_tbl table td {
    box-sizing: border-box;
    padding: 15px;
    font-size: 16px;
    border: none;
    font-size: 100%;
    display: block;
  }
  .company_tbl table thead {
    display: none;
  }
  .company_tbl table tbody {
    text-align: left;
  }
  .company_tbl table tbody th {
    background: #F5F5F5;
    color: #211E27;
    text-align: left;
    width: 100%;
  }
  .company_tbl table tbody td {
    background: white;
  }
  .company_tbl table tbody td dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .company_tbl table tbody td dl dt {
    width: 40%;
    display: flex;
    justify-content: space-between;
    padding-right: 35px;
    box-sizing: border-box;
    margin-bottom: 8px;
  }
  .company_tbl table tbody td dl dd {
    width: 60%;
    margin-bottom: 8px;
  }

  /*/////////// header ////////////*/
  .content_block {
    padding: 30px 0px;
  }

  /*/////////// nav ////////////*/
  .nav {
    padding-bottom: 0px;
  }
  .nav .logo {
    max-width: initial;
    width: 100%;
    text-align: center;
  }

  header .logo {
    padding-bottom: 7px;
  }
  header .sp_tel {
    position: fixed;
    z-index: 1001;
    right: 50px;
    top: 0px;
    font-size: 200%;
    width: 50px;
    height: 50px;
    color: #FFF;
    background: #D5E5E6;
    line-height: 50px;
    text-align: center;
  }
  header .sp_tel a {
    color: #FFF;
    display: block;
  }

  /*/////////// 会社概要 ////////////*/
  .message ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .message ul .pic {
    width: 300px;
    margin: 0px auto;
  }
  .message ul .txt {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  .message ul .txt .sub_ttl {
    font-size: 124%;
    margin-bottom: 20px;
  }

  .column__half {
    flex-wrap: wrap;
  }
  .column__half .box {
    width: 100%;
  }
  .column__half .box:first-child {
    margin-bottom: 25px;
  }
/*--------------
 * 蓄光石　スタイル
 * ------------*/	
.cikou__column .box01, .cikou__column .box02 {
    width: 100%;
    margin-bottom: 40px;
}
/*--------------
 * 想い
 * ------------*/	
.message__area {
    padding: 0 20px;
}

.s.flex-1060 {
    display: flex;
    width: 100%;
    margin-top: 10px;
    justify-content: space-around;
}
.s.flex-1060 .img_w80 {
    width: 32%;
}
}
@media screen and (max-width: 764px) {
  footer {
    background: #211E27;
    padding: 30px 0px 0px;
    width: 100%;
    box-sizing: border-box;
  }
  footer .copy {
    text-align: center;
    margin-bottom: 30px;
    color: #FFF;
  }
  footer .f_logo {
    padding: 30px 0px;
    text-align: center;
  }
  footer .sns {
    width: 100%;
    border-bottom: 1px solid #FFF;
    padding: 30px 0px;
  }
  footer .sns ul {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
  footer .sns ul li {
    margin-right: 30px;
  }
  footer .sns ul li:last-child {
    margin-right: 0px;
  }
  footer .link ul {
/*     display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
    margin-bottom: 30px;
  }
  footer .link ul li {
	  margin: 0 0 15px 0;
	  padding: 0 5px;
/*     width: 48%; */
  }
  footer .link ul a {
    color: #FFF;
  }
	footer .online_btn ul li:not(:last-child) {
		margin-right: 0;
	}

  .common_contact {
    padding: 80px 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .common_contact .btn {
    max-width: 320px;
    width: 100%;
    background: #CAA618;
    position: relative;
    color: #FFF;
    font-size: 144%;
    display: block;
    text-align: center;
    margin: 0px auto;
    padding: 20px;
    box-sizing: border-box;
    transition: 0.5s all;
  }
  .common_contact .btn:hover {
    opacity: 0.6;
  }
  .common_contact .btn:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    color: #FFF;
    right: 10px;
    font-size: 90%;
    top: 22px;
  }
  .common_contact ul {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 40px 0px 20px;
  }
  .common_contact ul li:first-child address {
    text-align: center;
    font-size: 154%;
  }
  .common_contact ul li:first-child address span {
    font-size: 74%;
    color: #202F55;
  }

  .banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
  }
  .banner li {
    position: relative;
    width: 48%;
    margin-right: 0%;
    margin-bottom: 30px;
    opacity: 0;
  }
  .banner li:nth-child(3n) {
    margin-right: 0%;
  }
  .banner li .txt {
/*    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 1;*/
    text-align: center;
    color: #211E27;
    font-size: 108%;
    width: 100%;
    padding: 0px 10px;
    box-sizing: border-box;
  }

  .top__news {
    background: #211E27;
    width: 100%;
    padding: 40px 10px;
    box-sizing: border-box;
  }
  .top__news .btn {
    width: 150px;
    border-bottom: 1px solid #FFF;
    position: relative;
    margin: 0px auto;
    color: #FFF;
    font-size: 154%;
    display: block;
    transition: 0.5s all;
  }
  .top__news .btn:hover {
    opacity: 0.6;
  }
  .top__news .btn:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    color: #FFF;
    right: 0px;
    font-size: 94%;
    top: -2px;
  }
  .top__news ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .top__news ul li {
    width: 32%;
  }
  .top__news ul li .sub_ttl {
    background: #FFF;
    padding: 10px;
    box-sizing: border-box;
  }

  .top__mess {
    background: #211E27;
    width: 100%;
    padding: 50px 0px;
    box-sizing: border-box;
  }
  .top__mess .sub_ttl {
    width: 100%;
    line-height: 1.5;
    color: #FFF;
    font-size: 164%;
    margin-bottom: 30px;
  }
  .top__mess .sub_ttl span {
    display: block;
    padding-left: 15%;
  }
  .top__mess p {
    font-size: 114%;
    line-height: 1.5;
    color: #FFF;
  }

  .large__column .l {
    width: 100%;
  }
  .large__column .s {
    width: 100%;
    margin-bottom: 20px;
  }
  .large__column .s img {
    width: 100%;
  }

  .three__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .three__column .box {
    width: 100%;
    margin-bottom: 25px;
  }
  .three__column .box img {
    max-width: 100%;
  }

  .reverse__764 {
    flex-direction: column-reverse;
  }
  .reverse__764 img {
    width: 100%;
  }

  .local_lead {
    font-size: 114%;
    max-width: 100%;
    padding: 0px 20px;
    margin: 0px auto;
    box-sizing: border-box;
	  word-break:break-all;
  }

  .top__effort {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .top__effort .left {
    width: 100%;
  }
  .top__effort .left .sub_ttl {
    font-size: 150%;
    font-weight: 700;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .top__effort .left .sub_ttl span {
    font-size: 60%;
  }
  .top__effort .right {
    width: 100%;
  }
	.case .r .list li {
		width: 48%;
	}
	.case .slick_nav .slick-slide {
		height: auto;
	}
	.case .r .detail_slide .slick-slide {
		height: 60vw;
	}
/* 	.case .r .detail_slide .slick-slide img {
		height: auto;
	} */
	
	.sdgs_page img.sdgs_icon {
		width: 60%;
	}
}
@media screen and (max-width: 640px) {
  .sangaku article {
    background: #f6f4ef;
    box-sizing: border-box;
    padding: 25px;
    margin-bottom: 25px;
    width: 100%;
    position: relative;
    transition: ease 0.2s;
  }
  .sangaku article .box {
    display: flex;
    flex-wrap: wrap;
  }
  .sangaku article .box .thum {
    max-width: 100%;
    width: 100%;
    margin-right: 0px;
    text-align: center;
    margin-bottom: 20px;
  }
  .sangaku article .box .thum img {
    max-width: 100%;
  }
  .sangaku article .box .txt {
    width: 100%;
    box-sizing: border-box;
    padding-right: 30px;
  }
  .sangaku article .box .txt p {
    line-height: 1.5;
  }

  .sangaku article:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .sangaku article:hover .sub_ttl {
    text-decoration: underline;
  }

  .sangaku article:hover:after {
    right: 10px;
  }

  .sangaku article .sub_ttl {
    font-weight: bold;
    font-size: 154%;
    margin-bottom: 15px;
  }

  .sangaku article:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 25px;
    color: #0058CA;
    font-size: 300%;
    transition: ease 0.2s;
  }

  .sangaku article a {
    display: block;
  }

  .access section {
    margin-bottom: 30px;
    flex-direction: column-reverse;
  }
  .access section .gmap {
    width: 100%;
    height: 250px;
  }
  .access section .left {
    width: 100%;
    position: relative;
  }
  .access section .left img {
    width: 100%;
  }
  .access section .left table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
    border: none;
    box-sizing: border-box;
  }
  .access section .left table tr {
    width: 100%;
    border-bottom: 1px solid #CCC;
  }
  .access section .left table tr:first-child {
    border-top: 1px solid #CCC;
  }
  .access section .left table th, .access section .left table td {
    box-sizing: border-box;
    padding: 10px;
    vertical-align: middle;
  }
  .access section .left table th {
    font-size: 84%;
    width: 20%;
    background-color: #F6F7FB;
  }
  .access section .left table th span {
    font-size: 184%;
  }
  .access section .left .inner {
    width: 100%;
    line-height: 1.7;
  }
  .access section .left .inner .icon {
    display: flex;
    flex-wrap: nowrap;
  }
  .access section .left .inner .icon li {
    margin-right: 10px;
  }
  .access section .left .inner .icon li:last-child {
    margin-right: 0px;
  }
  .access section .left .inner .sub_ttl {
    color: #202F55;
    font-size: 114%;
  }
  .access section .left .inner p {
    margin-bottom: 15px;
  }
  .access section .right {
    width: 100%;
  }

  .img__ttl_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .img__ttl_list:before {
    content: "";
    display: block;
    width: 30%;
    height: 0;
    order: 1;
  }
  .img__ttl_list li {
    width: 48%;
    margin-bottom: 20px;
  }
  .img__ttl_list li a {
    display: block;
    transition: 0.5s all;
  }
  .img__ttl_list li a:hover {
    opacity: 0.7;
  }
  .img__ttl_list li figure {
    box-sizing: border-box;
    margin-bottom: 10px;
    text-align: center;
  }
  .img__ttl_list li img {
    max-width: 100%;
  }
  .img__ttl_list li .copy {
    font-size: 114%;
    position: relative;
    text-align: center;
    box-sizing: border-box;
  }

  .case {
    width: 100%;
    flex-direction: column-reverse;
  }
  .case .l {
    width: 100%;
  }
  .case .l ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .case .l ul li {
    width: 48%;
  }
  .case .l ul li:last-child {
    margin-bottom: 0px;
  }
  .case .r {
    width: 100%;
  }
  .case .r .detail .pic ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .case .r .detail .pic ul li {
    width: 45%;
    position: relative;
  }
  .case .r .detail .pic ul li:first-child:after {
    content: "\f105";
    font-family: FontAwesome;
    color: #202F55;
    position: absolute;
    top: 45%;
    right: -40px;
    font-size: 300%;
  }
  .case .r .detail .pic ul li p {
    text-align: center;
    padding-top: 10px;
    font-size: 114%;
    font-weight: 600;
  }
  .case .r .detail .pic ul li img {
    width: 100%;
  }

  .top__news ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .top__news ul li:last-child {
    margin-bottom: 0px;
  }

  .slide_wrapper {
    position: relative;
    z-index: 0;
  }
  .slide_wrapper ul li img {
    height: 500px;
  }
  .slide_wrapper .sub_ttl {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    color: #FFF;
    z-index: 1;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 224%;
  }
  .slide_wrapper .sub_ttl .jp {
    font-size: 50%;
  }
  .slide_wrapper .sub_ttl .sub {
    font-size: 70%;
  }
  .slide_wrapper .copy {
    position: absolute;
    bottom: 10%;
    font-size: 174%;
    line-height: 1.2;
  }
  .slide_wrapper .copy span {
    font-size: 50%;
  }

  .img_list li {
    width: 50% !important;
  }

  .img__ttl_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .img__ttl_list .w20, .img__ttl_list .w30, .img__ttl_list .w50 {
    width: 100%;
    margin-bottom: 25px;
  }
  .img__ttl_list .w20 img, .img__ttl_list .w30 img, .img__ttl_list .w50 img {
    width: 100%;
  }
  .img__ttl_list .w20:last-child, .img__ttl_list .w30:last-child, .img__ttl_list .w50:last-child {
    margin-bottom: 0px;
  }

  .reverse__640 {
    flex-direction: column-reverse;
  }

  .scroll table {
    width: 500px;
  }
	
	.news_box {
		width: 100%;
		box-sizing: border-box;
	}
/* 	.news_box dl {
		flex-direction: column;
		padding: 0px;
		margin-bottom: 0px;
	}
	.news_box dl dt {
		width: 100%;
		font-size: 124%;
		font-weight: 500;
		margin-bottom: 5px;
		border-bottom: none;
		text-align: left;
		border-radius: 0px;
	} */
	.news_box dl dt figure {
		aspect-ratio: 2/1;
		max-width: 320px;
		overflow: hidden;
	}	
	.news_box dl dt figure {
		height: auto;
	}
	.news_box dl dt {
		width: 100%;
		margin-bottom: 0;
	}
	.news_box dl dd {
		width: 100%;
		font-size: 90%;
		border-top: none;
		padding: 10px 10px;
	}
	.news_box dl dd:nth-child(2) {
		border-top: none;
	}
  /*/////////// お問い合わせ ////////////*/
  .contact {
    padding: 10px;
  }
  .contact .list {
    flex-wrap: wrap;
  }
  .contact .list .box {
    margin-bottom: 30px;
    width: 100%;
  }
  .contact .list .box .sub_ttl {
    padding: 20px;
    font-size: 124%;
  }
  .contact .list .box .inner {
    padding: 20px;
    width: 100%;
  }
  .contact .list .btn {
    width: 100%;
    background: #2A5B88;
    color: #FFF;
    padding: 15px;
  }
  .contact form table {
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-word;
  }
  .contact form table th, .contact form table td {
    display: block;
    box-sizing: border-box;
    padding: 25px 10px;
  }
  .contact form table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 10px !important;
  }
  .contact form table td {
    width: 100%;
    padding-top: 0px !important;
  }
  .contact form table .normal_txt {
    width: 100%;
  }
  .contact form table .small_txt {
    width: 50%;
  }

  .ttl {
    font-size: 184%;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    line-height: 1.3;
  }

  .second_main_img {
    height: 320px;
  }
	.message__area .content{
		display:block;
	}
	.message__area .content .left{
		width:100%;
	}
	.message__area .content .right{
		width:90%;
	}
	footer .copy{
		font-size:90%;
	}
	.center_lead {
    text-align: left;
	padding: 0px 20px
}
	.case_movie iframe {
    width: 100%;
    height: 200px;
    margin-bottom: 60px;
}
/*--追加----*/	
	.concept_inner dl .br-sp{
		display:none;
	}
	.concept_inner .col4 .box {
		width: 48%;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 480px) {
	.half__column .box p{
		padding:0px 5px;		
	}
	.inner_txt{
		padding:0px 5px;
	}
	.sm_ttl{
		padding:0px 5px;
	}
  .sp_wrap {
    width:100%;
    overflow-x: hidden !important;
  }
  .flow .arrow {
    text-align: center;
    padding: 0px 0px;
    font-size: 400%;
  }
  .flow .box {
    padding-bottom: 20px;
  }
  .flow .box .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flow .box .inner .right {
    box-sizing: border-box;
    width: 100%;
  }
  .flow .box .inner .right .copy {
    font-size: 114%;
    margin-bottom: 10px;
  }
  .flow .box .inner .left {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .flow .box .inner .left img {
    max-width: 100%;
    width: auto;
  }
	.flow .box .inner .right .box {
		flex-flow: column-reverse;
	}
	.flow .box .inner .right .box .l, .flow .box .inner .right .box .r {
		width: 100%;
	}
	.flow .box .inner .right .box .r {
		margin-bottom: 10px;
	}
	.flow .box .inner .sub_ttl ul {
		align-items: center;
	}
	.flow .box .inner .sub_ttl ul li:last-child{
		width: 65%;
	}
  .case .r {
    width: 100%;
  }
  .case .r .detail .pic ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .case .r .detail .pic ul li {
    width: 45%;
    position: relative;
  }
  .case .r .detail .pic ul li:first-child:after {
    content: "\f105";
    font-family: FontAwesome;
    color: #202F55;
    position: absolute;
    top: 40%;
    right: -30px;
    font-size: 300%;
  }
  .case .r .detail .pic ul li p {
    text-align: center;
    padding-top: 5px;
    font-size: 114%;
    font-weight: 600;
  }
  .case .r .detail .pic ul li img {
    width: 100%;
  }

  .banner {
    padding-top: 30px;
  }
  .banner li .txt {
    font-size: 94%;
  }

  .top__mess {
    background: #211E27;
    width: 100%;
    padding: 50px 0px;
    box-sizing: border-box;
  }
  .top__mess .sub_ttl {
    width: 100%;
    line-height: 1.5;
    color: #FFF;
    font-size: 144%;
    margin-bottom: 30px;
  }
  .top__mess .sub_ttl span {
    display: block;
    padding-left: 10%;
  }
  .top__mess p {
    font-size: 108%;
    line-height: 1.5;
    color: #FFF;
  }

  .slide_wrapper {
    position: relative;
    z-index: 0;
  }
  .slide_wrapper ul li img {
    height: 450px;
  }
  .slide_wrapper .sub_ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    color: #FFF;
    z-index: 1;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 184%;
  }
  .slide_wrapper .sub_ttl .jp {
    font-size: 40%;
  }
  .slide_wrapper .sub_ttl .sub {
    font-size: 70%;
  }
  .slide_wrapper .copy {
    position: absolute;
    bottom: 10%;
    font-size: 154%;
    line-height: 1.2;
  }
  .slide_wrapper .copy span {
    font-size: 50%;
  }

  .top__header .tagline .logo {
    padding: 10px;
    box-sizing: border-box;
  }
  .top__header .tagline .logo img {
    width: 70%;
  }

  .card__list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card__list ul li {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    width: 100%;
  }
  .card__list ul li figure {
    margin-bottom: 20px;
  }
  .card__list ul li .price {
    color: #b5b5b5;
    font-size: 14px;
    letter-spacing: 0.075em;
    line-height: 24px;
  }
  .card__list .w_20 li {
    width: 100%;
  }

  .qa ul {
    margin-bottom: 40px;
  }
  .qa ul li .lead {
    font-size: 94%;
    padding: 10px 0px;
  }
  .qa ul li .faq_ttl {
    color: #006CD8;
    cursor: pointer;
    padding: 23px 25px 15px 35px;
    position: relative;
    font-size: 104%;
    box-sizing: border-box;
    counter-increment: num;
    border-bottom: 1px solid #CCC;
  }
  .qa ul li .faq_ttl:before {
    content: "Q.";
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    left: 10px;
    top: 20px;
    color: #006CD8;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    font-size: 134%;
  }

  .second_main_img {
    height: 230px;
    margin-bottom: 40px;
  }
  .second_main_img .outer .sub_ttl {
    font-size: 110%;
  }

  .main_visual {
    position: relative;
    width: 100%;
    height: 550px;
  }
  .main_visual .outer {
    width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    color: #FFF;
    line-height: 1.5;
  }
  .main_visual .sub_ttl {
    line-height: 1.7;
    color: #FFF;
    font-size: 144%;
    margin-bottom: 30px;
  }
  .main_visual ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
  }
  .main_visual ul li:not(:last-child) {
    margin-right: 15px;
  }
  .main_visual ul li .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 110px;
    height: 110px;
    background: #FFF;
    border-radius: 50%;
    padding: 10px;
    font-size: 84%;
    box-sizing: border-box;
  }

  .point {
    background: #f5f7fa;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.6;
  }
  .point .sub_ttl {
    font-size: 134%;
    text-align: center;
    color: #111215;
  }
  .point .sub_ttl span {
    font-size: 60%;
  }
	.point_left{
		text-align:left;
	}

  .checklist li {
    padding-left: 25px;
    margin-bottom: 15px;
    position: relative;
    width: 100% !important;
    box-sizing: border-box;
    font-size: 124%;
    text-align: left;
  }
  .checklist li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0px;
    top: 0px;
    color: #202F55;
  }
  .checklist li:last-child {
    margin-bottom: 0px;
  }

  .point_l .sub_ttl {
    background: #202F55;
    padding: 20px;
    box-sizing: border-box;
    color: #FFF;
    font-size: 144%;
    text-align: center;
  }
  .point_l .sub_ttl span {
    font-size: 134%;
    font-weight: bold;
  }
  .point_l .box {
    webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }
  .point_l .box .inner {
    box-sizing: border-box;
    padding: 20px;
  }
  .point_l .box .inner p {
    font-size: 108%;
  }

  .br-sp {
    display: none;
  }

  .local_ttl {
    font-size: 1.14rem;
	  padding:0px 5px;
  }

  .local_text {
    font-size: 1.5rem;
	  
  }

  .three__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .three__column .down {
    width: 100% !important;
  }
  .three__column .box {
    width: 32%;
    margin-bottom: 25px;
  }
  .three__column .box img {
    max-width: 100%;
  }

  .common_btn {
    width: 80%;
    max-width: 300px;
  }

  .image__list_ttl ul li {
    width: 100%;
    margin-bottom: 25px;
  }

  .middle_ttl {
    font-size: 134%;
  }

  .local__tbl table tbody {
    text-align: left;
  }
  .local__tbl table tbody th {
    width: 50%;
	}
	.identity .center{
		text-align:left !important;
	}
	.banner li{
		width:100%;
	}
	.message__area .lead__text{
		font-size:95%;
	}
	.mess_link ul li a{
		font-size:90%;
	}
	.mess_link{
		padding:20px;
	}
	.img_size{
		width:340px;
	}
	.sdgs_page p{
		padding:0px 5px
	}
	.number_list li{
		text-align:left;
	}

}





@media only screen and (max-width: 520px) {
	.pc_none_modal {
    display: block!important;
	}
}