@charset "UTF-8";

/* ---------------------------------------
メイン（共通設定）
--------------------------------------- */

.contents_wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1220px) {
  .contents_wrapper {
    max-width: 95%;
  }
}

section {
  display: block;
  width: 100%;
}

.section_header h2 {
  color: #00acc2;
  font-size: 46px;
  font-family: var(--noto_sans);
  font-weight: var(--noto_semibold);
}

.section_wrapper{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* -------------------------------------------------------------
ニュース一覧
--------------------------------------------------------------*/
.news_top .news_mv .mv_bg{
  background: url(/assets/img/news_top/news_mv.jpg) center center no-repeat;
  padding-top:50px;
  padding-bottom: 375px;
}

.mv_bg .mv_inner .header_box h1{
  display: block;
  width: 60%;
  font-family: var(--noto_sans);
  font-size: 50px;
  font-weight: var(--noto_bold);
  color: #000;
  background: #fff;
  text-align: center;
  letter-spacing: 2px;
}

.news_output{
  background: #e1e1e1;
}


.news_choose{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 1em;
  text-align: center;
  padding-top: 70px;
}


.news_choose label{
  display: flex;
  background-color: #fff;
  border: 1px solid #00acc2;
  color: #00acc2;
  font-family: var(--noto_sans);
  font-weight: var(--noto_medium);
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 6px 0;
}

.news_choose input{
  display: none;
}

.news_choose label svg{
  display: block;
  width: 70px;
  position: absolute;
  stroke: #00acc2;
  left: 5%;
}

.news_choose label #icon_info,
.news_choose label #icon_view{
  width: 24px;
}

.news_choose label #icon_demo{
  width: 50px;
  left: 1%;
}

.news_outputs{
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  /* margin-top: 75px; */
  padding-top: 75px;
  text-align: center;
  padding-bottom: 5%;
}

.news_outputs .news-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0 auto;
  justify-items: center;
  gap: 3em;
}

.news-container .info_box{
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  padding-bottom: 20px;
  transition: all .4s;
}

.news-container .news_box{
  cursor: pointer;
}

.news-container .news_box img:first-child,
.news-container .info_box img:first-child{
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.news_box h2,
.info_box h2{
  font-family: var(--noto_sans);
  font-weight: var(--noto_semibold);
  border-bottom: 1px solid #000;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  margin-top: 1em;
  padding-bottom: 8px;
}

.news_date{
  display: flex;
  gap: 1em;
  font-family: var(--noto_sans);
  font-weight: var(--noto_semibold);
  margin-bottom: 1em;
}

.news_date {
  display: block;
  width: 100%;
  text-align: center;
}

.news_box a,
.info_box a{
  text-decoration: none;
  color: #000;
  width: 100%;
}

.mordal-header img{
  display: block;
  width: 100%;
  margin: 0 auto;
}

.modal_header{
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 10px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-top: 20px;
  margin-bottom: 1.5em;
  line-height: 1.5;
}

.modal-content h3{
  font-size: 18px;
  font-family: var(--noto_sans);
  font-weight: var(--noto_bold);
}

.modal-content span{
  font-size: 16px;
  font-family: var(--noto_sans);
  font-weight: var(--noto_bold);
}

.modal-content .modal_flex{
  display: flex;
  gap: 1em;
}

.modal-content .modal_flex img{
  display: block;
  object-fit: contain;
}

.modal-content .modal_flex p{
  font-size: 14px;
}

.news_filler{
  width: 100%;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 660px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  top: 13px;
  right: -20px;
  z-index: 1;
}

.modal-close div{
  width: 1px;
  height: 40px;
  background: #000;
}

.modal-close div:first-child{
  transform: rotate(45deg);
}
.modal-close div:last-child{
  transform: rotate(-45deg);
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  background: #fff;
  text-align: left;
  padding: 30px;
}

.sp-close{
  display: none;
}

@media screen and (max-width: 1220px){
  .news_choose label{
    justify-content: flex-end;
  }

  .news_choose label span{
    font-size: 14px;
    margin-right: 1em;
  }

  .news_choose label #icon_demo{
    width: 40px;
  }

  .mv_bg .mv_inner .header_box h1{
    width: 70%;
    font-size: 46px;
  }
}

