@charset "UTF-8";
* {
  box-sizing: border-box;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.dpf{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
}
a{
	text-decoration: none;
}
img{
	max-width: 100%;
    width: 100%;
}
body{
	line-height: 1.5;
	color: #333333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, メイリオ, sans-serif;
  font-weight: 400;
}

/* ページ遷移アニメーション */
#loading .bg{
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% - 0px);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  background: #15a04c;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading .bg.open {
  visibility: visible;
  opacity: .9;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  } 100%, 0% {
    transform: scale(1.0);
  }
}

article {
  /* max-width: 1200px; */
  max-width:100%;
  padding:0px;
}
section{
  width: 100%;
  padding:10% 5%;
  text-align: center;
  position: relative;
  display: inline-block;
}
/* コンテナー共通 */
section .content{
  margin:50px 0px;
  padding:0px 10%;
}
/* 画像共通 */
section .content .image .roundb{
  border-radius: 10px;
  overflow: hidden;
  border: 5px solid #fff;
  box-sizing: border-box;
}
section .content .image .rect{
  width: 28%;
}
section .content .image .rect:before{
  content:'';
  display:block;
  padding-top:100%;
}
section .content .image img{
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}
section .content .image .rect img{
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
}
/* 共通部分 */
.tblue{
	color:#2aa9d0;
}
.torange{
  color:#eb9c3c;
}
.bggreen{
  background-color:#15a04c;
}
.bgblue{
  background-color:#2aa9d0;
}
.bgorange{
  background-color:#eb9c3c;
}
.dpib{
	display: inline-block;
}
.db{
	display: block;
}
.fss{
	font-size: .9rem;
}
.fsss{
	font-size: .8rem;
}
.fsb{
	font-size: 1.2rem;
}
.ml10{
  margin-left: 10px;
}
.ml50{
	margin-left: 50px;
}
.mt30{
	margin-top: 30px;
}
.mb0{
  margin-bottom:0px !important;
}
.mb20{
  margin-bottom:20px !important;
}
.mb50{
  margin-bottom:50px !important;
}
.pb20{
  padding-bottom:20px !important;
}
.w100{
  width: 100%;
}
.w80{
  width: 80%;
}
.w50{
  width: 50%;
}
.w60{
  width: 60%;
}
.w30{
  width: 30%;
}
.h80{
  height: 80px;
}


/* ハンバーガーメニュー  */
#nav-container {
  position: fixed;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  top: 0px;
  z-index: 10000;
  display: none;
}
#nav-container .bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% - 0px);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  background: #000;
}
#nav-container .bg.open {
  visibility: visible;
  opacity: .8;
}

#nav-container .button{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 20;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 30px;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin:15px 0px 0px 15px;
  /* touch-action: manipulation; */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  right: 10px;
}
#nav-container:after{
    content:'MENU';
    position: absolute;
    top:40px;
    right: 9px;
    font-size: .7rem;
    color:#ccc;
    z-index: 100;
}
.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #aaa;
  transition: .3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}

#nav-container:focus-within .button {
  /* pointer-events: none; */
}
/* #nav-container:focus-within .icon-bar:nth-of-type(1) {
  transform: translate3d(0,
  8px,0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container:focus-within .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-45deg);
} */

#nav-container .button.open .icon-bar:nth-of-type(1) {
    transform: translate3d(0,
    8px,0) rotate(45deg);
}
#nav-container .button.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container .button.open .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-45deg);
}

#nav-content {
  margin-top: 55px;
  padding: 20px;
  width: 90%;
  max-width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 0px);
  /* background: #ececec; */
  background: rgba(255,255,255,.9);
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform: translateX(-100%);
  transition: transform .3s;
  will-change: transform;
  contain: paint;
}
#nav-content.open{
  transform: translate(0);
}


#nav-content ul {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#nav-content li{
    position: relative;
    list-style-type: none;
}
#nav-content li a {
  padding: 10px 5px;
  display: block;
  text-transform: uppercase;
  transition: color .1s;
  border-bottom:2px solid #ccc;
  color:#000;
  font-size: 1rem;
}
#nav-content li.current a{
    color: #eb9c3c;
      border-bottom:2px solid #eb9c3c;
      font-weight: bold;
}
#nav-content li :after{
    position:absolute;
    content:'▶︎';
    right:5px;
    font-size: .8rem;
}

#nav-content li a:hover {
  color: #eb9c3c;
}

#nav-content li:not(.small) + .small {
  margin-top: auto;
}


.fwb{
  font-weight: bold !important;
}
button {
  padding: 10px;
  background: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
}

.sun {
  animation: sun 2000s linear infinite;
  transform-origin: 50% 500%;
}

.cloud--back {
  animation: cloudback 300s linear infinite;
}

.cloud--mid {
  animation: cloudmid 250s linear infinite;
}

.cloud--front {
  animation: cloudfront 150s linear infinite;
}

@keyframes sun {
  0% {
    opacity: 1;
    transform: rotate(0);
  }
  23% {
    opacity: 0.7;
    transform: rotate(9deg);
  }
  23.1% {
    opacity: 0;
    transform: rotate(9deg);
  }
  23.2% {
    opacity: 0;
    transform: rotate(-28deg);
  }
  23.3% {
    opacity: 1;
    transform: rotate(-28deg);
  }
}
/* 各背景装飾 */
.gbar{

}
.gbar:after{
  content:'';
  width: 30%;
  max-width: 420px;
  height: 100%;
  background-color: #eee;
  right: 63vw;
  top:0px;
  position: absolute;
  z-index: -1;
}
.bgbar{
  display: inline-block;
  height: 100%;
}
.bgbar:after{
  content: '';
  width: 90px;
  height: 100%;
  background-color: #eee;
  left: -90px;
  bottom:15px;
  transform: skewX(15deg);
  transform-origin: top right;
  position: absolute;
  z-index: -2;
}
.bgleft{
  position: relative;
}
.bgleft:before{
  content: '';
  width: calc(95% - 60px);
  height: calc(88%);
  background-color: #fff;
  border-radius: 0px 10px 10px 0px;
  left:0;
  top:7%;
  position: absolute;
  z-index: -1;
}
.bgleft:after{
  content: '';
  width: 95%;
  height: 100%;
  background-color: #eee;
  border-radius: 0px 10px 10px 0px;
  left:0px;
  top:0px;
  position: absolute;
  z-index: -2;
}

.bgright{
  position: relative;
}
.bgright:before{
  content: '';
  width: calc(95% - 60px);
  height: calc(88%);
  background-color: #fff;
  border-radius: 10px 0px 0px 10px;
  right:0;
  top:7%;
  position: absolute;
  z-index: -1;
}
.bgright:after{
  content: '';
  width: 95%;
  height: 100%;
  background-color: #eee;
  border-radius: 10px 0px 0px 10px;
  right:0px;
  top:0px;
  position: absolute;
  z-index: -2;
}
.bgcenter{
  position: relative;
}
.bgcenter:after{
  content: '';
  width: 90%;
  height: 100%;
  background-color: #eee;
  border-radius: 10px;
  left:5%;
  top:0px;
  position: absolute;
  z-index: -2;
}


.btn{
  display: inline-block;
  border:2px solid #000;
  border-radius: 35px;
  overflow: hidden;
  margin: 40px auto 0;
  line-height: 2;
}
.btn a{
  display:block;
  /* padding:10px 110px; */
  padding:10px 5vw;
  cursor: pointer;
  transition: all .5s;
}
.btn a:hover{
  background-color: #fff;
  color:#000;
}
.btn.orange{
  color:#eb9c3c;
  border-color:#eb9c3c;
}
.btn.orange a{
  color:#eb9c3c;
}
.btn.orange a:hover{
  background-color: #eb9c3c;
  color:#fff;
}
.btn.blue{
  color:#2aa9d0;
  border-color:#2aa9d0;
}
.btn.blue a{
  color:#2aa9d0;
}
.btn.blue a:hover{
  background-color: #2aa9d0;
  color:#fff;
}
.btn.green{
  color:#15a04c;
  border-color:#15a04c;
}
.btn.green a{
  color:#15a04c;
}
.btn.green a:hover{
  background-color: #15a04c;
  color:#fff;
}

.common_container{
  max-width: 1200px;
  width: 90%;
  margin: 80px auto;
  display: inline-block;
}
.sankaku{
content: "";
position: absolute;
width: 0;
height: 0;
bottom: -79px;
left: 0;
border-style: solid;
border-color: #f4f4f4 transparent transparent transparent;
border-width: 80px 50vw 0 50vw;
z-index: 1;
}

