@charset "UTF-8";
@import url(./utility.css);
@import url(./component.css);

/*全体共通*/
:root, html{ font-size: 10px; } 
body {
  --c-base: #222;
  --c-main: #0D5A9B;
	--c-main-light: #E7F2FC;
	--c-main-dark: #0E385C;
  --c-accent: #E6582E;
  --ff-main: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	--ff-mincho: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --ff-en: "Helvetica Neue" , Helvetica , "Lato", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;

  position: relative;
  width: 100%;
  overflow-x: hidden;
	color: var(--c-base);
	font-family: var(--ff-main);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}
body.-fixed{
	position: fixed;
	left: 0;
	width: 100%;
	height: 100%;
}
body.userAgent-pc a[href^="tel:"]{
	pointer-events: none;
}
img, svg, picture{
  display: inline-block;
  max-width: 100%;
}
@media screen and (max-width: 1366px) {
	:root, html{ font-size: .7320vw; } 
}
@media screen and (max-width: 767px) {
	:root, html{ font-size: 10px; } 
}
@media screen and (max-width: 375px) {
	:root, html{ font-size: 2.66vw; } 
}

#top_title_area {
  margin-top: 83px;
}
#main_content {
  margin: 50px auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  
  #top_title_area {
    margin-top: 64px;
  }
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 2rem;
	background: #fff;
	z-index: 100;
}
#header .sec-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	max-width: 1266px;
	height: 83px;
	margin: 0 auto;
}
#header .sec-logo {
	width: 313px;
}
#header .sec-list {
	display: flex;
	gap: 3rem;
	width: 540px;
	font-size: 16px;
	font-size: clamp(12px, 1.4vw, 16px);
	font-weight: 700;
	white-space: nowrap;
}
#header .sec-btns {
	display: flex;
	gap: .8rem;
}
#header .sec-btn {
	position: relative;
	width: 160px;
	width: clamp(120px, 15vw, 160px);
	padding: 10px 4px 10px 0;
	border-radius: 100px;
	font-size: 14px;
	font-size: clamp(12px, 1.5vw, 14px);
	font-weight: 700;
	white-space: nowrap;
	text-align: center;
}
#header .sec-btn.-download {
	background: var(--c-accent);
	color: #fff;
}
#header .sec-btn.-contact {
	border: 1px solid var(--c-main);
	color: var(--c-main);
}
#header .sec-btn::before {
	content: "";
	position: absolute;
	top: 0;
	right: 1rem;
	height: 98%;
	width: 6px;
}
#header .sec-btn.-download::before {
	background: url(../img/common/icon-arrow-white.svg) center/contain no-repeat;
}
#header .sec-btn.-contact::before {
	background: url(../img/common/icon-arrow.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
	#header {
		padding: 0 1rem;
		box-shadow: #00000029 0 3px 6px;
	}
	#header .sec-inner {
		height: 64px;
	}
	#header .sec-logo {
		width: 222px;
	}
}

#navbtn {
	position: relative;
	width: 45px;
	height: 25px;
}
#navbtn span {
	position: absolute;
	left: 10px;
	width: 25px;
	height: 1px;
	background: #0E385C;
	transition: transform .3s;
}
#navbtn span:nth-child(1) {
	top: calc(50% - 8px);
}
#navbtn span:nth-child(2) {
	top: 50%;
}
#navbtn span:nth-child(3) {
	top: calc(50% + 8px);
}
#navbtn.-active span:nth-child(1) {
	top: 50%;
	transform: rotate(33deg);
}
#navbtn.-active span:nth-child(2) {
	display: none;
}
#navbtn.-active span:nth-child(3) {
	top: 50%;
	transform: rotate(-33deg);
}

#nav {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: calc(100lvh + 100px);
	padding-bottom: 100px;
	background: #fff;
	z-index: 99;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#nav::-webkit-scrollbar{
	display: none;
}
#nav .sec-inner {
	padding: 80px 2rem;
}
#nav .sec-list {
	margin-bottom: 20px;
}
#nav .sec-list .link {
	position: relative;
	display: block;
	padding: 14px 9px;
	border-bottom: 1px solid var(--c-main-light);
	font-weight: 700;
}
#nav .sec-list .link::before {
	content: "";
	position: absolute;
	top: 0;
	right: 9px;
	width: 7px;
	height: 100%;
	background: url(../img/common/icon-arrow.svg) center/contain no-repeat;
}
#nav .sec-list-sub{
	margin-bottom: 40px;
	margin-left: 9px;
}
#nav .sec-list-sub li{
	font-size: 1.4rem;
	margin-bottom: 10px;
}

