@charset "UTF-8";

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

/* ------------------------------------
  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;
}

p {
}
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;
}

/* ------------------------------------
  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: none;
	color: #292929;
	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;
	line-height: 1.6;
}

.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.6s ease 0;
	transition: all 0.6s 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;
}

.link_btn a {
	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: #292929;
	color: 0;
	border-radius: 10px;
	text-align: center;
	background: #fbbf2d;
	font-weight: bold;
}

body:not(.mobile) .link_btn a:hover {
	opacity: 1;
	background: #000000;
	color: #ffffff;
}

/* ------------------------------------
  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_close {
	display: inline-block;
	position: relative;
}
.txt_close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ff0000;
}

.txt_size_01 {
	font-size: 120%;
}

.txt_eng {
	letter-spacing: 0.02em;
}

/* ------------------------------------
  video
------------------------------------ */

.video_wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.video_wrap.thumb_play .player {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.video_wrap.thumb_play .thumb {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	cursor: pointer;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ------------------------------------
  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);
}

.flash {
	-webkit-animation: flash 1.5s linear infinite;
	animation: flash 1.5s linear infinite;
}

.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: 0px 0 0px;
}

.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: #00abab;
}

.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%);
}

.sec_arr {
	position: absolute;
	width: 66px;
	height: 88px;
	top: -60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-animation: secArr1 1.5s infinite;
	animation: secArr1 1.5s infinite;
}

.sec_arr::before,
.sec_arr::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 33px 0 33px;
	border-color: #000000 transparent transparent transparent;
	position: absolute;
	left: 0;
}

.sec_arr::before {
	top: 0;
}

.sec_arr::after {
	bottom: 0;
}

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

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

.sec .txt_wrap.lead_txt {
	text-align: center;
}

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

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

.sec.bg_green2 {
	background-color: #00abab;
}

.sec.bg_green2 p {
	color: #ffffff;
}

.sec.bg_graph {
	background: #eef6f4;
}

.sec.bg_graph_w {
	background: #ffffff;
}

.sec.bg_graph_lb {
	background: #eef6f4;
}

.sec.bg_deepblue {
	background: #0d8987;
}

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


.sec .check_list li {
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
	line-height: 1.8;
	color: #444;
}

.sec .check_list li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 24px;
	height: 24px;
	background: url(../img/icon_chk_01z.png) center center/100% auto no-repeat;
}

.sec .check_list li + li {
	margin-top: 25px;
}

.sec .link_btn {
	width: 94%;
	max-width: 650px;
	margin: 0 auto;
}

.sec .link_btn a {
	height: 75px;
	font-size: 2.5rem;
}

/* ------------------------------------
  Header
------------------------------------ */

.header_btn {
	opacity: 0;
	z-index: 200;
	position: fixed;
	right: 50px;
	top: 25px;
	width: 180px;
	-webkit-transition: opacity 0.6s ease-in 2s;
	transition: opacity 0.6s ease-in 2s;
	border-radius: 10px;
}

.header_btn a {
	height: 50px;
	font-size: 1.4rem;
}

.header_btn.show {
	opacity: 1;
}

.header_btn.fixed {
	-webkit-box-shadow: 0 0 15px rgba(0, 125, 124, 0.2);
	box-shadow: 0 0 15px rgba(0, 125, 124, 0.2);
}

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

.footer {
	z-index: 100;
	position: relative;
	background: #046c6b
	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%;
	position: relative;
	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;
	background: #ffffff;
	overflow: visible;
	padding-top: 0px;
	padding-bottom: 0px;
	height: auto;
}




.sec_hero::after,
.sec_hero::before {
	z-index: 1;
	content: "";
	display: block;
	max-width: 600px;
	width: 100%;
	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 {
	padding-left: 0px;
	text-align: center;
	z-index: 3;
	position: relative;
	margin: 0 auto;
}

.sec_hero .hero_doctor {
	position: absolute;
	z-index: 2;
	bottom: 0;
}

.sec_hero p {
	font-weight: 700;
	line-height: 1.5;
}

.sec_hero .txt_01 {
	font-size: 2.4rem;
	margin-bottom: 20px;
	color: #00abab;
	
}

.sec_hero .txt_02 {
	font-size: 3rem;
	margin-bottom: 30px;
	color: #007d7c;
}

.sec_hero .txt_03 {
	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);
	margin-bottom: 50px;
	font-size: 2.4rem;
}

.sec_hero .txt_03 strong {
	font-weight: 600;
	font-size: 290%;
	display: block;
	margin-bottom: 30px;
	line-height: 1.3;
	color: #00abab;
}

.sec_hero .txt_03 small {
	font-weight: 500;
	color: #007d7c;
	display: block;
	font-style: italic;
	line-height: 1.4;
}

.sec_hero .link_btn {
	opacity: 0;
	-webkit-transition: all 0.6s ease 1s;
	transition: all 0.6s ease 1s;
	max-width: 530px;
	width: 90%;
}

.sec_hero .link_btn a {
	height: 85px;
	font-size: 2.6rem;
}

.sec_hero.show .link_btn {
	opacity: 1;
}

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

#att_01_font {
	font-size:2.9vw;
}

/* ------------------------------------
  section intro
------------------------------------ */

.sec_intro .intro_video {
	margin: 0 auto;
	max-width: 720px;
}

.sec_intro .intro_video iframe {
	border-radius: 15px;
}

.sec_intro .intro_video p {
	font-weight: 700;
	margin-top: 20px;
	text-align: center;
}

.sec_intro .link_btn {
	margin-top: 60px;
}

/* ------------------------------------
  section about
------------------------------------ */

.sec_about .cnt_box .txt_wrap .tit {
	color: #00abab;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.6;
}

.sec_about .cnt_box .txt_wrap p {
	margin-bottom: 0;
}

/* ------------------------------------
  section difference
------------------------------------ */

.sec_diff .sec_title {
	line-height: 1.5;
}

.sec_diff .txt_wrap p:last-of-type {
	margin-bottom: 0;
}

