@charset "UTF-8";

body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
}
body.is-modal-open {
	overflow: hidden;
}

/* =======================================
  common
======================================= */
.text--yellow {
  color: #FFFF00;
}

.text--italic {
  font-style: italic;
}

.c-title {
  text-align: center;
}

.header,
.main,
.footer {
  max-width: 750px;
  width: 100%;
  margin: auto;
}

.c-title--main {
  text-align: center;
}

.pc-left,
.pc-right {
  display: none;
}

/* =======================================
  Header
======================================= */
.pc-title {
  display: none;
}

.header {
  padding: 5px 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
  position: fixed;
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  max-width: 126px;
}

.header__info {
  text-align: right;
  line-height: 1;
}

.header__info-tel a {
  font-size: 20px;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 3px 0 1px;
}

.header__info-time {
  font-size: 10px;
}

.header__info-tel img {
  width: 20px;
  height: 20px;
  background: #FF0855;
  padding: 4px;
  border-radius: 50%;
  margin-right: 3px;
}

.header__info-card {
  max-width: 135px;
  display: inline-block;
}

.header__text--blue {
  color: #056DD3;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
}

/* ----------　ハンバーガーメニュー ---------- */

.header__menu {
  background: #152F8B;
  color: #fff;
  width: 50px;
  height: 50px;
  position: relative;
  min-width: 50px;
  cursor: pointer;
  z-index: 102;
}

.header__menu-line {
  height: 2px;
  width: 27px;
  background: #fff;
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s ease;
}

.header__menu-line:first-of-type {
  top: 10px;
}

.header__menu-line:nth-of-type(2) {
  top: 17px;
}

.header__menu-line:last-of-type {
  top: 24px;
}

.header__menu-word {
  font-size: 10px;
  position: absolute;
  display: block;
  content: "";
  bottom: 7px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  transition: 0.3s ease;
}

.header__menu.is-active .header__menu-line:nth-of-type(2) {
  opacity: 0;
}

.header__menu.is-active .header__menu-line:first-of-type {
  transform: translateY(7px) rotate(45deg);
}

.header__menu.is-active .header__menu-line:last-of-type {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 750px;
  height: 100vh;
  margin: auto;
  background-color: rgba(21, 47, 139, 0.95);
  z-index: 1000;
}

.header__nav.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.open-header__menu {
  position: fixed;
  background: #fff;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.open-header__menu-line {
  background: #152F8B;
}

.open-header__menu-word {
  color: #152F8B;
}

.header__nav__title {
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 2.5px;
  font-weight: 400;
}

.header__nav {
  padding: 30px;
}

.header__nav__list {
  margin-top: 18px;
}

.header__nav__link {
  color: #fff;
  font-size: 18px;
  padding: 15px 0;
  display: block;
}

.header__nav__item {
  position: relative;
}

.header__nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #fff;
  transform: scaleY(0.5);
  /* 0.5px相当に縮小 */
  transform-origin: bottom;
}

/* =======================================
  Main
======================================= */
.main {
  margin-top: 83px;
}

/* ---------- banner section ---------- */
.banner {
  padding: 30px 20px;
  background: #152F8B;
}

.banner-list {
  display: grid;
  gap: 12px;
}

/* ---------- fee-plan section ---------- */
.fee-plan__title {
  background: #00A8FF;
  padding: 20px;
  position: relative;
}

.fee-plan__title::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 17px;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/fee-plan__title-decoration.png);
  background-size: contain;
}

.fee-plan__title-text {
  color: #fff;
  font-size: 16px;
}