#footer {
	padding-top: 80px;
	padding-bottom: 70px;
}
#footer .sec-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
#footer .sec-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}
#footer .sec-logo img {
	width: 313px;
}
#footer .sec-logo .text {
	padding: 0 10px;
	background: var(--c-main);
	border-radius: 100px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 2;
}
#footer .sec-info {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 25px 0;
	font-size: 14px;
	line-height: 1.57;
}
#footer .sec-info .title {
	color: var(--c-main);
	font-weight: 700;
}
#footer .sec-right {
	display: flex;
	gap: 5rem;
}
#footer .sec-nav .title{
	font-weight: 700;
	color: var(--c-main-dark);
	margin-bottom: 22px;
}
#footer .sec-nav .item{
	font-size: 14px;
}
#footer .sec-nav .item:not(:nth-of-type(1)){
	margin-top: 16px;
}
#footer .sec-copyright {
	display: block;
	margin-top: 67px;
	font-family: var(--ff-en);
	font-size: 12px;
	font-weight: 400;
	color: var(--c-main-dark);
	text-align: center;
}
@media screen and (max-width: 767px) {
	#footer {
		padding: 30px 18px 100px;
	}
	#footer .sec-left {
		margin: 0 auto;
	}
	#footer .sec-logo {
		margin-bottom: 18px;
		flex-direction: column;
	}
	#footer .sec-logo img {
		max-width: 313px;
		width: 100%;
	}
	#footer .sec-logo .text {
		max-width: 168px;
		width: 100%;
		text-align: center;
	}
	#footer .sec-info .small {
		font-size: 12px;
	}
	#footer .sec-copyright {
		margin-top: 28px;
	}
}

#bnr {
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	width: 250px;
	padding: 5px 5px 9px;
	background: #fff;
	box-shadow: #0e385c33 0 8px 25px;
	border-radius: 5px;
	z-index: 10;
	color: var(--c-main);
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}
#bnr img {
	display: block;
	margin-bottom: 7px;
}
#bnr .txt {
	position: relative;
}
#bnr .txt::before {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	left: calc(100% + 8px);
	display: block;
	width: 16px;
	height: 16px;
	background: var(--c-main-light);
	border-radius: 50%;
}
#bnr .txt::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	left: calc(100% + 12px);
	display: block;
	width: 4px;
	height: 4px;
	border-top: 2px solid var(--c-main);
	border-right: 2px solid var(--c-main);
	box-sizing: content-box;
	transform: rotate(45deg);
}
#cta{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFEB7E;
	gap: 0 9px;
	padding: 0 8px;
	z-index: 10;
}
#cta .btn{
	font-size: 1.4rem;
	font-weight: 700;
	border-radius: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 8px 10px 8px 8px;
	height: 38px;
	max-width: 163px;
	width: 100%;
	position: relative;
}
#cta .btn.-download{
	background: var(--c-accent);
	color: #fff;
}
#cta .btn.-contact{
	background: #fff;
	color: var(--c-main);
	border: 1px solid var(--c-main);
}
#cta .btn::before{
	content: "";
	position: absolute;
	width: 5px;
	height: 100%;
	right: 1rem;
	top: 0;
}
#cta .btn.-download::before {
	background: url(../img/common/icon-arrow-white.svg) center/contain no-repeat;
}
#cta .btn.-contact::before {
	background: url(../img/common/icon-arrow.svg) center/contain no-repeat;
}

#heading {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 200px;
	margin-top: 83px;
	background: url(../img/common/heading-bg.jpg) center/cover no-repeat;
}
#heading .sec-title {
	color: var(--c-main);
	font-size: 28px;
	font-weight: 700;
}
@media screen and (max-width: 767px) {
	#heading {
    height: 148px;
		margin-top: 64px;
	}
}

#main {
	position: relative;
}

#breadcrumbs {
	width: 100%;
}
#main #breadcrumbs {
	position: absolute;
	top: 15px;
	left: 0;
	z-index: 10;
}
#breadcrumbs .sec-list {
	display: flex;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .02em;
}
#breadcrumbs .sec-list::before {
	content: "";
	display: block;
	width: 11px;
	margin-right: 5px;
	background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.26%22%20height%3D%229.471%22%20viewBox%3D%220%200%2010.26%209.471%22%3E%20%3Cpath%20d%3D%22M7.321%2C13.971V10.814H9.689v3.157H12.1V9.235h1.539L8.505%2C4.5%2C3.375%2C9.235H4.914v4.735Z%22%20transform%3D%22translate(-3.375%20-4.5)%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
#breadcrumbs .sec-list .item + .item::before {
	content: "";
	display: inline-block;
	height: 100%;
	width: 4px;
	height: 10px;
	margin: 0 10px;
	background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%224.692%22%20height%3D%228.577%22%20viewBox%3D%220%200%204.692%208.577%22%3E%20%3Cpath%20d%3D%22M6781.584-10169.538l3.632%2C4.267-3.632%2C3.633%22%20transform%3D%22translate(-6781.203%2010169.862)%22%20fill%3D%22none%22%20stroke%3D%22%23222%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  #main #breadcrumbs {
    top: 10px;
  }
  #breadcrumbs .sec-list {
    font-size: 10px;
  }
}

#news {
  padding-top: 60px;
}
#news .sec-title {
  margin-bottom: 40px;
}
#news .sec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 22px;
  margin-bottom: 40px;
}
#news .sec-list .item {
  position: relative;
  padding: 33px 3rem 45px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
