@charset "utf-8";

/*----------------------------------------------------------------------------------------

	base.css

----------------------------------------------------------------------------------------*/

:root {
	--acc1: #005091;
	--acc2: #c9eaf8;
	--bgc1: #eff7fa;
	--red: #ec221f;
	--yellow: #ffea48;
	--header-h: 100px;
}

@media screen and (max-width: 767px) {
	:root {
		--header-h: 60px;
	}
}

/* ------------ */

html {
	scroll-behavior: smooth;
}
head + body {
	font-size: 16px;
	line-height: 1.8;
}
body>.wrapper {
	display: block;
	/*ibox対策*/
}
.cont-w {
	margin-right: auto;
	margin-left: auto;
	max-width: 1080px !important;
	width: 100%;
}
.dnone_pc {
	display: none !important;
}
.dnone_sp {
	display: block !important;
}

/* sp */
@media screen and (max-width: 767px) {

	head + body {
		font-size: 15px;
	}
	.cont-w {
		width: 100% !important;
		padding: 0 20px;
	}
	.dnone_sp {
		display: none !important;
	}
	.dnone_pc {
		display: block !important;
	}
}


/* 共通 //
////////////////////////////////////////////////////////////////////*/

/* ロールオーバー //
---------------------------------------------- */
.rov a {
	transition: opacity 0.2s;
}
.rov a:hover {
	opacity: 0.8;
}

/* 見出し //
---------------------------------------------- */
.sec_ttl {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 32px;
	text-align: center;
}
.sec_ttl .em {
	display: inline-block;
	font-size: 4.8rem;
	padding: 0 4px;
}
.lead {
	text-align: center;
}

/* sp */
@media screen and (max-width: 767px) {
	.sec_ttl {
		font-size: 2.3rem;
		margin-bottom: 20px;
	}
	.sec_ttl .em {
		font-size: 2.6rem;
		padding: 0 2px;
	}
	.lead {
		text-align: left;
	}
}


/* ヘッダー //
////////////////////////////////////////////////////////////////////*/

.header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 40px;
	width: 100%;
	height: var(--header-h);
	background-color: rgba(255,255,255,0);
	backdrop-filter: blur(0px);
	transition: background-color .3s ease, backdrop-filter .3s ease;
	padding-left: 40px;
	z-index: 10;
}
.header_logo {
	margin-right: auto;
}
.header_logo a {
	display: block;
}
.header_menu {
	display: flex;
	align-items: center;
	gap: 40px;
}
.header_menu li a {
	font-size: 1.6rem;
}
.header_btn {
	height: 100%;
}
.header_btn a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	background-color: var(--acc1);
	height: 100%;
	padding: 0 48px;
}

/* sp */
@media screen and (max-width: 767px) {

	.header {
		padding-left: 20px;
		gap: 20px;
	}
	.header_logo a img {
		width: 260px;
	}

	/* hamburger //
	---------------------------------------------- */
	.hamburger {
		position: relative;
		width: 60px;
		height: 60px;
		border: none;
		background: transparent;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		z-index: 200;
	}
	.hamburger_line {
		width: 20px;
		height: 2px;
		background-color: #333;
		border-radius: 1px;
		transition: all .6s;
	}
	.hamburger.active .hamburger_line {
		background-color: #fff;
	}
	.hamburger.active .hamburger_line:nth-of-type(1) {
		transform: translateY(7px) rotate(-45deg);
	}
	.hamburger.active .hamburger_line:nth-of-type(2) {
		opacity: 0;
	}
	.hamburger.active .hamburger_line:nth-of-type(3) {
		transform: translateY(-7px) rotate(45deg);
	}

	/* overlay-nav */
	.overlay-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--acc1);
		visibility: hidden;
		opacity: 0;
		transition: all .6s;
		z-index: 100;
	}
	.overlay-nav.active {
		visibility: visible;
		opacity: 1;
	}
	.overlay-nav_content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		text-align: center;
	}
	.overlay-nav_list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.overlay-nav_item {
		opacity: 0;
		transform: translateY(20px);
		transition: all .6s;
	}
	.overlay-nav.active .overlay-nav_item {
		opacity: 1;
		transform: translateY(0);
	}
	.overlay-nav.active .overlay-nav_item:nth-child(1) { transition-delay: 0.1s; }
	.overlay-nav.active .overlay-nav_item:nth-child(2) { transition-delay: 0.15s; }
	.overlay-nav.active .overlay-nav_item:nth-child(3) { transition-delay: 0.2s; }
	.overlay-nav.active .overlay-nav_item:nth-child(4) { transition-delay: 0.25s; }
	.overlay-nav.active .overlay-nav_item:nth-child(5) { transition-delay: 0.3s; }
	.overlay-nav_link {
		display: inline-block;
		color: #fff;
		font-size: 1.6rem;
		padding: 16px;
	}
	.overlay-nav.active .overlay-nav_item:nth-child(5) .overlay-nav_link {
		border: 2px solid #fff;
		border-radius: 3px;
		padding: 14px 60px;
		margin-top: 20px;
	}
}


