@charset "utf-8";

/*----------------------------------------------------
 elements
----------------------------------------------------*/
html {
	font-size: 62.5%;
}

body {
	color: #161616;
	font-family: "Zen Kaku Gothic Antique", ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.020em;
	line-height: 2;
	background: #fff;
}

div {
	box-sizing: border-box;
}

img{
	vertical-align:top;
	max-width: 100%;
	height: auto;
}

a {
	outline: none;
	color: #000;
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

a:focus, *:focus {
	outline:none;
}

a:visited {
	color: #212121;
}

a img {
	-webkit-transition: opacity .5s ease-out;
	-moz-transition: opacity .5s ease-out;
	-ms-transition: opacity .5s ease-out;
	transition: opacity .5s ease-out;
}

.post, .page {
	margin: 0;
}


.center {
	text-align: center;
}

.clearfix:after {
	content:" ";
	display:block;
	clear:both;
}

.clear {
	clear:both;
	height: 0;
}

small {
	font-weight: 500;
}

ul, ol {
	padding: 0;
	margin: 0;
}

li > ul, li > ol {
	margin-left: 0;
}

ul li {
	list-style: none;
	box-sizing: border-box;
}

dl {
	margin: 0;
}

dt {
	font-weight: 500;
	box-sizing: border-box;
}

dd {
	margin: 0;
	box-sizing: border-box;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table th,
table td {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
	font-weight: 500;
}

p {
	margin: 0;
}

/*----------------------------------------------------
 fadeIn
----------------------------------------------------*/

.fadeIn {
	transform: translate3d(0, -10px, 0);
	transition: 1s;
	opacity: 0;
}

.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

/*----------------------------------------------------
 inner
----------------------------------------------------*/
.inner {
	width: calc(100% - 3.6rem);
	max-width: 1440px;
	margin: 0 auto;
}

/*----------------------------------------------------
 header
----------------------------------------------------*/

#header {
	width: 100%;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

#header .inner {
	max-width: initial;
}

#header .headerFlex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 22px 16px 21px;
}

#header .headerFlex .logo {
	width: 100%;
	max-width: 328px;
	line-height: 88px;
}

#header .headerFlex .button {
	width: 400px;
	height: 80px;
}

#header .headerFlex .button a {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f26580;
	border: 4px solid #f26580;
	border-radius: 40px;
	box-sizing: border-box;
}

#header .headerFlex .button a .tex {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	color: #fff;
	transition: all 0.3s ease 0s;
}

#header .headerFlex .button a .arrow {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	display: inline-block;
	width: 7.9px;
	height: 12.9px;
}

#header .headerFlex .button a .arrow::before,
#header .headerFlex .button a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 10px;
  height: 3px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1.5px) 50%;
	transition: all 0.3s ease 0s;
}

#header .headerFlex .button a .arrow::before {
  transform: rotate(45deg);
}

#header .headerFlex .button a .arrow::after {
  transform: rotate(-45deg);
}

/*----------------------------------------------------
 #innerMenu
----------------------------------------------------*/

#innerMenu {
	position: relative;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
}

/*----------------------------------------------------
 footer
----------------------------------------------------*/

#footer {
	position: relative;
	padding: 16px 0 43px 0;
}

#footer .inner {
	position: relative;
	max-width: 1884px;
}

#footer .areaBg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
}

#footer .areaBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#footer .logo {
	width: 100%;
	max-width: 614px;
	margin: 0 auto 209px;
}

#footer .footNav {
	position: absolute;
	right: 33px;
	bottom: -1px;
}

#footer .footNav nav ul {
	display: flex;
}

#footer .footNav nav ul li a {
	padding: 0 25px;
	border-left: 1px solid #fff;
}

#footer .footNav nav ul li a .tex {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}

#footer .footNav nav ul li:first-child a {
	border: initial;
}

#footer .copy {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
}

/*----------------------------------------------------
 #goTop
----------------------------------------------------*/

#goTop a {
	width: 100px;
	height: 100px;
	background: #f26580;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 100;
}

#goTop a .icon {
	width: 100%;
	max-width: 40px;
	line-height: 30px;
}


/*----------------------------------------------------
 #visual
----------------------------------------------------*/

#visual {
	position: relative;
	overflow: hidden;
	background: #fafafa;
	padding: 184px 0 118px 0;
}

#visual .leftBg {
	width: 100%;
	max-width: 10px;
	position: absolute;
	left: 0;
	top: 120px;
}

#visual .rightBg {
	width: 100%;
	max-width: 10px;
	position: absolute;
	right: 0;
	top: 120px;
}

#visual .bottomBg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

#visual .bottomBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#visual .visualFlex {
	position: relative;
	display: flex;
	justify-content: space-between;
}

#visual .visualFlex .image {
	width: 830px;
	position: absolute;
	right: -134px;
	top: 0;
}

#visual .visualFlex .conts {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transform: translateX(-25px);
	-webkit-transform: translateX(-25px);
	-moz-transform: translateX(-25px);
}

#visual .visualFlex .conts .head {
	position: relative;
	margin-bottom: 39px;
	padding: 98px 0 0 0;
}

#visual .visualFlex .conts .head h2 {
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
}

#visual .visualFlex .conts .head h2 small {
	width: 876px;
	position: absolute;
	left: -191px;
	top: -23px;
}

#visual .visualFlex .conts .head h2 b {
	font-size: 72px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.25;
	text-align: center;
	color: #00b2ae;
}

#visual .visualFlex .conts .head h2 b .posi01 {
	display: inline-block;
	transform: translateX(12px);
	-webkit-transform: translateX(12px);
	-moz-transform: translateX(12px);
}

#visual .visualFlex .conts .head h2 b .posi02 {
	display: inline-block;
	transform: translateX(-16px);
	-webkit-transform: translateX(-16px);
	-moz-transform: translateX(-16px);
}

#visual .visualFlex .conts .head p {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2;
	text-align: center;
	color: #161616;
}

#visual .visualFlex .conts .checkList {
	margin-bottom: 52px;
	padding: 0 0 0 63px;
}

#visual .visualFlex .conts .checkList ul {
	display: flex;
	align-items: center;
}

#visual .visualFlex .conts .checkList ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#visual .visualFlex .conts .checkList ul li:last-child {
	margin-left: 40px;
}

#visual .visualFlex .conts .checkList ul li .icon {
	width: 100%;
	max-width: 30px;
	line-height: 30px;
	margin-right: 15px;
}

#visual .visualFlex .conts .checkList ul li .tex {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	color: #161616;
}

#visual .visualFlex .conts .checkList ul li:last-child .tex {
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
}

#visual .visualFlex .conts .checkList ul li .tex b {
	font-size: 32px;
}

#visual .visualFlex .conts .button {
	position: relative;
	width: 591px;
	height: 181px;
	margin: 0 0 0 25px;
}

#visual .visualFlex .conts .button a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

#visual .visualFlex .conts .button a .bt01 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: inline-block;
	width: 100%;
	max-width: 590px;
	transition: all 0.3s ease 0s;
}

#visual .visualFlex .conts .button a .bt02 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	display: inline-block;
	width: 100%;
	max-width: 590px;
}

#visual .navArea {
	position: relative;
	padding: 118px 0 0 0;
}

#visual .navArea .reefleft {
	width: 100%;
	max-width: 110px;
	line-height: 106px;
	position: absolute;
	left: -104px;
	top: -265px;
}

#visual .navArea .reefRight {
	width: 100%;
	max-width: 208px;
	line-height: 220px;
	position: absolute;
	right: -222px;
	top: -209px;
}

#visual .navArea .navBox {
	background: #fff;
	border-radius: 20px;
	padding: 62px 19px 69px;
}

#visual .navArea .navBox .boxObj {
	width: 100%;
	max-width: 359px;
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

#visual .navArea .navBox nav ul {
	display: flex;
	justify-content: space-between;
}

#visual .navArea .navBox nav ul li {
	width: calc(100% / 5);
}

#visual .navArea .navBox nav ul li a {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #dfdfdf;
}

#visual .navArea .navBox nav ul li:last-child a {
	border-right: initial;
}

#visual .navArea .navBox nav ul li a .tex {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: center;
	color: #f26580;
}

#visual .navArea .navBox nav ul li:first-child a .tex {
	transform: translateX(-13px);
	-webkit-transform: translateX(-13px);
	-moz-transform: translateX(-13px);
}

#visual .navArea .navBox nav ul li:last-child a .tex {
	transform: translateX(8px);
	-webkit-transform: translateX(8px);
	-moz-transform: translateX(8px);
}

#visual .navArea .navBox nav ul li a .arrow {
	width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 12px solid #f26580;
  border-bottom: 0;
	position: absolute;
	bottom: -43px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	 transition: all 0.3s ease 0s;
}

#visual .navArea .navBox nav ul li:first-child a .arrow {
	left: 46%;
}

#visual .navArea .navBox nav ul li:last-child a .arrow {
	left: 54%;
}

#visual .navArea .navBox nav ul li a .listObj {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	width: 90px;
	height: 26px;
	background: #00b2ae;
	border-radius: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -43px;
	left: 54%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

/*----------------------------------------------------
 #reason
----------------------------------------------------*/

#reason {
	position: relative;
	padding: 158px 0 168px 0;
}

#reason .head {
	margin-bottom: 100px;
}

#reason .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 71px;
}

#reason .head h2 b {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
}

#reason .head .dots {
	width: 100%;
	max-width: 78px;
	margin: 0 auto 0;
}

#reason .reasonList {
	display: flex;
	flex-direction: column;
}

#reason .reasonList .box01 {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: 325px;
}

#reason .reasonList .box01 .image {
	position: absolute;
	right: -160px;
	top: 0;
	width: 900px;
	z-index: -1;
}

#reason .reasonList .box01 .conts {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 660px;
}

#reason .reasonList .box01 .conts .no {
	width: 100%;
	max-width: 128px;
	margin-bottom: 56px;
}

#reason .reasonList .box01 .conts .boxHead {
	margin-bottom: 43px;
}

#reason .reasonList .box01 .conts .boxHead h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#reason .reasonList .box01 .conts .boxHead h2 b {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.135;
	text-align: center;
	color: #f26580;
	margin-bottom: 58px;
}

#reason .reasonList .box01 .conts .boxHead h2 b span {
	font-size: 56px;
}

#reason .reasonList .box01 .conts .boxHead h2 .line {
	width: 264px;
	display: inline-block;
}

#reason .reasonList .box01 .conts p {
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	text-align: justify;
	color: #161616;
}

#reason .reasonList .box02 {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 129px;
}

#reason .reasonList .box02 .image {
	position: absolute;
	left: -111px;
	top: 0;
	width: 849px;
	z-index: -1;
}

#reason .reasonList .box02 .conts {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 660px;
}

#reason .reasonList .box02 .conts .no {
	width: 100%;
	max-width: 128px;
	margin-bottom: 50px;
}

#reason .reasonList .box02 .conts .boxHead {
	margin-bottom: 40px;
}

#reason .reasonList .box02 .conts .boxHead h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#reason .reasonList .box02 .conts .boxHead h2 b {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #f26580;
	margin-bottom: 55px;
}

#reason .reasonList .box02 .conts .boxHead h2 .line {
	width: 264px;
	display: inline-block;
}

#reason .reasonList .box02 .conts p {
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	text-align: justify;
	color: #161616;
}

#reason .reasonList .box03 {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: 187px;
}

#reason .reasonList .box03 .image {
	position: absolute;
	right: -67px;
	top: 0;
	width: 809px;
	z-index: -1;
}

#reason .reasonList .box03 .conts {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 660px;
}

#reason .reasonList .box03 .conts .no {
	width: 100%;
	max-width: 128px;
	margin-bottom: 56px;
}

#reason .reasonList .box03 .conts .boxHead {
	margin-bottom: 39px;
}

#reason .reasonList .box03 .conts .boxHead h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#reason .reasonList .box03 .conts .boxHead h2 b {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #f26580;
	margin-bottom: 52px;
}

#reason .reasonList .box03 .conts .boxHead h2 .line {
	width: 264px;
	display: inline-block;
}

#reason .reasonList .box03 .conts p {
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	text-align: justify;
	color: #161616;
}

#reason .reasonList .box04 {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 129px;
}

#reason .reasonList .box04 .image {
	position: absolute;
	left: -94px;
	top: 0;
	width: 832px;
	z-index: -1;
}

#reason .reasonList .box04 .conts {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 660px;
}

#reason .reasonList .box04 .conts .no {
	width: 100%;
	max-width: 128px;
	margin-bottom: 36px;
}

#reason .reasonList .box04 .conts .boxHead {
	margin-bottom: 43px;
}

#reason .reasonList .box04 .conts .boxHead h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#reason .reasonList .box04 .conts .boxHead h2 b {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	color: #f26580;
	margin-bottom: 55px;
}

#reason .reasonList .box04 .conts .boxHead h2 b span {
	font-size: 56px;
}

#reason .reasonList .box04 .conts .boxHead h2 .line {
	width: 264px;
	display: inline-block;
}

#reason .reasonList .box04 .conts p {
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	text-align: justify;
	color: #161616;
}

/*----------------------------------------------------
 #contact
----------------------------------------------------*/

#contact {
	position: relative;
}

#contact .inner {
	max-width: initial;
	width: 100%;
}

#contact .cvFlex {
	display: flex;
	justify-content: space-between;
}

#contact .cvFlex .greenBox {
	position: relative;
	width: 50%;
	padding: 62px;
}

#contact .cvFlex .greenBox .boxBg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#contact .cvFlex .greenBox .boxBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#contact .cvFlex .greenBox .innerBox {
	position: relative;
	background: #fff;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 66px 0 49px 0;
}

#contact .cvFlex .greenBox .innerBox:before {
	content: '';
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	border: 2px solid #00b2ae;
	border-radius: 16px;
	position: absolute;
	top: 6px;
	left: 6px;
}

#contact .cvFlex .greenBox .innerBox .boxLeftObj {
	width: 100%;
	max-width: 104px;
	position: absolute;
	left: 44px;
	top: 257px;
}

#contact .cvFlex .greenBox .innerBox .boxHead {
	margin-bottom: 35px;
}

#contact .cvFlex .greenBox .innerBox .boxHead h2 {
	position: relative;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	color: #00b2ae;
	margin-bottom: 28px;
	z-index: 1;
}

#contact .cvFlex .greenBox .innerBox .boxHead p {
	position: relative;
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.02em;
	text-align: center;
	color: #161616;
	z-index: 1;
}

#contact .cvFlex .greenBox .innerBox .button {
	position: relative;
	width: 480px;
	height: 153px;
	margin: 0 auto 49px;
	z-index: 1;
}

#contact .cvFlex .greenBox .innerBox .button a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

#contact .cvFlex .greenBox .innerBox .button a .bt01 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: inline-block;
	width: 100%;
	max-width: 590px;
	transition: all 0.3s ease 0s;
}

