@charset "utf-8";

/*--- layout ---*/
body {
	color: #212529;
	background-color: #fff;
}
.container, .inner {
	max-width: 1214px;
	padding-inline: 20px;
	margin: 0 auto;
}
#top-image .inner{
	max-width: 1256px;
}
#plan .inner,
#contact .inner {
	max-width: 1346px;
}

.articles {
	padding: 64px 0 136px;
}
.overflow-width {
	margin-inline: calc(50% - 50vw);
}

@media screen and (max-width: 1024px) {
	.container, .inner {
		max-width: 100% !important;
		padding-inline: 40px;
	}
}

@media screen and (max-width: 840px) {
	.container, .inner {
		padding-inline: 30px;
	}
}
@media screen and (max-width: 640px) {
	.container, .inner {
		padding-inline: 20px;
	}
	.articles {
		padding: 44px 0 116px;
	}
}
/*--- layout end ---*/

/*--- 共通パーツ ---*/
.heading {
	font-size: 44px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 32px;
}
.headings {
	font-weight: bold;
}
.headings .head01 {
	font-size: 30px;
}
.headings .head02 {
	font-size: 19px;
}
.button {
	text-align: center;
	transition: .2s;
}

.PC {
	display: block;
}
.SP {
	display: none;
}

main {
    margin-top: 114px;
}

:root {
	--header: 114px;
	scroll-padding: var(--header);
	scroll-behavior: smooth;
}

@media screen and (max-width: 840px) {
	.PC {
		display: none;
	}
	.SP {
		display: block;
	}
}

@media screen and (max-width: 640px) {
	p {
		font-size: 14px;
	}
	.heading {
		font-size: 32px;
	}
	.comment {
		font-size: 16px;
	}
	:root {
		--header: 84px;
	}
	
	main {
	    margin-top: 84px;
	}
}


/*====================================
  header 
======================================*/
header {
	max-width: 100%;
	width: 100%;
	height: 114px;
	background-color: #fff;
	border-bottom: 1px solid #f0f0f0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
header .header-inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-inline: 36px;
}

/*--- logo_group ---*/
header .logo_group {
	display: flex;
	align-items: center;
	gap: calc(36vw / 19.2);
}
header .logo_group .logo {
	display: inline-block;
}
header .logo_group .logo img {
	width: 76px;
}
header .logo_group .text {
	display: inline-block;
	font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
	vertical-align: middle;
	font-weight: bold;
	word-break: keep-all;
}
header .logo_group .text span {
	display: inline-block;
	vertical-align: bottom;
}

/*--- menus ---*/
.header-menus {
	display: flex;
	align-items: center;
	gap: calc(48vw / 19.2);
}
.menu_container ul {
	display: flex;
	gap: calc(60vw / 19.2);
}
.menu_container ul li a {
	font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
	font-weight: 300;
	position: relative;
}
.menu_container ul li a::before {
	content: "";
	display:inline-block;
	width: 100%;
	height: 3px;
	background-color: #D90000;
	position: absolute;
	bottom: -6px;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: .3s;
}

.menu_container ul li a:hover::before {
	transform: scale(1, 1);
}

/*--- buttons ---*/
header .buttons__container {
	display: flex;
	gap: calc(36vw / 19.2);
	align-items: center;
}

/*--- contact__buttons ---*/
header .contact-btns {
	display: flex;
	gap: 8px;
}
header .contact-btns .button {
	font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);;
	display: inline-block;
	padding: 0.6em 0.8em;
	border-radius: 50px;
	color: #fff;
}
header .contact-btns .try .button {
	border: 3px solid #D90000;
	background-color: #D90000;
}
header .contact-btns .download .button {
	border: 3px solid #000;
	background-color: #000;
}

header .contact-btns .try .button:hover {
	background-color: #fff;
	color: #D90000;
}
header .contact-btns .download .button:hover {
	background-color: #fff;
	color: #000;
}