@media screen and (max-width: 980px){
  .news_choose{
    grid-template-columns: repeat(2, 1fr);
  }

  .news_choose label {
    justify-content: center;
    padding: 10px;
  }

  .news_choose label #icon_demo{
    width: 70px;
    left: 3%;
  }

  .news_choose label #icon_info{
    left: 9%;
  }

  .news_choose label #icon_view{
    left: 10%;
  }

  .news-container .news_box,
  .news-container .info_box{
    margin-bottom: 0;
  }

  .news_outputs .news-container{
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-content{
    position: relative;
    left: -3vw;
  }

  .modal-close{
    right: 10px;
  }

  .mv_bg .mv_inner .header_box h1{
    width: 80%;
    font-size: 34px;
  }
}

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

  .mv_bg .mv_inner .header_box h1{
    width: 100%;
    font-size: 6vw;
  }

  .news_choose{
    grid-template-columns: minmax(100%, 1fr);
  }

  .news-container .news_box{
    margin-bottom: 0;
  }

  .news_outputs .news-container{
    grid-template-columns: minmax(100%, 1fr);
  }

  .news_choose label{
    align-items: center;
  }

  .news_choose label span{
    margin-right: 0;
  }

  .modal-body{
    top: 14em;
  }

  .modal-content{
    overflow-y: scroll;
    margin-bottom: 3em;
    padding-bottom: 3em;
    left: auto;
    right: auto;
    padding: 0;
  }

  .modal-close{
    display: none;
  }

  .modal_header{
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2em;
    width: 95%;
  }

  .modal-content img{
    display: block;
    width: 95%;
    padding: 1em;
  }

  .modal-content .modal_flex{
    flex-direction: column-reverse;
    padding-bottom: 5em;
  }

  .modal-content .modal_flex img{
    width:auto;
  }

  .modal-content .modal_flex p{
    display: block;
    width: 95%;
    margin: 0 auto;
  }

  .modal-body .sp-close{
    position: relative;
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    background: #000;
    color: #fff;
    margin-left: 8%;
    font-weight: bold;
  }
}

@media (hover:hover){
  .info_box:hover,
  .news_choose label:hover,
  .news_box:hover{
    opacity: 0.5;
  }
}

.news_choose input[type="radio"]:checked + label{
  background: #00acc2;
  color: #fff;
}

.news_choose input[type="radio"]:checked + label svg{
  stroke: #fff;
}



/* -------------------------------------------------------------
各ページ共通
--------------------------------------------------------------*/
.title_header {
  color: #00acc2;
  font-size: 30px;
  text-align: center;
  font-weight: var(--noto_bold);
  padding-top: 50px;
  padding-bottom: 10px;
  border-bottom: 12px solid #00acc2;
  background: url(/assets/img/top/top_01_bg.jpg) no-repeat top -35px center;
  background-size: cover;
}

.breadcrumbs {
  width: 100%;
  background: #d0ecef;
}
.breadcrumbs ul {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs ul li {
  position: relative;
  font-size: 0.9em;
}
.breadcrumbs ul li::after {
  content: ">";
  display: inline-block;
  padding: 0.2em 1em;
  font-size: 0.8em;
  transform: scaleY(2);
}
/* .breadcrumbs ul li::after {
  content: "";
  display: inline-block;
  margin-right: 1em;
  height: 100%;
  padding-left: 1em;
  border-right: 5px solid #00acc2;
  transform: skewX(-30deg);
} */
.breadcrumbs ul li:last-child::after {
  display: none;
}

@media screen and (max-width: 1220px) {
  .breadcrumbs {padding: 0 1em;}
}
@media screen and (max-width: 720px) {
  .title_header {
    background: url(/assets/img/top/top_01_bg.jpg) no-repeat top -90px center;
    background-size: auto;
  }
}

/* -------------------------------------------------------------
新着情報一覧
--------------------------------------------------------------*/
.news_contents {
  margin-top: 2em;
}

.news_item {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 3fr;
  margin-top: 1em;
  font-family: var(--noto_san);
  font-weight: var(--noto_medium);
}

.news_date {text-align: center;}

.even,
.odd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 35px;
  text-align: center;
  position: relative;
}
.odd {
  background-color: #00acc2;
  color: #fff;
}
.even {
  width: 248px;
  background-color: #fff;
  border: 1px solid #00acc2;
  color: #00acc2;
}

