@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

/*** all ***/

*:focus {
  outline:none;
}
html{
  font-size: 16px;
}
body{
  -webkit-text-size-adjust: 100%;
	line-height: 1.5;
  letter-spacing: 0;
}
body, .font_sans-serif{
	font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}

h2, h3, h4, h5, h6{
  line-height: 1.5;
}

input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
textarea{
  overflow: auto
}

/*---------------------------------------------------------------------------*/

#wrap{
	max-width: 562.5px;
	margin: 0 auto;
	overflow: hidden;
}
.btn {
	padding-right: 6.5%;
}

/*** faq ***/

.faq .box_title1{
	padding: 20px 30px 20px 40px;
	background-image: url(../img/icon_q.png);
	background-size: 42px;
	background-repeat: no-repeat;
	background-position: top 16px left -8px;
	cursor: pointer;
}
.faq .box_title1::before{
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 26px;
	right: 10px;
	transform: rotate(45deg);
	border-right: solid 2px;
	border-bottom: solid 2px;
	transition: transform 0.2s;
}
.faq .box_title1.active::before{
	transform: translateY(5px) rotate(-135deg)
}
.faq .box_txt1{
	padding: 20px 0 20px 40px;
	background-image: url(../img/icon_a.png);
	background-size: 42px;
	background-repeat: no-repeat;
	background-position: top 16px left -8px;
}

/** faq style2 **/
.faq .cate_box{
	border: none;
	margin-bottom: 20px;
}
.faq .box_title1, .faq .box_txt1{
	font-size: 14px;
	background-size: 20px;
    background-position: top 13px left 12px;
}
.faq .box_title1{
	background-color: var(--color4);
    color: #fff;
    font-weight: normal;
	border-radius: 3px;
}
.faq .box_txt1{
	background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
    padding-right: 15px;
}
.faq .box_title1::before {
    width: 6px;
    height: 6px;
}

/*ここからタブレット用（780px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 768px){
}

/*ここからスマホ用（750px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 667px){
}