/*--- hambugermenu__button ---*/
header .ham-btns {
	display: flex;
	align-items: center;
}
header .ham-btn {
	width:60px;
	height: 60px;
	position: relative;
	z-index: 10030;
	padding: 0;
}
header .ham-btn span {
	display: block;
	width: 49px;
	height: 1px;
	background-color: #000;
	position: absolute;
	left: calc(50%);
	transform: translateX(-50%);
	transition: all .5s;
}
header .ham-btn span:nth-child(1) {
	top: calc(0% + 16px);
}
header .ham-btn span:nth-child(2) {
	top: 50%;
}
header .ham-btn span:nth-child(3) {
	top: calc(100% - 16px);
}

/*--- hambugermenu__button-animation ---*/
header .ham-btn.active span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, 0) rotate(45deg);
}

header .ham-btn.active span:nth-child(2) {
	left: 60%;
	opacity: 0;
	animation: active-hambtn__bar02 .8s
		forwards;
}

@keyframes active-hambtn__bar02 {
	100% {
		height: 0;
	}
}

header .ham-btn.active span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, 0) rotate(-45deg);
}

/*--- hambugermenu__menu ---*/
header .ham-canvas {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10020;
	background-color: rgba(0, 0, 0, 0);
	visibility: hidden;
	transition: .3s;
}
header .ham-canvas .canvas-container {
	width: 45%;
	height: 100%;
	background-color: #fff;
	margin-left: auto;
	padding: 80px calc(48vw / 19.2);
	transform: translateX(1000px);
	transition: .5s;
}
header .ham-canvas .canvas-container .nav-menus {
	margin-top: 40px;
}
header .ham-canvas .nav-menus .link-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px;
	border-bottom: 1px solid #000;
	transition: .3s;
}
header .ham-canvas .nav-menus li:first-child .link-container {
	border-top: 1px solid #000;
}
header .ham-canvas .nav-menus .link:hover .link-container {
	background-color: #d4d4d4;
}
header .ham-canvas .nav-menus .label {
	font-size:18px;
}

header .ham-canvas .nav-menus .arrow {
	display: inline-block;
	width: 48px;
	height: 14px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	transform: skew(45deg);
	transition: .3s;
}

/*--- hambugermenu__menu-animation ---*/
.ham-btn.active + .ham-canvas {
	background-color: rgba(0, 0, 0, 0.3);
	visibility: visible;
}

.ham-btn.active + .ham-canvas .canvas-container {
	transform: translateX(0);
}

@media screen and (max-width: 1024px) {
	header .menu_container {
		display: none;
	}
}

@media screen and (max-width: 840px) {
	header .header-inner {
		padding-inline: 20px;
	}
	header .ham-canvas .canvas-container {
		width: 100%;
		padding: 80px 20px 0;
	}
}

@media screen and (max-width: 640px) {
	header {
		height: 84px;
	}
	header .logo_group .logo img {
		width: 56px;
	}
	header .logo_group .text {
		display: none;
	}
	header .contact-btns {
		gap :5px;
	}
	header .contact-btns .button {
		font-size: clamp(0.625rem, 0.5rem + 0.63vw, 0.75rem);
		padding: 0.4em 0.6em;
	}
	header .ham-btn {
		width: 48px;
		height: 48px;
	}
	header .ham-btn span {
		width: 32px;
	}
	header .ham-canvas .nav-menus .labels .en {
		font-size: 26px;
	}
	header .ham-canvas .nav-menus .labels .jp {
		font-size: 16px;
	}
}

@media screen and (max-width: 440px) {
	header .logo_group .logo img {
		width: 40px;
	}
}

/*====================================
  footer
======================================*/
/*--- pagetop ---*/
#pagetop {
	display: inline-block;
	position: fixed;
	bottom: 16px;
	left: calc(0% + 48px);
	transform: translateX(-250px);
	transition: .4s;
}
#pagetop.active {
	transform: translateX(0);
}
#pagetop button {
	display: block;
	width: 71px;
	height: 71px;
	color: #fff;
	border: 3px solid #666666;
	background-color: #666666;
	border-radius: 14%;
	text-align: center;
	position: relative;
	transition: .2s;
}
#pagetop button p {
	font-size: 15px;
}

#pagetop button:hover {
	color: #666666;
	background-color: #fff;
}

/*--- footer ---*/
footer .copyright {
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	padding: 20px;
}

@media screen and (max-width: 1024px) {
	#pagetop {
		left: calc(0% + 24px);
	}
}