/* メインコンテンツ //
////////////////////////////////////////////////////////////////////*/

/* mv //
---------------------------------------------- */
.mv {
	background: url(../image/bg_mv.png) no-repeat top / cover;
	height: 780px;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
.mv_inner {
	position: relative;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 74px 0 0;
}
.mv_content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.mv_content::before,
.mv_content::after {
	content: "";
	position: absolute;
	top: 16%;
	height: 302px;
	z-index: 1;
}
.mv_content::before {
	left: 2.5%;
	background: url(../image/img_mv_people01.png) no-repeat center / contain;
	aspect-ratio: 118 / 302;
}
.mv_content::after {
  right: 1%;
	background: url(../image/img_mv_people02.png) no-repeat center / contain;
	aspect-ratio: 162 / 302;
}
.mv .mv_lead {
	position: absolute;
  top: 10px;
  left: 38%;
  transform: translateX(-50%);
	color: var(--acc1);
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
.mv .mv_lead p {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.mv .mv_lead p::after {
	content: "";
	position: relative;
	display: inline-block;
	width: 482px;
	aspect-ratio: 482 / 62;
	background: url(../image/img_fukidashi.png) no-repeat center / contain;
}
.mv .mv_ttl {
	width: 890px;
	margin-right: 30px;
}
.mv .mv_txt {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 8px;
	text-align: center;
}

/* sp */
@media screen and (max-width: 767px) {
	.mv {
		background: url(../image/bg_mv_sp.png) no-repeat top / 775px auto;
		height: auto;
	}
	.mv_inner {
		padding: 35px 0 120px;
	}
	.mv_content::before,
	.mv_content::after {
		top: 42%;
		height: 134px;
		transform: translateX(-50%);
	}
	.mv_content::before {
		left: calc(50% - 142px);
	}
	.mv_content::after {
		left: calc(50% + 136px);
		right: auto;
	}
	.mv .mv_lead {
		position: static;
		transform: none;
		font-size: 1.8rem;
	}
	.mv .mv_lead p::after {
		width: 300px;
		max-width: 100%;
		background: url(../image/img_fukidashi_sp.png) no-repeat center / contain;
	}
	.mv .mv_ttl {
		width: 239px;
		margin-top: 12px;
		margin-right: 12px;
	}
	.mv .mv_txt {
		font-size: 1.5rem;
		text-shadow:
			4px 4px 4px #C9ECFF, -4px -4px 4px #C9ECFF,
			-4px 4px 4px #C9ECFF,  4px -4px 4px #C9ECFF,
			4px 0 4px #C9ECFF, -4px  0 4px #C9ECFF,
			0 4px 4px #C9ECFF,  0 -4px 4px #C9ECFF;
		margin: 16px 20px 0;
	}
}

/* area //
---------------------------------------------- */
.area {
	color: #fff;
	background-color: var(--acc1);
	padding: 48px 0;
}
.area_inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 10px 40px;
}
.area .sec_ttl {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0;
}
.area .area_txt p {
	font-size: 1.8rem;
	font-weight: 500;
}

/* sp */
@media screen and (max-width: 767px) {
	.area {
		padding: 28px 0 36px;
	}
	.area_inner {
		flex-direction: column;
	}
	.area .sec_ttl {
		font-size: 2rem;
	}
	.area .area_txt p {
		font-size: 1.5rem;
		text-align: center;
	}
	.area .area_txt p.note {
		font-size: 1.3rem;
		margin-top: 5px;
	}
}

/* problem //
---------------------------------------------- */
.problem {
	position: relative;
	background-color: var(--bgc1);
	padding-top: 60px;
	margin-bottom: 120px;
}
.problem::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -120px;
	width: 100%;
	height: 120px;
	background-color: var(--bgc1);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.problem .problem_items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px 20px;
	margin: 0 40px;
}
.problem .problem_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 20px 12px;
	background-color: #fff;
	border: 2px solid var(--acc1);
	border-radius: 6px;
	padding: 24px 16px;
	text-align: center;
}
.problem .problem_item .ttl {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
}
.problem .problem_item .img {
	width: 160px;
	margin: 0 auto;
}
.problem .problem_txt {
	margin-top: 48px;
	text-align: center;
}
.problem .problem_txt .answer {
	display: inline-block;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	background-color: var(--acc1);
	padding: 12px 40px;
}
.problem .problem_txt .answer + p {
	margin-top: 16px;
}