#news .sec-list .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 13px;
  background: var(--c-main);
}
#news .sec-list .img {
  position: relative;
  padding-top: 60%;
  margin-bottom: 11px;
}
#news .sec-list .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-main);
  margin-bottom: 17px;
}
#news .sec-list .text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.583;
  margin-bottom: 19px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#news .sec-list .cats {
  display: flex;
  gap: 5px;
}
#news .sec-list .cat {
  padding: 3px 15px;
  background: #E7F2FC;
  border-radius: 100px;
  font-size: 12px;
  color: var(--c-main-dark);
}
@media screen and (max-width: 767px) {
  #news {
    padding-top: 30px;
  }
  #news .sec-title {
    margin-bottom: 20px;
  }
  #news .sec-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  #news .sec-list .item {
    padding: 30px 28px 23px;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  #news .sec-list .img {
    margin-bottom: 12px;
  }
  #news .sec-list .title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #news .sec-list .text {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
  #news .sec-list .cat {
    padding: 2px 12px;
  }
}

#contact {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
  background: url(../img/index/contact-bg.png) top/cover no-repeat, linear-gradient(#FAFAFA, #D5F4FF);
}
#contact .sec-inner {
  position: relative;
  max-width: 1025px;
  padding: 58px 2rem 64px;
  background: url(../img/index/contact-box-bg.jpg) center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
}
#contact .sec-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #fff;
  border-radius: 16px;
}
#contact .sec-title {
  margin-bottom: 52px;
}
#contact .sec-title::before {
  content: none;
}
#contact .sec-btns,
#contact .sec-tel {
  display: block;
  width: 100%;
  max-width: 693px;
  margin: 0 auto;
}
#contact .sec-btns {
  display: grid;
  grid-template-columns: 36fr 31fr;
  align-items: end;
  gap: 2.3rem;
  margin-bottom: 39px;
}
#contact .sec-btns .btn {
  position: relative;
  padding: 30px 1rem 20px;
  background: #fff;
  border: 3px solid var(--c-main);
  border-radius: 10px;
  box-shadow: #00000029 0 3px 10px;
  color: var(--c-main);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
#contact .sec-btns .btn.-download {
  padding-top: 44px;
  background: var(--c-accent);
  border-color: #fff;
  color: #fff;
  font-size: 22px;
}
#contact .sec-btns .btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1rem;
  width: 11px;
  height: 100%;
  background: url(../img/common/icon-arrow.svg) center/contain no-repeat;
}
#contact .sec-btns .btn.-download::before {
  right: 2rem;
  background-image: url(../img/common/icon-arrow-white.svg);
}
#contact .sec-btns .btn.-download::after {
  content: "";
  position: absolute;
  top: -3rem;
  left: -3.5rem;
  width: 117px;
  height: 117px;
  background: url(../img/index/contact-bubble.png) center/contain no-repeat;
}
#contact .sec-btns .btn img {
  display: block;
  height: 83px;
  margin: 0 auto 10px;
  object-fit: contain;
}
#contact .sec-tel {
  position: relative;
  padding: 25px 2rem 30px;
  background: #fff;
  border-radius: 20px;
  color: var(--c-main);
  font-size: 14px;
  letter-spacing: .02em;
  text-align: center;
  z-index: 2;
}
#contact .sec-tel .tel span{
	font-size: 0.5em;
	vertical-align: middle;
  margin-top: -7px;
}
#contact .sec-tel::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px solid #E7F2FC;
  border-radius: inherit;
  z-index: -1;
}
#contact .sec-tel .top {
  width: 100%;
  max-width: 345px;
  margin: 0 auto 6px;
  padding: 3px 0;
  background: #E7F2FC;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
}
#contact .sec-tel .tel {
  font-family: var(--ff-en);
  font-size: 46px;
  font-weight: bold;
  line-height: 1.13;
}
#contact .sec-tel .tel::before {
  content: "";
  display: inline-block;
  width: 43px;
  height: 43px;
  margin-right: 10px;
  background: url(../img/common/icon-tel.svg) center/contain no-repeat;
  vertical-align: -0.1em;
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 36px 5px 55px;
  }
  #contact .sec-inner {
    padding: 25px 15px;
  }
  #contact .sec-inner::before {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
  #contact .sec-title {
    margin-bottom: 33px;
  }
  #contact .sec-btns{
    max-width: 300px;
  }
  #contact .sec-tel {
    max-width: 335px;
  }
  #contact .sec-btns {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  #contact .sec-btns .btn {
    padding: 11px 26px 11px;
    font-size: 16px;
  }
  #contact .sec-btns .btn.-download {
    padding-top: 20px;
    font-size: 18px;
  }
  #contact .sec-btns .btn::before {
    right: 16px;
    width: 8px;
  }
  #contact .sec-btns .btn.-download::before {
    right: 16px;
  }
  #contact .sec-btns .btn.-download::after {
    top: -23px;
    left: -17px;
    width: 100px;
    height: 98px;
    font-size: 13px;
  }
  #contact .sec-btns .btn img {
    display: block;
    height: 52px;
    margin: 0 auto 7px;
  }
  #contact .sec-tel {
    padding: 17px;
    border-radius: 12px;
    font-size: 12px;
  }
  #contact .sec-tel::before {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
  #contact .sec-tel .top {
    max-width: 236px;
    font-size: 12px;
  }
  #contact .sec-tel .tel {
    font-size: 32px;
    margin-bottom: 5px;
  }
  #contact .sec-tel .tel::before {
    width: 32px;
    height: 32px;
    margin-right: 7px;
  }
}