@media screen and (max-width: 640px) {
	#pagetop {
		left: calc(0% + 16px);
	}

	footer .copyright {
		font-size: 11px;
	}
}


/*====== front-page__start ======*/

/*====================================
  top-image 
======================================*/
#top-image .bg {
	width: 100%;
	height: calc(528vw / 19.2);
	color: #fff;
	display: flex;
	align-items: center;
	background-image: url(../images/top-image_bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
#top-image .top-image__wrapper {
	display: flex;
	align-items: center;
}
#top-image .top-image__wrapper > * {
	width: calc(100% / 2);
}
#top-image .top-image__wrapper img {
	transform: scale(1.1);
}
/*--- top-image__title ---*/
#top-image .top-image__titles {
	margin-bottom: 60px;
}
#top-image .top-image__titles .main-title {
	font-size: clamp(2.563rem, 1.848rem + 1.12vw, 3.188rem);
	font-weight: bold;
}
#top-image .top-image__titles .main-desc {
	font-size: clamp(1.75rem, 1.179rem + 0.89vw, 2.25rem);
	margin-bottom: 16px;
}

/*--- top-image__button ---*/
#top-image .top-image__btn {
	width: 55%;
	font-size: 23px;
}
#top-image .top-image__btn .button {
	display: block;
	background-color: #D90000;
	border: 3px solid #fff;
	border-radius: 50px;
	padding-block: 16px;
}

#top-image .top-image__btn .button:hover {
	color: #D90000;
	border-color: #D90000;
	background-color: #fff;
}

@media screen and (max-width: 1024px) {
	#top-image .bg {
		background-image: url(../images/top-image_bg--sp.png);
		height: calc(1024vw/ 7.68);
	}
	#top-image .top-image__wrapper > * {
		width: 100%;
	}
	#top-image .top-image__wrapper .top-image__img {
		display: none;
	}
}

@media screen and (max-width: 840px) {
	#top-image .top-image__body {
		padding-inline: 20px;
	}
	#top-image .top-image__wrapper {
		flex-direction: column;
		margin-top: 50%;
	}
	#top-image .top-image__wrapper > * {
		width: 100%;
	}
	#top-image .top-image__texts {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#top-image .top-image__titles {
		margin-bottom: 32px;
	}
	#top-image .top-image__titles .main-title {
		text-align: center;
		font-size: 76px;
	}
	#top-image .top-image__titles .main-desc {
		font-size: 24px;
	}
}
@media screen and (max-width: 640px) {
	#top-image {
		margin-bottom: 48px;
	}
	#top-image .bg {
		height: calc(667vw / 3.9);
	}
	#top-image .top-image__titles .main-title {
		font-size: 36px;
	}
	#top-image .top-image__titles .main-desc {
		font-size: 18px;
	}
	#top-image .top-image__btn {
		width: 100%;
	}
}

/*====================================
  about 
======================================*/
#about {
	padding-top: 72px;
	padding-bottom: 72px;
}
#about .about-desc {
	max-width: 876px;
	font-size: 20px;
	line-height: 2.0;
	letter-spacing: 0.05em;
	margin: 0 auto;
}

@media screen and (max-width: 640px) {
	#about {
		padding-top: 52px;
		padding-bottom: 52px;
	}
	#about .about-desc {
		font-size: 16px;
	}
}

/*====================================
  point
======================================*/
#point .point-group {
	padding-top: 24px;
}
#point .point-group .point-item {
	margin-bottom: 120px;
}
#point .point-group #point03.point-item {
	margin-bottom: 0;
}
#point .point-group .point-item .point-container {
	display: flex;
	gap: calc(40vw / 19.2);
}
#point .point-group .point-container .point__image {
	flex: 1;
	border-radius: 4px;
	overflow: hidden;
}
#point .point-group .point-container .point__image img {
	width: 100%;
	object-fit: cover;
	border: 1px solid #ddd;
	border-radius: 4px;
}
#point .point-group .point-container .point__info {
	flex: 1.298;
}
/* reverse */
#point .point-group .point-item.reverse .point-container {
	flex-direction: row-reverse;
	gap: calc(128vw / 19.2);
}
#point .point-group .point-item.reverse .point-container .point__info {
	flex: 1.127;
}
/* point-item */
#point .point-group .point-item .point__title span,
#point .point-group .point-item .point__text span {
	display: inline-block;
}
#point .point-group .point-item .point__title {
	font-size: clamp(1.5rem, 1.304rem + 0.58vw, 2rem);
	font-weight: 400;
	margin-bottom: 48px;
	word-break: keep-all;
}
#point .point-group .point-item.reverse .point__title {
	margin-bottom: 24px;
}
#point .point-group .point-item .point__text {
	font-weight: 300;
	font-size: clamp(1.125rem, 1.076rem + 0.15vw, 1.25rem);
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: justify;
}

