@charset "UTF-8";
/* Regular */

@font-face {
	font-family: "NotoSansCJKjp";
	src: local('Noto Sans CJK JP Regular'), url('../font/NotoSansCJKjp-Regular.woff') format('woff'), url('../font/NotoSansCJKjp-Regular.otf') format('opentype');
	font-weight: normal;
}

/* Bold */

@font-face {
	font-family: "NotoSansCJKjp";
	src: local('Noto Sans CJK JP Bold'), url('../font/NotoSansCJKjp-Bold.woff') format('woff'), url('../font/NotoSansCJKjp-Bold.otf') format('opentype');
	font-weight: bold;
}

/* ================================================
 * base
/* ================================================*/

html {
	font-size: 62.5%;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-size: calc(100vw / 80);
	line-height: 1.8;
	color: #000000;
	font-family: NotoSansCJKjp, sans-serif;
	font-weight: bold;
	width: 100%;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	background-color: #fff;
	scroll-behavior: smooth;
}

img {
	width: 100%;
	height: auto;
}

a {
	color: #000;
	-webkit-transition: all .3s;
	transition: all .3s;
	word-wrap: break-word;
	display: block;
}

a:hover {
	opacity: 0.7;
}

p {
	margin-block-start: 0;
	margin-block-end: 0;
	text-align: justify;
	hanging-punctuation: allow-end;
}

.-pc {
	display: block;
}

.-sp, .-tub {
	display: none;
}

/* ================================================
   * common
/* ================================================*/