#form {
  padding-top: 60px;
  padding-bottom: 100px;
}
#form .sec-title {
  margin-bottom: 20px;
}
#form .sec-box {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 38px 8.7rem 70px 7.5rem;
  background: #fff;
  border: 2px solid var(--c-main);
  border-radius: 20px;
}
#form .sec-form .input,
#form .sec-form .selectbox,
#form .sec-form .wpcf7-form-control-wrap.-select {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 18px 20px;
  background: #FAFAFA;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  font: inherit;
}
#form .sec-form ::placeholder{
  color: #ccc;
}
#form .sec-form .wpcf7-form-control-wrap.-select:not(.-changed)::before {
  content: "選択してください";
  position: relative;
  background: inherit;
  z-index: 2;
  color: #ccc;
}
#form .sec-form .wpcf7-form-control-wrap.-select::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 1.4rem;
  width: 12px;
  height: 6px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%225.408%22%20viewBox%3D%220%200%2012%205.408%22%3E%20%3Cpath%20d%3D%22M5.33.6A1%2C1%2C0%2C0%2C1%2C6.67.6l3.4%2C3.062A1%2C1%2C0%2C0%2C1%2C9.4%2C5.408H2.6a1%2C1%2C0%2C0%2C1-.67-1.743Z%22%20transform%3D%22translate(12%205.408)%20rotate(180)%22%20fill%3D%22%230e385c%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
#form .sec-form .wpcf7-form-control-wrap.-select select {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: none;
  border: none;
}
#form .sec-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-left: 2.7rem;
}
#form .sec-form input[type="radio"] {
	-webkit-appearance: auto;
    appearance: auto;
}
#form .sec-form .wpcf7-radio{
	display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-left: 2.7rem;
}
#form .sec-form input[type="checkbox"] {
  display: none;
}
#form .sec-form input[type="checkbox"] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 23px;
}
#form .sec-form input[type="checkbox"] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
#form .sec-form input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: #0586F4;
  border-color: #0586F4;
}
#form .sec-form input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 1px;
  width: 12px;
  height: 9px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.257%22%20height%3D%228.394%22%20viewBox%3D%220%200%2011.257%208.394%22%3E%20%3Cpath%20d%3D%22M3.823%2C12.807.165%2C9.148a.563.563%2C0%2C0%2C1%2C0-.8l.8-.8a.563.563%2C0%2C0%2C1%2C.8%2C0l2.465%2C2.465L9.5%2C4.742a.563.563%2C0%2C0%2C1%2C.8%2C0l.8.8a.563.563%2C0%2C0%2C1%2C0%2C.8L4.619%2C12.807A.563.563%2C0%2C0%2C1%2C3.823%2C12.807Z%22%20transform%3D%22translate(0%20-4.577)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
#form .sec-form .textarea {
  height: 192px;
}
#form .sec-form .item + .item {
  margin-top: 15px;
}
#form .sec-form .item.-contact {
  margin-top: 30px;
}
#form .sec-form .item.-privacy {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#form .sec-form .title {
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: .02em;
}
#form .sec-form .title.-required::after {
  content: "必須";
  display: inline-block;
  margin-left: 8px;
  padding: 0 8px;
  background: var(--c-main);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
} 
#form .sec-form .crtext {
	margin-top: 30px;
  font-weight: 700;
  text-align: center;
}
#form .sec-form .crtext a {
  color: var(--c-main);
  text-decoration: underline;
}
#form .sec-btn {
  position: relative;
  width: 272px;
  margin: 30px auto 0;
}
#form .sec-btn::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 6px;
  width: 6px;
  height: 100%;
  background: url(../img/common/icon-arrow-white.svg) center/contain no-repeat;
}
#form .sec-btn input {
  width: 100%;
  height: 60px;
  background: var(--c-main);
  border: 2px solid var(--c-main-light);
  border-radius: 10px;
  box-shadow: #00000029 0 3px 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
