@charset "UTF-8";

body {
	margin: 0 auto;
	font-family: heisei-kaku-gothic-std, sans-serif;
	font-weight: 900;
	overflow-x: hidden;
	color: #513400;
}

.font-tsukuard {
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.font-mincho {
	font-family: "游明朝体", "Yu Mincho", "YuMincho", serif;
	font-weight: 400;
	font-style: normal;
}

.font-corporate {
	font-family: corporate-logo-ver2, sans-serif;
	font-weight: 700;
	font-style: normal;
}

img {
	width: 100%;
	vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
dl,
dt,
dd {
	padding: 0;
	margin: 0;
	font-weight: 900;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #000;
}

.hidden-phone {
	display: none !important;
}

@media (min-width: 1000px) {
	.visible-phone {
		display: none !important;
	}

	.hidden-phone {
		display: inherit !important;
		position: relative;
	}
}

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

.flex-column {
	display: flex;
	flex-direction: column;
}

.float-l {
	float: left;
}

.float-r {
	float: right;
}

.border {
	display: block;
	margin: 1rem 0;
	width: 1px;
	height: 30px;
	background-color: #000;
}

body.overflow-hidden {
	overflow-y: hidden;
}

.site-header__logo {
	display: inline-block;
	width: 130px;
}

@media (min-width: 1000px) {
	.site-header__logo {
		width: 200px;
	}
}

.site-header__logo img {
	vertical-align: super;
}

.site-header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.site-header.bg-white {
	background-color: #fff;
}

.site-header__menu {
	display: flex;
	align-items: center;
}

.site-header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	margin: 0 auto;
	width: 90%;
}

@media (min-width: 1000px) {
	.site-header__wrapper {
		padding-top: 0rem;
		padding-bottom: 0rem;
		align-items: center;
	}
}

.nav__wrapper {
	display: none;
}

@media (min-width: 1000px) {
	.nav__wrapper {
		display: flex;
	}
}

.nav__wrapper-sp {
	margin-right: 30px;
}

.nav__item {
	margin: 0rem 1rem;
}

.nav__item-sp {
	margin-right: 10px;
}

.nav__item-sp .flex-column {
	align-items: center;
}

.nav__item-sp p {
	padding-top: 5px;
}

.nav__item-image {
	width: 30px;
	height: 30px;
	border: 0.75px solid #231815;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav__item-image img {
	width: 20px;
}

.nav__item a {
	display: block;
	position: relative;
	padding-bottom: 5px;
	font-size: 16px;
	line-height: 1.0625;
}

@media (min-width: 1000px) {
	.nav__item a {
		padding-bottom: 0;
	}
}

.nav__item a::after {
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 3px;
	background: #ec7422;
	bottom: 0;
	transform: scale(0, 1);
	transform-origin: right top;
	/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;
	/*変形の時間*/
}

.nav__item a:hover::after {
	transform: scale(1, 1);
	/*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top;
	/*左から右に向かう*/
}

.site-header__form {
	display: flex;
}

.site-header__form .nav__item {
	display: flex;
	align-items: center;
}

.site-header__form .nav__item a {
	display: flex;
	align-items: center;
}

.site-header__form img {
	padding-right: 5px;
}

.nav__toggle {
	display: none;
}

@media (max-width: 999px) {
	.nav__toggle {
		display: block;
		position: absolute;
		right: 4%;
		top: 25%;
		width: 30px;
		height: 30px;
		border: none;
		background-color: transparent;
	}

	.burger__line {
		position: relative;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}

	.burger__line,
	.burger__line::before,
	.burger__line::after {
		display: block;
		width: 30px;
		height: 0.75px;
		background-color: #231815;
		outline: 1px solid transparent;
		transition-property: background-color, transform;
		transition-duration: 0.3s;
	}

	.burger__line::before,
	.burger__line::after {
		position: absolute;
		content: "";
	}

	.burger__line::before {
		top: -10px;
	}

	.burger__line::after {
		top: 10px;
	}

	.burger__line--active {
		background-color: transparent;
	}

	.burger__line--active::before {
		transform: translateY(10px) rotate(45deg);
	}

	.burger__line--active::after {
		transform: translateY(-10px) rotate(-45deg);
	}

	.burger__line--active:before,
	.burger__line--active:after {
		background-color: #0045aa;
	}

	.burger:hover {
		cursor: pointer;
	}
}

.burger__nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	margin: 0 0 0 auto;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 999;
	transform: translateX(150vw);
	transition: all 0.3s linear;
}

.burger__nav.--active {
	transform: translateX(0);
	overflow: hidden;
}

.burger__nav-header {
	margin-left: auto;
	width: 100%;
	max-width: 375px;
	height: 50px;
	background-color: #fff;
	border-bottom: 2px solid #0045aa;
}

.burger__nav-list {
	margin-left: auto;
	width: 100%;
	max-width: 375px;
	background-color: #fff;
}

.burger__nav-item {
	padding: 2rem 0;
	position: relative;
	text-align: center;
	border-bottom: 1px solid #8fb8ea;
}

.burger__nav-item::before,
.burger__nav-item::after {
	content: "";
	position: absolute;
	right: 15px;
	display: inline-block;
	width: 13px;
	height: 2px;
	background-color: #0045aa;
}

.burger__nav-item::before {
	top: 45%;
	transform: translateY(-50%) rotate(45deg);
}

.burger__nav-item::after {
	top: 55%;
	transform: translateY(-50%) rotate(135deg);
}

.burger__nav-item:last-child {
	border: none;
}

.burger__nav-item a {
	color: #0045aa;
}

.nav__toggle-close {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 10px;
	right: 10px;
}

@media (min-width: 1000px) {
	section {
		margin-top: -20rem;
	}
}

.container {
	max-width: 500px;
	width: 95%;
	margin: 0 auto;
}

@media (min-width: 1000px) {
	.container {
		max-width: 1000px;
	}
}

