@charset "UTF-8";

/* ------------------------------------
  バーチャルヘルスコーチ
  Date: 2021-02-06
------------------------------------ */

/* ------------------------------------
  Reset
------------------------------------ */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
.footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
.footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

input,
textarea {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

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

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

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
}

input:focus,
button:focus,
select:focus {
	background: rgba(230, 80, 60, 0.1);
}

form input::-webkit-input-placeholder {
	color: #999;
	opacity: 0.5;
}

form input::-moz-placeholder {
	color: #999;
	opacity: 0.5;
}

form input:-ms-input-placeholder {
	color: #999;
	opacity: 0.5;
}

form input::-ms-input-placeholder {
	color: #999;
	opacity: 0.5;
}

form input::placeholder {
	color: #999;
	opacity: 0.5;
}

:-moz-placeholder-shown {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}

:placeholder-shown {
	color: #999;
}

::-webkit-input-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
	opacity: 1;
}

::-moz-placeholder {
	color: #999;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #999;
}

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

label {
	margin: 0;
	font-weight: normal;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=time],
input[type=date],
select,
textarea {
	border: 2px solid #000;
	border-radius: 10px;
	padding: 14px 20px;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 400;
}

button {
	font: 1.8rem/1.6 -apple-system, BlinkMacSystemFont, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-weight: 400;
}

input[type=radio],
input[type=checkbox] {
	opacity: 0;
	width: 0;
	display: inline;
}

input[type=radio]+label,
input[type=checkbox]+label {
	position: relative;
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1.6;
	cursor: pointer;
	padding-left: 35px;
}

input[type=radio]+label::before,
input[type=checkbox]+label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	background: #fff;
	border: 1px solid #dcdcdc;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input[type=radio]+label::before {
	width: 20px;
	height: 20px;
	margin-top: -10px;
	border: 2px solid #dcdcdc;
}

input[type=checkbox]+label::before {
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

input[type=radio]+label::before {
	border-radius: 30px;
}

input[type=radio]:checked+label::after,
input[type=checkbox]:checked+label::after {
	content: "";
	position: absolute;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}

input[type=radio]:checked+label::after {
	top: 50%;
	left: 6px;
	width: 8px;
	height: 8px;
	background: #000;
	border-radius: 5px;
	margin-top: -4px;
}

input[type=checkbox]:checked+label::after {
	top: 50%;
	left: 3px;
	width: 20px;
	height: 8px;
	border-left: 3px solid #000;
	border-bottom: 3px solid #000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -8px;
}

/* ------------------------------------
  Base
------------------------------------ */

html {
	font-size: 62.5%;
}

html.wf-active body {
}

body {
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	color: #000;
	background: #fff;
}

img {
	border: 0;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

a:visited {
	color: #000;
}

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

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	word-break: break-all;
}

.wrapper {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	background: #fff;
}

.wrapper::after {
	z-index: 1000;
	content: "";
	display: block;
	width: 100%;
	height: 100vh;
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transition: all 0.6ss ease 0;
	transition: all 0.6ss ease 0;
}

.taC {
	text-align: center;
}

.bold {
	font-weight: 700;
}

body:not(.mobile) a.sp_link {
	pointer-events: none;
}

body:not(.mobile) a:hover {
	opacity: .65;
}

/* ------------------------------------
  text
------------------------------------ */

.txt_green {
	color: #21ba97;
}

.txt_dark_green {
	color: #007d7c;
}

.txt_blue_green {
	color: #00abab;
}

.txt_red {
	color: #ff0000;
}

.txt_del {
	text-decoration: line-through;
}

.txt_size_01 {
	font-size: 120%;
}

.txt_eng {
	letter-spacing: 0.02em;
}

.txt_marker {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ff0));
	background: linear-gradient(transparent 70%, #ff0 70%);
	padding: 0 0;
}

/* ------------------------------------
  effect
------------------------------------ */

.zoom_in {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
}

.zoom_in.show {
	-webkit-transform: translate(0) scale(1);
	transform: translate(0) scale(1);
}