#form .sec-btn .wpcf7-spinner {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #form {
    padding-top: 55px;
    padding-bottom: 50px;
  }
  #form .sec-title {
    /* margin-bottom: 20px; */
  }
  #form .sec-box {
    /* width: 100%;
    max-width: 880px;
    margin: 0 auto; */
    padding: 28px 15px 30px;
    /* background: #fff;
    border: 2px solid var(--c-main);
    border-radius: 20px; */
  }
  #form .sec-form .input,
  #form .sec-form .selectbox,
  #form .sec-form .wpcf7-form-control-wrap.-select {
    /* position: relative;
    display: block;
    width: 100%; */
    height: 43px;
    padding: 11px 9px;
    /* background: #FAFAFA;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    font: inherit; */
    font-size: 14px;
  }
  #form .sec-form ::placeholder{
    /* color: #ccc; */
    font-size: 14px;
  }
  #form .sec-form .wpcf7-form-control-wrap.-select:not(.-changed)::before {
    /* content: "選択してください";
    position: relative;
    background: inherit;
    z-index: 2;
    color: #ccc; */
    /* font-size: 4px; */
    font-size: 14px;
  }
  #form .sec-form .wpcf7-form-control-wrap.-select::after {
    /* content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 1.4rem;
    width: 12px;
    height: 6px;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%225.408%22%20viewBox%3D%220%200%2012%205.408%22%3E%20%3Cpath%20d%3D%22M5.33.6A1%2C1%2C0%2C0%2C1%2C6.67.6l3.4%2C3.062A1%2C1%2C0%2C0%2C1%2C9.4%2C5.408H2.6a1%2C1%2C0%2C0%2C1-.67-1.743Z%22%20transform%3D%22translate(12%205.408)%20rotate(180)%22%20fill%3D%22%230e385c%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat; */
  }
  #form .sec-form .wpcf7-form-control-wrap.-select select {
    /* position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: none;
    border: none; */
  }
	#form .sec-form .wpcf7-radio{
    gap: 10px;
    padding-left: 0;
}
  #form .sec-form .wpcf7-checkbox {
    /* display: flex;
    flex-wrap: wrap; */
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
  }
	#form .sec-form input[type="radio"] + .wpcf7-list-item-label {
    font-size: 14px;
  }
  #form .sec-form input[type="checkbox"] {
    /* display: none; */
  }
  #form .sec-form input[type="checkbox"] + .wpcf7-list-item-label {
    /* position: relative; */
    /* padding-left: 23px; */
    font-size: 14px;
  }
  #form .sec-form input[type="checkbox"] + .wpcf7-list-item-label::before {
    /* content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 0;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 3px; */
  }
  #form .sec-form input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    /* background: #0586F4;
    border-color: #0586F4; */
  }
  #form .sec-form input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    /* content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: 1px;
    width: 12px;
    height: 9px;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.257%22%20height%3D%228.394%22%20viewBox%3D%220%200%2011.257%208.394%22%3E%20%3Cpath%20d%3D%22M3.823%2C12.807.165%2C9.148a.563.563%2C0%2C0%2C1%2C0-.8l.8-.8a.563.563%2C0%2C0%2C1%2C.8%2C0l2.465%2C2.465L9.5%2C4.742a.563.563%2C0%2C0%2C1%2C.8%2C0l.8.8a.563.563%2C0%2C0%2C1%2C0%2C.8L4.619%2C12.807A.563.563%2C0%2C0%2C1%2C3.823%2C12.807Z%22%20transform%3D%22translate(0%20-4.577)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat; */
  }
  #form .sec-form .textarea {
    height: 200px;
  }
  #form .sec-form .item + .item {
    margin-top: 20px;
  }
  #form .sec-form .item.-contact {
    margin-top: 20px;
  }
  #form .sec-form .item.-privacy {
    /* display: flex;
    justify-content: center; */
    /* margin-top: 20px; */
  }
  #form .sec-form .title {
    margin-bottom: 6px;
    font-size: 14px;
    /* letter-spacing: .02em; */
  }
  #form .sec-form .title.-required::after {
    /* content: "必須";
    display: inline-block;
    margin-left: 8px; */
    padding: 0 5px;
    /* background: var(--c-main); */
    border-radius: 2px;
    color: #fff;
    font-size: 10px;
    /* font-weight: 700;
    text-align: center;
    line-height: 1.5; */
  } 
  #form .sec-form .item.-product .title {
    margin-bottom: 15px;
  }
  #form .sec-form .crtext {
    margin-top: 20px;
    font-size: 14px;
    /* font-weight: 700;
    text-align: center; */
  }
  #form .sec-form .crtext a {
    /* color: var(--c-main);
    text-decoration: underline; */
  }
  #form .sec-btn {
    /* position: relative; */
    max-width: 293px;
    width: 100%;
    margin-top: 20px;
    /* margin: 30px auto 0; */
  }
  #form .sec-btn::before {
    /* content: "";
    position: absolute; */
    right: 16px;
    /* top: 0;
    width: 6px;
    height: 100%;
    background: url(../img/common/icon-arrow-white.svg) center/contain no-repeat; */
  }
  #form .sec-btn input {
    /* width: 100%;
    height: 60px;
    background: var(--c-main);
    border: 2px solid var(--c-main-light);
    border-radius: 10px;
    box-shadow: #00000029 0 3px 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center; */
  }
}

#reason {
  overflow-x: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}
