@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
	height: auto !important;
	height: initial !important;
}

.u-desktop {
	display: none;
}
@media screen and (min-width: 768px) {
	.u-desktop {
		display: block;
	}
}

@media screen and (min-width: 768px) {
	.u-mobile {
		display: none;
	}
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* ホバー */
a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: opacity .3s;
	        transition: opacity .3s;
}
@media screen and (min-width: 768px) {
	a:hover {
		opacity: .8;
	}
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
	padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */
html {
	scroll-behavior: smooth;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	line-height: 1.5;

	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
	outline: none;
	border: none;
	border-radius: 0;
	background: transparent;
	font: inherit;

	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.inner {
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.inner {
		padding-right: 25px;
		padding-left: 25px;
		max-width: 1190px;
	}
}

.test {
	background-color: #111;
	color: #fff;
	font-size: 20px;
	font-size: 1.25rem;
}

.bg-box {
	background: -webkit-gradient(linear, left top, right top, color-stop(2%, rgb(243, 249, 254)), color-stop(27%, rgb(255, 255, 255)), color-stop(80%, rgba(243, 249, 254, .9612219888)));
	background: linear-gradient(90deg, rgb(243, 249, 254) 2%, rgb(255, 255, 255) 27%, rgba(243, 249, 254, .9612219888) 80%);
}

.case-head {
	padding: 40px 0;
}

.case-head__item {
	padding: 20px 12px 20px;
}
@media screen and (min-width: 768px) {
	.case-head__item {
		display: grid;
		grid-template-columns: 1fr 2fr;

		gap: 0 20px;
	}
}

.case-head__img-box {
	height: 360px;
	text-align: center;
}
@media screen and (min-width: 1024px) {
	.case-head__img-box {
		height: 400px;
	}
}

.case-head__img-box--hiraga {
	height: auto;
}

.case-head__img {
	margin-right: auto;
	margin-left: auto;
	max-height: 100%;
	width: auto;
	height: 100%;

	-o-object-fit: contain;
	   object-fit: contain;
}
.case-head__img-box--hiraga .case-head__img {
	max-height: 360px;
}
@media screen and (max-width: 767px) {
	.case-head__img-box--hiraga .case-head__img {
		max-height: none;
		max-height: initial;
		height: auto;
	}
}

@media screen and (min-width: 768px) {
	.case-head__text-box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		    flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.case-head__title {
	margin-top: 16px;
	font-size: 16px;
}
@media screen and (min-width: 768px) {
	.case-head__title {
		margin-top: 0;
		font-size: 24px;
	}
}

.case-head__text {
	margin-top: 16px;
	font-size: 14px;
}
@media screen and (min-width: 768px) {
	.case-head__text {
		font-size: 18px;
	}
}

.case-head__link {
	display: inline-block;
	display: block;
	margin-top: 20px;
	padding: 10px 2cqh;
	width: 100%;
	border: 1px solid #18c16f;
	border-radius: 10px;
	background-color: #18c16f;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .12em;
	-webkit-transition: color .3s, background-color .3s;
	        transition: color .3s, background-color .3s;
}
@media screen and (min-width: 768px) {
	.case-head__link {
		margin-top: 30px;
		max-width: 300px;
		font-size: 16px;
	}
	.case-head__link:hover {
		background-color: #fff;
		color: #18c16f;
	}
}

.case-head__icon-box {
	display: inline-block;
	margin: 0 3px;
	width: 16px;
	height: 16px;
}

.case-head__icon {
	width: 100%;
	height: 100%;

	-o-object-fit: cover;
	   object-fit: cover;
}

.case-item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	    flex-direction: column;
	padding: 40px 12px 20px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .16);
	        box-shadow: 0 0 10px rgba(0, 0, 0, .16);
	-webkit-transition: -webkit-transform .3s;
	        transition: -webkit-transform .3s;
	        transition:         transform .3s;
	        transition:         transform .3s, -webkit-transform .3s;
}
@media screen and (min-width: 768px) {
	.case-item {
		padding: 40px 18px 24px;
	}
}

@media screen and (min-width: 768px) {
	.case-item {
		position: relative;
		display: grid;
		grid-template-columns: 1fr 2fr;
		padding: 40px 12px 20px;
		background-color: #fff;
		-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .16);
		        box-shadow: 0 0 10px rgba(0, 0, 0, .16);

		grid-template-rows: 1fr auto;
		grid-auto-columns: 1fr;
		gap: 0 20px;
		grid-auto-flow: row;
		grid-template-areas: "case-item__head case-item__body" "case-item__head case-item__bottom-box";
	}
}