.top-title {
	width: 100%;
	height: 25rem;
	position: relative;
	background-image: url(../img/dot-header-title.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.top-title-text {
	font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
	line-height: 1.5;
	padding: 0 .5em;
	margin: 0 auto;
	margin-top: -5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 1;
}

.top-title-span {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.top-title-span span {
	font-size: clamp(1rem, 1vw + 1rem, 1.6rem);
	display: inline-block;
	margin-top: .5em;
	border-left: 5px solid #FFA800;
	padding: 2px 0 2px .5em;
	white-space: nowrap;
}

.banner {
	display: none
}

.content-bnr {
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content-bnr a {
	margin: 20px 0;
	transition: opacity .5s;
}

.content-bnr a:hover {
	opacity: .7;
}

.content-bnr-responsive {
	margin: 40px auto;
}

.content-bnr span {
	border-bottom: 3px solid #00B900;
}

@media (min-width: 1000px) {
	.top-title {
		width: 100%;
		z-index: 0;
		height: 40rem;
		background-image: url(../img/dot-header-title-pc.png);
	}

	.top-title-text {
		margin-bottom: 4rem;
		width: 80%;
	}

	.banner {
		display: block;
		margin: 10px auto;
		max-width: 700px;
		z-index: 1;
		position: relative
	}
}

.top-title img {
	width: 120%;
	max-width: 700px;
	position: absolute;
	bottom: 50%;
	left: 35%;
	transform: translate(-50%, 50%);
}

@media (min-width: 700px) and (max-width: 1023px) {
	.top-title img {
		left: 40%;
	}
}

@media (min-width: 1000px) {
	.top-title img {
		width: 100%;
		max-width: 1400px;
	}
}

@media (min-width: 2000px) {
	.top-title img {
		left: 44%;
	}
}

.contact__banner {
	margin-top: -2rem;
	position: relative;
	z-index: 10;
}

.contact__banner-top {
	border-top: 1px solid #231815;
	border-bottom: 1px solid #231815;
	align-items: stretch;
	font-size: 15px;
	line-height: 1.6666666667;
}

.contact__banner-bottom {
	background-color: #488eff;
}

.contact__banner-document {
	padding: 1rem 0;
	background-color: #fff;
	width: 50%;
	color: #513400;
	border-right: 1px solid #231815;
}

.contact__banner-mail {
	padding: 1rem 0;
	width: 50%;
	color: #fff;
	background-color: #997d52;
}

.contact__banner-tel {
	max-width: 500px;
	margin: 0 auto;
	padding: 0.5rem;
	justify-content: space-between;
	color: #fff;
	font-size: 30px;
	line-height: 1.1666666667;
}

.contact__banner-tel span {
	font-size: 16px;
	line-height: 1.0625;
}

.contact__banner-tel small {
	font-size: 12px;
	line-height: 1.4166666667;
}

.contact__banner-tel b {
	width: 65%;
}

.contact__banner-tel b img {
	vertical-align: -webkit-baseline-middle;
}

@media (min-width: 1000px) {
	.contact__banner {
		display: none;
	}
}

#aboutUs {
	background-image: url(../img/bg-aboutus-sp.png);
	background-size: cover;
	background-position: 58% -13rem;
	background-repeat: no-repeat;
	position: relative;
	z-index: 5;
}

@media (min-width: 1000px) {
	#aboutUs {
		margin-top: 0rem;
		background-image: url(../img/bg-aboutus.svg);
		background-position: 65% 50%;
	}
}

.aboutUs__container {
	padding-top: 4rem;
	max-width: 400px;
}

@media (min-width: 1000px) {
	.aboutUs__container {
		position: relative;
		height: 100rem;
		padding-top: 15rem;
		max-width: 1000px;
		background-image: url(../img/dot-aboutus.png);
		background-position: 50% 80%;
		background-size: contain;
		background-repeat: no-repeat;
	}
}

.aboutUs__item__content {
	width: 100%;
}

.aboutUs__item__content-text {
	text-align: center;
}

.aboutUs__item__image {
	margin-top: 5rem;
	width: 100%;
	text-align: center;
	background-image: url(../img/dot-shake-hands.png);
	background-size: contain;
	background-repeat: no-repeat;
}

@media (min-width: 1000px) {
	.aboutUs__item__image {
		float: left;
		background-image: none;
	}
}

.aboutUs__item__image img {
	width: 60%;
}

@media (min-width: 1000px) {
	.aboutUs__item__image img {
		width: 100%;
	}
}

.aboutUs__item__content-image {
	position: relative;
}

.aboutUs__item__content-image img {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	/* -o-object-position: 10%;
	object-position: 10%; */
	-o-object-position: 65% center;
	object-position: 65% center;
	position: relative;
	z-index: 10;
}

.aboutUs__item-top__content-image {
	margin-top: 4rem;
}

@media (min-width: 1000px) {
	.aboutUs__item-top__content-image {
		margin-top: 0;
	}
}

.aboutUs__item-top__content-image img {
	width: 40%;
}

@media (min-width: 1000px) {
	.aboutUs__item-top__content-image img {
		width: 100%;
	}
}

.aboutUs__item-bottom__content-image {
	margin-top: 13rem;
	text-align: end;
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-image {
		margin-top: 4rem;
		text-align: center;
	}
}

@media (min-width: 1000px) {
	.aboutUs__item-top__content-text {
		margin-bottom: 5rem;
		float: right;
		text-align: left;
	}
}

@media (min-width: 1000px) {
	.aboutUs__item-top__image {
		float: left;
		width: 40%;
	}
}

.aboutUs__item-bottom__content-image img {
	width: 40%;
	-o-object-position: 50%;
	object-position: 50%;
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-image img {
		width: 100%;
	}
}

.aboutUs__item__content-text small {
	font-size: 17px;
	line-height: 1.2352941176;
}

@media (min-width: 1000px) {
	.aboutUs__item__content-text small {
		font-size: 18px;
		line-height: 1.1666666667;
	}
}

.aboutUs__item__content-text p {
	font-size: 20px;
	line-height: 1.15;
}

@media (min-width: 1000px) {
	.aboutUs__item__content-text p {
		font-size: 30px;
		line-height: 1.6666666667;
	}
}

.aboutUs__item__content-text span {
	padding-bottom: 2px;
	border-bottom: 3px solid #ec7422;
	font-size: 24px;
	line-height: 1.6666666667;
}

.aboutUs__item-top__content-image__caption,
.aboutUs__item-bottom__content-image__caption {
	padding: 1rem;
	position: absolute;
	top: 12rem;
	right: 0.5rem;
	transform: translateY(-50%);
	justify-content: center;
	text-align: center;
	align-items: center;
	border-radius: 50%;
	background-color: #fff;
	font-weight: bold;
	aspect-ratio: 1/1;
	z-index: 5;
	font-size: 20px;
	line-height: 1.5;
}

@media (min-width: 1000px) {

	.aboutUs__item-top__content-image__caption,
	.aboutUs__item-bottom__content-image__caption {
		width: auto;
		top: 100%;
		z-index: 20;
		font-size: 16px;
		line-height: 1.5625;
		aspect-ratio: 1/1;
	}
}

.mac .aboutUs__item-top__content-image__caption,
.mac .aboutUs__item-bottom__content-image__caption,
.iphone .aboutUs__item-top__content-image__caption,
.iphone .aboutUs__item-bottom__content-image__caption,
.ipad .aboutUs__item-top__content-image__caption,
.ipad .aboutUs__item-bottom__content-image__caption {
	aspect-ratio: auto;
}

.aboutUs__item-bottom__content-image__caption {
	width: 60%;
	right: auto;
	left: 1rem;
	top: 10rem;
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-image__caption {
		width: 40%;
		top: auto;
		bottom: -15rem;
	}
}

.caption-title {
	position: relative;
	padding-bottom: 1rem;
}

@media (min-width: 1000px) {
	.caption-title {
		padding-bottom: 0;
		font-size: 21px;
		line-height: 1.1904761905;
	}
}

.caption__list {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

@media (min-width: 1000px) {
	.caption__list {
		width: auto;
	}
}

.caption__item {
	padding-bottom: 1rem;
	letter-spacing: 0;
}

@media (min-width: 1000px) {
	.caption__item {
		padding-bottom: 0;
	}
}

.caption-border {
	position: absolute;
	top: 50%;
	display: none;
	width: 30px;
	height: 3px;
	background-color: #ec7422;
	transform: translateY(-50%);
}

.caption-border-start {
	left: -55%;
}

.caption-border-end {
	right: -55%;
}

@media (min-width: 1000px) {
	.caption-border {
		display: inline-block;
	}
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom {
		position: absolute;
		bottom: 20%;
	}
}

@media (min-width: 1000px) {
	.aboutUs__item-top__content-image {
		float: right;
		width: 50%;
	}
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-image {
		margin-top: 0;
		width: 50%;
	}
}

.aboutUs__item-bottom__content-text {
	margin-top: 13rem;
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-text {
		margin-top: 0;
		width: 44%;
	}
}

.aboutUs__item-bottom__content-text p {
	margin: 0 auto;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-size: 17px;
	line-height: 1.7647058824;
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-text p {
		width: 100%;
		font-size: 20px;
		line-height: 1.7;
	}
}

.aboutUs__item-bottom__content-text p:last-child {
	text-align: left;
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-text p:last-child {
		text-align: center;
	}
}

.aboutUs__item-bottom__content-text span {
	font-size: 17px;
	line-height: 1.7647058824;
}

@media (min-width: 1000px) {
	.aboutUs__item-bottom__content-text span {
		font-size: 20px;
		line-height: 1.7;
	}
}

.risk-example__container {
	padding: 4rem 0;
}

@media (min-width: 1000px) {
	.risk-example__container {
		padding: 13rem 0 0rem;
		position: relative;
		background-image: url(../img/risk-example-header-bg.png);
		background-position: 50% -8rem;
		background-repeat: no-repeat;
		background-size: cover;
		max-width: 1200px;
		z-index: 5;
	}
}

.risk-example__header-text {
	padding-bottom: 1rem;
	text-align: center;
}

@media (min-width: 1000px) {
	.risk-example__header-text {
		padding-bottom: 2rem;
	}
}

.risk-example__header-text small {
	font-size: 21px;
	line-height: 1.7142857143;
}

@media (min-width: 1000px) {
	.risk-example__header-text small {
		font-size: 20px;
		line-height: 1.7;
	}
}

.risk-example__header-text h2 {
	margin-top: 2rem;
	font-size: 39px;
	line-height: 1.2820512821;
}

@media (min-width: 1000px) {
	.risk-example__header-text h2 {
		font-size: 62px;
		line-height: 1.1935483871;
	}
}

.risk-example__header-text span {
	padding-top: 0.5rem;
	color: #007aff;
	border: double 3px #007aff;
}

.risk-example__header-textbaloon {
	margin: 0 auto;
	width: 100%;
}

@media (min-width: 1000px) {
	.risk-example__header-textbaloon {
		width: 45%;
	}
}

.risk-example__container {
	width: 100%;
}

.risk-example__header {
	margin: 0 auto;
	width: 90%;
}

.risk-example__item {
	margin-top: 0rem;
	position: relative;
	top: -48px;
}

@media (min-width: 1000px) {
	.risk-example__item {
		margin-top: -1.5rem;
		max-width: 1400px;
		margin: 0 auto;
	}
}

.risk-example__item-bg {
	margin-top: -4rem;
}

@media (min-width: 1000px) {
	.risk-example__item-bg {
		margin-top: -2rem;
		padding: 0 0;
		background-image: url(../img/bg-risk-example.png);
		background-position: 50% 0%;
		background-repeat: no-repeat;
		background-size: 120rem;
		position: relative;
	}
}

.risk-example__item-wrapper {
	max-width: 500px;
	margin: 0 auto;
}

@media (min-width: 1000px) {
	.risk-example__item-wrapper {
		max-width: 1000px;
	}
}

.risk-example__item__content {
	margin: 0 auto;
	width: 95%;
	align-items: center;
}

@media (min-width: 1000px) {
	.risk-example__item__content {
		flex-direction: row;
	}
}

.risk-example__number {
	width: 30%;
	position: absolute;
	top: 2%;
	left: 0;
}

@media (min-width: 1000px) {
	.risk-example__number {
		top: 13%;
		left: 5%;
		width: 20%;
	}
}

.risk-example__item1 {
	padding: 8rem 0;
	background-image: url(../img/bg-risk-example1.png);
	background-size: 70rem;
	background-repeat: no-repeat;
	background-position: 55% 32px;
}

@media (min-width: 1000px) {
	.risk-example__item1 {
		padding: 15rem 0 8rem;
		background-image: none;
	}
}

@media (min-width: 1000px) {
	.risk-example__item2 {
		padding: 3rem 0;
	}
}

@media (min-width: 1000px) {
	.risk-example__item2__content {
		flex-direction: row-reverse;
	}
}

.risk-example__item2 .risk-example__number {
	top: -26%;
	left: auto;
	right: 0;
}

@media (min-width: 1000px) {
	.risk-example__item2 .risk-example__number {
		top: -5%;
		right: 3%;
	}
}

.risk-example__item2 .risk-example__item__content-text {
	background-image: url(../img/dot-risk-example2.png);
	background-size: contain;
	background-repeat: no-repeat;
}

@media (min-width: 1000px) {
	.risk-example__item2 .risk-example__item__content-text {
		background-image: none;
	}
}

.risk-example__item3 {
	padding: 8rem 0 17rem;
	background-image: url(../img/bg-risk-example3.png);
	background-size: 80rem;
	background-repeat: no-repeat;
	background-position: 55% 32px;
}

@media (min-width: 1000px) {
	.risk-example__item3 {
		background-image: none;
	}
}

.risk-example__item3 .risk-example__number {
	top: 3%;
}

@media (min-width: 1000px) {
	.risk-example__item3 .risk-example__number {
		top: 10%;
	}
}

.risk-example__item__content-text {
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 50;
}

@media (min-width: 1000px) {
	.risk-example__item__content-text {
		width: 40%;
	}
}

.risk-example__item__content-text p {
	font-size: 22px;
	line-height: 1.3181818182;
}

@media (min-width: 1000px) {
	.risk-example__item__content-text p {
		font-size: 25px;
		line-height: 1.28;
	}
}

h3 {
	margin: 0 auto;
	width: 100%;
	font-size: 52px;
	line-height: 1.2307692308;
}

@media (min-width: 1000px) {
	h3 {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		font-size: 57px;
		line-height: 1.2280701754;
	}
}

h3 small {
	font-size: 33px;
	line-height: 1.9393939394;
}

@media (min-width: 1000px) {
	h3 small {
		font-size: 36px;
		line-height: 1.9444444444;
	}
}

.decoration-underline {
	border-bottom: 3px solid #ec7422;
}

.risk-example__item__content-image {
	padding-top: 2rem;
	width: 60%;
	max-width: 237px;
	margin: 0 auto;
}

@media (min-width: 1000px) {
	.risk-example__item__content-image {
		padding-top: 0;
		max-width: none;
	}
}

.service-plan {
	margin-top: 8rem;
	position: relative;
	top: 0;
}

@media (min-width: 1000px) {
	.service-plan {
		margin-top: -6rem;
	}
}

@media (min-width: 1000px) {
	.service-plan__bg {
		background-image: url(../img/dot-plan-sample.png);
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: contain;
	}
}

.service-plan__container {
	width: 100%;
	position: relative;
}

@media (min-width: 1000px) {
	.service-plan__container {
		max-width: 1200px;
	}
}

.service-plan__header {
	align-items: center;
	position: absolute;
	text-align: center;
	top: -7%;
	left: 50%;
	transform: translateX(-50%);
}

@media (min-width: 1000px) {
	.service-plan__header {
		margin: 0 auto;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		top: -15%;
		left: -15%;
		transform: translateX(0);
	}
}

.service-plan__header-light {
	width: 40%;
}

@media (min-width: 1000px) {
	.service-plan__header-light {
		position: absolute;
		top: 0%;
		left: 0%;
		width: 10%;
	}
}

.service-plan__header p {
	font-size: 22px;
	line-height: 1.3636363636;
}

.service-plan__title {
	margin: 0 auto 1rem;
	padding-bottom: 1.5rem;
	font-size: 21px;
	line-height: 1.6666666667;
}

@media (min-width: 1000px) {
	.service-plan__title {
		border-bottom: 3px solid #ec7422;
		font-size: 57px;
		line-height: 1.1052631579;
		width: 430px;
	}
}

.service-plan__title small {
	font-size: 16px;
	line-height: 1.625;
}

.service-plan__title span {
	font-size: 38px;
	line-height: 1.0526315789;
}

.service-plan__content {
	display: grid;
	grid-template-rows: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1000px) {
	.service-plan__content {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		direction: rtl;
	}
}

.service-plan__item {
	height: 767px;
	border-radius: 999px 999px 0 0;
	text-align: center;
}

.service-plan__item__content {
	width: 90%;
	margin: 0 auto;
	padding-top: 2rem;
}

.service-plan__item__title {
	margin: 1.5rem auto;
	padding: 0.7rem 0;
	max-width: 320px;
	border: 3px solid #513400;
}

@media (min-width: 1000px) {
	.service-plan__item__title {
		max-width: 300px;
	}
}

.service-plan__item__title small {
	font-size: 19px;
	line-height: 1.1578947368;
}

@media (min-width: 1000px) {
	.service-plan__item__title small {
		font-size: 13px;
		line-height: 1.1538461538;
	}
}

.service-plan__item__text {
	margin: 0 auto;
	width: 85%;
	font-size: 21px;
	line-height: 1.2857142857;
}

@media (min-width: 1000px) {
	.service-plan__item__text {
		font-size: 16px;
		line-height: 1.5625;
		direction: ltr;
	}
}

.service-plan__item1 {
	color: #fff;
	background-color: #007aff;
}

.service-plan__item1 .service-plan__item__title {
	padding: 1rem 0;
	font-size: 30px;
	line-height: 1.2;
	border: 3px solid #fff;
}

.service-plan__item1 .service-plan__sample__item {
	border-bottom: 3px solid #ffc200;
}

@media (min-width: 1000px) {
	.service-plan__item1 .service-plan__sample__item {
		border-left: 3px solid #ffc200;
		border-bottom: none;
	}
}

.service-plan__item1 .service-plan__sample {
	background-image: url(../img/plan-sample1.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (min-width: 1000px) {
	.service-plan__item1 .service-plan__sample {
		background-image: none;
	}
}

.service-plan__item2 {
	margin-top: 20rem;
	background-color: #ebebeb;
}

@media (min-width: 1000px) {
	.service-plan__item2 {
		margin-top: 11rem;
	}
}

.service-plan__item2 .service-plan__item__title {
	font-size: 29px;
	line-height: 1.2068965517;
}

@media (min-width: 1000px) {
	.service-plan__item2 .service-plan__item__title {
		font-size: 23px;
		line-height: 1.2173913043;
	}
}

@media (min-width: 1251px) {
	.service-plan__item2 .service-plan__item__title {
		font-size: 27px;
		line-height: 1.1851851852;
	}
}

.service-plan__item2 .service-plan__sample {
	background-image: url(../img/plan-sample2.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (min-width: 1000px) {
	.service-plan__item2 .service-plan__sample {
		background-image: none;
	}
}

.service-plan__item3 {
	/* margin-top: 20rem; */
	margin-top: 26rem;
	background-color: #ffda00;
}

@media (min-width: 1000px) {
	.service-plan__item3 {
		margin-top: 22rem;
	}
}

.service-plan__item3 .service-plan__item__title {
	font-size: 25px;
	line-height: 1.2;
}

@media (min-width: 1000px) {
	.service-plan__item3 .service-plan__item__title {
		font-size: 20px;
		line-height: 1.25;
	}
}

@media (min-width: 1251px) {
	.service-plan__item3 .service-plan__item__title {
		font-size: 23px;
		line-height: 1.1739130435;
	}
}

.service-plan__item3 .service-plan__sample {
	background-image: url(../img/plan-sample3.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (min-width: 1000px) {
	.service-plan__item3 .service-plan__sample {
		background-image: none;
	}
}

.service-plan__number {
	margin: 0 auto;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-size: 22px;
	line-height: 1.2727272727;
}

@media (min-width: 1000px) {
	.service-plan__number {
		font-size: 17px;
		line-height: 1.5294117647;
	}
}

.service-plan__number img {
	padding-top: 0.5rem;
	width: 45%;
}

@media (min-width: 1000px) {
	.service-plan__number img {
		width: 30%;
	}
}

.service-plan__sample {
	margin-top: 3rem;
	padding: 4rem 0rem 0;
	border-radius: 999px 999px 0 0;
	background-color: #fff;
	color: #513400;
}

@media (min-width: 1000px) {
	.service-plan__sample {
		padding: 4rem 1rem 0;
	}
}

.service-plan__sample h5 {
	margin: 0 auto;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	position: relative;
	font-size: 33px;
	line-height: 1.6666666667;
}

.service-plan__sample span {
	position: absolute;
	top: 50%;
	width: 15px;
	height: 2px;
	transform: translateY(-50%);
	display: inline-block;
	background-color: #513400;
}

.service-plan__sample__list {
	margin: 3rem auto 0;
	text-align: center;
}

@media (min-width: 1000px) {
	.service-plan__sample__list {
		text-align: left;
		max-width: 270px;
	}
}

.service-plan__sample__item {
	margin: 0 auto;
	margin-bottom: 3rem;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	justify-content: end;
	border-bottom: 3px solid #ff7900;
	font-size: 24px;
	line-height: 1.4583333333;
}

@media (min-width: 1000px) {
	.service-plan__sample__item {
		display: flex !important;
		width: 100%;
		height: 46px;
		border-bottom: none;
		border-left: 3px solid #ff7900;
		margin-right: auto;
		margin-bottom: 3rem;
		padding-left: 5px;
		justify-content: center;
		font-size: 16px;
		line-height: 1.4375;
	}
}

.decoration-border-start {
	left: -25%;
}

.decoration-border-end {
	right: -25%;
}

.semicircle-top {
	position: absolute;
	bottom: 30%;
	left: 49%;
	transform: translateX(-50%);
	width: 400px;
	height: 200px;
	border: solid 4px #696969;
	border-radius: 200px 200px 0 0;
	border-bottom: 0;
	margin: 10px;
}

.service-plan__price__title {
	position: relative;
}

.service-plan__price__item {
	justify-content: space-between;
}

.decoration-circle-start,
.decoration-circle-end {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	display: inline-block;
	background-color: #ff7900;
	border-radius: 999px;
}

@media (min-width: 1000px) {

	.decoration-circle-start,
	.decoration-circle-end {
		width: 40px;
		height: 40px;
	}
}

.decoration-circle-start {
	left: -20%;
}

@media (min-width: 1000px) {
	.decoration-circle-start {
		left: -40%;
	}
}

.decoration-circle-end {
	right: -20%;
}

@media (min-width: 1000px) {
	.decoration-circle-end {
		right: -40%;
	}
}

.service-plan__price {
	margin-top: 10rem;
	background-image: url(../img/bg-price.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0;
}

@media (min-width: 1000px) {
	.service-plan__price {
		margin-top: 8rem;
	}
}

.service-plan__price__container {
	max-width: 500px;
	margin: 0 auto;
	padding: 5rem 0 3rem;
}

@media (min-width: 1000px) {
	.service-plan__price__container {
		padding: 5rem 0 7rem;
		max-width: 1000px;
	}
}

.service-plan__price__title {
	margin: 0 auto;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	text-align: center;
	font-size: 33px;
	line-height: 1.2121212121;
}

.service-plan__price__list {
	margin: 3rem auto 0;
}

.service-plan__price__list__container {
	margin: 0 auto;
	max-width: 1000px;
}

.service-plan__price__item {
	margin-bottom: 2rem;
	padding: 0.7rem 0.5rem;
	background-color: #fff;
	font-size: 14px;
	line-height: 1.1428571429;
	letter-spacing: -0.02em;
}

@media (min-width: 500px) {
	.service-plan__price__item {
		border-radius: 999px;
		padding: 0.7rem 1rem;
	}
}

@media (min-width: 1000px) {
	.service-plan__price__item {
		padding: 0.7rem 1rem;
		font-size: 22px;
		line-height: 1.2272727273;
	}
}

.service-plan__price__item-text {
	width: 60%;
}

.top-contact__button {
	margin: 0 auto;
	padding-top: 0rem;
	max-width: 800px;
	align-items: center;
}

@media (min-width: 1000px) {
	.top-contact__button {
		padding-top: 2rem;
		flex-direction: row;
		justify-content: space-between;
	}
}

.top-contact__button__item {
	margin-top: 1rem;
	padding: 0.5rem;
	width: 350px;
	background-color: #fff;
	border-radius: 999px;
	font-size: 15px;
	line-height: 1.4;
}

@media (min-width: 1000px) {
	.top-contact__button__item {
		padding: 2rem 0;
		font-size: 28px;
		line-height: 1.6785714286;
	}
}

.top-contact__button__item img {
	padding-right: 5px;
}

.top-contact__button__document img {
	width: 12px;
}

@media (min-width: 1000px) {
	.top-contact__button__document img {
		width: 20px;
	}
}

.top-contact__button__mail img {
	width: 15px;
}

@media (min-width: 1000px) {
	.top-contact__button__mail img {
		width: 26px;
	}
}

.top-contact__button__item span {
	position: relative;
}

.top-contact__button__item span::after {
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 3px;
	background: #ec7422;
	bottom: 0;
	transform: scale(0, 1);
	transform-origin: right top;
	/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;
	/*変形の時間*/
}

.top-contact__button__item:hover span::after {
	transform: scale(1, 1);
	/*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top;
	/*左から右に向かう*/
}



.p-kenkey-finance-voices__inner {
	width: 80%;
	max-width: 1200px;
	margin: 7% auto 0;
	padding: 20px;
	background-color: #ffc200
}

@media (max-width:999px) {
	.p-kenkey-finance-voices__inner {
		/* margin-top: 10%; */
		width: 95%;
	}

	.content-bnr-responsive {
		margin-top: 240px;
	}
}

@media (max-width:500px) {
	.p-kenkey-finance-voices__inner {
		/* margin-top: 200px; */
		/* padding: px; */
		width: 90%;
	}
}

.p-kenkey-finance-voices__item {
	padding: 40px 20px;
	background-color: #fff;
	color: #373d3f
}

.p-kenkey-finance-voices__item:not(:last-of-type) {
	margin-bottom: 20px
}

.p-kenkey-finance-voices__head {
	display: grid;
	display: -ms-grid;
	grid-template-rows: repeat(2, auto);
	grid-template-columns: repeat(2, auto);
	-ms-grid-rows: auto auto;
	-ms-grid-columns: auto auto;
	align-items: center;
	margin-bottom: 20px
}

@media (min-width:1px) {
	.p-kenkey-finance-voices__head {
		grid-template-columns: 120px auto
	}
}

.p-kenkey-finance-voices__icon {
	width: 90px;
	margin-right: 20px
}

@media (min-width:768px) {
	.p-kenkey-finance-voices__icon {
		grid-row: 1/3;
		-ms-grid-column: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 2
	}
}

.p-kenkey-finance-voices__info {
	margin-left: 16px
}

.p-kenkey-finance-voices__info-list {
	grid-column: 1/3;
	-ms-grid-column: 1;
	-ms-grid-row: 2;
	-ms-grid-column-span: 2;
	display: flex;
	padding-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
	flex-wrap: wrap;
	font-size: 1rem
}

@media (min-width:768px) {
	.p-kenkey-finance-voices__info-list {
		grid-column: 2/3;
		-ms-grid-column: 2;
		-ms-grid-row: 2
	}
}

@media (max-width:767px) {
	.p-kenkey-finance-voices__info-list {
		margin-top: 8px
	}
}

.p-kenkey-finance-voices__info-item {
	display: flex;
	margin-top: 8px;
	margin-right: 12px;
	align-items: flex-start
}

.p-kenkey-finance-voices__info-title {
	-ms-grid-column: 2;
	-ms-grid-row: 1;
	-ms-grid-row-align: center;
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #000;
}

.p-kenkey-finance-voices__info-title {
	margin: 0 0 16px 0;
}

@media (min-width:768px) {
	.p-kenkey-finance-voices__info-title {
		-ms-grid-column: 2;
		-ms-grid-row: 1
	}
}

.p-kenkey-finance-voices__info-item-label {
	display: inline-block;
	margin-right: 4px;
	padding: 4px 8px;
	background-color: #ffc200;
	color: #000;
	font-weight: 700;
	line-height: 1.25
}

.p-kenkey-finance-voices__info-item-txt {
	line-height: 1.8
}

.p-kenkey-finance-voices__content-flex {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.p-kenkey-finance-voices__content,
.p-kenkey-finance-voices__content {
	width: 49%;
}

@media (max-width:1000px) {
	.p-kenkey-finance-voices__content-flex {
		flex-direction: column;
	}

	.p-kenkey-finance-voices__content,
	.p-kenkey-finance-voices__content {
		width: 100%;
	}
}


.p-kenkey-finance-voices__content_title {
	display: inline-block;
	margin-right: 4px;
	padding: 4px 8px;
	background-color: #ffc200;
	color: #000;
	font-weight: 700;
	line-height: 1.25
}

.p-kenkey-finance-voices__content_txt {
	font-size: 1rem;
	line-height: 1.75
}

.p-kenkey-finance-voices__note {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.p-kenkey-finance-voices__note-txt {
	margin-top: 8px
}



.case-study {
	padding-top: 5rem;
	margin-top: 15rem;
	background-image: url(../img/dot-header-title-pc.png);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (min-width: 1000px) {
	.case-study {
		margin-top: 16rem;
	}
}

.case-study__item02 {
	margin-top: 8rem;
}

.case-study__item__title {
	margin-bottom: 2rem;
	text-align: center;
	font-size: 33px;
	line-height: 1.6666666667;
}

.case-study__item-type {
	padding-bottom: 0.5rem;
	text-align: left;
}

.case-study__item-text {
	text-align: left;
	width: 100%;
	font-size: 0.8em;
	margin-bottom: 1em;
}

@media (min-width: 1000px) {
	.case-study__item-text {
		flex-direction: row;
		justify-content: center;
	}
}

.case-study table {
	max-width: 700px;
	margin: 0 auto;
}

@media (min-width: 1000px) {
	.case-study table {
		max-width: 850px;
	}
}

.case-study th,
.case-study td {
	font-size: 20px;
	line-height: 2;
}

@media (min-width: 1000px) {

	.case-study th,
	.case-study td {
		font-size: 22px;
		line-height: 1.7272727273;
	}
}

.case-study th {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-weight: 900;
	/* word-break: keep-all; */
}

@media (min-width: 1000px) {
	.case-study th {
		width: 25%;
	}
}

.case-study td {
	width: 100%;
}

@media (min-width: 1000px) {
	.case-study td {
		width: 100%;
	}
}

.company {
	margin-top: 10rem;
	padding-top: 60px;
	margin-top: -60px;
}

@media (min-width: 1000px) {
	.company {
		margin-bottom: 5rem;
	}
}

.company__title {
	margin-bottom: 2rem;
	text-align: center;
	font-size: 33px;
	line-height: 1.2121212121;
}

.company__item {
	align-items: center;
	justify-content: center;
}

@media (min-width: 1000px) {
	.company__item {
		flex-direction: row;
		align-items: stretch;
	}
}

.company__item-header {
	width: 100%;
	margin-top: -1px;
	padding: 1rem 0;
	border: 1px solid #513400;
	box-sizing: border-box;
	font-weight: 900;
	background-color: #ffda00;
	font-size: 20px;
	line-height: 1.8;
}

@media (min-width: 1000px) {
	.company__item-header {
		margin-right: -1px;
		padding: 2rem 0;
		width: 30%;
		font-size: 22px;
		line-height: 1.2272727273;
	}
}

.company__item-text {
	width: 100%;
	margin-top: -1px;
	padding: 2rem 0;
	text-align: center;
	border: 1px solid #513400;
	box-sizing: border-box;
	font-size: 20px;
	line-height: 1.8;
}

@media (min-width: 1000px) {
	.company__item-text {
		padding-left: 2rem;
		width: 70%;
		text-align: left;
		font-size: 22px;
		line-height: 1.2272727273;
	}
}

.company__item-text p {
	margin: 0 auto;
	text-align: left;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.company table {
	width: 100%;
}

@media (min-width: 1000px) {
	.company table {
		margin: 0 auto;
		max-width: 700px;
	}
}

.company-greeting {
	margin: 8rem 0 10rem;
}

.company-greeting__title {
	text-align: center;
	font-size: 33px;
	line-height: 1.2121212121;
}

.company-greeting__content {
	margin-top: 2rem;
}

@media (min-width: 1000px) {
	.company-greeting__content {
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: stretch;
	}
}

@media (min-width: 1000px) {
	.company-greeting__image {
		width: 42%;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: 63% 50%;
		object-position: 63% 50%;
	}
}

.company-greeting__text {
	margin-bottom: 1rem;
	font-size: 20px;
	line-height: 2;
}

@media (min-width: 1000px) {
	.company-greeting__text {
		margin: 0;
		width: 55%;
		font-size: 20px;
		line-height: 2;
	}
}

.company-greeting__sign {
	text-align: right;
	padding-top: 1rem;
}

@media (min-width: 1000px) {
	.company-greeting__sign {
		padding-top: 2rem;
	}
}

.company-introduce {
	margin: 8rem 0 10rem;
}

.company-introduce__title {
	text-align: center;
	font-size: 33px;
	line-height: 1.2121212121;
}

.company-introduce__content {
	margin-top: 2rem;
}

.company-introduce__text {
	margin-bottom: 1rem;
	font-size: 20px;
	line-height: 2;
}

.company-introduce__sign {
	text-align: right;
	padding-top: 1rem;
}

@media (min-width: 1000px) {
	.company-introduce__sign {
		padding-top: 2rem;
	}

	.company-introduce__text {
		margin-left: 20%;
	}
}

.company-introduce__text a {
	color: #513400;
}

.company-introduce__text a:hover {
	color: #FFDA00;
}

.footer {
	border-top: 1px solid #513400;
}

@media (min-width: 1000px) {
	.footer {
		display: flex;
	}
}

.footer__wrapper {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 500px;
	align-items: center;
}

@media (min-width: 1000px) {
	.footer__wrapper {
		padding-right: 40px;
		max-width: 1000px;
		align-items: flex-end;
	}
}

.footer__wrapper-menu {
	flex-direction: column;
}

@media (min-width: 450px) and (max-width: 999px) {
	.footer__wrapper-menu {
		flex-direction: row;
	}
}

@media (min-width: 1000px) {
	.footer__wrapper-menu {
		margin-left: 0;
		padding-left: 40px;
		flex-direction: column;
		align-items: flex-start;
	}
}

.footer__logo {
	padding: 4rem 0;
}

@media (min-width: 1000px) {
	.footer__logo {
		padding: 6rem 0;
		width: 50%;
	}
}

.footer__logo-balloon {
	margin: 0 auto;
	width: 60%;
	max-width: 250px;
	position: relative;
}

@media (min-width: 1000px) {
	.footer__logo-balloon {
		width: 100%;
		max-width: 350px;
		margin-right: 0;
	}
}

.footer__logo-balloon p {
	width: 100%;
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	line-height: 1;
	text-align: center;
}

@media (min-width: 1000px) {
	.footer__logo-balloon p {
		font-size: 21px;
		line-height: 1.380952381;
	}
}

.footer__logo-image {
	margin: 0 auto;
	width: 40%;
}

@media (min-width: 1000px) {
	.footer__logo-image {
		width: 100%;
		max-width: 300px;
	}
}

.footer__menu {
	padding: 2rem 0;
	display: flex;
	align-items: center;
	color: #fff;
	background-color: #898989;
}

@media (min-width: 1000px) {
	.footer__menu {
		width: 50%;
	}
}

.footer__menu h6,
.footer__menu p {
	width: 100%;
}

.footer__menu-item {
	padding-bottom: 1rem;
	width: 100%;
}

@media (min-width: 1000px) {
	.footer__menu-item {
		padding-bottom: 2rem;
	}
}

.footer__menu-item-phone {
	padding-bottom: 0.5rem;
	justify-content: flex-start;
	font-size: 21px;
	line-height: 1.1904761905;
}

@media (min-width: 1000px) {
	.footer__menu-item-phone {
		font-size: 38px;
		line-height: 1.1842105263;
	}
}

.footer__menu-item-phone img {
	margin-right: 10px;
	width: 60%;
	max-width: 250px;
}

.footer__menu-item-tel {
	justify-content: flex-start;
	font-size: 12px;
	line-height: 1.1666666667;
}

@media (min-width: 1000px) {
	.footer__menu-item-tel {
		font-size: 21px;
		line-height: 1.1904761905;
	}
}

.footer__menu-item-tel img {
	margin: 0 0.9rem 0 0.2rem;
	width: 12px;
}

@media (min-width: 1000px) {
	.footer__menu-item-tel img {
		margin: 0 1.4rem 0 0.4rem;
		width: 22px;
	}
}

.footer__menu-item-mail {
	justify-content: flex-start;
	font-size: 12px;
	line-height: 1;
}

@media (min-width: 1000px) {
	.footer__menu-item-mail {
		font-size: 21px;
		line-height: 1.1904761905;
	}
}

.footer__menu-item-mail img {
	width: 12px;
	margin: 0 0.9rem 0 0.2rem;
}

@media (min-width: 1000px) {
	.footer__menu-item-mail img {
		margin: 0 1.4rem 0 0.4rem;
		width: 22px;
	}
}

h6 {
	padding-bottom: 0.3rem;
	font-size: 15px;
	line-height: 1.2;
}

@media (min-width: 1000px) {
	h6 {
		font-size: 25px;
		line-height: 1.2;
	}
}

.zip-code {
	font-size: 12px;
	line-height: 1;
}

@media (min-width: 1000px) {
	.zip-code {
		font-size: 16px;
		line-height: 1.1875;
	}
}

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

@media (min-width: 1000px) {
	.address {
		font-size: 16px;
		line-height: 1.1875;
	}
}

.contact-form {
	margin-top: 10rem;
}

@media (min-width: 1000px) {
	.contact-confirm {
		margin-top: 30rem;
	}
}

.contact-form h3,
.contact-confirm h3,
.thanks-page h3 {
	font-size: 40px;
	line-height: 1.125;
	/* word-break: keep-all; */
	text-align: center;
}

.contact-form .contents {
	margin: 3rem 0 5rem;
}

.contact-form .section-title {
	padding-top: 0;
}

.contact-form .toi {
	margin: 0 auto;
	width: 95%;
	max-width: 500px;
}

.contact-form .toi_chk {
	align-items: center;
	justify-content: flex-start;
}

.contact-form .toi_chk label {
	margin-left: 10px;
}

.contact-form input {
	padding: 0 10px;
	/* height: -webkit-fill-available; */
	height: 25px;
	min-height: 43px;
	font-size: 20px;
	background-color: #fff;
	color: #513400;
	border: none;
	width: 100%;
	box-sizing: border-box;
	border-radius: 5px;
	font-family: heisei-kaku-gothic-std, sans-serif;
	font-weight: 900;
}

.contact-form .toi_chk input {
	width: auto;
	height: 40px;
}

.contact-form .flex-area {
	padding: 2rem 0 1rem;
}

.contact-form .flex-area:last-child {
	border: none;
}

.contact-form .toi_label {
	font-size: 20px;
	padding: 0.5rem 1rem;
	background-color: #ffda00;
	border-radius: 5px 5px 0 0;
	border: 1px solid #513400;
	border-bottom: none;
	/* word-break: keep-all; */
}

@media (min-width: 1000px) {
	.contact-form .toi_label {
		width: 30%;
		border-radius: 5px 0 0 5px;
		border: 1px solid #513400;
		border-right: none;
	}
}

.contact-form .toi_naiyou {
	border-radius: 0 0 5px 5px;
	border: 1px solid #513400;
	border-top: none;
}

@media (min-width: 1000px) {
	.contact-form .toi_naiyou {
		width: 70%;
		border-radius: 0 5px 5px 0;
		border: 1px solid #513400;
		border-left: none;
	}
}

.contact-form textarea {
	width: 100%;
	height: -webkit-fill-available;
	font-size: 16px;
	border: none;
	box-sizing: border-box;
	border-radius: 0 0 5px 5px;
	resize: none;
}

.contact-form .btn_form {
	margin: 0 20px;
	padding: 5px 10px 2px;
	display: block;
	position: relative;
	height: auto;
	font-size: 16px;
	font-weight: bold;
	border-radius: 999px;
	border: 1px solid #513400;
}

.contact-form .btn_form::after {
	position: absolute;
	left: 9%;
	content: "";
	width: 80%;
	height: 3px;
	background: #ec7422;
	bottom: 12px;
	transform: scale(0, 1);
	transform-origin: right top;
	/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;
	/*変形の時間*/
}

.contact-form .btn_form input {
	border-radius: 999px;
}

.contact-form .btn_form input:hover {
	cursor: pointer;
}

.contact-form .btn_form:hover::after {
	transform: scale(1, 1);
	/*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top;
	/*左から右に向かう*/
}

.contact-confirm .toi_label {
	font-size: 20px;
	/* word-break: keep-all; */
}

.contact-confirm .toi_naiyou {
	padding: 10px;
	min-height: 43px;
	height: auto;
	font-size: 20px;
	background-color: #fff;
	border: none;
	border: 1px solid #513400;
	border-top: none;
	justify-content: flex-start;
	align-items: center;
}

@media (min-width: 1000px) {
	.contact-confirm .toi_naiyou {
		width: 70%;
		border-radius: 0 5px 5px 0;
		border: 1px solid #513400;
		border-left: none;
		height: auto;
	}
}

.contact-confirm .toi_naiyou_text-area {
	height: auto;
	overflow-wrap: break-word;
	word-break: break-all;
}

.thanks-page {
	margin: 10rem 0 3rem;
}

.thanks-text {
	margin: 0 auto;
	padding: 5rem 0;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 100%;
	font-size: 16px;
}

@media (min-width: 1000px) {
	.visible-phone {
		display: none !important;
	}

	.hidden-phone {
		display: inherit !important;
		position: relative;
	}

	header.fixed .header-inner {
		margin: 0 auto;
		width: 90%;
		max-width: 1000px;
	}

	.content-block-inner {
		margin: 0 auto;
		max-width: 1000px;
	}

	.fv-text {
		top: 20%;
	}

	.index_flow.visible-phone .index_flow-text {
		width: 48%;
		text-align: left;
	}

	.index_flow.hidden-phone .index_flow-text {
		width: 48%;
		text-align: left;
	}

	.index_service-menu .bg {
		padding: 5rem 0 7rem;
		width: 100vw;
		height: auto;
		background-color: #ffffec;
		z-index: -1;
	}

	.index_service-menu-outer {
		max-width: 1000px;
	}

	.index_service-menu_list {
		width: 33.3333333333%;
		font-size: 20px;
	}

	.index_service-menu_list h5 {
		font-size: 30px;
	}

	.index_service-menu_list:nth-child(3) {
		background-color: #fff;
	}

	.index_service-menu_list:nth-child(4) {
		background-color: #ffcc33;
	}

	.pages-button {
		flex-direction: row;
	}

	.pages-button li:nth-child(2) {
		margin: 0 2%;
	}

	.index_news-list {
		font-size: 20px;
	}

	.banner {
		width: 50%;
	}

	footer .footer-logo .flex h2 {
		font-size: 36px;
	}

	footer .footer-logo .flex h2 span {
		font-size: 12px;
	}

	footer .footer-nav_menu {
		flex-direction: row;
	}

	.company_company table tbody tr {
		font-size: 25px;
	}

	.contact-form .toi {
		max-width: 60%;
		display: flex;
		justify-content: space-between;
	}

	.contact-form textarea {
		font-size: 20px;
	}

	.thanks-text {
		font-size: 28px;
	}
}

.policy_btn {
	margin: 0 auto;
	margin-top: 1rem;
	width: 95%;
	text-align: center;
}

.policy_btn a {
	color: #0045aa;
	text-decoration: underline;
}

.policy_btn a:hover {
	opacity: 0.7;
}

.bread-crumb {
	margin-top: 6rem;
	padding-left: 3rem;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 100;
}

.bread-crumb a {
	text-decoration: underline;
}

.bread-crumb span {
	padding: 0 5px;
}

.privacy-policy {
	margin: 5rem 0 7rem;
}

.privacy-policy__container {
	margin: 0 auto;
	width: 90%;
	max-width: 500px;
}

@media (min-width: 1000px) {
	.privacy-policy__container {
		max-width: 700px;
	}
}

.privacy-policy__title {
	text-align: center;
	font-size: 32px;
	line-height: 1.3125;
}

.privacy-policy__content {
	margin-top: 3rem;
}

.privacy-policy__top-text {
	font-size: 16px;
	line-height: 1.8125;
	font-weight: 500;
}

.privacy-policy__item {
	margin-top: 3rem;
}

.privacy-policy__item__title {
	font-weight: bold;
	font-size: 26px;
	line-height: 1.5;
}

.privacy-policy__item__text {
	margin-top: 1rem;
	font-size: 16px;
	line-height: 1.8125;
	font-weight: 500;
}

.privacy-policy__close {
	margin: 0 auto;
	margin-top: 5rem;
	text-align: center;
	border: 1px solid #513400;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	border-radius: 10px;
}

.privacy-policy__close input {
	padding: 10px 15px 6px;
	border: none;
	background-color: transparent;
	font-family: heisei-kaku-gothic-std, sans-serif;
	font-weight: 500;
	color: #513400;
	font-size: 16px;
	line-height: 1.8125;
}

.privacy-policy__close input:hover {
	cursor: pointer;
}

.privacy-policy__close:hover {
	cursor: pointer;
	opacity: 0.7;
}

/*# sourceMappingURL=style.css.map */



.balloon {
	display: flex;
	justify-content: flex-end;
}

.balloon1-top {
	position: relative;
	display: inline-block;
	margin: 1.5em 0;
	padding: 7px 10px;
	min-width: 120px;
	max-width: 100%;
	color: #555;
	font-size: 16px;
	background: #e0edff;
	border-radius: 15px;
}

.balloon1-top:before {
	content: "";
	position: absolute;
	top: -30px;
	left: 25%;
	border: 15px solid transparent;
	border-bottom: 15px solid #e0edff;
}

.balloon1-top p {
	margin: 0;
	padding: 1em;
}




.news_contents {
	margin: 60px auto;
	width: 70%;
}

.news_contents_topics {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 4%;
}

.news_contents_topic {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
	padding: 1em 1em 1em;
	font-weight: normal;
}

.news_contents_topic_day {
	white-space: nowrap;
	margin-right: 1em;
}

.news_contents_topic_category {
	display: inline;
	color: #fff;
	background-color: #ffc200;
	font-size: .7em;
	padding: .5em;
	margin-right: 1em;
	border-radius: 10px;
	white-space: nowrap;
}

.news_contents_topic_text a:hover {
	color: #ffc200;
}


@media (max-width:1024px) {
	.news_contents {
		width: 90%;
		display: flex;
		flex-direction: column;
	}

	.news_contents_topic {
		width: 100%;
	}
}

@media (max-width:649px) {
	.news_contents_topic {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.news_contents_topic_category img {
		margin: 0;
	}
}



/* BCP説明用ポップアップ  */
.bcp-button {
	position: relative;
	top: 1em;
	left: 2.2em;
	text-align: left;
}

button {
	color: #1d54a7;
	font-size: 21px !important;
	font-weight: bold;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

@media (min-width: 1000px) {
	.bcp-button {
		left: 1.8em;
	}

	button {
		font-size: 16px !important;
	}
}


.popup {
	position: relative;
	display: none;
	height: 100vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	/* 背景を透過 */
	position: fixed;
	top: 0;
	left: 0;
	direction: ltr;
	z-index: 999;
}

.popup-content {
	position: relative;
	background: #fff;
	border-radius: 10px;
	padding: 60px 30px 30px 30px;
	width: 50%;
	line-height: 2;
}

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

#close {
	position: absolute;
	font-size: 3em !important;
	top: 0px;
	right: 10px;
}