/* sp */
@media screen and (max-width: 767px) {
	.problem {
		padding-top: 40px;
		padding-bottom: 20px;
		margin-bottom: 40px;
	}
	.problem::after {
		bottom: -40px;
		height: 40px;
	}
	.problem .problem_items {
		grid-template-columns: repeat(1, 1fr);
		margin: 0;
	}
	.problem .problem_item {
		flex-direction: row-reverse;
		padding: 14px 20px;
	}
	.problem .problem_item .ttl {
		font-size: 1.6rem;
		text-align: left;
		flex: 1;
	}
	.problem .problem_item .img {
		width: 88px;
		flex-shrink: 0;
	}
	.problem .problem_txt {
		margin-top: 32px;
	}
	.problem .problem_txt .answer {
		font-size: 1.8rem;
		padding: 12px 14px;
	}
}

/* mechanism //
---------------------------------------------- */
.mechanism {
	padding-top: 60px;
}
.mechanism .sec_ttl {
	font-size: 4.8rem;
}
.mechanism .sec_ttl .em {
	display: inline-block;
	color: #fff;
	line-height: 1;
	background: var(--red);
	padding: 8px 16px 18px;
	margin: 0 8px;
}
.mechanism .sec_ttl .em .num {
	position: relative;
	top: 2px;
	font-size: 5.6rem;
	line-height: 1;
}
.mechanism .lead p + p {
	margin-top: 32px;
}
.mechanism .mechanism_items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 40px;
	margin-top: 40px;
}
.mechanism .mechanism_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	border: 3px solid var(--acc2);
	border-radius: 10px;
	padding: 20px 16px 16px;
}
.mechanism .mechanism_item .ttl {
	display: flex;
	color: #fff;
	font-size: 2rem;
	line-height: 1.5;
	background-color: var(--acc1);
	border-radius: 25px;
	padding: 10px 50px;
}
.mechanism .mechanism_item .img {
	max-width: 480px;
}
.mechanism .mechanism_item .txt {
	color: var(--acc1);
	font-size: 1.8rem;
	font-weight: 700;
	background-color: var(--bgc1);
	width: 100%;
	padding: 24px 16px;
	flex: 1;
}
.mechanism .mechanism_item .txt .em {
	color: var(--red);
}
.mechanism .mechanism_item .txt .note {
	font-size: 1.4rem;
	line-height: calc(1.8rem * 1.8);
}

