@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP','sans-serif';
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
a {
	text-decoration: none;
	color: #333333;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	margin: 0 auto;
	color: #333333;
	font-size: 1.6rem;
	line-height: 1.8;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}
.content {
	max-width: 960px;
	width: 95%;
	margin: 0 auto;
}
#container {
	position: relative;
	text-align: left;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}
	.content {
		width: 90%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.br-tb {
	display: none;
}
.br-sp {
	display: none;
}

@media screen and (max-width:896px) {
	.br-tb {
		display: block;
	}
	.tb-off {
		display: none;
	}
}
@media screen and (max-width:430px) {
	.br-sp {
		display: block;
	}
	.sp-off {
		display: none;
	}
}

/*------------------------------------------------------------
	アニメーション
------------------------------------------------------------*/
/* パララックス */
.panel {
	min-height: 100vh;
	height: auto;
  width: 100%;
  position: sticky;
  top: 0;
  overflow: hidden;
	padding-top: 80px;
}
.panel::after {
	content: "";
	background: url(../img/bg_icon_06.png) no-repeat;
	background-size: contain;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
}
#mainvisual.panel::after {
	content: none;
}
.panel_bg::after {
	background: url(../img/bg_icon_07.png) no-repeat;
	background-size: contain;
}
.panel.icon_left::after {
	background-position: 21%;
}
.panel.icon_right::after {
	background-position: 79%;
}

@media screen and (max-width:896px) {
	.panel {
		padding-top: 40px;
	}
	.panel::after {
		height: 40px;
	}
	.panel.icon_left::after, .panel.icon_right::after {
		background-position: 50%;
	}
	.panel_bg.icon_left::after {
		background-position: 21%;
	}
}

/* フェードアニメーション */
.fadeIn {
	opacity: 0;
	visibility: hidden;
	transition: 1s;
}
.fadeIn.active {
	opacity: 1;
	visibility: visible;
}
.fadeInup {
	opacity: 0;
	visibility: hidden;
	transform: translate(0, 30px);
}
.fadeInup.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}
.fadeInright {
	opacity: 0;
	visibility: hidden;
	transform: translate(30px, 0);
	transition: 1s;
}
.fadeInright.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}
.fadeInleft {
	opacity: 0;
	visibility: hidden;
	transform: translate(-30px, 0);
	transition: 1s;
}
.fadeInleft.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}
.panel_left::before {
	opacity: 0;
	visibility: hidden;
	transform: translate(-100px, 0);
	transition: 1s;
}
.panel_left.active::before {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}
.panel_right::before {
	opacity: 0;
	visibility: hidden;
	transform: translate(100px, 0);
	transition: 1s;
}
.panel_right.active::before {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}

/* ズームイン */
.zoomIn {
	opacity: 0;
	visibility: hidden;
	transform: scale(0.8);
	transition: 1s;
}
.zoomIn.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

/* ボタンアニメーション（反転＋字間） */
.btn_anime01 {
  transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
}
.btn_anime01:hover {
  letter-spacing: 0.15em;
}


/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header {
	position: sticky;
	top: 0;
	z-index: 1;
}
#header .header_content {
	padding: 20px 0;
	max-width: 1000px;
	width: 95%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .header_logo {
	width: 88px;
}
#header .header_right {
	display: flex;
	align-items: center;
	gap: 20px;
}
#header .header_nav nav ul {
	display: flex;
	gap: 40px;
	align-items: center;
}
#header .header_nav nav ul li a {
  display: inline-block;
  position: relative;
	color: #00BE6C;
	font-weight: bold;
	font-size: 1.4rem;
}
#header .header_nav nav ul li a::after {
	content: "";
  background-color: #00BE6C;
  height: 2px;
  width: 100%;
  position: absolute;
	bottom: 0px;
	left: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#header .header_nav nav ul li a:hover::after {
  transform: scale(1, 1);
}
#header .header_contact a {
	border: 1px solid #00BE6C;
	color: #00BE6C;
	width: 150px;
	display: block;
	text-align: center;
	padding: 7px 0;
	border-radius: 50vh;
}
#header .header_contact a:hover {
  background: #00BE6C;
  color: #fff;
}
#header .header_lang ul {
	display: flex;
	gap: 5px;
}
#header .header_lang ul li::after {
	content: "/";
	color: #00BE6C;
	margin-left: 5px;
}
#header .header_lang ul li:last-child:after {
	content: none;
}
#header .header_lang ul li a {
	color: #00BE6C;
	font-size: 1.4rem;
}
#header .header_lang ul li a:hover {
	opacity: 0.7;
}
#header .header_lang ul li a.active {
	text-decoration: underline;
}
#header .zdo_drawer_menu {
	display: none;
}

@media screen and (max-width:896px) {
	#header .header_logo {
		width: 75px;
	}
	#header .header_content {
		width: 85%;
	}
	#header .header_right {
		display: none;
	}
	#header .zdo_drawer_menu {
		display: block;
	}
}

/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/
#mainvisual.panel {
	background: url(../img/mainvisual_bg_01.jpg) no-repeat center;
	background-size: cover;
	background-position: top;
	padding: 0;
}
#mainvisual .mainvisual_content {
	position: relative;
	min-height: 650px;
	max-width: 1000px;
	width: 95%;
	height: 100vh;
	display: grid;
	align-content: center;
	justify-content: flex-start;
	margin: 0 auto;
}
#mainvisual .mainvisual_logo {
	width: 100%;
	max-width: clamp(200px, 53vw, 300px);
}
#mainvisual .mainvisual_txt {
	max-width: 480px;
	width: 100%;
	margin: 65px auto 0;
	color: #00BE6C;
	position: relative;
}
#mainvisual .mainvisual_txt::before {
	content: "";
	background: url(../img/mainvisual_icon_01.png) no-repeat;
	background-size: contain;
	background-position: left;
	width: calc(100% + 200px);
	height: calc(100% + 200px);
	position: absolute;
	left: 50%;
	top: 53%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