.up_in {
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
}

.up_in.show {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.anim_scale {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-name: anim_scale;
	animation-name: anim_scale;
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.9, 0.9);
}

[data-scroll] {
	opacity: 0;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

[data-scroll].show[data-scroll] {
	opacity: 1;
}

/* ------------------------------------
  Section：common
------------------------------------ */

.sec {
	position: relative;
	z-index: 20;
	background-color: #ffffff;
}

.sec_inner {
	max-width: 1040px;
	margin: 0 auto;
	width: 90%;
	padding: 90px 0 95px;
}

.sec_title {
	position: relative;
	font-size: 3.5rem;
	line-height: 1.6;
	padding-bottom: 30px;
	margin-bottom: 35px;
	text-align: center;
	font-weight: 700;
	color: #333;
}

.sec_title b {
	color: #00abab;
	font-weight: 700;
}

.sec_title b.txt_green {
	color: #21ba97;
}

.sec_title small {
	font-size: 71.4%;
}

.sec_title::after {
	content: "";
	width: 30px;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #000000;
}

.sec p {
	font-size: 1.7rem;
	line-height: 2;
}

.sec .txt_wrap p {
	margin: 30px 0;
}

.sec .cnt_box {
	background: #ffffff;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 15px rgba(0, 125, 124, 0.05);
	box-shadow: 0 0 15px rgba(0, 125, 124, 0.05);
	padding: 60px 5.7%;
}

.sec.bg_green {
	background-color: #eef6f4;
}

.sec.bg_f {
	background: #ffffff url(../img/bg_graph_01.png) center center repeat;
}

.sec.bg_graph .cnt_box {
	border: 1px solid #dcf2ed;
}

/* ------------------------------------
  Form
------------------------------------ */

.cnt_box.cv {
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.9, 0.9);
	z-index: 2;
	position: relative;
	width: 100%;
	padding: 20px 0 40px;
}

.cnt_box.cv .box_tit_01 {
	font-size: 2.7rem;
	font-weight: 700;
	color: #007d7c;
	margin-bottom: 10px;
	display: inline-block;
	position: relative;
	padding: 0 20px 0 30px;
	line-height: 1.4;
}

.cnt_box.cv .box_tit_01::after,
.cnt_box.cv .box_tit_01::before {
	content: "";
	height: 90%;
	width: 1px;
	background: #007d7c;
	position: absolute;
	top: 50%;
}

.cnt_box.cv .box_tit_01::after {
	right: 10px;
	-webkit-transform: translateY(-50%) rotate(30deg);
	transform: translateY(-50%) rotate(30deg);
}

.cnt_box.cv .box_tit_01::before {
	left: 10px;
	-webkit-transform: translateY(-50%) rotate(150deg);
	transform: translateY(-50%) rotate(150deg);
}

.cnt_box.cv .box_tit_02 {
	display: block;
	background: #00abab;
	color: #ffffff;
	font-size: 3.7rem;
	font-weight: 700;
	line-height: 1.3;
	padding: 5px 0;
	margin-bottom: 20px;
}

.cnt_box.cv .box_tit_02 b {
	display: block;
	color: #fff442;
}

.cnt_box.cv .content_form {
	max-width: 534px;
	margin: 20px auto 0;
}

.cnt_box.cv .att_txt {
	color: #ff0000;
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.5;
}

.cnt_box.cv.show {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

input::-webkit-input-placeholder {
	color: #888;
	opacity: 1;
}

input::-moz-placeholder {
	color: #888;
	opacity: 1;
}

input:-ms-input-placeholder {
	color: #888;
	opacity: 1;
}

input::-ms-input-placeholder {
	color: #888;
	opacity: 1;
}

input::placeholder {
	color: #888;
	opacity: 1;
}

:-moz-placeholder-shown {
	color: #888;
}

:-ms-input-placeholder {
	color: #888;
}

:placeholder-shown {
	color: #888;
}

::-webkit-input-placeholder {
	color: #888;
}

:-moz-placeholder {
	color: #888;
	opacity: 1;
}

::-moz-placeholder {
	color: #888;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #888;
}

form.myForm input[type=text],
form.myForm input[type=submit] {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	max-height: 100%;
}

form.myForm .form_input input {
	background-color: #fffde3 !important;
	border: 4px solid #ccc;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 70px;
	height: 78px;
	padding: 0;
	width: 100%;
	text-align: center;
}

form.myForm .form_btn {
	margin-top: 20px;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-name: anim_scale;
	animation-name: anim_scale;
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.9, 0.9);
	will-change: transform, animation;
}