#contact .cvFlex .greenBox .innerBox .button a .bt02 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	display: inline-block;
	width: 100%;
	max-width: 590px;
}

#contact .cvFlex .greenBox .innerBox .cvInfo {
	width: 620px;
	position: relative;
	border-top: 1px solid #c0c0c0;
	z-index: 1;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea {
	position: relative;
	padding: 29px 0 0 0;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .icon {
	width: 100%;
	max-width: 72px;
	position: absolute;
	left: 0;
	top: 50px;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 16px;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 7px;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .noHead {
	width: 70px;
	height: 30px;
	border: 1px solid #00b2ae;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 9px 0;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .noHead p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: #00b2ae;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .telNo {
	margin: 0 7px;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .telNo p {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #00b2ae;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noTex {
	display: flex;
	justify-content: center;
}

#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noTex p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	color: #161616;
}

#contact .cvFlex .yellowBox {
	position: relative;
	width: 50%;
	padding: 62px;
}

#contact .cvFlex .yellowBox .boxBg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#contact .cvFlex .yellowBox .boxBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#contact .cvFlex .yellowBox .innerBox {
	position: relative;
	background: #fff;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 172px 0 121px 0;
}

#contact .cvFlex .yellowBox .innerBox:before {
	content: '';
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	border: 2px solid #f8c61e;
	border-radius: 16px;
	position: absolute;
	top: 6px;
	left: 6px;
}

#contact .cvFlex .yellowBox .innerBox .boxLeftObj {
	width: 100%;
	max-width: 113px;
	position: absolute;
	left: 43px;
	top: 41px;
}

#contact .cvFlex .yellowBox .innerBox .boxRightObj {
	width: 100%;
	max-width: 94px;
	position: absolute;
	right: 42px;
	top: 42px;
}

#contact .cvFlex .yellowBox .innerBox .pinkHead {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 66px;
	width: 400px;
	height: 56px;
	background: #f26580;
	border-radius: 28px;
	transform: translateX(-2px);
	-webkit-transform: translateX(-2px);
	-moz-transform: translateX(-2px);
}

#contact .cvFlex .yellowBox .innerBox .pinkHead:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 16px solid #f26580;
	border-bottom: 0;
	position: absolute;
	bottom: -11px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

#contact .cvFlex .yellowBox .innerBox .pinkHead p {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
}

#contact .cvFlex .yellowBox .innerBox h2 {
	position: relative;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #f26580;
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	margin-bottom: 69px;
	z-index: 1;
}

#contact .cvFlex .yellowBox .innerBox .button {
	position: relative;
	width: 560px;
	height: 88px;
	margin: 0 auto 49px;
	transform: translateX(-3px);
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
	z-index: 1;
}

#contact .cvFlex .yellowBox .innerBox .button a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border: 2px solid #00b2ae;
	border-radius: 44px;
}

#contact .cvFlex .yellowBox .innerBox .button a .tex {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	color: #00b2ae;
	transition: all 0.3s ease 0s;
}

#contact .cvFlex .yellowBox .innerBox .button a .arrow {
	position: absolute;
	top: 50%;
	right: 23px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	display: inline-block;
	width: 7.9px;
	height: 12.9px;
}

#contact .cvFlex .yellowBox .innerBox .button a .arrow::before,
#contact .cvFlex .yellowBox .innerBox .button a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 10px;
  height: 3px;
  border-radius: 9999px;
  background-color: #00b2ae;
  transform-origin: calc(100% - 1.5px) 50%;
	transition: all 0.3s ease 0s;
}

#contact .cvFlex .yellowBox .innerBox .button a .arrow::before {
  transform: rotate(45deg);
}

#contact .cvFlex .yellowBox .innerBox .button a .arrow::after {
  transform: rotate(-45deg);
}

/*----------------------------------------------------
 #price
----------------------------------------------------*/

#price {
	position: relative;
	padding: 155px 0 281px 0;
}

#price .head {
	margin-bottom: 82px;
}

#price .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 71px;
}

#price .head h2 b {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
}

#price .head .dots {
	width: 100%;
	max-width: 78px;
	margin: 0 auto 0;
}

#price .priceFlow {
	margin-bottom: 90px;
}

#price .priceFlow .squareHead {
	margin-bottom: 47px;
}

#price .priceFlow .squareHead h3 {
	display: flex;
	align-items: center;
}

#price .priceFlow .squareHead h3 .square {
	width: 32px;
	height: 32px;
	background: #f26580;
	margin-right: 23px;
}

#price .priceFlow .squareHead h3 b {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0;
	color: #161616;
}

#price .priceFlow .flowBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #e5f7f7;
	border-radius: 30px;
	margin-bottom: 112px;
	padding: 80px 0 71px 0;
}

#price .priceFlow .flowBox .flowImg {
	width: 100%;
	max-width: 1281px;
	margin-bottom: 36px;
}

#price .priceFlow .flowBox .addTex {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
}

#price .priceFlow .flowConts {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#price .priceFlow .flowConts h4 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #00b2ae;
	margin-bottom: 37px;
	transform: translateX(9px);
	-webkit-transform: translateX(9px);
	-moz-transform: translateX(9px);
}

#price .priceFlow .flowConts p {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
	transform: translateX(8px);
	-webkit-transform: translateX(8px);
	-moz-transform: translateX(8px);
}

#price .priceDownload .squareHead {
	margin-bottom: 57px;
}

#price .priceDownload .squareHead h3 {
	display: flex;
	align-items: center;
	margin-bottom: 11px;
}

#price .priceDownload .squareHead h3 .square {
	width: 32px;
	height: 32px;
	background: #f26580;
	margin-right: 23px;
}

#price .priceDownload .squareHead h3 b {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0;
	color: #161616;
}

#price .priceDownload .squareHead p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	color: #161616;
	transform: translateX(-3px);
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
}

#price .priceDownload .dlList {
	display: flex;
	flex-direction: column;
}

#price .priceDownload .dlList .boxGreen {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #e5f7f7;
	padding: 32px 39px 32px 38px;
}

#price .priceDownload .dlList .boxGreen h4 {
	display: flex;
	align-items: center;
}

#price .priceDownload .dlList .boxGreen h4 b {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
}

#price .priceDownload .dlList .boxGreen h4 small {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #00b2ae;
	width: 131px;
}

#price .priceDownload .dlList .boxGreen .dlButton {
	width: 429px;
	height: 56px;
}

#price .priceDownload .dlList .boxGreen .dlButton a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #00b2ae;
}

#price .priceDownload .dlList .boxGreen .dlButton a .tex {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
	transform: translateX(-12px);
	-webkit-transform: translateX(-12px);
	-moz-transform: translateX(-12px);
}

#price .priceDownload .dlList .boxGreen .dlButton a .icon {
	width: 100%;
	max-width: 21px;
	line-height: 21px;
	position: absolute;
	top: 50%;
	right: 28px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

#price .priceDownload .dlList .boxWhite {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	padding: 33px 39px 33px 38px;
}

#price .priceDownload .dlList .boxWhite h4 {
	display: flex;
	align-items: center;
}

#price .priceDownload .dlList .boxWhite h4 b {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
}

#price .priceDownload .dlList .boxWhite h4 small {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #00b2ae;
	width: 131px;
}

#price .priceDownload .dlList .boxWhite .dlButton {
	width: 429px;
	height: 56px;
}

#price .priceDownload .dlList .boxWhite .dlButton a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #00b2ae;
}

#price .priceDownload .dlList .boxWhite .dlButton a .tex {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
	transform: translateX(-12px);
	-webkit-transform: translateX(-12px);
	-moz-transform: translateX(-12px);
}

#price .priceDownload .dlList .boxWhite .dlButton a .icon {
	width: 100%;
	max-width: 21px;
	line-height: 21px;
	position: absolute;
	top: 50%;
	right: 28px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/*----------------------------------------------------
 #use
----------------------------------------------------*/

#use {
	position: relative;
	background: #faf5f0;
	padding: 0 0 160px 0;
}

#use:before {
	content: '';
	width: 880px;
	height: 880px;
	border-radius: 50%;
	background: #faf5f0;
	position: absolute;
	top: -119px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: -1;
}

#use .leftObj {
	width: 100%;
	max-width: 340px;
	position: absolute;
	left: 41px;
	top: 39px;
}

#use .rightObj {
	width: 100%;
	max-width: 340px;
	position: absolute;
	right: 41px;
	top: 39px;
}

#use .head {
	margin-bottom: 86px;
}

#use .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 71px;
}

#use .head h2 .fukidashi {
	width: 100%;
	max-width: 332px;
	margin: 0 auto 20px;
}

#use .head h2 small {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #f26580;
	margin-bottom: 21px;
	transform: translateX(8px);
	-webkit-transform: translateX(8px);
	-moz-transform: translateX(8px);
}

#use .head h2 b {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
	transform: translateX(-3px);
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
}

#use .head .dots {
	width: 100%;
	max-width: 78px;
	margin: 0 auto 0;
}

#use .caseArea {
	position: relative;
	margin-bottom: 204px;
}

#use .caseArea .leftImg {
	width: 517px;
	position: absolute;
	left: -171px;
	top: 183px;
}

#use .caseArea .rightImg {
	width: 461px;
	position: absolute;
	right: -210px;
	top: 339px;
}

#use .caseArea .caseHead {
	margin-bottom: 54px;
}

#use .caseArea .caseHead h3 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#use .caseArea .caseHead h3 small {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
	margin-bottom: 56px;
}

#use .caseArea .caseHead h3 b {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #00b2ae;
	transform: translateX(6px);
	-webkit-transform: translateX(6px);
	-moz-transform: translateX(6px);
}

#use .caseArea .caseList {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 200px;
}

#use .caseArea .caseList .box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 278px;
	height: 296px;
	margin: 0 6px 13px;
	z-index: 1;
}

#use .caseArea .caseList .box .boxBg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#use .caseArea .caseList .box .boxBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#use .caseArea .caseList .box .boxHead {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 18px 0 18px 0;
}

#use .caseArea .caseList .box01 .boxHead h3 {
	width: 100%;
	max-width: 93px;
	margin: 0 auto 0;
}

#use .caseArea .caseList .box02 .boxHead h3 {
	width: 100%;
	max-width: 102px;
	margin: 0 auto 0;
}

#use .caseArea .caseList .box03 .boxHead h3 {
	width: 100%;
	max-width: 102px;
	margin: 0 auto 0;
}

#use .caseArea .caseList .box04 .boxHead h3 {
	width: 100%;
	max-width: 104px;
	margin: 0 auto 0;
}

#use .caseArea .caseList .box05 .boxHead h3 {
	width: 100%;
	max-width: 103px;
	margin: 0 auto 0;
}

#use .caseArea .caseList .box .boxConts {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100% - 68px);
}

#use .caseArea .caseList .box .boxConts p {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
	transform: translateY(-15px);
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
}

#use .caseArea .caseList .box04 .boxConts p {
	transform: translateY(-9px);
	-webkit-transform: translateY(-9px);
	-moz-transform: translateY(-9px);
}

#use .caseArea .caseList .box .boxConts p span {
	font-size: 20px;
}

#use .caseArea .caseList .box .boxConts .rabitBg {
	width: 100%;
	max-width: 106px;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: -1;
}

#use .serviceArea .serviceBox {
	background: #fff;
	border-radius: 30px;
	padding: 0 0 66px 0;
}

#use .serviceArea .serviceBox .serviceHead {
	display: flex;
	justify-content: center;
	margin-bottom: -20px;
	transform: translateY(-56px);
	-webkit-transform: translateY(-56px);
	-moz-transform: translateY(-56px);
}

#use .serviceArea .serviceBox .serviceHead h3 {
	width: 100%;
	max-width: 533px;
	margin: 0 auto 0;
}

#use .serviceArea .serviceBox .serviceList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 1px;
	padding: 0 81px;
}

#use .serviceArea .serviceBox .serviceList .box {
	width: calc(100% / 5);
	margin-bottom: 38px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#use .serviceArea .serviceBox .serviceList .box .icon {
	width: 180px;
	margin-bottom: 26px;
}

#use .serviceArea .serviceBox .serviceList .box h4 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0;
	text-align: center;
	color: #f26580;
}

#use .serviceArea .serviceBox .addTex p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
}

#use .colorBorder {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	width: 100%;
	height: 10px;
	z-index: 1;
}

#use .colorBorder .green {
	width: calc(100% / 3);
	height: 100%;
	background: #00b2ae;
}

#use .colorBorder .pink {
	width: calc(100% / 3);
	height: 100%;
	background: #f26580;
}

#use .colorBorder .yellow {
	width: calc(100% / 3);
	height: 100%;
	background: #f5bf0a;
}

/*----------------------------------------------------
 #voice
----------------------------------------------------*/

#voice {
	position: relative;
	overflow: hidden;
	padding: 156px 0 160px 0;
}

#voice .head {
	margin-bottom: 100px;
}

#voice .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 71px;
}

#voice .head h2 b {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
	transform: translateX(-3px);
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
}

#voice .head .dots {
	width: 100%;
	max-width: 78px;
	margin: 0 auto 0;
}

#voice .voiceSlide {
	position: relative;
}

#voice .voiceSlide .slide-arrow {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #f26580;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

#voice .voiceSlide .next-arrow {
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 83px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 1;
}

#voice .voiceSlide .next-arrow .arrow {
	position: relative;
  display: inline-block;
  width: 12.2px;
  height: 21.4px;
}

#voice .voiceSlide .next-arrow .arrow::before,
#voice .voiceSlide .next-arrow .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: -4px;
  width: 23px;
  height: 5px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1.5px) 50%;
}

#voice .voiceSlide .next-arrow .arrow::before {
  transform: rotate(45deg);
}

#voice .voiceSlide .next-arrow .arrow::after {
  transform: rotate(-45deg);
}

#voice .voiceSlide .prev-arrow {
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 83px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 1;
}

#voice .voiceSlide .prev-arrow .arrow {
	position: relative;
  display: inline-block;
  width: 15.3px;
  height: 26.6px;
}

#voice .voiceSlide .prev-arrow .arrow::before,
#voice .voiceSlide .prev-arrow .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  left: -4px;
  width: 23px;
  height: 5px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 1.5px 50%;
}

#voice .voiceSlide .prev-arrow .arrow::before {
  transform: rotate(45deg);
}

#voice .voiceSlide .prev-arrow .arrow::after {
  transform: rotate(-45deg);
}

#voice .voiceSlide .slick-list {
  overflow: visible;
}

#voice .voiceSlide .slick-track {
  display: flex;
}

#voice .voiceSlide .slick-slide {
  height: auto !important;
}

#voice .voiceSlide .box {
	width: 1200px;
	border: 6px solid #f26580;
	border-radius: 40px;
	margin: 0 40px;
	padding: 33px 34px 61px 34px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