.fee-plan__list {
  background: #E5F2FF;
  padding: 25px 10px 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fee-plan__item {
  border: 1px solid #152F8B;
  border-radius: 10px;
  width: 100%;
  background: #fff;
}

.fee-plan__item:nth-child(n+2) {
  width: calc((100% - 10px) / 2);
  box-sizing: border-box;
}

.fee-plan__comment {
  color: #fff;
  background: #152F8B;
  font-size: 18px;
  text-align: center;
  padding: 11px;
  border-radius: 8px 8px 0 0;
}

.fee-plan__inner {
  border-radius: 0 0 10px 10px;
  text-align: center;
  padding: 10px 0 20px;
}

.fee-plan__image--first {
  position: relative;
  max-width: 260px;
  margin: auto;
}

.icon--lowest {
  font-size: 14px;
  font-weight: bold;
  left: 0;
  right: 0;
  bottom: 5px;
  position: absolute;
  content: "";
  width: 62px;
  height: 62px;
  background-image: url(../img/point_frame.svg);
  line-height: 1.1;
  padding-top: 16px;
  letter-spacing: -1px;
}

.fee-plan__image--first img {
  height: 96px;
  display: inline;
}

.fee-plan__name--first {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fee-plan__name--small {
  font-size: 11px;
  font-weight: 400;
}

.web-discount--first {
  color: #FF0855;
  font-size: 40px;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.web-discount--square {
  background: #FF0855;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  padding: 5px 5px 7px;
  border-radius: 5px;
  margin-right: 5px;
}

.web-discount--small {
  font-size: 18px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: bold;
  margin-top: 6px;
}

.fee-plan__item:nth-of-type(n+2) .fee-plan__comment {
  padding: 5px;
  line-height: 1.2;
}

.fee-plan__name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}

.fee-plan__item:nth-of-type(n+2) .fee-plan__name--small {
  display: block;
  margin: 5px 0;
}

.fee-plan__item:nth-of-type(n+2) del {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.fee-plan__item:nth-of-type(n+2) .fee-plan__inner {
  padding: 10px 0;
}

.fee-plan__image img {
  height: 75px;
  display: inline;
}

.web-discount--triangle {
  position: relative;
  font-size: 14px;
  z-index: 1;
  color: #fff;
  text-align: center;
  display: block;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  height: 34px;
}

.web-discount--triangle:before {
  position: absolute;
  content: "";
  border-top: 38px solid #FF0855;
  border-right: 70px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 70px solid transparent;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 136px;
}

.web-discount {
  font-size: 28px;
  color: #FF0855;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.fee-plan__item:nth-of-type(n+2) .web-discount--small {
  font-size: 14px;
}

.web-discount__free {
  font-size: 14px;
  line-height: 1.2;
}

.web-discount__free--red {
  font-size: 24px;
  font-weight: bold;
  color: #FF0855;
  display: block;
}

/* ---------- price-guarantee section ---------- */

.price-guarantee {
	background: url(../img/bg_price_guarantee.png) no-repeat center bottom / cover,
		repeating-linear-gradient(-45deg, #E5F2FF, #E5F2FF 2px, transparent 2px,transparent 10px
		);
}

.price-guarantee__title {
	background-color: #152F8B;
	padding: 26px 0 22px;
	margin-bottom: 25px;
	display: grid;
	justify-content: center;
	row-gap: 9px;
	position: relative;
}

.price-guarantee__title::before {
	content: "";
	background: url(../img/price_guarantee_title_deco.png) no-repeat center center/contain;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -17px;
	margin: auto;
	width: 14px;
	height: 18px;
}

.price-guarantee__title-text {
	color: #F4F5F7;
	font-size: 23px;
	font-weight: 600;
	line-height: 34px;
}

.price-guarantee__title-emphasis {
	color: #FFFF00;
	font-size: 34px;
	font-weight: 700;
	display: inline-flex;
	line-height: 49px;
}

.price-guarantee__title-deco {
	position: relative;
	display: inline-block;
}

.price-guarantee__title-deco::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	background-color: #fff;
	border-radius: 50%;
}

.price-guarantee__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding: 0 13px;
	margin-bottom: 27px;
}

.price-guarantee__item-image {
	height: auto;
}

.price-guarantee__statement {
	padding: 0 20px;
}

.price-guarantee__statement-head {
	text-align: center;
	padding: 0 30px;
	margin-bottom: 18px;
}

.price-guarantee__statement-head-image {
	margin: 0 auto;
	height: auto;
}

.price-guarantee__statement-list {
	display: grid;
	row-gap: 13px;
	padding: 20px 21px 20px 20px;
	background-color: #fff;
	background-image:
		linear-gradient(#f7f7f7 1px, transparent 1px),
		linear-gradient(to right, #f7f7f7 1px, transparent 1px);
	background-size: 10px 10px;
	border-radius: 10px;
	position: relative;
}

.price-guarantee__statement-list::before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 12px;
	background: #fff;
	clip-path: polygon(0 100%, 50% 0, 100% 100%);
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	margin: auto;
}
.price-guarantee__statement-item {
	font-size: 14px;
	font-weight: 600;
	position: relative;
	line-height: 20px;
	padding-left: 40px;
}

.price-guarantee__statement-item::before {
	content: "";
	background: url(../img/icon_price_guarantee_check.svg) no-repeat center center/contain;
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 23px;
}

.price-guarantee__statement-item-emphasis {
	color: #fff;
	background-color: #FF0855;
	padding-left: 2px;
}

.price-guarantee__payment {
	padding-top: 15px;
	padding-right: 20px;
}

.price-guarantee__payment-image {
	height: auto;
}

/* ---------- certification section ---------- */
.certification {
	background-color: #E5F2FF;
	position: relative;
	padding: 30px 10px;
}

.certification__title {
	font-weight: 800;
	font-size: 25px;
	line-height: 35px;
	color: #152f8b;
	margin-bottom: 20px;
	position: relative;
}

.certification__title::before {
	content: "";
	background: url(../img/certification_title_deco.svg) no-repeat center /contain;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 87px;
	height: 114px;
}

.certification__title--small {
	font-size: 20px;
	font-weight: 700;
	line-height: 29px;
	display: block;
}

.certification__list {
	display: grid;
	row-gap: 20px;
}

.certification__item {
	border: 1px solid #152f8b;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.certification__item-title {
	background-color: #152f8b;
	font-weight: 600;
	font-size: 22px;
	text-align: center;
	color: #fff;
	line-height: 32px;
	padding: 11px 0 13px;
}

.certification__item-image {
	height: auto;
}

.certification__item-image-box {
	background-color: #efefef;
	display: grid;
	place-content: center;
}

.certification__item-image-box.image01 {
padding: 20px 17px;
}

.certification__item-image-box.image02,
.certification__item-image-box.image03 {
	padding: 10px 113px;
}

.certification__item-copy {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	color: #152f8b;
	margin-bottom: 15px;
	line-height: 29px;

}
.certification__item-copy-inner {
	display: inline-block;
	background: linear-gradient(#FFFF00 0 8px, transparent 8px) no-repeat;
	background-position: bottom;
	background-size: 100% 8px;
}

.certification__item-text-box {
	padding: 15px 14px 19px;
}

.certification__item-text {
	font-size: 14px;
	color: #333;
	line-height: 20px;
}

.certification__item-text-emphasis {
	font-weight: 600;
}

/* 画像拡大モーダル関連 */
.certification__item-image-thumb {
	cursor: pointer;
	position: relative;
}

.certification__item-image-thumb::before {
	content: "";
	background: url(../img/certification_img_zoom_icon.svg) no-repeat center / contain;
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 45px;
	height: 45px;
}

.certification__modal {
	position: fixed;
	inset: 0;
	z-index: calc(infinity);
	display: none;
	overflow-y: scroll;
	width: 100vw;
	height: 100dvh;
	padding: 20px;
	overscroll-behavior: contain;
}

.certification__modal.is-active {
	display: block;
}

.certification__modal-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.certification__modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.certification__modal-content {
	position: relative;
	z-index: 1;
	display: inline-block;
}

.certification__modal-close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 32px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	z-index: 1;
}

.certification__modal-image {
	height: auto;
}

/* ---------- c-contact（共通） section ---------- */
.c-contact__image {
  margin-top: -30px;
}

.c-contact__inner {
  background: #152F8B;
  padding: 16px 10px 24px;
}

.c-contact__balloon--yellow {
  background: #FFFF00;
  border-radius: 5px;
  font-weight: 500;
  font-size: 13px;
  padding: 3px;
  text-align: center;
  position: relative;
  margin-bottom: 17px;
}

.c-contact__balloon--yellow::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  right: 0;
  width: 9px;
  height: 16px;
  margin: auto;
  background-image: url(../img/c-contact-triangle.png);
  background-size: contain;
}

.balloon--red-text {
  color: #FF0855;
}

.c-contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  padding: 10px 5px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 0 #7D0027;
  background: linear-gradient(to bottom, #FF0855 50%, #D80043 50%);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.c-contact__link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 12px;
  pointer-events: none;
}

.c-contact__link::before {
  content: '';
  position: absolute;
  border: 1px;
}

.c-contact__link:hover::after {
  opacity: 1;
}

.c-contact__link:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #7D0027;
}

.c-contact__link img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.c-contact__tel {
  text-align: left;
}

.c-contact__tel--large {
  font-size: 37px;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  padding-top: 8px;
}

.c-contact__tel--small {
  font-size: 12px;
  text-align: center;
  margin-left: -10px;
}

.c-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}

.c-contact__button {
  width: calc((100% - 4px) / 2);
}

.c-contact__tel__button {
  width: 100%;
  margin-bottom: 8px;
}

.c-contact__mail--small,
.c-contact__line--small {
  font-size: 10px;
}