form.myForm .form_btn input[type=submit] {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #ffffff;
	border-radius: 10px;
	text-align: center;
	background: #21ba97;
	font-weight: 700;
	height: 73px;
	border: 0;
	font-size: 2.6rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	border: 1px solid #21ba97;
}

body:not(.mobile) form.myForm .form_btn input[type=submit]:hover {
	opacity: 1;
	background: #007d7c;
	border-color: #007d7c;
}

form.myForm .formError+input[type=text] {
	background-color: #fdd !important;
}

/* ------------------------------------
  Footer
------------------------------------ */

.footer {
	z-index: 100;
	position: relative;
	background: #00abab;
	color: #ffffff;
	text-align: center;
	padding: 30px 0;
	overflow: hidden;
}

.footer a {
	color: #ffffff;
}

.footer_nav li {
	display: inline-block;
	line-height: 1.4;
}

.footer_nav li a {
	font-size: 1.6rem;
	font-weight: 500;
}

.footer_copy {
	padding-top: 25px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.4;
}

/* ------------------------------------
  section hero
------------------------------------ */

.sec_hero {
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
	width: 100%;
	height: 830px;
	position: relative;
	background: #e6f7f6;
	z-index: 100;
	overflow: hidden;
	padding-bottom: 150px;
}

.sec_hero::after,
.sec_hero::before {
	z-index: 1;
	content: "";
	display: block;
	max-width: 600px;
	width: 90%;
	height: 100%;
	position: absolute;
	top: 0;
	background-repeat: no-repeat;
}

.sec_hero::before {
	left: 0;
	background-image: url(../img/hero_bg_01.png);
	background-position: left bottom;
}

.sec_hero::after {
	right: 0;
	background-image: url(../img/hero_bg_02.png);
	background-position: right top;
}

.sec_hero .sec_inner {
	text-align: center;
	position: relative;
	margin: 0 auto;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0;
}

.sec_hero .sec_head {
	z-index: 2;
	position: relative;
	margin-bottom: 20px;
}

.sec_hero .sec_head .head_txt_01 {
	opacity: 0;
	-webkit-transition: all 0.6s ease 0.6s;
	transition: all 0.6s ease 0.6s;
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.9, 0.9);
	font-size: 2.4rem;
	margin-bottom: 10px;
	font-weight: 700;
	line-height: 1.4;
}

.sec_hero .sec_head .head_txt_02 {
	opacity: 0;
	-webkit-transition: all 0.6s ease 1s;
	transition: all 0.6s ease 1s;
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.9, 0.9);
	font-size: 3.8rem;
	color: #007d7c;
	font-weight: 700;
	line-height: 1.4;
	max-width: 600px;
	margin: 0 auto;
}

.sec_hero .sec_head .head_txt_02>span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.sec_hero .sec_head .head_txt_02 b {
	font-size: 120%;
}

.sec_hero .cnt_box {
	z-index: 2;
	position: relative;
	-webkit-transition: all 0.6s ease 1.6s;
	transition: all 0.6s ease 1.6s;
}

.sec_hero .sec_pht {
	position: absolute;
	z-index: 3;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all 0.2s ease 2.4s;
	transition: all 0.2s ease 2.4s;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}

.sec_hero .sec_pht .img {
	z-index: 1;
	position: relative;
}