#reason .sec-title{
  margin-bottom: 40px;
}
#reason .sec-title .c-marker {
  margin-right: .5em;
}
#reason .sec-list .item {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 2rem;
}
#reason .sec-list .item + .item {
  margin-top: 30px;
}
#reason .sec-list .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  min-height: 367px;
  padding: 30px 0 23px;
  background: url(../img/index/reason-point-bg.jpg) center/cover no-repeat;
  border-radius: 20px;
  color: var(--c-main);
  font-size: 50px;
  font-size: clamp(35px, 5vw, 50px);
  font-weight: 700;
}
#reason .sec-list .title img {
  display: block;
  width: 80%;
  height: 55px;
  margin: 0 auto 20px;
  object-fit: contain;
}
#reason .sec-list .title > span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  line-height: 1.4;
}
#reason .sec-list .right {
	display: flex;
	flex-direction: column;
	gap: 20px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.75;
}
#reason .sec-list .img {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #reason {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #reason .sec-title{
    margin-bottom: 30px;
  }
  #reason .sec-list .item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  #reason .sec-list .item + .item {
    margin-top: 25px;
  }
  #reason .sec-list .title {
    min-height: 90px;
    padding: 4px 16px;
    border-radius: 15px;
    font-size: 25px;
  }
  #reason .sec-list .title img {
    max-width: 98px;
    width: 100%;
    height: 46px;
    margin-bottom: -6px;
  }
  #reason .sec-list .title > span {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    text-align: center;
  }
  #reason .sec-list .right {
    padding: 17px 17px 30px;
    gap: 16px;
  }
  #reason .sec-list .text {
    margin: 0 auto;
    font-size: 12px;
    text-align: left;
    order: 3;
    max-width: 480px;
    width: 100%;
  }
}

#price {
  padding-top: 40px;
  padding-bottom: 60px;
}
#price .sec-title{
  margin-bottom: 40px;
}
#price .sec-text{
  text-align: right;
  color: var(--c-main-dark);
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 1.41;
}
#price .sec-text+.sec-text{
  margin-top: 5px;
}
#price .sec-table table {
	width: 100%;
  min-width: 648px;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
  margin-bottom: 17px;
}
#price .sec-table tbody tr:first-child th:first-child {
  border-top-left-radius: 20px;
}
#price .sec-table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 20px;
}
#price .sec-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}
#price .sec-table table tr th:first-child {
  width: 19.6%;
}
#price .sec-table table th {
  width: 26.8%;
	padding: 0;
	border: 0;
	font-size: 24px;
  font-size: clamp(14px, 1.82vw, 24px);
	font-weight: bold;
}
#price .sec-table table td {
	padding: 0;
	border: 0;
  background: #fff;
}
#price .sec-table thead th {
  position: relative;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  z-index: 2;
	color: #fff;
  line-height: 1.2;
  vertical-align: bottom;
}
#price .sec-table thead th:nth-child(2) {
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#price .sec-table thead th > span {
	display: block;
  height: 100%;
  padding: 34px 0 33px;
  z-index: 2;
}
#price .sec-table thead th > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: calc(100% + 6px);
  height: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
	background: var(--c-main);
  z-index: -1;
}
#price .sec-table thead th > span.row {
  position: relative;
	padding: 25px 0 24px;
}
#price .sec-table thead th > span.row::before {
  left: 0;
  width: 100%;
	background: #C6C6C6;
}
#price .sec-table thead th:nth-child(4) > span.row::before {
  left: 0;
  width: 100%;
	background: #A3A3A3;
}
#price .sec-table thead th .small {
  font-size: 16px;
  font-size: clamp(9px, 1.17vw, 16px);
}
#price .sec-table tbody {
  border-top-left-radius: 20px;
  overflow: hidden;
}
#price .sec-table tbody th {
	width: 23.06%;
	background: #6CB7F7;
	border-bottom: 1px solid #E7F2FC;
	color: #fff;
  font-size: 18px;
  font-size: clamp(13px, 1.69vw, 18px);
  line-height: 1.2;
  vertical-align: middle;
}
#price .sec-table tbody th .small {
  font-size: 14px;
  font-size: clamp(9px, 1.17vw, 14px);
}
#price .sec-table tbody td {
	padding: 24px 8px;
	border-left: 1px solid #D8D8D8;
	color: #9A9A9A;
	font-size: 12px;
  font-size: clamp(10px, 1.30vw, 12px);
	line-height: 1.41;
}
#price .sec-table tbody tr + tr td {
	border-top: 1px solid #D8D8D8;
}
#price .sec-table tbody td:nth-child(2) {
	color: var(--c-main);
	border-left: 3px solid var(--c-main);
	border-right: 3px solid var(--c-main);
}
#price .sec-table tbody tr:last-child td:nth-child(2) {
	border-bottom: 3px solid var(--c-main);
}
#price .sec-table table .large {
	display: block;
	margin-bottom: 8px;
	font-size: 2.4rem;
}
#price .sec-table table .medium {
	display: block;
	font-size: 2rem;
	line-height: 1.75;
}
#price .sec-table table .double {
	display: block;
	margin: 0 auto 12px;
	width: 100%;
	height: 43px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2243.267%22%20height%3D%2243.267%22%20viewBox%3D%220%200%2043.267%2043.267%22%3E%20%3Cg%20transform%3D%22translate(-521.324%20-7762.463)%22%3E%20%3Cg%20transform%3D%22translate(528.324%207769.463)%22%20fill%3D%22none%22%20stroke%3D%22%230d5a9b%22%20stroke-width%3D%223%22%3E%20%3Ccircle%20cx%3D%2214.634%22%20cy%3D%2214.634%22%20r%3D%2214.634%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%2214.634%22%20cy%3D%2214.634%22%20r%3D%2213.134%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20transform%3D%22translate(521.324%207762.463)%22%20fill%3D%22none%22%20stroke%3D%22%230d5a9b%22%20stroke-width%3D%223%22%3E%20%3Ccircle%20cx%3D%2221.634%22%20cy%3D%2221.634%22%20r%3D%2221.634%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%2221.634%22%20cy%3D%2221.634%22%20r%3D%2220.134%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