.sec_diff .diff_table {
	margin: 40px auto 50px;
	max-width: 720px;
}

.sec_diff .diff_table .future {
	width: 37.5%;
}

.sec_diff .diff_table .past {
	width: 37%;
}

.sec_diff .diff_table p b {
	font-weight: 700;
	display: block;
}

.sec_diff .diff_table .table_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.sec_diff .diff_table .table_head .future {
	background: #00abab url(../img/difference_icon_01.png) 10px center/60px auto no-repeat;
	color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100px;
	padding: 10px 0 0 80px;
}

.sec_diff .diff_table .table_head .past {
	background: #666 url(../img/difference_icon_02.png) 10px center/60px auto no-repeat;
	color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 90px;
	padding-left: 80px;
}

.sec_diff .diff_table .table_head p {
	line-height: 1.5;
}

.sec_diff .diff_table .table_head p b {
	font-size: 120%;
}

.sec_diff .diff_table .table_head + .table_body .future {
	border-top: 2px solid #00abab;
}

.sec_diff .diff_table .table_body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.sec_diff .diff_table .table_body .tit {
	width: 25.5%;
	background: #dcf2ed;
	color: #00abab;
	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;
	border-bottom: 2px solid #ffffff;
	height: 75px;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec_diff .diff_table .table_body > div {
	height: 75px;
	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;
}

.sec_diff .diff_table .table_body .future {
	background: #fff9db;
	border: 2px solid #00abab;
	border-top: 0;
}

.sec_diff .diff_table .table_body .future b {
	color: #00abab;
}

.sec_diff .diff_table .table_body .past {
	background: #f8f8f8;
	border-bottom: 2px solid #ffffff;
}

.sec_diff .diff_table .table_body:last-of-type .future {
	height: 77px;
}

.sec_diff .diff_table .table_body p {
	line-height: 1.4;
	text-align: center;
	color: #444;
}

.sec_diff .diff_table .table_body p b {
	font-size: 120%;
}

/* ------------------------------------
  section recom
------------------------------------ */

.sec_recom .cnt_box .link_btn {
	margin: 40px auto 0;
}

/* ------------------------------------
  section present
------------------------------------ */

.sec_present .sec_txt_01 {
	color: #ffffff;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.5;
}

.sec_present .sec_txt_01 span {
	position: relative;
	display: inline-block;
	font-size: 127%;
	font-weight: 500;
	color: #00abab;
}

.sec_present .sec_txt_01 span::before,
.sec_present .sec_txt_01 span::after {
	content: "";
	width: 56px;
	height: .5px;
	background: #00abab;
	position: absolute;
	top: 50%;
}

.sec_present .sec_txt_01 span::before {
	left: -66px;
}

.sec_present .sec_txt_01 span::after {
	right: -66px;
}

.sec_present .att_01 {
	color: #ff0000;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	margin: 20px 0;
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

.sec_present .present_list.style_01 .cnt_box {
	text-align: center;
}

.sec_present .present_list.style_01 .cnt_box .num {
	width: 140px;
	height: 26px;
	color: #ffffff;
	font-size: 1.5rem;
	line-height: 26px;
	background: #00abab;
	border-radius: 26px;
	margin: 0 auto 20px;
	font-size: 1.5rem;
}

.sec_present .present_list.style_01 .cnt_box .num b {
	color: #ffffff;
}

.sec_present .present_list.style_01 .cnt_box .img {
	margin: 0 auto 35px;
	max-width: 266px;
	width: 81.5%;
}

.sec_present .present_list.style_01 .cnt_box .tit {
	line-height: 1.5;
	color: #007d7c;
	font-weight: 700;
}

.sec_present .present_list.style_01 .cnt_box .tit b {
	font-size: 125%;
	color: #00abab;
	display: block;
	margin-top: 5px;
}

.sec_present .present_list.style_01 .cnt_box .tit small {
	font-size: 87%;
	display: block;
	margin-top: 8px;
	color: #333;
	font-weight: 700;
}

.sec_present .present_list.style_02 {
	max-width: 720px;
	margin: 0 auto 70px;
}

.sec_present .present_list.style_02 .cnt_box {
	position: relative;
	text-align: center;
	overflow: hidden;
}

.sec_present .present_list.style_02 .cnt_box + .cnt_box {
	margin: 40px 0 0;
}

.sec_present .present_list.style_02 .cnt_box .num {
	position: absolute;
	top: 0;
	left: 0;
	width: 140px;
	height: 140px;
	color: #ffffff;
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
	padding: 2.5% 5% 0 0;
}

.sec_present .present_list.style_02 .cnt_box .num::after {
	content: "";
	position: absolute;
	bottom: 28%;
	right: 28%;
	width: 150%;
	height: 150%;
	background: #21ba97;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -1;
}

.sec_present .present_list.style_02 .cnt_box .num b {
	font-size: 186%;
	display: block;
	padding-right: 10%;
	color: #ffffff;
}

.sec_present .present_list.style_02 .cnt_box .img {
	margin: 0 auto 20px;
	max-width: 300px;
	width: 51%;
}

.sec_present .present_list.style_02 .cnt_box .tit {
	line-height: 1.5;
	color: #007d7c;
	font-weight: 700;
}

.sec_present .present_list.style_02 .cnt_box .tit b {
	font-size: 125%;
	color: #00abab;
	display: block;
	margin-top: 10px;
}

.sec_present .present_list.style_02 .cnt_box .tit small {
	font-size: 77.2%;
	display: block;
	margin-top: 20px;
	color: #000;
	font-weight: 700;
}

.sec_present .present_list.style_02 .cnt_box p {
	margin-top: 40px;
}

.sec_present .present_list.style_02 .cnt_box.present_01 .img {
	max-width: 240px;
}

.sec_present .present_list.style_02 .cnt_box.present_02 .img {
	max-width: 320px;
	margin-bottom: 10px;
}

.sec_present .present_list.style_02 .cnt_box.present_06 .img {
	max-width: 370px;
	margin-bottom: 0;
}

.sec_present .present_list.style_02 .cnt_box.present_07 .img {
	max-width: 488px;
	width: 67%;
	margin-top: 20px;
}

/* ------------------------------------
  section voice
------------------------------------ */

.sec_voice .voice_cnt p {
	font-size: 1.9rem;
	font-weight: 700;
	color: #00abab;
	line-height: 1.5;
}

.sec_voice .voice_cnt p small {
	font-size: 73.68%;
	color: #007d7c;
	font-weight: 500;
}

.sec_voice .video_wrap {
	background: #9fdbda;
	border: 5px solid #9fdbda;
	margin-bottom: 10px;
}

.sec_voice .att {
	text-align: center;
	color: #00abab;
	margin-top: 45px;
}

/* ------------------------------------
  section offer
------------------------------------ */

.sec_offer .sec_title {
	line-height: 1.5;
}

.sec_offer .cnt_box .tit {
	color: #ffffff;
	background: #00abab;
	font-size: 2rem;
	line-height: 1.5;
	padding: 5px 15px;
	max-width: 735px;
	width: 100%;
	text-align: center;
	border-radius: 40px;
	margin: 0 auto 45px;
}

/* ------------------------------------
  section seminar
------------------------------------ */

.sec_seminar .seminar_head {
	padding-top: 50px;
	padding-bottom: 30px;
	text-align: center;
	z-index: 1;
	position: relative;
}

.sec_seminar .seminar_head p {
	font-weight: 700;
}

.sec_seminar .seminar_head p b {
	color: #00abab;
}

.sec_seminar .seminar_head .txt_01 {
	font-size: 2.4rem;
}

.sec_seminar .seminar_head .txt_02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 540px;
	margin: 15px auto;
}

.sec_seminar .seminar_head .txt_03 {
	font-size: 2.7rem;
}

.sec_seminar .seminar_head li {
	width: 22.22%;
}

.sec_seminar .seminar_head li p {
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 100%;
	background: #ffffff;
	border-radius: 100%;
	-webkit-box-shadow: 0 0 15px rgba(0, 125, 124, 0.1);
	box-shadow: 0 0 15px rgba(0, 125, 124, 0.1);
	line-height: 1.3;
}

.sec_seminar .seminar_head li span {
	color: #00abab;
	font-size: 1.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	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;
}

.sec_seminar .seminar_title {
	position: relative;
	z-index: 2;
}

.sec_seminar .seminar_title .sec_inner {
	padding-top: 30px;
	padding-bottom: 40px;
}

.sec_seminar .seminar_title .title_bar {
	background: #00abab;
	color: #ffffff;
}

.sec_seminar .seminar_title .title_bar span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1040px;
	margin: 0 auto;
	height: 110px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 4.7rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec_seminar .seminar_title .img {
	position: absolute;
	top: -23px;
	right: 50%;
	margin-right: -520px;
	width: 319px;
}

.sec_seminar .seminar_title p {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.6;
}

.sec_seminar .seminar_title .txt_01 {
	color: #007d7c;
	margin-bottom: 15px;
}

.sec_seminar .seminar_title .txt_02 {
	line-height: 1.2;
	margin-bottom: 25px;
}

.sec_seminar .seminar_title .txt_02 strong {
	font-size: 232%;
	color: #00abab;
	display: block;
}

.sec_seminar .seminar_title .txt_02 small {
	font-size: 1.6rem;
	color: #007d7c;
	display: block;
	margin-top: 20px;
	letter-spacing: 0.06em;
}

.sec_seminar .seminar_title .txt_03 {
	color: #333;
	padding-right: 0;
}

.sec_seminar .seminar_schedule {
	z-index: 3;
	position: relative;
	padding-top: 0;
}

.sec_seminar .seminar_schedule .tit {
	position: relative;
	text-align: center;
	margin: 60px 0 40px;
}

.sec_seminar .seminar_schedule .tit:first-of-type {
	margin-top: 0;
}

.sec_seminar .seminar_schedule .tit::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #00abab;
	z-index: 1;
	top: 50%;
	left: 0;
}