h2{
  font-size: 2.3rem;
}
h2.ttl{
  position: relative;
 display: inline-block;
 padding: 0 55px;
 letter-spacing: 5px;
 line-height: 1.2;
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
h2.ttl .txt{
  display: block;
  font-size: .9rem;
  text-align: center;
  margin-top:5px;
}
h2.ttl:before,
h2.ttl:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #666;
}
h2.ttl:before{
    left: -70px;
}
h2.ttl:after {
    right: -70px;
}
/* オレンジの見出し */
h2.ttl.orange:before,
h2.ttl.orange:after{
  background-color:#eb9c3c;
}
h2.ttl.orange .clr{
  color:#eb9c3c;
}
/* ブルーの見出し */
h2.ttl.blue:before,
h2.ttl.blue:after{
  background-color:#2aa9d0;
}
h2.ttl.blue .clr{
  color:#2aa9d0;
}
h3{
  font-weight: 700;
}
.btn a{
  font-weight: 500;
}
/* 共通 */
header{
  position: fixed;
  display: block;
  width: 100%;
  left: 0;
  z-index: 1000;
  transition: all .5s;
}
header.fixed{
  background-color:rgba(255,255,255,.7);
}
header .container{
  max-width: 768px;
  width: 100%;
  margin: 0px auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .headnav{
  display:inline-block;
  width: 100%;
  margin:30px 0 10px;
  padding:0px 10px;
}
header .logo{
	width: 260px;
	float: left;
}
header .tel_area{
	float: right;
  background-color:#15a04c;
  padding:5px 10px;
  border-radius: 10px;
	color: #fff;
	text-align: right;
	letter-spacing: 0.01em;
  line-height: 1.3;
  min-width: 300px;
}
header .tel_area a{
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .tel_area .icon{
  width: 40px;
}
header .tel_area .txt{
  text-align: left;
}
header .tel_area .no{
	font-weight: bold;
  font-size: 1.7rem;
	position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
header .tel_area .hour{
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
}
header .gnav{
  float: right;
  width: 80%;
  min-width: 880px;
  display: inline-block;
  margin:0px;
}
header .gnav ul{
  width: 100%;
  display:flex;
  justify-content: space-between;
}

header .gnav ul li{
  width: 100%;
  text-align: center;
  list-style-type: none;
  line-height: 2;
  border-bottom:3px solid #666;
  padding:5px 0;
  font-size: min(1.3vw,16px);
  transition: all 0.5s;
}

header .gnav ul li:hover{
  background-color: rgba(255,255,255,.9);
}
header .gnav ul li.current{
  border-color: #eb9c3c;
}
header .gnav ul li a{
  display: block;
  color:#000;
  font-weight: 700;
}
header .gnav ul li a.p2{
  margin:0px 5px;
}
/* スクロール後のヘッダー */
header.fixed{
}
header.fixed .gnav{
  position: absolute;
  right:10px;
  top:50px;
  width: calc(100% - 300px);
  min-width: initial;
}
header.fixed  .gnav ul li {
  line-height: 1.1;
}
header.fixed .tel_area{
  display: none;
}


.mv{
  position: relative;
  height: 100vh;
  margin: 0 auto;
  width: 100vw;
  overflow: hidden;
}

.mv.error{
  position: relative;
  height: 500px;
  padding-top:60px;
}
.mv.error .mv_container .catch h2 .ttl {
  font-size: 3rem;
}
.mv .bg_container{
  position: relative;
  height: 100%;
  width: 100%;
  padding-top:170px;
}
.scroll_btn {
	position: absolute;
	left: 20%;
	bottom: -60px;
}
.scroll_btn .txt{
  position: relative;
}
.scroll_btn .txt p{
	color: #000;
	position: absolute;
	left: -11px;
	top: -170px;
	font-weight: bold;
}
.scroll_btn span {
  position: absolute;
  top: -140px;
  width: 1px;
  height: 80px;
	background-color: #000;
	  left: 20px;
}
.scroll_btn span::before {
  position: absolute;
  top: 10px;
  content: '';
  width: 5px;
  height: 5px;
  margin-left: -2px;
  background-color: #000;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 80px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 80px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


.mv .mv_container{
  position: relative;
  height: 100%;
  width: 100%;
  /* padding:20px 0px 100px; */
  /* max-width: 1200px; */
  /* height: 70vh; */
  padding:0px 0px 50px;
  position: relative;
  margin:20px auto 0;
  display:flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: center;
  /* text-align: center; */
}
.mv .mv_container .catch{
  text-align: left;
  display: inline-block;
  margin-left: 60px;
  width: 50%;
  max-width: 600px;
  float: left;
}
.mv .mv_container .catch h2{
  position: relative;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: min(5vw,60px);
  letter-spacing: 3px;
  line-height: 1.1;
}
.mv .mv_container .catch h2 .midashi{
  display: inline-block;
  background-color:#15a04c;
  color:#fff;
  font-size: min(1vw,1.1rem);
  letter-spacing: 5px;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: normal;
  margin-bottom:7px;
  margin-left: 20px;
}
.mv .mv_container .catch h2 .one{
  display: flex;
  align-items: flex-end;
}
.mv .mv_container .catch h2 .two{
  margin-left: 60px;
}
.mv .mv_container .catch h2 .ttl{
  display: inline-block;
      line-height: 1.1;
}
.mv .mv_container .catch h2 .ttl::first-letter{
  text-transform: uppercase;
  color: #eb9c3c;
}
.mv.blue .mv_container .catch h2 .ttl::first-letter{
  text-transform: uppercase;
  color: #2aa9d0;
}
.mv .mv_container .catch h2 .date{
  font-size: .9rem;
  margin-top:30px;
}
.mv .mv_container .catch h2 .ttl span.copy{
  display: block;
  font-size: .9rem;
  margin-left: 5px;
  text-align: center;
}
.mv .mv_container .catch h2 .ttl span.singlettl{
  display: block;
  font-size: 1.2rem;
  line-height: 2em;
  margin-left: 5px;
  text-align: left;
}
.mv .mv_container .catch .txt{
  width: 75%;
  margin: 50px auto 0;
  padding-right: 10%;
  font-weight: 700;
  font-size: 1.4rem;
}
.mv .mv_container .catch.sub .txt{
  /* font-size: 1.1rem; */
  font-size: min(1.3vw,22px);
}
.mv .mv_container .catch.sub .txt .btn{
  border:none;
}
.mv .mv_container .catch.sub .txt .btn a{
  padding: 10px 50px;
  color:#fff;
  font-size: 1rem;
}
.mv .mv_container .catch.sub .txt .btn a:hover{
  background-color: #15a04c;
  color:#fff;
}
.mv .mv_container .catch .txt .fss{
  display: block;
  font-weight: 400;
  margin-top:20px;
}
.mv .mv_container .catch .txt .chusya{
  font-size: min(1vw,16px);
  font-weight: normal;
  line-height: 1.3;
  margin:10px 0px;
  display: block;
}
.mv .mv_container .catch .txt .navbtn {
    padding: 5px 10px 5px 10px;
    border-radius: 8px;
    background-color: #eca146;
    display: flex;
    align-items: center;
    margin: 10px 0px;
    z-index: 1;
}
.mv .mv_container .catch .txt  .navbtn a{
    display: block;
    width: 100%;
    text-align: center;
    color:#fff;
}
.mv .mv_container .catch .txt  .navbtn a:hover{


}
.mv .mv_container .construction{
  width: 100%;
  display: flex;
  justify-content:center;
  width: 100%;
  max-width: 1000px;
  margin:0px auto;
}
.mv .mv_container .construction .image{
  max-width: 130px;
}
.mv .mv_container .construction .txt{
  font-size: 1.8rem;
  color:#333;
  font-weight: 900;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:column;
}
.mv .mv_container .construction .txt .midashi{
  font-size: 2.5rem;
}
/* サブページ以下 */
/* 共通 */
.breadcrumb{
  position: absolute;
  left: 0px;
  top:0px;
  padding:5px 10px 5px 50px;
  border-radius:0px 8px 8px 0px;
  background-color: #eca146;
  display: flex;
  align-items: center;
  z-index: 1;
}
.mv.blue .breadcrumb{
  background-color: #2aa9d0;
}
.breadcrumb li{
  float: left;
  list-style-type: none;
  display: flex;
  align-items: center;
  color:#fff;
  padding-right: 15px;
  font-size: min(1.3vw,15px);
}
.singlebread  .breadcrumb li:last-child span{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
}


.breadcrumb li a{
  color:#fff;
  margin-right: 15px;
  font-size: min(1.3vw,15px);
}
.breadcrumb li:last-child a{
  margin-right: 0px;
}
.breadcrumb li:not(:last-child):after{
  content:'>';
  font-size: .9rem;
}
.subpage{
  position: relative;
}
.subpage section h2{
  /* margin-bottom:3em; */
  margin:.5em auto 2em;
}

.subpage.plan{
}
.subpage.plan .content{
  text-align: left;
  line-height: 2;
}
.subpage.plann h2 {
    margin: .5em auto 1em;
}
.subpage.plan  p{
  text-align: left;
}
.subpage.plan .dpf>div{
  width: 48%;
}
.subpage.plan .bg{
padding:5% 5% 0;
}
.subpage.plan .bg.plan_cont1{
  background-color: #eee;
  margin-bottom:60px;
}
.subpage.plan .bg.plan_cont1 .map{
  max-width: 600px;
  width: 75%;
  margin: 0px auto 50px;
}
.subpage.plan  #accordion .block{
  margin-bottom:30px;
}
.subpage.plan  #accordion .block>.accordion-title{
  text-align: center;
}
.subpage.plan  #accordion .block>.accordion-content>div{
  max-width: 600px;
  width: 75%;
  margin: 0px auto;
}
.subpage.plan  #accordion .block.orange>.accordion-title.open,.subpage.plan  #accordion .block.orange>.accordion-content{
  background-color: #fde4c6;
}
.subpage.plan  #accordion .block.orange>.accordion-title::before,.subpage.plan  #accordion .block.orange>.accordion-title::after {
  background-color: #eb9c3d;
}
.subpage.plan  #accordion .block>.accordion-content{
  display:none;
}
.subpage.plan .plan_cont2{
  padding:50px 5%;
}
.subpage.plan .plan_cont2 .content{
  margin-bottom:0px;
}
.subpage.plan .plan_cont2.bgleft:before{
  content:none;
  display: none;
}
.subpage.plan .plan_cont2 .attention{
  display: block;
  background-color: #fff;
  padding: 15px 5px;
  border-radius: 10px;
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: .9rem;
  /* margin-top: -50px; */
  width: 72%;
  margin: 0px auto;
}
.subpage.plan .plan_cont2 .charging_cont{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.subpage.plan .plan_cont2 .charging_cont>div{
  width: 46%;
  margin-bottom:50px;
}
.subpage.plan .plan_cont2 .charging_cont>div img{
  width: 100%;
  height: 100%;
  margin: 0px;
  clear: none;
  max-width: initial;

}
.subpage.plan .plan_cont2 .charging_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 80px;
}
.subpage.plan .plan_cont2 .charging_nav>div{
  width:calc(100% / 3.1);
  padding:15px 10px;
  color:#fff;
  background-color: #e2973d;
  text-align: center;
  border-radius: 15px;
  font-size: 1rem;
}
.subpage.plan .plan_cont2 .charging_nav>div a{
  color:#fff;
  display:block;
}
.subpage.plan .plan_cont2 .charging_cont .svg{

}
.subpage.plan .plan_cont2 .charging_cont .block{
}
.subpage.plan .plan_cont2 .charging_cont .block .ttl{
  padding: 10px 50px;
  min-width: 25%;
  background-color: #e2973d;
  text-align: center;
  display: inline-block;
  margin-bottom: 50px;
  color: #fff;
  border-radius: 15px;
  float: left;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 3px;
}
.subpage.plan .plan_cont2 .charging_cont .block h3{
  font-size: 2rem;
  margin-bottom:.8em;
}
.subpage.plan .plan_cont2 .charging_cont .block h3 .clr{
  color: #eb9c3c;
}
.subpage.plan .plan_cont2 .charging_cont .block:not(:last-of-type){
  margin-bottom:80px;
}
.subpage.plan .plan_cont2 .charging_cont .block h3{

}
.subpage.plan .plan_cont2 .charging_cont .block .cont{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.subpage.plan .plan_cont2 .charging_cont .block .cont .num{
  font-size: 2rem;
  font-weight: bold;
}
.subpage.plan .plan_cont2 .charging_cont .block .cont .fss{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.subpage.plan .plan_cont3{
  padding: 5%;
  margin-top:60px;
}
.subpage.plan .plan_cont3 .container {
  position: relative;
}
.subpage.plan .plan_cont3 .container .content p{
    text-align: center;
}
.subpage.plan .plan_cont3 .container .content{
  margin: 0px;
  padding: 0px;
}
.subpage.plan .plan_cont3 .container  h2{
  margin: 0 auto 1em;
}
.subpage.plan .plan_cont3:after{
  content: '';
  width: 95%;
  height: 100%;
  background-color: #eee;
  border-radius: 10px 0px 0px 10px;
  right:0px;
  top:0px;
  position: absolute;
  z-index: -2;
}

.subpage.plan .merit_demerit .container{
  background-color: #eee;
  border-radius: 10px;
  padding:5%;
}
.subpage.plan .merit_demerit .merit_cont{

}
.subpage.plan .merit_demerit .merit_cont .block{
  max-width: 1100px;
  margin:0px auto 50px;
}
.subpage.plan .merit_demerit .merit_cont .block h3{
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.subpage.plan .merit_demerit .merit_cont .block p{
  text-align: left;
}
.subpage.plan .merit_demerit .merit_cont .block h3 .num{
    border:1px solid #eb9c3c;
    padding:10px;
    border-radius: 5px;
    margin-right: 1em;
}
.subpage.plan .merit_demerit .merit_cont .block img{
  margin:30px auto;
}
.subpage.plan .merit_demerit .demerit{
  padding: 0px;
  margin-top:60px;
}
.subpage.plan .merit_demerit .demerit .demerit_cont{
  max-width: 1000px;
  margin:0px auto;
}
.subpage.plan .merit_demerit .demerit .demerit_cont h2{
  background-color: #eb9c3c;
  padding:10px;
  display: block;
  color:#fff;
  border-radius: 10px;
  margin-bottom:30px;
  font-size: 1.5rem;
}
/* テスト */

.subpage.plan-gas{
}
.subpage.plan-gas .content{
  text-align: left;
  line-height: 2;
}
.subpage.plan-gasn h2 {
    margin: .5em auto 1em;
}
.subpage.plan-gas  p{
  text-align: left;
}
.subpage.plan-gas .dpf>div{
  width: 48%;
}
.subpage.plan-gas .bg{
padding:5% 5% 0;
}
.subpage.plan-gas .bg.plan_cont1{
  background-color: #eee;
  margin-bottom:60px;
}
.subpage.plan-gas .bg.plan_cont1 .map{
  max-width: 600px;
  width: 75%;
  margin: 0px auto 50px;
}
.subpage.plan-gas  #accordion .block{
  margin-bottom:30px;
}
.subpage.plan-gas  #accordion .block>.accordion-title{
  text-align: center;
}
.subpage.plan-gas  #accordion .block>.accordion-content>div{
  max-width: 600px;
  width: 75%;
  margin: 0px auto;
}
.subpage.plan-gas  #accordion .block.orange>.accordion-title.open,.subpage.plan-gas  #accordion .block.orange>.accordion-content{
  background-color: #fde4c6;
}
.subpage.plan-gas  #accordion .block.orange>.accordion-title::before,.subpage.plan-gas  #accordion .block.orange>.accordion-title::after {
  background-color: #eb9c3d;
}
.subpage.plan-gas  #accordion .block>.accordion-content{
  display:none;
}
.subpage.plan-gas .plan_cont2{
  padding:50px 5%;
}
.subpage.plan-gas .plan_cont2 .content{
  margin-bottom:0px;
}
.subpage.plan-gas .plan_cont2.bgleft:before{
  content:none;
  display: none;
}
.subpage.plan-gas .plan_cont2 .attention{
  display: block;
  background-color: #fff;
  padding: 15px 5px;
  border-radius: 10px;
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: .9rem;
  /* margin-top: -50px; */
  width: 72%;
  margin: 0px auto;
}
.subpage.plan-gas .plan_cont2 .charging_cont{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.subpage.plan-gas .plan_cont2 .charging_cont>div{
  width: 46%;
  margin-bottom:50px;
}
.subpage.plan-gas .plan_cont2 .charging_cont>div img{
  width: 100%;
  height: 100%;
  margin: 0px;
  clear: none;
  max-width: initial;

}
.subpage.plan-gas .plan_cont2 .charging_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 80px;
}
.subpage.plan-gas .plan_cont2 .charging_nav>div{
  width:calc(100% / 3.1);
  padding:15px 10px;
  color:#fff;
  background-color: #e2973d;
  text-align: center;
  border-radius: 15px;
  font-size: 1rem;
}
.subpage.plan-gas .plan_cont2 .charging_nav>div a{
  color:#fff;
  display:block;
}
.subpage.plan-gas .plan_cont2 .charging_cont .svg{

}
.subpage.plan-gas .plan_cont2 .charging_cont .block{
}
.subpage.plan-gas .plan_cont2 .charging_cont .block .ttl{
  padding: 10px 50px;
  min-width: 25%;
  background-color: #e2973d;
  text-align: center;
  display: inline-block;
  margin-bottom: 50px;
  color: #fff;
  border-radius: 15px;
  float: left;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 3px;
}
.subpage.plan-gas .plan_cont2 .charging_cont .block h3{
  font-size: 2rem;
  margin-bottom:.8em;
}
.subpage.plan-gas .plan_cont2 .charging_cont .block h3 .clr{
  color: #eb9c3c;
}
.subpage.plan-gas .plan_cont2 .charging_cont .block:not(:last-of-type){
  margin-bottom:80px;
}
.subpage.plan-gas .plan_cont2 .charging_cont .block h3{

}
.subpage.plan-gas .plan_cont2 .charging_cont .block .cont{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.subpage.plan-gas .plan_cont2 .charging_cont .block .cont .num{
  font-size: 2rem;
  font-weight: bold;
}
.subpage.plan-gas .plan_cont2 .charging_cont .block .cont .fss{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.subpage.plan-gas .plan_cont3{
  padding: 5%;
  margin-top:60px;
}
.subpage.plan-gas .plan_cont3 .container {
  position: relative;
}
.subpage.plan-gas .plan_cont3 .container .content p{
    text-align: center;
}
.subpage.plan-gas .plan_cont3 .container .content{
  margin: 0px;
  padding: 0px;
}
.subpage.plan-gas .plan_cont3 .container  h2{
  margin: 0 auto 1em;
}
.subpage.plan-gas .plan_cont3:after{
  content: '';
  width: 95%;
  height: 100%;
  background-color: #eee;
  border-radius: 10px 0px 0px 10px;
  right:0px;
  top:0px;
  position: absolute;
  z-index: -2;
}

.subpage.plan-gas .merit_demerit .container{
  background-color: #eee;
  border-radius: 10px;
  padding:5%;
}
.subpage.plan-gas .merit_demerit .merit_cont{

}
.subpage.plan-gas .merit_demerit .merit_cont .block{
  max-width: 1100px;
  margin:0px auto 50px;
}
.subpage.plan-gas .merit_demerit .merit_cont .block h3{
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.subpage.plan-gas .merit_demerit .merit_cont .block p{
  text-align: left;
}
.subpage.plan-gas .merit_demerit .merit_cont .block h3 .num{
    border:1px solid #eb9c3c;
    padding:10px;
    border-radius: 5px;
    margin-right: 1em;
}
.subpage.plan-gas .merit_demerit .merit_cont .block img{
  margin:30px auto;
}
.subpage.plan-gas .merit_demerit .demerit{
  padding: 0px;
  margin-top:60px;
}
.subpage.plan-gas .merit_demerit .demerit .demerit_cont{
  max-width: 1000px;
  margin:0px auto;
}
.subpage.plan-gas .merit_demerit .demerit .demerit_cont h2{
  background-color: #eb9c3c;
  padding:10px;
  display: block;
  color:#fff;
  border-radius: 10px;
  margin-bottom:30px;
  font-size: 1.5rem;
}




.subpage.flow{

}
.subpage.flow .content{
  padding: 0px;
  margin:0px auto;
}
.subpage.flow .content .block{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding:50px 10%;
  background-color: #eee;
  max-width: 1300px;
  margin: 0px auto;
  margin-bottom:10%;
  border-radius: 10px;
}
.subpage.flow .content .block:nth-of-type(2n){
  flex-direction: row-reverse;
}
.subpage.flow .content .block:last-of-type{
  margin-bottom:0px;
}
.subpage.flow .gbar{
  padding-bottom:0;
}

.subpage.flow .content .block .image{
  width: 38%;
  max-width: 250px;
  height: 250px;
  margin-left:0;
  margin-top:0;
}
.subpage.flow .content .block:nth-of-type(2n) .image{
  margin-left:0;
  margin-right: 0;
}
.subpage.flow .content .block .image .roundb{
  width: 100%;
  height: 100%;
}
.subpage.flow .content .block .txt{
  width: 60%;
  /* width: calc(100% - 270px); */
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.subpage.flow .content .block .txt .biko{
    border:1px solid #eb9c3c;
    padding:10px;
    background-color: #fff;
    display: block;
    font-size: .9rem;
    margin: 20px 0px 0px;
}
.subpage.flow .content .block .txt .biko .fss{
  font-size: .8rem;
}
.subpage.flow .content .block .large{
  text-align: center;
  margin: 30px auto 0;
  width: 100%;
}
.subpage.flow .content .block .large .pdfemb-viewer{
  display: inline-block;
}
.subpage.flow .content .block .txt h3 .num{
  background-color: #eb9c3c;
  color:#fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  margin-right: 10px;
  margin-bottom:.5em;
  padding:7px;
}
.subpage.flow .content .block .txt p{
  padding-left: 45px;
}

.subpage.faq{

}
.subpage.faq .faq_content{
  background-color: #eee;
}
.subpage.faq .navigation{
  background-color: #dcdcdc;
  padding:30px;
  padding:5% 10% 5%;
  margin-top:30px;
}
.subpage.faq .navigation ul{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.subpage.faq .navigation ul li{
  list-style-type: none;
  margin:0px 5px;
}
.subpage.faq .navigation ul li a{
  color:#000;
}
.subpage.faq .navigation ul li a:before{
  content:"▼";
  margin-right:5px;
  color:#2aaad0;
}
.subpage.faq .faq_content .faq_container{
  margin-bottom:120px;
}
.subpage.faq .faq_content .faq_container .block{
  margin-bottom: 30px;
}
.subpage.faq .faq_content .faq_container .block .btn_container{
  margin: 0px auto;
  text-align: center;
}
.subpage.faq .faq_content .faq_container .block .btn.calendar{
  background-color: #2aa9d0;
  border:none;
  display: inline-block;
}
.subpage.faq .faq_content .faq_container .block .btn.calendar a{
  color:#fff;
}
.subpage.faq .faq_content .faq_container .block .btn.calendar a:hover{
  background-color: #157694;
  color:#fff;
}
.subpage.company{
  padding:10% 0% 0;
}
.subpage.company .info.bgleft:before{
  content:none;
  display: none;
}
.subpage.company .info.bgleft{
}
.subpage.company .info.bgleft .container{
  background-color: #fff;
  width: 90%;
  max-width: 1200px;
  margin: 0px auto;
  border-radius: 10px;
  padding:5%;
}
.subpage.company .info.bgleft .container h2{
  margin-bottom:2em;
}
.subpage.company .support.bgright{
  margin:80px 0 0;
}
.subpage.company .support.bgright .container{
  background-color: #fff;
  width: 90%;
  max-width: 1200px;
  margin: 0px auto 50px;
  border-radius: 10px;
  padding: 3% 5% 5%;
}
.subpage.company .support.bgright .container h2{
  margin-bottom:2em;
}
.subpage.company .support.bgright .container .contents{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.subpage.company .support.bgright .container .contents img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.subpage.company .support.bgright .container .contents .sdgs{
  width: 100%;
  margin-bottom: 10px;
  max-width: 500px;
  margin: 0px auto 30px;
}
.subpage.company .support.bgright .container .contents .txt{
  width: calc(100% - 200px);
  padding-right: 10px;
  text-align: left;
  line-height: 2;
}
.subpage.company .support.bgright .container .contents .txt span{
  font-weight: bold;
}
.subpage.company .support.bgright .container .contents .image{
  overflow: hidden;
  height: 150px;
  width: 200px;
}
.subpage.company .dpf{
  max-width: 1000px;
  justify-content: space-around;
  margin: 0px auto;
}
.subpage.company .dpf >div{
  width: 48%;
}
.subpage.company .dpf >div dl{
  text-align: left;
  line-height: 3.4;
}
.subpage.company .dpf >div dl.second{
}
.subpage.company .dpf >div dl.second dt,.subpage.company .dpf >div dl.second dd{
  height: 75px;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
.subpage.company .dpf >div dl dt{
  float: left;
  clear: left;
  width: 40%;
  font-weight: bold;
}
.subpage.company .dpf >div dl dd{
  float: left;
  width: 60%;

}
.subpage.company .dpf >div dl dt:not(:first-of-type),.subpage.company .dpf >div dl dd:not(:first-of-type){
  border-top:2px solid  #2aa9d0;
}
.subpage.company .dpf >div dl dt:last-of-type,.subpage.company .dpf >div dl dd:last-of-type{
  border-bottom:2px solid  #2aa9d0;
}
.subpage.company .bgright{
  padding:7% 0 0;
}
.subpage.company .bgright:before{
  content:none;
  display: none;
}

.subpage.company .access{
  padding: 10% 0% 0;
  margin-bottom:5%;
}
.subpage.company .access .map{
  width: 80%;
  max-width: 1100px;
  margin:0px auto;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.subpage.company .access iframe{
  width: 100%;
}
.subpage.company .access .accessinfo{
  display: inline-block;
  width: 100%;
  margin-bottom:60px;
}
.subpage.company .access .accessinfo dl{
  text-align: left;
  display: block;
  max-width: 800px;
  margin: 50px auto;
}
.subpage.company .access .accessinfo dl dt{
  width: 25%;
  margin-right:.5%;
  clear: left;
  float: left;
  font-weight: bold;
  padding:15px 25px;
}
.subpage.company .access .accessinfo dl dd{
  width: 74.5%;
  float: left;
  padding:15px 25px;
}
.subpage.company .access .accessinfo dl dt:not(first-of-type),.subpage.company .access .accessinfo dl dd:not(first-of-type){
  border-bottom:4px dotted #2aa9d0;
}

.pdf_container{
  border:1px solid #000;
  border-radius: 10px;
  padding:15px 20px;
  margin: 30px 0px;
  display: block;
  line-height: 3;
}
.pdf_container a{
  font-weight: bold;
  font-size: 1.1rem;
}
.block.step{

}
.block.step:after{
  content:'';
  width: 15px;
  height: 15px;
  top:35%;
  right:-10%;
  border-left: 15px solid #ccc;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  position: absolute;
}

.subpage.partner{

}
.subpage.partner .content{
  display: flex;
  justify-content:space-around;
  flex-wrap: wrap;
  margin:0px auto;
}
.subpage.partner .content .block{
  width: calc(100% / 3.5);
  margin-bottom:50px;
  position: relative;
}
.subpage.partner .content .block .image{
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
}
.subpage.partner .content .block .image:before{
  content:'';
  display:block;
  padding-top:100%;
}
.subpage.partner .content .block .image img{
  position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 margin: auto;
 object-fit: cover;
}
.subpage.partner .content .block .txt{
  margin-top:.5em;
  text-align: left;
}
.subpage.partner .content .block .txt h4{
  margin:1em auto .5em;
  text-align: center;
}
.subpage.partner .content.two{
  border:2px solid #eb9c3c;
  padding:20px 15px;
  border-radius: 10px;
  box-sizing:border-box;
  width: 85%;
  max-width: 1100px;
}
.subpage.partner .content.two .block{
    width: calc(100% / 2.6);
    margin-bottom:0px;
    font-size: 1.2rem;
}
.subpage.partner .content.two .block h4{
  text-align: left;
}


.subpage.partner .biko{
    width: 85%;
    max-width: 1100px;
    text-align: left;
    margin: 30px auto;
}
.subpage.partner .bgwhite{
  background-color: #fff;
  text-align: center;
  padding:50px;
}
.subpage.partner .charging{
  padding-top:7%;
}
.subpage.partner .charging.bgright:after,.subpage.partner .charging.bgleft:after {
    width: 100%;
}
.subpage.partner .benefits .matome{
  display: block;
  margin:50px auto;
  width: 100%;
  border:3px solid #eb9c3c;
  border-radius: 10px;
  padding:5% 7%;
}
.subpage.partner .benefits .matome .image{
  display:inline-block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 130px;
  margin-bottom:30px;
  height: 300px;
}
.subpage.partner .benefits .matome .txt{
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
}
.subpage.partner .benefits .matome .txt span{
  background: linear-gradient(transparent 60%, yellow 40%);
}
.subpage.partner .benefits .sonota{
  margin:30px auto;
  width: 100%;
}
.subpage.partner .benefits .sonota .midashi{
  margin:15px auto;
  color:#eb9c3c;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  letter-spacing: 3px;
}
.subpage.partner .benefits .sonota .midashi img{
  width: 37px;
  max-width: initial;
  margin-left: 20px;
}
.subpage.partner .benefits .sonota ul li{
  list-style-type: none;
  text-align: left;
  border-bottom:1px solid #ccc;
  padding:10px 0px 10px 0px;
  display: flex;
  align-items: center;
}
.subpage.partner .benefits .sonota  ul li::before{
  content:'';
  width:15px;
  height: 15px;
  margin-right: 20px;
  background-color: #eb9c3c;
  display: inline-block;
  border-radius: 50px;

}
.subpage.partner .step_content{
  display: flex;
  flex-direction: column;
  background-image:url(../images/partner_stepbg.jpg);
  background-size: contain;
  background-position: 85% center;
  min-height: 300px;
  padding:0px 10%;
  margin: 0px auto;
}
.subpage.partner .step_content .block{
  padding-right: 16%;
  margin-bottom:30px;
  width: 100%;
}
.subpage.partner .step_content .block .txt{
  width: 100%;
  display:flex;
  justify-content: space-between;
}
.subpage.partner .step_content .block .txt .step{
  background-color: #eb9c3c;
  padding:10px 15px;
  padding-left: 70px;
  width: 35%;
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  color:#fff;
  font-weight: bold;
}
.subpage.partner .step_content .block .txt .step .num{
  position: absolute;
  background-color: #fff;
  width:30px;
  height: 30px;
  border-radius: 50%;
  color:#eb9c3c;
  font-size: 1.3rem;
  font-weight: bold;
  left:10px;
  top:50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.subpage.partner .step_content .block .txt .txtblock{
  width: 65%;
  text-align: left;
  padding: 0px 10px;
  font-size: .9rem;
}
.subpage.partner .step_content .block .txt p{
  width: 63%;
  text-align: left;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

.subpage.partner .flow{
  padding-top:7%;
}
.subpage.partner .flow .point{
  padding: 0 2% 5%;
  border:2px solid  #ccc;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0px auto;
}
.subpage.partner .flow .container .point h3{
  color:#eb9c3c;
  margin: 1em auto;
}
.subpage.partner .flow .point .container{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 0px 10%;
}
.subpage.partner .flow .point .container .block{
  width: calc(100% / 3.2);
  padding: 0;
  text-align:left;
  font-weight: bold;
  position: relative;
}
.subpage.partner .flow .point .container .block .image{
  border:2px solid  #eb9c3c;
  border-radius: 10px;
  padding:5% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:10px;
  position: relative;
  min-height: 250px;
}
.subpage.partner .flow .point .container .block .image img{
  max-width: 100px;
  max-height: 100px;
}
.subpage.partner .flow .point .container .block .image .num{
  width:40px;
  height: 40px;
  background-color: #eb9c3c;
  color:#fff;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  left:10px;
  top:10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.subpage.partner .charging.bgright:after{
  width: 100%;
  border-radius: 0px;
}
.subpage.partner .flow .container{
  padding:5%;
}
.subpage.partner .flow .container:after{
  width: 100%;
  border-radius: 0px;
}
.subpage.partner .flow .container .content{
  padding: 0 10%;
}
.subpage.partner .flow .container h3{
  font-size: 1.15rem;
  margin: 1em auto 2em;
}
.subpage.partner .case{

}
.subpage.partner .case .container{
  padding:0px 10%;
}
.subpage.partner .case .container h3{
  color:#eb9c3c;
  font-size: 1.6rem;
  text-align: left;
  margin:1rem 0 2rem;
}

.subpage.partner .contact{
  margin-top:60px;
}
.subpage.partner .contact.bgleft:before{
  background-image:url("../images/partner_bg.jpg");
  background-size: cover;
  border-radius: 0px;
  border: 5px solid #fff;
  box-sizing: border-box;
}
.subpage.partner .contact.bgleft:after{
  width: 100%;
  border-radius: 0px;
}
.subpage.partner .contact .content{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  line-height: 2.2;
}
.subpage.partner .contact .content h2{
  margin-bottom:1.5em;
}
.subpage.partner .contact .content>div{
  width: 80%;
  text-align: center;
  color:#fff;
}
.subpage.partner .content .btn{
    margin: 0px;
    background-color: #eb9c3c;
    color:#fff;
    border-color:#fff;
    width: auto !important;
    display: inline-block;
}
.subpage.partner .content .btn a{
  color:#fff;
}
.subpage.partner .content .btn:hover a{
  color:#eb9c3c;
}
.subpage.basic{
    background-color: #eee;
    display: inline-block;
    width: 100%;
}
.subpage.basic .post-content{
  width: 100%;
  max-width: 1100px;
  margin: 5% auto;
  display: block;
}
.subpage.basic section{
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
}
.subpage.basic section h3{
  margin:2em 0 1em;
}
.subpage.basic section h4{
  margin:1.5em 0 .75em;
}
/* 手話でんき */

.subpage.syuwadenki{

}
.subpage.syuwadenki .kuro{

}
.subpage.syuwadenki .kuro .content{

}
.subpage.syuwadenki .kuro .content .block{
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  margin-bottom:60px;
}
.subpage.syuwadenki .kuro .content .block .image{
  width: 20%;
  border-radius: 10px;
  overflow: hidden;
}
.subpage.syuwadenki .kuro .content .block .txt{
  width: 80%;
  padding:10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  justify-content:center;
}
.subpage.syuwadenki .kuro .content .block .txt h3{
  margin-bottom:1em;
}
.subpage.syuwadenki .kuro .content .matome{
  font-weight: bold;
  text-align: center;
}
.subpage.syuwadenki .plan{
  position: relative;
  padding: 10% 0;
}
.subpage.syuwadenki .plan.bgleft:after{
  background-color: #fff;

}
.subpage.syuwadenki .plan.bgleft:before{
  background-color: #eee;
}

.subpage.syuwadenki .plan h2 {
    margin: 0.5em auto 1em;
}


.subpage.syuwadenki .plan:after{
  content:'';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eee;
  z-index: -2;
  top:0;
  left: 0;
}
.subpage.syuwadenki .plan .container{
  width: 100%;
}
.subpage.syuwadenki .plan .container .block{
  width: 100%;
  margin: 0px auto 70px;
  position: relative;
}
.subpage.syuwadenki .plan .container .block img{
  max-width: 1000px;
  height: auto;
}
.subpage.syuwadenki .plan .container .block:after{
  content:'';
  background-color: #fff;
  width: 95vw;
  border-radius: 0px 10px 10px 0px;
  height: 100%;
  position: absolute;
  left: -10%;
  top:40px;
  z-index: -1;
}
.subpage.syuwadenki .plan .container .block:nth-of-type(2):after{
  border-radius: 10px 0px 0px 10px;
  left: initial;
  right:0px;
}
.subpage.syuwadenki .plan .container .block .ttl{
  font-weight: bold;
  font-size: 1.4rem;
  position: absolute;
  left: 50%;
  top: 70px;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
/*
.subpage.syuwadenki .plan.bgleft:after{
  background-color: #fff;

}
.subpage.syuwadenki .plan.bgleft:before{
  background-color: #eee;
}
.subpage.syuwadenki .plan.bgleft .container{
}
.subpage.syuwadenki .plan.bgleft .container .block{
  position: relative;
  width: 70vw;
  margin: 0px auto 100px;
  padding: 20px;
  display: block;
}
.subpage.syuwadenki .plan.bgleft .container .block img{
  width: auto;
}
.subpage.syuwadenki .plan.bgleft .container .block .ttl{
  font-weight: bold;
  font-size: 1.4rem;
  position: absolute;
  left: 50%;
  top: 70px;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
.subpage.syuwadenki .plan.bgleft .container .block:after{
  content: '';
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.subpage.syuwadenki .plan.bgleft .container .block:nth-of-type(2):after{

} */
.subpage.syuwadenki .donation{

}
.subpage.syuwadenki .donation .container .contents{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  margin: 0px auto;
}
.subpage.syuwadenki .donation .container .contents .sdgs{
  width: 100%;
  margin-bottom:50px;
}
.subpage.syuwadenki .donation .container .contents .txt{
  font-size: 1.2rem;
  width: 75%;
  text-align: left;
  line-height: 2;
}
.subpage.syuwadenki .donation .container .contents .txt span{
  font-weight: bold;
}
.subpage.syuwadenki .donation .container .contents .image{
  width: 25%;
}
.subpage.syuwadenki .donation img{
  width: auto;
  height: auto;
}


/* 問い合わせ */
.subpage.contact{
  background-color: #eee;
}

/* 独自タブメニュー */
/*タブ切り替え全体のスタイル*/
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 100%;
    align-items: flex-end;
    justify-content:center;
}
.tab-wrap:after {
    content: '';
    width: 100%;
    /* height: 3px;
  background: #f2c230; */
    display: block;
    order: -1;
}
.tab-label {
    color: White;
    background: LightGray;
    color: #00000c;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    text-align: center;
    padding:15px 0px;
    margin: 0px 50px;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    font-size: 18px;
    max-width: 350px;
    line-height: 1.1rem;
}
label~label {
    margin-left: 5px;
}

.tab-label:not(:last-of-type) {
    margin-right: 0px;
}
.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: #eca146;
    color: #fff;
}
.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    /* padding: 15px; */
    padding: 0px;
    opacity: 1;
    transition: .5s opacity;
}

/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}
.form{
  border-top:10px solid #2aaad0;
}

.form form{
    background-color: #fff;
    padding:0;
    margin:0px auto;
}

.form form dl{
    display: inline-block;
    border-collapse: collapse;
    display: flex;
    flex-wrap: wrap;
}
.form form dl dt{
    display: flex;
    align-items: center;
    justify-content:flex-end;
    font-size: 1.1rem;
    float: left;
    width: 20%;
    padding:30px 15px;
    position: relative;
    min-width: 230px;
}
.form form dl dt .hissu{
}
.form form dl dt .hissu:after{
  content:'*';
  color:#ff0000;
  margin-right: 5px;
}
.form form dl dd{
    background-color: #fff;
    float: left;
    padding:30px 30px;
    width: 70%;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-wrap: wrap;
}
.form form dl dd .postbox{
  display: flex;
  align-items: center;
}
.form form dl dd.tel{

}
.form form dl dd.tel .w35{
    width: 230px;
    display: flex;
}
.recruit-lp .post-content .table .apply .mw_wp_form .error {
    font-size: .9rem;
    line-height: 1.1;
    margin:5px 0px;

}

.form form dl dd .w35{
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form form .confirm_btn{
    display:inline-block;
    margin: 30px auto;
    text-align: center;
}
.form form .doui{
    display: inline-block;
}
.form form .doui .window{
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ccc;
    width: 80%;
    margin: 0px auto 15px;
    display: block;
    overflow: scroll;
    height: 200px;
    font-size: .9rem;
    line-height: 1.8rem;
    text-align: left;
}
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0px !important;
    width: 100%;
    text-align: left;
}
@media screen and (max-width: 1100px) {
    .form form dl dd.tel .w35 {
        width: 100%;
        margin-bottom:5px;
    }
    .form form dl dd.tel .w35 input[type="text"]{
        width:270px !important;
        margin-right: 5px;
    }

}
.form form dl dd.tel .w35 input[type="text"]{
    width: 130px;
}
.form form dl dd .w35 input[type="text"]{
    width: 160px;
}
.form form dl dd input[type="text"]{
    width: 100%;
    padding:15px 10px;
    border:1px solid #cccc;
}
.form form dl dd input[type="email"]{
    width: 100%;
    padding:15px 10px;
    border:1px solid #cccc;
}
.mwform-zip-field{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50%;
  justify-content: space-between;
}

.form form dl dd textarea{
    width: 100%;
    height: 400px;
    padding:15px 10px;
    border:1px solid #cccc;
}

.form form dl dd .w30{
    width: 30%;
    display: flex;
    align-items: center;
}
.form form dl dd .w20{
    width: 20%;
}
.form form dl dd .mr20{
    margin-right: 20px;
    margin-left: 5px;
}
.form form dl dd .midashi{
    width: 35px;
}
.form form dl dd .w100{
    width: 100%;
    display: flex;
    align-items: center;
}
.form form dl dd .mini{
    font-size: .8rem;
    white-space:normal;
}
.form form input[type="submit"]{
    margin:30px auto;
    text-align: center;
    background-color: #2aaad0;
    padding:10px;
    border-radius: 25px;
    color:#fff;
    font-weight: bold;
    display: block;
    font-size: 1.2rem;
    min-width: 300px;
}

 .form form dl dd.tel{

 }
 .form form dl dd.tel .w35{
     width: 100%;
     margin-bottom: 5px;
 }
 .form form dl dd.tel .w35 input[type="text"]{
      width: 70%;
  }

 .form form dl dd .w35{
     justify-content: space-between;
     width: 48%;
 }
 .form form dl dd .w35 input[type="text"]{
     width: 100px;
 }
 .form form dl dd .mr20{
     margin-right: 5px;
     margin-left: 5px;
 }
 .form form .mwform-tel-field{
     display: flex;
     width: 100%;
     justify-content: center;
     align-items: center;
 }
 .form form .mwform-tel-field > input{
     margin:0px 5px;
 }
  .form form .mwform-tel-field > input:first-child{
      margin:0;
      margin-right: 5px;
  }
  .form form .mwform-tel-field > input:last-child{
      margin:0;
      margin-left: 5px;
  }




/* ここまで */
@media screen and (max-width: 1200px) {

    /* laptop start */


    /* end start */
}

@media screen and (max-width: 991px) {
    /* tablet */
    .form form {
        width: 100%;
    }
    .form form dl dt{
        width: 100%;
        min-width: initial;
        display: inline-block;
        padding: 0;
    }
    .form form dl dd{
        width: 100%;
        padding: 15px 0;
    }
    .form form dl dd .postbox {
      width: 100%;
      justify-content: center;
    }
    .form form .doui .window{
        width: 100%;
    }
    .subpage.plan .plan_cont2 {
    padding: 50px 0;
    }
    .subpage.plan .plan_cont2 .charging_cont .block {
    padding: 20px 0;
   }
   .subpage.plan .plan_cont2 .charging_nav{
     margin-bottom:50px;
   }
   .subpage.plan .plan_cont2 .charging_nav>div{
     font-size: .9rem;
     padding: 15px 0px;
   }
   .subpage.plan .plan_cont2 .charging_cont .block .ttl{
     margin-bottom:30px;
     font-size: .8rem;
   }
   .subpage.plan .plan_cont2 .charging_cont .block:not(:last-of-type) {
    margin-bottom: 40px;
    }
    header.fixed .gnav ul li:nth-of-type(1){
      width: 10%;
    }
    header.fixed .gnav ul li:nth-of-type(2){
      width: 10%;
    }
    header.fixed .gnav ul li:nth-of-type(3){
      width: 18%;
    }
    header.fixed .gnav ul li:nth-of-type(4){
      width: 14%;
    }
    header.fixed .gnav ul li:nth-of-type(5){
      width: 12%;
    }
    header.fixed .gnav ul li:nth-of-type(6){
      width: 13%;
    }
    header.fixed .gnav ul li:nth-of-type(7){
      width: 12%;
    }
    header.fixed .gnav ul li:nth-of-type(8){
      width: 15%;
    }
    /* tablet end */
}

@media screen and (max-width: 767px) {
  /* phone */
  .form form .doui .window h3{
    font-size: 14px;
  }
    /* phone end */
}
/* フォーム関連ここまで */


/* アーカイブページ */
.archive{
  padding:5% 0;
}
.archive.bgleft:before{
  content:none;
  display: none;
}
.archive .container{
  width: 85%;
  max-width: 1100px;
  margin:0px auto;
  padding:5%;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.archive .container a{
  color:#000;
}
.archive .container .block{
  margin-bottom:5%;
  display: block;
  text-align: left;
}
.archive .container .block .ttl{
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   margin-bottom:15px;
}
.archive .container .block .ttl .date{
}
.archive .container .block .ttl .date:after{
  content:'|';
  margin-right: 30px;
  margin-left: 30px;
}
.archive .container .block .desc{
  display: block;
  padding-bottom:10px;
  border-bottom:2px solid #000;
}
.archive .container .block .desc p{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 詳細ページ */
.single{
  text-align: center;
  margin: 0px auto;
  display: block;
}
.single .container{
  width: 85%;
  max-width: 1000px;
  margin:0px auto;
  padding:5%;
  display: inline-block;
}
.single footer .container{
  width: 100% ;
  max-width: 1100px ;
  padding: 0px;
  margin:0px auto;
}
.single footer .container .btn{
  margin: 0px;
}
.single .container h1{
  font-size: 1.3rem;
  border-bottom:2px solid #000;
  text-align: left;
}
.single .container h2{
  font-size: 1.3rem;
  text-align: left;
}
.single .container .content{
  padding: 0px;
  text-align: center;
}
.single .container .content p{
  margin:30px auto;
  text-align: left;
}
.single .container .content img{
  display:block;
  height: auto;
  width: auto;
}
.single .container .btn{
  display:inline-block;
  margin: 0px auto;
}
/* 通常ページテンプレ */
.common{
  max-width: 800px;
  width: 90%;
  margin:60px auto;
}
.common table{
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 10px;
  padding: 5% 2%;
  border:1px solid #ccc;
}
.common table tr{
  display: block;
  display: flex;
  justify-content: center;
  width: 100%;
}
.common table tr th{
  display: flex;
  align-items: center;
  padding:15px;
  text-align: left;
  border-bottom: 1px solid #2aa9d0;
  width: 20%;
}
.common table tr td{
  display: inline-block;
  width: 100%;
  padding:15px;
  border-bottom: 1px solid #2aa9d0;
  width: 80%;
}
.common table tr td  a{
  font-weight: bold;
  color:#2aa9d0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  margin-left: 12px;
  margin-bottom: 12px;
}

.alignleft {
  float: left;
  margin-right: 12px;
  margin-bottom: 12px;
}

.aligncenter {
  clear: both;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.mv .mv_container .mv_image{
  width: 50%;
  padding:10px 0px;
  position: relative;
}
.mv .mv_container .mv_image .main{
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  height: 100%;
  /* max-height: 400px; */
  max-height: 500px;
  width: 100%;
  margin-bottom:30px;
  display: flex;
  align-items: center;
}
.mv .mv_container .mv_image .thumb{
  width: 28%;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  bottom:50px;
  left: -50px;
  border: 5px solid #fff;
  box-sizing: border-box;
}
.mv .mv_container .mv_image .thumb:before{
  content:'';
  display:block;
  padding-top:100%;
}
.mv .mv_container .mv_image .thumb img{
  position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 margin: auto;
 object-fit: cover;
}
.mv .mv_container .mv_image .main img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv .mv_container .mv_image .loading_bar{
  border-bottom:5px solid #ccc;
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom:0px;
}

/* TOPページ限定設定 */
/* .mv.front .mv_container .mv_image{
  position: relative;
  display: block;
  height: 100%;
}
.mv.front .mv_container .mv_image .main{
  z-index: 1;
  height: 500px;
  position: absolute;
  top:0px;
}
.mv.front .mv_container .mv_image .thumb{
}
.mv.front .mv_container .mv_image .test{
  position: absolute;
  bottom:0px;
  z-index: 10;
} */
.mv.front .mv_container .mv_image .thumb .slick-list{
  z-index: 10;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.mv.front .mv_container .mv_image .thumb .slick-list .slick-track{
  position: absolute;
  top:0px;
  left:0px;
  height: 100%;
  width: 100%;
}
.mv.front .mv_container .mv_image .thumb .slick-list .slick-track .slick-slide{

}
.mv.front .mv_container .mv_image .thumb .slick-list .slick-track .slick-slide img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* progress bar */
.slider-progress {
  width: 100%;
  height: 5px;
  background: #eee;
}
.slider-progress .progress {
  width: 0%;
  height: 5px;
  background: #ccc;
}


.scroll_btn {
  left: 5%;
}
.scroll_btn .txt p{
  left: -5px;
  top: -155px;
  font-size: .7rem;
}
.scroll_btn span {
  height: 60px;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 40px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 40px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* サイドバー追従 */
#side{
  position: absolute;
  right:0px;
  bottom:70px;
  z-index: 10;
}
#side.fixed{
  position: fixed;
  bottom:300px;
}
#side.sidebtn{

}
#side.sidebtn>div{
  border-radius: 10px 0px 0px 10px;
  /* border-top: 5px solid #fff;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff; */
  box-sizing: border-box;
}
#side.sidebtn>div a{
  color:#fff;
  letter-spacing: 2px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transition: all .5s;
  display: flex;
  align-content: center;
  justify-content: center;
  padding:35px 10px;
  font-weight: 700;
  line-height: 2.4;
}
#side.sidebtn>div a .syuwa_logo{
  width: 30px;
  height: 30px;
  margin:10px 5px;
}

/* TOPページ コンテンツ */
.top{

}
/* TOP共通 */
.top .image_l{
    width: 100%;
    /* min-width: 700px; */
    height: 29vw;
    overflow: hidden;
    border-radius: 10px;

}
.top .news{

}
.top .news .content dl{
  width: 100%;
  margin:0px auto;
  text-align: left;
  line-height: 2;
}
.top .news .content dl dt{
  display: block;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top .news .content dl dd{
  border-bottom:1px solid #000;
  padding-bottom:20px;
  margin-bottom:30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top .news .content dl dd a,.top .news .content dl dt a{
  color:#000;
}

.top .introduction{
  min-height: 500px;
  color:#fff;
}
.top .introduction .content{

}

.top .introduction h2 a{
  color:#fff;
}
.top .introduction .content p{
  line-height: 2.5;
  text-align: center;
  font-weight: 700;
}
.top .introduction.bgright{
  overflow: hidden;
  border: 5px solid #fff;
  box-sizing: border-box;
}
.top .introduction.bgright:after{
  background-image:url("../images/intro_bg.jpg");


  background-size: cover;
}
.top .introduction.bgright::before{
  display: none;
}
/* 画像のレイアウトをimgptnと命名し共通化 画像をlとrで振り分け */
.imgptn{
  padding:5% 5% 0;
}
.imgptn .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.imgptn .content .image{
  margin-left: -60px;
  width: 60%;
  position: relative;
}

.imgptn .content .image .s{
  position: absolute;
  width: 37%;
  bottom: -5vw;
}
.flow.imgptn .content .image .s {
    bottom: -10vw;
}
.imgptn .content .image .s.r{
  right:-100px;
}
.imgptn .content .image .s.l{
  right:initial;
  left:-50px;
}
.imgptn .content .txt{
  text-align: left;
  line-height: 2;
  width: 35%;
}
.top .plan{
  padding:5% 0 0;
}
.top .plan .bgleft{
  padding:5% 0 10%;
}
.top .plan .bgleft:before{
  display: none;
}
.top .company{
  padding-bottom:10%;
}
.top .company .content{
  position: relative;
}
.top .company .content .bg{
  width: 60%;
  height: 6vw;
  border-radius: 10px;
  background-color: #eee;
  bottom: -10vw;
  left: 10%;
  position: absolute;
  z-index: -1;
}
.top .flow{
  margin-top:60px;
}
.top .flow .bgcenter{
  padding:5% 5% 5%;
}
.top .faq{
  padding:5%
}
.top .faq .content{
  padding:50px 5%;
  background-color: #eee;
  display: block;
}
.top .faq .content .faq_container{
  width: 100%;
}
.top .faq .content .faq_container .block{
  margin-bottom:15px;
}
/* 下層も共有 */
.faq_container .block .q{
  overflow: hidden;
}
.faq_container .block .q .icon:before{
  content:'Q';
  position: absolute;
  color: #fff;
  z-index: 2;
  left:10px;
  top:0px;
  font-size: 1.3rem;
  transform: rotate(0deg);
}
.faq_container .block .q .icon:after{
  content:'';
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left:-50px;
  top:-60px;
  background-color: #2da1c4;
}
.top .partner{
}
.top .partner.bgleft:before{
  background-image:url("../images/partner_bg.jpg");
  background-size: cover;
  border-radius: 0px;
  border: 5px solid #fff;
  box-sizing: border-box;
}
.top .partner .content{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  line-height: 2.2;
}
.top .partner .content>div{
  width: 40%;
  text-align: center;
  color:#fff;
}
.top .partner .content .btn{
    margin: 0px;
    color:#fff;
    border-color:#fff;
}
.top .partner .content .btn a{
  color:#fff;
}
.top .partner .content .btn:hover a{
  color:#000;
}


.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  padding: 0.625em 0.625em 0.625em 80px;
  background-color: #fff;
  text-align: left;
  width: 100%;
  font-size: 1.25em;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom:30px;
}
.accordion-container .accordion-title:active,
.accordion-title.open {
  background-color: #e5f4fa;
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #2da1c4;
  transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #2da1c4;
  transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}


.accordion-content {
  padding:2rem 2rem 2rem 80px;
  background-color: #e5f4fa;
  border-radius: 0 0 10px 10px;
  text-align: left;
}
#accordion .block:not(:first-of-type)>.accordion-content{
  display: none;
}



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

}
/* フッターメニュー */
footer{
  background-color: #eee;
  color:#000;
  font-size: .8rem;
  margin-top:60px;
  padding:10px;
  text-align: center;
  position: relative;
}
footer .container{
  width: 100%;
  max-width: 1100px;
  margin:0px auto;
}
footer .pagetop{
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  position: absolute;
  right:80px;
  top:-60px;
  background-color: #fff;
  box-shadow: 0 15px 20px -8px rgba(0,0,0,.2);
  animation: fluffy1 3s ease infinite;
}
@keyframes fluffy1 {
0% { transform:translateY(0) }
5% { transform:translateY(0) }
10% { transform:translateY(0) }
20% { transform:translateY(-15px) }
25% { transform:translateY(0) }
30% { transform:translateY(-15px) }
50% { transform:translateY(0) }
100% { transform:translateY(0) }
}
footer .pagetop a{
  color:#000;
  margin-top:5px;
}

footer .pagetop a::before{
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 10px;
    left: 50%;
    border: 8px solid transparent;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-bottom: 10px solid #555;   /* 好みで色を変えてください */
}
footer .dpf{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo{
  width: 250px;
}
footer .btn{
  border-color:#13a14d;
  margin: 0px;
}
footer .btn a{
  color:#13a14d;
}
footer .btn a:hover{
  background-color: #13a14d;
  color:#fff;
}
footer .nav{
  margin-top:30px;
}
footer .nav ul{
  display: flex;
  flex-wrap: wrap;
}
footer .nav ul li{
  width: 20%;
  text-align: left;
  margin-bottom:20px;
  list-style-type: none;
}
footer .nav ul li.ptn1:before{
  content:'■';
  font-size: .7rem;
  color:#eca146;
}
footer .nav ul li.ptn2:before{
  content:'■';
  font-size: .7rem;
  color:#2aa9d0;
}
footer .nav ul li.ptn2.none:before{
  display: none;
}
footer .nav ul li a{
  color:#000;
  padding-left: 10px;
}
footer .fnav{
  width: 65%;
  margin:10px auto 30px;
}
footer .fnav ul{
  font-size: .8rem;
  display: flex;
  align-items:center;
  justify-content: space-around;
}
footer .fnav ul li{
  list-style-type: none;
}
footer .fnav ul li a{
  color:#000;
}
footer .social{
  width: 260px;
  display: flex;
  justify-content:space-around;
  align-items: center;
  padding:5px 10px;
  margin-top:10px;
}
footer .social >div{
  width: 40px;
  height: 40px;
  background-color: #fff;
  padding:10px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
header .logo {
    width: 240px;
}
header.fixed .gnav {
    width: calc(100% - 280px);
}
.imgptn .content .image .s.r{
  right:-50px;
}
.imgptn .content .txt {
    width: 40%;
}
.imgptn .content .image {
    width: 55%;
}
.imgptn .content .image .s.l {
    right: initial;
    left: -20px;
}
.subpage.faq .navigation {
    padding: 5% 5% 5%;
}
.subpage.faq .navigation ul li a {
  font-size: 1.4vw;
}
}

@media screen and (max-width: 1100px) {
header .logo {
    width: 185px;
}
header.fixed .gnav {
    width: calc(100% - 205px);
}
}
/* PCのみ */
@media screen and (min-width: 960px) {
  .mv {
    /* max-width: 1200px; */
    max-width:100%;
  }
  .line_banner .qr:before{
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 0;
    border-right: 30px solid transparent;
    border-bottom: 160px solid #fff;
  }

}
/* SP */
@media screen and (max-width: 767px) {
  *:focus {
    outline: none;
  }
  .w80{
    width: 100%;
    }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  #nav-container {
    display: block;
  }
  body{
      font-size: 16px;
  }
  header .headnav{
    margin: 7px 0px;
    padding-right: 56px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .logo{
  	width:38%;
  }
  header .container {
    padding: 15px 15px 5px;
  }
  header .tel_area{
    margin-top: 0px;
    width: 55%;
    min-width: initial;
    position: relative;
    padding: 5px 10px 5px;
  }
  header .tel_area .icon {
    width: 17px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 3px;
  }
  header .tel_area .no {
    font-size: .9rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  header .gnav{
    display: none;

  }
  header .tel_area a{
    font-size: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    flex-direction: revert;
  }
  header .tel_area .hour{

    position: relative;
    text-align: left;
    font-size: 10px;
    width: 100%;
    line-height: 1;
    margin-left: -15px;
  }
  header.fixed .tel_area {
    display: block;
   }
  section .content {
    margin: 10px 0px;
    padding: 0px 8%;
  }

  .top .news .content dl{
    line-height: 1.5;
  }
  .top .introduction .content p {
    line-height: 2;
    text-align: left;
    font-weight: normal;
  }
  .top .introduction .content p br{
    display: none;
  }
  .imgptn .content .txt {
    line-height: 1.5;
  }
  .imgptn .content .txt h3{
    margin-bottom:.5em;
    font-size: 1rem;
  }


  #side.sidebtn>div {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0px;
    width: 60px;
  }
  #side.fixed.sidebtn>div {
    width: 60px;
  }
  #side {
    top:33%;
  }
  #side.fixed {
    top:33%;
    right:0px;
  }
  #side.sidebtn>div a{
    min-height: initial;
    padding: 15px;
  }
  .accordion-container .accordion-title {
    padding: 0.625em 50px 0.625em 50px;
    font-size: 1rem;
  }
  .accordion-content {
    padding: 0em 10px 1em 10px;
  }
  .mv{
    height: auto;
  }
  .bgbar:after {
    bottom:0px;
  }
  .bgleft:before,.bgright:before {
      content: '';
      width: calc(95% - 10px);
      height: calc(96%);
      top: 2%;
  }
  .bgleft:after,.bgright:after{
    width: 96%;
  }
  .mv .bg_container{
    padding-top:50px;
  }
  .mv .bottom_btn.fixed{
    position: fixed;
    bottom:5px;
    width: 95%;
  }
  .mv .mv_container {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
    height: auto;
    margin: 0px;
    padding-top:50px;
  }
  .mv .mv_container .catch {
    width: 100%;
    margin: 0;
    padding:0px 5px;
  }
  .mv .mv_container .catch .txt{
    width: 100%;
    margin: 20px auto 20px;
    padding-right: 8%;
    line-height: 1.6;
    font-size: 1.1rem;
  }
  .mv .mv_container .catch.sub .txt {
    font-size: .9rem;
  }
  .mv .mv_container .mv_image {
    width: 70%;
  }
  .mv .mv_container .catch h2 {
    font-size: min(10vw,60px);
  }
  .mv .mv_container .catch h2 .midashi {
    font-size: .8rem;
  }
  .mv .bottom_btn.fixed:before{
    display: none;
  }
  .mv .bottom_btn.fixed .spdb{
    display: block;
  }
  .mv .mv_container .construction{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mv .mv_container .construction .image{
    max-width: 60px;
    margin-bottom:20px;
  }
  .mv .mv_container .construction .txt{
    font-size: 1rem;
  }
  .mv .mv_container .construction .txt .midashi{
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .breadcrumb{
    font-size: .8rem;
    padding: 3px 10px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  .breadcrumb li{
    text-align: left;
  }
  .singlebread .breadcrumb li:last-child {
      max-width: 40%;
  }

  .breadcrumb li,.breadcrumb li a{
    font-size: .9rem;
  }
  .common_container {
    /* margin: 50px auto; */
    margin: 35px auto;
  }
  .imgptn .content{
    flex-wrap: wrap;
  }
  .imgptn .content .image{
    width: 100%;
    margin: 0px auto 50px;
  }
  .imgptn .content .txt{
    width: 100%;
  }
  .imgptn .content .image_l{
    position:relative;
    width: 80%;
    height: 30vh;
  }
  .imgptn .content .image .s{
    /* position:relative;
    width: 100%;
    height: 40vh; */
  }
  .top .company.imgptn .image .image_l{
    float: right;
  }
  .btn{
    margin:30px auto;
    width: 100%;
    text-align: center;
  }
  .imgptn {
    padding: 5% 0% 0;
  }
  .imgptn .content .image .s{
    min-width: 116px;
  }
  section .content .image .roundb {
    border:4px solid #fff;
  }
  .imgptn .content .image .s.r{
    right:0px;
  }
  .imgptn .content .image .s.l{
    left:0px;
  }
  h2.ttl{
    padding:0px 1vw;
    /* width:59%; */
    width:61%;
  }
  h2.ttl:before,
  h2.ttl:after {
      width: 15vw;
  }
  h2.ttl:before{
      left: -15vw;
  }
  h2.ttl:after {
      right: -15vw;
  }
  .top .introduction {
    min-height: initial;
    margin-top: 30px;
  }

  footer .nav ul li {
    width: 50%;
    font-size: 15px;
  }
  footer .fnav{
    width: 100%;
  }
  footer .fnav ul {
    flex-wrap: wrap;
  }
  footer .fnav ul li {
    width: 50%;
    font-size: .7rem;
  }
  footer .dpf{
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .logo{
    width: 50%;
  }
  footer .btn{
    width: 80%;
    margin:10px auto 0;
  }

  .top .partner.bgleft:before{
      width: 98%;
  }
  .top .partner.bgleft:after{
    width: 100%;
  }
  .top .partner .content {
    flex-wrap: wrap;
  }
  .top .partner .content p{
    text-align: left;
    line-height: 2;
  }
  .top .partner .content .btn{
    margin-top:1em;
  }
  .top .partner .content>div {
    width: 100%;
  }
  .top .company .content{
    flex-direction: column-reverse;
  }
  /* サブページ */
  .subpage.plan .bg {
    padding: 5%;
  }
  .subpage.plan .merit_demerit .demerit .demerit_cont h2{
    font-size: 1.1rem;
  }
  .subpage.plan .merit_demerit .merit_cont .block h3{
    font-size: 1.1rem;
  }
  .subpage.plan .plan_cont2 .charging_cont .block h3 {
        font-size: 1.1rem;
  }
  .subpage.plan .plan_cont2 .charging_cont .block .cont{
    flex-direction: column;
    line-height: 1.1;
  }
  .subpage.plan .plan_cont2 .charging_cont .block.svg{
    padding: 20px 10px;
  }
  .sprotate{
      transform: rotate(90deg);
  }
  .subpage.flow .content .block{
    flex-direction: column;
    padding: 20px;
  }
  .subpage.flow .content .block:nth-of-type(2n){
    flex-direction: column;
  }

  .subpage.flow .content .block .image{
    margin: 1em auto 2em;
    width: 100%;
  }
  .subpage.flow .content .block:nth-of-type(2n) .image{
    margin: 1em auto 2em;
  }
  .subpage.flow .content .block .txt{
    width: 100%;
  }
  .subpage.flow .content .block .txt p {
    padding: 0px;
  }
  .subpage.flow .content .block .txt .btn{
    margin:10px auto;
  }
  .subpage.company .info.bgleft .container{
    width: 100%;
  }
  .subpage.company .dpf{
      flex-wrap: wrap;
  }
  .subpage.company .dpf >div{
    width: 100%;
  }
  .subpage.company .dpf >div dl.second dt,.subpage.company .dpf >div dl.second dd{
    height: 50px;
    line-height: initial;
  }
  .subpage.company .dpf >div dl.second dd br{
    display: none;
  }
  .subpage.company .access .accessinfo{
    width: 81%;

    margin: 0px auto;
  }
  .subpage.company .access .accessinfo dl{
    width: 100%;
    margin: 10px auto;
    display: inline-block;
  }
  .subpage.company .access .accessinfo dl dt{
    width: 18%;
    padding: 5px;
    margin-right: 2px;
  }
  .subpage.company .access .accessinfo dl dd{
    width:81%;
    padding: 5px;
  }
  .subpage.company .access .accessinfo dl dt,.subpage.company .access .accessinfo dl dd{
    height: 65px;
    display: flex;
    align-items: center;
    border-bottom: 2px dotted #2aa9d0;
  }
  .subpage.company .access .accessinfo dl dt:not(first-of-type),.subpage.company .access .accessinfo dl dd:not(first-of-type){
    border-bottom:2px dotted #2aa9d0;
  }
  .subpage.company .support.bgright .container .contents{
    flex-direction: column;
    padding:3% 5% 10%;
  }
  .subpage.company .support.bgright .container .contents .txt {
    width:100%;
    margin-bottom:30px;
  }
  .subpage.company .support.bgright .container .contents .image {
    width: 100%;
    height: 120px;
  }
  .subpage.faq .faq_content .faq_container{
    margin-bottom:70px;
  }
  .subpage.faq .faq_content h2{
    width: 60%;
    padding: 0px;
  }
  .subpage.faq .navigation{
    padding:30px 2%;
  }
  .subpage.faq .navigation ul{
    flex-wrap: wrap;
  }
  .subpage.faq .navigation ul li{
    width: 45%;
    margin-bottom:5px;
  }


  .subpage.faq .navigation ul li a {
    font-size: 1rem;
  }
  .archive .container{
    width: 90%;
  }
  .archive .container .block .ttl .date:after{
    margin-right: 15px;
    margin-left: 15px;
  }
  .subpage.partner .content .block{
    width: calc(100% / 1);
  }
  .subpage.partner .content .block .image{
    max-width: 250px;
    margin: 0px auto;
  }
  .subpage.partner .content .block .txt{
    padding:0 8%;
  }
  .subpage.partner .content .block .txt p br{
    display: none;
  }
  .subpage.partner .flow .container h3{
    font-size: 1.2em;
    margin: 3em auto 0em;
  }
  .subpage.partner .jirei h3 {
    font-size:1.2rem;
    margin: 1.5em auto 1.5em;
}
  .subpage.partner .flow .container .content{
    padding: 0;
  }
  .subpage.partner .flow .container .content .block{
    margin-bottom:30px;
  }
  .subpage.partner .charging {
    padding: 15% 5% 7%;
  }
  .block.step:after {
    display: none;
  }
  .subpage.partner .content {
    padding: 0px;
  }
  .subpage.partner .content.two{
    padding: 10px 0px;
    width: 90%;
  }
  .subpage.partner .content.two .block {
    width: calc(100% / 1.2);
    font-size: .9rem;
  }
  .subpage.partner .content.two .block .txt{
    padding: 0px;
  }
  .subpage.partner .step_content{
    padding:0 25px 30% 0;
    background-image:url(../images/partner_stepbg_sp.jpg);
    background-position: center 98%;
    background-size:80%;
  }
  .subpage.partner .step_content .block{
    padding:0px;
  }
  .subpage.partner .step_content .block .txt {
    flex-wrap: wrap;
  }
  .subpage.partner .step_content .block .txt .step {
    width: 100%;
  }
  .subpage.partner .step_content .block .txt p {
    width: 100%;
  }
  .subpage.partner .flow .point .container {
    padding: 0px;
    flex-wrap: wrap;
  }
  .subpage.partner .flow .point .container .block{
    padding:0 2%;
  }
  .subpage.partner .flow .point .container .block .image {
    min-height: 120px;
  }
  .subpage.partner .flow .point .container .block .image .num {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    left:5px;
    top:5px;
  }
  .subpage.partner .flow .point .container .block {
    width: calc(100% / 3.1);
  }
  .subpage.partner .flow .point .container .block p{
    display: block;
    text-align: center;
  }
  .subpage.partner .case .container{
    padding:0px 5%;
    margin-bottom: 40px;
  }
  .subpage.partner .case .container h3 {
    font-size: 1.1rem;
     margin: 1rem auto;
  }
  /* .subpage.partner .charging h2.ttl{
    width: 50%;
  } */
  .subpage.partner .charging h2.ttl:before,.subpage.partner .charging h2.ttl:after {
    width: 8vw;
  }
  .subpage.partner .charging h2.ttl:before{
    left:-8vw;
  }
  .subpage.partner .charging h2.ttl:after{
    right:-8vw;
  }
  .subpage.partner .contact.bgleft:before {
    width: 100%;
  }
  .subpage.partner .content .btn a {
    line-height: 1.3;
  }
  .subpage.partner .content.one .block{
    flex-direction: column;
  }
  .subpage.partner .content.one .block .image{
    width: 100%;
  }
  .subpage.partner .content.one .block .txt{
    width: 100%;
  }
  .subpage.partner .content.one .block .txt h4{
    font-size: 1.2rem;
  }
  .subpage.partner .content.one .block .txt .report .f{
    flex-direction: column;
  }
  .subpage.partner .content.one .block .txt .report .arrow{
    width:15px;
    height:15px;
    background:linear-gradient(to bottom left, #000 50%, transparent 50%) top left/ 50% 100% no-repeat,
        linear-gradient(to bottom right, #000 50%, transparent 50%) top right / 50% 100% no-repeat;
    margin: 0px 60px;
    display: inline-block;
  }

  .subpage.partner .content.one .block .txt .report {
    padding: 0px;
    font-size: 1rem;
  }
  .subpage.partner .content.one .block .txt .report .m{
    letter-spacing: 0px;
  }

  .subpage.partner .content.one .block .txt .report .koka{
    font-size: 2rem;
  }
  .subpage.partner .content.one .block .txt .report .sakugen{
    font-size: 2.8rem;
  }
  .subpage.partner .benefits .matome{
    width: 82%;
  }
  .subpage.partner .benefits .matome .image {
    height: 120px;
  }
  .subpage.partner .benefits .matome .txt {
    font-size: 1rem;
  }
  .subpage.partner .benefits .sonota .midashi {
    font-size: 1.1rem;
  }
  .subpage.partner .benefits .sonota {
    padding:0 10%;
  }
    .subpage.partner .benefits .sonota ul li{
      padding-left: 30px;
    }
  .subpage.partner .benefits .sonota ul li::before {
    position: absolute;
        left: 50px;
        margin: 0px;
  }


  footer .pagetop{
    right:10px;
  }
  .tab-label {
    height: 50px;
    font-size: 12px;
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;

  }
  .tab-switch:checked+.tab-label {
    padding:30px 0px;
  }
  .form form{
    padding:20px 10px;
  }
  .mwform-zip-field {
    width: 100%;
  }
  .form form dl dd textarea {
    height: auto;
  }
  .common table tr th{
    width: 35%;
  }
  .common table tr td{
    width: 65%;
  }
  .common table tr:last-of-type th,.common table tr:last-of-type td{
    border:none;
  }
  .pdf_container{
    line-height: 2;
  }
  .pdf_container a{
    font-size: .9rem;
  }
  .form {
    border-top: 5px solid #2aaad0;
  }
  .form form dl dt {
    text-align: left;
    font-size: 1rem;
  }
  .form form dl dd {
    padding: 5px 0 15px;
  }
  .form form .confirm_btn {
    margin: 0px auto;
  }
  .mv.error {
    height: 300px;
  }
  .mv .mv_container .catch .txt .chusya {
    font-size: .9rem;
  }
  footer .social {
    width: 100%;
  }
  .subpage.plan .plan_cont2 .charging_cont>div {
    width: 100%;
  }
  .subpage.plan .plan_cont2 .charging_cont>div:nth-of-type(2n){
    margin-left: 20px;
  }
  .subpage.plan .plan_cont2 .charging_cont>div:nth-of-type(2n+1){
    margin-left: -20px;
  }
  .subpage.company .dpf >div dl {
    font-size: .9rem;
  }
  .subpage.syuwadenki .kuro .content .block{
    flex-direction: column;
  }
  .subpage.syuwadenki .kuro .content .block .image{
    width: 50%;
    margin: 0px auto;
  }
  .subpage.syuwadenki .kuro .content .block .txt{
    width: 100%;
  }
  .subpage.syuwadenki .plan .container .block .ttl{
    position: relative;
    font-size: 1.1rem;
    top: initial;
    left: initial;
    transform: initial;
  }
  .subpage.syuwadenki .plan .container .block{
    padding: 20px;
    margin:0px auto 30px;
  }
  .subpage.syuwadenki .plan .container .block:after{
    top:0px;
  }
  .subpage.syuwadenki .donation .container .contents{
    padding: 20px;
  }
  .subpage.syuwadenki .donation .container .contents .sdgs{
    width: 100%;
    margin: 20px auto;
  }
  .subpage.syuwadenki .donation .container .contents .txt {
    width: 100%;
    font-size: 1rem;
    margin-bottom:30px;
  }
  .subpage.syuwadenki .donation .container .contents .image{
    width: 50%;
    margin: 0px auto;
  }








}
/* PC のみ */
@media screen and (min-width: 768px){

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

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

}
@media screen and (max-width: 320px) {
  header .tel_area {
      width: 62%;
  }
  header .logo {
    width: 30%;
  }
  header .tel_area .no {
      font-size: .7rem;
  }
  .subpage.company .dpf >div dl {
    font-size: .8rem;
  }
}