#price .sec-table table .maru {
	display: block;
	margin: 0 auto 15px;
	width: 38px;
	height: 38px;
	border: .25rem solid #9A9A9A;
	border-radius: 50%;
}
#price .sec-table table .batsu {
	display: block;
	width: 100%;
	height: 32px;
	margin: 0 auto 18px;
	background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2234.169%22%20height%3D%2234.169%22%20viewBox%3D%220%200%2034.169%2034.169%22%3E%20%3Cg%20transform%3D%22translate(0.884%200.884)%22%3E%20%3Cline%20x1%3D%2232.402%22%20y2%3D%2232.402%22%20transform%3D%22translate(0%200)%22%20fill%3D%22none%22%20stroke%3D%22%239a9a9a%22%20stroke-width%3D%222.5%22%2F%3E%20%3Cline%20x2%3D%2232.402%22%20y2%3D%2232.402%22%20transform%3D%22translate(0%200)%22%20fill%3D%22none%22%20stroke%3D%22%239a9a9a%22%20stroke-width%3D%222.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
#price .sec-table table .sankaku {
	display: block;
	width: 100%;
	height: 29px;
	margin: 0 auto 20px;
	background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2237.335%22%20height%3D%2233.187%22%20viewBox%3D%220%200%2037.335%2033.187%22%3E%20%3Cpath%20d%3D%22M16.53%2C0%2C33.06%2C29.387H0Z%22%20transform%3D%22translate(2.137%202.55)%22%20fill%3D%22none%22%20stroke%3D%22%239a9a9a%22%20stroke-width%3D%222.5%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  #price {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #price .sec-title{
    margin-bottom: 20px;
  }
  #price .sec-text{
    text-align: left;
  }
  #price .sec-table table th {
    font-size: 14px;
    line-height: 1;
  }
  #price .sec-table thead th:nth-child(2) {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #price .sec-table thead th > span::before {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #price .sec-table thead th > span {
    padding: 18px 0;
  }
  #price .sec-table thead th > span.row {
    padding: 13px 0;
  }
  #price .sec-table thead th .small {
    font-size: 9px;
  }
  #price .sec-table tbody th {
    font-size: 13px;
  }
  #price .sec-table tbody tr:first-child th:first-child {
    border-top-left-radius: 12px;
  }
  #price .sec-table tbody tr:last-child th:first-child {
    border-bottom-left-radius: 12px;
  }
  #price .sec-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
  }
  #price .sec-table tbody th .small {
    font-size: 9px;
  }
  #price .sec-table table .double {
    height: 25px;
    margin-bottom: 6px;
  }
  #price .sec-table table .maru {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
  }
  #price .sec-table table .sankaku {
    height: 17px;
    margin-bottom: 6px;
  }
  #price .sec-table table .batsu {
    height: 19px;
    margin-bottom: 6px;
  }
  #price .sec-table tbody td {
    padding: 17px 10px;
    font-size: 10px;
  }
}
#flow {
  padding-top: 60px;
  padding-bottom: 60px;
}
#flow .sec-title {
  margin-bottom: 40px;
}
#flow .sec-title .c-marker {
  margin-right: .5em;
}
#flow .sec-list {
  counter-reset: num;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 22px;
  margin-bottom: 20px;
}
#flow .sec-list .item {
  position: relative;
  width: calc((100% - 44px) / 3);
  padding: 20px 20px 40px;
  background: #E7F2FC;
  border-radius: 20px;
}
#flow .sec-list .item::before {
  counter-increment: num;
  content: "Step " counter(num);
  padding: 2px 10px;
  background: #fff;
  border-radius: 5px;
  color: var(--c-main);
  font-family: var(--ff-en);
  font-size: 19px;
  font-style: italic;
  font-weight: bold;
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 10px;
}
#flow .sec-list .item + .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -17px;
  width: 14px;
  height: 100%;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.971%22%20height%3D%2229.249%22%20viewBox%3D%220%200%2013.971%2029.249%22%3E%20%3Cpath%20d%3D%22M13.934.66a1%2C1%2C0%2C0%2C1%2C1.382%2C0l12.13%2C11.588a1%2C1%2C0%2C0%2C1-.691%2C1.723H2.494A1%2C1%2C0%2C0%2C1%2C1.8%2C12.248Z%22%20transform%3D%22translate(13.971)%20rotate(90)%22%20fill%3D%22%230d5a9b%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