#voice .voiceSlide .box .boxHead {
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #f26580;
	padding: 0 0 31px 0;
}

#voice .voiceSlide .box .boxHead h3 {
	display: flex;
	justify-content: center;
}

#voice .voiceSlide .box01 .boxHead h3 {
	width: 100%;
	max-width: 111px;
	margin: 0 auto 0;
}

#voice .voiceSlide .box02 .boxHead h3 {
	width: 100%;
	max-width: 108px;
	margin: 0 auto 0;
}

#voice .voiceSlide .box03 .boxHead h3 {
	width: 100%;
	max-width: 110px;
	margin: 0 auto 0;
}

#voice .voiceSlide .box .boxConts {
	padding: 30px 38px 0;
}

#voice .voiceSlide .box .boxConts p {
	font-size: 20px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.02em;
	text-align: justify;
	color: #161616;
}

#voice .voiceSlide .box .boxConts p:last-child {
	margin-bottom: 0;
}

/*----------------------------------------------------
 #faq
----------------------------------------------------*/

#faq {
	position: relative;
	padding: 158px 0 160px 0;
}

#faq .inner {
	max-width: 1200px;
}

#faq .areaBg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

#faq .areaBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#faq .head {
	margin-bottom: 100px;
}

#faq .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 71px;
}

#faq .head h2 b {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
	transform: translateX(-3px);
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
}

#faq .head .dots {
	width: 100%;
	max-width: 78px;
	margin: 0 auto 0;
}

#faq .faqLists dl {
	margin-bottom: 15px;
}

#faq .faqLists dl dt {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 30px 30px 30px 40px;
	border-radius: 10px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

#faq .faqLists dl dt .qIcon {
	width: 100%;
	max-width: 36px;
	line-height: 36px;
	margin-right: 38px;
}

#faq .faqLists dl dt .tex {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	color: #161616;
}

#faq .faqLists dl dt .closeLine {
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	right: 41px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

#faq .faqLists dl dt .closeLine:after {
	content: '';
	width: 100%;
	height: 1px;
	background: #00b2ae;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all 0.3s ease;
}

#faq .faqLists dl dt .closeLine:before {
	content: '';
	width: 1px;
	height: 100%;
	background: #00b2ae;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transition: all 0.3s ease;
}

#faq .faqLists dl dt.active .closeLine:before {
	opacity: 0;
}

#faq .faqLists dl dd {
	display: none;
	padding: 30px 38px 15px 38px;
}

#faq .faqLists dl dd .anserConts {
	display: flex;
}

#faq .faqLists dl dd .anserConts .aIcon {
	width: 100%;
	max-width: 38px;
	line-height: 34px;
	margin-right: 38px;
}

#faq .faqLists dl dd .anserConts p {
	font-size: 20px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0;
	text-align: justify;
	color: #161616;
}

#faq .faqLists dl dd .anserConts p small {
	font-size: 16px;
}

/*----------------------------------------------------
 #step
----------------------------------------------------*/

#step {
	position: relative;
	padding: 147px 0 146px 0;
}

#step .head {
	margin-bottom: 100px;
}

#step .head h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 71px;
}

#step .head h2 small {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #f26580;
	margin-bottom: 22px;
	padding: 22px 0 22px 20px;
	border-top: 1px solid #f26580;
	border-bottom: 1px solid #f26580;
}

#step .head h2 b {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
	transform: translateX(-3px);
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
}

#step .head h2 b span {
	font-size: 64px;
	color: #00b2ae;
}

#step .head .dots {
	width: 100%;
	max-width: 78px;
	margin: 0 auto 0;
}

#step .stepFlow {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: 144px;
}

#step .stepFlow .box {
	position: relative;
	width: 460px;
}

#step .stepFlow .box01 {
	z-index: 3;
}

#step .stepFlow .box01 .stepHead {
	width: 100%;
	max-width: 88px;
	margin: 0 auto 26px;
}

#step .stepFlow .box02 {
	z-index: 2;
}

#step .stepFlow .box02 .stepHead {
	width: 100%;
	max-width: 98px;
	margin: 0 auto 26px;
}

#step .stepFlow .box03 {
	z-index: 1;
}

#step .stepFlow .box03 .stepHead {
	width: 100%;
	max-width: 97px;
	margin: 0 auto 26px;
}

#step .stepFlow .box .innerBox {
	position: relative;
	width: 100%;
	height: 427px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #e5f7f7;
	border-radius: 20px;
	padding: 49px 0 0 0;
}

#step .stepFlow .box .innerBox .icon {
	width: 100%;
	max-width: 140px;
	margin: 0 auto 33px;
}

#step .stepFlow .box .innerBox h3 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3125;
	text-align: center;
	color: #00b2ae;
	margin-bottom: 18px;
}

#step .stepFlow .box .innerBox p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
}

#step .stepFlow .box .innerBox .arrow {
	position: absolute;
	top: 50%;
	right: -66px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 100%;
	max-width: 104px;
	z-index: 1;
}

#step .addTex p {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
	color: #f2657f;
	transform: translateX(10px);
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
}

/*----------------------------------------------------
 #corporation
----------------------------------------------------*/

#corporation {
	position: relative;
	padding: 162px 0 146px 0;
}

#corporation .bgBox {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 0 118px 0;
}

#corporation .bgBox .boxBg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#corporation .bgBox .boxBg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#corporation .bgBox .boxHead {
	margin-bottom: 65px;
}

#corporation .bgBox .boxHead h2 {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 0;
}

#corporation .bgBox .eventHead {
	margin-bottom: 70px;
}

#corporation .bgBox .eventHead h3 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #f26580;
	margin-bottom: 37px;
}

#corporation .bgBox .eventHead p {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
}

#corporation .bgBox .innerBox {
	max-width: 1200px;
	background: #fff;
	border-radius: 20px;
	margin: 0 auto 111px;
	padding: 64px 0 80px 0;
}

#corporation .bgBox .innerBox .descTex {
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0;
	text-align: justify;
	color: #161616;
	margin-bottom: 58px;
	padding: 0 80px;
}

#corporation .bgBox .innerBox .caseHead {
	margin-bottom: 48px;
}

#corporation .bgBox .innerBox .caseHead h4 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
}

#corporation .bgBox .innerBox .caseList {
	display: flex;
	justify-content: center;
	margin-bottom: 74px;
}

#corporation .bgBox .innerBox .caseList .box {
	width: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 10px;
}

#corporation .bgBox .innerBox .caseList .box .icon {
	width: 100%;
	max-width: 180px;
	margin: 0px auto 43px;
}

#corporation .bgBox .innerBox .caseList .box p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
}

#corporation .bgBox .innerBox .caseList .box03 p {
	transform: translateX(5px);
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
}

#corporation .bgBox .innerBox .innerImg {
	width: 100%;
	max-width: 1041px;
	margin: 0 auto 0;
}

#corporation .corpContact {
	margin-bottom: 45px;
}

#corporation .corpContact p {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	color: #161616;
	margin-bottom: 47px;
}

#corporation .corpContact .button {
	width: 800px;
	height: 100px;
}

#corporation .corpContact .button a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	border: 2px solid #f5a50a;
	box-sizing: border-box;
	background: #F7B73B;
	background: -webkit-linear-gradient(180deg, rgba(247, 183, 59, 1) 0%, rgba(247, 183, 59, 1) 50%, rgba(245, 165, 10, 1) 50%, rgba(245, 165, 10, 1) 100%);
	background: -moz-linear-gradient(180deg, rgba(247, 183, 59, 1) 0%, rgba(247, 183, 59, 1) 50%, rgba(245, 165, 10, 1) 50%, rgba(245, 165, 10, 1) 100%);
	background: linear-gradient(180deg, rgba(247, 183, 59, 1) 0%, rgba(247, 183, 59, 1) 50%, rgba(245, 165, 10, 1) 50%, rgba(245, 165, 10, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F7B73B", endColorstr="#F5A50A", GradientType=0);
}

#corporation .corpContact .button a .tex {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	color: #fff;
}

#corporation .telBox {
	width: 800px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	padding: 51px 0 55px 0;
}

#corporation .telBox .icon {
	width: 72px;
	line-height: 72px;
	margin: 10px 17px 0;
}

#corporation .telBox .noTex {
	display: flex;
	flex-direction: column;
	margin: 0 5px;
}

#corporation .telBox .noTex .no {
	margin: 0 0 9px;
}

#corporation .telBox .noTex .no p {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #f5a50a;
}

#corporation .telBox .noTex .tex p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	color: #161616;
}

/*----------------------------------------------------
 PC Hover
----------------------------------------------------*/

@media screen and (min-width: 769px) {
	.pc_hidden {
		display: none !important;
	}

	#header .headerFlex .button a:hover {
		background: #fff;
	}

	#header .headerFlex .button a:hover .tex {
		color: #f26580;
	}

	#header .headerFlex .button a:hover .arrow::before,
	#header .headerFlex .button a:hover .arrow::after {
		background-color: #f26580;
	}

	#visual .visualFlex .conts .button a:hover .bt01 {
		opacity: 0;
	}

	#visual .navArea .navBox nav ul li a:hover .arrow {
		border-top-color: #f5bf0a;
	}

	#contact .cvFlex .greenBox .innerBox .button a:hover .bt01 {
		opacity: 0;
	}

	#contact .cvFlex .yellowBox .innerBox .button a:hover {
		background: #00b2ae;
	}

	#contact .cvFlex .yellowBox .innerBox .button a:hover .tex {
		color: #fff;
	}

	#contact .cvFlex .yellowBox .innerBox .button a:hover .arrow::before,
	#contact .cvFlex .yellowBox .innerBox .button a:hover .arrow::after {
		background-color: #fff;
	}

	#voice .voiceSlide .slide-arrow:hover {
		background: #ee95a6;
	}

	#price .priceDownload .dlList .boxGreen .dlButton a:hover {
		background: #72d4d2;
	}

	#price .priceDownload .dlList .boxWhite .dlButton a:hover {
		background: #72d4d2;
	}

	#corporation .corpContact .button a:hover {
		opacity: 0.7;
	}

	#goTop a:hover {
		opacity: 0.7;
	}

}

/*----------------------------------------------------
 PC VW
----------------------------------------------------*/