.sec_seminar .seminar_schedule .tit span {
	z-index: 2;
	position: relative;
	display: inline-block;
	color: #ffffff;
	background: #00abab;
	font-size: 2rem;
	line-height: 1.5;
	padding: 5px 15px;
	text-align: center;
	border-radius: 40px;
	width: 320px;
}

.sec_seminar .seminar_schedule li {
	font-size: 2rem;
	line-height: 1.5;
	color: #444;
	font-weight: 700;
}

.sec_seminar .seminar_schedule p {
	line-height: 1.5;
}

.sec_seminar .seminar_schedule .txt_fee {
	display: inline-block;
	margin-left: 10px;
	color: #ff0000;
	font-size: 120%;
}

.sec_seminar .seminar_schedule .txt_att_01 {
	font-size: 2.4rem;
	font-weight: 700;
	margin: 30px 0 70px;
	color: #ff0000;
	text-align: center;
	line-height: 1.7;
}

.sec_seminar .seminar_schedule .txt_att_02 {
	margin-top: 20px;
}

.sec_seminar .seminar_schedule .txt_att_03 {
	color: #ff0000;
}

.sec_seminar .seminar_schedule .link_btn {
	margin-top: 70px;
}

.sec_seminar .seminar_schedule .schedule_table {
	border: 1px solid #00abab;
	border-bottom: 0;
	width: 100%;
}

.sec_seminar .seminar_schedule .schedule_table th,
.sec_seminar .seminar_schedule .schedule_table td {
	font-size: 1.8rem;
	line-height: 1.4;
	border-bottom: 1px solid #00abab;
	border-left: 1px solid #00abab;
	text-align: center;
	vertical-align: middle;
	padding: 10px 0;
	white-space: nowrap;
}

.sec_seminar .seminar_schedule .schedule_table th:first-of-type,
.sec_seminar .seminar_schedule .schedule_table td:first-of-type {
	border-left: 0;
}