.add_desc {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--noto_san);
  font-weight: var(--noto_medium);
}
.add_desc h2 {
  font-family: var(--noto_san);
  font-weight: var(--noto_medium);
}
.add_desc span {
  font-size: 12px;
  margin-top: 2px;
  color: #7f7f80;
  font-family: var(--noto_san);
  font-weight: var(--noto_medium);
}

.news_link {
  width: 100%;
  text-align: right;
  font-family: var(--noto_san);
  font-weight: var(--noto_medium);
}

@media screen and (max-width: 1220px) {
  .news_header h3 {font-size: 40px;}
}

@media screen and (max-width: 980px) {
  .news_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5em;
    gap: 8px;
    font-size: 18px;
  }
  .news_item .odd,
  .news_item .even {width: 100%;}
  .news_item .news_date {padding-left: 3%;}
  .const_center h2 {text-align: center;}
  .news_item .add_desc span {margin-top: 3px;}
  .news_item svg {width: 4%;}
}

@media screen and (max-width: 720px) {
  .news_header h3 {font-size: 34px;}
  .news_item .add_desc h2 {font-size: 16px;}
  .news_item .news_date {font-size: 16px;}
  .news_link {font-size: 18px; margin-top: 1em;}
  .news_item svg {width: 7%;}
}

/* -------------------------------------------------------------
取扱工法
--------------------------------------------------------------*/
.const_header {
  align-items: flex-end;
  margin-top: 82px;
}

.const_header .header_mini {
  font-size: 28px;
  font-family: var(--noto_sans);
  font-weight: var(--noto_bold);
}

.const_header .header_sub span {
  font-size: 20px;
  font-family: var(--noto_sans);
  font-weight: var(--noto_bold);
}

/* .header_left {width: 55%;}
.header_center {width: 30%; text-align: left;}
.header_right {width: 15%; margin-bottom: -2em;} */

.const_contents {
  display: grid;
  width: 100%;
  max-width: 1920px;
  grid-template-columns: 2fr 2fr;
  margin: 2em auto 0;
}

.const_left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.const_right {
  background: #00acc2;
}

.const_center h2 {
  display: block;
  font-family: var(--noto_sans);
  font-weight: var(--noto_black);
  font-size: 22px;
  background: #e5e5e6;
  padding-left: 12px;
}

.const_center .const_tex {font-size: 15px;}
.const_center .const_kouhou {font-size: 20px;}
.const_center .const_desc {font-size: 18px;}

.const_center p {
  margin-top: 14px;
  margin-bottom: 22px;
  margin-left: 1em;
  font-size: 14px;
  font-family: var(--noto_sans);
  font-weight: var(--noto_semibold);
}

.const_center .note {
  margin-top: 2px;
  margin-bottom: 0;
}

.const_center table {
  width: 97%;
  margin: 0 auto;
}
.const_center table th,
.const_center table td {
  border-collapse: collapse;
  border: 1px solid #000;
}
.const_center table th {
  width: 15%;
  font-family: var(--noto_sans);
  font-weight: var(--noto_bold);
  border-left: none;
  font-size: 16px;
  background: #eeeeef;
  text-align: center;
}
.const_center table td {
  border-right: none;
  font-family: var(--noto_sans);
  font-weight: var(--noto_medium);
  text-indent: 1em;
}
.const_center figure {
  display: block;
  margin-bottom: 1.5em;
}
.const_center figure a:hover {
  filter: contrast(1.8);
}
.const_center figcaption {
  display: block;
  margin-left: 1em;
  color: #3F8DC8;
  font-weight: var(--noto_bold);
}
.const_center img {
  width: 74%;
  margin-top: 12px;
  margin-left: 1em;
  margin-bottom: -8px;
}
.const_bottom {display: none;}