.case-head__item--hiraga {
	border-radius: 8px;
	background: linear-gradient(170deg, #f9fffd, #c7f0e1);
}

.case-item__head {
	grid-area: case-item__head;
}

.case-item__body {
	grid-area: case-item__body;
}

.case-item__bottom-box {
	position: relative;

	grid-area: case-item__bottom-box;
}

.case-item__category {
	position: absolute;
	top: 8px;
	left: 6px;
	display: inline-block;
	padding: 4px 8px;
	width: -webkit-fit-content;
	width:    -moz-fit-content;
	width:         fit-content;
	border: 2px solid #18c16f;
	border-radius: 30px;
	background-color: #fff;
	color: #18c16f;
	font-size: 12px;
	font-weight: 900;
}

.case-item__head {
	position: relative;
	z-index: 10;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
}

.case-item__logo {
	margin-right: auto;
	margin-left: auto;
	width: auto;
	height: 50px;
}
.case-item__logo.case-item__logo--wide {
	height: 100px;
}

.case-item__body {
	margin-top: 20px;
}

.case-item__title {
	font-size: 16px;
}
@media screen and (min-width: 768px) {
	.case-item__title {
		font-size: 22px;
	}
}

.case-item__text {
	margin-top: 16px;
	margin-bottom: 0;
	font-size: 14px;
	letter-spacing: .05em;
}
@media screen and (min-width: 768px) {
	.case-item__text {
		font-size: 16px;
	}
}
.case-item__text + .case-item__text {
	margin-top: 8px;
}

.case-item__form-box {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 500;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	visibility: hidden;
	padding: 20px;
	width: 90%;
	background: #efefef;
	text-align: center;
	opacity: 0;
}
@media screen and (min-width: 600px) {
	.case-item__form-box {
		width: auto;
	}
}
.case-item__form-box input[type=checkbox] {
	display: inline-block;

	-webkit-appearance: auto;
	   -moz-appearance: auto;
	        appearance: auto;
}
.case-item__form-box input[type=text] {
	padding: 5px;
	border: 1px solid #777;
	background-color: #d9d9d9;
	font-size: 16px;
}

.case-item__form-box--without-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.case-item__form-box.active {
	visibility: visible;
	overflow-y: auto;
	opacity: 1;

	overscroll-behavior-y: contain;
}

.case-item__text--large {
	font-size: 18px;
}
@media screen and (min-width: 768px) {
	.case-item__text--large {
		font-size: 20px;
	}
}

.case__item .case__submit-button,
.sec .case__submit-button {
	display: inline-block;
	border: 1px solid #18c16f;
	border-radius: 10px;
	background-color: #18c16f;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: .12em;
	-webkit-transition: color .3s, background-color .3s;
	        transition: color .3s, background-color .3s;
}
@media screen and (min-width: 768px) {
	.case__item .case__submit-button,
	.sec .case__submit-button {
		font-size: 16px;
	}
	.case__item .case__submit-button:hover,
	.sec .case__submit-button:hover {
		background-color: #fff;
		color: #18c16f;
	}
}
.case__item .case__note-text,
.sec .case__note-text {
	font-size: 13px;
}
@media screen and (min-width: 768px) {
	.case__item .case__note-text,
	.sec .case__note-text {
		font-size: 14px;
	}
}
.case__item .case__link.form-element-instruction,
.sec .case__link.form-element-instruction {
	font-size: 12px;
}

.case-item__button--decorated {
	position: relative;
}

.case-item__balloon {
	position: absolute;
	top: 0;
	left: -60px;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	display: grid;
	place-items: center;
	padding: 5px;
	width: 50px;
	height: 30px;
	border-radius: 5px;
	background: #ff8e9d;
	color: #fff;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
	font-weight: bold;
	cursor: none;
	pointer-events: none;
}
@media screen and (min-width: 768px) {
	.case-item__balloon {
		left: -60px;
		left: -58px;
		width: 50px;
		height: 30px;
		font-size: 14px;
	}
}
.case-item__balloon::before {
	position: absolute;
	right: -10px;
	bottom: -5px;
	z-index: 0;
	-webkit-transform: rotate(30deg);
	        transform: rotate(30deg);
	border: 6px solid transparent;
	border-left: 12px solid #ff8e9d;
	content: "";
}
.case-item__modal-close {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 10;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.case-item__modal-close::before {
	position: absolute;
	top: 0;
	right: calc(50% - 1px);
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	display: block;
	width: 2px;
	height: 20px;
	background-color: #000;
	content: "";
}
.case-item__modal-close::after {
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	display: block;
	width: 20px;
	height: 2px;
	background-color: #000;
	content: "";
}

.case-item__bottom-box {
	margin-top: auto;
	margin-top: 32px;
	margin-top: 2rem;
}

.case-item__bottom-box--2col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	    flex-direction: column;

	gap: 20px;
}
@media screen and (min-width: 768px) {
	.case-item__bottom-box--2col {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		    flex-direction: row-reverse;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}

.case-item__button {
	display: block;
	margin: auto;
	padding: 4px 16px;
	padding: .25rem 1rem;
	max-width: 300px;
	max-width: 18.75rem;
	width: 100%;
	border: 1px solid #18c16f;
	border-radius: 10px;
	background-color: #18c16f;
	color: #fff;
	text-align: center;
	font-weight: bold;
	letter-spacing: .15em;
	-webkit-transition: color .3s, background-color .3s;
	        transition: color .3s, background-color .3s;
}
@media screen and (min-width: 768px) {
	.case-item__button {
		margin: 0;
		margin: initial;
	}
	.case-item__button:hover {
		background-color: #fff;
		color: #18c16f;
	}
}

.case-item__button--wide {
	margin-right: auto;
	margin-left: auto;
	padding: 8px 16px;
	font-size: 16px;
}
@media screen and (min-width: 768px) {
	.case-item__button--wide {
		padding: 10px 20px;
		max-width: 320px;
		font-size: 18px;
	}
}

.case-item__movie-button {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 32px;
	margin-top: 2rem;
	margin-right: auto;
	margin-bottom: -10px;
	margin-left: auto;
	padding: 4px 8px 4px 28px;
	padding: 4px 16px;
	padding: .25rem 1rem;
	max-width: 300px;
	max-width: 18.75rem;
	width: 100%;
	border: 1px solid #ff9e30;
	border-radius: 10px;
	background-color: #ff9e30;
	color: #fff;
	font-weight: bold;
	letter-spacing: .1em;
	-webkit-transition: .3s;
	        transition: .3s;
}
@media screen and (min-width: 768px) {
	.case-item__movie-button {
		margin: 0;
	}
	.case-item__movie-button:hover {
		background-color: #fff;
		color: #ff9e30;
	}
}
@media screen and (min-width: 1440px) {
	.case-item__movie-button {
		margin: 0;
	}
}

.case-item__movie-button::before {
	position: absolute;
	top: -180px;
	left: 0;
	display: inline-block;
	width: 30px;
	height: 100%;
	background-color: #fff;
	content: "";
	-webkit-animation: shiny-btn6 3s ease-in-out infinite;
	        animation: shiny-btn6 3s ease-in-out infinite;
}

@-webkit-keyframes shiny-btn6 {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: .5;
	}
	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

@keyframes shiny-btn6 {
	0% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		-webkit-transform: scale(0) rotate(45deg);
		opacity: .5;
	}
	81% {
		-webkit-transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}
.case-item__movie-icon {
	position: absolute;
	top: 50%;
	left: 10px;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	padding: 2px 4px;
	border-radius: 3px;
	background-color: #fff;
	-webkit-transition: .3s;
	        transition: .3s;
}
.case-item__movie-icon::after {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-right: 0;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #ff9e30;
	content: "";
	-webkit-transition: .3s;
	        transition: .3s;
}

@media screen and (min-width: 768px) {
	.case-item__movie-button:hover .case-item__movie-icon {
		background-color: #ff9e30;
	}
	.case-item__movie-button:hover .case-item__movie-icon::after {
		border-left-color: #fff;
	}
}
.case-item__movie-box {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 500;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	visibility: hidden;
	padding: 20px;
	width: 90%;
	background: #efefef;
	text-align: center;
	opacity: 0;
	pointer-events: none;
}
@media screen and (min-width: 600px) {
	.case-item__movie-box {
		width: auto;
	}
}

.case-item__movie-box.active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.case-item__click {
	top: 10px;
	right: 136px;
	display: block;
	width: 36px;
	height: auto;
	-webkit-animation: clickAnime 1.5s infinite;
	        animation: clickAnime 1.5s infinite;
}

@-webkit-keyframes clickAnime {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(.95);
		        transform: scale(.95);
		opacity: .3;
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}

@keyframes clickAnime {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(.95);
		        transform: scale(.95);
		opacity: .3;
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
		opacity: 1;
	}
}
.case-item__triangle {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 50px;
	height: 50px;
	background: linear-gradient(225deg, #ff8e9d 0 50%, #fff 50% 100%);
}

.case-item__new {
	position: absolute;
	top: 8px;
	right: 2px;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
}

.case {
	padding: 50px 0;
}

.case__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	    flex-direction: column;
	grid-template-columns: 1fr;
	margin-top: 20px;

	gap: 20px;
}

.case__heading02 {
	position: relative;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-right: auto;
	margin-left: auto;
	padding: 4px;
	width: 240px;
	border-radius: 4px;
	background: #18c16f;
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.case__heading02 {
		width: 300px;
	}
}

.case__cmn {
	padding-bottom: 80px;
	background-color: #c7f0e1;
}

.case__cmn + .case__cmn {
	margin-top: 100px;
}

.content {
	padding: 40px 0;
}
@media screen and (min-width: 768px) {
	.content {
		padding: 80px 0;
	}
}

.fv {
	padding: 100px 0;
	padding: 6.25rem 0;
	background-image: url(/images/common/Background3-1.png);
	background-size: cover;
}

.fv__title {
	font-size: 40px;
	font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
	.fv__title {
		font-size: 3.75rem;
	}
}

.modal-layer.active {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 400;
	overflow-y: auto;
	width: 100vw;
	height: 100vh;
	background-color: rgba(136, 136, 136, .9);

	overscroll-behavior-y: contain;
}

.sec + .sec {
	margin-top: 80px;
}

.sec__heading02 {
	position: relative;
	padding-left: 10px;
	font-size: 20px;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.sec__heading02 {
		font-size: 24px;
	}
}
.sec__heading02::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 4px;
	height: 100%;
	background-color: #18c16f;
	content: "";
}