#mainvisual .mainvisual_txt h2 {
	font-size: 4rem;
	line-height: 1.5;
	margin-bottom: 30px;
	letter-spacing: 4px;
}
#mainvisual .mainvisual_txt p {
	font-weight: bold;
}
#mainvisual .mainvisual_img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 55vw;
	margin-right: calc(50% - 50vw);
}

#mainvisual .mainvisual_logo, #mainvisual .mainvisual_txt, #mainvisual .mainvisual_img {
	opacity: 0;
}


@media screen and (max-width:896px) {
	#mainvisual.panel {
		background: url(../img/mainvisual_bg_01_sp.jpg) no-repeat center;
		background-size: cover;
		background-position: top;
	}
	#mainvisual .mainvisual_content {
		width: 85%;
		min-height: 800px;
		justify-content: center;
	}
	#mainvisual .mainvisual_logo {
		width: 200px;
	}
	#mainvisual .mainvisual_txt {
		max-width: 100%;
		margin: 65px auto 75px;
	}
	#mainvisual .mainvisual_txt h2 {
		margin-bottom: 20px;
		font-size: 2.8rem;
	}
	#mainvisual .mainvisual_txt p {
    font-weight: bold;
    font-size: clamp(1.23rem, 3.8vw, 1.4rem);
	}
	#mainvisual .mainvisual_img {
		width: 100%;
		max-width: 200px;
		bottom: -90px;
	}
}
@media screen and (max-width:430px) {
	#mainvisual .mainvisual_txt::before {
    background: url(../img/mainvisual_icon_01_sp.png) no-repeat;
    background-size: contain;
    background-position: right;
    width: calc(100% + 500px);
    height: calc(100% + 100px);
		top: 49%;
    left: auto;
		right: -7.5%;
    transform: translate(0, -50%);
	}
	#mainvisual .mainvisual_content {
		min-height: 750px;
		gap: 40px;
		align-content: flex-end;
	}
	#mainvisual .mainvisual_logo {
		position: static;
		transform: translate(0, 0);
	}
	#mainvisual .mainvisual_txt {
		margin: 0 auto 75px;
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.sec_content {
	padding: 100px 0;
}
.sec_content h3 {
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	letter-spacing: 0.3rem;
	line-height: 1.6;
	margin-bottom: 30px;
}
.sec_content p {
	line-height: 2.0;
}

@media screen and (max-width:896px) {
	.sec_content {
		padding: 50px 0 100px;
	}
}

/*------------------------------------------------------------
	#sec01
------------------------------------------------------------*/
#sec01.panel {
	border-radius: 0 200px 0 0;
	z-index: 1;
}
#sec01.panel_bg {
	background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 80px, #00BE6C 80px);
	border-radius: 0 200px 0 0;	
}
#sec01 .sec01_bg_anime {
	height: 80px;
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%);
}
#sec01 .sec01_bg_anime::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
#sec01 .sec01_bg_anime.active::before {
  animation: kiran 0.5s linear;
}
 
@keyframes kiran {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(30) rotate(45deg);
    opacity: 0.7;
  }
  40% {
    transform: scale(50) rotate(45deg);
    opacity: 0.6;
  }
  80% {
    transform: scale(70) rotate(45deg);
    opacity: 0.3;
  }
  100% {
    transform: scale(90) rotate(45deg);
    opacity: 0;
  }
}
#sec01 .sec01_content {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 50px;
}
#sec01 .sec01_content .img {
	display: block;
	width: 360px;
}
#sec01 .sec01_content .img img {
	margin-bottom: 30px;
}
#sec01 .sec01_content .img .img02 {
	margin-left: calc(100% - 50vw);
	max-width: 100vw;
}
.sec01_content .txt {
	color: #fff;
}

@media screen and (max-width:896px) {
	#sec01.panel {
		background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) 40px, #00BE6C 40px);
		border-radius: 0 100px 0 0;	
	}
	#sec01 .sec01_bg_anime {
		height: 40px;
	}
	@keyframes kiran {
		0% {
			transform: scale(0) rotate(45deg);
			opacity: 0;
		}
		20% {
			transform: scale(10) rotate(45deg);
			opacity: 0.7;
		}
		40% {
			transform: scale(20) rotate(45deg);
			opacity: 0.6;
		}
		80% {
			transform: scale(30) rotate(45deg);
			opacity: 0.3;
		}
		100% {
			transform: scale(40) rotate(45deg);
			opacity: 0;
		}
	}
	#sec01 .sec01_content {
		display: flex;
		flex-direction: column-reverse;
		gap: 50px;
	}
	#sec01 .sec01_content .img {
		width: 100%;
	}
	#sec01 .sec01_content .img img:first-child {
		max-width: 80%;
		display: block;
		margin: 0 auto 50px;
	}
	#sec01 .sec01_content .img .img02 {
		margin-left: calc(50% - 50vw);
	}
}