#flow .sec-list .title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-main);
  margin-bottom: 15px;
}
#flow .sec-list .title .small {
  font-size: 18px;
}
#flow .sec-list .img {
  max-width: 155px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
}
#flow .sec-list .text {
  font-size: 14px;
  line-height: 1.785;
}
#flow .sec-text {
  text-align: right;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--c-main-dark);
}
@media screen and (max-width: 767px) {
  #flow {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #flow .sec-title {
    margin-bottom: 20px;
  }
  #flow .sec-list {
    flex-direction: column;
    gap: 23px;
    margin-bottom: 10px;
  }
  #flow .sec-list .item {
    width: 100%;
    padding: 15px 18px 30px;
    max-width: 360px;
    margin: 0 auto;
  }
  #flow .sec-list .item::before {
    padding: 2px 9px;
    font-size: 14px;
  }
  #flow .sec-list .item + .item::after {
    top: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    height: 30px;
  }
  #flow .sec-list .title {
    font-size: 18px;
  }
  #flow .sec-list .title .small {
    font-size: 16px;
  }
  #flow .sec-list .img {
    max-width: 144px;
    margin-bottom: 15px;
  }
  #flow .sec-list .text {
    font-size: 12px;
  }
  #flow .sec-text {
    text-align: left;
  }
}

#faq {
  padding-top: 40px;
  padding-bottom: 60px;
}
#faq .sec-title {
  margin-bottom: 40px;
}
#faq .sec-title .c-marker {
  margin-right: .5em;
}
#faq .sec-list .item {
  padding: 36px 3.7rem 40px;
  background: #fff;
  border-radius: 10px;
}
#faq .sec-list .item:not(:nth-of-type(1)) {
  margin-top: 20px;
}
#faq .sec-list .question,
#faq .sec-list .answer {
  position: relative;
  padding-left: 77px;
}
#faq .sec-list .question {
  margin-bottom: 40px;
  color: var(--c-main);
  font-size: 20px;
  font-weight: 700;
}
#faq .sec-list .question::before,
#faq .sec-list .answer::before {
  content: "Q";
  position: absolute;
  top: -8px;
  left: 0;
  width: 50px;
  height: 44px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2243.301%22%20viewBox%3D%220%200%2050%2043.301%22%3E%20%3Cpath%20d%3D%22M12.5%2C0%2C0%2C21.651%2C12.5%2C43.3h25L50%2C21.651%2C37.5%2C0Z%22%20transform%3D%22translate(0.001)%22%20fill%3D%22%234694d6%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
  color: #fff;
  font-family: var(--ff-en);
  font-size: 25px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  line-height: 1.8;
}
#faq .sec-list .answer {
  
}
#faq .sec-list .answer::before {
  content: "A";
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2243.301%22%20viewBox%3D%220%200%2050%2043.301%22%3E%20%3Cpath%20d%3D%22M12.5%2C0%2C0%2C21.651%2C12.5%2C43.3h25L50%2C21.651%2C37.5%2C0Z%22%20transform%3D%22translate(0.001)%22%20fill%3D%22%23E7F2FC%22%2F%3E%3C%2Fsvg%3E');
  color: var(--c-main);
}
#faq .sec-list .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 32px;
  justify-content: flex-start;
  padding-left: 15.6rem;
  /* padding-right: 55px; */
}
@media screen and (max-width: 767px) {
  #faq {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #faq .sec-title {
    margin-bottom: 24px;
  }
  #faq .sec-list .item {
    padding: 24px 20px 30px;
  }
  #faq .sec-list .question,
  #faq .sec-list .answer {
    padding-left: 46px;
  }
  #faq .sec-list .answer {
    font-size: 14px;
  }
  #faq .sec-list .question {
    margin-bottom: 25px;
    font-size: 16px;
  }
  #faq .sec-list .question::before,
  #faq .sec-list .answer::before {
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    font-size: 18px;
    line-height: 2.11;
  }
  #faq .sec-list .btns {
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 0;
  }
}

/*カスタマイズ追加260225*/
.case-meta{
	margin-top: 22px;
}
.case-meta .info{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  color: var(--c-main-dark);
  font-size: 12px;
  line-height: 1.41;
}
.case-meta .info + .info {
    margin-top: 10px;
}
.case-meta .info dt {
    margin-top: -1px;
    padding: 3px 8px 4px;
    border: 1px solid var(--c-main);
    border-radius: 100px;
    color: var(--c-main);
    line-height: 1;
    white-space: nowrap;
}
.case-meta-single{
	margin-top: 22px;
  padding: 20px 2.5%;
  background: var(--color_main_thin);
}
.case-meta-single .info{
	font-size: 14px;
}