.outer {
	max-width: 80%;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.wrapper {
	max-width: 65%;
	width: 65%;
	margin-left: auto;
	margin-right: auto;
}

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

.marker_yellow {
	background: linear-gradient(transparent 70%, #FFFF00 70%);
	font-weight: bold;
}

.-pc {
	display: block;
}

.-sp {
	display: none;
}

/* ================================================
 * flex
/* ================================================*/

.flex_start {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.flex_end {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.flex_between {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex_center {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flex_around {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.flex_all_center {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
	margin: 0 auto;
}

.flex_row_reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/* ================================================
   * Color & Size Setting
/* ================================================*/

.fontsize--SS {
	font-size: 0.73vw;
}

.fontsize--S {
	font-size: 1.04vw;
}

.fontsize--M {
	font-size: 1.25vw;
}

.fontsize--L {
	font-size: 1.36vw;
}

.fontsize--O {
	font-size: 1.6vw;
	letter-spacing: 0.1em;
}

.fontsize--XO {
	font-size: 2vw;
}

.fontsize--YO {
	font-size: 2.6vw;
}

.textcolor__red {
	color: #ba1d22!important;
}

.textcolor__white {
	color: #ffffff!important;
}

.textcolor__gold {
	color: #d5c2a0!important;
}

.textcolor__black {
	color: #000!important;
}
.textcolor__lightgreen {
	color: #35b0ab!important;
}
.textcolor__lightblue {
	color: #198abf!important;
}
.textcolor__yellow {
	color: #FFFF00!important;
}


.textalign__center {
	text-align: center;
}

.textalign__left {
	text-align: left;
}

.textalign__right {
	text-align: right;
}

.bg_color_black {
	background-color: rgba(0, 0, 0, 0.8);
}

.bg_color_red {
	background-color: #bd0014;
}

.bg_color_yellow {
	background-color: #f0e6d6;
}

.bg_color_white {
	background-color: #fff;
}

h1 {
	font-size: 5.1vw;
	line-height: 1.2;
	margin-bottom: 24px;
}

h3 {
	font-size: 3.125vw;
	letter-spacing: -0.1em;
	margin-bottom: -8px;
	line-height: 1.8;
}

/*1.フェードインアニメーションの指定*/

.scrollanime {
	opacity: 0;
}

/*一瞬表示されるのを防ぐ*/

.fadeInDown {
	animation-name: fadeInDown;
	animation-duration: 3s;
	animation-fill-mode: forwards;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translate(0);
	}
}

/*2.上下の動きを指定*/

.updown {
	transform: translateY(-100px);
}

.downup {
	transform: translateY(100px);
}

/*3.左右の動きを指定*/

.sect02 {
	overflow: hidden;
}

/*横スクロールバーを隠す*/

.slide-right {
	transform: translateX(200px);
}

.slide-left {
	transform: translateX(-200px);
}

.yureru {
	animation: yureru 2s infinite;
}

@keyframes yureru {
	0% {
		transform: translate(2px, 0px);
	}
	5% {
		transform: translate(-2px, 0px);
	}
	10% {
		transform: translate(2px, 0px);
	}
	15% {
		transform: translate(-2px, 0px);
	}
	20% {
		transform: translate(2px, 0px);
	}
	25% {
		transform: translate(-2px, 0px);
	}
	30% {
		transform: translate(0px, 0px);
	}
}

/* ====================================================
# header
===================================================== */

.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 10;
	width: 65%;
	margin:0 auto;
}

@media screen and (max-width: 768px) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		padding: 0;
		background: lightgray;
	}
}

.header__bar {
	width: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__bar h1 {
	margin-bottom:0;
}

@media screen and (max-width: 768px) {
	.header__bar {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background: #fff;
		padding: 0 7% 0 5%;
		z-index: 10;
	}
}

.header__logo {
	width: 24%;
	margin-right: 30px;
}

@media screen and (max-width: 768px) {
	.header__logo {
		display: block;
		width: 35vw;
		height: 17vw;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		position: relative;
		z-index: 5;
	}
	.header__logo .logo2 {
		position: absolute;
		opacity: 0;
		-o-object-fit: cover;
		object-fit: cover;
		-webkit-transition: 0.4s;
		transition: 0.4s;
	}
}

/*/////////////////////////////
  * menuButton
  /////////////////////////////*/

.menuButton {
	display: none;
}

@media screen and (max-width: 768px) {
	.menuButton {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 8vw;
		/*header40px-56px*/
		height: 8vw;
		/* background: linear-gradient(45deg, #00c9ff, #e90054); */
		/*グラデーションのプロパティ*/
		position: relative;
		z-index: 5;
	}
}

@media screen and (max-width: 768px) {
	.menuButton__inner {
		position: relative;
		width: 100%;
		height: 4px;
		background: #35b0ab;
		-webkit-transition: 0.4s;
		transition: 0.4s;
	}
}

@media screen and (max-width: 768px) {
	.menuButton__inner::before, .menuButton__inner::after {
		position: absolute;
		content: "";
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 100%;
		background: #35b0ab;
		-webkit-transition: 0.4s;
		transition: 0.4s;
	}
}

@media screen and (max-width: 768px) {
	.menuButton__inner::before {
		/* top: -8px; */
		top: -3vw;
	}
}

@media screen and (max-width: 768px) {
	.menuButton__inner::after {
		/* top: 8px; */
		top: 3vw;
	}
}

/* @media screen and (max-width: 768px) {
	#menu:checked~.header__bar .header__logo .logo1 {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	#menu:checked~.header__bar .header__logo .logo2 {
		opacity: 1;
	}
} */

@media screen and (max-width: 768px) {
	#menu:checked~.header__bar .menuButton__inner {
		background: transparent;
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

@media screen and (max-width: 768px) {
	#menu:checked~.header__bar .menuButton__inner::before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 0;
		background-color: #35b0ab;
	}
}

@media screen and (max-width: 768px) {
	#menu:checked~.header__bar .menuButton__inner::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 0;
		background-color: #35b0ab;
	}
}

/*//////////////////////////////
  * menu
  /////////////////////////////*/

#menu {
	display: none;
}

.menu {
	padding: 0.5vw 0;
	position: static;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/* 100%からロゴ引いて余白文引く */
	background: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 768px) {
	.menu {
		position: fixed;
		top: 0;
		/* ヘッダーのバーの高さ */
		/* headerの高さ文 */
		right: -100vw;
		width: 100vw;
		height: 100%;
		padding: 23vw 4% 4%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		/* paddingを含んだwidthサイズでできる。なかったらwidth+paddingが横幅になる */
		background: #fff;
		-webkit-transition: 0.6s;
		transition: 0.6s;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		overflow-y: auto;
		overflow: scroll;
	}
}

@media screen and (max-width: 768px) {
	#menu:checked~.menu {
		right: 0;
	}
}

.menu__wrapper {
/* 	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; */
	margin: 0;
	width: auto;
}

.menu__wrapper .menu_btn {
/* 	width: 24%; */
}

.menu__wrapper.-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.menu__wrapper.-pc {
		display: none;
	}
	.menu__wrapper.-sp {
		display: block;
		width: 100%;
	}
	.menu__wrapper.-sp .fontsize--O {
		font-size: 5vw;
		margin-bottom: 1em;
	}
	.menu__wrapper.-sp a.menu_btn {
		width: 80%;
		margin: 0 auto 2em;
	}
}

@media screen and (max-width: 768px) {
	.menu__wrapper li {
		width: 100%;
	}
}

.menu__link {
	border-bottom: solid 0px transparent;
	text-align: center;
	text-shadow: 1px 1px 2px #fff;
	font-weight: 700;
	font-size: 1.2vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.menu__link {
		position: relative;
		display: block;
		/* aタグをブロック要素にして高さを出す */
		line-height: 1.0;
		/* 行間 */
		color: #282828;
		text-decoration: none;
		/* リンク下線消す */
		/* border-bottom: solid 1px #666666; */
		/* 区切り線 */
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		font-weight: 700;
		/* お問い合わせ文字中央にするため */
		/* -webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center; */
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		height: 10vw;
		/* border-radius: 20px; */
		/* height/2 */
		/* color: #000;
		background-color: #fff; */
		text-decoration: none;
		margin-bottom: 0;
		font-size: 4.2vw;
		letter-spacing: 0em;
		font-weight: 700;
		/* -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.4);
		box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.4); */
	}
	.menu__link span {
		display: block;
	}
}