.sec__body {
	margin-top: 20px;
}

.sec__text {
	font-size: 16px;
}
@media screen and (min-width: 768px) {
	.sec__text {
		font-size: 18px;
	}
}

.sec__img-box + * {
	margin-top: 20px;
}

.sec__img-box--small {
	margin-right: auto;
	margin-left: auto;
	max-width: 240px;
}
@media screen and (min-width: 768px) {
	.sec__img-box--small {
		max-width: 300px;
	}
}

.sec__img-box--thin {
	margin-right: auto;
	margin-left: auto;
	max-width: 300px;
}
@media screen and (min-width: 768px) {
	.sec__img-box--thin {
		max-width: 600px;
	}
}

.sec__img-box--middle {
	margin-right: auto;
	margin-left: auto;
	max-width: 300px;
}
@media screen and (min-width: 768px) {
	.sec__img-box--middle {
		max-width: 740px;
	}
}

.sec__img {
	max-width: 100%;
	width: 100%;

	-o-object-fit: cover;
	   object-fit: cover;
}

.sec__blur-box {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(95%, rgb(255, 255, 255)));
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 95%);
	pointer-events: none;
}

.sec__blur-box--thin {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 0)), color-stop(95%, rgba(255, 255, 255, .8)));
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, .8) 95%);
	pointer-events: none;
}
@media screen and (min-width: 768px) {
	.sec__blur-box--thin {
		background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(95%, rgba(255, 255, 255, .8)));
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, .8) 95%);
	}
}

.sec__form-text01 {
	text-align: center;
	font-size: 14px;
}
@media screen and (min-width: 768px) {
	.sec__form-text01 {
		font-size: 18px;
	}
}

.sec__form-text02 {
	margin-top: 60px;
	text-align: center;
	font-size: 13px;
}
@media screen and (min-width: 768px) {
	.sec__form-text02 {
		margin-top: 80px;
		text-align: right;
		font-size: 14px;
	}
}

.u-inline-block {
	display: inline-block;
}

.u-relative {
	position: relative;
}

.u-bottom {
	position: absolute;
	bottom: 0;
	z-index: 2;
}

#case-tohun {
	scroll-margin-top: 90px;
}
/*# sourceMappingURL=styles.css.map */