/*------------------------------------------------------------
	#sec02
------------------------------------------------------------*/
#sec02.panel {
	background: #fff;
	border-radius: 200px 0 0 0;
	border-top: 1px solid #00BE6C;
	border-left: 1px solid #00BE6C;
	z-index: 2;
}
#sec02.panel::before {
	content: "";
	background: url('../img/bg_icon_01.png') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
	z-index: 0;
	border-bottom: 1px solid #00BE6C;
}
.sec02_content {
	color: #00BE6C;
}
#sec02 .sec02_content .sec02_inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 50px;
}
#sec02 .sec02_content .txt img {
	margin: 60px auto 0;
	max-width: 480px;
	width: 100%;
}
#sec02 .sec02_content .img {
	width: 370px;
	display: block;
	position: relative;
}
#sec02 .sec02_content .img .img-wrap {
	overflow: hidden;
	position: absolute;
	top: -40px;
	left: 63%;
	transform: translate(-50%);
}
#sec02 .sec02_content .img .arrow_img {
	width: 100px;
}

#sec02 .sec02_content .img .img-wrap::before {
	content: "";
	background: #fff;
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
#sec02 .sec02_content .img .img-wrap.active::before {
	animation: img-wrap 1.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	animation-delay: 0.5s;
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
#sec02 .sec02_content .img .zoom_icon {
	position: absolute;
	top: -15px;
	right: 0;
	width: 40px;
	cursor: pointer;
}
#sec02 .sec02_content .img .zoom_img {
	position: absolute;
	left: 50%;
	top: -40px;
	transform: translate(-50%);
	z-index: 10;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
	border-radius: 60px;
	opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}
#sec02 .sec02_content .img .zoom_img.is-show {
  opacity: 1;
  visibility: visible;
}
#sec02 .sec02_content .img > p {
	position: absolute;
	right: -20px;
	top: -45px;
	font-size: 1.3rem;
	font-weight: bold;
}

@media screen and (max-width:896px) {
	#sec02.panel {
		border-radius: 100px 0 0 0;
	}
	#sec02.panel::before {
		height: 40px;
	}
	#sec02 .sec02_content .sec02_inner {
		display: grid;
		grid-template-columns: auto;
		gap: 100px;
	}
	#sec02 .sec02_content .txt img {
		margin: 50px auto 0;
		max-width: 100%;
	}
	#sec02 .sec02_content .img {
		width: 100%;
	}
	#sec02 .sec02_content .img  img{
		width: 100%;
	}
}
@media screen and (max-width:430px) {
	#sec02 .sec02_content .img > p {
		right: -10px;
		top: -50px;
		font-size: 1.1rem;
	}
}


/*------------------------------------------------------------
	#sec03
------------------------------------------------------------*/
#sec03.panel {
	background: #F3FBF9;
	border-radius: 0 200px 0 0;
	border-top: 1px solid #00BE6C;
	/* border-right: 1px solid #00BE6C; */
	z-index: 3;
}
#sec03.panel::before {
	content: "";
	background: url('../img/bg_icon_02.png') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
	z-index: 0;
	border-bottom: 1px solid #00BE6C;
}
#sec03 .sec03_content .img {
	width: 450px;
	display: block;
}
.sec03_content {
	color: #00BE6C;
}
#sec03 .sec03_content .sec03_inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 50px;
}
#sec03 .sec03_content .sec03_inner ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: flex-end;
	gap: 20px;
	margin-top: 50px;
}
#sec03 .sec03_content .sec03_inner ul li > p {
	text-align: center;
	line-height: 1.5;
	margin-bottom: 10px;
}
#sec03 .sec03_content .sec03_inner ul li .circle {
	border: 2px solid #00BE6C;
	border-radius: 50%;
	aspect-ratio: 1/1;
	width: 100%;
	display: grid;
	align-content: center;
	text-align: center;
}
#sec03 .sec03_content .sec03_inner ul li .circle h4 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.2;
}
#sec03 .sec03_content .sec03_inner ul li .circle h4 span {
	font-size: clamp(4rem, 6vw, 6rem);
}
#sec03 .sec03_content .sec03_inner ul li .circle p {
	line-height: 1.5;
	font-size: clamp(1.8rem, 4vw, 2.2rem);
	font-weight: bold;
}
#sec03 .sec03_content .img {
	width: 430px;
	display: block;
	position: relative;
}

#sec03 .sec03_content .img .fadeout_img {
	position: absolute;
	top: 0;
	width: 50%;
	z-index: 5;
}
#sec03 .sec03_content .img .fadeout_img_02 {
	position: absolute;
	top: 0;
}
#sec03 .sec03_content .img .fadeout_img.old {
	left: 0;
	top: -1px;
}
#sec03 .sec03_content .img .fadeout_img.new {
	right: 0;
	top: -1px;
}
#sec03 .sec03_content .img .fadeout_img img {
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	transform: translate(-50%);
}
#sec03 .sec03_content .img .fadein_img, #sec03 .sec03_content .img .fadein_img_02 {
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	transform: translate(-50%);
}
#sec03 .sec03_content .img .fadeout_img_01 {
	z-index: 4;
}
#sec03 .sec03_content .img .fadeout_img_02 {
	z-index: 3;
}
#sec03 .sec03_content .img .fadein_img {
	z-index: 5;
}
#sec03 .sec03_content .img .fadein_img_02 {
	z-index: 6;
}

#sec03 .sec03_content .img .fadeout_img.active img {
  animation: clipFadeLoop 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