.sec_seminar .seminar_schedule .schedule_table th {
	background: #39b6b6;
	color: #ffffff;
	font-weight: 500;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(1) {
	width: 21%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(2) {
	width: 15%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(3) {
	width: 21%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(4) {
	width: 29%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(5) {
	width: 14%;
}

.sec_seminar .seminar_schedule .schedule_table td {
	font-weight: 700;
	background: #ffffff;
	color: #333;
}

.sec_seminar .seminar_schedule .schedule_table td:first-of-type {
	border-left: 0;
}

.sec_seminar .seminar_schedule .schedule_table td small {
	font-size: 75%;
}

/* ------------------------------------
  section good
------------------------------------ */

.sec_good .cnt_box {
	position: relative;
	padding: 70px 5.7% 80px;
}

.sec_good .cnt_box .check_list li:nth-child(2n+1) {
	color: #00abab;
}

/* ------------------------------------
  section teacher
------------------------------------ */

.sec_teacher .cnt_box {
	padding: 60px 5.7% 60px 32.6%;
	position: relative;
}

.sec_teacher .cnt_box + .cnt_box {
	margin-top: 40px;
}

.sec_teacher .cnt_box .box_head {
	border-bottom: 1px solid #dcf2ed;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.sec_teacher .cnt_box .box_head .img img {
	border-radius: 15px;
}

.sec_teacher .cnt_box .box_head .tit {
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 700;
}

.sec_teacher .cnt_box .box_head .tit b {
	font-size: 187.5%;
	color: #00abab;
	display: block;
	margin-bottom: 10px;
}

.sec_teacher .cnt_box .box_head .tit small {
	color: #007d7c;
}

.sec_teacher .cnt_box p + p {
	margin-top: 30px;
}

/* ------------------------------------
  section message
------------------------------------ */

.sec_message .cnt_box {
	max-width: 720px;
	margin: 0 auto;
	padding-bottom: 80px;
}

.sec_message .cnt_box p + p {
	margin-top: 30px;
}

.sec_message .cnt_box p b {
	font-size: 150%;
	text-align: center;
	display: block;
	line-height: 1.5;
}

/* ------------------------------------
  section catch
------------------------------------ */

.sec_catch p {
	font-weight: 700;
	line-height: 1.4;
}

.sec_catch .catch_head {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 60px 0;
}

.sec_catch .catch_head .txt_01 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	font-size: 2.7rem;
}

.sec_catch .catch_head .txt_01 span {
	display: inline-block;
	width: 70px;
	height: 70px;
	position: relative;
	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;
	font-size: 92.5%;
	background: #333;
	border-radius: 100%;
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
	margin: 0 10px 5px 0;
}

.sec_catch .catch_head .txt_01 span::after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: calc(50% - 8px);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 8px 0 8px;
	border-color: #333 transparent transparent transparent;
}

.sec_catch .catch_head .txt_01 span small {
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
}

.sec_catch .catch_head .txt_02 {
	font-size: 3rem;
}

.sec_catch .catch_head .txt_02 span {
	font-size: 4.vw;
	margin-right: 15px;
	letter-spacing: -0.02em;
}

.sec_catch .catch_head .txt_02 b {
	color: #ffffff;
	font-size: 166%;
}

.sec_catch .catch_title {
	background: #ffffff;
	position: relative;
	z-index: 2;
}

.sec_catch .catch_title .txt_01 {
	max-width: 1040px;
	margin: 0 auto;
	height: 170px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}

.sec_catch .catch_title .txt_01 b {
	font-size: 233%;
	color: #00abab;
	line-height: 1.4;
}

.sec_catch .catch_title .img_01 {
	position: absolute;
	top: -40px;
	right: 50%;
	margin-right: -520px;
}

.sec_catch .catch_body {
	position: relative;
	z-index: 3;
	background: #00abab;
	text-align: center;
	padding: 45px 0 90px;
	width: 100%;
}

.sec_catch .catch_body p {
	font-size: 2.8rem;
}

.sec_catch .catch_body p b {
	display: block;
	font-size: 230%;
	color: #ffffff;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin-top: 5px;
}

.sec_catch .catch_body p small {
	display: block;
	font-size: 57%;
	margin-top: 20px;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.sec_catch .catch_body .link_btn {
	margin-top: 50px;
	max-width: 750px;
}

.sec_catch .catch_body .link_btn a {
	height: 90px;
	background: #fff442;
	color: #000000;
	font-size: 3.3rem;
	font-weight: 500;
}

body:not(.mobile) .sec_catch .catch_body .link_btn a:hover {
	background: #000;
	color: #ffffff;
}

/* ------------------------------------
  section comment
------------------------------------ */

.sec_comment .cnt_box {
	margin-bottom: 40px;
}

.sec_comment .cnt_box .box_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.sec_comment .cnt_box .box_head .img {
	width: 16.95%;
	margin-right: 4%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.sec_comment .cnt_box .box_head .tit {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 1.6rem;
	line-height: 1.5;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.sec_comment .cnt_box .box_head .tit b {
	color: #00abab;
	font-size: 187.5%;
	display: block;
	font-weight: 700;
}

.sec_comment .cnt_box .box_head .tit small {
	color: #007d7c;
	display: block;
	margin-top: 10px;
	font-weight: 500;
}

.sec_comment .cnt_box p {
}

.sec_comment .link_btn {
	margin-top: 70px;
}

/* ------------------------------------
  section summit
------------------------------------ */

.sec_summit {
	background: #00abab;
}

.sec_summit .sec_inner {
	max-width: 920px;
	padding: 50px 0 70px;
}

.sec_summit .sec_head {
	text-align: center;
	margin-bottom: 25px;
	color: #ffffff;
	font-size: 2.76rem;
	font-weight: 700;
	line-height: 1.6;
}

.sec_summit .sec_head span {
	display: block;
}

.sec_summit .sec_head .head_txt_01 {
	font-size: 171%;
	display: inline-block;
	position: relative;
	padding: 0 40px 0 55px;
}

.sec_summit .sec_head .head_txt_01::after,
.sec_summit .sec_head .head_txt_01::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 3px;
	background: #ffffff;
	top: 50%;
}

.sec_summit .sec_head .head_txt_01::after {
	right: 0;
	-webkit-transform: translateY(-50%) rotate(-65deg);
	transform: translateY(-50%) rotate(-65deg);
}

.sec_summit .sec_head .head_txt_01::before {
	left: 0;
	-webkit-transform: translateY(-50%) rotate(-115deg);
	transform: translateY(-50%) rotate(-115deg);
}

.sec_summit .sec_head .head_txt_02 {
	font-size: 100%;
}

.sec_summit .sec_head .head_txt_03 {
	font-size: 108.69%;
}

.sec_summit .sec_head .head_txt_04 {
	font-size: 264.49%;
	color: #fff442;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.sec_summit .sec_head .head_txt_05 {
	font-size: 224.63%;
	line-height: 1.3;
}

.sec_summit .sec_body p {
	color: #ffffff;
	font-size: 2.4rem;
	font-weight: 700;
}

.sec_summit .sec_body p + p {
	margin-top: 30px;
}

.sec_summit .sec_body p b {
	color: #fff442;
	font-size: 166%;
	line-height: 1.5;
	display: block;
}

.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_present .present_list.style_01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: calc(100% + 26px);
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -13px 70px;
}

.sec_present .present_list.style_01 .cnt_box {
	width: calc(33.333% - 26px);
	margin: 0 13px 26px;
	padding: 30px 0;
}

.sec_present .present_list.style_01 .cnt_box:nth-child(2),
.sec_present .present_list.style_01 .cnt_box:nth-child(5) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.sec_present .present_list.style_01 .cnt_box:nth-child(3),
.sec_present .present_list.style_01 .cnt_box:nth-child(6) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.sec_present .present_list.style_01 .cnt_box.wide {
	width: calc(100% - 26px);
	margin: 0 13px;
}

.sec_present .present_list.style_01 .cnt_box.wide .img {
	max-width: 488px;
}

.sec_present .present_list.style_01 .cnt_box .tit {
	font-size: 1.6rem;
}

.sec_present .present_list.style_02 .cnt_box {
	padding: 30px 0 70px;
}

.sec_present .present_list.style_02 .cnt_box .tit {
	font-size: 2.2rem;
}

.sec_voice .voice_list {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.sec_voice .voice_cnt {
	width: 46.36%;
	margin-bottom: 35px;
}

.sec_voice .voice_cnt:nth-child(2n) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.sec_voice .att {
	font-size: 1.6rem;
}

.sec_offer .cnt_box {
	margin-top: 40px;
	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: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.sec_offer .cnt_box .attention {
	text-align: center;
	margin-top: 40px;
	width: 100%;
}

.sec_good .cnt_box {
	margin-top: 40px;
}

}

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

.vsp1024 {
	display: none;
}

}

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

.sec_hero .hero_doctor {
	margin-left: -620px;
	left: 50%;
}

.sec_about .cnt_box {
	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: center;
	-ms-flex-align: center;
	align-items: center;
}


.sec_recom .cnt_box {
	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: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.sec_recom .cnt_box .img_wrap {
	width: 34.13%;
}

.sec_recom .cnt_box .check_list {
	width: 65.21%;
}

.sec_voice .voice_cnt p small {
	display: inline-block;
	margin-left: 15px;
}

.sec_good .cnt_box .img {
	position: absolute;
	bottom: 80px;
	right: 65px;
	width: 164px;
}

.sec_teacher .cnt_box .box_head .img {
	width: 22.11%;
	position: absolute;
	top: 60px;
	left: 5.7%;
	max-width: 230px;
}

.sec_summit .sec_body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.sec_summit .sec_body > div {
	width: 55%;
}

.sec_summit .sec_body .img_wrap img {
	max-width: 422px;
	width: 91.7%;
}

}

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

.header_btn {
	right: 25px;
}

.sec_hero .sec_inner {
	padding-left: 10%;
}

}

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

.vpc1024 {
	display: none;
}

.sec_title {
	font-size: 3rem;
}

.sec_hero .sec_inner {
	padding-left: 18%;
}

.sec_hero .hero_doctor {
	margin-left: 0;
	left: 0;
}

.sec_hero .txt_01 {
	font-size: 2rem;
}

.sec_hero .txt_02 {
	font-size: 2.4rem;
}

.sec_hero .txt_03 {
	font-size: 2rem;
}

.sec_intro .link_btn {
	margin-top: 40px;
}

.sec_about .cnt_box .img_wrap {
	margin: 0 auto 40px;
	width: 70%;
	max-width: 400px;
}

.sec_about .cnt_box .txt_wrap .tit {
	text-align: center;
}

.sec_recom .cnt_box .img_wrap {
	margin: 40px auto;
	max-width: 300px;
	width: 50%;
}

.sec_voice .voice_cnt p small {
	display: block;
}

.sec_seminar .seminar_title .title_bar span {
	font-size: 3.8rem;
	padding: 0 10% 0 5%;
}

.sec_seminar .seminar_title .img {
	margin-right: -10%;
	right: 0;
}

.sec_seminar .seminar_title p {
	padding-right: 0%;
	font-size: 1.9rem;
}

.sec_seminar .seminar_schedule li {
	font-size: 1.8rem;
}

.sec_seminar .seminar_schedule .txt_att_01 {
	font-size: 2rem;
}

.sec_seminar .seminar_schedule .schedule_table th,
.sec_seminar .seminar_schedule .schedule_table td {
	font-size: 1.5rem;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(1) {
	width: 21%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(2) {
	width: 13%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(3) {
	width: 22%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(4) {
	width: 27%;
}

.sec_seminar .seminar_schedule .schedule_table th:nth-of-type(5) {
	width: 17%;
}

.sec_good .cnt_box .img {
	margin-top: 30px;
	width: 100%;
	text-align: center;
}

.sec_good .cnt_box .img img {
	max-width: 120px;
	width: 35%;
}

.sec_teacher .cnt_box {
	padding: 60px 5.7%;
}

.sec_teacher .cnt_box .box_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.sec_teacher .cnt_box .box_head .img {
	width: 24%;
	margin-right: 4%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.sec_teacher .cnt_box .box_head .tit {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.sec_catch .catch_head {
	padding: 20px 0 40px;
}

.sec_catch .catch_head .txt_01 {
	font-size: 2.4rem;
}

.sec_catch .catch_title .txt_01 {
	font-size: 2.2rem;
	padding: 0 5%;
}

.sec_catch .catch_title .txt_01 b {
	font-size: 200%;
}

.sec_catch .catch_title .img_01 {
	right: -10%;
	margin-right: 0;
	width: 35%;
	top: -10%;
}

.sec_catch .catch_body {
	padding: 40px 5% 50px;
}

.sec_catch .catch_body p {
	font-size: 2.4rem;
}

.sec_summit .sec_inner {
	padding-top: 70px;
}

.sec_summit .sec_head {
	font-size: 2.4rem;
}

.sec_summit .sec_body .img_wrap {
	width: 50%;
	margin: 0 auto 30px;
	text-align: center;
}

.sec_summit .sec_body p {
	font-size: 2rem;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.02em;
}

}

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



.sec_hero .sec_inner {
	padding: 0 0 0 10%;
}

}

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

.sec_hero .hero_doctor {
	margin-left: -14%;
}

}

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

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

.sec_hero {
	height: 680px;
}

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

.sec_hero .sec_inner {
	margin-left: 12%;
}

.sec_hero .hero_doctor {
	bottom: auto;
	top: 50px;
}

.sec_hero .txt_02 br.vsp767 {
	display: none;
}

.sec_hero .txt_03 strong {
	font-size: 220%;
}

.sec_hero .txt_03 strong br.vsp1024 {
	display: none;
}

}

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

.vpc767 {
	display: none;
}

.sec_inner {
	padding: 1vw 0;
}

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

.sec_arr {
	width: 33px;
	height: 44px;
	top: -30px;
	-webkit-animation: secArr1sp 1.5s infinite;
	animation: secArr1sp 1.5s infinite;
}

.sec_arr::before,
.sec_arr::after {
	border-width: 20px 16px 0 16px;
}

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

.sec .txt_wrap.lead_txt:not(.taC) {
	text-align: left;
}

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

.header_btn {
	width: 120px;
	top: 10px;
	right: 10px;
}

.header_btn a {
	height: 30px;
	font-size: 1.1rem;
}

.footer {
	padding: 20px 15px;
}

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

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

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

.sec_hero .sec_inner {
	padding-left: 0;
}

.sec_hero .hero_doctor {
	width: 60%;
	max-height: 100%;
	max-width: 300px;
}

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

.sec_intro .link_btn {
	margin-top: 30px;
}

.sec_about .cnt_box .txt_wrap .tit {
	font-size: 4.25vw;
}

.sec_diff .diff_table {
	margin: 30px auto 40px;
}

.sec_diff .diff_table .table_head .future {
	padding: 45px 0 0;
	background-position: center 10px;
	background-size: 40px auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

.sec_diff .diff_table .table_head .past {
	padding: 40px 0 0;
	background-position: center 5px;
	background-size: 40px auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

.sec_diff .diff_table .table_head p {
	font-size: 1.6rem;
}

.sec_diff .diff_table .table_body .tit {
	font-size: 1.6rem;
}

.sec_diff .diff_table .table_body p {
	font-size: 1.6rem;
}

.sec_present .att_01 {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.sec_present .present_list.style_01 {
	margin-bottom: 50px;
}

.sec_present .present_list.style_01 .cnt_box {
	margin-bottom: 20px;
}

.sec_present .present_list.style_01 .cnt_box .img {
	width: 60%;
	margin-bottom: 15px;
}

.sec_present .present_list.style_02 {
	margin-bottom: 50px;
}

.sec_present .present_list.style_02 .cnt_box {
	padding: 30px 0 40px;
}

.sec_present .present_list.style_02 .cnt_box + .cnt_box {
	margin-top: 20px;
}

.sec_present .present_list.style_02 .cnt_box .num {
	font-size: 1.2rem;
	line-height: 1.3;
	width: 100px;
	height: 100px;
}

.sec_present .present_list.style_02 .cnt_box .img {
	width: 60%;
	margin-bottom: 15px;
}

.sec_present .present_list.style_02 .cnt_box p {
	margin-top: 20px;
}

.sec_voice .voice_cnt {
	margin-bottom: 30px;
}

.sec_voice .att {
	margin-top: 40px;
}

.sec_offer .cnt_box .attention {
	margin-top: 20px;
}

.sec_seminar .seminar_title .title_bar span {
	font-size: 3rem;
	padding: 10px 10% 10px 5%;
	height: auto;
	display: block;
}

.sec_seminar .seminar_title .img {
	width: 35%;
	margin-right: -5%;
}

.sec_seminar .seminar_title .txt_01 {
	margin-bottom: 10px;
}

.sec_seminar .seminar_title .txt_02 {
	margin-bottom: 15px;
}

.sec_seminar .seminar_title .txt_02 strong {
	font-size: 190%;
}

.sec_seminar .seminar_schedule .tit {
	margin: 30px 0 20px;
}

.sec_seminar .seminar_schedule .txt_att_02 {
	margin-top: 10px;
}

.sec_seminar .seminar_schedule .txt_att_03 {
	display: block;
}

.sec_seminar .seminar_schedule .link_btn {
	margin-top: 40px;
}

.sec_seminar .seminar_schedule .schedule_table td small {
	font-size: 85%;
	display: block;
	margin-bottom: 5px;
}

.sec_good .cnt_box {
	padding: 30px 5.7% 40px;
}

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

.sec_teacher .cnt_box .box_head {
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.sec_teacher .cnt_box .box_head .tit b {
	margin-bottom: 5px;
}

.sec_teacher .cnt_box .box_head .tit small {
	font-weight: 500;
}

.sec_teacher .cnt_box p + p {
	margin-top: 20px;
}

.sec_message .cnt_box {
	padding-bottom: 40px;
}

.sec_message .cnt_box p + p {
	margin-top: 20px;
}

.sec_catch .catch_head {
	padding: 20px 0px;
}

.sec_catch .catch_head .txt_01 {
	font-size: 2rem;
	text-align: left;
}

.sec_catch .catch_head .txt_01 span {
	width: 60px;
	height: 60px;
}

.sec_catch .catch_head .txt_02 {
	font-size: 2.4rem;
}

.sec_catch .catch_head .txt_02 span {
	margin-right: 5px;
}

.sec_catch .catch_head .txt_02 b {
	font-size: 150%;
}

.sec_catch .catch_title .txt_01 {
	font-size: 1.8rem;
}

.sec_catch .catch_title .img_01 {
	right: -5%;
	width: 45%;
}

.sec_catch .catch_body {
	padding: 30px 5% 40px;
}

.sec_catch .catch_body p b {
	font-size: 170%;
}

.sec_catch .catch_body p small {
	font-size: 80%;
	letter-spacing: 0.02em;
}

.sec_catch .catch_body .link_btn {
	margin-top: 30px;
}

.sec_comment .cnt_box {
	margin-bottom: 20px;
}

.sec_comment .cnt_box .box_head .img {
	width: 22%;
}

.sec_comment .cnt_box .box_head .tit b {
	font-size: 150%;
}

.sec_comment .cnt_box .box_head .tit small {
	margin-top: 3px;
}

.sec_comment .cnt_box p {
	margin-top: 0px;
}

.sec_comment .link_btn {
	margin-top: 40px;
}

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

.sec_summit .sec_head {
	margin-bottom: 30px;
}

.sec_summit .sec_head .head_txt_04 {
	font-size: 200%;
	line-height: 1.4;
}

.sec_summit .sec_head .head_txt_05 {
	font-size: 180%;
	line-height: 1.4;
}

}

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

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

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

.sec .check_list li {
	font-size: 3.5vw;
	padding-left: 8vw;
}

.sec .check_list li::before {
	width: 5vw;
	height: 5vw;
	top: 1vw;
}

.sec .link_btn a {
	height: 14vw;
	max-height: 75px;
	font-size: 4.5vw;
}

.sec_present .present_list.style_02 .cnt_box .tit {
	font-size: 4vw;
}

.sec_voice .voice_cnt p {
	font-size: 4.25vw;
}

.sec_offer .cnt_box .tit {
	font-size: 4.25vw;
	margin-bottom: 15px;
}

.sec_seminar .seminar_head {
	padding-top: 14vw;
	padding-bottom: 10vw;
}

.sec_seminar .seminar_head .txt_01 {
	font-size: 4.25vw;
}

.sec_seminar .seminar_head .txt_03 {
	font-size: 4.5vw;
}

.sec_seminar .seminar_head li span {
	font-size: 3.25vw;
}

.sec_seminar .seminar_title .sec_inner {
	padding-top: 6vw;
	padding-bottom: 8vw;
}

.sec_seminar .seminar_title .title_bar span {
	font-size: 5vw;
	padding: 4vw 25% 4vw 8%;
}

.sec_seminar .seminar_title p {
	font-size: 4.25vw;
}

.sec_seminar .seminar_title .txt_02 small {
	margin-top: 15px;
	font-size: 3vw;
}

.sec_seminar .seminar_title .txt_03 {
	font-size: 3.3vw;
}

.sec_seminar .seminar_schedule .tit span {
	width: auto;
	min-width: 200px;
	font-size: 4vw;
}

.sec_seminar .seminar_schedule li {
	font-size: 4vw;
}

.sec_seminar .seminar_schedule .txt_att_01 {
	font-size: 4vw;
	margin-bottom: 40px;
}

.sec_seminar .seminar_schedule .schedule_table th,
.sec_seminar .seminar_schedule .schedule_table td {
	font-size: 3.25vw;
}

.sec_teacher .cnt_box .box_head .tit {
	font-size: 3.25vw;
}

.sec_catch .catch_head .txt_01 {
	font-size: 4.25vw;
}

.sec_catch .catch_head .txt_02 {
	font-size: 4.5vw;
}

.sec_catch .catch_title .txt_01 {
	font-size: 3.75vw;
}

.sec_catch .catch_body p {
	font-size: 4vw;
}

.sec_catch .catch_body .link_btn a {
	height: 18vw;
	font-size: 5.5vw;
}

.sec_comment .cnt_box .box_head .tit {
	font-size: 3.25vw;
}

.sec_summit .sec_head {
	font-size: 4.75vw;
	margin-bottom: 5vw;
}

.sec_summit .sec_head .head_txt_01 {
	padding: 0 7vw 0 8vw;
}

.sec_summit .sec_head .head_txt_01::after,
.sec_summit .sec_head .head_txt_01::before {
	width: 7vw;
}

.sec_summit .sec_body .img_wrap {
	margin-bottom: 5vw;
}

.sec_summit .sec_body p {
	font-size: 4vw;
}

.sec_summit .sec_body p + p {
	margin-top: 5vw;
}

}

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

.sec .check_list li + li {
	margin-top: 15px;
}

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

.sec_hero .sec_inner {
	padding: 0px 0 0px 0;
}

.sec_hero .txt_01 {
	font-size: 3.5vw;
	margin-bottom: 5%;
}

.sec_hero .txt_02 {
	font-size: 3.75vw;
	margin-bottom: 5%;
}

.sec_hero .txt_03 {
	font-size: 3vw;
	margin-bottom: 8%;
}

.sec_hero .txt_03 strong {
	margin-bottom: 5%;
}

.sec_diff .diff_table .table_head p {
	font-size: 3vw;
}

.sec_diff .diff_table .table_body .tit {
	font-size: 3.25vw;
}

.sec_diff .diff_table .table_body p {
	font-size: 3.25vw;
}

}

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

.sec_hero {
	min-height: 0px;
}

.sec_hero .link_btn a {
	height: 12vw;
	font-size: 4.75vw;
}

.sec_seminar .seminar_schedule .schedule_table th,
.sec_seminar .seminar_schedule .schedule_table td {
	font-size: 2.5vw;
	font-weight: 500;
}

}

@-webkit-keyframes flash {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes flash {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@-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 */



/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
	.pc { display: none !important; }
	.sp { display: block !important; }
}

table.check{
	width:100%;
	border-collapse:collapse;
	margin:-10px 0 30px 0;
	}
	table.check th{
	width:25px;
	font-size:100%;
	line-height:150%;
	padding: 20px 0 5px 0;
	color:#00abab;
	vertical-align:top;
	text-align:left;
	}
	table.check td{
	font-size:4vw;
	line-height:1.8;
	font-weight:bold;
	padding:20px 0 5px 0;
	vertical-align:top;
	color:#444;
	border-bottom:dotted 1px #999999;

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



	.photo img{width:100%;}
	@media screen and (min-width:769px){
	#container{
	width:1200px;
	margin:0 auto;
	padding:0 0 0 0;
	background-color:#fff;
	box-shadow:0 0 10px rgba(0,0,0,0.1);
	}
	.subhead{
	margin:0 0 45px 0;
	font-size:36px;
	letter-spacing:1px;
	}
	.mark img{width:60px;}
	.contents{width:640px;margin:0 auto 90px auto;}
	table.check th{
	width:35px;
	font-size:18px;
	padding:px 0 5px 0;
	}
	table.check td{
	font-size:18px;
	padding: px 0 5px 0;
	}

	

	#container{
		margin:0 0 0 0;
		padding:0;
		}
		.subhead{
		margin:0 0 25px 0;
		padding:0;
		font-size:150%;
		font-weight:900;
		line-height:150%;
		text-align:center;
		font-family: "Noto Sans Japanese";
		}
		.photo{
			margin:0 0 0 0;
			padding:0;
			text-align:center;
			}}

		@media screen and (min-width:769px){
			#container{
			width:1200px;
			margin:0 auto;
			padding:0 0 0 0;
			background-color:#fff;
			box-shadow:0 0 10px rgba(0,0,0,0.1);
			}
			.subhead{
			margin:0 0 45px 0;
			font-size:36px;
			letter-spacing:1px;
			}
			.photo{margin:0 0 0 0;}

			
		}


		/* solid003 */
		.button_solid003{
			padding-top: 30px;
		}
		
		.button_solid003 a {
			position: relative;
			display: flex;
			justify-content: space-around;
			align-items: center;
			margin: 0 auto;
			max-width: 400px;
			padding: 0;
			color: #FFF;
			transition: 0.3s ease-in-out;
			font-weight: 600;
			background: #00B900;
			filter: drop-shadow(0px 2px 4px #ccc);
			border-radius: 3px;
			border-radius: 50px;
			overflow: hidden;
			font-size: 25px;
			line-height: 25px;
			padding-right: 70px;
		}
		.button_solid003 a:before{
		content: '';
			display: block;
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			left: -100%;
			background-image: linear-gradient( 
		130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
			-webkit-transition: 0.5s;
			transition: 0.6s;
		}
		.button_solid003 a:hover:before {
			left: 100%;
		}
		.button_solid003 a:after {
			position: absolute;
			top: 50%;
			right: 20px;
			transition: 0.2s ease-in-out;
			font-weight: 900;
			transform: translateY(-50%);
		}
		
		@media screen and (max-width:480px){
			.content{
				padding-top: 0px;	
			}
		s
			.button_solid003 a{
				padding-right: 10px;
			}
		}


			
		.video h3 , .video p ,video iframe{
			display: inline-block;
			position: relative;
			left: -100px;
		}
		
		.video1{
			display: inline-block;
			position: relative;
			left: -100px;
		}
		
		.sec_teacher .cnt_box .box_head {
			border-bottom: 0px solid #dcf2ed;
			padding-bottom: 20px;
			margin-bottom: 20px;
		
		}
		
		
		
		
		@media screen and (max-width: 1024px) {
		
			.video{
				position: absolute;
			}
		
			.video h3 , .video p{
				display: inline-block;
				position:relative;
				left:0
			}
		
			.video2{
				display: block;
			}
			
			.video1{
				display: inline-block;
				position: relative;
				left: 0px;
			}
			.video1{
				width: auto;
				height: auto;
			}
		}


.new_pc{
	padding-left: 24%;
	padding-right: 24%;
}



/* ------------------------------------
  section intro
------------------------------------ */

.sec_intro .intro_video {
    margin: 0 auto;
    max-width: 720px;
}

.sec_intro .intro_video iframe {
    border-radius: 15px;
}

.sec_intro .intro_video p {
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}

.sec_intro .link_btn {
    margin-top: 60px;
}

/* ------------------------------------
  section about
------------------------------------ */

.sec_about .cnt_box .txt_wrap .tit {
    color: #00abab;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.6;
}

.sec_about .cnt_box .txt_wrap p {
    margin-bottom: 0;
}




/* solid004 */
.button_solid004{
	padding-top: 30px;
}

.button_solid004 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 50%;
    padding: 10px 15px;
    color: black;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #fbbf2d;
    border-radius: 8px;
    border-bottom: solid 5px #888800;
	font-size: 25px;
}
.button_solid004 a:hover {
    border-bottom: solid 2px #888800;
    transform: translateY(3px);
}

@media screen and (max-width: 959px) {
	.button_solid004 a{
		font-size: 25px;
		width: 60%;
	}
}
@media screen and (max-width: 480px) {
	.button_solid004 a{
		font-size: 20px;
		width: 80%;
		padding: 0px 0px;
	}}



	.present_list2023{
		height: 400px;
	}

	@media screen and (max-width: 480px) {
		.present_list2023{
			height: auto;
		}}
			
		
.left{
	text-align: left;
	padding-left: 20%;
	padding-right: 20%;
}

@media screen and (max-width: 480px) {
	.left{
		text-align: left;
		padding-left: 10%;
		padding-right: 10%;
	}
}