/* sp */
@media screen and (max-width: 767px) {
	.mechanism {
		padding-top: 30px;
	}
	.mechanism .sec_ttl {
		font-size: 2.6rem;
	}
	.mechanism .sec_ttl .em {
		padding: 2px 12px 8px;
		margin: 2px 4px;
	}
	.mechanism .sec_ttl .em .num {
		font-size: 3rem;
	}
	.mechanism .lead p + p {
		margin-top: 12px;
	}
	.mechanism .mechanism_items {
		grid-template-columns: repeat(1, 1fr);
		margin-top: 32px;
	}
	.mechanism .mechanism_item {
		padding: 12px 10px 10px;
	}
	.mechanism .mechanism_item .ttl {
		font-size: 1.6rem;
		padding: 6px 40px;
	}
	.mechanism .mechanism_item .img {
		max-width: 320px;
	}
	.mechanism .mechanism_item .txt {
		font-size: 1.5rem;
		padding: 12px 10px;
	}
	.mechanism .mechanism_item .txt .note {
		line-height: 1.8;
	}
}

/* compare //
---------------------------------------------- */
.compare {
	margin-top: 60px;
}
.compare .sec_ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
}
.compare .sec_ttl::before {
	content: "";
	position: relative;
	display: inline-block;
	width: 54px;
	background: url(../image/icon_idea.png) no-repeat center / contain;
	aspect-ratio: 54 / 60;
}
.compare .compare_table_wrapper {
	margin-top: 48px;
}

/* .compare_table */
.compare .compare_table {
	font-size: 1.8rem;
	width: 100%;
}
.compare .compare_table thead {
	border-bottom: 3px solid var(--acc1);
}
.compare .compare_table tbody tr {
	border-bottom: 2px solid #ddd;
}
.compare .compare_table th,
.compare .compare_table td {
	padding: 20px;
	text-align: center;
}
.compare .compare_table th {
	font-weight: 700;
	padding-top: 0;
	padding-bottom: 16px;
}
.compare .compare_table td .em {
	display: inline-flex;
	color: var(--acc1);
	font-weight: 700;
	background-color: var(--yellow);
	padding: 2px 16px;
	margin: 0 4px;
}
.compare_table .spacer {
  width: 32px;
}
.compare .compare_table + .note {
	font-size: 1.4rem;
	text-align: right;
	margin-top: 16px;
}

/* .compare_result */
.compare .compare_result {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	color: var(--acc1);
	background-color: var(--bgc1);
	border-radius: 10px;
	padding: 32px 20px;
	margin-top: 48px;
}
.compare .compare_result::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 22px;
	background: url(../image/icon_arrow-down.svg) no-repeat center / contain;
	z-index: 1;
}
.compare .compare_result .img {
	max-width: 220px;
}
.compare .compare_result p {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

/* sp */
@media screen and (max-width: 767px) {
	.compare {
		margin-top: 32px;
	}
	.compare .sec_ttl {
		gap: 6px;
		margin-bottom: 16px;
	}
	.compare .sec_ttl::before {
		width: 36px;
	}
	.compare .compare_table_wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iPhoneでスムーズに */
		margin-top: 24px;
	}

	/* .compare_table */
	.compare .compare_table {
		font-size: 1.5rem;
	}
	.compare .compare_table th,
	.compare .compare_table td {
		padding: 14px 10px;
		white-space: nowrap;
	}
	.compare .compare_table th {
		padding-top: 0;
	}
	.compare_table .spacer {
		width: 0;
	}
	.compare .compare_table + .note {
		font-size: 1.3rem;
		text-align: left;
		white-space: nowrap;
		margin: 12px 0 14px;
	}

	/* .compare_result */
	.compare .compare_result {
		flex-wrap: wrap;
		gap: 24px 10px;
		margin-top: 24px;
	}
	.compare .compare_result p {
		font-size: 1.6rem;
		width: 100%;
		order: 1;
	}
	.compare .compare_result .img {
		order: 2;
		width: 45%;
		max-width: 180px;
	}
}