#sec03 .sec03_content .img .fadeout_img.active img:nth-child(2) {
  animation-delay: 1.5s;
}
#sec03 .sec03_content .img .fadeout_img.active img:nth-child(3) {
  animation-delay: 3.0s;
}
#sec03 .sec03_content .img .fadeout_img.active img:nth-child(4) {
  animation-delay: 4.5s;
}
@keyframes clipFadeLoop {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#sec03 .sec03_content .img .fadeout_img_02.active {
  animation: fadeOutLoop 2s ease-in-out forwards;
}
@keyframes fadeOutLoop {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

#sec03 .sec03_content .img .fadein_img {
	opacity: 0;
	visibility: hidden;
}
#sec03 .sec03_content .img .fadein_img.active {
  animation: fadeInLoop 2s ease-in-out forwards;
}
@keyframes fadeInLoop {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  33% {
    opacity: 1;
    visibility: visible;
  }
	66% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

#sec03 .sec03_content .img .fadein_img_02 {
	opacity: 0;
	visibility: hidden;
}
#sec03 .sec03_content .img .fadein_img_02.active {
  animation: fadeInLoop_02 2s ease-in-out forwards;
}
@keyframes fadeInLoop_02 {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}


@media screen and (max-width:896px) {
	#sec03.panel {
		background: linear-gradient(to bottom, #fff 0%, #fff calc(0% + 40px), #F3FBF9 calc(0% + 40px));
		border-radius: 0 100px 0 0;
	}
	#sec03.panel::before {
		height: 40px;
	}
	#sec03 .sec03_content .sec03_inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 50px;
	}
	#sec03 .sec03_content .img {
		width: 100%;
		display: block;
	}
}

/*------------------------------------------------------------
	#sec04
------------------------------------------------------------*/
#sec04.panel {
	background: #fff;
	border-radius: 200px 0 0 0;
	border-top: 1px solid #00BE6C;
	border-left: 1px solid #00BE6C;
	z-index: 4;
}
#sec04.panel::before {
	content: "";
	background: url('../img/bg_icon_03.png') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
	z-index: 0;
	border-bottom: 1px solid #00BE6C;
}
#sec04 .sec04_content {
	color: #00BE6C;
	padding-bottom: 150px;
}
#sec04 .sec04_inner h3 {
	text-align: center;
}
#sec04 .sec04_inner p {
	text-align: center;
}
#sec04 .sec04_inner ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	max-width: 830px;
	margin: 100px auto;
}
#sec04 .sec04_inner ul li p {
	text-align: left;
	color: #333333;
	margin-bottom: 30px;
}
#sec04 .sec04_inner ul li .img {
	position: relative;
}
#sec04 .sec04_inner ul li .img img:first-child {
	max-width: 330px;
}
#sec04 .sec04_inner ul li .img .number {
	position: absolute;
	right: 0;
	top: -10px;
	max-width: 123px;
	transition-delay: 0.4s;
}
#sec04 .sec04_inner ul li .img .leaf {
	position: absolute;
	right: 5px;
	bottom: 35px;
	max-width: 70px;
	transition-delay: 0.8s;
}
#sec04 .sec04_inner .arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}
#sec04 .sec04_inner .arrow::after {
	content: "";
	width: 240px;
	height: 50px;
	display: block;
	background-color: #D9F5E9;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#sec04 .sec04_inner .arrow p {
	font-size: 2.4rem;
	font-weight: 500;
}
#sec04 .sec04_list > h4 {
	text-align: center;
	color: #00BE6C;
	font-size: clamp(2.0rem, 6.4vw, 2.8rem);
	font-weight: 500;
}
#sec04 .sec04_list ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin: 100px 0;
}
#sec04 .sec04_list ul li {
	text-align: center;
}
#sec04 .sec04_list ul li .img {
	position: relative;
	max-width: 300px;
	margin: 0 auto;
}
#sec04 .sec04_list ul li .img .icon {
	position: absolute;
	left: -10px;
	top: -10px;
	width: 60px;
	opacity: 1;
	transition: 0.3s;
}

#sec04 .sec04_list ul .sec04_img.anime .img .icon {
	opacity: 0;
}

#sec04 .sec04_list ul .sec04_img.anime img:first-child {
  animation: poyoyon2 2s ease-in-out;
}
@keyframes poyoyon2 {
  50%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  70% {
    transform: scale(1.02, 1.0) translate(0, 8px);
  }
  80% {transform: scale(0.98, 1.05) translate(0, -8px);
  }
  90% {
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
}

#sec04 .sec04_list ul li img:first-child {
	margin-bottom: 25px;
	transition-delay: 0.3s;
}
#sec04 .sec04_list ul li h4 {
	font-size: clamp(1.8rem, 4vw, 2.0rem);
}
#sec04 .sec04_list ul li h4 span {
	font-size: clamp(2.6rem, 6vw, 3rem);
	line-height: 1.2;
}

@media screen and (max-width:896px) {
	#sec04.panel {
		background: linear-gradient(to bottom, #fff 0%, #fff calc(0% + 40px), #fff calc(0% + 40px));
		border-radius: 100px 0 0 0;
	}
	#sec04.panel::before {
		height: 40px;
		background: url('../img/bg_icon_03_sp.png') no-repeat right;
		background-size: cover;
	}
	#sec04 .sec04_inner ul {
		grid-template-columns: 1fr;
		margin: 50px auto;
	}
	#sec04 .sec04_inner ul li .img img:first-child {
		padding-right: 10%;
		width: 100%;
		max-width: 100%;
	}
	#sec04 .sec04_inner ul li .img .number {
		max-width: 35%;
		top: -5%;
	}
	#sec04 .sec04_inner ul li .img .leaf {
		max-width: 15%;
		bottom: 20%;
		right: 0;
	}
	#sec04 .sec04_list ul {
		grid-template-columns: 1fr;
		margin: 50px 0;
	}
	#sec04 .sec04_list ul li .img {
		max-width: min(300px, 60vw);
	}
	#sec04 .sec04_list ul li .img .icon {
		position: absolute;
		left: -5%;
		top: -5%;
	}
}
@media screen and (max-width:500px) {
	#sec04 .sec04_list ul li .img .icon {
		position: absolute;
		left: -5vw;
		top: -5vw;
	}
}

