/*=========
accordion
=========*/

.accordion_area {}
.accordion_area .accordion_one .ac_header {
  /*background-color: #ffffff;*/
	background-color: #f2f2f2;
  border: 1px solid #ccc;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
	
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one .ac_header.open {
  background-color: #f1f8ff;
}
/*
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #f5f5f5;
}
*/
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #014897;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #014897;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 736px) {
  .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 2rem 1.5rem 1.0rem;
  }
  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/*=========
faq
=========*/

.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q．";
  color: #09357f;
  font-size: 18px;
  font-weight: bold;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 18px;
}
@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }
  .p-faq__headinner::before {
    font-size: 16px;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 16px;
  }
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  content: "A．";
  color: #de0000;
  font-size: 18px;
  font-weight: bold;
}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 18px;
}
@media screen and (max-width: 736px) {
  .p-faq__bodyinner {
    padding-left: 25px;
  }
  .p-faq__bodyinner::before {
    font-size: 16px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 16px;
  }
}

/*=========
base
=========*/

html, body {
  margin: 0;
  padding: 0;
}
body {
  /*font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  letter-spacing: .025em;
  line-height: 1.8;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.s_section {
  max-width: 1020px;
  margin: 0 auto;
  padding: 2rem 10px;
}
.gutter>*:not(:last-child) {
  margin-bottom: 2.0rem;
}
h2 {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  border-left: 5px solid #333333;
  padding-left: 8px;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 736px) {
  h2 {
    font-size: 16px;
  }
}
ul.list-disc {
  margin-bottom: 0;
  padding-left: 0;
}
.list-disc__item {
  margin-left: 1.5em;
  list-style: disc;
}
a._a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 2.0em 1.0em;
  border: 1px solid #222222;
  background: linear-gradient(to right, #ffffff 50%, #222222 50%);
  background-size: 200% auto;
  box-sizing: border-box;
  color: #222222;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  transition: .3s;
  position: relative;
}

.end_mb{
	margin-bottom:100px;
}
@media screen and (max-width: 736px) {
.end_mb{
	margin-bottom:50px;
}	
}

/*見出し*/
.m_underline {
  position: relative;
  display: block;
  font-weight:bold;
  border-bottom: solid 3px #d5d5d5;
  margin: 0 auto 50px;
  padding: 5px 0 5px 0;
	font-size:130%;
}
.m_underline::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #77bcff;
  bottom: -3px;
  width: 30%;
}
.m_underline:first-child {
  margin: 0px auto 50px;
}
.cloum_wrap3{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
	align-items: stretch;
	margin: 0 auto 80px auto;
	width:100%;
}
.cloum_wrap3:after {/*半端でも左寄せ*/
        content: "";
        display: block;
        width: 32%;
        height: 0;
    }
.cloum_wrap3 div.box{
	flex-basis: 32%;
	max-width:32%;
	margin-bottom:10px;
}

.cloum_wrap4{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
	align-items: stretch;
	margin: 0 auto 90px auto;
	width:100%;
	position: relative;
}
.cloum_wrap4 div.box{
	flex-basis: 24.0%;
	max-width:24.0%;
	margin-bottom:10px;
}


/* ボタンのスタイル */
.button a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 0;
  background-color: #fff;
  border-radius: 2px;
	border:1px solid #0066B1;
  font-size: 16px;
  color: #0066B1;
  text-decoration: none;
  text-align: center;
	font-weight:bold;
	transition:0.5s;
}
.button a:hover {
  background-color: #d6eeff;
}
.button.active {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 0;
  background-color: #0066B1;
  border-radius: 2px;
	border:1px solid #0066B1;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  text-align: center;
	font-weight:bold;
	transition:0.5s;
}


/* アイコンのスタイル */
.btn-triangle-bottom a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 9px solid #0066B1;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 0 solid transparent;
  transform: translateY(1px);
  box-sizing: border-box;
}
@media screen and (max-width: 736px) {
.sp_pd{
	padding:0 10px;
	margin-top:10px;
}
.cloum_wrap4 div.box{
	flex-basis: 48.0%;
	max-width:48.0%;
}

.cloum_wrap3 div.box{
	flex-basis: 100%;
	max-width:1000%;
}
.button01 a {
  padding: 0.5em;
}
}

#part1 , #part2 ,  #part3 , #part4 , #part5 ,  #part6 , #part7 , #part8 ,  #part9 , #part10 , #part11 ,  #part12 , #erabu {
	padding-top: 100px;
    margin-top:-100px;
}

.cloum_wrap2{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
	align-items: stretch;
	margin: 0 auto 30px auto;
	max-width:1000px;
	width:100%;
}
.cloum_wrap2 div.box{
	flex-basis: 47.5%;
	max-width:47.5%;
	margin-bottom:10px;
}
.cloum_wrap2 div.box img{
	width:100%;
}

/*--------------------------------------------------------------------------
/* 採用Q&A　メイン画像
---------------------------------------------------------------------------- */
.faq-wrap{
	position: relative;
	height: 600px;
	margin: 0 0 60px 0;
	background: url(../images/cmn_img/bg_faq.jpg) no-repeat center center;
	background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
	.faq-wrap{
		height: 400px;
		margin: 0 0 10px 0;
	}
}
@media screen and (max-width: 736px) {
	.faq-wrap{
		height: 230px;
		margin: 0 0 15px 0;
	}
}

/*--------------------------------------------------------------------------
/* タブ
---------------------------------------------------------------------------- */
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:0 0 20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
background: #0066B1;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 10px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #0066B1;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 30px 15px 15px 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

.footerContact .heading{color:#fff!important;}