.how_wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  margin-top: 40px;
  gap: 1em;
  align-items: center;
  font-family: var(--noto_sans);
}
.how_images {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.icon_header {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.icon_header img {
  width: 20px;
  height: 20px;
  position: relative;
}

.icon_header .strong {top: 7px;}
.icon_header .supply {top: -13px;}
.icon_header .span {top: 2px;}
.icon_header .thirty,
.icon_header .jwwa,
.icon_header .regenerate {
  top: 7px;
}

.how_wrapper .how_left p {
  font-size: 18px;
  font-weight: var(--noto_medium);
}
.icon_header h3 {
  font-size: 26px;
  font-weight: var(--noto_bold);
}
.how_wrapper .how_center img,
.how_wrapper .how_right img {
  width: 100%;
}
.attribute_wrapper {margin-top: 26px;}

.atr_list {
  display: flex;
  align-items: flex-start;
  width: 93%;
  gap: 8%;
  margin: 0 auto;
  margin-top: 20px;
}

.atr_list ul li {width: 100%; margin-top: 8px;}
.atr_list ul li .icon_header h3 {font-size: 20px;}
.atr_list ul li ul li {
  display: flex;
  font-size: 16px;
  margin-top: 0;
  margin-left: 20px;
}

.list_icon {
  align-items: flex-start;
  line-height: 0.8;
}
.list_icon span {font-size: 13px;}
.atr_list .ul_right {margin-top: -8px;}
.atr_list .ul_right li {margin-top: 16px;}
.dt_br {display: inline;}
.note_br {display: none;}
.nonbr {display: inline;}
.how_border {margin-top: 2em;}

@media screen and (max-width: 1220px) {
  .header_left {position: relative;}
  .header_center span {
    /* position: absolute;
    left: 48px; */
    margin-top: -0.5%;
  }
  .header_right {
    position: absolute;
    left: 60%;
  }
  .const_contents {grid-template-columns: repeat(2, 1fr);}
  .const_right,
  .const_bottom {
    display: block;
    width: 100%;
    height: 20px;
    background-color: #00acc2;
  }
  .tex_bottom {margin-bottom: 1em;}
  .atr_list {
    width: 98%;
    left: 60%;
    gap: 0;
    flex-direction: column;
  }
}

@media screen and (max-width: 980px) {
  .const_center h2,
  .const_center p {
    padding-left: 0;
  }
  .const_header .header_right {left: 82%;}
  .const_center h2 {text-align: center;}
  .const_center p {
    display: block;
    width: 95%;
    margin: 10px auto;
  }
  .const_contents {grid-template-columns: minmax(100%, 1fr);}
  .how_wrapper {grid-template-columns: minmax(100%, 1fr);}
}

@media screen and (max-width: 720px) {
  .const_header .header_mini {font-size: 5vw;}
  .const_header .header_left h2 {font-size: 26px;}
  .const_header .header_sub span {
    font-size: 16px;
    margin-left: 0;
    left: 2.4%;
  }
  .const_header .header_right {left: 70%;}
  .const_header .header_right {margin-bottom: -5em; left: 78%;}

  .const_center table th {
    width: 25%;
    padding: 12px;
    white-space: nowrap;
  }
  .const_center img {
    width: 90%;
    margin-top: 26px;
  }
  .const_center h2 {line-height: 1.5;}
  .const_center td span {
    display: block;
    padding-left: 4px;
    text-indent: 0;
  }

  .how_images {flex-direction: column; gap: 1em;}
  .note_br {display: inline;}
  .sp_nonbr {display: none;}
  .icon_header h3 {font-size: 18px;}
  .how_wrapper .how_left p {font-size: 16px;}
  .atr_list ul li {font-size: 5vw;}
  .atr_list ul li .icon_header h3 {font-size: 16px;}
  .atr_list ul li ul li {
    margin: 0;
    font-size: 13px;
    padding-left: 5%;
  }

  .icon_header .span {top: -12px;}
  .list_icon div {line-height: 0.2;}
  .list_icon span {font-size: 11px;}
  .nonbr {display: none;}
}

@media screen and (max-width: 480px) {
  .const_header .header_sub span {font-size: 4vw;}
}


/* NETIS概要 */
.netis_box {
  display: block;
  margin: 3em auto 1em;
  padding: 1em;
  box-sizing: border-box;
  background: #d0ecef;
}
.netis_area {
  display: block;
  width: 100%;
  padding: 2em;
  box-sizing: border-box;
  border: 2px solid #00acc2;
}
.netis_area p {
  margin-top: 0.5em;
}

@media screen and (max-width: 720px) {
  .netis_area {padding: 1em;}
}


/* -------------------------------------------------------------
資料ダウンロード
--------------------------------------------------------------*/
.dl_content {margin-top: 2em;}
.doc_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.doc_list li{
	position: relative;
	width: calc(33.333333% - 10px);
	margin-bottom: 10px;
	padding: 20px 20px 80px;
	border: 2px solid #ddd;
	background: #fff;
}

@media screen and (min-width:981px){
	.doc_list::before{
		content:"";
		display: block;
		width:calc(33.333333% - 10px);
		order:1;
	}
	.doc_list::after{
		content:"";
		display: block;
		width:calc(33.333333% - 10px);
	}
}
@media screen and (max-width:980px){
	.doc_list li{
		width: calc(50% - 10px);
		padding: 15px 1.5em;
		/* padding-bottom: 80px; */
	}
	.doc_list::after{
		content:"";
		display: block;
		width:calc(50% - 10px);
	  }
}
@media screen and (max-width:720px){
	.doc_list li{
		width: 100%;
		margin-right: 0;
    padding-bottom: 0;
	}
}

.doc_list li figure{
	text-align: center;
  aspect-ratio: 16 / 9;
}
.doc_list li a {
  display: inline-block;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
.doc_list li figure>a:hover {transform: scale(1.1);}
.doc_list li img{
  width: auto;
	height: 100%;
	border: 1px solid #efefef;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.doc_list li h3{
	margin-top: 20px;
  text-align: center;
	font-size: 1.125em;
}
.doc_list li p{
	margin-top: 20px;
}
.doc_list li div.button{
	position: absolute;
	left: 0;
	width: 100%;
}
.doc_list li iframe {
	border: 1px solid #efefef;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 9;
}
.doc_list li input[type=checkbox] {
  margin-right: 1em;
  transform: scale(1.5);
}

@media screen and (min-width:761px){
	.doc_list li div{bottom: 20px;}
}
@media screen and (max-width:760px){
	.doc_list li div{bottom: 15px;}
}
@media screen and (max-width:640px){
	/* .doc_list li p{text-align: center;} */
}

.download.btn{
	display: block;
	width: calc(100% - 3em);
	margin: 0 auto;
	padding: 0.5em 0;
	border-radius: 5px;
	background-color: #176572;
	color: #fff;
	text-align: center;
}
.download.btn:hover{
	background: #00a95f;
}
.download.btn svg{
  margin-left: 1em;
	width: 1em;
	height: 1em;
	fill: #fff;
	vertical-align: middle;
}
.doc_list li label{
	display: block;
	width: calc(100% - 3em);
	margin: 0 auto;
	padding: 0.5em 0;
	color: #000;
	text-align: center;
	border-radius: 5px;
	background-color: #ccc;
	cursor: pointer;
}
.doc_list li input[type="radio"]:checked ~ label{
	background: #176572;
}

.document_dl_area {
	display: block;
  margin-top: 2em;
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	background: #4c7abf;
}
.bg_gray {
	padding-top: 1.5em;
  padding-bottom: 50px;
	box-sizing: border-box;
	background: #e8f1ff;
}
.bg_gray>p {
  margin: 0 auto 3em;
  text-align: center;
}

.questionnaire {width: 100%; background: #fff;}
.questionnaire th,
.questionnaire td {
  padding: 0.5em;
  border: 1px solid #bbb;
}
.questionnaire th {vertical-align: top; background: #bddffd;}
.questionnaire th span {margin-left: 0.5em; color: #c00; font-size: 0.8em;}
.questionnaire label {
	margin-right: 1em;
	font-size: 1.2em;
}
.questionnaire input,
.questionnaire select {
	position: relative;
}
.questionnaire input[type="text"] {
	width: 100%;
	padding: 0.5em 1em;
	box-sizing: border-box;
	font-size: 1.2em;
	border: 1px solid #ccc;
}
.questionnaire input[type="radio"] {
	font-size: 1.2em;
}
.questionnaire textarea {
	width: 100%;
	padding: 0.5em 1em;
	box-sizing: border-box;
	border: 1px solid #ccc;
	background: #fff;
}
.questionnaire textarea:focus {border: 2px solid #333;}
.questionnaire select {
	padding: 0.5em 1em;
	box-sizing: border-box;
	border: 1px solid #ccc;
	background: #fff;
}
.questionnaire .error {
	font-size: 0.8em;
}
.cooperation {
	display: block;
	margin: 3em auto 1em;
	padding: 0.5em 1em;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	background: #e58b2a;
}
.document_dl_btn{
	display: block;
	width: 100%;
	margin: 2em auto;
}
.document_dl_btn button{
	display: block;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	padding: 1em 1em;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	border-radius: 5px;
	background-color: #176572;
}
.document_dl_btn button:hover{
	background: #00a95f;
}
.end {margin: 1em 0;}
.backhome_area {margin: 0 0 5em;}
.backhome_area a::after {
	content: ">>";
	display: inline-block;
	font-size: 1.2em;
	transform: scaleX(0.5);
}

@media screen and (max-width: 960px) {
  .questionnaire label {font-size: 1em;}
}
@media screen and (max-width: 720px) {
  .questionnaire th {
    width: 20%;
    font-size: 0.8em;
  }
  .questionnaire th span{
    display: block;
  }
  .questionnaire label {
    display: block;
    margin-right: 1em;
    font-size: 1em;
  }
}

/* saveData */
.savedata {
  margin-top: 2em;
}
.savedata table.end {
  width: 100%;
}
.savedata table.end th {
  background-color: #bddffd;
}
.savedata table.end th, table.end td {
  padding: 0.5em;
  border: 1px solid #bbb;
}


/* -------------------------------------------------------------
Q&A
--------------------------------------------------------------*/
.qa_anchor {
  margin: 1em 0 2em;
}
.qa_anchor ul {
  display: flex;
  flex-wrap: wrap;
}
.qa_anchor ul li {
  display: block;
  margin: 0.5em;
  width: calc(100% / 4 - 1em);
  text-align: center;
}
.qa_anchor ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5em 1em 1em;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  background: #007494;
  transition: all 0.2s ease-in-out;
}
.qa_anchor ul li a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -2.15px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
}
.qa_anchor ul li a:hover {filter: contrast(2.5);}
.qa_anchor ul li a:hover::after {transform: rotate(45deg) translate(3px,3px);}

h4.headLine1 {
  position: relative;
  margin-bottom: 1em;
  padding-bottom: 0.25em;
  font-size: 1.5em;
  font-weight: 400;
  border-bottom: solid 3px #ccc;
  text-transform: uppercase;
}
h4.headLine1::after {
  content: " ";
  position: absolute;
  display: block;
  width: 20%;
  border-bottom: 3px solid #00acc2;
  bottom: -3px;
}

.qa_wrap {
  margin: 25px 0;
}
.qa_head {
  display: flex;
  padding: 0.5em;
  border-bottom: 1px dotted #999;
}
.qa_head div {
  display: inline-block;
}
.qa_head .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
  min-width: 70px;
  padding: 0.5em 1em;
  border-radius: 2em;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: #00acc2;
}
.qa_head h5 {
  width: calc(100% - 80px);
  font-size: 1.25em;
}
.qa_head:hover .icon {
  background: #0f57df;
}
.qa_body {
  display: block;
  margin-top: 0.5em;
  padding: 0.5em 1em;
  border-radius: 5px;
  background: #e1f1f3;
}
.flex_box {
  display: flex;
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}

.qa_list li {
  margin-left: 1.5em;
  list-style: disc;
}

@media screen and (max-width: 880px) {
	.qa_anchor ul li {
		width: calc(100% / 3 - 1em);
	}
}
@media screen and (max-width: 640px) {
	.qa_anchor ul li {
		width: calc(100% / 2 - 1em);
	}
  .qa_head .icon {
    font-size: 0.8em;
    min-width: 50px;
  }
  .qa_head h5 {
    width: calc(100% - 50px);
    font-size: 1em;
  }
 
}