@media screen and (max-width:1024px) {
	#point .point-group .point-item .point__text span {
		display: inline;
	}
}

@media screen and (max-width:840px) {
	#point .point-group .point-item .point-container,
	#point .point-group .point-item.reverse .point-container {
		gap: 28px;
	}
	#point .point-group .point-item .point-container > *,
	#point .point-group .point-item.reverse .point-container > * {
		flex: 1;
	}
	#point .point-group .point-item .point-container .point__image {
		text-align: center;
	}
	#point .point-group .point-item .point__title {
		margin-bottom: 32px;
	}
	#point .point-group .point-item.reverse .point__title {
		margin-bottom: 16px;
	}
}

@media screen and (max-width:640px) {
	#point .point-group .point-item .point-container,
	#point .point-group .point-item.reverse .point-container {
		flex-direction: column;
		gap: 40px;
	}
	#point .point-group .point-item .point__title {
		font-size: 22px;
	}
	#point .point-group .point-item .point__text {
		font-size: 16px;
	}
}

/*====================================
  functions
======================================*/
#functions {
	background-color: #F4F4F4;
}
#functions .function-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(293px, 1fr));
	gap: calc(140vw / 19.2);
	padding-top: 40px;
}
/*--- function-item ---*/
#functions .function-list .function-list__item {
	display: flex;
	flex-direction: column;
}
#functions .function-list__image {
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 48px;
}
#functions .function-list__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#functions .function-list  .function-list__item .item-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}
#functions .function-list__title {
	font-size: 17px;
	font-weight: 400;
	margin-bottom: 12px;
}
#functions .function-list__text {
	flex-grow: 1;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.6;
}

@media screen and (max-width: 1024px) {
	#functions .function-list {
		gap: 34px;
	}

	#functions .function-list__image {
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 640px) {
	#functions .function-list {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	#functions .function-list__title {
		font-size: 15px;
	}
}

/*====================================
  plan
======================================*/
#plan {
	background-color: #D90000;
	position: relative;
}
#plan .heading {
	color: #fff;
}
#plan .plan-list {
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	padding-top: 16px;
}

/*--- planItem ---*/
#plan .plan-list .plan__item {
	background-color: #fff;
	border-radius: 9px;
	padding: 36px 12px 24px;
	box-shadow: 8px 8px 9px rgba(0, 0, 0, 0.2);
}
#plan .plan-list .plan__item .plan__title {
	font-size: 28px;
	text-align: center;
	margin-bottom: 36px;
}

/*-- planItem_top --*/
#plan .plan-list .plan__item .plan_top {
	padding-bottom: 8px;
	border-bottom: 1px solid #AAA;
	text-align: center;
	margin-bottom: 24px;
}
#plan .plan-list .plan__item .plan__amount {
	font-size: 39px;
	font-weight: bold;
	margin-bottom: 24px;
}

/* planItem_top --money */
#plan .plan-list .plan__item .plan__amount .monthly {
	font-size: 18px;
}
#plan .plan-list .plan__item .plan__amount .include {
	font-size: 14px;
}
#plan .plan-list .plan__item .InitialCost {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin-bottom: 4px;
}
#plan .plan-list .plan__item .InitialCost span {
	font-size: 13px;
}
#plan .plan-list .plan__item .InitialCost::before {
	content: "";
	width: 90%;
	height: 2px;
	background-color: #D90000;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
}
#plan .plan-list .plan__item .campaign {
	font-size: 14px;
	color: #D90000;
}