@media screen and (min-width: 769px) and (max-width: 1920px) {

	/*----------------------------------------------------
	elements
	----------------------------------------------------*/

	body {
		font-size: 0.833vw;
	}

	/*----------------------------------------------------
	fadeIn
	----------------------------------------------------*/

	.fadeIn {
		transform: translate3d(0, -0.521vw, 0);
	}

	/*----------------------------------------------------
	inner
	----------------------------------------------------*/

	.inner {
		max-width: 75vw;
	}

	/*----------------------------------------------------
	header
	----------------------------------------------------*/

	#header {
		box-shadow: rgba(0, 0, 0, 0.05) 0 0.052vw 0.104vw 0;
	}

	#header .headerFlex {
		padding: 0.833vw 1.146vw 0.833vw 1.094vw;
	}

	#header .headerFlex .logo {
		max-width: 17.083vw;
		line-height: 4.583vw;
	}

	#header .headerFlex .button {
		width: 20.833vw;
		height: 4.167vw;
	}

	#header .headerFlex .button a {
		border: 0.208vw solid #f26580;
		border-radius: 2.083vw;
	}

	#header .headerFlex .button a .tex {
		font-size: 1.25vw;
	}

	#header .headerFlex .button a .arrow {
		right: 1.042vw;
		width: 0.411vw;
		height: 0.672vw;
	}

	#header .headerFlex .button a .arrow::before,
	#header .headerFlex .button a .arrow::after {
		top: calc(50% - 0.078vw);
		width: 0.521vw;
		height: 0.156vw;
		border-radius: 520.781vw;
		transform-origin: calc(100% - 0.078vw) 50%;
	}

	/*----------------------------------------------------
	footer
	----------------------------------------------------*/

	#footer {
		padding: 0.833vw 0 2.24vw 0;
	}

	#footer .inner {
		max-width: 98.125vw;
	}

	#footer .logo {
		max-width: 31.979vw;
		margin: 0 auto 10.885vw;
	}

	#footer .footNav {
		right: 1.719vw;
		bottom: -0.052vw;
	}

	#footer .footNav nav ul li a {
		padding: 0 1.302vw;
		border-left: 0.052vw solid #fff;
	}

	#footer .footNav nav ul li a .tex {
		font-size: 0.938vw;
	}

	#footer .copy {
		font-size: 0.833vw;
	}

	/*----------------------------------------------------
	#goTop
	----------------------------------------------------*/

	#goTop a {
		width: 5.208vw;
		height: 5.208vw;
		right: 2.083vw;
		bottom: 2.083vw;
	}

	#goTop a .icon {
		max-width: 2.083vw;
		line-height: 1.563vw;
	}


	/*----------------------------------------------------
	#visual
	----------------------------------------------------*/

	#visual {
		padding: 9.583vw 0 6.146vw 0;
	}

	#visual .leftBg {
		max-width: 0.521vw;
		top: 6.25vw;
	}

	#visual .rightBg {
		max-width: 0.521vw;
		top: 6.25vw;
	}

	#visual .visualFlex .image {
		width: 43.229vw;
		right: -6.979vw;
	}

	#visual .visualFlex .conts {
		transform: translateX(-1.302vw);
		-webkit-transform: translateX(-1.302vw);
		-moz-transform: translateX(-1.302vw);
	}

	#visual .visualFlex .conts .head {
		margin-bottom: 2.031vw;
		padding: 5.104vw 0 0 0;
	}

	#visual .visualFlex .conts .head h2 {
		margin-bottom: 1.25vw;
	}

	#visual .visualFlex .conts .head h2 small {
		width: 45.625vw;
		left: -9.948vw;
		top: -1.198vw;
	}

	#visual .visualFlex .conts .head h2 b {
		font-size: 3.75vw;
	}

	#visual .visualFlex .conts .head h2 b .posi01 {
		transform: translateX(0.625vw);
		-webkit-transform: translateX(0.625vw);
		-moz-transform: translateX(0.625vw);
	}

	#visual .visualFlex .conts .head h2 b .posi02 {
		transform: translateX(-0.833vw);
		-webkit-transform: translateX(-0.833vw);
		-moz-transform: translateX(-0.833vw);
	}

	#visual .visualFlex .conts .head p {
		font-size: 1.146vw;
	}

	#visual .visualFlex .conts .checkList {
		margin-bottom: 2.708vw;
		padding: 0 0 0 3.281vw;
	}

	#visual .visualFlex .conts .checkList ul li:last-child {
		margin-left: 2.083vw;
	}

	#visual .visualFlex .conts .checkList ul li .icon {
		max-width: 1.563vw;
		line-height: 1.563vw;
		margin-right: 0.781vw;
	}

	#visual .visualFlex .conts .checkList ul li .tex {
		font-size: 1.458vw;
	}

	#visual .visualFlex .conts .checkList ul li:last-child .tex {
		transform: translateY(-0.156vw);
		-webkit-transform: translateY(-0.156vw);
		-moz-transform: translateY(-0.156vw);
	}

	#visual .visualFlex .conts .checkList ul li .tex b {
		font-size: 1.667vw;
	}

	#visual .visualFlex .conts .button {
		width: 30.781vw;
		height: 9.427vw;
		margin: 0 0 0 1.302vw;
	}

	#visual .visualFlex .conts .button a .bt01 {
		max-width: 30.729vw;
	}

	#visual .visualFlex .conts .button a .bt02 {
		max-width: 30.729vw;
	}

	#visual .navArea {
		padding: 6.146vw 0 0 0;
	}

	#visual .navArea .reefleft {
		max-width: 5.729vw;
		line-height: 5.521vw;
		left: -5.417vw;
		top: -13.802vw;
	}

	#visual .navArea .reefRight {
		max-width: 10.833vw;
		line-height: 11.458vw;
		right: -11.562vw;
		top: -10.885vw;
	}

	#visual .navArea .navBox {
		border-radius: 1.042vw;
		padding: 3.229vw 0.99vw 3.594vw;
	}

	#visual .navArea .navBox .boxObj {
		max-width: 18.698vw;
		top: 0.26vw;
	}

	#visual .navArea .navBox nav ul li a {
		border-right: 0.052vw solid #dfdfdf;
	}

	#visual .navArea .navBox nav ul li a .tex {
		font-size: 1.458vw;
	}

	#visual .navArea .navBox nav ul li:first-child a .tex {
		transform: translateX(-0.677vw);
		-webkit-transform: translateX(-0.677vw);
		-moz-transform: translateX(-0.677vw);
	}

	#visual .navArea .navBox nav ul li:last-child a .tex {
		transform: translateX(0.417vw);
		-webkit-transform: translateX(0.417vw);
		-moz-transform: translateX(0.417vw);
	}

	#visual .navArea .navBox nav ul li a .arrow {
		border-right: 0.417vw solid transparent;
		border-left: 0.417vw solid transparent;
		border-top: 0.625vw solid #f26580;
		bottom: -2.24vw;
	}

	#visual .navArea .navBox nav ul li a .listObj {
		font-size: 0.833vw;
		width: 4.688vw;
		height: 1.354vw;
		border-radius: 0.677vw;
		top: -2.24vw;
	}

	/*----------------------------------------------------
	#reason
	----------------------------------------------------*/

	#reason {
		padding: 8.229vw 0 8.75vw 0;
	}

	#reason .head {
		margin-bottom: 5.208vw;
	}

	#reason .head h2 {
		margin-bottom: 3.698vw;
	}

	#reason .head h2 b {
		font-size: 2.5vw;
	}

	#reason .head .dots {
		max-width: 4.063vw;
	}

	#reason .reasonList .box01 {
		margin-bottom: 16.927vw;
	}

	#reason .reasonList .box01 .image {
		right: -8.333vw;
		width: 46.875vw;
	}

	#reason .reasonList .box01 .conts {
		width: 34.375vw;
	}

	#reason .reasonList .box01 .conts .no {
		max-width: 6.667vw;
		margin-bottom: 2.917vw;
	}

	#reason .reasonList .box01 .conts .boxHead {
		margin-bottom: 2.24vw;
	}

	#reason .reasonList .box01 .conts .boxHead h2 b {
		font-size: 2.083vw;
		margin-bottom: 3.021vw;
	}

	#reason .reasonList .box01 .conts .boxHead h2 b span {
		font-size: 2.917vw;
	}

	#reason .reasonList .box01 .conts .boxHead h2 .line {
		width: 13.75vw;
	}

	#reason .reasonList .box01 .conts p {
		font-size: 1.25vw;
	}

	#reason .reasonList .box02 {
		margin-bottom: 6.719vw;
	}

	#reason .reasonList .box02 .image {
		left: -5.781vw;
		width: 44.219vw;
	}

	#reason .reasonList .box02 .conts {
		width: 34.375vw;
	}

	#reason .reasonList .box02 .conts .no {
		max-width: 6.667vw;
		margin-bottom: 2.604vw;
	}

	#reason .reasonList .box02 .conts .boxHead {
		margin-bottom: 2.083vw;
	}

	#reason .reasonList .box02 .conts .boxHead h2 b {
		font-size: 2.083vw;
		margin-bottom: 2.865vw;
	}

	#reason .reasonList .box02 .conts .boxHead h2 .line {
		width: 13.75vw;
	}

	#reason .reasonList .box02 .conts p {
		font-size: 1.25vw;
	}

	#reason .reasonList .box03 {
		margin-bottom: 9.74vw;
	}

	#reason .reasonList .box03 .image {
		right: -3.49vw;
		width: 42.135vw;
	}

	#reason .reasonList .box03 .conts {
		width: 34.375vw;
	}

	#reason .reasonList .box03 .conts .no {
		max-width: 6.667vw;
		margin-bottom: 2.917vw;
	}

	#reason .reasonList .box03 .conts .boxHead {
		margin-bottom: 2.031vw;
	}

	#reason .reasonList .box03 .conts .boxHead h2 b {
		font-size: 2.083vw;
		margin-bottom: 2.708vw;
	}

	#reason .reasonList .box03 .conts .boxHead h2 .line {
		width: 13.75vw;
	}

	#reason .reasonList .box03 .conts p {
		font-size: 1.25vw;
	}

	#reason .reasonList .box04 {
		margin-bottom: 6.719vw;
	}

	#reason .reasonList .box04 .image {
		left: -4.896vw;
		width: 43.333vw;
	}

	#reason .reasonList .box04 .conts {
		width: 34.375vw;
	}

	#reason .reasonList .box04 .conts .no {
		max-width: 6.667vw;
		margin-bottom: 1.875vw;
	}

	#reason .reasonList .box04 .conts .boxHead {
		margin-bottom: 2.24vw;
	}

	#reason .reasonList .box04 .conts .boxHead h2 b {
		font-size: 2.083vw;
		margin-bottom: 2.865vw;
	}

	#reason .reasonList .box04 .conts .boxHead h2 b span {
		font-size: 2.917vw;
	}

	#reason .reasonList .box04 .conts .boxHead h2 .line {
		width: 13.75vw;
	}

	#reason .reasonList .box04 .conts p {
		font-size: 1.25vw;
	}

	/*----------------------------------------------------
	#contact
	----------------------------------------------------*/

	#contact .cvFlex .greenBox {
		padding: 3.229vw;
	}

	#contact .cvFlex .greenBox .innerBox {
		border-radius: 1.042vw;
		padding: 3.438vw 0 2.552vw 0;
	}

	#contact .cvFlex .greenBox .innerBox:before {
		width: calc(100% - 0.833vw);
		height: calc(100% - 0.833vw);
		border: 0.104vw solid #00b2ae;
		border-radius: 0.833vw;
		top: 0.313vw;
		left: 0.313vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxLeftObj {
		max-width: 5.417vw;
		left: 2.292vw;
		top: 13.385vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxHead {
		margin-bottom: 1.823vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxHead h2 {
		font-size: 2.5vw;
		margin-bottom: 1.458vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxHead p {
		font-size: 1.25vw;
	}

	#contact .cvFlex .greenBox .innerBox .button {
		width: 25vw;
		height: 7.969vw;
		margin: 0 auto 2.552vw;
	}

	#contact .cvFlex .greenBox .innerBox .button a .bt01 {
		max-width: 30.729vw;
	}

	#contact .cvFlex .greenBox .innerBox .button a .bt02 {
		max-width: 30.729vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo {
		width: 32.292vw;
		border-top: 0.052vw solid #c0c0c0;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea {
		padding: 1.51vw 0 0 0;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .icon {
		max-width: 3.75vw;
		top: 2.604vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList {
		margin-bottom: 0.833vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox {
		margin-bottom: 0.365vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .noHead {
		width: 3.646vw;
		height: 1.563vw;
		border: 0.052vw solid #00b2ae;
		border-radius: 0.208vw;
		margin: 0.521vw 0.469vw 0;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .noHead p {
		font-size: 0.938vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .telNo {
		margin: 0 0.365vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .telNo p {
		font-size: 2.5vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noTex p {
		font-size: 1.042vw;
	}

	#contact .cvFlex .yellowBox {
		padding: 3.229vw;
	}

	#contact .cvFlex .yellowBox .innerBox {
		border-radius: 1.042vw;
		padding: 8.958vw 0 6.302vw 0;
	}

	#contact .cvFlex .yellowBox .innerBox:before {
		width: calc(100% - 0.833vw);
		height: calc(100% - 0.833vw);
		border: 0.104vw solid #f8c61e;
		border-radius: 0.833vw;
		top: 0.313vw;
		left: 0.313vw;
	}

	#contact .cvFlex .yellowBox .innerBox .boxLeftObj {
		max-width: 5.885vw;
		left: 2.24vw;
		top: 2.135vw;
	}

	#contact .cvFlex .yellowBox .innerBox .boxRightObj {
		max-width: 4.896vw;
		right: 2.188vw;
		top: 2.188vw;
	}

	#contact .cvFlex .yellowBox .innerBox .pinkHead {
		margin-bottom: 3.438vw;
		width: 20.833vw;
		height: 2.917vw;
		border-radius: 1.458vw;
		transform: translateX(-0.104vw);
		-webkit-transform: translateX(-0.104vw);
		-moz-transform: translateX(-0.104vw);
	}

	#contact .cvFlex .yellowBox .innerBox .pinkHead:after {
		border-right: 0.521vw solid transparent;
		border-left: 0.521vw solid transparent;
		border-top: 0.833vw solid #f26580;
		bottom: -0.573vw;
	}

	#contact .cvFlex .yellowBox .innerBox .pinkHead p {
		font-size: 1.25vw;
	}

	#contact .cvFlex .yellowBox .innerBox h2 {
		font-size: 2.5vw;
		transform: translateX(0.26vw);
		-webkit-transform: translateX(0.26vw);
		-moz-transform: translateX(0.26vw);
		margin-bottom: 3.594vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button {
		width: 29.167vw;
		height: 4.583vw;
		margin: 0 auto 2.552vw;
		transform: translateX(-0.156vw);
		-webkit-transform: translateX(-0.156vw);
		-moz-transform: translateX(-0.156vw);
	}

	#contact .cvFlex .yellowBox .innerBox .button a {
		border: 0.104vw solid #00b2ae;
		border-radius: 2.292vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button a .tex {
		font-size: 1.458vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button a .arrow {
		right: 1.198vw;
		width: 0.411vw;
		height: 0.672vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button a .arrow::before,
	#contact .cvFlex .yellowBox .innerBox .button a .arrow::after {
		top: calc(50% - 0.078vw);
		width: 0.521vw;
		height: 0.156vw;
		border-radius: 520.781vw;
		transform-origin: calc(100% - 0.078vw) 50%;
	}

	/*----------------------------------------------------
	#price
	----------------------------------------------------*/

	#price {
		padding: 8.073vw 0 14.635vw 0;
	}

	#price .head {
		margin-bottom: 4.271vw;
	}

	#price .head h2 {
		margin-bottom: 3.698vw;
	}

	#price .head h2 b {
		font-size: 2.5vw;
	}

	#price .head .dots {
		max-width: 4.063vw;
	}

	#price .priceFlow {
		margin-bottom: 4.688vw;
	}

	#price .priceFlow .squareHead {
		margin-bottom: 2.448vw;
	}

	#price .priceFlow .squareHead h3 .square {
		width: 1.667vw;
		height: 1.667vw;
		margin-right: 1.198vw;
	}

	#price .priceFlow .squareHead h3 b {
		font-size: 2.083vw;
	}

	#price .priceFlow .flowBox {
		border-radius: 1.563vw;
		margin-bottom: 5.833vw;
		padding: 4.167vw 0 3.698vw 0;
	}

	#price .priceFlow .flowBox .flowImg {
		max-width: 66.719vw;
		margin-bottom: 1.875vw;
	}

	#price .priceFlow .flowBox .addTex {
		font-size: 1.042vw;
		transform: translateX(0.26vw);
		-webkit-transform: translateX(0.26vw);
		-moz-transform: translateX(0.26vw);
	}

	#price .priceFlow .flowConts h4 {
		font-size: 1.667vw;
		margin-bottom: 1.927vw;
		transform: translateX(0.469vw);
		-webkit-transform: translateX(0.469vw);
		-moz-transform: translateX(0.469vw);
	}

	#price .priceFlow .flowConts p {
		font-size: 1.458vw;
		transform: translateX(0.417vw);
		-webkit-transform: translateX(0.417vw);
		-moz-transform: translateX(0.417vw);
	}

	#price .priceDownload .squareHead {
		margin-bottom: 2.969vw;
	}

	#price .priceDownload .squareHead h3 {
		margin-bottom: 0.573vw;
	}

	#price .priceDownload .squareHead h3 .square {
		width: 1.667vw;
		height: 1.667vw;
		margin-right: 1.198vw;
	}

	#price .priceDownload .squareHead h3 b {
		font-size: 2.083vw;
	}

	#price .priceDownload .squareHead p {
		font-size: 1.042vw;
		transform: translateX(-0.156vw);
		-webkit-transform: translateX(-0.156vw);
		-moz-transform: translateX(-0.156vw);
	}

	#price .priceDownload .dlList .boxGreen {
		padding: 1.667vw 2.031vw 1.667vw 1.979vw;
	}

	#price .priceDownload .dlList .boxGreen h4 b {
		font-size: 1.042vw;
	}

	#price .priceDownload .dlList .boxGreen h4 small {
		font-size: 1.042vw;
		width: 6.823vw;
	}

	#price .priceDownload .dlList .boxGreen .dlButton {
		width: 22.344vw;
		height: 2.917vw;
	}

	#price .priceDownload .dlList .boxGreen .dlButton a .tex {
		font-size: 1.042vw;
		transform: translateX(-0.625vw);
		-webkit-transform: translateX(-0.625vw);
		-moz-transform: translateX(-0.625vw);
	}

	#price .priceDownload .dlList .boxGreen .dlButton a .icon {
		max-width: 1.094vw;
		line-height: 1.094vw;
		right: 1.458vw;
	}

	#price .priceDownload .dlList .boxWhite {
		padding: 1.719vw 2.031vw 1.719vw 1.979vw;
	}

	#price .priceDownload .dlList .boxWhite h4 b {
		font-size: 1.042vw;
	}

	#price .priceDownload .dlList .boxWhite h4 small {
		font-size: 1.042vw;
		width: 6.823vw;
	}

	#price .priceDownload .dlList .boxWhite .dlButton {
		width: 22.344vw;
		height: 2.917vw;
	}

	#price .priceDownload .dlList .boxWhite .dlButton a .tex {
		font-size: 1.042vw;
		transform: translateX(-0.625vw);
		-webkit-transform: translateX(-0.625vw);
		-moz-transform: translateX(-0.625vw);
	}

	#price .priceDownload .dlList .boxWhite .dlButton a .icon {
		max-width: 1.094vw;
		line-height: 1.094vw;
		right: 1.458vw;
	}

	/*----------------------------------------------------
	#use
	----------------------------------------------------*/

	#use {
		padding: 0 0 8.333vw 0;
	}

	#use:before {
		width: 45.833vw;
		height: 45.833vw;
		top: -6.198vw;
	}

	#use .leftObj {
		max-width: 17.708vw;
		left: 2.135vw;
		top: 2.031vw;
	}

	#use .rightObj {
		max-width: 17.708vw;
		right: 2.135vw;
		top: 2.031vw;
	}

	#use .head {
		margin-bottom: 4.479vw;
	}

	#use .head h2 {
		margin-bottom: 3.698vw;
	}

	#use .head h2 .fukidashi {
		max-width: 17.292vw;
		margin: 0 auto 1.042vw;
	}

	#use .head h2 small {
		font-size: 1.667vw;
		margin-bottom: 1.094vw;
		transform: translateX(0.417vw);
		-webkit-transform: translateX(0.417vw);
		-moz-transform: translateX(0.417vw);
	}

	#use .head h2 b {
		font-size: 2.5vw;
		transform: translateX(-0.156vw);
		-webkit-transform: translateX(-0.156vw);
		-moz-transform: translateX(-0.156vw);
	}

	#use .head .dots {
		max-width: 4.063vw;
	}

	#use .caseArea {
		margin-bottom: 10.625vw;
	}

	#use .caseArea .leftImg {
		width: 26.927vw;
		left: -8.906vw;
		top: 9.531vw;
	}

	#use .caseArea .rightImg {
		width: 24.01vw;
		right: -10.937vw;
		top: 17.656vw;
	}

	#use .caseArea .caseHead {
		margin-bottom: 2.813vw;
	}

	#use .caseArea .caseHead h3 small {
		font-size: 1.458vw;
		margin-bottom: 2.917vw;
	}

	#use .caseArea .caseHead h3 b {
		font-size: 2.083vw;
		transform: translateX(0.313vw);
		-webkit-transform: translateX(0.313vw);
		-moz-transform: translateX(0.313vw);
	}

	#use .caseArea .caseList {
		padding: 0 10.417vw;
	}

	#use .caseArea .caseList .box {
		width: 14.479vw;
		height: 15.417vw;
		margin: 0 0.313vw 0.677vw;
	}

	#use .caseArea .caseList .box .boxHead {
		padding: 0.938vw 0 0.938vw 0;
	}

	#use .caseArea .caseList .box01 .boxHead h3 {
		max-width: 4.844vw;
	}

	#use .caseArea .caseList .box02 .boxHead h3 {
		max-width: 5.313vw;
	}

	#use .caseArea .caseList .box03 .boxHead h3 {
		max-width: 5.313vw;
	}

	#use .caseArea .caseList .box04 .boxHead h3 {
		max-width: 5.417vw;
	}

	#use .caseArea .caseList .box05 .boxHead h3 {
		max-width: 5.365vw;
	}

	#use .caseArea .caseList .box .boxConts {
		height: calc(100% - 3.542vw);
	}

	#use .caseArea .caseList .box .boxConts p {
		font-size: 1.25vw;
		transform: translateY(-0.781vw);
		-webkit-transform: translateY(-0.781vw);
		-moz-transform: translateY(-0.781vw);
	}

	#use .caseArea .caseList .box04 .boxConts p {
		transform: translateY(-0.469vw);
		-webkit-transform: translateY(-0.469vw);
		-moz-transform: translateY(-0.469vw);
	}

	#use .caseArea .caseList .box .boxConts p span {
		font-size: 1.042vw;
	}

	#use .caseArea .caseList .box .boxConts .rabitBg {
		max-width: 5.521vw;
	}

	#use .serviceArea .serviceBox {
		border-radius: 1.563vw;
		padding: 0 0 3.438vw 0;
	}

	#use .serviceArea .serviceBox .serviceHead {
		margin-bottom: -1.042vw;
		transform: translateY(-2.917vw);
		-webkit-transform: translateY(-2.917vw);
		-moz-transform: translateY(-2.917vw);
	}

	#use .serviceArea .serviceBox .serviceHead h3 {
		max-width: 27.76vw;
	}

	#use .serviceArea .serviceBox .serviceList {
		margin-bottom: 0.052vw;
		padding: 0 4.219vw;
	}

	#use .serviceArea .serviceBox .serviceList .box {
		margin-bottom: 1.979vw;
	}

	#use .serviceArea .serviceBox .serviceList .box .icon {
		width: 9.375vw;
		margin-bottom: 1.354vw;
	}

	#use .serviceArea .serviceBox .serviceList .box h4 {
		font-size: 1.458vw;
	}

	#use .serviceArea .serviceBox .addTex p {
		font-size: 1.042vw;
		transform: translateX(0.26vw);
		-webkit-transform: translateX(0.26vw);
		-moz-transform: translateX(0.26vw);
	}

	#use .colorBorder {
		height: 0.521vw;
	}

	/*----------------------------------------------------
	#voice
	----------------------------------------------------*/

	#voice {
		padding: 8.125vw 0 8.333vw 0;
	}

	#voice .head {
		margin-bottom: 5.208vw;
	}

	#voice .head h2 {
		margin-bottom: 3.698vw;
	}

	#voice .head h2 b {
		font-size: 2.5vw;
		transform: translateX(-0.156vw);
		-webkit-transform: translateX(-0.156vw);
		-moz-transform: translateX(-0.156vw);
	}

	#voice .head .dots {
		max-width: 4.063vw;
	}

	#voice .voiceSlide .slide-arrow {
		width: 4.167vw;
		height: 4.167vw;
	}

	#voice .voiceSlide .next-arrow {
		right: 4.323vw;
	}

	#voice .voiceSlide .next-arrow .arrow {
		width: 0.635vw;
		height: 1.115vw;
	}

	#voice .voiceSlide .next-arrow .arrow::before,
	#voice .voiceSlide .next-arrow .arrow::after {
		top: calc(50% - 0.078vw);
		right: -0.208vw;
		width: 1.198vw;
		height: 0.26vw;
		border-radius: 520.781vw;
		transform-origin: calc(100% - 0.078vw) 50%;
	}

	#voice .voiceSlide .prev-arrow {
		left: 4.323vw;
	}

	#voice .voiceSlide .prev-arrow .arrow {
		width: 0.797vw;
		height: 1.385vw;
	}

	#voice .voiceSlide .prev-arrow .arrow::before,
	#voice .voiceSlide .prev-arrow .arrow::after {
		top: calc(50% - 0.078vw);
		left: -0.208vw;
		width: 1.198vw;
		height: 0.26vw;
		border-radius: 520.781vw;
		transform-origin: 0.078vw 50%;
	}

	#voice .voiceSlide .box {
		width: 62.5vw;
		border: 0.313vw solid #f26580;
		border-radius: 2.083vw;
		margin: 0 2.083vw;
		padding: 1.719vw 1.771vw 3.177vw 1.771vw;
		box-shadow: rgba(0, 0, 0, 0.1) 0 0.521vw 0.781vw -0.156vw, rgba(0, 0, 0, 0.05) 0 0.208vw 0.313vw -0.104vw;
	}

	#voice .voiceSlide .box .boxHead {
		border-bottom: 0.052vw solid #f26580;
		padding: 0 0 1.615vw 0;
	}

	#voice .voiceSlide .box01 .boxHead h3 {
		max-width: 5.781vw;
	}

	#voice .voiceSlide .box02 .boxHead h3 {
		max-width: 5.625vw;
	}

	#voice .voiceSlide .box03 .boxHead h3 {
		max-width: 5.729vw;
	}

	#voice .voiceSlide .box .boxConts {
		padding: 1.563vw 1.979vw 0;
	}

	#voice .voiceSlide .box .boxConts p {
		font-size: 1.042vw;
	}

	/*----------------------------------------------------
	#faq
	----------------------------------------------------*/

	#faq {
		padding: 8.229vw 0 8.333vw 0;
	}

	#faq .inner {
		max-width: 62.5vw;
	}

	#faq .head {
		margin-bottom: 5.208vw;
	}

	#faq .head h2 {
		margin-bottom: 3.698vw;
	}

	#faq .head h2 b {
		font-size: 2.5vw;
		transform: translateX(-0.156vw);
		-webkit-transform: translateX(-0.156vw);
		-moz-transform: translateX(-0.156vw);
	}

	#faq .head .dots {
		max-width: 4.063vw;
	}

	#faq .faqLists dl {
		margin-bottom: 0.781vw;
	}

	#faq .faqLists dl dt {
		padding: 1.563vw 1.563vw 1.563vw 2.083vw;
		border-radius: 0.521vw;
		box-shadow: rgba(0, 0, 0, 0.1) 0 0 0.26vw 0, rgba(0, 0, 0, 0.1) 0 0 0.052vw 0;
	}

	#faq .faqLists dl dt .qIcon {
		max-width: 1.875vw;
		line-height: 1.875vw;
		margin-right: 1.979vw;
	}

	#faq .faqLists dl dt .tex {
		font-size: 1.458vw;
	}

	#faq .faqLists dl dt .closeLine {
		width: 2.5vw;
		height: 2.5vw;
		right: 2.135vw;
	}

	#faq .faqLists dl dt .closeLine:after {
		height: 0.052vw;
	}

	#faq .faqLists dl dt .closeLine:before {
		width: 0.052vw;
	}

	#faq .faqLists dl dd {
		padding: 1.563vw 1.979vw 0.781vw 1.979vw;
	}

	#faq .faqLists dl dd .anserConts .aIcon {
		max-width: 1.979vw;
		line-height: 1.771vw;
		margin-right: 1.979vw;
	}

	#faq .faqLists dl dd .anserConts p {
		font-size: 1.042vw;
	}

	#faq .faqLists dl dd .anserConts p small {
		font-size: 0.833vw;
	}

	/*----------------------------------------------------
	#step
	----------------------------------------------------*/

	#step {
		padding: 7.656vw 0 7.604vw 0;
	}

	#step .head {
		margin-bottom: 5.208vw;
	}

	#step .head h2 {
		margin-bottom: 3.698vw;
	}

	#step .head h2 small {
		font-size: 1.667vw;
		margin-bottom: 1.146vw;
		padding: 1.146vw 0 1.146vw 1.042vw;
		border-top: 0.052vw solid #f26580;
		border-bottom: 0.052vw solid #f26580;
	}

	#step .head h2 b {
		font-size: 2.5vw;
		transform: translateX(-0.156vw);
		-webkit-transform: translateX(-0.156vw);
		-moz-transform: translateX(-0.156vw);
	}

	#step .head h2 b span {
		font-size: 3.333vw;
	}

	#step .head .dots {
		max-width: 4.063vw;
	}

	#step .stepFlow {
		margin-bottom: 7.5vw;
	}

	#step .stepFlow .box {
		width: 23.958vw;
	}

	#step .stepFlow .box01 .stepHead {
		max-width: 4.583vw;
		margin: 0 auto 1.354vw;
	}

	#step .stepFlow .box02 .stepHead {
		max-width: 5.104vw;
		margin: 0 auto 1.354vw;
	}

	#step .stepFlow .box03 .stepHead {
		max-width: 5.052vw;
		margin: 0 auto 1.354vw;
	}

	#step .stepFlow .box .innerBox {
		height: 22.24vw;
		border-radius: 1.042vw;
		padding: 2.552vw 0 0 0;
	}

	#step .stepFlow .box .innerBox .icon {
		max-width: 7.292vw;
		margin: 0 auto 1.719vw;
	}

	#step .stepFlow .box .innerBox h3 {
		font-size: 1.667vw;
		margin-bottom: 0.938vw;
	}

	#step .stepFlow .box .innerBox p {
		font-size: 1.042vw;
	}

	#step .stepFlow .box .innerBox .arrow {
		right: -3.438vw;
		max-width: 5.417vw;
	}

	#step .addTex p {
		font-size: 2.083vw;
		transform: translateX(0.521vw);
		-webkit-transform: translateX(0.521vw);
		-moz-transform: translateX(0.521vw);
	}

	/*----------------------------------------------------
	#corporation
	----------------------------------------------------*/

	#corporation {
		padding: 8.438vw 0 7.604vw 0;
	}

	#corporation .bgBox {
		padding: 4.167vw 0 6.146vw 0;
	}

	#corporation .bgBox .boxHead {
		margin-bottom: 3.385vw;
	}

	#corporation .bgBox .boxHead h2 {
		max-width: 31.25vw;
	}

	#corporation .bgBox .eventHead {
		margin-bottom: 3.646vw;
	}

	#corporation .bgBox .eventHead h3 {
		font-size: 2.5vw;
		margin-bottom: 1.927vw;
	}

	#corporation .bgBox .eventHead p {
		font-size: 1.458vw;
	}

	#corporation .bgBox .innerBox {
		max-width: 62.5vw;
		border-radius: 1.042vw;
		margin: 0 auto 5.781vw;
		padding: 3.333vw 0 4.167vw 0;
	}

	#corporation .bgBox .innerBox .descTex {
		font-size: 1.25vw;
		margin-bottom: 3.021vw;
		padding: 0 4.167vw;
	}

	#corporation .bgBox .innerBox .caseHead {
		margin-bottom: 2.5vw;
	}

	#corporation .bgBox .innerBox .caseHead h4 {
		font-size: 1.667vw;
	}

	#corporation .bgBox .innerBox .caseList {
		margin-bottom: 3.854vw;
	}

	#corporation .bgBox .innerBox .caseList .box {
		width: 12.5vw;
		margin: 0 0.521vw;
	}

	#corporation .bgBox .innerBox .caseList .box .icon {
		max-width: 9.375vw;
		margin: 0 auto 2.24vw;
	}

	#corporation .bgBox .innerBox .caseList .box p {
		font-size: 1.042vw;
	}

	#corporation .bgBox .innerBox .caseList .box03 p {
		transform: translateX(0.26vw);
		-webkit-transform: translateX(0.26vw);
		-moz-transform: translateX(0.26vw);
	}

	#corporation .bgBox .innerBox .innerImg {
		max-width: 54.219vw;
	}

	#corporation .corpContact {
		margin-bottom: 2.344vw;
	}

	#corporation .corpContact p {
		font-size: 1.458vw;
		margin-bottom: 2.448vw;
	}

	#corporation .corpContact .button {
		width: 41.667vw;
		height: 5.208vw;
	}

	#corporation .corpContact .button a {
		border-radius: 0.417vw;
		border: 0.104vw solid #f5a50a;
	}

	#corporation .corpContact .button a .tex {
		font-size: 1.667vw;
	}

	#corporation .telBox {
		width: 41.667vw;
		padding: 2.656vw 0 2.865vw 0;
	}

	#corporation .telBox .icon {
		width: 3.75vw;
		line-height: 3.75vw;
		margin: 0.521vw 0.885vw 0;
	}

	#corporation .telBox .noTex {
		margin: 0 0.26vw;
	}

	#corporation .telBox .noTex .no {
		margin: 0 0 0.469vw;
	}

	#corporation .telBox .noTex .no p {
		font-size: 2.5vw;
	}

	#corporation .telBox .noTex .tex p {
		font-size: 1.042vw;
	}
}