/* reassurance //
---------------------------------------------- */
.reassurance {
	position: relative;
	color: #fff;
	background: var(--acc1);
	background-image: url(../image/bg_deco_top.png), url(../image/bg_deco_bottom.png);
	background-position: left 0 top 0, right 0 bottom 0;
	background-repeat: no-repeat;
	background-size: 750px auto, 750px auto;
	padding: 40px 0 60px;
	margin-top: 100px;
}
.reassurance .reassurance_inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px 32px;
}
.reassurance .reassurance_txt {
	padding-top: 20px;
}
.reassurance .reassurance_txt p {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}
.reassurance .reassurance_txt p + p {
	margin-top: 2px;
}
.reassurance .reassurance_txt p .em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--red);
	padding: 0 12px;
	margin: 0 4px;
}
.reassurance .reassurance_img {
	max-width: 200px;
	flex-grow: 0;
}

/* sp */
@media screen and (max-width: 767px) {
	.reassurance {
		background-size: 80vw auto, 80vw auto;
		padding: 32px 0;
		margin-top: 48px;
	}
	.reassurance .reassurance_inner {
		flex-direction: column;
		gap: 12px;
	}
	.reassurance .reassurance_txt {
		padding-top: 0;
		margin: 0 10px;
	}
	.reassurance .reassurance_txt p {
		font-size: 1.6rem;
		text-align: left;
	}
	.reassurance .reassurance_img {
		max-width: 124px;
	}
}

/* cta //
---------------------------------------------- */
.cta {
	background-color: var(--bgc1);
	padding: 80px 0;
}
.cta .portal_links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background-color: #fff;
	width: fit-content;
	padding: 20px;
	margin: 40px auto 0;
}
.cta .portal_link a {
	display: block;
	height: 60px;
}
.cta .portal_link a img {
	width: auto;
	height: 100%;
}

/* sp */
@media screen and (max-width: 767px) {

	.cta {
		padding: 40px 0 48px;
	}
	.cta .portal_links {
		flex-wrap: wrap;
		gap: 8px;
		padding: 8px;
		margin-top: 24px;
	}
	.cta .portal_link a {
		max-height: 42px;
	}
}

/* contact //
---------------------------------------------- */
.contact {
	background-color: var(--bgc1);
	text-align: center;
	padding-bottom: 100px;
}
.contact .contact_inner {
	background-color: #fff;
	border: 2px solid var(--acc1);
	border-radius: 10px;
	padding: 48px 40px 60px;
}
.contact .sec_ttl {
	color: var(--acc1);
}

/* ----- フォーム ----- */
.contact .form {
  display: flex;
  flex-direction: column;
	max-width: 800px;
	margin: 0 auto;
}
.contact .form .form_item {
  display: flex;
  align-items: baseline;
  gap: 5px 20px;
}
.contact .form .form_item + .form_item {
	margin-top: 20px;
}
.contact .form .form_label {
	font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  width: 145px;
	flex-shrink: 0;
}
.contact .form .req {
  color: var(--red);
  padding-left: 2px;
  vertical-align: text-bottom;
}
.contact .form .form_item input,
.contact .form .form_item textarea {
  font-size: 1.6rem;
  line-height: 1.8;
	border: 1px solid #ccc;
	width: 100%;
  max-width: 100%;
  padding: 13px 20px 10px;
  box-sizing: border-box;
}
.contact .form .form_item input::placeholder,
.contact .form .form_item textarea::placeholder {
  color: #ccc;
}
.contact .form .note {
  margin: 4px 0 20px calc(145px + 20px);
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
	text-align: left;
}
.contact .form .form_privacy {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin: 24px 0;
}
.contact .form .form_privacy a {
	color: var(--acc1);
	text-decoration: underline;
	font-size: 1.6rem;
}
.contact .form .form_privacy a i {
	display: inline-block;
	font-size: 1.4rem;
	margin-left: 4px;
}
.contact .form .form_btn input {
  display: block;
  color: #fff;
  font-size: 1.6rem;
	font-weight: 500;
  line-height: 2.2;
  width: 320px;
  height: 70px;
  background-color: var(--acc1);
	border-radius: 3px;
  border: none;
  padding: 0;
  margin: 0 auto;
  cursor: pointer;
}