/* planItem_top --button */
#plan .plan-list .plan__item .plan__button {
	width: 80%;
	font-size: 23px;
	margin: 0 auto 18px;
}
#plan .plan-list .plan__item .plan__button .button {
	display: block;
	color: #fff;
	background-color: #FF8000;
	border: 3px solid #FF8000;
	border-radius: 50px;
	padding-block: 6px;
}

#plan .plan-list .plan__item .plan__button .button:hover {
	color: #FF8000;
	background-color: #fff;
}

/* planItem_top --matter */
#plan .plan-list .plan__item .matters li {
	font-size: 15px;
}
#plan .plan-list .plan__item .matters li:first-child {
	font-weight: bold;
}
#plan .plan-list .plan__item .matters li:last-child {
	margin-top: -12px;
}
#plan .plan-list .plan__item .matters li::before {
	font-family: "小塚ゴシック Pr6N";
	content: "✓";
	font-size: 23px;
	color: #D90000;
	font-weight: bold;
	padding-right: 6px;
	vertical-align: middle;
}

/*--- plan_button ---*/
#plan .plan__pr {
	width: 35%;
	position: absolute;
	left: 50%;
	bottom: calc(0%);
	transform: translate(-50%, 50%);
}
#plan .plan__pr .button {
	display: block;
	width: 100%;
	font-size: 33px;
	color: #fff;
	background-color: #D90000;;
	border: 6px solid #fff;
	border-radius: 100px;
	padding-block: 48px;
}

#plan .plan__pr .button:hover {
	filter: brightness(1.2);
}

@media screen and (max-width: 1280px) {
	#plan .plan-list {
		grid-template-columns: repeat(2, 1fr);
	}
	#plan .plan__pr {
		width: 60%;
	}
}

@media screen and (max-width: 840px) {
	#plan .plan__pr {
		width: 80%;
	}
}

@media screen and (max-width: 640px) {
	#plan .plan-list {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	#plan .plan__pr {
		width: 100%;
		padding-inline: 20px;
	}
	#plan .plan__pr .button {
		font-size: 23px;
		padding-block: 24px;
	}
}


/*====================================
  introduce
======================================*/
#introduce {
	margin-top: 110px;
}
#introduce .intro-list {
	max-width: 846px;
	margin: 0 auto;
	padding: 36px 20px 0;
}
#introduce .intro__step {
	margin-bottom: 56px;
}
#introduce .intro__step .intro__stepitem {
	display: flex;
	align-items: center;
	gap: calc(86vw / 19.2);
}
#introduce .intro__step .intro__stepitem .step {
	font-size: 30px;
	font-weight: bold;
}
#introduce .intro__step .intro__stepitem .step-text {
	font-size: 20px;
	letter-spacing: 0.025em;
}

@media screen and (max-width: 840px) {
	#introduce .intro__step {
		width: 100%;
	}
	#introduce .intro-list {
		max-width: 100%;
		padding: 36px 0 0 0;
	}
}

@media screen and (max-width: 640px) {
	#introduce .intro__step .intro__stepitem {
		display: block;
	}
	#introduce .intro__step .intro__stepitem  .step {
		font-size: 22px;
		margin-bottom: 6px;
	}
	#introduce .intro__step .intro__stepitem  .step-text {
		font-size: 16px;
	}
}

/*====================================
  contact
======================================*/
#contact {
	background-color: #f0f0f0;
	padding-block: 48px;
}
#contact .contact__wrapper {
	display: flex;
	justify-content: center;
}

/*--- info ---*/
#contact .headings {
	margin-bottom: 36px;
}
#contact .contact__info {
	width: 50%;
	color: #000;
	padding-top: 48px;
}
#contact .contact__info p {
	font-weight: 400;
	font-size: 20px;
}
#contact .contact__info .contact__text01 {
	margin-bottom: 42px;
	line-height: 2.0;
}
#contact .contact__info .contact__text02 {
    display: none;
	visibility: hidden;
	margin-bottom: 86px;
}
#contact .contact__info .logo_group > * {
	display:inline-block;
	vertical-align: middle;
}
#contact .contact__info .logo_group .logo01 {
	margin-right: 32px;
}
#contact .contact__info .logo_group .logo01 img {
	width: 143px;
}
#contact .contact__info .logo_group .logo02 img {
	width: 199px;
}
/*--- form ---*/
#contact .contact__form-group {
	width: 50%;
}
#contact form {
	background-color: #fff;
	border-radius: 20px;
	padding: calc(36vw / 19.2);
	width: 100%;
	max-width: 100%;
	box-shadow: 8px 8px 9px rgba(0, 0, 0, 0.2);
}

