@charset "utf-8";
* {
  box-sizing: border-box;
}
body {
  color: #333333;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.02em;
}
ul,li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mainBox {
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .mainBox {
    padding: 0 15px;
  }
  .footstepBox {
    width: auto;
  }
  .contentsBox {
    display: block;
    padding: 24px 0 0;
    margin: 0;
  }
}

/* mainTtl
-----------------------------------------------*/
.mainTtl {
	margin: 70px 0 36px;
}
.mainTtl h1 {
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: normal;
  letter-spacing: 0.01em;
  color: #333;
}
.mainTtl p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.mainTtl p:nth-of-type(n+2) {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .mainTtl {
    margin: 0 0 30px;
  }
  .mainTtl h1 {
    font-size: 24px;
  }
  .mainTtl p {
    font-size: 14px;
  }
  .mainTtl p:nth-of-type(n+2) {
    font-size: 12px;
  }
}

/* srchBox
-----------------------------------------------*/
#faq_srchBox {
  margin-bottom: 80px;
}
#faq_srchBox p {
  margin: 0;
}
#faq_srchBox .searchTtl {
  padding-left: 20px;
  margin-bottom: 10px;
  background: url(../img/icon_search.png) no-repeat left center / 14px 14px;
  font-size: 16px;
}
#faq_srchBox #faq_srchInput {
  width: 89%;
  height: 45px;
  padding: 10px 20px;
  margin-right: 10px;
  border: 0;
  border-radius: 0;
  background: #f4f4f4;
  font-size: 14px;
  line-height: 45px;
}
#faq_srchBox #faq_srchInput::placeholder {
  color: #888;
  font-size: 14px;
}
#faq_srchBox .srchBtn {
  width: calc(10% - 10px);
  height: 45px;
  border: 0;
  border-radius: 0;
  background: #003557;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
#faq_srchBox .srchBtn:hover {
  opacity: .75;
}
@media screen and (max-width: 767px) {
  #faq_srchBox {
    margin-bottom: 40px;
  }
  #faq_srchBox .searchTtl {
    margin-bottom: 5px;
    font-size: 15px;
  }
  #faq_srchBox #faq_srchInput {
    width: 75%;
  }
  #faq_srchBox .srchBtn {
    width: calc(23% - 10px);
  }
}

/* anchorMenu
-----------------------------------------------*/
.anchorMenu {
  height: 60px;
}
.anchorMenu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
.anchorMenu li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 6);
  height: 100%;
  background: #E3E9F1;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
.anchorMenu li.i {
  background: #003557;
  color: #fff;
}
.anchorMenu li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 5px;
  color: #003557;
  font-size: 15px;
  font-weight: bold;
  transition: all .2s;
}
.anchorMenu li a:hover {
  background: #003557;
  color: #fff;
  text-decoration: none;
}
.faq_result .anchorMenu {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .anchorMenu {
    height: 120px;
  }
  .anchorMenu ul {
    flex-wrap: wrap
  }
  .anchorMenu li {
    width: calc(100% / 3);
    height: calc(100% / 2);
    font-size: 13px;
  }
  .anchorMenu li:not(:nth-of-type(3n)) {
    border-right: solid 1px #fff;
  }
  .anchorMenu li:not(:nth-of-type(n+4)) {
    border-bottom: solid 1px #fff;
  }
  .anchorMenu li a {
    padding: 0;
    font-size: 13px;
  }
}

/* 質問 アコーディオン
-----------------------------------------------*/
section {
  margin-top: 80px;
}
.anchorMenu + section {
  margin-top: 60px;
}
section h2 {
  font-size: 20px;
}
section .inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
section .box {
  border-top: 1px solid #e4e4e4;
}
section h2 + .box {
  margin-top: 30px;
}
section .box:last-child {
  border-bottom: 1px solid #e4e4e4;
}
section .box .ttl {
  position: relative;
  padding: 25px 60px 25px 25px;
  cursor: pointer;
}
section .box .ttl::before {
  content: "";
  position: absolute;
  right: 44px;
  top: 38px;
  width: 2px;
  height: 18px;
  background: #333;
  margin-top: -9px;
  opacity: 1;
}
section .box .ttl::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 37px;
  width: 18px;
  height: 2px;
  background: #333;
}
section .box .ttl.active::after {
  opacity: 0;
}
section .box .ttl::before,
section .box .ttl::after {
  transition: transform 0.35s, opacity 0.35s;
}
section .box .ttl.active::before,
section .box .ttl.active::after {
  transform: rotate(90deg);
}
section .box .ttl h3 {
  position: relative;
  font-size: 16px;
  padding-left: 40px;
  line-height: 1.75em;
}
section .box .ttl h3::before {
  content: "Q";
  position: absolute;
  color: #003557;
  left: 5px;
  top: -1px;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 100;
}
section .box .txt {
	display: none;
  position: relative;
  padding: 0 30px 32px;
}
section .box .txt .inner {
  position: relative;
  padding-left: 35px;
}
section .box .txt .inner::before {
  content: "A";
  color: #FF7E00;
  position: absolute;
  left: 1px;
  top: 4px;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 100;
}
section .box .txt p {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  section {
    margin-top: 60px;
  }
  .anchorMenu + section {
    margin-top: 30px;
  }
  section h2 {
    font-size: 16px;
  }
  section h2 + .box {
    margin-top: 20px;
  }
  section .box .ttl {
    position: relative;
    padding: 15px 35px 15px 25px;
    cursor: pointer;
  }
  section .box .ttl h3 {
    font-size: 14px;
    line-height: 2em;
    padding-left: 12px;
  }
  section .box .ttl h3::before {
    left: -13px;
    top: -1px;
  }
  section .box .ttl::before {
    right: 18px;
    top: 30px;
  }
  section .box .ttl::after {
    right: 10px;
    top: 29px;
  }
  section .box .txt {
    padding: 0 35px 20px 30px;
  }
  section .box .txt .inner {
    padding-left: 8px;
  }
  section .box .txt .inner::before {
    left: -18px;
    top: 4px;
  }
}