/*------------------------------------------------------------
	#sec05
------------------------------------------------------------*/
#sec05.panel {
	background: rgba(0, 190, 108, 0.8);
	background-image: url(../img/bg_img_01.jpg);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 0 200px 0 0;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	z-index: 5;
}
#sec05.panel::before {
	content: "";
	background: url('../img/bg_icon_04.png') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
	z-index: 0;
	border-bottom: 1px solid #fff;
}
#sec05.panel::after {
	background: url(../img/bg_icon_07.png) no-repeat;
	background-size: contain;
	background-position: 79%;
}
#sec05 .sec05_content {
	color: #fff;
}
#sec05 .sec05_content .txt {
	text-align: center;
	margin-bottom: 120px;
}
#sec05 .sec05_content .txt p {
	font-size: clamp(1.4rem, 3.9vw, 2.2rem);
}
#sec05 .sec05_content .download_box {
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 40px 50px 40px 85px;
	background-color: rgba(35, 24, 21, 0.2);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 50px;
}
#sec05 .sec05_content .download_box img {
	width: 100%;
	max-width: 80px;
	margin-top: 25px;
}
#sec05 .sec05_content .download_box h4 {
	font-size: clamp(1.6rem, 5vw, 2.4rem);
	margin: 10px 0;
}
#sec05 .sec05_content .download_box p {
	font-size: clamp(1.3rem, 3vw, 1.6rem);
}
#sec05 .sec05_content .download_box a {
	max-width: 400px;
	width: 100%;
	color: #00BE6C;
	background-color: #fff;
	display: block;
	text-align: center;
	padding: 10px;
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	margin-top: 15px;
	line-height: 1.3;
	position: relative;
	transition: 0.3s;
}
#sec05 .sec05_content .download_box a:hover {
	background-color: #00BE6C;
	color: #fff;
}
#sec05 .sec05_content .download_box a::after {
	content: "";
	background: url(../img/btn_icon_02.svg) no-repeat center;
	background-size: contain;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
	transition: 0.3s;
}
#sec05 .sec05_content .download_box a:hover::after {
	background: url(../img/btn_icon_01.svg) no-repeat center;
}

@media screen and (max-width:896px) {
	#sec05.panel {
		background: linear-gradient(to bottom, #fff 0%, #fff calc(0% + 40px), rgba(0, 190, 108, 0.8) calc(0% + 40px));
		background-image: url(../img/bg_img_01_sp.jpg);
		background-repeat: no-repeat;
		background-position: right center;
		border-radius: 0 100px 0 0;
	}
	#sec05.panel::before {
		height: 40px;
	}
	#sec05.panel::after {
		background-position: 50%;
	}
	#sec05 .sec05_content .txt {
		margin-bottom: 60px;
	}
	#sec05 .sec05_content .download_box {
		border: 1px solid #fff;
		padding: 40px 30px;
		display: block;
	}
	#sec05 .sec05_content .download_box img {
		display: none;
	}
}

/*------------------------------------------------------------
	#sec06
------------------------------------------------------------*/
.sec_wrapper {
	border-radius: 200px 0 0 0;
	padding-top: 0;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	z-index: 6;
}
#sec06 {
	background: #CFE5E7;
	padding-top: 80px;
}
#sec06::before {
	content: "";
	background: url('../img/bg_icon_05.png') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 80px;
	position: absolute;
	top: 0;
	z-index: 0;
	border-bottom: 1px solid #fff;
}
.sec_wrapper.panel::after {
	background: url(../img/bg_icon_07.png) no-repeat;
	background-size: contain;
	background-position: 21%;
}
#sec06 .sec06_content > h3 {
	color: #00BE6C;
}
#sec06 .tab_contents {
	margin-bottom: 100px;
}
#sec06 .tab_contents .tab-area {
  display: flex;
	justify-content: space-between;
}
#sec06 .tab_contents .tab {
  width: 32.5%;
  padding: 5px;
  text-align: center;
	padding: 20px 0;
	border-radius: 20px 20px 0 0;
	font-size: 24px;
	font-weight: 500;
	color: #999999;
	cursor: pointer;
	transition: 0.3s;
	background-color: rgba(255,255,255,0.5);
}
#sec06 .tab_contents .tab:hover {
  background-color: #FFF;
	color: #00BE6C;
}
#sec06 .tab_contents .tab.active {
  background-color: #FFF;
	color: #00BE6C;
}
#sec06 .tab_contents .tab_item {
  display: none;
	background-color: #FFF;
	border-radius: 0 0 20px 20px;
	padding: 40px;
}
#sec06 .tab_contents .tab_item.active {
  display: block;
	transition: 0.3s;
}
#sec06 .tab_contents .tab_item h3 {
	color: #00BE6C;
}
#sec06 .tab_contents .tab_item .tab_item-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 50px;
}
#sec06 .tab_contents .tab_item .tab_item-grid .img {
	text-align: center;
}
#sec06 .tab_contents .tab_item .tab_item-grid .img img {
	width: 100%;
}
#sec06 .tab_contents .tab_item .tab_item-grid p a {
	color: #00BE6C;
}
#sec06 .tab_contents .tab_item .tab_item-grid p a:hover {
	opacity: 0.7;
}
#sec06 .tab_contents .tab_item:nth-child(1) .tab_item-grid .img {
	width: 350px;
}
#sec06 .tab_contents .tab_item:nth-child(2) .tab_item-grid .img, #sec06 .tab_contents .tab_item:nth-child(3) .tab_item-grid .img {
	width: 300px;
}
#sec06 .tab_contents .tab_item:nth-child(1) .tab_item-grid .img img {
	max-width: clamp(225px, 60vw, 300px);
}
#sec06 .tab_contents .tab_item:nth-child(2) .tab_item-grid .img img {
	max-width: 263px;
}
#sec06 .tab_contents .tab_item:nth-child(3) .tab_item-grid .img img {
	max-width: 209px;
}
#sec06 .tab_contents .tab_item .tab_item-box {
	background-color: #E5F8F0;
	padding: 20px 25px;
	margin-top: 50px;
}
#sec06 .tab_contents .tab_item .toggle-btn {
	margin-top: 50px;
}