/* form --cf7 */
.wpcf7-list-item {
	margin: 0;
}

/* form --inputs */
input[type=date], input[type=email], input[type=number], 
input[type=password], input[type=tel], input[type=text], 
input[type=url], select, textarea {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	padding: .8em 1em;
	width: 100%;
	max-width: 100%;
}
#contact form dl {
	display: flex;
	height: auto;
	margin-bottom: 24px;
}
#contact form dl dt {
	width: 40%;
}
#contact form dl dt label {
	display: inline-block;
	font-size: 17px;
	font-weight: bold;
	position: relative;
	cursor: inherit;
}
#contact dl dt .required {
	display: inline-block;
	font-size: 10px;
	color: #fff;
	background-color: #D90000;
	border-radius: 4px;
	padding: 2px 4px;
	margin-right: 10px;
	white-space: nowrap;
	user-select: none;
	vertical-align: middle;
}
#contact form dl dt .not-req {
	visibility: hidden;
}
#contact form dl dd {
	font-size: 15px;
	width: 60%;
}

/* form --radiobtn */
input[type="radio" i] {
	margin: 0 3px 0 0;
}
#contact form .radiobtn__group {
	display: flex;
	justify-content: flex-start
}
#contact form .wpcf7-radio .wpcf7-list-item label {
	margin-right: 1.5em;
}
/* form --radiobtn conditional-group */
#contact form .plan-group {
	margin-top:  12px;
}
/* form --privacy */
#contact form .privacy-accept,
#contact form .submit {
	text-align: center;
}
#contact form .privacy-accept {
	margin: 32px 0 24px;
}
#contact form .privacy-accept p {
	margin-bottom: 12px;
}
#contact form .privacy-accept a {
	color: #005ca2;
	text-decoration: underline;
}
#contact form .privacy-accept a:hover {
	opacity: 0.7;
	text-decoration: none;
}
#contact form .check-btn {
	margin: 0 auto;
}

/* form --submit */
#contact form .submit input {
	font-size: 24px;
	letter-spacing: 0.5em;
	text-align: center;
	background-color: #000;
	color: #fff;
	border: 3px solid #000;
	border-radius: 50px;
	width: 90%;
	padding-block: 0.6em;
	transition: .3s;
}
#contact form .submit input:hover {
	color: #000;
	background-color: #fff;
}
#contact form .submit input:disabled {
	opacity: 0.7;
}

@media screen and (max-width: 1024px) {
    #contact .contact__wrapper {
        flex-direction: column;
        gap: 86px;
    }
    #contact .contact__info,
    #contact .contact__form-group {
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    #contact .contact__info p {
        font-size: 16px;
    }
    
    #contact form dl {
        flex-direction: column;
        gap: 12px;
    }
    #contact form dl dt,
    #contact form dl dd {
        display: block;
        width: 100%;
    }
    
    #contact form dl dt .not-req {
        display: none;
    }
    
    #contact form dl dt label {
        font-size: 15px;
    }
    
    #contact form dl dd {
        font-size: 13px;
    }
}

/*====== front-page__end ======*/

#page-header {
    padding-top: 86px;
	margin-bottom: 48px;
}
#page-header h1 {
	font-size: 56px;
	padding-left: 24px;
	border-left: 8px solid #D90000;
}

.details {
	margin-bottom: 120px;
}

@media screen and (max-width: 640px) {
    #page-header {
    	padding-top: 43px;
    	margin-bottom: 24px;
    }
    #page-header h1 {
        font-size: 28px;
    }
}


/*====================================
privacy  
======================================*/
#privacy h4 {
	background-color: #EEEEEE;
	border-radius: 4px;
	padding: .5em;
	margin-bottom: 16px;
}
#privacy .privacy-text dt {
	font-weight: bold;
	margin-block: 16px 4px;
}

@media screen and (max-width: 640px) {
    #privacy .privacy-text {
        font-size: 14px;
    }
}