/* sp */
@media screen and (max-width: 767px) {

	.contact {
		padding: 0 10px 40px;
	}
	.contact .contact_inner {
		padding: 40px 20px 48px;
	}

	/* ----- フォーム ----- */
	.contact .form .form_item {
		flex-direction: column;
	}
	.contact .form .form_item + .form_item {
		margin-top: 12px;
	}
	.contact .form .form_label {
		font-size: 1.5rem;
	}
	.contact .form .form_item input,
	.contact .form .form_item textarea {
		font-size: 1.5rem;
		padding: 10px;
	}
	.contact .form .note {
		margin: 4px 0 12px;
	}
	.contact .form .form_privacy {
		font-size: 1.4rem;
		margin: 16px 0;
	}
	.contact .form .form_privacy a {
		font-size: 1.4rem;
	}
	.contact .form .form_btn input {
		width: 80%;
		max-width: 315px;
		height: 60px;
	}
}

/* company //
---------------------------------------------- */
.company {
	padding: 60px 0 80px;
}
.company .sec_ttl {
	text-align: center;
}
.company .company_inner {
	display: flex;
	gap: 20px 60px;
}
.company .company_img {
	width: 450px;
	max-width: 100%;
	flex-shrink: 0;
}
.company .company_body .message {
	line-height: 2;
}
.company .company_body .ttl {
	font-size: 2rem;
	font-weight: 700;
	border-bottom: 3px solid var(--acc1);
	padding-bottom: 12px;
	margin-top: 40px;
}
.company .company_body .company_info .row {
	display: flex;
	align-items: center;
	border-bottom: 2px solid #ddd;
	padding: 12px 0;
}
.company .company_body .company_info .row dt {
	width: 25%;
}

/* sp */
@media screen and (max-width: 767px) {
	.company {
		padding: 40px 0 48px;
	}
	.company .company_inner {
		flex-direction: column;
		gap: 16px;
	}
	.company .company_img {
		width: 64vw;
		margin: 0 auto;
	}
	.company .company_body .message {
		line-height: 1.8;
	}
	.company .company_body .ttl {
		font-size: 1.6rem;
		padding-bottom: 10px;
		margin-top: 24px;
	}
	.company .company_body .company_info .row {
		font-size: 1.4rem;
		padding: 8px 0;
	}
}


/* フッター //
////////////////////////////////////////////////////////////////////*/

/* pagetop //
---------------------------------------------- */
.pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s;
}
.pagetop.fixed {
	opacity: 1;
	pointer-events: auto;
}
.pagetop a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	width: 60px;
	height: 60px;
	background-color: var(--acc1);
	border-radius: inherit;
	text-align: center;
}
.pagetop a i::before {
	content: "\f062";
	font-family: FontAwesome;
	line-height: 1;
}

/* sp */
@media screen and (max-width: 767px) {
	.pagetop {
		right: 10px;
		bottom: 10px;
		width: 44px;
		height: 44px;
	}
	.pagetop a {
		width: 44px;
		height: 44px;
		font-size: 1.2rem;
	}
}

/* copyright //
---------------------------------------------- */
.footer .copyright {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.4rem;
	background-color: var(--acc1);
	text-align: center;
	padding: 20px 0;
}

/* sp */
@media screen and (max-width: 767px) {
	.footer .copyright {
		font-size: 1.2rem;
		padding: 16px 0;
	}
}