.border-bottom {
	margin: 0 auto 2em;
	padding: 1em;
	width: 100%;
	border-bottom: 5px dotted #d4d4d4;
	/*太さ・線種・色*/
	background-color: #fff;
	/* 背景色 */
	border-radius: 1px;
	/*角の丸み*/
}

/*
|
|
|
|
|


/* 20210128 add ↓*/
#mv {
    position: relative;
    display: inline-block;
	width: 100%;
}
/* 20210128 add ↑*/
/*
|
|
|
|
|
///////////////////////////////

 02*fixed

/////////////////////////////*/

.fixed {
	padding: 24px 0;
}

.fixed__box {
	width: 100%;
	margin-bottom: 46px;
}

.fixed__box .fontsize--XO {
	font-size: 2.1vw;
}

.fixed__box a {
	width: 32%;
}

.btn {
	line-height: 1.5;
	display: inline-block;
	padding: 0.8em 1.5em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border-radius: 100vh;
}

.btn--orange, a.btn--orange {
	color: #fff;
	background-color: #b61b1f;
	background: transparent linear-gradient(90deg, #BA1D22 0%, #8E0000 100%) 0% 0% no-repeat padding-box;
}

.btn--orange:hover, a.btn--orange:hover {
	color: #fff;
	opacity: 0.7;
}

a.btn--radius {
	border-radius: 100vh;
}

.mouse {
	position: relative;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 26px;
	height: 50px;
	cursor: pointer;
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.mouse {
		width: 5.5vw;
		height: 9vw;
		margin-bottom: 25%;
	}
}

.mouse::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	border: 3px solid #000;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	.mouse::after {
		border: 3px solid #000;
	}
}

.mouse-wheel {
	position: absolute;
	top: 10px;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 3px solid #000;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-animation: move-wheel 0.5s alternate infinite;
	animation: move-wheel 0.5s alternate infinite;
}

@media screen and (max-width: 768px) {
	.mouse-wheel {
		width: 2vw;
		height: 2vw;
		border: 3px solid #000;
	}
}

.mouse-arrow {
	position: absolute;
	top: 58px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -6px;
	border-left: 3px solid #000;
	border-bottom: 3px solid #000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-animation: mouse-arrow 2s infinite;
	animation: mouse-arrow 2s infinite;
	opacity: 0;
}

.mouse .mouse-arrow:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.mouse .mouse-arrow:nth-of-type(2) {
	top: 66px;
	-webkit-animation-delay: .15s;
	animation-delay: .15s;
}