/*----------------------------------------------------
 SP
----------------------------------------------------*/

@media screen and (max-width: 768px) {
	.sp_hidden {
		display: none !important;
	}

	/*----------------------------------------------------
	elements
	----------------------------------------------------*/

	body {
		font-size: 4.267vw;
	}

	main {
		overflow: hidden;
	}

	/*----------------------------------------------------
	fadeIn
	----------------------------------------------------*/

	.fadeIn {
		transform: translate3d(0, -2.667vw, 0);
	}

	/*----------------------------------------------------
	inner
	----------------------------------------------------*/

	.inner {
		width: calc(100% - 4rem);
	}

	/*----------------------------------------------------
	header
	----------------------------------------------------*/

	#header .inner {
		width: 100%;
	}

	#header .headerFlex {
		padding: 3.467vw 2.933vw 3.2vw 2.667vw;
	}

	#header .headerFlex .logo {
		max-width: 33.333vw;
		line-height: 9.333vw;
	}

	#header .headerFlex .infoArea {
		display: flex;
		align-items: center;
	}

	#header .headerFlex .button {
		width: 49.333vw;
		height: 10.667vw;
		margin-right: 2.4vw;
	}

	#header .headerFlex .button a {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #f26580;
		border: 1.067vw solid #f26580;
		border-radius: 10.667vw;
		box-sizing: border-box;
	}

	#header .headerFlex .button a .tex {
		font-size: 3.2vw;
	}

	#header .headerFlex .button a .arrow {
		position: absolute;
		top: 50%;
		right: 1.067vw;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		display: inline-block;
		width: 2.107vw;
		height: 2.373vw;
	}

	#header .headerFlex .button a .arrow::before,
	#header .headerFlex .button a .arrow::after {
		top: calc(50% - 0.267vw);
		width: 1.6vw;
		height: 0.4vw;
		border-radius: 2666.4vw;
		transform-origin: calc(100% - 0.267vw) 50%;
		transition: all 0.3s ease 0s;
	}

	#header .headerFlex .button a .arrow::before {
		transform: rotate(45deg);
	}

	#header .headerFlex .button a .arrow::after {
		transform: rotate(-45deg);
	}

	#header .menuTrigger  {
		position: relative;
		width: 6.667vw;
		height: 5.333vw;
		cursor: pointer;
	}

	#header .menuTrigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 0.533vw;
		background-color: #00b2ae;
		border-radius: 1.067vw;
	}

	#header .menuTrigger,
	#header .menuTrigger span {
		display: inline-block;
		transition: all .5s;
		box-sizing: border-box;
	}

	#header .menuTrigger span:nth-of-type(1) {
		top: 0;
	}

	#header .menuTrigger span:nth-of-type(2) {
		top: 2.4vw;
		background-color: #f26580;
	}

	#header .menuTrigger span:nth-of-type(3) {
		bottom: 0;
		background-color: #f5bf0a;
	}

	#header.active {
		box-shadow: rgba(0, 0, 0, 0) 0 0.267vw 0.533vw 0;
	}

	#header.active .logo a {
		opacity: 0;
		pointer-events: none;
	}

	#header.active .button a {
		opacity: 0;
		pointer-events: none;
	}

	#header.active .menuTrigger span:nth-of-type(1) {
		transform: translateY(2.4vw) translateX(0.267vw) rotate(-45deg);
		-webkit-transform: translateY(2.4vw) translateX(0.267vw) rotate(-45deg);
		-moz-transform: translateY(2.4vw) translateX(0.267vw) rotate(-45deg);
	}

	#header.active .menuTrigger span:nth-of-type(2) {
		opacity: 0;
	}

	#header.active .menuTrigger span:nth-of-type(3) {
		transform: translateY(-2.4vw) translateX(0.267vw) rotate(45deg);
		-webkit-transform: translateY(-2.4vw) translateX(0.267vw) rotate(45deg);
		-moz-transform: translateY(-2.4vw) translateX(0.267vw) rotate(45deg);
	}

	/*----------------------------------------------------
	#innerMenu
	----------------------------------------------------*/

	#innerMenu {
		width: 100%;
		height: 100vh;
		padding: 16.533vw 0 0 0;
		background: #fff;
		position: fixed;
		left: 0;
		top: 0;
		transform: translateY(-100vh);
		-webkit-transform: translateY(-100vh);
		-moz-transform: translateY(-100vh);
		transition: all 0.3s ease 0s;
		z-index: 99;
	}

	#innerMenu .inner {
		width: calc(100% - 7rem);
	}

	#innerMenu nav ul {
		display: flex;
		flex-direction: column;
	}

	#innerMenu nav ul li a {
		position: relative;
		width: 100%;
		padding: 6.933vw 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border-bottom: 0.267vw solid #dfdfdf;
	}

	#innerMenu nav ul li.w a {
		padding: 4.8vw 0 6.933vw;
	}

	#innerMenu nav ul li a .tex {
		font-size: 4.267vw;
		font-weight: 700;
		line-height: 1.25;
		letter-spacing: 0;
		text-align: center;
		color: #f26580;
	}

	#innerMenu nav ul li a .listObj {
		font-size: 3.2vw;
		font-weight: 700;
		line-height: 1;
		color: #fff;
		text-align: center;
		width: 16vw;
		height: 4.8vw;
		margin: 0 0 1.067vw;
		background: #00b2ae;
		border-radius: 3.467vw;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#innerMenu nav ul li a .arrow {
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 1.067vw solid transparent;
		border-left: 1.067vw solid transparent;
		border-top: 1.6vw solid #f26580;
		border-bottom: 0;
		position: absolute;
		top: 50%;
		left: 2.4vw;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transition: all 0.3s ease 0s;
	}

	#innerMenu.active {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
	}

	/*----------------------------------------------------
	footer
	----------------------------------------------------*/

	#footer {
		padding: 4.267vw 0 1.867vw 0;
	}

	#footer .logo {
		max-width: 81.867vw;
		margin: 0 auto 22.667vw;
	}

	#footer .footNav {
		position: relative;
		right: initial;
		bottom: initial;
		margin-bottom: 6.667vw;
	}

	#footer .footNav nav ul {
		flex-direction: column;
		align-items: center;
	}

	#footer .footNav nav ul li {
		margin-bottom: -0.533vw;
	}

	#footer .footNav nav ul li a {
		padding: 0 0;
		border-left: initial;
	}

	#footer .footNav nav ul li a .tex {
		font-size: 3.733vw;
	}

	#footer .footNav nav ul li:first-child a {
		border: initial;
	}

	#footer .copy {
		font-size: 3.2vw;
	}

	/*----------------------------------------------------
	#goTop
	----------------------------------------------------*/

	#goTop a {
		width: 13.333vw;
		height: 13.333vw;
		right: 2.667vw;
		bottom: 2.667vw;
	}

	#goTop a .icon {
		max-width: 5.333vw;
		line-height: 4vw;
		transform: translateY(-0.533vw);
		-webkit-transform: translateY(-0.533vw);
		-moz-transform: translateY(-0.533vw);
	}


	/*----------------------------------------------------
	#visual
	----------------------------------------------------*/

	#visual {
		padding: 17.333vw 0 12vw 0;
	}

	#visual .inner {
		width: 100%;
	}

	#visual .leftBg {
		max-width: 0.8vw;
		top: 17.333vw;
	}

	#visual .rightBg {
		max-width: 0.8vw;
		height: 390px;
		top: 17.333vw;
	}

	#visual .bottomBg {
		position: absolute;
		left: 0;
		bottom: 0;
	}

	#visual .visualFlex {
		flex-direction: column;
	}

	#visual .visualFlex .image {
		width: 89.333vw;
		margin-bottom: 7.733vw;
		position: relative;
		right: initial;
		top: 0;
	}

	#visual .visualFlex .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#visual .visualFlex .conts {
		align-items: center;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#visual .visualFlex .conts .head {
		position: relative;
		margin-bottom: 6.133vw;
		padding: 62.4vw 0 0 0;
	}

	#visual .visualFlex .conts .head h2 {
		margin-bottom: 4vw;
	}

	#visual .visualFlex .conts .head h2 small {
		width: 93.333vw;
		position: absolute;
		top: 4vw;
		left: 52%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	#visual .visualFlex .conts .head h2 small img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#visual .visualFlex .conts .head h2 b {
		font-size: 9.6vw;
	}

	#visual .visualFlex .conts .head h2 b .posi01 {
		transform: translateX(2.133vw);
		-webkit-transform: translateX(2.133vw);
		-moz-transform: translateX(2.133vw);
	}

	#visual .visualFlex .conts .head h2 b .posi02 {
		transform: translateX(-1.6vw);
		-webkit-transform: translateX(-1.6vw);
		-moz-transform: translateX(-1.6vw);
	}

	#visual .visualFlex .conts .head p {
		font-size: 3.2vw;
		line-height: 1.83333;
	}

	#visual .visualFlex .conts .checkList {
		margin-bottom: 8.267vw;
		padding: 0 0 0 0;
	}

	#visual .visualFlex .conts .checkList ul li:last-child {
		margin-left: 5.867vw;
	}

	#visual .visualFlex .conts .checkList ul li .icon {
		max-width: 4vw;
		line-height: 4vw;
		margin-right: 1.6vw;
	}

	#visual .visualFlex .conts .checkList ul li .tex {
		font-size: 3.733vw;
		white-space: nowrap;
		transform: translateY(-0.533vw);
		-webkit-transform: translateY(-0.533vw);
		-moz-transform: translateY(-0.533vw);
	}

	#visual .visualFlex .conts .checkList ul li:last-child .tex {
		transform: translateY(-0.533vw);
		-webkit-transform: translateY(-0.533vw);
		-moz-transform: translateY(-0.533vw);
	}

	#visual .visualFlex .conts .checkList ul li .tex b {
		font-size: 4.267vw;
	}

	#visual .visualFlex .conts .button {
		width: 84vw;
		height: 29.467vw;
		margin: 0 0 0 0;
	}

	#visual .visualFlex .conts .button a {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}

	#visual .visualFlex .conts .button a .bt01 {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		display: inline-block;
		width: 100%;
		max-width: 157.333vw;
		transition: all 0.3s ease 0s;
	}

	#visual .visualFlex .conts .button a .bt01 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#visual .visualFlex .conts .button a .bt02 {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 0;
		display: inline-block;
		width: 100%;
		max-width: 157.333vw;
	}

	#visual .navArea {
		position: relative;
		padding: 31.467vw 0 0 0;
	}

	#visual .navArea .reefleft {
		width: 100%;
		max-width: 29.333vw;
		line-height: 28.267vw;
		position: absolute;
		left: -27.733vw;
		top: -70.667vw;
	}

	#visual .navArea .reefRight {
		width: 100%;
		max-width: 55.467vw;
		line-height: 58.667vw;
		position: absolute;
		right: -59.2vw;
		top: -55.733vw;
	}

	#visual .navArea .navBox {
		background: #fff;
		border-radius: 5.333vw;
		padding: 16.533vw 5.067vw 18.4vw;
	}

	#visual .navArea .navBox .boxObj {
		width: 100%;
		max-width: 95.733vw;
		position: absolute;
		top: 1.333vw;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	#visual .navArea .navBox nav ul {
		display: flex;
		justify-content: space-between;
	}

	#visual .navArea .navBox nav ul li {
		width: calc(100% / 5);
	}

	#visual .navArea .navBox nav ul li a {
		width: 100%;
		height: 100%;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		border-right: 0.267vw solid #dfdfdf;
	}

	#visual .navArea .navBox nav ul li:last-child a {
		border-right: initial;
	}

	#visual .navArea .navBox nav ul li a .tex {
		font-size: 7.467vw;
		font-weight: 700;
		line-height: 1.25;
		letter-spacing: 0;
		text-align: center;
		color: #f26580;
	}

	#visual .navArea .navBox nav ul li:first-child a .tex {
		transform: translateX(-3.467vw);
		-webkit-transform: translateX(-3.467vw);
		-moz-transform: translateX(-3.467vw);
	}

	#visual .navArea .navBox nav ul li:last-child a .tex {
		transform: translateX(2.133vw);
		-webkit-transform: translateX(2.133vw);
		-moz-transform: translateX(2.133vw);
	}

	#visual .navArea .navBox nav ul li a .arrow {
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 2.133vw solid transparent;
		border-left: 2.133vw solid transparent;
		border-top: 3.2vw solid #f26580;
		border-bottom: 0;
		position: absolute;
		bottom: -11.467vw;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transition: all 0.3s ease 0s;
	}

	#visual .navArea .navBox nav ul li:first-child a .arrow {
		left: 46%;
	}

	#visual .navArea .navBox nav ul li:last-child a .arrow {
		left: 54%;
	}

	#visual .navArea .navBox nav ul li a .listObj {
		font-size: 4.267vw;
		font-weight: 700;
		line-height: 1;
		color: #fff;
		text-align: center;
		width: 24vw;
		height: 6.933vw;
		background: #00b2ae;
		border-radius: 3.467vw;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: -11.467vw;
		left: 54%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	/*----------------------------------------------------
	#reason
	----------------------------------------------------*/

	#reason {
		padding: 18.933vw 0 20.8vw 0;
	}

	#reason .head {
		margin-bottom: 8.8vw;
	}

	#reason .head h2 {
		margin-bottom: 8.8vw;
	}

	#reason .head h2 b {
		font-size: 7.467vw;
		line-height: 1.5;
		text-align: center;
		transform: translateX(-0.533vw);
		-webkit-transform: translateX(-0.533vw);
		-moz-transform: translateX(-0.533vw);
	}

	#reason .head .dots {
		max-width: 10.4vw;
	}

	#reason .reasonList .box01 {
		flex-direction: column;
		align-items: center;
		margin-bottom: 16.267vw;
	}

	#reason .reasonList .box01 .image {
		position: relative;
		right: initial;
		top: 0;
		width: 89.333vw;
		margin: 0 auto 0;
	}

	#reason .reasonList .box01 .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#reason .reasonList .box01 .conts {
		width: 100%;
		margin-bottom: 8.267vw;
	}

	#reason .reasonList .box01 .conts .no {
		max-width: 17.067vw;
		margin-bottom: 7.733vw;
	}

	#reason .reasonList .box01 .conts .boxHead {
		margin-bottom: 0.533vw;
	}

	#reason .reasonList .box01 .conts .boxHead h2 b {
		font-size: 6.4vw;
		line-height: 1.135;
		margin-bottom: 7.733vw;
	}

	#reason .reasonList .box01 .conts .boxHead h2 b span {
		font-size: 8.533vw;
	}

	#reason .reasonList .box01 .conts .boxHead h2 .line {
		width: 35.2vw;
	}

	#reason .reasonList .box01 .conts p {
		font-size: 4.267vw;
	}

	#reason .reasonList .box02 {
		flex-direction: column;
		align-items: center;
		margin-bottom: 16vw;
	}

	#reason .reasonList .box02 .image {
		position: relative;
		left: initial;
		top: 0;
		width: 89.2vw;
		margin: 0 auto 0;
	}

	#reason .reasonList .box02 .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#reason .reasonList .box02 .conts {
		width: 100%;
		margin-bottom: 9.067vw;
	}

	#reason .reasonList .box02 .conts .no {
		max-width: 17.067vw;
		margin-bottom: 6.4vw;
	}

	#reason .reasonList .box02 .conts .boxHead {
		margin-bottom: 0.533vw;
	}

	#reason .reasonList .box02 .conts .boxHead h2 b {
		font-size: 6.4vw;
		line-height: 1.5;
		margin-bottom: 6.667vw;
	}

	#reason .reasonList .box02 .conts .boxHead h2 .line {
		width: 35.2vw;
	}

	#reason .reasonList .box02 .conts p {
		font-size: 4.267vw;
	}

	#reason .reasonList .box03 {
		flex-direction: column;
		align-items: center;
		margin-bottom: 16vw;
	}

	#reason .reasonList .box03 .image {
		position: relative;
		right: initial;
		top: 0;
		width: 89.467vw;
		margin: 0 auto 0;
	}

	#reason .reasonList .box03 .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#reason .reasonList .box03 .conts {
		width: 100%;
		margin-bottom: 8.267vw;
	}

	#reason .reasonList .box03 .conts .no {
		max-width: 17.067vw;
		margin-bottom: 6.4vw;
	}

	#reason .reasonList .box03 .conts .boxHead {
		margin-bottom: 0.533vw;
	}

	#reason .reasonList .box03 .conts .boxHead h2 b {
		font-size: 6.4vw;
		line-height: 1.5;
		margin-bottom: 6.933vw;
	}

	#reason .reasonList .box03 .conts .boxHead h2 .line {
		width: 35.2vw;
	}

	#reason .reasonList .box03 .conts p {
		font-size: 4.267vw;
	}

	#reason .reasonList .box04 {
		flex-direction: column;
		align-items: center;
		margin-bottom: 0;
	}

	#reason .reasonList .box04 .image {
		position: relative;
		left: initial;
		top: 0;
		width: 89.333vw;
		margin: 0 auto 0;
	}

	#reason .reasonList .box04 .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#reason .reasonList .box04 .conts {
		width: 100%;
		margin-bottom: 8.267vw;
	}

	#reason .reasonList .box04 .conts .no {
		max-width: 17.067vw;
		margin-bottom: 4.267vw;
	}

	#reason .reasonList .box04 .conts .boxHead {
		margin-bottom: 0.533vw;
	}

	#reason .reasonList .box04 .conts .boxHead h2 b {
		font-size: 6.4vw;
		line-height: 1.5;
		margin-bottom: 6.667vw;
	}

	#reason .reasonList .box04 .conts .boxHead h2 b span {
		font-size: 8.533vw;
	}

	#reason .reasonList .box04 .conts .boxHead h2 .line {
		width: 35.2vw;
	}

	#reason .reasonList .box04 .conts p {
		font-size: 4.267vw;
	}

	/*----------------------------------------------------
	#contact
	----------------------------------------------------*/

	#contact .cvFlex {
		flex-direction: column;
	}

	#contact .cvFlex .greenBox {
		width: 100%;
		padding: 8.533vw 5.333vw;
	}

	#contact .cvFlex .greenBox .innerBox {
		border-radius: 2.667vw;
		padding: 8.8vw 0 7.733vw;
	}

	#contact .cvFlex .greenBox .innerBox:before {
		width: calc(100% - 2.133vw);
		height: calc(100% - 2.133vw);
		border: 0.267vw solid #00b2ae;
		border-radius: 2.133vw;
		top: 0.8vw;
		left: 0.8vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxLeftObj {
		max-width: 13.867vw;
		left: 4.8vw;
		top: 6.133vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxHead {
		margin-bottom: 4vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxHead h2 {
		font-size: 6.4vw;
		text-align: center;
		margin-bottom: 4.533vw;
	}

	#contact .cvFlex .greenBox .innerBox .boxHead p {
		font-size: 4.267vw;
		line-height: 1.75;
	}

	#contact .cvFlex .greenBox .innerBox .button {
		width: 84vw;
		height: 29.467vw;
		margin: 0 auto 6.4vw;
	}

	#contact .cvFlex .greenBox .innerBox .button a .bt01 {
		width: 100%;
		max-width: 100%;
	}

	#contact .cvFlex .greenBox .innerBox .button a .bt01 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo {
		width: 81.333vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea {
		padding: 5.067vw 0 0 0;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .icon {
		max-width: 9.6vw;
		left: 3.733vw;
		top: 8.8vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList {
		margin-bottom: 1.867vw;
		padding: 0 0 0 8vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox {
		margin-bottom: 3.2vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .noHead {
		width: 10.667vw;
		height: 4.8vw;
		border-radius: 0.533vw;
		margin: 1.067vw 0.267vw 0;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .noHead p {
		font-size: 2.667vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .telNo {
		margin: 0 1.867vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .telNo p {
		font-size: 6.4vw;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noList .noBox .telNo p a {
		color: #00b2ae;
	}

	#contact .cvFlex .greenBox .innerBox .cvInfo .telArea .noTex p {
		font-size: 3.2vw;
		letter-spacing: 0;
		transform: translateX(0.8vw);
		-webkit-transform: translateX(0.8vw);
		-moz-transform: translateX(0.8vw);
	}

	#contact .cvFlex .yellowBox {
		width: 100%;
		padding: 8.533vw 5.333vw;
	}

	#contact .cvFlex .yellowBox .innerBox {
		border-radius: 2.667vw;
		padding: 8.8vw 0 8.533vw;
	}

	#contact .cvFlex .yellowBox .innerBox:before {
		width: calc(100% - 2.133vw);
		height: calc(100% - 2.133vw);
		border: 0.267vw solid #f8c61e;
		border-radius: 2.133vw;
		top: 0.8vw;
		left: 0.8vw;
	}

	#contact .cvFlex .yellowBox .innerBox .boxLeftObj {
		max-width: 11.733vw;
		left: 2.667vw;
		top: 2.667vw;
	}

	#contact .cvFlex .yellowBox .innerBox .boxRightObj {
		max-width: 9.733vw;
		right: 2.667vw;
		top: 2.667vw;
	}

	#contact .cvFlex .yellowBox .innerBox .pinkHead {
		margin-bottom: 5.6vw;
		width: 53.333vw;
		height: 16vw;
		border-radius: 8vw;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#contact .cvFlex .yellowBox .innerBox .pinkHead:after {
		bottom: -1.6vw;
	}

	#contact .cvFlex .yellowBox .innerBox .pinkHead p {
		font-size: 4.267vw;
		line-height: 1.25;
		text-align: center;
	}

	#contact .cvFlex .yellowBox .innerBox h2 {
		font-size: 6.4vw;
		transform: translateX(0.267vw);
		-webkit-transform: translateX(0.267vw);
		-moz-transform: translateX(0.267vw);
		margin-bottom: 6.933vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button {
		width: 80vw;
		height: 13.333vw;
		margin: 0 auto 0;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#contact .cvFlex .yellowBox .innerBox .button a {
		border: 0.267vw solid #00b2ae;
		border-radius: 13.333vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button a .tex {
		font-size: 4.267vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button a .arrow {
		right: 2.133vw;
		width: 2.107vw;
		height: 2.373vw;
	}

	#contact .cvFlex .yellowBox .innerBox .button a .arrow::before,
	#contact .cvFlex .yellowBox .innerBox .button a .arrow::after {
		top: calc(50% - 0.267vw);
		right: 0;
		width: 1.6vw;
		height: 0.4vw;
		transform-origin: calc(100% - 0.267vw) 50%;
	}

	/*----------------------------------------------------
	#price
	----------------------------------------------------*/

	#price {
		padding: 20.8vw 0 37.333vw 0;
	}

	#price .head {
		margin-bottom: 7.467vw;
	}

	#price .head h2 {
		margin-bottom: 10.667vw;
	}

	#price .head h2 b {
		font-size: 7.467vw;
	}

	#price .head .dots {
		max-width: 10.4vw;
	}

	#price .priceFlow {
		margin-bottom: 13.867vw;
	}

	#price .priceFlow .squareHead {
		margin-bottom: 8.533vw;
	}

	#price .priceFlow .squareHead h3 .square {
		width: 4.267vw;
		height: 4.267vw;
		margin-right: 3.2vw;
	}

	#price .priceFlow .squareHead h3 b {
		font-size: 6.4vw;
		line-height: 1;
	}

	#price .priceFlow .flowBox {
		border-radius: 4vw;
		margin-bottom: 14.667vw;
		padding: 6.133vw 0 5.867vw 0;
	}

	#price .priceFlow .flowBox .flowImg {
		max-width: 82.933vw;
		margin-bottom: 5.333vw;
	}

	#price .priceFlow .flowBox .flowImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#price .priceFlow .flowBox .addTex {
		font-size: 3.2vw;
		line-height: 1.5;
		text-align: left;
		transform: translateX(1.067vw);
		-webkit-transform: translateX(1.067vw);
		-moz-transform: translateX(1.067vw);
	}

	#price .priceFlow .flowConts h4 {
		font-size: 5.333vw;
		margin-bottom: 6.933vw;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#price .priceFlow .flowConts p {
		font-size: 4.267vw;
		text-align: justify;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#price .priceDownload .squareHead {
		margin-bottom: 8vw;
	}

	#price .priceDownload .squareHead h3 {
		margin-bottom: 4.533vw;
	}

	#price .priceDownload .squareHead h3 .square {
		width: 4.267vw;
		height: 4.267vw;
		margin-right: 3.2vw;
	}

	#price .priceDownload .squareHead h3 b {
		font-size: 6.4vw;
		line-height: 1;
	}

	#price .priceDownload .squareHead p {
		font-size: 3.2vw;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#price .priceDownload .dlList .boxGreen {
		flex-direction: column;
		align-items: center;
		padding: 4.8vw 2.933vw 6.133vw;
	}

	#price .priceDownload .dlList .boxGreen h4 {
		width: 100%;
		margin-bottom: 3.2vw;
		align-items: flex-start;
	}

	#price .priceDownload .dlList .boxGreen h4 b {
		font-size: 3.733vw;
		line-height: 1.5;
	}

	#price .priceDownload .dlList .boxGreen h4 small {
		font-size: 3.733vw;
		line-height: 1.5;
		width: 19.467vw;
	}

	#price .priceDownload .dlList .boxGreen .dlButton {
		width: 66.667vw;
		height: 9.6vw;
	}

	#price .priceDownload .dlList .boxGreen .dlButton a .tex {
		font-size: 3.733vw;
		transform: translateX(-1.867vw);
		-webkit-transform: translateX(-1.867vw);
		-moz-transform: translateX(-1.867vw);
	}

	#price .priceDownload .dlList .boxGreen .dlButton a .icon {
		max-width: 3.467vw;
		line-height: 3.467vw;
		right: 4.267vw;
	}

	#price .priceDownload .dlList .boxWhite {
		flex-direction: column;
		align-items: center;
		padding: 5.333vw 2.933vw 6.667vw;
	}

	#price .priceDownload .dlList .boxWhite h4 {
		width: 100%;
		margin-bottom: 3.2vw;
		align-items: flex-start;
	}

	#price .priceDownload .dlList .boxWhite h4 b {
		font-size: 3.733vw;
		line-height: 1.5;
	}

	#price .priceDownload .dlList .boxWhite h4 small {
		font-size: 3.733vw;
		line-height: 1.5;
		width: 19.467vw;
	}

	#price .priceDownload .dlList .boxWhite .dlButton {
		width: 66.667vw;
		height: 9.6vw;
	}

	#price .priceDownload .dlList .boxWhite .dlButton a .tex {
		font-size: 3.733vw;
		transform: translateX(-1.867vw);
		-webkit-transform: translateX(-1.867vw);
		-moz-transform: translateX(-1.867vw);
	}

	#price .priceDownload .dlList .boxWhite .dlButton a .icon {
		max-width: 3.467vw;
		line-height: 3.467vw;
		right: 4.267vw;
	}

	/*----------------------------------------------------
	#use
	----------------------------------------------------*/

	#use {
		padding: 0 0 21.333vw 0;
	}

	#use:before {
		width: 112vw;
		height: 112vw;
		top: -16vw;
	}

	#use .leftObj {
		max-width: 19.733vw;
		left: 0;
		top: 0.267vw;
	}

	#use .rightObj {
		max-width: 19.733vw;
		right: 0;
		top: 0.267vw;
	}

	#use .head {
		margin-bottom: 6.4vw;
	}

	#use .head h2 {
		margin-bottom: 10.667vw;
	}

	#use .head h2 .fukidashi {
		max-width: 50.4vw;
		margin: 0 auto 4vw;
	}

	#use .head h2 .fukidashi img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#use .head h2 small {
		font-size: 5.333vw;
		margin-bottom: 2.667vw;
		transform: translateX(1.333vw);
		-webkit-transform: translateX(1.333vw);
		-moz-transform: translateX(1.333vw);
	}

	#use .head h2 b {
		font-size: 7.467vw;
		transform: translateX(-0.267vw);
		-webkit-transform: translateX(-0.267vw);
		-moz-transform: translateX(-0.267vw);
	}

	#use .head .dots {
		max-width: 10.4vw;
	}

	#use .caseArea {
		margin-bottom: 24vw;
	}

	#use .caseArea .caseHead {
		margin-bottom: 9.067vw;
	}

	#use .caseArea .caseHead h3 small {
		font-size: 4.267vw;
		margin-bottom: 6.933vw;
	}

	#use .caseArea .caseHead h3 b {
		font-size: 6.4vw;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#use .caseArea .caseList {
		width: calc(100% + 3.2vw);
		margin: 0 0 3.733vw -1.6vw;
		padding: 0 0;
	}

	#use .caseArea .caseList .box {
		width: 43.867vw;
		height: 39.467vw;
		margin: 0 0.8vw 1.6vw;
	}

	#use .caseArea .caseList .box .boxHead {
		padding: 2.667vw 0 2.667vw 0;
	}

	#use .caseArea .caseList .box01 .boxHead h3 {
		max-width: 12.4vw;
	}

	#use .caseArea .caseList .box02 .boxHead h3 {
		max-width: 13.6vw;
	}

	#use .caseArea .caseList .box03 .boxHead h3 {
		max-width: 13.6vw;
	}

	#use .caseArea .caseList .box04 .boxHead h3 {
		max-width: 13.867vw;
	}

	#use .caseArea .caseList .box05 .boxHead h3 {
		max-width: 13.733vw;
	}

	#use .caseArea .caseList .box .boxConts {
		height: calc(100% - 12.8vw);
	}

	#use .caseArea .caseList .box .boxConts p {
		font-size: 3.733vw;
		transform: translateY(-4vw);
		-webkit-transform: translateY(-4vw);
		-moz-transform: translateY(-4vw);
	}

	#use .caseArea .caseList .box04 .boxConts p {
		transform: translateY(-4vw);
		-webkit-transform: translateY(-4vw);
		-moz-transform: translateY(-4vw);
	}

	#use .caseArea .caseList .box .boxConts p span {
		font-size: 3.2vw;
	}

	#use .caseArea .caseList .box .boxConts .rabitBg {
		max-width: 14.133vw;
		top: 40%;
	}

	#use .caseArea .centerImg {
		width: calc(100% + 5.333vw);
		max-width: 94.667vw;
		margin-left: -2.667vw;
	}

	#use .caseArea .centerImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#use .serviceArea .serviceBox {
		border-radius: 4vw;
		padding: 0 0 7.733vw 0;
	}

	#use .serviceArea .serviceBox .serviceHead {
		margin-bottom: -2.667vw;
		transform: translateY(-8vw);
		-webkit-transform: translateY(-8vw);
		-moz-transform: translateY(-8vw);
	}

	#use .serviceArea .serviceBox .serviceHead h3 {
		max-width: 71.067vw;
	}

	#use .serviceArea .serviceBox .serviceHead h3 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#use .serviceArea .serviceBox .serviceList {
		margin-bottom: 2.133vw;
		padding: 0 2.133vw;
	}

	#use .serviceArea .serviceBox .serviceList .box {
		width: calc(100% / 3);
		margin-bottom: 4.8vw;
	}

	#use .serviceArea .serviceBox .serviceList .box .icon {
		width: 24vw;
		margin-bottom: 3.733vw;
	}

	#use .serviceArea .serviceBox .serviceList .box .icon img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#use .serviceArea .serviceBox .serviceList .box h4 {
		font-size: 3.733vw;
	}

	#use .serviceArea .serviceBox .addTex {
		padding: 0 3.2vw;
	}

	#use .serviceArea .serviceBox .addTex p {
		font-size: 3.2vw;
		text-align: left;
		transform: translateX(0.8vw);
		-webkit-transform: translateX(0.8vw);
		-moz-transform: translateX(0.8vw);
	}

	#use .colorBorder {
		height: 1.333vw;
	}

	/*----------------------------------------------------
	#voice
	----------------------------------------------------*/

	#voice {
		padding: 20.8vw 0 21.333vw 0;
	}

	#voice .head {
		margin-bottom: 8.8vw;
	}

	#voice .head h2 {
		margin-bottom: 10.667vw;
	}

	#voice .head h2 b {
		font-size: 7.467vw;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	#voice .head .dots {
		max-width: 10.4vw;
	}

	#voice .voiceSlide .slide-arrow {
		width: 10.667vw;
		height: 10.667vw;
	}

	#voice .voiceSlide .next-arrow {
		right: -2.667vw;
	}

	#voice .voiceSlide .next-arrow .arrow {
		position: relative;
		display: inline-block;
		width: 3.253vw;
		height: 5.707vw;
	}

	#voice .voiceSlide .next-arrow .arrow::before,
	#voice .voiceSlide .next-arrow .arrow::after {
		right: -0.267vw;
		width: 3.733vw;
		height: 0.8vw;
	}

	#voice .voiceSlide .prev-arrow {
		left: -2.667vw;
	}

	#voice .voiceSlide .prev-arrow .arrow {
		width: 4.08vw;
		height: 7.093vw;
	}

	#voice .voiceSlide .prev-arrow .arrow::before,
	#voice .voiceSlide .prev-arrow .arrow::after {
		left: 0.267vw;
		width: 3.733vw;
		height: 0.8vw;
	}

	#voice .voiceSlide .box {
		width: 84vw;
		border: 0.8vw solid #f26580;
		border-radius: 5.333vw;
		margin: 0 10.667vw;
		padding: 6.4vw 4.533vw 8.533vw 4.533vw;
		box-shadow: rgba(0, 0, 0, 0.1) 0 2.667vw 4vw -0.8vw, rgba(0, 0, 0, 0.05) 0 1.067vw 1.6vw -0.533vw;
	}

	#voice .voiceSlide .box .boxHead {
		border-bottom: 0.267vw solid #f26580;
		padding: 0 0 6.133vw 0;
	}

	#voice .voiceSlide .box01 .boxHead h3 {
		max-width: 18.8vw;
	}

	#voice .voiceSlide .box02 .boxHead h3 {
		max-width: 18.267vw;
	}

	#voice .voiceSlide .box03 .boxHead h3 {
		max-width: 18.8vw;
	}

	#voice .voiceSlide .box .boxConts {
		padding: 2.667vw 1.067vw 0;
	}

	#voice .voiceSlide .box .boxConts p {
		font-size: 3.733vw;
	}

	/*----------------------------------------------------
	#faq
	----------------------------------------------------*/

	#faq {
		padding: 20.8vw 0 18.133vw 0;
	}

	#faq .head {
		margin-bottom: 9.067vw;
	}

	#faq .head h2 {
		margin-bottom: 10.667vw;
	}

	#faq .head h2 b {
		font-size: 7.467vw;
		transform: translateX(-0.267vw);
		-webkit-transform: translateX(-0.267vw);
		-moz-transform: translateX(-0.267vw);
	}

	#faq .head .dots {
		max-width: 10.4vw;
	}

	#faq .faqLists dl {
		margin-bottom: 2.933vw;
	}

	#faq .faqLists dl dt {
		padding: 4.533vw 2.933vw 4.8vw 3.2vw;
		border-radius: 1.333vw;
		box-shadow: rgba(0, 0, 0, 0.1) 0 0 1.333vw 0, rgba(0, 0, 0, 0.1) 0 0 0.267vw 0;
	}

	#faq .faqLists dl dt .qIcon {
		max-width: 5.733vw;
		line-height: 5.6vw;
		margin-right: 3.2vw;
	}

	#faq .faqLists dl dt .tex {
		font-size: 4.267vw;
	}

	#faq .faqLists dl dt .closeLine {
		width: 6.4vw;
		height: 6.4vw;
		right: 2.667vw;
	}

	#faq .faqLists dl dt .closeLine:after {
		height: 0.267vw;
	}

	#faq .faqLists dl dt .closeLine:before {
		width: 0.267vw;
	}

	#faq .faqLists dl dt.active .closeLine:before {
		opacity: 0;
	}

	#faq .faqLists dl dd {
		display: none;
		padding: 2.133vw 4vw 2.133vw 3.2vw;
	}

	#faq .faqLists dl dd .anserConts {
		display: flex;
	}

	#faq .faqLists dl dd .anserConts .aIcon {
		max-width: 6vw;
		line-height: 5.333vw;
		margin-right: 3.2vw;
		transform: translateY(0.8vw);
		-webkit-transform: translateY(0.8vw);
		-moz-transform: translateY(0.8vw);
	}

	#faq .faqLists dl dd .anserConts p {
		font-size: 3.733vw;
	}

	#faq .faqLists dl dd .anserConts p small {
		font-size: 3.2vw;
	}

	/*----------------------------------------------------
	#step
	----------------------------------------------------*/

	#step {
		padding: 21.6vw 0 18.933vw 0;
	}

	#step .head {
		margin-bottom: 8.8vw;
	}

	#step .head h2 {
		margin-bottom: 10.133vw;
	}

	#step .head h2 small {
		font-size: 5.333vw;
		line-height: 1.5;
		margin-bottom: 9.067vw;
		padding: 2.933vw 0.8vw 2.667vw 3.467vw;
		border-top: 0.267vw solid #f26580;
		border-bottom: 0.267vw solid #f26580;
	}

	#step .head h2 b {
		font-size: 7.467vw;
		line-height: 1.125;
		text-align: center;
		transform: translateX(-0.267vw);
		-webkit-transform: translateX(-0.267vw);
		-moz-transform: translateX(-0.267vw);
	}

	#step .head h2 b span {
		font-size: 9.6vw;
	}

	#step .head .dots {
		max-width: 10.4vw;
	}

	#step .stepFlow {
		flex-direction: column;
		margin-bottom: 6.667vw;
	}

	#step .stepFlow .box {
		width: 100%;
	}

	#step .stepFlow .box01 .stepHead {
		max-width: 11.733vw;
		margin: 0 0 0 0;
	}

	#step .stepFlow .box02 .stepHead {
		max-width: 13.067vw;
		margin: 0 0 0 0;
	}

	#step .stepFlow .box03 .stepHead {
		max-width: 12.933vw;
		margin: 0 0 0 0;
	}

	#step .stepFlow .box .innerBox {
		width: 100%;
		height: auto;
		border-radius: 2.667vw;
		margin-bottom: 12.267vw;
		padding: 3.733vw 4.267vw 8.267vw 4.267vw;
	}

	#step .stepFlow .box03 .innerBox {
		padding: 4.267vw 4.267vw 8.267vw 4.267vw;
	}

	#step .stepFlow .box .innerBox .boxHead {
		width: 100%;
		margin-bottom: 3.2vw;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	#step .stepFlow .box .innerBox .icon {
		max-width: 18.667vw;
		margin: 0 6.133vw 0 0;
	}

	#step .stepFlow .box .innerBox h3 {
		font-size: 5.333vw;
		margin-bottom: 0;
		padding: 0 0 0 0;
	}

	#step .stepFlow .box .innerBox p {
		font-size: 3.733vw;
		line-height: 1.5;
	}

	#step .stepFlow .box02 .innerBox p {
		transform: translateX(1.067vw);
		-webkit-transform: translateX(1.067vw);
		-moz-transform: translateX(1.067vw);
	}

	#step .stepFlow .box .innerBox .arrow {
		position: absolute;
    top: initial;
    left: 50%;
		bottom: -17.333vw;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
		max-width: 6.267vw;
	}

	#step .addTex p {
		font-size: 6.4vw;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
	}

	/*----------------------------------------------------
	#corporation
	----------------------------------------------------*/

	#corporation {
		padding: 21.333vw 0 16.8vw 0;
	}

	#corporation .bgBox {
		padding: 10.667vw 4vw 16.533vw;
	}

	#corporation .bgBox .boxHead {
		margin-bottom: 8.267vw;
	}

	#corporation .bgBox .boxHead h2 {
		max-width: 77.333vw;
	}

	#corporation .bgBox .eventHead {
		margin-bottom: 8.8vw;
	}

	#corporation .bgBox .eventHead h3 {
		font-size: 7.467vw;
		margin-bottom: 3.733vw;
	}

	#corporation .bgBox .eventHead p {
		font-size: 4.267vw;
		line-height: 2;
		text-align: justify;
		padding: 0 5.333vw;
	}

	#corporation .bgBox .innerBox {
		max-width: 100%;
		border-radius: 2.667vw;
		margin: 0 auto 9.067vw;
		padding: 5.6vw 0 8.533vw 0;
	}

	#corporation .bgBox .innerBox .descTex {
		font-size: 3.733vw;
		margin-bottom: 9.067vw;
		padding: 0 5.067vw;
	}

	#corporation .bgBox .innerBox .caseHead {
		margin-bottom: 10.4vw;
	}

	#corporation .bgBox .innerBox .caseHead h4 {
		font-size: 5.333vw;
	}

	#corporation .bgBox .innerBox .caseList {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 4.8vw;
		padding: 0 0 0 5.067vw;
	}

	#corporation .bgBox .innerBox .caseList .box {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: flex-end;
		margin: 0 0 5.6vw;
	}

	#corporation .bgBox .innerBox .caseList .box .icon {
		max-width: 24vw;
		margin: 0 0 0 0;
	}

	#corporation .bgBox .innerBox .caseList .box .icon img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#corporation .bgBox .innerBox .caseList .box p {
		font-size: 3.733vw;
		width: calc(100% - 24vw);
		margin-bottom: 3.467vw;
	}

	#corporation .bgBox .innerBox .caseList .box02 p {
		margin-bottom: 6.4vw;
	}

	#corporation .bgBox .innerBox .caseList .box03 p {
		margin-bottom: 1.067vw;
		transform: translateX(1.333vw);
		-webkit-transform: translateX(1.333vw);
		-moz-transform: translateX(1.333vw);
	}

	#corporation .bgBox .innerBox .innerImg {
		max-width: 68.267vw;
	}

	#corporation .bgBox .innerBox .innerImg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#corporation .corpContact {
		margin-bottom: 5.333vw;
	}

	#corporation .corpContact p {
		font-size: 4.267vw;
		margin-bottom: 9.6vw;
	}

	#corporation .corpContact .button {
		width: 81.333vw;
		height: 25.867vw;
	}

	#corporation .corpContact .button a {
		border-radius: 1.067vw;
		border: 0.533vw solid #f5a50a;
	}

	#corporation .corpContact .button a .tex {
		font-size: 5.333vw;
		line-height: 1.25;
	}

	#corporation .telBox {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 6.4vw 0 7.467vw 0;
	}

	#corporation .telBox .icon {
		width: 4.533vw;
		line-height: 4.533vw;
		margin: 0.533vw 1.6vw 0;
	}

	#corporation .telBox .noTex {
		display: flex;
		flex-direction: column;
		margin: 0 1.333vw;
	}

	#corporation .telBox .noTex .no {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 0 1.067vw;
	}

	#corporation .telBox .noTex .no p {
		font-size: 6.4vw;
		margin: 0 1.067vw;
	}

	#corporation .telBox .noTex .no p a {
		color: #f5a50a;
	}

	#corporation .telBox .noTex .tex p {
		font-size: 3.2vw;
		transform: translateX(1.067vw);
		-webkit-transform: translateX(1.067vw);
		-moz-transform: translateX(1.067vw);
	}

}

@media screen and (min-width: 768px) and (max-width: 768px) {
	#use .caseArea .centerImg {
		margin: 0 auto 0;
	}
}