#sec06 .tab_contents .tab_item .more-content {
	display: block;
}
#sec06 .tab_contents .tab_item .toggle-btn {
	display: none;
}

@media screen and (max-width:896px) {
	#sec06 .tab_contents .tab_item .more-content {
		display: none;
	}
	#sec06 .tab_contents .tab_item .toggle-btn {
		display: block;
	}
}

#sec06 .txt {
	margin-bottom: 80px;
}
#sec06 .txt h3 {
	color: #00BE6C;
}
#sec06 .trivia_txt {
	position: relative;
}
#sec06 .trivia_txt .pop_txt {
	position: relative;
	width: fit-content;
}
#sec06 .trivia_txt .pop_txt img {
	max-width: clamp(170px, 40vw, 300px);
}
#sec06 .trivia_txt .pop_txt p {
	position: absolute;
	left: 52%;
	top: 42%;
	transform: translate(-50%, -50%) rotate(-13deg);
	color: #00BE6C;
	font-weight: bold;
	font-size: clamp(2.0rem, 4vw, 3.3rem);
	width: 100%;
	text-align: center;
}
#sec06 .trivia_txt .pop_txt p span {
	transform: rotate(13deg);
	display: inline-block;
}
#sec06 .trivia_txt h3 {
	padding-left: 200px;
	margin-top: -30px;
	font-size: clamp(3.0rem, 5vw, 4.5rem);
}
#sec06 .trivia_txt h3::after {
	content: "";
	background: url(../img/trivia_ttl_02.png) no-repeat center;
	background-size: contain;
	width: clamp(39px, 9vw, 53px);
	height: clamp(70px, 13vw, 97px);
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
}
#sec06 .trivia_ttl {
	margin-bottom: 50px;
}
#sec06 .trivia_ttl h4 {
	font-size: clamp(2.0rem, 5vw, 2.8rem);
	letter-spacing: 5px;
	text-align: center;
	color: #fff;
	border-radius: 50vh;
	margin-bottom: 15px;
}
#sec06 .trivia_ttl p {
	text-align: center;
}
#sec06 .trivia_01.trivia_first {
	margin-bottom: 45px;
}
#sec06 .trivia_01 {
	margin-bottom: 100px;
}
#sec06 .trivia_01 .trivia_ttl h4 {
	background-color: #00BE6C;
}
#sec06 .trivia_02 .trivia_ttl h4 {
	background-color: #F08787;
}
#sec06 .trivia ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 45px;
}
#sec06 .trivia ul li {
	max-width: 290px;
	width: 100%;
}

/* カードフリップ */
#sec06 .trivia ul li .card {
  position: relative;
  width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
  perspective: 1000px;
  transform-style: preserve-3d;
	cursor: pointer;
}
#sec06 .trivia ul li .cardface {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  align-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: transform 0.6s;
  backface-visibility: hidden;
}
#sec06 .trivia ul li .cardface__front {
  transform: none;
	border-radius: 50%;
	text-align: center;
	background-image: url(../img/trivia_icon_01.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 60px;
	font-size: 2.2rem;
	font-weight: bold;
	position: relative;
}
#sec06 .trivia ul li .cardface__front span {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
	font-size: 2rem;
}
#sec06 .trivia ul li .cardface__front span::after {
	content: "";
	width: 28px;
	height: 28px;
	display: block;
}
#sec06 .trivia_01 ul li .cardface__front span::after {
	background: url(../img/trivia_icon_03.svg) no-repeat center;
	background-size: contain;
}
#sec06 .trivia_02 ul li .cardface__front span::after {
	background: url(../img/trivia_icon_02.svg) no-repeat center;
	background-size: contain;
}
#sec06 .trivia_01 ul li .cardface__front span {
	color: #66d8a7;
}
#sec06 .trivia_02 ul li .cardface__front span {
	color: #f6b7b7;
}
#sec06 .trivia ul li .is-flipped .cardface__front {
  transform: rotateY(180deg);
}
#sec06 .trivia ul li .cardface__back {
  transform: rotateY(180deg);
  color: #333;
  background-color: #fff;
	border-radius: 30px;
	padding: 25px 15px;
	align-content: flex-start;
}
#sec06 .trivia ul li .cardface__back p {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: center;
	line-height: 1.5;
	font-weight: bold;
	font-size: 1.4rem;
	margin-bottom: 15px;
	min-height: 42px;
}
#sec06 .trivia ul li .cardface__back p::before {
	content: "";
	background: url(../img/trivia_icon_01.svg) no-repeat center;
	background-size: contain;
	width: 13px;
	height: 25px;
}
#sec06 .trivia ul li .cardface__back h4 {
	background-color: #EFA0BB;
	color: #fff;
	border-radius: 50vh;
	text-align: center;
	font-size: 2.0rem;
	margin-bottom: 10px;
}
#sec06 .trivia ul li .cardface__back h5 {
	font-size: 1.75rem;
	line-height: 1.8;
}
#sec06 .trivia ul li .cardface__back h5 span {
	font-size: 1.19rem;
}
#sec06 .trivia ul li .cardface__back a {
	background-color: #CCCCCC;
	font-size: 1.4rem;
	padding: 3px 5px;
}
#sec06 .trivia ul li .cardface__back a:hover {
	opacity: 0.7;
}
#sec06 .trivia ul li .is-flipped .cardface__back {
  transform: rotateY(360deg);
}
#sec06 .more-content {
	display: none;
}