@-webkit-keyframes mouse-arrow {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes mouse-arrow {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.mouse-arrow {
		top: 10.5vw;
		width: 2vw;
		height: 2vw;
		margin-left: -1vw;
		border-left: 3px solid #000;
		border-bottom: 3px solid #000;
	}
}

@-webkit-keyframes move-wheel {
	from {
		-webkit-transform: translateX(-50%) translateY(0);
		transform: translateX(-50%) translateY(0);
	}
	to {
		-webkit-transform: translateX(-50%) translateY(5px);
		transform: translateX(-50%) translateY(5px);
	}
}

@keyframes move-wheel {
	from {
		-webkit-transform: translateX(-50%) translateY(0);
		transform: translateX(-50%) translateY(0);
	}
	to {
		-webkit-transform: translateX(-50%) translateY(5px);
		transform: translateX(-50%) translateY(5px);
	}
}

/*
|
|
|
|
|
///////////////////////////////

 03*concept

/////////////////////////////*/

.concept {
	background-image: url(../imges/top/bg_trouble.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 12px;
	padding-top: 24px;
	padding-bottom: 16px;
}
.concept .icon__box img {
	width: auto;
}
.concept .wrapper > p {
	margin-bottom: 20px;
	color: #003e6c;
}

@media screen and (max-width: 768px) {
	.concept {
		background-image: url(../imges/top/sp/bg_trouble_sp.png);
		background-size: 100%;
		background-color: #f5f7f8;
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
	}
	.concept .icon__box {
		padding-top: 30px;
	}
	.concept .icon__box img {
		width: 15%;
	}
	.concept .wrapper > p {
		line-height: 1.4;
	}
}


/*
|
|
|
|
|
///////////////////////////////

 04*ALL CLEAR

/////////////////////////////*/
.clear {
	background-color: #0d4194;
	padding: 96px 0;
}
.clear .clear__box {
	background-color: #fff;
  /* width: 1065px; */
	width: 86%;
  margin: 0 auto;
  position:relative;
  box-sizing:border-box;
}
.clear .clear__box:after {
	content:'';
	width: calc(100% - 1.1vw);
	height: calc(100% - 0.1vw);
	background-color:transparent;
	display:block;
	position:absolute;
	top: -10px;
	left:50%;
	transform:translateX(-50%);
	border:2px solid #198abf;
	box-sizing:border-box;
}
.clear .clear__box .ttl {
	position: relative;
	top: -55px;
	font-style: italic;
	z-index: 1;
}
.clear .clear__box .cont__box {
	padding: 60px 50px;
}
.clear .clear__box .txt__box,
.clear .clear__box .img__box {
	width: 50%;
}
.clear .clear__box .txt__box p:last-child {
	padding-top: 30px;
	font-weight: normal;
}

@media screen and (max-width: 768px) {
	.clear {
	padding: 64px 0 24px;
}
	.clear .clear__box {
		width: 100%;
	}
.clear .clear__box .cont__box {
	padding: 30px 20px;
	display: block;
}
.clear .clear__box .txt__box,
.clear .clear__box .img__box {
	width: 100%;
}
.clear .clear__box .txt__box p {
	text-align: center;
}

}


/*
|
|
|
|
|
///////////////////////////////

 04*about

/////////////////////////////*/

.about {
	background-image: url(../imges/top/bg_about.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 88px;
	padding-bottom: 20px;
}
.about .cont__ttl{
	margin-bottom: 30px;
	letter-spacing: .1em;
}
.about .about__box > p img {
	width: 40%;
	display: block;
	margin: 0 auto;
}
.about ruby {
	border-bottom: 4px double #198abf;
}
.about ruby rt {
	font-size: 16px;
}
.about__picbox {
	width: 96%;
	margin: 16px auto 0;
}

.about__picbox > p {
	width: 16%;
}

@media screen and (max-width: 768px) {
.about {
		background-image: url(../imges/top/sp/bg_about_sp.png);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
}
.about .cont__ttl::before{
	content:'';
	background-image: url(../imges/top/sp/about_sp.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height:0;
	padding-bottom: 17vw;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
}
.about ruby rt {
	font-size: 10px;
}
.about__picbox > p {
	width: 30%;
}
.about .about__box > p img {
	width: 80%;
	display: block;
	margin: 0 auto;
	padding: 30px 0;
}
.about .about__box .ttl {
	line-height: 1.4;
}
.about .about__box .txt {
	font-size: 4.8vw;
}
}

/*
|
|
|
|
|
///////////////////////////////

 05*service

/////////////////////////////*/
.service {
	padding-bottom: 90px;
}
.service .cont__ttl {
	margin-bottom: 30px;
	letter-spacing: .1em;
}

.service .flex_items {
	width: 48%;
}
.service .flex_items p {
	color: #fff;
	background-color:#35b0ab;
	text-align: center;
	border-radius: 8px;
	padding: 8px 0;
}
.service .flex_items p + p{
	margin-top: 20px;
}

.service .cont__ttl::before{
	content:'';
	background-image: url(../imges/top/service.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 40%;
	height:0;
	padding-bottom: 4vw;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
	.service {
		background-color: #f5f7f8;
		padding: 30px 0;
	}
	.service .cont__ttl::before{
	width: 100%;
	padding-bottom: 14vw;
}

.service .flex_between {
	display: block;
}
.service .flex_items {
	width: 80%;
	margin: 0 auto;
}
.service .flex_items p {
	font-size: 4.0vw;
}
.service .flex_items + .flex_items {
	margin-top: 16px;
}
.service .flex_items p + p{
	margin-top: 16px;
}

}


/*
|
|
|
|
|
///////////////////////////////

 06*flow

/////////////////////////////*/

h4 {
	width: 40%;
	margin: 0 auto 12px;
}

h4 img {
	width: 100%;
}
.flow .cont__ttl {
	margin-bottom: 56px;
  letter-spacing: .1em;
}
.flow .cont__ttl::before{
	content:'';
	background-image: url(../imges/top/flow.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 40%;
	height:0;
	padding-bottom: 4vw;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
}
.flow {
	padding: 110px 0 80px;
}
.flow .flow__box--01 {
	background: #003e6c;
	padding: 10px;
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	justify-content: space-around;
	margin-bottom: 30px;
}
.flow .flow__box--01 p {
	background: #fff;
	border-radius: 20px;
	font-size: 1vw;
	padding: 0 24px;
}
.flow .flow__box--02 {
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.flow .flow__box--02 p {
	width: 12%;
	position: relative;
}
.flow .flow__box--02 p + p::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5vw 0 0.5vw 1vw;
	border-color: transparent transparent transparent #32c3e3;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -1.33333vw;
}

@media screen and (max-width: 768px) {
	.flow {
		padding: 30px 0;
	}
	.flow .cont__ttl {
		margin-bottom: 24px;
	}
  .flow .cont__ttl::before {
		width: 100%;
		padding-bottom: 14vw;
	}
  .flow .flow__box--ttl {
		text-align: center;
		background-color: #003e6c;
		border-radius: 20px;
		color: #fff;
		padding: 8px 0;
		font-size: 3.6vw;
		margin-bottom: 10px;
	}

	.flow .-sp .flow__box--02 {
		padding-bottom: 10px;
	}
	.flow .-sp .flow__box--02 p {
		width: 30%;
		position: relative;
	}
	.flow .-sp .flow__box--b > p:last-child {
		width: 30%;
		position: relative;
		margin: 0 auto;
		padding-bottom: 10px;
	}
	.flow .flow__box--02 p + p::before {
	border-width: 1.5vw 0 1.5vw 3vw;
	left: -3.666666vw;
}


}


/*
|
|
|
|
|
///////////////////////////////

 07*price

/////////////////////////////*/

.price {
	background-image: url(../imges/top/bg_price.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 50px;
}

.price .cont__ttl {
	margin-bottom: 30px;
  letter-spacing: .1em;
	color: #fff;
}

.price .cont__ttl::before{
	content:'';
	background-image: url(../imges/top/price.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 40%;
	height:0;
	padding-bottom: 4vw;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
}

.price .price__box--wrapper {
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}
.price .price__box--wrapper .price__box {
	width: 46%;
}
.price .price__box--wrapper .price__box p {
	text-align: center;
}
.price .price__box--wrapper .price__box p:first-child {
	background-color: #fff;
	color: #063988;
	padding: 10px 0;
	border-radius: 33px;
	margin-bottom: 20px;
}
.price .ex__box {
	width: 90%;
	margin: 0 auto;
	padding-top: 30px;
}

@media screen and (max-width: 768px) {
	.price {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.price .cont__ttl::before{
		width: 100%;
		padding-bottom: 14vw;
	}
	.price .price__box--wrapper {
		display: block;
	}
	.price .price__box--wrapper .price__box {
		width: 90%;
		margin: 0 auto;
	}
	.price .price__box--wrapper .price__box p:first-child {
		margin-bottom: 0;
		padding: 0;
		font-size: 7.2vw;
	}
	.price .price__box--wrapper .price__box p:last-child {
		padding: 10px 0;
	}
	.price .price__box--wrapper .price__box p:last-child span {
		font-size: 10.0vw;
	}
	.price .ex__box {
		padding-top: 10px;
	}
}


/*
|
|
|
|
|
///////////////////////////////

 07-2*casestudy

/////////////////////////////*/

.strong {
	padding-top: 80px;
	padding-bottom: 50px;
}
.strong .cont__ttl {
	margin-bottom: 130px;
  letter-spacing: .1em;
}

.strong .cont__ttl::before{
	content:'';
	background-image: url(../imges/top/strong.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height:0;
	padding-bottom: 4vw;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
}

.strong .strong__box--wrapper {
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.strong .strong__box--wrapper .strong__box {
	background-color: #f2f7f9;
	width: 30%;
	position: relative;
}
.strong .strong__box--wrapper .strong__box:nth-of-type(1)::before {
	content: '';
	background-image: url(../imges/top/num01.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 74px;
	height:0;
	padding-bottom: 3vw;
	display: block;
	position: absolute;
	top: -30px;
	left: 10px;
}
.strong .strong__box--wrapper .strong__box:nth-of-type(2)::before {
	content: '';
	background-image: url(../imges/top/num02.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 80px;
	height:0;
	padding-bottom: 3vw;
	display: block;
	position: absolute;
	top: -30px;
	left: 10px;
}
.strong .strong__box--wrapper .strong__box:nth-of-type(3)::before {
	content: '';
	background-image: url(../imges/top/num03.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 80px;
	height:0;
	padding-bottom: 3vw;
	display: block;
	position: absolute;
	top: -30px;
	left: 10px;
}
.strong .strong__box--wrapper .strong__box img {
	max-height: 180px;
	width: auto;
	display: block;
	margin: 30px auto;
}
.strong .strong__box--wrapper .strong__box .ttl {
	color: #063988;
	text-align: center;
}
.strong .strong__box--wrapper .strong__box .txt {
	padding: 22px 36px;
	letter-spacing: .1em;
	font-weight: normal;
}

@media screen and (max-width: 768px) {
	.strong {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.strong .cont__ttl {
	margin-bottom: 80px;
  letter-spacing: 0;
}
.strong .cont__ttl::before{
	background-image: url(../imges/top/sp/strong_sp.png);
	padding-bottom: 30vw;
	top: -20px;
}
.strong .strong__box--wrapper {
	display: block;
}
.strong .strong__box--wrapper .strong__box {
	width: 100%;
  margin-top: 40px;
}
.strong .strong__box--wrapper .strong__box .ttl {
	font-size: 5.6vw;
}
.strong .strong__box--wrapper .strong__box .txt {
	padding: 22px 24px;
	letter-spacing: 0;
	font-size: 4vw;
}
.strong .strong__box--wrapper .strong__box img {
    max-height: inherit;
    margin: 0 auto;
    padding: 20px 0;
}
.strong .strong__box--wrapper .strong__box:nth-of-type(1)::before {
	padding-bottom: 11vw;
	top: -22px;
}
.strong .strong__box--wrapper .strong__box:nth-of-type(2)::before {
	padding-bottom: 11vw;
	top: -22px;
}
.strong .strong__box--wrapper .strong__box:nth-of-type(3)::before {
	padding-bottom: 11vw;
	top: -22px;
}

}


/*
|
|
|
|
|
///////////////////////////////

 08*onestop

/////////////////////////////*/
.onestop {
	background-color: #f5f7f8;
	padding: 74px 0 80px;
}
.onestop .onestop__box {
	width: 80%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.onestop {
		padding: 45px 0;
	}
}


/*
|
|
|
|
|
///////////////////////////////

 09*works

/////////////////////////////*/

.works {
	padding-top: 80px;
	padding-bottom: 50px;
}

.works .cont__ttl {
	margin-bottom: 60px;
  letter-spacing: .1em;
	position: relative;
}
.works .cont_txt {
	color: #063988;
	margin-bottom: 46px;
}

.works .cont__ttl::before{
	content:'';
	background-image: url(../imges/top/works.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height:0;
	padding-bottom: 4vw;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
}

.works .works__box {
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.works .works__box p {
	width: 48%;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.works {
		padding: 30px 0;
	}
	.works .cont__ttl {
		margin-bottom: 10px;
	}
	.works .cont__ttl::before{
		width: 100%;
		padding-bottom: 14vw;
	}
	.works .cont_txt {
		font-size: 4.9vw;
	}
	.works .works__box {
		display: block;
	}
	.works .works__box p {
		width: 100%;
	}

}

/*
|
|
|
|
|
///////////////////////////////

 10*faq

/////////////////////////////*/
.faq {
	padding-top: 80px;
	padding-bottom: 100px;
	background-color: #f5f7f8;
}
.faq .cont__ttl {
	margin-bottom: 60px;
  letter-spacing: 0;
	position: relative;
	z-index: 1;
}
.faq .cont__ttl::before{
	content:'';
	background-image: url(../imges/top/faq.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height:0;
	padding-bottom: 4vw;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
}
.qa-list + .qa-list {
	margin-top: 30px;
}
.qa-list dl {
    position: relative;
    margin: 30px 0 0;
    cursor: pointer;
}
.qa-list dl:first-child {
  margin-top: 0;
}
.qa-list dl::before {
	position: absolute;
	top: 34px;
	right: 33px;
	display: block;
	width: 0;
	height: 16px;
	margin: auto;
	content: '';
	border-left: 2px solid #003e6c;
	z-index: 1;
	transition: all .2s;
}
.qa-list dl::after {
	position: absolute;
	top: 41px;
	right: 26px;
	display: block;
	width: 17px;
	height: 0;
	margin: auto;
	content: '';
	border-top: 2px solid #003e6c;
	transition: all .2s;
}
.qa-list .open::before {
    transform: rotate(-90deg);
}.qa-list .open::after {
    transform: rotate(180deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 20px 60px 20px 100px;
    font-weight: bold;
		color: #063988;
		background-color: #fff;
}
.qa-list dl dt::before {
		content: '';
		background-image: url(../imges/top/qa_icon.png);
		width: 63px;
		height: 63px;
		position: absolute;
		top: 10px;
		left: 20px;
		display: block;
}
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 20px 60px 20px 100px;
		color: #063988;
		font-size: 18px;
		background-color: #fff;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 768px) {
 .qa-list dl {
    margin: 10px 0 0;
}
.qa-list dl:after {
    top: 29px;
    right: 10px;
    width: 16px;
    height: 0;
}
.qa-list dl dt {
    padding: 16px 46px 16px 50px;
    font-size: 14px;
}
.qa-list dl dt::before {
    top: 14px;
    left: 10px;
		background-size: cover;
		width: 30px;
		height: 30px;
}
.qa-list dl dd::before {
    font-size: 14px;
    left: 20px;
    margin-top: 5px;
}
.qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

.faq {
    padding-top: 30px;
    padding-bottom: 30px;
}
.faq .cont__ttl::before {
    padding-bottom: 14vw;
}
.faq .cont__ttl {
	margin-bottom: 30px;
	color: #003e6c;
}
.qa-list dl::before {
	top: 22px;
	right: 17px;
}
}

/*
|
|
|
|
|
///////////////////////////////

 11*inducement

/////////////////////////////*/
.inducement {
	background-image: url(../imges/top/bg_footer.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 35px;
	padding-bottom: 100px;
}
.inducement p {
	color: #fff;
	text-align: center;
}
.inducement p:first-of-type {
	margin-bottom: 64px;
}

@media screen and (max-width: 768px) {
	.inducement {
		padding-bottom: 35px;
	}
	.inducement p:first-of-type {
		margin-bottom: 12px;
		font-size: 4.0vw;
	}
	.inducement p:last-of-type {
    font-size: 5.9vw
	}
}

/*//////////////////////////////
* button
/////////////////////////////*/

.button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: 700;
	/* お問い合わせ文字中央にするため */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	text-decoration: none;
	position: relative;
}

.button i {
	position: absolute;
	font-size: 1em;
	margin: 0;
	border-radius: 50%;
	text-align: center;
	left: 10%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.btn-contact {
	margin: 0 auto;
	max-width: 27vw;
	height: 4.5vw;
	color: #565656;
	border: solid 4px #565656;
	background-color: #fff;
	border-radius: 100vh;
	font-size: 1.18437vw;
	line-height: 1.33333;
	letter-spacing: 0em;
	font-weight: 700;
}

.btn-contact i {
	background: #565656;
	color: #fff;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.btn-contact i {
		width: 1.3em;
		height: 1.3em;
		line-height: 1.3;
		left: 6%;
	}
}

.btn-contact:hover {
	color: #fff;
	border: solid 4px #fff;
	background-color: #565656;
}

.btn-contact:hover i {
	background: #fff;
	color: #565656;
}

@media screen and (max-width: 768px) {
	.btn-contact {
		max-width: 38vw;
		height: 8.5vw;
		font-size: 1.8vw;
		line-height: 1.15385;
		letter-spacing: 0em;
		border: solid 2px #565656;
	}
}

/*
|
|
|
|
|
///////////////////////////////

 10*footer

/////////////////////////////*/

footer {
	background-color: #282828;
	font-weight: normal;
	font-size: 0.83vw;
	padding: 8px 0;
}

.footer__top img {
	width: 100%;
}

/* ----------------------------- */

/* ▼：タブレット専用のスタイル */

/* ----------------------------- */

@media screen and (min-width: 1441px) and (max-width: 2560px) {
	.concept {
		padding-bottom: 44.5%;
		margin-top: 0;
		padding-top: 40px;
		height: 0;
	}
	.about {
		padding-bottom: 48px;
	}
	.about__picbox {
		margin: 32px auto 0;
	}
	.service {
		padding: 50px 0 90px;
    background: #f5f7f8;
	}
	.service__picbox {
		margin: 50px auto;
	}
	.flow {
		padding-top: 80px;
	}
	h4 {
		width: 45%;
	}
	footer {
		padding: 16px 0;
	}
}

@media screen and (min-width: 1201px) and (max-width: 1440px) {
	.concept {
		/* padding-bottom: 30px;
		margin-top: 30px; */
		padding-bottom: 16.6vw;
    margin-top: 0;
	}
	.about {
		padding-top: 140px;
		padding-bottom: 32px;
	}
	.service {
		padding: 104px 0 0;
		margin-top: -4px;
	}
}

@media screen and (max-width: 768px) {
	.wrapper {
		max-width: 85%;
		width: 85%;
	}
	.main__visualbox {
		width: 60%;
		margin-top: 17vw;
	}
	.outer {
		max-width: 95%;
		width: 95%;
	}
	.fixed__box.flex_between {
		flex-direction: column;
	}
	.fixed__box .fontsize--XO {
		font-size: 3.8vw;
		margin: 0 auto 3%;
	}
	.fixed__box a {
		width: 55%;
		margin: 0 auto;
	}
	.mouse {
		width: 4vw;
		height: 7vw;
		margin-bottom: 4%;
	}
	.mouse::after {
		border: 2px solid #000;
	}
	.mouse-wheel {
		width: 1vw;
		height: 1vw;
		border: 2px solid #000;
	}
	.mouse .mouse-arrow:nth-of-type(2) {
		top: 12vw;
	}
	.fixed__box {
		margin-bottom: 5%;
	}
	#mv {
		margin-top: 17vw;
	}

}

@media screen and (max-width: 426px) {
	.-pc {
		display: none;
	}
	.-sp {
		display: block;
	}
	body {
		font-size: calc(100vw / 40);
	}
	.main__visual {
		margin-top: 17vw;
		height: 154vw;
		background: center top no-repeat;
		background-image: url(../imges/01_mv-sp.png);
		background-size: cover;
	}
	h1 {
		margin-bottom: 8px;
	}
	.main__title {
		width: 68%;
	}
	.wrapper {
		max-width: 95%;
		width: 95%;
	}
	.fixed {
		padding: 0;
	}
	.fixed__box {
		width: 100%;
		flex-direction: column;
	}
	.fixed__item.flex_all_center, .fixed__item.-spbox {
		width: 100%;
	}
	.fixed__telitem.flex_between {
		flex-direction: row;
		width: 100%;
	}
	.fixed__item {
		text-align: center;
	}
	.btn {
		line-height: 2;
		padding: 1em 2.5em;
		width: 90%;
	}
	.fontsize--SS {
		font-size: 2vw;
	}
	.fontsize--S {
		font-size: 4vw;
	}
	.fontsize--M {
		font-size: 2.6vw;
	}
	.fontsize--L {
		font-size: 4.2vw;
	}
	.fontsize--O {
		font-size: 5vw;
	}
	.fontsize--XO {
		font-size: 7.5vw;
	}
	.fontsize--YO {
		font-size: 8.0vw;
	}

	h3 {
		font-size: 7.4vw;
	}
	.about {
		padding-top: 40px;
		padding-bottom: 16px;
		/* background-image: url(../imges/bg02-sp.png); */
		background-position: center top;
		background-repeat: no-repeat;
		background-size: 100%;
	}
	.service__picbox {
		margin: 8px auto;
		width: 100%;
	}
	h4 {
		width: 60%;
		margin: 0 auto 8px;
	}
	.scroll-table {
		overflow: auto;
		white-space: nowrap;
	}
	th {
		font-size: 2.6vw;
		padding: 1em 1.5em;
		;
	}
	table img {
		width: 60%;
	}
	table .symbol {
		width: 15%;
		margin-bottom: 8px;
	}
	tr .title {
		font-size: 2.2vw;
	}
	table {
		font-size: 2.2vw;
	}
	.flow__picbox {
		margin: 24px auto;
	}
	.footer__top p {
		text-align: center;
		padding: 10px 0;
	}
	.footer__top img {
		width: 60%;
	}
	.footer__right {
		width: 100%;
	}
	.footer__right p {
		text-align: center;
	}
	footer {
		font-size: 2.4vw;
		padding: 8px 0 80px;
	}
	.flow__bgred {
		padding: 3% 2%;
	}
	.flow__logo {
		width: 40%;
	}
	.flow__bgred .fontsize--O {
		font-size: 4.8vw;
		line-height: 2.0;
		text-align: left;
	}
	.contact-title-box.flex_all_center {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.contact-title {
		font-size: 4.53333vw;
		line-height: 1.17647;
		letter-spacing: 0.1em;
		margin-bottom: 2em;
	}
	.contact-title-img {
		width: 50%;
		margin: 0 auto 4%;
	}
	.contact-text {
		font-size: 3.46667vw;
		line-height: 1.53846;
		letter-spacing: 0.1em;
		margin-bottom: 2em;
	}
	.contact-item {
		font-size: 4.26667vw;
		line-height: 1.25;
		letter-spacing: 0.1em;
		margin-bottom: 2em;
	}
	.contact-btnbox {
		margin-bottom: 7%;
	}
	.contact-btnbox a {
		margin-right: 0;
		width: 85%;
		margin-bottom: 4%;
	}
	.contact-btnbox.flex_all_center {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.btn-contact i {
		width: 1.3em;
		height: 1.3em;
		line-height: 1.3;
		left: 6%;
	}
	.btn-contact {
		max-width: 68vw;
		height: 11.5vw;
		font-size: 3.46667vw;
		line-height: 1.15385;
		letter-spacing: 0em;
		border: solid 2px #565656;
	}

}

.fix__item {
	position: fixed;
	right: 0;
	bottom: 100px;
	background-color: #104599;
	z-index: 1;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 10px 0 0 10px;
	width: 11.521vw;
}
.fix__item img {
	width: auto;
	display: block;
	margin: 0 auto;
}
.mail__box p,
.chat__box p {
	font-size: .9555vw;
	text-align: center;
}
.mail__box {
	background-color: #fff;
	padding: 10px;
	border-bottom: 1px solid #c0c0c0;
	border-radius: 10px 0 0 0;
}
.chat__box {
	background-color: #fff;
	padding: 10px;
	border-radius: 0 0 0 10px;
}

@media screen and (max-width: 768px) {

	.fix__item {
	position: fixed;
	right: auto;
	left: auto;
	bottom: 0;
	background-color: #104599;
	z-index: 1;
	padding-left: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0;
	border-radius: 10px 11px 0 0;
	width: 100%;
	display: flex;
}
.fix__item img {
	width: 20%;
	display: block;
	margin: 0;
}
.mail__box p,
.chat__box p {
	font-size: 10px;
	text-align: left;
	display: block;
	line-height: 1.4;
	padding-left: 15px;
}
.mail__box p + a,
.chat__box p + a {
	display: none;
}
.mail__box {
	background-color: #fff;
	padding: 8px;
	border-bottom: none;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.chat__box {
	background-color: #fff;
	padding: 8px;
	border-radius: 0 10px 0 0;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #c0c0c0;
	box-sizing: border-box;
}

}