/* contactArea
-----------------------------------------------*/
.contactArea {
	margin: 60px auto 0;
	border: 4px solid #333;
}
.contact {
  max-width: 925px;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}
.contact,
.contact *,
.contact:before,
.contact:after {
  box-sizing: border-box;
}
.contact h3 {
  font-size: 23px;
  text-align: center;
  color: #2E3445 !important;
  margin-bottom: 10px;
}
.contact .time {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}
.contact .container-fluid {
  padding: 0;
}
.contact .col_box {
  overflow: hidden;
}
.contact .col {
  float: left;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.contact .contact_tel strong {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1em;
  text-align: center;
}
.contact .contact_tel .col:nth-of-type(2) > a {
  display: block;
  color: #FFF;
  text-align: center;
  width: 300px;
  height: 52px;
  font-size: 20px;
  background: #005C94;
  padding-top: 14px;
  border-radius: 6px;
  font-weight: bold;
}
.contact .contact_tel .col:nth-of-type(2) > a:hover {
  text-decoration: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.contact .contact_line {
  border-top: 2px solid #dedede;
  margin-top: 20px;
  padding-top: 20px;
}
.contact .contact_line h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  margin-left: 72px;
}
.contact .contact_line p {
  margin-left: 72px;
  font-size: 14px;
  line-height: 1.6em;
}
.contact .contact_line a {
  display: block;
  color: #FFF;
  text-align: center;
  width: 300px;
  height: 54px;
  font-size: 20px;
  background: #6BC315;
  padding-top: 16px;
  border-radius: 6px;
  font-weight: bold;
}
.contact .contact_line a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.contact .contact_line a img {
  height: 23px;
  width: auto;
}
@media screen and (max-width: 900px) {
  .contact .contact_line h4 {
    margin-left: 12%;
  }
  .contact .contact_line p {
    margin-left: 12%;
  }
}
@media screen and (max-width: 767.9px) {
  .contactArea {
    margin: 40px 0 0;
  }
  .contact {
    width: auto;
    margin: 0;
    padding: 10px 0;
  }
  .contact h3 {
    font-size: 16px;
  }
  .contact .time {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .contact .col_box {
    margin-left: 15px;
    margin-right: 15px;
  }
  .contact .col {
    float: none;
    width: auto;
    padding: 0;
  }
  .contactArea img {
    max-width: 100%;
  }
  .contact .contact_tel strong {
    margin-bottom: 10px;
  }
  .contact .contact_tel strong,
  .contact .contact_tel .telLink {
    display: block;
    margin-bottom: 15px;
    font-size: 28px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    line-height: 1;
    text-align: center;
  }
  .contact .contact_tel .col:nth-of-type(2) > a {
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding-top: 12px;
  }
  .contact .contact_line h4 {
    margin-left: 0;
    font-size: 14px;
    text-align: center;
  }
  .contact .contact_line p {
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4em;
    text-align: center;
  }
  .contact .contact_line a {
    width: 100%;
    height: 41px;
    font-size: 16px;
    padding-top: 11px;
  }
  .contact .contact_line a img {
    height: 20px;
  }
}

#download .ttlArea {
  border-left: solid 5px #003459;
  padding-left: 10px;
  margin-bottom: 24px;
}
#download .ttlArea h2 {
  line-height: 1.5;
}
#download .col4{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	height: auto;
	margin: 0 auto;
}
#download .col4 li{
	font-size: 14px;
	line-height: 1.71;
	text-align: left;
}
#download .col4 li a{
	color: #333 !important;
}
#download .col4 li a:hover {
  text-decoration: none;
}
#download .col4 li a h3{
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 8px;
}
#download .col4 li a .thumb{
	overflow: hidden;
	margin-bottom: 12px;
}
#download .col4 li a .thumb img{
  width: 100%;
	transition: transform 0.2s ease-out;
}
#download .col4 li a:hover .thumb img{
	transform: scale(1.04);
}
@media screen and (max-width: 750px) {
	#download .col4{
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		text-align: left;
		margin-top: 0;
	}
	#download .col4 li{
		font-size: 13px;
		line-height: 1.84;
	}
	#download .col4 li a{
		display: block;
	}
	#download .col4 li a h3{
		font-size: 13px;
		margin-bottom: 2px;
	}
	#download .col4 li a .thumb{
		margin-bottom: 8px;
	}
}