/* 非表示エリアの基本設定 */
#sec06 .more-content {
	display: none;
}
/* 表示状態のクラス */
#sec06 .more-content.is-active {
	display: block !important;
}
/* ボタンのスタイル */
#sec06 .accordion .toggle-btn {
	width: 100%;
	border: 1px solid #00BE6C;
	background: #fff;
	color: #00BE6C;
	padding: 12px;
	border-radius: 50vh;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 0.3s;
	max-width: 300px;
	margin: 75px auto 0;
}
#sec06 .accordion .toggle-btn:hover {
	opacity: 0.7;
}

@media screen and (max-width:896px) {
	.sec_wrapper {
		border-radius: 100px 0 0 0;
		padding-top: 0;
	}
	#sec06 {
		background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.5) calc(0% + 40px), #CFE5E7 calc(0% + 40px));
		padding-top: 40px;
	}
	#sec06::before {
		height: 40px;
	}
	.sec_wrapper.panel::after {
		background-position: 50%;
	}
	#sec06 .trivia_txt h3 {
		padding-left: 0;
		margin-top: -20px;
		text-align: center;
	}
	#sec06 .trivia ul {
		grid-template-columns: 1fr 1fr;
		justify-items: center;
	}

	#sec06 .tab_contents .tabs-list {
		margin-bottom: 10px;
	}
	#sec06 .tab_contents .tab-area {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	#sec06 .tab_contents .tab {
		width: 100%;
		padding: 10px 0;
    border-radius: 20px;
    font-size: 18px;
	}
	#sec06 .tab_contents .tab-area li {
		text-align: center;
		align-content: center;
	}
	#sec06 .tab_contents .tab-area li img {
		width: 50px;
		opacity: 0.7;
	}
	#sec06 .tab_contents .tab_item {
		padding: 40px 15px;
	}
	#sec06 .tab_contents .tab_item:nth-child(1).active, #sec06 .tab_contents .tab_item:nth-child(2).active, #sec06 .tab_contents .tab_item:nth-child(3).active {
		border-radius: 20px;
	}
	#sec06 .tab_contents .tab_item:nth-child(1) .tab_item-grid .img, #sec06 .tab_contents .tab_item:nth-child(2) .tab_item-grid .img, #sec06 .tab_contents .tab_item:nth-child(3) .tab_item-grid .img {
		width: 100%;
	}
	#sec06 .tab_contents .tab_item .tab_item-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
@media screen and (max-width:650px) {
	#sec06 .trivia ul {
		grid-template-columns: 1fr;
	}
}


/*------------------------------------------------------------
	#sec07
------------------------------------------------------------*/
#sec07 {
	background: #fff;
	padding-top: 80px;
}
#sec07 .news_txt {
	margin-bottom: 85px;
}
#sec07 .news_txt h3 {
	color: #00BE6C;
}
#sec07 .news_list ul li {
	margin-bottom: 100px;
}
#sec07 .news_list .news_info {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
}
#sec07 .news_list .news_info .img {
	max-width: 300px;
}
#sec07 .news_list .news_info .txt .inner {
	display: flex;
	gap: 15px;
	align-items: center;
}
#sec07 .news_list .news_info .txt .inner .cate {
	color: #fff;
	background-color: #999999;
	border-radius: 50vh;
	max-width: 120px;
	text-align: center;
	width: 100%;
	font-size: clamp(1.3rem, 3vw, 1.6rem);
}
#sec07 .news_list .news_info .txt > h4 {
	margin: 15px 0;
	font-size: clamp(2.0rem, 4vw, 2.4rem);
	line-height: 1.5;
}
#sec07 .news_list .news_info .txt a {
	text-decoration: underline;
	color: #00BE6C;
	transition: 0.3s;
}
#sec07 .news_list .news_info .txt a:hover {
	opacity: 0.7;
}
/* 非表示エリアの基本設定 */
#sec07 .news_list ul li .more-content {
	display: none;
	margin-top: 15px;
}
/* 表示状態のクラス */
#sec07 .news_list ul li .more-content.is-active {
	display: block;
}
/* ボタンのスタイル */
#sec07 .news_list .toggle-btn {
	width: 100%;
	border: 1px solid #00BE6C;
	background: #fff;
	color: #00BE6C;
	padding: 12px;
	border-radius: 50vh;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 0.3s;
	max-width: 300px;
	margin: 75px auto 0;
}
#sec07 .news_list .toggle-btn:hover {
	opacity: 0.7;
}
#sec07 .news_list ul li .icon {
	position: absolute;
	right: 25px;
	font-size: 24px;
}
#sec07 .news_list .more_btn {
	display: none;
}