.sec_hero .sec_pht figcaption {
	z-index: 1;
	position: relative;
	opacity: 0;
	-webkit-transition: all 0.4s ease 2.8s;
	transition: all 0.4s ease 2.8s;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	color: #007d7c;
	width: 100%;
	height: 0;
	margin: 0 auto;
	font-weight: 700;
	padding-top: 100%;
	overflow: hidden;
}

.sec_hero .sec_pht figcaption span {
	display: block;
	position: absolute;
	bottom: 15px;
	left: 50%;
	width: 57%;
	height: 57%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 1.6rem;
	line-height: 1.7;
	text-align: center;
	background: #b5e8e8;
	border-radius: 100%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.sec_hero .sec_pht figcaption span::after {
	content: "";
	position: absolute;
	bottom: -9px;
	left: calc(50% - 9px);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 9px 0 9px;
	border-color: #b5e8e8 transparent transparent transparent;
}

.sec_hero .sec_pht figcaption b {
	font-size: 140%;
	display: block;
}

.sec_hero.show .sec_head .head_txt_01,
.sec_hero.show .sec_head .head_txt_02 {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.sec_hero.show .cnt_box {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.sec_hero.show .sec_pht {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.sec_hero.show .sec_pht figcaption {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* ------------------------------------
  section trial
------------------------------------ */

.sec_trial .list_cnt {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	min-height: 300px;
}

.sec_trial .list_cnt+.list_cnt {
	margin-top: 30px;
}

.sec_trial .list_cnt .txt_wrap .tit {
	font-size: 2.2rem;
	line-height: 1.6;
	font-weight: 700;
	color: #00abab;
	margin-bottom: 20px;
	text-align: center;
}

.sec_trial .list_cnt .txt_wrap .tit b {
	font-size: 120%;
}

.sec_trial .list_cnt .txt_wrap .tit b::after {
	content: "：";
	font-size: 80%;
}

.sec_trial .list_cnt .txt_wrap li {
	position: relative;
	padding-left: 17px;
}

.sec_trial .list_cnt .txt_wrap li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.5;
}

.sec_trial .list_cnt .txt_wrap li p {
	margin: 0 0 10px;
	line-height: 1.5;
}

.sec_trial .cnt_box.cv {
	margin-top: 95px;
}

/* ------------------------------------
  section model
------------------------------------ */

.sec_model .sec_title small {
	display: block;
	margin-bottom: 10px;
}

.sec_model .list_cnt {
	padding-top: 30px;
	padding-bottom: 30px;
}

.sec_model .list_cnt+.list_cnt {
	margin-top: 30px;
}

.sec_model .list_cnt .txt_wrap .tit {
	color: #007d7c;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: 15px;
}

.sec_model .list_cnt .txt_wrap p {
	margin: 0;
}

.sec_model .cnt_box.cv {
	margin-top: 95px;
}

/* ------------------------------------
  section profice
------------------------------------ */

.sec_profile .cnt_box {
	position: relative;
}

.sec_profile .cnt_box .name {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.6;
	color: #00abab;
	padding-bottom: 20px;
	border-bottom: 1px solid #e6f7f6;
	margin-bottom: 20px;
	letter-spacing: 0.06em;
}

.sec_profile .cnt_box .name small {
	display: block;
	font-size: 45.7%;
	color: #007d7c;
	letter-spacing: 0.02em;
}

.sec_profile .cnt_box .img_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 630px;
	margin-top: 40px;
}

.sec_profile .cnt_box .img_wrap figure {
	width: 46.3%;
	max-width: 292px;
}

.sec_profile .cnt_box .img_wrap figure+figure {
	-webkit-transition: all 0.4s ease-in 0.6s;
	transition: all 0.4s ease-in 0.6s;
}

.sec_profile .cnt_box .img_wrap figcaption {
	color: #21ba97;
	font-size: 1.7rem;
	line-height: 1.8;
	text-align: center;
	letter-spacing: 0.08em;
	margin-top: 20px;
	font-weight: 700;
}

.sec_profile .cnt_box .img_wrap figcaption b {
	font-size: 120%;
	display: block;
}

.sec_profile .cnt_box .img_wrap figcaption small {
	margin-top: 5px;
	font-size: 50%;
	display: block;
	color: #000;
	font-weight: 400;
}

.wf-active .wrapper::after {
	display: none;
}

@media not screen,
screen and (min-width: 768px) {

	.vsp767 {
		display: none;
	}

}

@media screen and (min-width: 768px),
print {

	.footer_nav li+li::before {
		content: "｜";
	}

	.sec_profile .cnt_box .pht {
		position: absolute;
		top: 55px;
		right: -25px;
		-webkit-transition: all 0.4s ease-in 0.6s;
		transition: all 0.4s ease-in 0.6s;
	}

}

@media not screen,
screen and (min-width: 1025px) {

	.vsp1024 {
		display: none;
	}

}

@media screen and (min-width: 1025px),
print {

	.sec_hero .sec_pht {
		right: -60px;
	}

	.sec_trial .list_cnt .img_wrap {
		position: absolute;
		top: 50%;
		right: 0;
		width: 45%;
		text-align: center;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.sec_trial .list_cnt .img_wrap img {
		width: 75%;
		-webkit-transition: all 0.4s ease 0.4s;
		transition: all 0.4s ease 0.4s;
	}

	.sec_trial .list_cnt .txt_wrap .tit {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.sec_model .list_cnt {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		min-height: 300px;
	}

	.sec_model .list_cnt .txt_wrap {
		max-width: 570px;
		width: 61.9%;
	}

	.sec_model .list_cnt .txt_wrap p {
		line-height: 2.1;
	}

	.sec_model .list_cnt .img_wrap {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-transition: all 0.4s ease 0.4s;
		transition: all 0.4s ease 0.4s;
	}

	.sec_model .list_cnt .img_wrap img {
		width: 120%;
		margin: 0 -10%;
	}

	.sec_model .list_cnt:nth-of-type(2n+1) .txt_wrap {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.sec_model .list_cnt:nth-of-type(2n+1) .img_wrap {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.sec_profile .cnt_box {
		padding-right: 0px;
	}

	.sec_profile .cnt_box p:first-of-type {
		margin-top: 20px;
	}

}

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

	.vpc1024 {
		display: none;
	}

	.sec_title {
		font-size: 3rem;
	}

	.cnt_box.cv .box_tit_01 {
		font-size: 2rem;
	}

	.cnt_box.cv .box_tit_02 {
		font-size: 3rem;
	}

	.cnt_box.cv .att_txt {
		font-size: 2rem;
	}

	.sec_hero .sec_head .head_txt_01 {
		font-size: 2rem;
	}

	.sec_hero .sec_head .head_txt_02 {
		font-size: 3rem;
	}

	.sec_hero .cnt_box {
		width: 85%;
		margin-right: 15%;
	}

	.sec_hero .sec_pht {
		right: -12%;
	}

	.sec_trial .list_cnt .img_wrap {
		margin: 0 auto 20px;
		width: 75%;
		max-width: 350px;
	}

	.sec_trial .list_cnt .img_wrap img {
		-webkit-transition: all 0.4s ease 0.2s;
		transition: all 0.4s ease 0.2s;
	}

	.sec_trial .list_cnt .txt_wrap {
		text-align: center;
	}

	.sec_trial .list_cnt .txt_wrap .tit b {
		display: block;
	}

	.sec_trial .list_cnt .txt_wrap ul {
		display: inline-block;
		margin: 0 auto;
	}

	.sec_trial .list_cnt .txt_wrap li {
		text-align: left;
	}

	.sec_model .list_cnt .txt_wrap .tit {
		text-align: center;
	}

	.sec_model .list_cnt .img_wrap {
		width: 75%;
		max-width: 350px;
		margin: 0 auto 20px;
		-webkit-transition: all 0.4s ease 0.2s;
		transition: all 0.4s ease 0.2s;
	}

	.sec_profile .cnt_box .pht {
		right: -5%;
		width: 35%;
	}

	.sec_profile .cnt_box .name {
		margin-right: 30%;
		font-size: 3rem;
	}

	.sec_profile .cnt_box p {
		margin-right: 30%;
	}

}

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

	.sec_profile .cnt_box p:last-of-type {
		margin-right: 0;
	}

}

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

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=time],
	input[type=date],
	select,
	textarea {
		font-size: 1.6rem;
	}

	.vpc767 {
		display: none;
	}

	.sec_inner {
		padding: 12vw 0 12.66667vw;
	}

	.sec_title {
		padding-bottom: 4vw;
		margin-bottom: 5vw;
		line-height: 1.5;
		font-size: 5.75vw;
	}

	.sec_title::after {
		height: 3px;
	}

	.sec p {
		font-size: 3.75vw;
		line-height: 1.8;
	}

	.sec .txt_wrap p {
		margin: 20px 0;
	}

	.sec .cnt_box {
		padding: 30px 5.7%;
	}

	.cnt_box.cv {
		padding: 20px 0;
	}

	.cnt_box.cv .box_tit_01 {
		font-size: 4vw;
	}

	.cnt_box.cv .box_tit_02 {
		font-size: 5.25vw;
		margin-bottom: 15px;
	}

	.cnt_box.cv .content_form {
		margin: 0 15px;
		width: calc(100% - 30px);
	}

	.cnt_box.cv .att_txt {
		font-size: 4.5vw;
		margin-bottom: 20px;
	}

	form.myForm .form_input input {
		height: 16vw;
		line-height: 15vw;
		border-width: 2px;
		font-size: 4vw;
		border-radius: 10px;
	}

	form.myForm .form_btn {
		margin-top: 15px;
	}

	form.myForm .form_btn input[type=submit] {
		height: 16vw;
		font-size: 4vw;
		border-radius: 10px;
	}

	.footer {
		padding: 20px 15px;
	}

	.footer_nav li a {
		font-size: 1.3rem;
	}

	.footer_copy {
		font-size: 1.2rem;
		padding-top: 15px;
	}

	.sec_hero {
		height: 90vh;
		min-height: 580px;
		max-height: 680px;
	}

	.sec_hero::after,
	.sec_hero::before {
		background-size: 100% auto;
	}

	.sec_hero .sec_head .head_txt_01 {
		font-size: 4.5vw;
	}

	.sec_hero .sec_head .head_txt_02 {
		font-size: 4.75vw;
		padding-right: 0%;
	}

	.sec_hero .cnt_box {
		margin-right: 0;
		width: 100%;
	}

	.sec_hero .cnt_box .box_tit_01 {
		margin-right: 0%;
	}

	.sec_hero .cnt_box .box_tit_02 {
		padding-right: 0%;
	}

	.sec_hero .cnt_box .form_wrap {
		margin: 0 25% 0 15px;
		width: calc(100% - 15px - 25%);
	}

	.sec_hero .cnt_box .att_txt {
		margin-right: 0%;
	}

	.sec_hero .sec_pht {
		right: -22%;
		width: 50%;
	}

	.sec_hero .sec_pht .img img {
		width: 100%;
	}

	.sec_hero .sec_pht figcaption {
		width: 100%;
		margin-left: 15%;
	}

	.sec_hero .sec_pht figcaption span {
		font-size: 3.25vw;
		line-height: 1.5;
		width: 55%;
		height: 55%;
		left: 0;
		top: auto;
		bottom: 15px;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	.sec_hero .sec_pht figcaption b {
		font-size: 120%;
	}

	.sec_trial .list_cnt .txt_wrap .tit {
		margin-bottom: 15px;
		font-size: 4.5vw;
	}

	.sec_trial .list_cnt .txt_wrap li {
		padding-left: 3.75vw;
	}

	.sec_trial .cnt_box.cv {
		margin-top: 12.66667vw;
	}

	.sec_model .list_cnt .txt_wrap .tit {
		margin-bottom: 15px;
		font-size: 4.5vw;
	}

	.sec_model .cnt_box.cv {
		margin-top: 12.66667vw;
	}

	.sec_profile .cnt_box .pht {
		margin: 20px auto;
		width: 70%;
		height: 40vw;
		overflow: hidden;
	}

	.sec_profile .cnt_box .name {
		margin-right: 0;
		padding-bottom: 15px;
		margin-bottom: 15px;
		text-align: center;
		font-size: 5.5vw;
	}

	.sec_profile .cnt_box .img_wrap {
		margin-top: 30px;
	}

	.sec_profile .cnt_box .img_wrap figure {
		width: 48%;
	}

	.sec_profile .cnt_box .img_wrap figure+figure {
		-webkit-transition: all 0.4s ease-in 0.4s;
		transition: all 0.4s ease-in 0.4s;
	}

	.sec_profile .cnt_box .img_wrap figcaption {
		font-size: 3.25vw;
		margin-top: 10px;
		line-height: 1.5;
		letter-spacing: 0.02em;
	}

	.sec_profile .cnt_box .img_wrap figcaption small {
		font-size: 85%;
		letter-spacing: 0.08em;
	}

}

@media screen and (max-width: 767px) and (orientation: landscape) {

	.sec_title {
		font-size: 3rem;
	}

	.sec p {
		font-size: 1.5rem;
	}

	.cnt_box.cv .box_tit_01 {
		font-size: 2rem;
	}

	.cnt_box.cv .box_tit_02 {
		font-size: 3rem;
	}

	.cnt_box.cv .content_form {
		margin: 0 20px;
		width: calc(100% - 40px);
	}

	.cnt_box.cv .att_txt {
		font-size: 2rem;
	}

	form.myForm .form_input input {
		font-size: 1.5rem;
		height: 50px;
	}

	form.myForm .form_btn input[type=submit] {
		font-size: 1.5rem;
		height: 50px;
	}

	.sec_hero {
		height: 830px;
		min-height: 830px;
		max-height: 100%;
	}

	.sec_hero::after,
	.sec_hero::before {
		width: 60%;
	}

	.sec_hero .sec_head .head_txt_01 {
		font-size: 2rem;
	}

	.sec_hero .sec_head .head_txt_02 {
		font-size: 2.6rem;
		padding-right: 10%;
	}

	.sec_hero .cnt_box .form_wrap {
		margin: 0 10% 0 20px;
		width: calc(100% - 20px - 10%);
	}

	.sec_hero .sec_pht {
		width: auto;
		height: 100%;
		right: -12%;
	}

	.sec_hero .sec_pht .img img {
		width: auto;
		height: 100%;
	}

	.sec_hero .sec_pht figcaption span {
		font-size: 1.6rem;
	}

	.sec_trial .list_cnt .txt_wrap .tit {
		font-size: 2rem;
	}

	.sec_trial .list_cnt .txt_wrap li {
		padding-left: 15px;
	}

	.sec_model .list_cnt .txt_wrap .tit {
		font-size: 2rem;
	}

	.sec_profile .cnt_box .name {
		font-size: 3rem;
	}

	.sec_profile .cnt_box .img_wrap figcaption {
		font-size: 1.5rem;
	}

}

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

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=time],
	input[type=date],
	select,
	textarea {
		border-width: 1px;
		border-radius: 5px;
		padding: 10px 15px;
		font-size: 3.75vw;
	}

	.footer_nav li {
		width: 100%;
		display: block;
		margin-bottom: 5px;
	}

}

@media screen and (max-width: 640px) and (orientation: landscape) {

	.sec_hero .sec_pht {
		right: -22%;
		width: 50%;
		height: auto;
	}

}

@media screen and (max-width: 360px) and (orientation: landscape) {

	.sec_title {
		font-size: 5.75vw;
	}

	.cnt_box.cv .box_tit_01 {
		font-size: 4vw;
	}

	.cnt_box.cv .box_tit_02 {
		font-size: 5.75vw;
	}

	.cnt_box.cv .content_form {
		margin: 0 30px;
		width: calc(100% - 30px);
	}

	.cnt_box.cv .att_txt {
		font-size: 4.5vw;
	}

	form.myForm .form_input input {
		height: 16vw;
		font-size: 4vw;
	}

	form.myForm .form_btn input[type=submit] {
		height: 16vw;
		font-size: 4vw;
	}

	.sec_hero {
		height: 90vh;
		min-height: 580px;
		max-height: 680px;
	}

	.sec_hero .sec_head .head_txt_01 {
		font-size: 4.5vw;
	}

	.sec_hero .sec_head .head_txt_02 {
		font-size: 4vw;
	}

	.sec_hero .cnt_box .form_wrap {
		margin: 0 25% 0 15px;
		width: calc(100% - 15px - 25%);
	}

	.sec_hero .sec_pht .img img {
		width: 100%;
		height: auto;
	}

	.sec_hero .sec_pht figcaption span {
		font-size: 3.25vw;
	}

	.sec_trial .list_cnt .txt_wrap .tit {
		font-size: 4.5vw;
	}

	.sec_trial .list_cnt .txt_wrap li {
		padding-left: 3.75vw;
	}

	.sec_model .list_cnt .txt_wrap .tit {
		font-size: 4.5vw;
	}

	.sec_profile .cnt_box .name {
		font-size: 3rem;
	}

	.sec_profile .cnt_box .img_wrap figcaption {
		font-size: 1.5rem;
	}

}

@-webkit-keyframes fadeOut {

	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}

}

@keyframes fadeOut {

	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}

}