.c-contact__mail--large,
.c-contact__line--large {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.c-contact__button:nth-of-type(n+2) .c-contact__link img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.c-contact__mail-link {
  box-shadow: 0 3px 0 #AD5E00;
  background: linear-gradient(to bottom, #FF8800 50%, #FF6B1E 50%);
}

.c-contact__mail-link:hover {
  box-shadow: 0 1px 0 #AD5E00;
}

.c-contact__line-link {
  box-shadow: 0 3px 0 #008917;
  background: linear-gradient(to bottom, #07D82A 50%, #00CB22 50%);
}

.c-contact__line-link:hover {
  box-shadow: 0 1px 0 #008917;
}

.c-contact__credit {
  border: 1px solid #056DD3;
  border-radius: 10px;
  margin-top: 10px;
}

.c-contact__credit-title {
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  background: #056DD3;
  border-radius: 8px 8px 0 0;
  padding: 12px;
}

.c-contact__credit-image {
  padding: 26px 24px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

/* ---------- cases section ---------- */
.cases__main {
  background-color: #ffffff;
  background-image: radial-gradient(circle, #e4f2fe 3px, transparent 3px), radial-gradient(circle, #e4f2fe 3px, transparent 3px);
  background-position: 0 0, 15px 14px;
  background-size: 30px 28px;
  padding: 30px 10px 40px;
}

.cases__title-text {
  color: #152F8B;
  font-size: 16px;
  display: block;
  line-height: 1;
}

.cases__list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cases__item {
  border: 1px solid #152F8B;
  border-radius: 10px;
}

.cases__name {
  font-size: 18px;
  background: #152F8B;
  border-radius: 8px 8px 0 0;
  color: #fff;
  padding: 12px;
  text-align: center;
}

.cases__images {
  display: flex;
  gap: 0 1px;
}

.cases__image--before {
  position: relative;
}

.cases__image--before::before {
  position: absolute;
  content: "Before";
  top: 0;
  left: 0;
  color: #fff;
  font-size: 12px;
  background: #717171;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 4px;
  width: 46px;
  text-align: center;
  font-weight: 500;
}

.cases__image--after {
  position: relative;
}

.cases__image--after::before {
  position: absolute;
  content: "After";
  top: 0;
  left: 0;
  font-size: 12px;
  background: #FFFF00;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 4px;
  width: 46px;
  text-align: center;
  font-weight: 500;
}

.cases__item__inner {
  background: #fff;
  padding: 10px 10px 20px;
  border-radius: 0 0 10px 10px;
}

.cases__cost-title {
  background: #C9E6FF;
  font-size: 14px;
  padding: 8px 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 28%;
  text-align: center;
}

.cases__cost-content {
  background: #F4F5F7;
  font-size: 14px;
  padding: 8px 15px;
  width: 72%;
}

.cases__cost-item {
  display: flex;
  align-items: center;
  width: 100%;
}

.cases__cost-content {
  border-bottom: 1px solid #E1E1E1;
}

.cases__cost-item:last-of-type .cases__cost-content {
  border: none;
}

.cases__price-icon {
  background: #FF0855;
  display: flex;
  width: 114px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50px;
  margin-right: 10px;
}

.cases__price-icon img {
  margin-right: 4px;
  margin-top: 3px;
}

.cases__price {
  display: flex;
  align-items: center;
}

.cases__price-number {
  font-size: 18px;
  font-weight: bold;
  color: #FF0855;
}

.cases__price-number--large {
  font-size: 36px;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-right: 2px;
  letter-spacing: -1px;
}

.cases__introduction {
  font-size: 14px;
}

.text--bold {
  font-weight: 600;
}

.cases__achievement {
	background: url(../img/bg_cases_achievement.png) no-repeat center / cover;
	padding: 30px 10px;
}

.cases__achievement-image {
	height: auto;
}


/* ---------- five-points section ---------- */
.five-points {
  background: #152F8B;
  padding: 24px 10px 40px;
}

.five-points__description {
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 14px 20px 20px;
  text-align: center;
}

.point-title {
  color: #152F8B;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 4px 0 14px;
}

.point-title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: #FFFF00;
  height: 10px;
  bottom: -4px;
  left: 0;
  right: 0;
  z-index: -1;
}

.five-points__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.five-points__image img {
  border-radius: 10px 10px 0 0;
}

.point-text {
  font-size: 14px;
  text-align: left;
}

.five-points__text {
  font-size: 8px;
  font-weight: bold;
  color: #152F8B;
  display: block;
  text-align: left;
}

.five-points__number {
  position: absolute;
  font-size: 22px;
  font-weight: bold;
  color: #152F8B;
  display: block;
  text-align: left;
  z-index: 2;
  line-height: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 8px 0 10px 14px;
}

.five-points__number::after {
  content: "";
  position: absolute;
  background: #FFFF00;
  width: 115px;
  height: 115px;
  top: -60px;
  left: -60px;
  z-index: -1;
  transform: rotate(45deg);
}

.five-points__big-number {
  padding-left: 4px;
}

.five-points__list {
  margin-top: 15px;
  display: grid;
  gap: 20px;
}

/* ---------- comparison section ---------- */
.comparison {
  background: linear-gradient(to bottom right, #00D8FB, #0E66FF);
  padding: 30px 10px;
}

.comparison__title {
  width: 75px;
  margin-top: 64px;
}

.comparison__title-item {
  font-size: 12px;
  background: #E5F2FF;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #fff;
  text-align: center;
  height: 42px;
  line-height: 1.1;
}

.comparison__title-item:first-of-type {
  background: none;
  padding: 0;
  height: 0;
}

.comparison__title-item:last-of-type,
.comparison__title-item:first-of-type {
  border: none;
}

.comparison__list {
  display: flex;
  padding: 0 10px;
}

.comparison-sugupoi {
  min-width: 120px;
  border: 2px solid #152F8B;
  border-radius: 8px;
}

.comparison-sugupoi__item {
  font-size: 16px;
  font-weight: bold;
  color: #FF0855;
  background: #FFFFE5;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #D9D9D9;
  height: 42px;
  line-height: 1;
}

.comparison-sugupoi__item img {
  display: inline;
}

.comparison-sugupoi__item:last-of-type {
  border-radius: 0 0 6px 6px;
  border: none;
  height: 90px;
  line-height: 1.2;
}

.comparison-sugupoi__item:last-of-type span {
  display: block;
}

.comparison-sugupoi__logo {
  background: #152F8B;
  text-align: center;
  padding: 15px 0 10px;
}

.comparison-sugupoi__logo img {
  width: 104px;
  display: inline-block;
}

.comparison__other-name {
  background: #A1A1A1;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 9px;
}

.text-size--10px {
  font-size: 10px;
}

.text-size--11px {
  font-size: 11px;
}

.text-size--12px {
  font-size: 12px;
}

.text-size--14px {
  font-size: 14px;
}

.text--black {
  color: #333;
}

.text-size--8px {
  font-size: 8px;
}

.font-rubik {
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: -0.5px;
}

.font-weight--normal {
  font-weight: normal;
}

.comparison__other-item {
  background: #F4F5F7;
  padding: 9px 0;
  text-align: center;
  border-bottom: 1px solid #fff;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comparison__other-item:last-of-type {
  border: none;
  height: 60px;
}

.comparison__other-item img {
  display: inline-block;
}

.title--adjust {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sugupoi--adjust {
  line-height: 0.7;
}

.comparison__other {
  width: calc((100% - 75px - 120px - 1px) / 2);
  margin-top: 28px;
}

.comparison__other:last-child .comparison__other-item {
  border-left: 1px solid #fff;
}

.comparison__other:last-child .comparison__other-name {
  border-left: 1px solid #fff;
}

.comparison__title-item:last-of-type {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.comparison__table {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.comparison__table::before {
  position: absolute;
  background: #fff;
  content: "";
  width: 100%;
  height: 92%;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* ---------- services section ---------- */
.services {
  padding: 30px 10px 40px;
  background: repeating-linear-gradient(-45deg, #E5F2FF, #E5F2FF 2px, transparent 2px, transparent 10px);
}

.services__title-text {
  font-size: 16px;
  color: #152F8B;
}

.services__item {
  border: 1px solid #152F8B;
  border-radius: 10px;
  width: calc((100% - 11px) / 2);
  background: #fff;

}

.services__item-title {
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #152F8B;
  border-radius: 8px 8px 0 0;
  padding: 9px 0;
  letter-spacing: -0.5px;
}

.services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 11px;
  margin-top: 20px;
}

.services__item-inner {
  padding: 10px 10px 25px;
}

.services__item-description {
  font-size: 14px;
  padding-top: 8px;
}

/* ---------- examples section ---------- */
.examples {
  padding-bottom: 40px;
}

.examples__title {
  background: #152F8B;
  padding: 20px;
  position: relative;
}

.examples__title::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 17px;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/examples__title-decoration.png);
  background-size: contain;
}

.examples__title-text {
  font-size: 16px;
  color: #fff;
}

.examples__list-title {
  font-size: 20px;
  color: #152F8B;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.examples__list-title img {
  margin-right: 8px;
  margin-top: 4px;
}

.examples__list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.examples__item {
  font-size: 14px;
  background: #E5F2FF;
  border-radius: 10px;
  text-align: center;
  width: calc((100% - 10px) / 3);
  height: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.examples__list__wrapper {
  margin-top: 30px;
  padding: 0 10px;
}

.examples__list-title {
  margin-bottom: 24px;
}

/*アコーディオン*/
.js-accordion {
  position: relative;
  max-height: 350px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.js-accordion.expanded {
  max-height: 2000px;
}

.js-accordion::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 99%;
  height: 200px;
  margin: auto;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, #fff 90%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.js-accordion.expanded::after {
  opacity: 0;
}

.js-more {
  position: absolute;
  bottom: 10px;
  left: 50%;
  font-size: 13px;
  transform: translateX(-50%);
  color: #056DD3;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  font-weight: 600;
}

.examples__more-icon {
  background: #056DD3;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  margin-left: 5px;
  padding-left: 1px;
}

.js-accordion.expanded .examples__list__wrapper:last-of-type {
  padding-bottom: 60px;
}


/* ---------- areas section ---------- */
.areas {
  background: #00A8FF;
  padding: 40px 10px;
  background-image: radial-gradient(circle, #14AEFF 3px, transparent 3px), radial-gradient(circle, #14AEFF 3px, transparent 3px);
  background-position: 0 0, 15px 14px;
  background-size: 30px 28px;
}

.areas__title--main {
  margin-bottom: 25px;
}

.prefecture-text {
  background: #FFFF00;
  color: #00A8FF;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 3px;
  border-radius: 10px;
  width: 68px;
  display: inline-block;
}

.areas__description-text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.areas__description--small {
  color: #fff;
  font-size: 14px;
  padding: 0 10px 10px;
}

.areas__title {
  padding: 0 10px;
}

.areas__image {
  position: relative;
}

.icon-areas--25min {
  position: absolute;
  width: 93px;
  bottom: 17px;
  right: 17px;
}

.areas__prefecture {
  background: #152F8B;
  padding: 22px 10px 12px;
  border-radius: 10px;
}

.areas__name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding-left: 10px;
  padding-bottom: 15px;
  position: relative;
}

.areas__name::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-135deg);
  right: 20px;
  bottom: 12px;
  top: 0;
  margin: auto;
}

.areas__prefecture.active .areas__name::before {
  transform: rotate(45deg);
}

.areas__subitem {
  background: #fff;
  border-radius: 8px;
  padding: 13px 24px 17px;
}

.areas__category {
  font-size: 16px;
  font-weight: bold;
  color: #00A8FF;
  padding-bottom: 5px;
}

.areas__sublist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.areas__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 13px;
}

.areas__cities {
  word-break: keep-all;
}

.areas__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.city-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.slash {
  display: inline-block;
  margin-left: 4px;
}

.areas__sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.areas__prefecture.active .areas__sublist {
  max-height: 500px;
}

.areas__name {
  cursor: pointer;
}


/* ---------- onayami section ---------- */
.onayami {
  padding: 26px 10px 40px;
}

.onayami__sub-title {
  color: #fff;
  background: #152F8B;
  padding: 3px 15px;
  border-radius: 20px;
}

.onayami__main-title {
  padding: 0 10px 5px;
}

.onayami__message-text {
  font-weight: 500;
  text-align: center;
}

.highlight--yellow {
  display: inline-block;
  color: #152F8B;
  font-size: 20px;
  font-weight: 800;
  position: relative;
  margin: 6px 0;
}

.highlight--yellow::before {
  position: absolute;
  content: "";
  width: 100%;
  background: #FFFF00;
  height: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.onayami__introduction-text {
  padding: 20px 0;
}

.onayami__item {
  background: #152F8B;
  border-radius: 10px;
  padding: 22px 10px 10px;
  cursor: pointer;
}

.onayami__title {
  color: #fff;
  padding-left: 10px;
  padding-bottom: 12px;
  position: relative;
}

.onayami__title::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-135deg);
  right: 20px;
  bottom: 16px;
  top: 0;
  margin: auto;
}

.onayami__item.active .onayami__title::after {
  transform: rotate(45deg);
}

.onayami__content {
  background: transparent;
  border: none;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.4s ease, background 0.4s ease, border 0.4s ease;
}

.onayami__item.active .onayami__content {
  background: #fff;
  border: 1px solid #707070;
  padding: 20px 15px;
}

.onayami__introduction {
  font-size: 14px;
}

.onayami__example-title {
  font-size: 15px;
  font-weight: 600;
  color: #152F8B;
  border-bottom: 1px solid #152F8B;
  margin-bottom: 10px;
  padding-bottom: 14px;
  padding-top: 22px;
  position: relative;
  padding-left: 30px;
}

.onayami__example-title::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #152F8B;
  bottom: 10px;
  left: 0;
}

.onayami__example-title::after {
  position: absolute;
  content: "";
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  width: 12px;
  height: 7px;
  transform: rotate(135deg);
  bottom: 20px;
  left: 6px;
}

.onayami__example-text {
  font-size: 14px;
}

.onayami__example-image {
  margin-bottom: 10px;
}

.onayami__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onayami__example-title span {
  letter-spacing: -12px;
}

.onayami__list__wrapper {
  margin-top: 20px;
}

.onayami__closing {
  text-align: center;
  margin-top: 20px;
}

.onayami__closing-text {
  text-align: left;
  margin-top: 10px;
}

/* ---------- voice section ---------- */
.voice {
  background: #152F8B;
  padding: 30px 10px 40px;
}

.voice__item {
  background: #fff;
  border-radius: 8px;
  padding: 22px 20px;
  display: flex;
}

.voice__title-text {
  color: #fff;
  font-size: 14px;
}

.voice__title {
  margin-bottom: 20px;
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice__item__title {
  font-weight: bold;
  color: #152F8B;
  display: inline;
  padding-bottom: 2px;
  background: linear-gradient(#FFFF00 0 10px, transparent 10px) no-repeat;
  background-position: bottom;
  background-size: 100% 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.voice__item__text {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}

.voice__item__name {
  color: #152F8B;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin: 2px 0;
}

.voice__item__image {
  width: 65px;
  height: 65px;
  object-fit: cover;
}

.voice__item__area {
  background: #E5F2FF;
  color: #152F8B;
  font-size: 12px;
  text-align: center;
  padding: 2px;
  border-radius: 20px;
}

.voice__item__age {
  background: #E5F2FF;
  color: #152F8B;
  font-size: 12px;
  text-align: center;
  padding: 2px;
  border-radius: 20px;
  margin-top: 2px;
}

.voice__item--left {
  margin-right: 12px;
}

/* ---------- faq section ---------- */
.faq {
  padding: 30px 10px 40px;
}

.faq__title {
  margin-bottom: 20px;
}

.faq__question-q {
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #FFFF00;
  font-size: 31px;
  font-weight: 500;
  margin-right: 14px;
  width: 20px;
}

.faq__answer-a {
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #152F8B;
  font-size: 31px;
  font-weight: 500;
  margin-right: 14px;
}

.faq__question-text {
  color: #fff;
  width: 80%;
  line-height: 1.4;
}

.faq__answer-text {
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.6;
}

.faq__question {
  background: #00A8FF;
  padding: 12px 24px 12px 13px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.faq__item.is-open .faq__question {
  border-radius: 10px 10px 0 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* トグルボタン */
.faq__question-toggle {
  display: inline-block;
  width: 17px;
  height: 17px;
  position: relative;
  cursor: pointer;
  min-width: 17px;
  margin-left: auto;
}

.faq__question-toggle::before,
.faq__question-toggle::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.faq__question-toggle::before {
  top: 50%;
  left: 0;
  width: 17px;
  height: 2px;
  transform: translateY(-50%);
}

.faq__question-toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 17px;
  transform: translateX(-50%) rotate(0deg);
}

.faq__item.is-open .faq__question-toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  opacity: 0;
  display: flex;
  overflow: hidden;
  background: #F4F5F7;
  border-radius: 0 0 10px 10px;
  padding: 0 24px;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq__item.is-open .faq__answer {
  max-height: 1000px;
  opacity: 1;
  padding: 10px 24px 20px 12px;
}

/* ---------- flow section ---------- */
.flow {
  background:
    repeating-linear-gradient(-45deg, #183395, #183395 2px, transparent 2px, transparent 10px),
    #152F8B;
  padding: 30px 10px 50px;
}

.flow__title-text {
  color: #FFFF00;
}

.flow__tabs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.flow__tab {
  font-weight: 600;
  background: #E5E5E5;
  border-radius: 10px 10px 0 0;
  width: 50%;
  padding: 10px;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}

.flow__tab-content {
  border: 3px solid #01D7FB;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding-bottom: 30px;
}

.flow__tab-content {
  display: none;
}

.flow__tab-content.is-active {
  display: block;
}

.flow__tab.is-active {
  background: linear-gradient(to bottom right, #00D8FB, #0E66FF);
  color: #fff;
}

.tab-content__balloon {
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 7px;
  line-height: 1.5;
  position: relative;
}

.tab-content__balloon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.tab-content__inner {
  display: flex;
  padding: 16px 10px 26px;
  gap: 14px;
}

.tab-content__balloon--red {
  background: #FF0855;
}

.tab-content__balloon--green {
  background: #00CB22;
}

.tab-content__balloon--orange {
  background: #FF8B00;
}

.tab-content__balloon--red::after {
  border-top: 11px solid #FF0855;
}

.tab-content__balloon--green::after {
  border-top: 11px solid #00CB22;
}

.tab-content__balloon--orange::after {
  border-top: 11px solid #FF8B00;
}

.tab-content__step {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 11px;
}

.tab-content__step--red {
  border-color: #FF0855;
  background: #FFF5F8;
}

.tab-content__step--green {
  border-color: #00CB22;
  background: #F3FFF5;
}

.tab-content__step--orange {
  border-color: #FF8B00;
  background: #FFFAF5;
}

.tab-content__text {
  font-size: 12px;
  margin-top: 8px;
}

.tab-content__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.tab-content__title--red {
  color: #FF0855;
}

.tab-content__title--green {
  color: #00CB22;
}

.tab-content__title--orange {
  color: #FF8B00;
}

.tab-content__title--blue {
  color: #152F8B;
}

.tab-content__icon img {
  display: inline;
}

.tab-content__icon {
  width: 35px;
  height: 35px;
  margin: auto;
  display: flex;
  align-items: center;
}

.tab-content__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-content {
  width: calc((100% - 14px) / 2);
}

.height--140px {
  min-height: 140px;
}

.height--160px {
  min-height: 160px;
}

.height--180px {
  min-height: 180px;
}

.tab-content__text-highlight {
  background: linear-gradient(#FFFF00 0 10px, transparent 10px) no-repeat;
  background-position: bottom;
  background-size: 100% 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tab-content__list-tel li:first-of-type,
.tab-content__list-tel li:nth-of-type(2) {
  position: relative;
}

.tab-content__list-tel li:first-of-type::after,
.tab-content__list-tel li:nth-of-type(2)::after {
  content: "";
  position: absolute;
  background-image: url(../img/flow_tel_triangle.svg);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -18px;
  width: 17px;
  height: 12px;
}

.tab-content__list-video li:first-of-type,
.tab-content__list-video li:nth-of-type(2) {
  position: relative;
}

.tab-content__list-video li:first-of-type::after,
.tab-content__list-video li:nth-of-type(2)::after {
  content: "";
  position: absolute;
  background-image: url(../img/flow_line_triangle.svg);
  left: 0;
  right: 0;
  margin: auto;
  bottom: -18px;
  width: 17px;
  height: 12px;
}

.tab-content__step--blue {
  border-color: #152F8B;
  background: #F2F8FF;
  margin: 0 10px;
  position: relative;
}

.tab-content__step--blue::after {
  content: "";
  position: absolute;
  background-image: url(../img/flow_common_triangle.svg);
  left: 0;
  right: 0;
  margin: auto;
  top: -18px;
  width: 17px;
  height: 12px;
}

.tab-content__step--blue:nth-of-type(n+3) {
  margin-top: 30px;
}

/* ---------- consult-form section ---------- */
.consult-form {
  background: #00A8FF;
  padding: 30px 10px 80px;
}

.consult-form__inner {
  background: #E5F2FF;
  border-radius: 10px;
  padding: 20px 18px 46px;
  margin-top: 20px;
}

.consult-form__description {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

.consult-form__title {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.item--required {
  background: #FF0855;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  width: 40px;
  padding: 2px 0;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
  margin-left: 5px;
}

.item--optional {
  background: #152F8B;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  width: 40px;
  padding: 2px 0;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
  margin-left: 5px;
}

::placeholder {
  color: #DFDFDF;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 300;
}

.consult-form__input {
  padding: 8px 10px;
  border-radius: 5px;
  background: #fff;
  border: none;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  caret-color: #00A8FF;
}

.consult-form__input:focus {
  outline: none;
  border-color: #80cfff;
  box-shadow: 0 0 10px rgba(128, 207, 255, 0.6);
}

.consult-form__item {
  margin-bottom: 20px;
}

.auto-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 8px 5px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 3px 0 #0A63D6;
  background: linear-gradient(to bottom right, #00D8FB, #0E66FF);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
  overflow: hidden;
  border: none;
  font-size: 14px;
  margin-left: 7px;
  width: 86px;
  margin-top: -4px;
  cursor: pointer;
}

.auto-button:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #0A63D6;
}

.auto-button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #0A63D6;
}

.input--zipcode {
  width: calc(100% - 93px);
}

.selectbox-appearance input::placeholder {
  color: #333;
  font-size: 14px;
}

.selectbox-appearance {
  width: 200px;
  position: relative;
}

.selectbox-appearance::after {
  position: absolute;
  content: "";
  right: 10px;
  margin: auto;
  bottom: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #CBCBCB;
}

.consult-form__textarea {
  padding: 8px 10px;
  border-radius: 5px;
  background: #fff;
  border: none;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  caret-color: #00A8FF;
  height: 170px;
}

.consult-form__textarea:focus {
  outline: none;
  border-color: #80cfff;
  box-shadow: 0 0 10px rgba(128, 207, 255, 0.6);
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 16px 0 14px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 0 #D68900;
  background: linear-gradient(to bottom, #FFDA00, #FFA200);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  overflow: hidden;
  border: none;
  font-weight: 600;
  width: 100%;
  margin-top: 30px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.submit-button:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #D68900;
}

.policy {
  background: #fff;
  border-radius: 5px;
  padding: 16px 20px 12px;
  margin-bottom: 22px;
  overflow: auto;
  max-height: 132px;
}

.policy__title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.policy__sub-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline;
}

.policy__text {
  font-size: 12px;
  margin-bottom: 20px;
  white-space: pre-line;
}

.policy__agree {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* ---------- flatpickerのカスタマイズ ---------- */

.flatpickr-months .flatpickr-month {
  background: #152F8B;
  color: #fff;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  border-radius: 5px 5px 0 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-weight: 400;
  font-size: 16px;
}

.flatpickr-current-month input.cur-year {
  padding: 0;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #00A8FF;
  font-weight: bold;
}


.flatpickr-current-month {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.flatpickr-day.today {
  border-color: #00A8FF;
  font-weight: bold;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus,
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  background: #E5F2FF;
  color: #152F8B;
  border: 1px solid #E5F2FF;
  font-weight: bold;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #fff;
  fill: #fff;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  padding: 6px 8px;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #00A8FF;
}

.flatpickr-calendar {
  -webkit-box-shadow:
    1px 0 0 #152F8B,
    -1px 0 0 #152F8B,
    0 1px 0 #152F8B,
    0 -1px 0 #152F8B,
    0 3px 13px rgba(21, 47, 139, 0.2);
  box-shadow:
    1px 0 0 #152F8B,
    -1px 0 0 #152F8B,
    0 1px 0 #152F8B,
    0 -1px 0 #152F8B,
    0 3px 13px rgba(21, 47, 139, 0.2);
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  display: none !important;
}

.flatpickr-current-month .numInputWrapper {
  display: flex;
  align-items: center;
  width: 70px;
}

.numInputWrapper::after {
  content: "年";
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  left: 38px;
}

.flatpickr-calendar.arrowBottom:after,
.flatpickr-calendar.arrowBottom:before {
  display: none !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #fff;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff;
}

span.flatpickr-weekday {
  color: #616161;
}

.flatpickr-rContainer {
  margin: 10px 0;
}

/* =======================================
  Footer
======================================= */

/* ---------- link-top(上に戻るボタン) ---------- */

.link-top {
  width: 45px;
  height: 45px;
  position: fixed;
  right: 10px;
  margin: auto;
  bottom: 130px;
  background: linear-gradient(to bottom right, #00D8FB, #0E66FF);
  border-radius: 10px;
  z-index: 101;
  cursor: pointer;
}

.link-top::after {
  position: absolute;
  content: "";
  top: 7px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  width: 15px;
  height: 15px;
}

/* ---------- bottom-contact(追従ボトムメニュー) ---------- */

.bottom-contact {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 97%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  z-index: 1000;
}

.bottom-contact__buttons {
  display: flex;
  align-items: center;
}

.bottom-contact__text {
  font-size: 13px;
  font-weight: 600;
  background: #FFFF00;
  padding: 3px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 4px;
  position: relative;
}

.bottom-contact__text::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: -130px;
  right: 0;
  width: 9px;
  height: 16px;
  margin: auto;
  background-image: url(../img/c-contact-triangle.png);
  background-size: contain;
  z-index: 1;
  transform: rotate(-45deg);
}

.bottom-contact__text--red {
  color: #FF0855;
}

.bottom-contact__text--11px {
  font-size: 11px;
  line-height: 1;
}

.bottom-contact__text--12px {
  font-size: 12px;
  line-height: 1;
}

.bottom-contact__tel-number {
  font-size: 20px;
  font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.bottom-contact__tel img {
  width: 20px;
  height: 20px;
}

.bottom-contact__link {
  height: 70px;
}

.bottom-contact__mail img {
  width: 30px;
  height: 20px;
  object-fit: contain;
  margin-top: -15px;
}

.bottom-contact__line img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-top: -15px;
}

.bottom-contact__tel {
  width: calc(100% - 146px);
}

.bottom-contact--small {
  width: calc((100% - 200px) / 2);
  max-width: 73px;
}

.bottom-contact__receptional-time {
  position: absolute;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  bottom: 10px;
  left: 10px;
  background: #fff;
  width: 136px;
  border-radius: 20px;
  justify-content: center;
}

.bottom-contact__receptional-time img {
  margin-right: 3px;
}

.js-bottomContact,
.js-linkTop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.js-bottomContact.is-visible,
.js-linkTop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- footer ---------- */

.footer {
  background: #152F8B;
  padding: 34px 20px 120px;
}

.footer__logo {
  width: 144px;
  margin: 26px auto;
}

.footer__item {
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.footer__title {
  color: #fff;
  font-size: 14px;
  width: 118px;
  line-height: 20px;
}

.footer__content {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.footer__item:first-of-type {
  padding-top: 0;
}

/* =======================================
  確認画面
======================================= */
.c-contact__title {
  background: linear-gradient(to bottom right, #00D8FB, #0E66FF);
  color: #fff;
  padding: 30px 0;
  text-align: center;
  font-size: 18px;
}

.confirm__text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding-top: 25px;
}

.confirm__wrapper {
  padding: 0 20px;
}

.confirm-form__item {
  padding: 20px 0 15px;
  border-bottom: 1px solid #CECECE;
}

.confirm-button__wrapper {
  margin: 60px auto 100px;
  max-width: 400px;
}

.submit-button__wrapper {
  margin: auto;
  max-width: 400px;
}

.modify-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 16px 0 14px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 0 #707070;
  background: #C8C8C8;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  overflow: hidden;
  border: none;
  font-weight: 600;
  width: 100%;
  margin-top: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.modify-button:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #707070;
}

/* =======================================
  送信完了画面
======================================= */
.thanks__image {
  text-align: center;
  margin: auto;
}

.thanks__image img {
  display: inline;
}

.thanks__inner {
  padding: 30px;
  text-align: center;
}

.thanks__message {
  font-size: 14px;
  white-space: pre-line;
  font-weight: 500;
  line-height: 1.6;
}

.thanks__caution {
  border: 1px solid #333;
  padding: 15px;
  display: flex;
  margin-top: 30px;
}

.thanks__caution__image {
  width: 60px;
  margin-right: 10px;
}

.thanks__caution__text {
  font-size: 12px;
  text-align: left;
  white-space: pre-line;
}


/* =======================================
  メディアクエリ　376px〜750px
======================================= */
@media screen and (min-width: 376px) and (max-width: 750px) {
  .header__info {
    margin-left: auto;
    padding-right: 10px;
  }

  .c-title--main img {
    max-width: 370px;
    margin: auto;
  }
}

/* =======================================
  メディアクエリ　501px〜750px
======================================= */
@media screen and (min-width: 501px) and (max-width: 750px) {
  .c-title--main img {
    max-width: 370px;
    margin: auto;
  }

  .fee-plan__list {
    padding: 30px 50px 40px;
  }

  .banner {
    padding: 30px 50px;
  }

  .banner-list {
    gap: 15px;
  }

  .c-contact__image {
    margin-top: -40px;
  }

  .c-contact__inner {
    padding: 16px 50px 24px;
  }

  .cases__main {
    padding: 30px 50px 40px;
  }

  .cases__achievement {
	padding: 30px 50px;
  }

  .five-points {
    padding: 24px 50px 40px;
  }

  .comparison {
    padding: 30px 50px;
  }

  .services {
    padding: 30px 50px 40px;
  }

  .examples__list__wrapper {
    padding: 0 50px;
  }

  .areas {
    padding: 40px 50px;
  }

  .onayami {
    padding: 40px 50px;
  }

  .voice {
    padding: 30px 50px 40px;
  }

  .certification {
	 padding: 30px 50px;
  }

  .faq {
    padding: 30px 50px 40px;
  }

  .flow {
    padding: 30px 50px 50px;
  }

  .consult-form {
    padding: 30px 50px 80px;
  }

  .tab-content__inner {
    padding: 25px;
  }

  .tab-content__step--blue {
    margin: 0 25px;
  }

  .consult-form__inner {
    padding: 40px 30px 60px;
  }

  .consult-form__description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .footer {
    padding: 60px 50px 120px;
  }

  .header__info-time {
    font-size: 12px;
  }

  .header__info-tel a {
    font-size: 24px;
  }

  .header__text--blue {
    font-size: 16px;
  }

  .fee-plan__comment {
    font-size: 20px;
  }

  .fee-plan__name--small {
    font-size: 13px;
  }

  .fee-plan__item:nth-of-type(n+2) .fee-plan__comment {
    padding: 8px;
  }

  .fee-plan__name--first {
    font-size: 22px;
  }

  .web-discount--square {
    font-size: 18px;
  }

  .web-discount--small {
    font-size: 20px;
  }

  .web-discount--first {
    font-size: 44px;
  }

  .fee-plan__name {
    font-size: 20px;
  }

  .fee-plan__item:nth-of-type(n+2) del {
    font-size: 16px;
  }

  .c-contact__balloon--yellow {
    font-size: 16px;
    padding: 6px;
  }

  .c-contact__tel--large {
    font-size: 44px;
  }

  .c-contact__tel--small {
    font-size: 16px;
  }

  .c-contact .c-contact__link img {
    width: 44px;
    height: 44px;
  }

  .c-contact__mail--large,
  .c-contact__line--large {
    font-size: 16px;
  }

  .c-contact__mail--small,
  .c-contact__line--small {
    font-size: 14px;
  }

  .cases__item__inner {
    padding: 15px 20px 20px;
  }

  .cases__cost-title {
    font-size: 16px;
  }

  .cases__cost-content {
    font-size: 16px;
  }

  .cases__image--before::before {
    font-size: 14px;
    width: 60px;
  }

  .cases__image--after::before {
    font-size: 14px;
    width: 60px;
  }

  .cases__introduction {
    font-size: 16px;
  }

  .cases__price-number--large {
    font-size: 36px;
  }

  .point-text {
    font-size: 16px;
  }

  .five-points__text {
    font-size: 12px;
  }

  .five-points__number::after {
    top: -66px;
    left: -66px;
    width: 130px;
    height: 130px;
  }

  .five-points__big-number {
    padding-left: 8px;
  }

  .point-title {
    font-size: 26px;
  }

  .services__item-title {
    font-size: 18px;
    padding: 12px 0;
  }

  .areas__description--small {
    font-size: 16px;
    padding: 0 10px 20px;
  }

  .icon-areas--25min {
    width: 25%;
  }

  .c-contact__title {
    margin-top: 90px;
  }

 .price-guarantee__statement {
	padding: 0 50px;
  }

  .price-guarantee__list {
	padding: 0 50px;
  }

  .price-guarantee__payment {
	padding-right: 50px;
  }

}

/* =======================================
  メディアクエリ　501px〜
======================================= */

@media screen and (min-width: 501px) {
  .comparison__title {
    width: 130px;
  }

  .comparison__title-item br {
    display: none;
  }

  .comparison__title-item {
    font-size: 13px;
    font-weight: 500;
  }

  .confirm__wrapper {
    padding: 0 50px;
  }

  .confirm__text {
    font-size: 16px;
  }

  .bottom-contact__tel-number {
    font-size: 30px;
    line-height: 1.2;
  }

  .bottom-contact__text--11px {
    text-align: center;
  }

  .bottom-contact__text--12px {
    text-align: center;
  }

  .bottom-contact__tel img {
    width: 36px;
    height: 36px;
  }

}

/* =======================================
  メディアクエリ　560px〜750px
======================================= */

@media screen and (min-width: 560px) and (max-width: 750px) {
  .comparison-sugupoi {
    width: 45%;
  }

  .text-size--8px {
    font-size: 10px;
  }

  .text-size--12px {
    font-size: 14px;
  }

  .comparison-sugupoi__item {
    font-size: 18px;
  }

  .sugupoi--adjust {
    padding: 7px;
  }

  .comparison-sugupoi__item:last-of-type span {
    font-size: 12px;
  }

  .text-size--10px {
    font-size: 12px;
  }
}


/* =======================================
  メディアクエリ　751px〜
======================================= */
@media screen and (min-width: 751px) {

  .header__nav {
    display: none;
  }

  .pc-title {
    display: block;
    color: #fff;
    background: #056DD3;
    font-size: clamp(12px, 1.6vw, 20px);
    text-align: center;
    padding: 10px;
  }

  .link-top {
    right: 27vw;
    bottom: 60px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
  }

  .header,
  .foote,
  .bottom-contact {
    display: none;
  }

  .main,
  .footer {
    width: 49vw;
    max-width: 750px;
    margin: auto;
  }

  .wrapper {
    display: flex;
  }

  .pc-left,
  .pc-right {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 48.5vw) / 2);
    z-index: 6;
  }

  .pc-left {
    left: 0;
    background-image: url(../img/bg_l.jpg);
  }

  .pc-right {
    right: 0;
    background-image: url(../img/bg_r.jpg);
  }

  .pc-left__logo {
    padding: 40px 20px 0;
  }

  .pc-left__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .pc-left__menu__title {
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 18px;
    text-align: center;
    background: #152F8B;
    color: #fff;
    padding: 5px;
    border-radius: 30px;
  }

  .pc-left__menu__link {
    color: #fff;
    font-size: 14px;
    display: block;
    text-align: center;
  }

  .pc-right__text {
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .pc-right__text--yellow {
    color: #FFFF00;
  }

  .pc-right__tel-number {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
  }

  .pc-right__text--small {
    font-size: 10px;
    text-align: center;
  }

  .pc-right {
    padding: 60px 10px 0;
  }

  .pc-right__link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .pc-right__mail__button {
    margin-top: 10px;
  }

  .pc-right__tel__button {
    margin-bottom: 40px;
    border: 1px solid #fff;
    padding-bottom: 3px;
    border-radius: 15px;
  }

  .pc-right__line__button {
    border: 1px solid #fff;
    padding-bottom: 3px;
    border-radius: 15px;
  }

  .pc-right__mail__button {
    border: 1px solid #fff;
    padding-bottom: 3px;
    border-radius: 15px;
  }

  .c-contact__credit-title {
    font-size: 14px;
  }

  .pc-right__inner {
    max-width: 450px;
    margin: auto;
    width: 84%;
  }

  .pc-right__credit {
    border: 1px solid #fff;
    border-radius: 10px;
  }

  .pc-right .c-contact__link {
    border-radius: 15px;
  }

  .pc-right .c-contact__link:hover {
    margin-top: -1px;
  }

  .pc-right__credit {
    margin-top: 24px;
  }


}

/* =======================================
  メディアクエリ　1000px〜
======================================= */
@media screen and (min-width: 1000px) {

  .pc-left__menu {
    border: 2px solid #152F8B;
    border-radius: 20px;
    padding: 0;
    width: 84%;
    max-width: 450px;
    margin: auto;
    background: #fff;
    gap: 0;
  }

  .pc-left__logo {
    padding: 40px 20px 15px;
    max-width: 420px;
    margin: auto;
  }

  .pc-left__menu__title {
    border-radius: 16px 16px 0 0;
    padding: 12px;
  }

  .pc-left__menu__link {
    color: #152F8B;
    border-bottom: 1px solid #152F8B;
    padding: 12px;
  }

  .pc-left__menu__item:last-of-type .pc-left__menu__link {
    margin-bottom: 40px;
  }

  .pc-left__menu__item {
    margin: 0 20px;
  }

  .pc-right__text {
    font-size: 20px;
  }

  .pc-right {
    padding: 40px 20px 0;
  }

  .pc-right__text--small {
    font-size: clamp(12px, 1vw, 16px);
  }

  .height--160px {
    min-height: 130px;
    max-height: 150px;
  }

  .height--180px {
    min-height: 150px;
    max-height: 160px;
  }

  .certification__title {
	font-size: 32px;
	line-height: 42px;
  }

  .certification__title--small {
	font-size: 25px;
	line-height: 42px;
  }

  .price-guarantee__title-text {
	font-size: 28px;
	line-height: 42px;
  }

  .price-guarantee__title-emphasis {
	font-size: 40px;
	line-height: 60px;
  }

  .price-guarantee__title-deco::before {
	width: 7px;
	height: 7px;
  }

}

/* =======================================
  メディアクエリ　1200px〜
======================================= */
@media screen and (min-width: 1200px) {

  .pc-right__tel,
  .pc-right__line,
  .pc-right__mail {
    width: 100%;
  }

  .pc-right__tel-number {
    font-size: 22px;
  }

  .pc-right__mail--large br,
  .pc-right__line--large br {
    display: none;
  }

  .pc-right .c-contact__link {
    padding: 10px 20px;
  }

  .pc-right__mail--large,
  .pc-right__line--large {
    font-size: 16px;
  }

  .pc-right__line__button {
    font-size: 26px;
  }

  .c-title--main img {
    max-width: 370px;
    margin: auto;
  }

  .fee-plan__list {
    padding: 30px 50px 40px;
  }

  .banner {
    padding: 30px 50px;
  }

  .banner-list {
    gap: 15px;
  }

  .c-contact__image {
    margin-top: -40px;
  }

  .c-contact__inner {
    padding: 16px 50px 24px;
  }

  .cases__main {
    padding: 30px 50px 40px;
  }

  .cases__achievement {
	padding: 30px 50px;
  }

  .five-points {
    padding: 24px 50px 40px;
  }

  .comparison {
    padding: 30px 50px;
  }

  .services {
    padding: 30px 50px 40px;
  }

  .examples__list__wrapper {
    padding: 0 50px;
  }

  .areas {
    padding: 40px 50px;
  }

  .onayami {
    padding: 40px 50px;
  }

  .voice {
    padding: 30px 50px 40px;
  }

  .certification {
    padding: 30px 50px;
  }

  .certification__item-title {
	font-size: 24px;
  }

  .certification__item-copy {
    font-size: 22px;
  }

  .certification__item-text {
	font-size: 16px;
  }

  .faq {
    padding: 30px 50px 40px;
  }

  .flow {
    padding: 30px 50px 50px;
  }

  .consult-form {
    padding: 30px 50px 80px;
  }

  .tab-content__inner {
    padding: 25px;
  }

  .tab-content__step--blue {
    margin: 0 25px;
  }

  .consult-form__inner {
    padding: 40px 30px 60px;
  }

  .consult-form__description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .footer {
    padding: 60px 50px 120px;
  }

  .header__info-time {
    font-size: 12px;
  }

  .header__info-tel a {
    font-size: 24px;
  }

  .header__text--blue {
    font-size: 16px;
  }

  .fee-plan__comment {
    font-size: 20px;
  }

  .fee-plan__name--small {
    font-size: 13px;
  }

  .fee-plan__item:nth-of-type(n+2) .fee-plan__comment {
    padding: 8px;
  }

  .fee-plan__name--first {
    font-size: 22px;
  }

  .web-discount--square {
    font-size: 18px;
  }

  .web-discount--small {
    font-size: 20px;
  }

  .web-discount--first {
    font-size: 44px;
  }

  .fee-plan__name {
    font-size: 20px;
  }

  .fee-plan__item:nth-of-type(n+2) del {
    font-size: 16px;
  }

  .c-contact__balloon--yellow {
    font-size: 16px;
    padding: 6px;
  }

  .c-contact__tel--large {
    font-size: 44px;
  }

  .c-contact__tel--small {
    font-size: 16px;
  }

  .c-contact .c-contact__link img {
    width: 44px;
    height: 44px;
  }

  .c-contact__mail--large,
  .c-contact__line--large {
    font-size: 16px;
  }

  .c-contact__mail--small,
  .c-contact__line--small {
    font-size: 14px;
  }

  .cases__item__inner {
    padding: 15px 20px 20px;
  }

  .cases__cost-title {
    font-size: 16px;
  }

  .cases__cost-content {
    font-size: 16px;
  }

  .cases__image--before::before {
    font-size: 14px;
    width: 60px;
  }

  .cases__image--after::before {
    font-size: 14px;
    width: 60px;
  }

  .cases__introduction {
    font-size: 16px;
  }

  .cases__price-number--large {
    font-size: 36px;
  }

  .point-text {
    font-size: 16px;
  }

  .five-points__text {
    font-size: 12px;
  }

  .five-points__number::after {
    top: -66px;
    left: -66px;
    width: 130px;
    height: 130px;
  }

  .five-points__big-number {
    padding-left: 8px;
  }

  .point-title {
    font-size: 26px;
  }

  .services__item-title {
    font-size: 18px;
    padding: 12px 0;
  }

  .areas__description--small {
    font-size: 16px;
    padding: 0 10px 20px;
  }

  .icon-areas--25min {
    width: 25%;
  }

  .comparison-sugupoi {
    width: 45%;
  }

  .text-size--8px {
    font-size: 10px;
  }

  .text-size--12px {
    font-size: 14px;
  }

  .comparison-sugupoi__item {
    font-size: 18px;
  }

  .sugupoi--adjust {
    padding: 7px;
  }

  .comparison-sugupoi__item:last-of-type span {
    font-size: 12px;
  }

  .text-size--10px {
    font-size: 12px;
  }

  .pc-right__text {
    font-size: 28px;
  }

  .pc-right__balloon--yellow {
    font-size: clamp(12px, 1vw, 18px);
    padding: 5px 10px;
    border-radius: 50px;
  }

  .c-contact__mail--large,
  .c-contact__line--large {
    font-size: clamp(16px, 1vw, 24px);
  }

  .pc-right__credit>p {
    font-size: 16px;
  }

  .price-guarantee__statement-item {
	font-size: 16px;
  }

  .price-guarantee__list {
	gap: 30px;
  }

  .price-guarantee__statement-head {
	padding: 0 50px;
  }

  .certification__item-image-box.image02 .certification__item-image ,
  .certification__item-image-box.image03 .certification__item-image  {
	height: 307px;
  }

  .certification__item-image {
	width: 100%;
  }

  .price-guarantee__list {
	padding: 0 50px;
  }

  .price-guarantee__statement {
	padding: 0 50px;
  }

  .price-guarantee__payment {
	padding-right: 50px;
	padding-left: 1.5%;
  }

}

/* =======================================
  メディアクエリ　1400px〜
======================================= */
@media screen and (min-width: 1400px) {
  .pc-left__menu__title {
    font-size: clamp(20px, 1.6vw, 30px);
  }

  .pc-left__menu__item {
    margin: 0 50px;
  }

  .pc-left__menu__link {
    font-size: 16px;
  }

  .pc-right__text {
    font-size: 32px;
  }

  .pc-right__tel-number {
    font-size: clamp(12px, 2vw, 45px);
  }

  .thanks__caution {
    align-items: center;
  }


}

/* =======================================
  メディアクエリ　1540px〜
======================================= */
@media screen and (min-width: 1540px) {

  .pc-left,
  .pc-right {
    width: calc((100vw - 750px) / 2);
  }

  .pc-right__link img {
    width: 2.7vw;
    height: 2.7vw;
  }

  .price-guarantee__payment {
	padding-left: 1%;
  }
  
  .price-guarantee__statement-list {
	padding-right: 10px;
  }

}

/* =======================================
  メディアクエリ　1600px〜
======================================= */
@media screen and (min-width: 1600px) {
  .pc-right .c-contact__link {
    padding: 16px 30px;
  }

  .pc-right__credit>p {
    font-size: 18px;
  }
}

/* =======================================
  メディアクエリ　1800px〜
======================================= */
@media screen and (min-width: 1800px) {
  .pc-right__tel-number {
    letter-spacing: 1px;
  }
}

/* =======================================
  確認画面・WP調整
======================================= */
.consult-form__content-zipcode {
  position: relative;
}

.auto-button {
  position: absolute;
  top: 4px;
  right: 0;
}

.confirm-form .auto-button,
.confirm-form .policy,
.confirm-form .policy__agree {
  display: none;
}

.confirm-form .submit-button__wrapper {
  margin: 60px auto 100px;
}

.confirm-form .consult-form__item {
  padding: 20px 0 15px;
  border-bottom: 1px solid #CECECE;
  margin-bottom: 0;
}

.consult-form__content {
  word-break: break-all;
}

.confirm-form .selectbox-appearance::after {
  content: none;
}