/*
ヘッダー
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(5, 7, 154, 0.1);
}
.header_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 7px 19px 12px;
}
.logo img {
  display: block;
  height: 50px;
}
.header_buttons {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header_contents {
    padding: 10px 30px 10px 50px;
  }
  .logo img {
    height: 60px;
  }
  .header_buttons {
    display: flex;
    gap: 20px;
  }
  .header_btn img {
    height: 40px;
		transition: all .3s ease-out;
  }
	.header_btn:hover img {
		opacity: .8;
	}
}
@media only screen and (min-width: 1280px) {
  .header_contents {
    height: 100px;
  }
}
@media only screen and (min-width: 1450px) {
  .logo img {
    height: 80px;
  }
  .header_btn img {
    height: 59px;
  }
}
/*
レイアウト
*/
.main_contents {
  padding: 70px 0 0;
}
@media only screen and (min-width: 1280px) {
  .main_contents {
    padding: 100px 0 0;
  }
}
.page_body_01 {
  width: 100%;
  padding: 0 35px;
}
@media only screen and (min-width: 1070px) {
  .page_body_01 {
    width: 1000px;
    margin: auto;
    padding: 0;
  }
}
.page_body_02 {
  width: 100%;
  padding: 0 35px;
}
@media only screen and (min-width: 1470px) {
  .page_body_02 {
    width: 1400px;
    margin: auto;
    padding: 0;
  }
}
/*
page_top
*/
.page_top {
  position: fixed;
  right: 2%;
  bottom: 40px;
  z-index: 100;
}
.page_top a {
  width: 40px;
  height: 40px;
  display: block;
  background: url(../images/common/page_top.svg) no-repeat;
  -webkit-background-size: 40px;
  background-size: 40px;
}
@media only screen and (min-width: 641px) {
  .page_top a {
    width: 70px;
    height: 70px;
    -webkit-background-size: 70px;
    background-size: 70px;
  }
}
/*
フローティングバナー
*/
.float_bnr_wrap {
	position: fixed;
	bottom: -1px;
	z-index: 11;
}
.float_bnr {
	display: flex;
}
@media only screen and (min-width: 768px) {
	.float_bnr_wrap {
		right: 0;
	}
	.float_bnr_demo {
		display: none;
	}
	.float_bnr_contact {
		width: 300px;
		transition: all .3s ease-out;
	}
}
@media only screen and (min-width: 1024px) {
	.float_bnr_contact:hover {
		opacity: .93;
	}
}
@media only screen and (min-width: 1280px) {
	.float_bnr_wrap {
		right: 30px;
	}
	.float_bnr_contact {
		width: 400px;
	}
}
@media only screen and (min-width: 1700px) {
	.float_bnr_contact {
		width: unset;
	}
}
/*
背景色
*/
.bg_01 {
  background: #e5f4f8;
}
.bg_02 {
  background: #2ea1f1;
}
.bg_03 {
  background: #277ae5;
}
/*
セクションタイトル
*/
.sec_wrap {
  padding: 60px 0;
}
.sec_ttl_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_ttl_en {
  font-size: 57px;
  line-height: 1.3;
}
.sec_ttl_ja {
  position: absolute;
  top: 50%;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
.ttl_s {
  font-size: 12px;
  letter-spacing: normal;
}
#features .sec_ttl_en {
  color: #277ae5;
}
#features .sec_ttl_ja {
  color: #fff;
}
#reason .sec_ttl_en {
  color: #fff;
}
#reason .sec_ttl_ja {
  color: #05469a;
}
#voice .sec_ttl_en {
  color: #e5f4f8;
}
#voice .sec_ttl_ja {
  color: #05469a;
}
#contacts .sec_ttl_en {
  color: #2ea1f1;
}
#contacts .sec_ttl_ja {
  color: #fff;
}
#contact_thanks .sec_ttl_en {
  color: #2ea1f1;
}
#contact_thanks .sec_ttl_ja {
  color: #fff;
}
.pc_br {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sp_br {
    display: none;
  }
  .pc_br {
    display: block;
  }
  .sec_ttl_en {
    font-size: clamp(57px, 7.4vw, 83px);
  }
  .sec_ttl_ja {
    font-size: clamp(24px, 3.1vw, 45px);
  }
  .ttl_s {
    font-size: clamp(12px, 1.6vw, 24px);
  }
}
@media only screen and (min-width: 1280px) {
  .sec_wrap {
    padding: 120px 0;
  }
  .sec_ttl_en {
    font-size: 83px;
  }
  .sec_ttl_ja {
    font-size: 45px;
  }
  .ttl_s {
    font-size: 24px;
  }
}
/*
ボタンパーツ
*/
a.btn_01,
a.btn_02 {
  background: url(../images/btn_arw.svg) 93% center / 8px no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  width: 224px;
  padding: 10px 0 11px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  letter-spacing: 0.08em;
}
input.btn_01 {
  border: none;
  background: url(../images/btn_arw.svg) 93% center / 8px no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  width: 224px;
  margin: auto;
  padding: 10px 0 11px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.case_btn .btn_02 {
  background-color: #05469a;
  margin: auto;
}
.case_btn .btn_02:hover {
  background-color: #277ae5;
}
.submit_btn .btn_01 {
  background-color: #f12e70;
}
.top_btn .btn_01 {
  background: #f12e70 url(../images/btn_back.svg) 10% center / 8px no-repeat;
  margin: auto;
}
@media only screen and (min-width: 768px) {
	a.btn_01,
	a.btn_02 {
    background-size: initial;
    width: 321px;
    padding: 14px 0 17px;
    font-size: 20px;
  }
  input.btn_01 {
    background-size: initial;
    width: 321px;
    padding: 14px 0 17px;
    font-size: 20px;
  }
  .top_btn .btn_01 {
    background-size: initial;
  }
}
@media only screen and (min-width: 1024px) {
  .case_btn .btn_02 {
    margin: 0 0 0 auto;
  }
	.submit_btn .btn_01:hover,
	.top_btn .btn_01:hover {
		background-color: rgba(241, 46, 112, .9);
	}
}
/*
MV下リードエリア
*/
.lead_wrap {
  position: relative;
  z-index: 0;
  padding: 42px 0 29px;
}
.secbg_img {
  position: absolute;
  z-index: -1;
}
.secbg_left {
  top: 145px;
  left: 8px;
  width: 120px;
}
.secbg_right {
  top: 140px;
  right: 2px;
  width: 128px;
}
.secbg_bottom {
  top: 266px;
  right: 0;
  width: 145px;
}
.lead_ttl {
  width: 311px;
  margin: 0 0 0 45px;
}
.lead_problems_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 10px;
  margin: 30px 0 0;
}
.lead_problems_img {
  width: 48.2%;
}
.lead_solution_img {
  margin: 47px auto 0;
  max-width: 450px;
}
.lead_txt_01 {
  color: #ffee00;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
	letter-spacing: .08em;
  padding: 10px 0;
  border-top: 2px solid #ffee00;
  border-bottom: 2px solid #ffee00;
  margin: 19px 0 0;
}
.lead_txt_02 {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  margin: 15px 0 0;
}
.lead_txt_02_br {
  display: none;
}
@media only screen and (min-width: 425px) {
  .lead_ttl {
    margin: auto;
  }
}
@media only screen and (min-width: 576px) {
  .lead_problems_img {
    width: 32%;
  }
}
@media only screen and (min-width: 768px) {
  .secbg_left {
    top: 35px;
    left: 20px;
    width: 24.2%;
  }
  .secbg_right {
    top: 0;
    right: 52px;
    width: 25.9%;
  }
  .secbg_bottom {
    top: 42.2%;
    right: 45px;
    width: 29.42%;
  }
  .lead_ttl {
    width: 600px;
  }
  .lead_problems_wrap {
    justify-content: center;
  }
  .lead_problems_img {
    width: calc((100% - 52px) / 5);
  }
  .lead_solution_img {
    margin: 27px 0 0;
    max-width: unset;
  }
  .lead_txt_01 {
    font-size: clamp(27px, 3.12vw, 40px);
    padding: 2px 0;
    margin: 28px auto 0;
    width: 80%;
  }
  .lead_txt_01 br {
    display: none;
  }
  .lead_txt_02 {
    font-size: clamp(18px, 1.95vw, 25px);
    margin: 25px 0 0;
    text-align: center;
  }
  .lead_txt_02_br {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .lead_wrap {
    padding: 80px 0 29px;
  }
  .lead_ttl {
    width: unset;
    text-align: center;
  }
  .lead_problems_wrap {
    gap: 0 13px;
    margin: 48px 0 0;
  }
  .lead_txt_01 {
    font-size: 40px;
    max-width: 1049px;
  }
  .lead_txt_02 {
    font-size: 25px;
  }
}
/*
解決セクション
*/
.solution_wrap {
  position: relative;
  padding: 92px 0 60px;
}
.solution_wrap::after {
  content: "";
  display: block;
  width: 100%;
  background: url(../images/secbg_arw.png) no-repeat center top / contain;
  aspect-ratio: 1920 / 100;
  position: absolute;
  top: 0;
  left: 0;
}
.solution_list {
  width: 100%;
}
.solution_item {
  position: relative;
  background: #fff;
  border: 2px solid #277ae5;
  border-radius: 14px;
  padding: 44px 13px 31px;
}
.solution_item:nth-of-type(2) {
  padding: 65px 13px 31px;
}
.solution_item + .solution_item {
  margin: 37px 0 0;
}
.solution_num {
  color: #277ae5;
  background: #ffee00;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 13px;
  left: 17px;
}
.solution_icon {
  position: absolute;
  top: -32px;
  right: -24px;
  width: 105px;
}
.solution_item_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px 0;
}
.solution_item_img {
	max-width: 350px;
}
.solution_item_ttl {
  font-size: 30px;
  font-weight: bold;
  color: #05469a;
  letter-spacing: 0.1em;
  text-align: center;
}
.solution_item_txt_01 {
  font-size: 15px;
  margin: 12px 0 0;
}
.solution_item_arw {
  margin: 9px auto 12px;
  width: 30px;
  display: flex;
}
.solution_item_txt_02 {
  font-size: 18px;
  font-weight: bold;
}
.solution_item_txt_01 span,
.solution_item_txt_02 span {
  color: #277ae5;
}
.case_btn {
  margin: 23px 0 0;
}
.solution_item:last-child .solution_item_img {
	width: 92%;
}
@media only screen and (min-width: 768px) {
  .solution_item {
    padding: 44px 30px 31px;
  }
  .solution_item:nth-of-type(2) {
    padding: 44px 30px 31px;
  }
  .solution_item_ttl {
    font-size: clamp(30px, 3.9vw, 50px);
  }
  .solution_item_ttl br {
    display: none;
  }
  .solution_item_txt_01 {
    font-size: clamp(15px, 1.72vw, 22px);
  }
  .solution_item_txt_01 {
    font-size: clamp(18px, 1.95vw, 25px);
  }
}
@media only screen and (min-width: 1024px) {
  .solution_item {
    display: flex;
    justify-content: center;
  }
  .solution_item_contents {
    flex-direction: row;
  }
  .solution_item_detail {
    max-width: 570px;
  }
  .solution_item_ttl {
    text-align: left;
  }
  .solution_item_arw {
    margin: 23px 0 25px;
    width: 40px;
  }
  .solution_item:first-child .solution_item_contents {
    gap: 0 42px;
  }
  .solution_item:nth-of-type(2) .solution_item_contents {
    gap: 0 54px;
  }
  .solution_item:nth-of-type(3) .solution_item_contents {
    gap: 0 56px;
    align-items: flex-start;
  }
  .solution_item:nth-of-type(3) .solution_item_img {
    margin: 14px 0 0;
  }
  .solution_item:nth-of-type(4) .solution_item_contents {
    gap: 0 24px;
  }
  .solution_item:nth-of-type(5) .solution_item_contents {
    gap: 0 40px;
  }
}
@media only screen and (min-width: 1280px) {
  .solution_wrap {
    padding: 200px 0 120px;
  }
  .solution_wrap::after {
    height: 100px;
  }
  .solution_list {
    padding: 0 20px;
  }
  .solution_item {
    border: 3px solid #277ae5;
    border-radius: 30px;
  }
  .solution_item + .solution_item {
    margin: 50px 0 0;
  }
  .solution_num {
    font-size: 60px;
    width: 80px;
    height: 80px;
    top: 27px;
    left: 27px;
  }
	.solution_item_img {
		max-width: unset;
	}
	.solution_item:last-child .solution_item_img {
		width: unset;
	}
  .solution_icon {
    top: -40px;
    right: -40px;
    width: 150px;
  }
  .solution_item_detail {
    max-width: 670px;
  }
  .solution_item_ttl {
    font-size: 50px;
  }
  .solution_item_txt_01 {
    font-size: 22px;
    margin: 18px 0 0;
  }
  .solution_item_txt_02 {
    font-size: 25px;
  }
  .case_btn {
    margin: 39px 0 0;
  }
  .solution_item:nth-of-type(5) .solution_item_contents {
    gap: 0 69px;
  }
}
@media only screen and (min-width: 1500px) {
  .solution_list {
    padding: 0;
  }
  .solution_item {
    padding: 47px 0;
  }
  .solution_item:nth-of-type(2) {
    padding: 47px 0;
  }
}
/* モーダル */
.modal-overlay {
  display: none;
  position: fixed;
	z-index: 1000;
  top: 0;
	left: 0;
  width: 100%;
	height: 100%;
  background: rgba(46, 161, 241, 0.8);
  justify-content: center;
	align-items: flex-start;
	overflow-y: auto;
	padding: 100px 0;
}
.modal {
  max-width: 500px;
  width: 90%;
	position: relative;
}
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}
.close-btn img {
  width: 50px;
}
.modal_voice_wrap {
  background: #fff;
  border: 7px solid #e5f4f8;
  border-radius: 10px;
  position: relative;
  width: 100%;
}
.modal_voice_wrap .voice_sld_footer::after {
	display: none;
}
@media only screen and (min-width: 768px) {
	.modal {
		max-width: 700px;
		width: 100%;
	}
	.close-btn img {
		width: 50px;
	}
}
@media only screen and (min-width: 1280px) {
	.modal {
		max-width: 820px;
	}
	.close-btn img {
		width: 60px;
	}
	.modal_voice_wrap {
    border: 10px solid #e5f4f8;
  }
}
/*
FEATURES
*/
.features_desc {
	margin: 14px 0 0;
	color: #FFF;
	text-align: center;
	font-size: 14px;
}
.features_list {
	margin: 40px 0 0;
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	color: #FFF;
}
.features_list_img {
	width: 73.5%;
	margin: auto;
	text-align: center;
}
.features_list_ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 7px;
	margin: 19px 0 0;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: .08em;
}
.features_list_ttl img {
	width: 28px;
	height: 28px;
}
.features_list_desc {
	margin: 13px 0 0;
	font-size: 13px;
	line-height: 2;
}
@media only screen and (min-width: 768px) {
	.features_desc {
		margin: 24px 0 0;
		font-size: clamp(14px, 1.56vw, 20px);
	}
	.features_desc br {
		display: none;
	}
	.features_list {
		margin: 49px 0 0;
		flex-direction: row;
		gap: 0 20px;
	}
	.features_box {
		width: calc((100% - 40px) /3);
	}
	.features_list_img {
		width: 100%;
		margin: 0;
	}
	.features_list_ttl {
		font-size: clamp(20px, 2.34vw, 30px);
		justify-content: flex-start;
	}
	.features_list_desc {
		font-size: clamp(13px, 1.4vw, 18px);
	}
}
@media only screen and (min-width: 1280px) {
	.features_desc {
		margin: 34px 0 0;
		font-size: 20px;
	}
	.features_list_ttl {
		gap: 0 10px;
		margin: 27px 0 0;
		font-size: 30px;
	}
	.features_list_ttl img {
		width: 40px;
		height: 40px;
	}
	.features_list_desc {
		margin: 15px 0 0;
		font-size: 18px;
	}
}
/* 動画 */
.movie_ttl_wrap {
  position: relative;
  margin: 40px 0 0;
}
.movie_ttl_wrap::after {
  position: absolute;
  content: '';
  background: url(../images/features_icon_01.svg) right top / 100% no-repeat;
  top: -14px;
  right: 0;
  width: 76px;
  height: 91px;
  z-index: 1;
}
.movie_ttl {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: center;
  z-index: 2;
}
.movie_wrap {
  position: relative;
}
.movie_wrap::after {
  position: absolute;
  content: '';
  background: url(../images/features_icon_02.svg) right bottom / 100%  no-repeat;
  bottom: -57px;
  right: -14px;
  width: 90px;
  height: 107px;
  z-index: 1;
}
.movie_thumb {
  position: relative;
  aspect-ratio: 305 / 172;
  margin: 32px auto 0;
  z-index: 2;
}
.movie_thumb video {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}
.modal_thumb {
  position: relative;
  display: block;
}
.modal_thumb::before {
  position: absolute;
  content: '';
  display: block;
  background: url(../images/features_movie_ico.svg) center / 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.modal-video {
  background-color: rgba(0, 0, 0, 0.7);
}
@media only screen and (min-width: 768px) {
  .movie_ttl_wrap::after {
    top: 0;
    width: 122px;
    height: 141px;
  }
  .movie_ttl {
    font-size: clamp(24px, 3.1vw, 45px);
  }
  .movie_wrap::after {
    bottom: -59px;
    width: 129px;
    height: 152px;
  }
  .movie_thumb {
    width: 83%;
    aspect-ratio: 830 / 467;
  }
  .movie_thumb video {
    border-radius: 25px;
  }
}
@media only screen and (min-width: 1280px) {
  .movie_ttl_wrap {
    margin: 65px 0 0;
  }
  .movie_ttl {
    font-size: 45px;
  }
  .movie_thumb {
    margin: 42px auto 0;
  }
}
/* 主な機能 */
.function_ttl_wrap {
  position: relative;
  margin: 60px 0 0;
  text-align: center;
}
.function_ttl {
  position: relative;
  display: inline-block;
  background: #2ea1f1;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 28px;
  z-index: 2;
}
.function_ttl_wrap::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 100%;
  height: 2px;
  z-index: 1;
}
.function_list {
  padding: 19px 0 0;
}
.function_box {
	cursor: pointer;
	position: relative;
	background: #FFF;
	border-radius: 5px;
}
.function_box + .function_box {
	margin: 10px 0 0;
}
.function_label {
	font-size: 13px;
	color: #05469A;
	padding: 7px 33px 10px 14px;
}
.function_label span {
	font-size: 12px;
	color: #2EA1F1;
}
.open_icon_wrap {
	position: absolute;
	right: 14px;
	top: 21px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #05469A;
	display: flex;
	align-items: center;
	justify-content: center;
}
.function_box:nth-child(2) .open_icon_wrap,
.function_box:nth-child(4) .open_icon_wrap {
	top: 30px;
}
.open_icon {
	position: relative;
	display: inline-block;
	width: 7px;
	height: 7px;
}
.open_icon:before,
.open_icon:after {
	position: absolute;
	content: "";
	display: block;
	transition: all 0.4s;
	background: #FFF;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 1px;
	transform: translate(-50%, -50%);
	border-radius: 999px;
}
.open_icon:before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.open_icon.open:before {
	transform: translate(-50%, -50%) rotate(0deg);
}
.function_desc {
	display: none;
	border-top: 2px solid #E5F4F8;
	padding: 14px 20px 16px 17px;
}
.function_txt {
	font-size: 13px;
	padding: 0 0 0 10px;
	position: relative;
}
.function_txt::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background: #2EA1F1;
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 0;
}
@media only screen and (min-width: 768px) {
  .function_ttl {
    font-size: clamp(28px, 3.6vw, 40px);
  }
	.function_label {
    font-size: clamp(13px, 1.4vw, 18px);
		padding: 11px 20px;
	}
	.function_label br {
		display: none;
	}
	.function_label span {
    font-size: clamp(12px, 1.4vw, 16px);
		margin: 0 0 0 20px;
	}
	.open_icon_wrap {
		right: 16px;
		top: 11px;
		width: 20px;
		height: 20px;
	}
	.function_box:nth-child(2) .open_icon_wrap,
	.function_box:nth-child(4) .open_icon_wrap {
		top: 11px;
	}
	.open_icon {
		width: 11px;
		height: 11px;
	}
	.function_desc {
		padding: 20px 30px 20px 15px;
	}
	.function_txt {
    font-size: clamp(13px, 1.4vw, 16px);
		padding: 0 0 0 14px;
	}
	.function_txt::before {
		width: 9px;
		height: 9px;
		top: 5px;
	}
}
@media only screen and (min-width: 1024px) {
	.function_txt::before {
		top: 7px;
	}
}
@media only screen and (min-width: 1280px) {
  .function_ttl_wrap {
    margin: 90px 0 0;
  }
  .function_ttl {
    font-size: 40px;
    padding: 0 40.5px;
  }
  .function_list {
    padding: 47px 0 0;
  }
	.function_label {
		font-size: 18px;
	}
	.function_label span {
		font-size: 16px;
	}
	.open_icon_wrap {
		top: 15px;
	}
	.function_box:nth-child(2) .open_icon_wrap,
	.function_box:nth-child(4) .open_icon_wrap {
		top: 15px;
	}
	.function_desc {
		padding: 20px 51px 20px 25px;
	}
	.function_txt {
		font-size: 16px;
	}
	.function_txt::before {
		top: 9px;
	}
}
/* 費用 */
.fee_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 11px 0;
}
.commission_box {
	border: 1px solid #FFF;
	border-radius: 12px;
	padding: 33px 22px 21px;
	margin: 30px 0 0;
	position: relative;
	color: #FFF;
}
.commission_box_02 {
	padding: 20px 22px;
}
.commission_box_ttl {
	font-size: 18px;
	background: #277AE5;
	padding: 0 12px;
	display: inline-block;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
}
.commission_txt_01 {
	font-size: 13px;
	text-align: center;
}
.commission_txt_01 span {
	font-size: 18px;
	color: #FFEE00;
}
.commission_txt_list,
.commission_txt_item + .commission_txt_item {
	margin: 9px 0 0;
}
.commission_txt_item {
	font-size: 12px;
	padding-left: 1.5em;
	text-indent: -1.7em;
}
.commission_txt_item span {
	margin: 0 9px 0 0;
}
@media only screen and (min-width: 768px) {
	.fee_wrap {
		flex-direction: row;
		gap: 0 20px;
	}
	.commission_box {
		padding: 29px 20px 57px;
		margin: 48px 0 0;
	}
	.commission_box_02 {
		padding: 28px 20px;
	}
	.commission_box_ttl {
		font-size: clamp(18px, 1.95vw, 25px);
		top: -20px;
	}
	.commission_txt_area {
		max-width: 850px;
		margin: auto;
	}
	.commission_txt_01 {
		font-size: clamp(13px, 1.4vw, 18px);
		text-align: left;
	}
	.commission_txt_01 span {
		font-size: clamp(18px, 1.95vw, 25px);
	}
	.commission_txt_01 br {
		display: none;
	}
	.commission_txt_list,
	.commission_txt_item + .commission_txt_item {
		margin: 10px 0 0;
	}
	.commission_txt_item {
		font-size: clamp(12px, 1.25vw, 16px);
		padding-left: 1.3em;
		text-indent: -1.3em;
	}
	.commission_txt_item span {
		margin: 0 5px 0 0;
	}
}
@media only screen and (min-width: 1280px) {
	.commission_box {
		padding: 29px 0 57px;
	}
	.commission_box_02 {
		padding: 28px 0;
	}
	.commission_box_ttl {
		font-size: 25px;
	}
	.commission_txt_01 {
		font-size: 18px;
	}
	.commission_txt_01 span {
		font-size: 25px;
	}
	.commission_txt_item {
		font-size: 16px;
	}
}
/*
REASON
*/
.reason_wrap {
	padding: 60px 0 170px;
	position: relative;
}
.reason_img_wrap {
	margin: 60px 0 0 35px;
}
.js-scrollable {
  width: 100%;
	text-align: center;
  -webkit-overflow-scrolling: touch;
}
.js-scrollable img {
  max-width: unset;
  width: 640px;
  height: auto;
}
.scroll-hint-icon-white {
	background: rgba(85, 85, 85, 0.9);
}
.scroll-hint-text {
  color: #FFF !important;
}
.reason_img_wrap picture {
  display: block;
  width: 100%;
  text-align: center;
}
.reason_txt {
	margin: 47px 0 0;
	text-align: center;
	font-size: 21px;
	font-weight: bold;
	letter-spacing: .08em;
	color: #05469A;
}
.reason_txt span {
	position: relative;
	z-index: 1;
}
.reason_txt span::after {
	content: "";
	width: 100%;
	height: 7.5px;
	background: #FFEE00;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.reason_img_02,
.reason_img_03 {
	position: absolute;
	bottom: 2px;
}
.reason_img_02 {
	left: 35px;
	width: 145px;
}
.reason_img_03 {
	right: 35px;
	width: 138px;
}
.bg_cut_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
  z-index: 2;
  pointer-events: none;
}
@media only screen and (min-width: 680px) {
	.reason_img_wrap {
		margin: 60px 0 0;
	}
}
@media only screen and (min-width: 768px) {
	.reason_img_wrap {
		margin: 50px 0 0;
	}
	.reason_txt {
		font-size: clamp(21px, 2.34vw, 30px);
	}
	.reason_img_02 {
		left: 10%;
		width: 20%;
		max-width: 280px;
	}
	.reason_img_03 {
		right: 10%;
		width: 20%;
		max-width: 267px;
	}
	.bg_cut_bottom {
		height: 35px;
	}
}
@media only screen and (min-width: 1024px) {
	.js-scrollable img {
		width: 800px;
	}
	.reason_img_02,
	.reason_img_03 {
		bottom: 10px;
	}
	.bg_cut_bottom {
		height: 50px;
	}
}
@media only screen and (min-width: 1280px) {
	.reason_wrap {
		padding: 120px 0 100px;
	}
	.reason_img_wrap {
		margin: 70px 0 0;
	}
	.js-scrollable img {
		width: unset;
	}
  .reason_txt {
		margin: 79px 0 0;
		font-size: 30px;
	}
	.reason_txt span::after {
		height: 10px;
		bottom: 5px;
	}
	.reason_img_02,
	.reason_img_03 {
		bottom: 27px;
	}
	.bg_cut_bottom {
		height: 70px;
	}
}
@media only screen and (min-width: 1440px) {
	.reason_img_02 {
		left: 15%;
	}
	.reason_img_03 {
		right: 15%;
	}
	.bg_cut_bottom {
		height: 100px;
	}
}
@media only screen and (min-width: 1700px) {
	.reason_img_02 {
		left: 20%;
	}
	.reason_img_03 {
		right: 20%;
	}
}
@media only screen and (min-width: 1880px) {
	.reason_img_02 {
		left: 22%;
	}
	.reason_img_03 {
		right: 22%;
	}
}
/*
VOICE
*/
.voice_wrap {
  padding: 60px 0 32px;
	background: linear-gradient(
		to bottom,
		#fff 0%,
		#fff 40%,
		#e5f4f8 40%,
		#e5f4f8 100%
	);
	overflow-x: hidden;
}
.swiper-container {
  width: 100%;
  overflow: visible;
  box-sizing: border-box;
  margin: 72px 0 0;
  padding: 0 35px;
  position: relative;
}
.swiper-slide {
  background: #fff;
  border: 7px solid #e5f4f8;
  border-radius: 10px;
  position: relative;
  width: 100%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.custom-prev,
.custom-next {
  width: 16px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 168px;
  z-index: 10;
  cursor: pointer;
}
.custom-prev {
  background-image: url("../images/slide_prev.svg");
}
.custom-next {
  background-image: url("../images/slide_next.svg");
}
.voice_sld_tab {
  color: #fff;
  font-size: 13px;
  background: #05469a;
  border-radius: 30px;
  padding: 9px 14px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}
.voice_sld_body {
  width: 100%;
  padding: 0 23px;
}
.voice_sld_inner {
  padding: 35px 0 18px;
}
.voice_sld_ttl_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px 0;
}
.voice_sld_img {
  width: 130px;
}
.voice_sld_ttl {
  font-size: 18px;
  font-weight: bold;
  color: #05469a;
  text-align: center;
  letter-spacing: 0.08em;
}
.voice_sld_txt {
  font-size: 13px;
  margin: 13px 0 0;
}
.voice_sld_txt p + p {
  margin: 20px 0 0;
}
.voice_sld_footer {
  margin: 20px 0 0;
}
.voice_sld_name {
  font-size: 13px;
  font-weight: bold;
  color: #05469a;
  text-align: right;
}
.voice_sld_group {
  font-size: 12px;
  text-align: right;
  margin: 4px 0 0;
}
.voice_img_body {
	padding: 0 35px;
}
.voice_img {
  margin: 40px auto 0;
  max-width: 420px;
}
.voice_sld_txt_area {
  max-height: 80px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}