@-webkit-keyframes anim_scale {

	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}

}

@keyframes anim_scale {

	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}

}

/*# sourceMappingURL=map/style.css.map */


.prf_pict {
	margin: 0;
	padding: 20px 0 20px 0;
	text-align: center;
}

@media screen and (min-width:769px) {
	.prf_pict {
		width: 300px;
		float: right;
		padding: 0px 20px 0px 20px;
	}

	.prf_pict img {
		width: 100%;
	}

	.prf_name {
		padding: 60px 0 10px 0;
		font-size: 24px;
		letter-spacing: 1px;
		text-align: left;
	}
}


/* ------------------------------------
 btn
------------------------------------ */
.contents {
	margin: 0 20px 20px 20px;
	padding: 0;
	line-height: 30px;
}

@media screen and (min-width:769px) {
	.contents {
		width: 640px;
		margin: 30px auto 20px auto;
	}
}

.device {
	margin: 0;
	padding: 15px 0 0 0;
	text-align: center;
}

.device a:link {
	color: #fff;
	text-decoration: none;
}

.device a:visited {
	color: #fff;
	text-decoration: none;
}

.device a:hover {
	color: #fff;
	text-decoration: none;
}

.btn {
	width: 100%;
	margin: 0 auto;
	padding: 25px 0;
	display: inline-block;
	font-size: 150%;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	text-align: center;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: -moz-linear-gradient(top, #6fd907, #32b207);
	background: -webkit-linear-gradient(top, #6fd907, #32b207);
	background: linear-gradient(to bottom, #6fd907, #32b207);
	border-left: solid 2px #007800;
	border-right: solid 2px #007800;
	border-bottom: solid 4px #007800;
}

.btn:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-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;
}

@media screen and (min-width:769px) {
	.btn {
		width: 600px;
		font-size: 24px;
		letter-spacing: 1px;
	}
}


::placeholder {
	text-align: center;
}


.present10 {
	text-align: center;
}

.present10 img {
	margin: auto;
}




#footerFloatingMenu {
	display: block;
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 9999;
	text-align: center;
	margin: 0;
	padding: 0 auto;
	background: rgba(0, 0, 0, 0.5);
}

.menuin {
	margin: 0;
	padding: 10px 20px;
}

.menuin img {
	width: 100%;
}

@media screen and (min-width:769px) {
	.menuin {
		width: 480px;
		margin: 0 auto;
		padding: 10px 0;
	}
}

body {
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	color: #1c1c1c;
  }