@media screen and (max-width:896px) {
	#sec07 {
		background: #fff;
		padding-top: 40px;
	}
	#sec07 .news_list ul li {
		margin-bottom: 50px;
	}
	#sec07 .news_list ul li:last-child {
		margin-bottom: 0;
	}
	#sec07 .news_list .news_info {
    grid-template-columns: 1fr;
	}
	#sec07 .news_list .news_info .img {
    max-width: min(300px, 65vw);
    margin: 0 auto;
	}
	#sec07 .news_list .news_info .txt .inner .cate {
		max-width: 100px;
	}
	#sec07 .news_list .more_btn {
    display: block;
  }
  #sec07 .news_list .js-content li:nth-child(n+2) {
    display: none;
  }
  #sec07 .news_list .js-content.is-active li:nth-child(n+2) {
    display: block;
  }
}


/*------------------------------------------------------------
	#sec08
------------------------------------------------------------*/
#sec08 {
	background: #E5F8F0;
}
#sec08 .sec08_content .ttl {
	color: #00BE6C;
	margin-bottom: 75px;
}
#sec08 .sec08_content .download_box {
	border: 1px solid #00BE6C;
	border-radius: 20px;
	padding: 40px 50px 40px 85px;
	background-color: #fff;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 50px;
	margin-bottom: 100px;
}
#sec08 .sec08_content .download_box .img {
	width: 200px;
	height: 200px;
	display: grid;
	align-content: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#sec08 .sec08_content .download_box .img::before {
	content: "";
	background-color: #E0F7ED;
	border-radius: 50%;
	width: 200px;
	aspect-ratio: 1/1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
#sec08 .sec08_content .download_box .img img {
	width: 100%;
	max-width: 115px;
}
#sec08 .sec08_content .download_box h4 {
	font-size: clamp(1.6rem, 5vw, 2.4rem);
	margin: 10px 0;
}
#sec08 .sec08_content .download_box p {
	font-size: clamp(1.3rem, 3vw, 1.6rem);
}
#sec08 .sec08_content .download_box a {
	max-width: 400px;
	width: 100%;
	color: #fff;
	background-color: #00BE6C;
	border: 1px solid #00BE6C;
	display: block;
	text-align: center;
	padding: 10px;
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	margin-top: 15px;
	line-height: 1.3;
	position: relative;
	transition: 0.3s;
}
#sec08 .sec08_content .download_box a:hover {
	background-color: #fff;
	color: #00BE6C;
}
#sec08 .sec08_content .download_box a::after {
	content: "";
	background: url(../img/btn_icon_01.svg) no-repeat center;
	background-size: contain;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
	transition: 0.3s;
}
#sec08 .sec08_content .download_box a:hover::after {
	background: url(../img/btn_icon_02.svg) no-repeat center;
}
#sec08 .sec08_content .other_contact {
	margin-bottom: 150px;
}
#sec08 .sec08_content .other_contact h4 {
	font-size: clamp(2.0rem, 4vw, 2.4rem);
}
#sec08 .sec08_content .other_contact a {
	max-width: 240px;
	width: 100%;
	color: #fff;
	background-color: #F6AB00;
	border: 1px solid #F6AB00;
	display: block;
	text-align: center;
	padding: 10px;
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	margin-top: 30px;
	line-height: 1.3;
	position: relative;
	transition: 0.3s;
}
#sec08 .sec08_content .other_contact a:hover {
	color: #F6AB00;
	background-color: #fff;
}
#sec08 .sec08_content .txt {
	font-size: 1.4rem;
}
#sec08 .sec08_content .txt p {
	text-indent: -2em;
	padding-left: 2em;
}
@media screen and (max-width:896px) {
	#sec08 .sec08_content .ttl {
    margin-bottom: 40px;
	}
	#sec08 .sec08_content .download_box {
		border: 1px solid #fff;
		padding: 40px 30px;
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 50px;
	}
	#sec08 .sec08_content .download_box .img {
		text-align: center;
	}
	#sec08 .sec08_content .other_contact {
		margin-bottom: 75px;
	}
	#sec08 .sec08_content .other_contact a {
		margin: 20px auto 0;
	}
}


/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer .footer_content {
	color: #fff;
}
#footer .footer_top {
	background-color: #60D7A3;
	text-align: center;
	padding: 20px;
}
#footer #page-top {
	cursor: pointer;
}
#footer #page-top p {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin: 0 auto;
	font-weight: bold;
}
#footer #page-top p::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	display: block;
	transform: rotate(45deg);
	margin-top: 9px;
}
#footer .footer_bottom {
	background-color: #00BE6C;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
}
#footer .footer_bottom .privacy a {
	color: #fff;
	font-size: clamp(1.0rem, 2.7vw, 1.6rem);
}
#footer .footer_bottom .copy {
	transition: 0.3s;
}
#footer .footer_bottom .copy:hover {
	opacity: 0.7;
}
#footer .footer_bottom .copy p {
	font-size: clamp(1.0rem, 2.7vw, 1.6rem);
}
#footer #pagetop-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 80px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 10;
}
#footer #pagetop-btn:hover {
	opacity: 0.7;
}

@media screen and (max-width:896px) {
	#footer .footer_bottom {
		padding: 20px 15px;
	}

	#footer #pagetop-btn {
		bottom: 15px;
		right: 15px;
		width: 50px;
	}
}