.voice_sld_txt_area::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.voice_sld_txt_area.expanded {
  max-height: none;
}
.voice_sld_txt_area.expanded::after {
  opacity: 0;
  pointer-events: none;
}
.read_more_btn {
	display: table;
	margin: auto;
	text-align: center;
  padding: 2px 16px 5px;
  background: #277AE5;
  border-radius: 15px;
  font-size: 13px;
	font-weight: bold;
  color: #fff;
  cursor: pointer;
	transition: margin 0.3s ease;
}
.read_more_btn.closed {
	margin: 20px auto 0;
}
.read_more_btn img.read_more_icon {
	vertical-align: middle;
	margin-right: 6px;
	transition: opacity 0.3s ease;
}
@media only screen and (min-width: 768px) {
	.voice_wrap {
		background: linear-gradient(
			to bottom,
			#fff 0%,
			#fff 50.82%,
			#e5f4f8 50.82%,
			#e5f4f8 100%
		);
	}
  .swiper-container {
    padding: 0;
  }
  .voice_sld_tab {
    font-size: 13px;
  }
	.voice_sld_body {
		padding: 0 33px;
	}
  .voice_sld_ttl {
    font-size: clamp(18px, 1.95vw, 25px);
  }
  .voice_sld_txt {
    font-size: clamp(14px, 1.4vw, 18px);
  }
  .voice_sld_name {
    font-size: clamp(13px, 1.4vw, 18px);
  }
  .voice_sld_group {
    font-size: clamp(12px, 1.25vw, 16px);
  }
  .voice_img {
    max-width: unset;
  }
	.voice_sld_txt_area {
		max-height: unset;
		height: 100%;
		overflow: unset;
		position: unset;
	}
	.voice_sld_txt_area::after {
		display: none;
	}
	.read_more_btn {
		display: none;
	}
}
@media only screen and (min-width: 1280px) {
  .voice_wrap {
    padding: 120px 0 24px;
  }
  .swiper-container {
    margin: 114px 0 0;
  }
  .swiper-slide {
    border: 10px solid #e5f4f8;
  }
  .custom-prev,
  .custom-next {
    width: 23px;
    height: 40px;
    top: 290px;
  }
  .voice_sld_body {
    width: 510px;
    padding: 0;
    margin: auto;
  }
  .voice_sld_inner {
    padding: 37px 0 50px;
  }
  .voice_sld_tab {
    font-size: 18px;
    padding: 14px 23px 13px;
    top: -33px;
  }
  .voice_sld_ttl_area {
    flex-direction: row;
    gap: 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #e5f4f8;
  }
  .voice_sld_ttl {
    font-size: 25px;
    text-align: left;
  }
  .voice_sld_txt {
    font-size: 18px;
    margin: 30px 0 0;
  }
  .voice_sld_txt p + p {
    margin: 30px 0 0;
  }
  .voice_sld_footer {
    margin: 30px 0 0;
  }
  .voice_sld_name {
    font-size: 18px;
  }
  .voice_sld_group {
    font-size: 16px;
  }
  .voice_img {
    margin: 88px auto 0;
  }
}
@media only screen and (min-width: 1600px) {
	.voice_img_body {
		padding: 0;
	}
  .voice_img {
    margin: 88px 0 0;
		text-align: center;
  }
}
/*
お問い合わせ・資料請求
*/
#contact {
  position: relative;
}
.contact_balloon {
  position: absolute;
  top: -1.7%;
  left: 50%;
  transform: translateX(-50%);
}
input,
textarea,
select {
  scroll-margin-top: 120px;
}
.form_wrap {
	padding: 40px 0 0;
}
.form_intro_txt {
  margin: 30px 0 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.form_item_wrap + .form_item_wrap {
	margin: 20px 0 0;
}
.form_label {
	width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
	align-items: center;
	line-height: 1;
}
.form_required {
  display: inline-block;
  background: #ff4376;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 1.5px 4.5px 2.5px;
  border-radius: 2px;
  margin: 0 0 0 9px;
  vertical-align: middle;
}
.form_any {
  display: inline-block;
  background: #30A224;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 1.5px 4.5px 2.5px;
  border-radius: 2px;
  margin: 0 0 0 9px;
  vertical-align: middle;
}
.form_item_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
}
.form_input {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 9px 12px;
  background: #fff;
	border: none;
  border-radius: 5px;
  color: #333;
  font-size: 12px;
  outline: none;
}
.form_input::placeholder {
  color: #DEE2E6;
}
.input_note {
	margin: 10px 0 0;
	font-size: 12px;
	color: #fff;
}
.other_wrap {
	display: flex;
	width: 100%;
  border-radius: 5px;
	background: #A1DEFF;
}
.other_input_wrap {
	flex: 1;
	padding: 5.5px 0;
  border-radius: 0 5px 5px 0;
	background: #A1DEFF;
}
.other_input {
	height: 24px;
	margin: 0;
	padding: 3px 12px;
	border-left: solid #222 2px;
  border-radius: 0;
	background: #A1DEFF;
}
.other_input::placeholder {
  color: #fff;
}
.multiple_txt {
	margin: 0 0 0 8px;
	color: #fff;
	font-size: 12px;
}
.privacy_txt {
  width: 100%;
  margin: 10px 0 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.9;
}
.privacy_txt a {
  color: #A1DEFF;
  text-decoration: underline;
}
.consent_wrap {
  width: 100%;
  margin: 20px 0 0;
}
.consent_wrap .checkbox_label {
  width: 100%;
  padding: 10px;
}
.consent_wrap .checkbox_label .form_required {
  width: 33px;
  height: 16px;
  padding: 2px 4.5px 0;
  line-height: 1;
}
.submit_area {
  margin: 40px 0 0;
  padding: 20px 0 0;
  border-top: solid #fff 1px;
}
.submit_txt {
  color: #fff;
  font-size: 14px;
  line-height: 2;
}
.submit_btn {
  margin: 30px 0 0;
}
@media only screen and (min-width: 768px) {
  .contact_balloon {
    top: -2%;
  }
  .form_intro_txt_br {
    display: none;
  }
	.form_label {
		font-size: clamp(14px, 1.56vw, 20px);
	}
	.form_input {
		font-size: clamp(12px, 1.4vw, 18px);
	}
}
@media only screen and (min-width: 1280px) {
  input,
  textarea,
  select {
    scroll-margin-top: 160px;
  }
  .form_wrap {
    padding: 60px 0 0;
  }
  .form_intro_txt {
    margin: 43px 0 0;
    font-size: 18px;
  }
	.form_item_wrap + .form_item_wrap {
		margin: 30px 0 0;
	}
	.form_label {
		font-size: 20px;
	}
  .form_label br {
    display: none;
  }
	.form_required {
		font-size: 14px;
		padding: 2px 9.5px 4px;
		margin: 0 0 0 10px;
	}
	.form_any {
		font-size: 14px;
		padding: 2px 9.5px 4px;
		margin: 0 0 0 10px;
	}
	.form_input {
		margin: 12px 0 0;
		padding: 12px 17px;
		font-size: 18px;
	}
	.input_note {
		font-size: 16px;
	}
	.other_input_wrap {
		padding: 12px 0;
	}
	.other_input {
		height: 26px;
		margin: 0;
		padding: 0 10px;
	}
	.multiple_txt {
		margin: 0 0 0 10px;
		font-size: 16px;
	}
  .consent_wrap {
    margin: 34px 0 0;
  }
  .consent_wrap .checkbox_label .form_required {
    width: 47px;
    height: 20px;
    padding: 2px 9.5px 0;
  }
  .consent_wrap .checkbox_label {
    padding: 14.5px 20px;
  }
  .privacy_txt {
    font-size: 18px;
  }
  .submit_area {
    margin: 80px 0 0;
    padding: 40px 0 0;
  }
  .submit_txt {
    font-size: 18px;
  }
  .submit_btn {
    margin: 60px 0 0;
  }
}
/* ラジオボタン */
.radio_label {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 7px 10px;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  transition: background .2s;
}
.other_wrap .radio_label {
  border-radius: 5px 0 0 5px;
  background: #A1DEFF;
}
input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
}
.radio_custom {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #E5F4F8;
  border-radius: 50%;
  vertical-align: middle;
  transition: background .2s;
}
.radio_custom::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: 4px;
  background: #eef7fb;
  border-radius: 50%;
  transition: background .2s;
}
.radio_txt {
  margin: 0 0 0 4px;
  padding: 0;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: middle;
}
/* チェック時にラベル全体の背景色を水色に */
.radio_input:checked ~ .radio_custom,
.radio_input:checked ~ .radio_text {
  /* 直接背景色は変えません（.radio_labelが変わる）*/
}
.radio_input:checked + .radio_custom + .radio_text {
  /* 保険：念のため色を維持 */
}
.radio_input:checked ~ .radio_custom::before {
  background: #277AE5;
}
/* ラベル背景を水色にする本命セレクタ */
.radio_input:checked ~ .radio_custom,
.radio_input:checked ~ .radio_text,
.radio_input:checked ~ .radio_label {
  /* これだと.radio_labelは変わらないため、ラベル全体に適用するには:has()を利用 */
}
/* :has()を使ってラベルの背景を変更（最新ブラウザ対応） */
.radio_label:has(.radio_input:checked) {
  background: #A1DEFF;
}
@media only screen and (min-width: 1280px) {
	.radio_label {
		padding: 10px 20px;
	}
	.radio_custom {
		width: 20px;
		height: 20px;
	}
	.radio_custom::before {
		width: 10px;
		height: 10px;
		margin: 5px;
	}
	.radio_txt {
		margin: 0 0 0 6px;
		font-size: 20px;
	}
}
/* チェックボックス */
.checkbox_label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  color: #05469A;
  cursor: pointer;
  transition: background .2s;
}
.other_wrap .checkbox_label {
  border-radius: 5px 0 0 5px;
  background: #A1DEFF;
}
.checkbox_custom {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #E5F4F8;
  vertical-align: middle;
  transition: background .2s;
  box-sizing: border-box;
}
.checkbox_custom::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background .2s;
}
.checkbox_input:checked + .checkbox_custom {
  background: #fff;
}
.checkbox_input:checked + .checkbox_custom::before {
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10L8 13L13 6' stroke='%23277AE5' stroke-width='2' stroke-linecap='butt' stroke-linejoin='miter'/%3E%3C/svg%3E") center/contain no-repeat;
}
.checkbox_txt {
  margin: 0 0 0 8px;
  padding: 0;
  color: #05469A;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: middle;
  transition: color .2s;
  line-height: 1;
}
.consent_wrap .checkbox_txt {
  padding: 0 0 3px;
}
.other_wrap .checkbox_txt {
	color: #222;
}
/* チェック時にラベル全体の背景色を水色に */
.checkbox_label:has(.checkbox_input:checked) {
  background: #A1DEFF;
  color: #222;
}
.checkbox_label:has(.checkbox_input:checked) .checkbox_txt {
  color: #222;
}
@media only screen and (min-width: 1280px) {
	.checkbox_label {
		padding: 15px 20px;
	}
	.checkbox_custom {
		width: 20px;
		height: 20px;
	}
	.checkbox_input:checked + .checkbox_custom::before {
		background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 11L9 15L15 7' stroke='%23277AE5' stroke-width='2' stroke-linecap='butt' stroke-linejoin='miter'/%3E%3C/svg%3E") center/contain no-repeat;
	}
	.checkbox_txt {
		margin: 0 0 0 6px;
		font-size: 18px;
	}
}
/*
フッター
*/
.footer_wrap {
	background: #05469A;
	padding: 40px 0 96px;
}
.footer_body {
	padding: 0 35px;
}
.foot_contact_btn {
	text-align: center;
	max-width: 370px;
  margin: auto;
}
.foot_contents {
	margin: 40px 0 0;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	gap: 24px 0;
	color: #FFF;
}
.foot_logo {
	text-align: center;
}
.foot_logo img {
	width: 211px;
}
.copy {
	font-size: 11px;
	text-align: center;
	margin: 6px 0 0;
}
.foot_txt_company {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
.foot_txt_address {
	font-size: 13px;
	margin: 17px 0 0;
}
.foot_txt_address dt,
.foot_txt_address dd {
	text-align: center;
}
.address_tokyo {
	margin: 1em 0 0;
}
@media only screen and (min-width: 768px) {
	.foot_contact_btn {
		max-width: unset;
		width: 50%;
	}
	.copy {
		font-size: clamp(11px, 1.25vw, 16px);
	}
	.foot_contents {
		margin: 60px 0 0;
		flex-direction: row;
		gap: 0 50px;
	}
	.foot_txt {
		position: relative;
		padding: 0 0 0 50px;
	}
	.foot_txt::before {
		content: "";
		width: 2px;
		height: 100%;
		background: #FFF;
		border-radius: 99.9rem;
		position: absolute;
		top: 0;
		left: 0;
	}
	.foot_txt_company {
		font-size: clamp(18px, 1.95vw, 25px);
		text-align: left;
	}
	.foot_txt_address {
		font-size: clamp(13px, 1.4vw, 18px);
		margin: 17px 0 0;
	}
	.foot_txt_address dt,
	.foot_txt_address dd {
		text-align: left;
	}
	.foot_txt_address dd br {
		display: none;
	}
}
@media only screen and (min-width: 1024px) {
	.foot_contact img {
		transition: all .3s ease-out;
	}
	.foot_contact:hover img {
		opacity: .93;
	}
}
@media only screen and (min-width: 1280px) {
	.footer_wrap {
		padding: 100px 0 150px;
	}
	.foot_logo {
		text-align: left;
	}
	.foot_logo img {
		width: unset;
	}
	.copy {
		font-size: 16px;
		text-align: left;
		margin: 8px 0 0;
	}
	.foot_contents {
		margin: 100px 0 0;
		gap: 0 80px;
	}
	.foot_txt {
		padding: 0 0 0 80px;
	}
	.foot_txt_company {
		font-size: 25px;
	}
	.foot_txt_address {
		margin: 9px 0 0;
		font-size: 18px;
	}
	.foot_txt_address br {
		display: none;
	}
	.address_tokyo {
		margin: 0;
	}
	.foot_txt_address span {
		margin: 0 1em 0 0;
	}
}
@media only screen and (min-width: 1400px) {
	.foot_contact_btn {
		width: unset;
	}
}
/*
送信完了画面
*/
.top_btn {
	margin: 30px 0 0;
}
.contact_thanks_txt {
	margin: 30px 0 0;
	text-align: center;
	color: #FFF;
	font-size: 20px;
	letter-spacing: .08em;
}
#contact_thanks .form_intro_txt {
	margin: 20px 0 0;
}
@media only screen and (min-width: 768px) {
	.top_btn {
		margin: 60px 0 0;
	}
	.contact_thanks_txt {
		margin: 43px 0 0;
		font-size: clamp(20px, 2.34vw, 30px);
	}
	#contact_thanks .form_intro_txt {
		margin: 30px 0 0;
	}
}
@media only screen and (min-width: 1280px) {
	.contact_thanks_txt {
		font-size: 30px;
	}
}