@charset "UTF-8";

/* ------------------------------------
  キレイライン矯正
  Date: 2021-03-08
------------------------------------ */

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

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

html {
	font-size: 62.5%;
}

html.wf-active body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

body {
	font-size: 1.4rem;
	line-height: 1;
	font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	color: #444;
	background: #fff;
}

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

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

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

a:visited {
	color: #444;
}

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

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

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

.wrapper::after {
	z-index: 1000;
	/*content: "";*/
	display: block;
	width: 100%;
	height: 100vh;
	background: #f5f5f5;
	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;
}

.content {
	max-width: 640px;
	margin: 0 auto;
	background: #fff;
	overflow: hidden;
}

.taC {
	text-align: center;
}

.taR {
	text-align: right;
}

.bold {
	font-weight: 700;
}

.w_01 {
	width: 86.6%;
	max-width: 650px;
	margin: 0 auto;
}

.w_02 {
	width: 73%;
	max-width: 550px;
	margin: 0 auto;
}

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

body:not(.mobile) a:hover {
	opacity: .65;
}
.sp-on {
	display: none;
}
/* ------------------------------------
  text
  background
------------------------------------ */

.txt_blue {
	color: #00a9e0;
}

.txt_yellow {
	color: #fff442;
}

.txt_size_01 {
	font-size: 120%;
}

.txt_maker {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffff00));
	background: linear-gradient(transparent 60%, #ffff00 60%);
	padding: 0 0.2rem;
}

.txt_maker_thin {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #ffff00));
	background: linear-gradient(transparent 80%, #ffff00 80%);
	padding: 0 0.2rem;
}

.bg_stripe_01 {
	background: url(../img/bg_stripe_01.webp) center center/40px auto repeat;
}

.bg_stripe_02 {
	background: url(../img/bg_stripe_02.webp) center center/40px auto repeat;
}

.bg_light_blue {
	background-color: #e4f8ff;
}

.bg_blue {
	background-color: #00a9e0;
}

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

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

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

/* ------------------------------------
  Slick Slider
------------------------------------ */

.slick-arr {
	position: absolute;
	top: 45%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	z-index: 2;
	cursor: pointer;
	font-size: 1.4rem;
	text-align: center;
	background: rgba(170, 170, 170, 0.85);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slick-arr::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25%;
	height: 25%;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
}

.slick-arr.next {
	right: 3%;
}

.slick-arr.next::after {
	-webkit-transform: translate(-60%, -50%) rotate(-45deg);
	transform: translate(-60%, -50%) rotate(-45deg);
}

.slick-arr.prev {
	left: 0;
}

.slick-arr.prev::after {
	-webkit-transform: translate(-30%, -50%) rotate(135deg);
	transform: translate(-30%, -50%) rotate(135deg);
}

body:not(.mobile) .slick-arr:hover {
	opacity: .65;
}

.js-slider-doc {
	overflow: hidden;
	width: 112%;
	margin: 5.33333vw -8% 0 -4%;
}

.js-slider-doc .slick-list {
	overflow: visible;
    padding-right: 21.5%;
    padding-left: 4%;
	z-index: 1;
}

.js-slider-doc .slick-slide {
	margin-right: 6.66667vw;
}

.js-slider-doc .slick-slide img {
	display: block;
	width: 100%;
}

.js-slider-clinic {
	overflow: hidden;
	width: 110%;
	margin: 9.33333vw -8% 9.33333vw -2%;
}

.js-slider-clinic .slick-list {
	overflow: visible;
	padding-right: 8%;
	padding-left: 2%;
	z-index: 1;
}

.js-slider-clinic .slick-slide {
	margin-right: 3.33333vw;
}

.js-slider-clinic .slick-slide img {
	display: block;
	width: 100%;
}

/* ------------------------------------
  下部固定ボタン
------------------------------------ */

.floating_bnr {
	z-index: 100;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}

.floating_bnr a {
	display: block;
	text-align: center;
	padding-bottom: env(safe-area-inset-bottom);
	background: #00a9e0;
	background: -webkit-gradient(linear, left top, right top, from(#00a9e0), to(#30bff0));
	background: linear-gradient(to right, #00a9e0 0%, #30bff0 100%);
}

.floating_bnr img {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}

/* ------------------------------------
  pagetop
------------------------------------ */

.pagetop_btn {
	cursor: pointer;
	position: fixed;
	bottom: 30px;
	right: 5px;
	z-index: 200;
	background: rgba(0, 169, 224, 0.75);
	width: 30px;
	height: 30px;
}

.pagetop_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30%;
	height: 30%;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	-webkit-transform: translate(-50%, -25%) rotate(-135deg);
	transform: translate(-50%, -25%) rotate(-135deg);
}

.pagetop_btn.on-footer {
	position: absolute;
	bottom: 100% !important;
}

body:not(.mobile) .pagetop_btn:hover {
	opacity: 1;
	background: #0096c7;
}

/* ------------------------------------
  Fotoer
------------------------------------ */

.footer {
	position: relative;
	background-color: #00a9e0;
	padding: 1px 0;
    padding-bottom: 60px;
}

.footer_inner {
	padding: 5.33333vw 10px;
}

.footer_logo {
	display: block;
	text-align: center;
	margin: 0 0 4.6875vw;
}

.footer_copyright {
	display: block;
	color: #FFF;
	margin: 0 0 3.125vw;
	font-size: 2.66667vw;
	text-align: center;
	line-height: 1.5;
}

.footer_nav {
	text-align: center;
}

.footer_nav li {
	display: inline-block;
	font-size: 2.4vw;
}

.footer_nav li::after {
	content: "　|　";
	color: #6dcdff;
}

.footer_nav li:last-child::after {
	display: none;
}

.footer_nav a {
	color: #fff;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

body:not(.mobile) .footer_nav a:hover {
	color: #fff;
	text-decoration: underline;
	opacity: 0.65;
}

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

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

.sec_inner {
	margin: 0 auto;
	width: 88%;
	max-width: 650px;
}

.sec_head {
	position: relative;
	background: url(../img/bg_stripe_01.webp) center center/40px auto repeat;
	margin-bottom: 4.66667vw;
}

.sec_head::before,
.sec_head::after {
	content: "";
	width: 97.4%;
	height: 1px;
	position: absolute;
	background: #00a9e0;
}

.sec_head::before {
	top: 1.33333vw;
	left: 2.6%;
}

.sec_head::after {
	bottom: 1.33333vw;
	right: 2.6%;
}

.sec_head.blue {
	background-image: url(../img/bg_stripe_02.webp);
}

.sec_head.blue::before,
.sec_head.blue::after {
	background: #88dbf2;
}

.sec_head .head_tit {
	z-index: 2;
	position: relative;
}

.sec_head .head_pic {
	z-index: 1;
	position: absolute;
}

.sec_tit_bar {
	background: #00a9e0;
}

.sec_tit_stripe {
	background: url(../img/bg_stripe_01.webp) center center/40px auto repeat;
}

.sec_tit_stripe2 {
	background: url(../img/bg_stripe_02.webp) center center/40px auto repeat;
}

.sec_tit_fuki {
	background: #00a9e0;
	border-radius: 10px;
	position: relative;
	margin-bottom: 2.66667vw;
}

.sec_tit_fuki::after {
	content: "";
	position: absolute;
	bottom: -2.66667vw;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 2.66667vw 3.6vw 0 3.6vw;
	border-color: #00a9e0 transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.sec_tit_fuki.thin {
	border-radius: 50px;
}

.sec_tit_fuki.thin::after {
	bottom: -1.6vw;
	border-width: 1.6vw 1.46667vw 0 1.46667vw;
}

.sec_tit_fuki.white {
	background: #ffffff;
	border: 1px solid #00a9e0;
	text-align: center;
	margin-bottom: 5.33333vw;
}

.sec_tit_fuki.white::after {
	z-index: 1;
}

.sec_tit_fuki.white::before {
	content: "";
	position: absolute;
	bottom: calc(-2.66667vw + 1px);
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 2.66667vw 3.6vw 0 3.6vw;
	border-color: #ffffff transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 2;
}

.sec p {
	font-size: 3.33333vw;
	line-height: 1.6;
	letter-spacing: -0.02em;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hanging-punctuation: allow-end;
}

.sec .txt_wrap p {
	margin: 5.33333vw 0;
}

.sec .txt_wrap p small.att {
	font-size: 75%;
	display: block;
	line-height: 1.5;
}

.sec .txt_wrap p b {
	font-weight: 500;
}

.sec .img_round img {
	border-radius: 10px;
}

.sec .youtube_wrap {
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
	border: 1px solid #00a9e0;
}

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

.sec .sorry_wrap {
	margin: 6.66667vw auto 8vw;
}

.sec .sorry_wrap .box {
	padding: 3.33333vw 4% 3.33333vw 22%;
	margin-bottom: 4vw;
	position: relative;
	background: #f8f8f8;
}

.sec .sorry_wrap .box_tit {
	text-align: center;
	padding-right: 22%;
}

.sec .sorry_wrap .box_img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 22%;
}

.sec .sorry_wrap .box p {
	font-size: 3.2vw;
	line-height: 1.7;
}

.sec .sorry_wrap li {
	font-size: 2.66667vw;
	line-height: 1.7;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hanging-punctuation: allow-end;
}

.sec .sorry_wrap li::before {
	content: "・";
}

.sec .sorry_wrap li a {
	color: #00a9e0;
	text-decoration: underline;
}

.sec .check_list li {
	padding-left: 5.33333vw;
	background: url(../img/icon_chk_02.webp) left 1vw/14px auto no-repeat;
	font-size: 3.46667vw;
	line-height: 1.5;
	margin: 2.66667vw 0;
	font-weight: 500;
}

.sec .box {
	position: relative;
}

.sec .box.box_round {
	border-radius: 10px;
}

.sec .box.box_blue_line {
	border: 1px solid #00a9e0;
}

.sec .box_img_tp,
.sec .box_img_tp img {
	border-radius: 10px 10px 0 0;
}

.sec .box_img_btm,
.sec .box_img_btm img {
	border-radius: 0 0 10px 10px;
}

.sec .box_inner {
	max-width: 550px;
	width: 84.8%;
	margin: 0 auto;
}

.sec .box_tit.tit_round {
	border: 1px solid #00a9e0;
	background: #e4f8ff;
	border-radius: 50px;
	display: inline-block;
}

.sec .box.plan {
	margin-top: 14.66667vw;
}

.sec .box.plan .box_tit {
	position: absolute;
	top: -8.4vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 2;
	width: 79.47%;
}

.sec .box.plan .fee {
	border-radius: 10px 10px 0 0;
}

.sec .box.plan_01 .pic {
	position: absolute;
	top: 32%;
	right: 4%;
	width: 38%;
}

.sec .box.plan_01 .txt_wrap {
	margin: 8vw auto;
}

.sec .box.plan_02 .wrap_01 {
	width: 92%;
	margin: 2.66667vw auto;
	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;
}

.sec .box.plan_02 .wrap_01 .box.txt {
	width: 61%;
	padding: 4vw 0.66667vw 4vw 2vw;
	z-index: 1;
	position: relative;
}

.sec .box.plan_02 .wrap_01 .box.txt p {
	font-weight: 500;
	margin: 0;
	letter-spacing: -0.08em;
}

.sec .box.plan_02 .wrap_01 .pic {
	z-index: 2;
	position: relative;
	width: 48%;
}

.sec .box.plan_02 .wrap_01 .pic img {
	width: 126%;
	max-width: 126%;
	margin-left: -6%;
}

.sec .box.plan_02 .wrap_02 .txt p {
	margin: 0;
	display: inline-block;
	font-weight: 700;
	font-size: 4.26667vw;
}

.sec .box.plan_02 .wrap_02 .txt p b {
	font-weight: 700;
}

.sec .box.plan_02 .wrap_02 .txt .fee {
	display: inline-block;
	position: relative;
}

.sec .box.plan_02 .wrap_02 .txt .fee small {
	position: absolute;
	display: inline-block;
	top: 100%;
	font-size: 58.3%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 200%;
	text-align: center;
	letter-spacing: 0.02em;
	font-weight: 400;
}

.sec .box.plan_02 .wrap_02 .txt + P {
	margin-top: 8vw;
}

.sec .box.plan_03 .box_inner {
	padding-bottom: 2.66667vw;
}

.sec .box.plan_03 .txt_wrap .wrap_01 {
	position: relative;
	padding-right: 32%;
}

.sec .box.plan_03 .txt_wrap .wrap_01 .pic {
	position: absolute;
	width: 38%;
	top: 0;
	right: -4%;
}

.sec .box.plan_04 .box_inner {
	padding: 6.66667vw 0 2.66667vw;
}

.sec .box.plan_04 .txt_wrap .wrap_01 {
	position: relative;
	padding-left: 43%;
}

.sec .box.plan_04 .txt_wrap .wrap_01 .pic {
	position: absolute;
	width: 39%;
	bottom: 0;
	left: -4%;
}

.sec .box.plan_04 .txt_wrap .wrap_01 p {
	margin-top: 0;
}

.sec .box.faq {
	margin-bottom: 4.66667vw;
}

.sec .box.faq .box_tit {
	position: relative;
	height: 15vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 3.53333vw;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: #00a9e0;
	font-weight: 500;
	padding: 4% 10% 4% 14%;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hanging-punctuation: allow-end;
}

.sec .box.faq .box_tit.multiline { 
	height: 22.5vw;
}

.sec .box.faq .box_tit:not(.active) {
	border-radius: 10px;
}

.sec .box.faq .box_tit::before {
	content: "Q";
	font-size: 145%;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 4vw;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.sec .box.faq .box_tit::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 4vw;
	width: 2vw;
	height: 2vw;
	border-right: 1px solid #00a9e0;
	border-bottom: 1px solid #00a9e0;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

body:not(.mobile) .sec .box.faq .box_tit:hover {
	opacity: 0.75;
	cursor: pointer;
}

.sec .box.faq .box_tit.active::after {
	-webkit-transform: translateY(-50%) rotate(-135deg);
	transform: translateY(-50%) rotate(-135deg);
}

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

.sec_hero {
	position: relative;
	z-index: 100;
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
	width: 100%;
	height: 100vh;
	min-height: 177.8vw;
	position: relative;
	overflow: hidden;
	background: url(../img/hero_visual_sp.webp) center center/cover no-repeat;
}

.sec_hero .sec_inner {
	padding: 0;
	width: 100%;
}

.sec_hero .hero_point > div {
	z-index: 2;
	position: absolute;
	width: 32.65%;
	top: 6.25vw;
}

.sec_hero .hero_point .point_01 {
	left: 7.8125vw;
}

.sec_hero .hero_point .point_02 {
	right: 7.8125vw;
}

.sec_hero .hero_txt {
	z-index: 2;
	position: absolute;
	width: 100%;
	bottom: 33.71%;
	left: 0;
}

.sec_hero .hero_txt .txt_02 {
	position: absolute;
	top: 2vw;
	right: 6vw;
	width: 26.66%;
}

.sec_hero .hero_btm {
	z-index: 1;
	position: absolute;
	bottom: 0;
	left: 0;
}

.sec_hero .hero_btm .txt {
	position: absolute;
	top: -13.33333vw;
	height: 0;
	width: 25.33%;
	padding-top: 25.33%;
}

.sec_hero .hero_btm .txt_01 {
	left: 10px;
}

.sec_hero .hero_btm .txt_01 p {
	font-size: 3.33333vw;
}

.sec_hero .hero_btm .txt_01 p b {
	font-size: 180%;
}

.sec_hero .hero_btm .txt_02 {
	right: 10px;
}

.sec_hero .hero_btm .txt_02 p {
	font-size: 2.4vw;
}

.sec_hero .hero_btm .txt_02 p b {
    font-size: 250%;
    line-height: 1;
}

.sec_hero .hero_btm .txt_02 p small {
	font-size: 75%;
	display: block;
	text-align: right;
}

.sec_hero .hero_btm .txt > div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background: #ffffa4;
	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;
	text-align: center;
	-webkit-box-shadow: 0 0 0 0.66667vw rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 0.66667vw rgba(255, 255, 255, 0.5);
}

.sec_hero .hero_btm .txt > div p {
	line-height: 1.4;
}

.sec_hero .hero_btm .txt > div p span {
	color: #ff6464;
	font-weight: 700;
}

.sec_hero .hero_btm .txt > div p span.fee {
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
}

.sec_hero .hero_btm .txt > div p span.fee small {
	position: absolute;
	font-weight: 300;
	color: #444;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 200%;
	font-size: 75%;
	display: block;
}

.sec_hero.mv2 .hero_point > div {
	top: 3.90625vw;
}

.sec_hero.mv2 .hero_txt {
	bottom: 29.5%;
}

.sec_hero.mv2 .hero_txt .txt_01 small {
	text-align: center;
	line-height: 1.6;
	font-size: 1.875vw;
	display: block;
}

.sec_hero.mv2 .hero_btm .txt {
	top: -12.1875vw;
	width: 25%;
	padding-top: 25%;
}

/* ------------------------------------
  section：movie
------------------------------------ */

.sec_movie {
	position: relative;
	background-color: #66ccff;
}

.sec_movie .sec_inner {
	/*padding: 11.33333vw 0 0;*/
	padding: 3.33333vw 0 3.33333vw 0;
	width: 100%;
}
.sec_movie .sec_inner .inner {
	width: 80%;
	margin: auto;
}
.sec_movie .img01,
.sec_movie .img02 {
	margin:1em 0; 
}
.sec_movie .movie_cnt {
	position: relative;
}

.sec_movie .movie_cnt .movie {
	z-index: 1;
	position: relative;
	overflow: hidden;
	/*border: 1px solid #5fd6ff;*/
	padding-top: 56.25%;
	height: 0;
	width: 100%;
	background: url(../img/movie_thumb.webp) center center/cover no-repeat;
}

.sec_movie .movie_cnt .movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100%;
	width: auto;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.sec_movie .movie_cnt .txt {
	position: absolute;
	z-index: 2;
}

.sec_movie .movie_cnt .txt_01 {
	top: -3.46667vw;
	left: -2vw;
	width: 25.84%;
}

.sec_movie .movie_cnt .txt_02 {
	top: -3.46667vw;
	right: -2vw;
	width: 25.84%;
}

.sec_movie .movie_cnt .txt_03 {
	bottom: -3.46667vw;
	left: -2vw;
	width: 26.46%;
}

.sec_movie .movie_cnt .txt_04 {
	bottom: -3.46667vw;
	right: -2vw;
	width: 26.46%;
}

.sec_movie .attention_txt {
	position: absolute;
	top: 1.33333vw;
	left: 0;
	width: 100%;
	text-align: center;
	color: #444;
	font-size: 1.73333vw;
	font-weight: 300;
	letter-spacing: 0.02em;
}

/* ------------------------------------
  section CTA まずは一度
------------------------------------ */

.cv_wrap {
	position: relative;
}

.cv_wrap .anim {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.cv_wrap .cv_po {
	position: absolute;
	top: -6vw;
	width: 17.8%;
	z-index: 2;
}

.cv_wrap .cv_po_txt {
	margin-bottom: 2em;
}

.cv_wrap .cv_po.po_01 {
	left: -3.33333vw;
}

.cv_wrap .cv_po.po_02 {
	right: -3.33333vw;
}

.cv_wrap .cv_btn {
	position: relative;
	z-index: 1;
}

.cv_wrap .cv_btn a {
	display: block;
	background-color: #0081ab;
	border-radius: 10px;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border: 1px solid #0081ab;
}

.cv_wrap .cv_btn a::before {
	content: "";
	position: absolute;
	z-index: 1;
	width: calc(100% + 2px);
	height: 100%;
	top: -4px;
	left: -1px;
	background: #00a9e0;
	border-radius: 10px;
}

.cv_wrap .cv_btn a::after {
	z-index: 2;
	content: "";
	position: absolute;
	top: 50%;
	right: 4vw;
	width: 2.66667vw;
	height: 2.66667vw;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}

body:not(.mobile) .cv_wrap .cv_btn a:hover {
	opacity: 1;
}

body:not(.mobile) .cv_wrap .cv_btn a:hover::before {
	background: #0096c7;
}

.cv_wrap .cv_btn a img {
	z-index: 2;
	position: relative;
	border-radius: 10px;
}

.cv_wrap p {
	line-height: 1.5;
	margin-top: 2.66667vw;
}

.cv_wrap p small {
	font-size: 75%;
	display: block;
}

.sec_cta {
	padding-bottom: 5.33333vw;
}

/* ------------------------------------
  section はじめに
------------------------------------ */

.sec_c0 {
	padding: 0 0 9.33333vw;
}
.attention_txt {
	color: #444;
	font-size: 1.73333vw;
	font-weight: 300;
	letter-spacing: 0.02em;
	margin: 10px 10px 0 10px;
	line-height: 1.5;
}

/* ------------------------------------
  section 今すぐにでも矯正
------------------------------------ */

.sec_c1 {
	padding: 9.33333vw ​0 9.33333v;
}

.sec_c1 .sec_head .head_pic {
	bottom: 0;
	right: 10px;
	width: 40.4%;
}

.sec_c1 .comic_list li {
	margin-top: 4vw;
}

/* ------------------------------------
  section もう大丈夫
------------------------------------ */

.sec_c2 .sec_tit {
	margin-bottom: 6.66667vw;
}

.sec_c2 .wrap_01 {
	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;
}

.sec_c2 .wrap_01 .txt_box_fuki {
	width: 53.53%;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	padding-bottom: 5%;
	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;
	background: #ffffff url(../img/bg_frame_01.webp) center center/100% 100% no-repeat;
}

.sec_c2 .wrap_01 .txt_box_fuki .tit {
	color: #00a9e0;
	font-size: 5.06667vw;
}

.sec_c2 .wrap_01 .txt_box_fuki li {
	margin-top: 4.66667vw;
	font-size: 4vw;
	background: url(../img/icon_chk_01.webp) left 1.2vw/4.5vw auto no-repeat;
	padding-left: 8vw;
	line-height: 1.4;
}

.sec_c2 .wrap_01 .pic {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 40.76%;
}

.sec_c2 .wrap_01 .pic img {
	margin-left: -6%;
}

/* ------------------------------------
  section ここがすごい
------------------------------------ */

.sec_c3 {
	padding-top: 5.33333vw;
}

.sec_c3 .sec_head .head_pic {
	bottom: 0;
	left: 3.33333vw;
	width: 28.93%;
}

.sec_c3 .point_cnt {
	position: relative;
	margin-top: 8vw;
	padding: 0 0 5.33333vw;
	text-align: center;
}

.sec_c3 .point_cnt .icon {
	position: absolute;
	top: -4vw;
	left: -4vw;
	width: 21.53%;
}

.sec_c3 .point_cnt .tit {
	margin-bottom: 3.33333vw;
}

.sec_c3 .point_cnt p {
	margin: 3.33333vw -5% 0;
}

.sec_c3 .point_cnt p small {
	font-size: 75%;
	display: inline-block;
}

.sec_c3 .point_cnt p small.att {
	display: block;
	line-height: 1.5;
}

.sec_c3 .point_cnt.point_02 .img {
	position: relative;
}

.sec_c3 .point_cnt.point_02 .img .fuki {
	position: absolute;
	display: block;
	width: 39.63%;
	top: 0;
	right: -4vw;
}

.sec_c3 .point_cnt.point_03 .img {
	position: relative;
}

.sec_c3 .point_cnt.point_03 .img .fuki {
	position: absolute;
	display: block;
	width: 38.54%;
	top: -2.4vw;
	left: -2.4vw;
}

/* ------------------------------------
  section 金額がたかいのでは？
------------------------------------ */

.sec_c4 {
	padding-top: 6.66667vw;
}

.sec_c4 .fuki_tit {
	text-align: center;
	margin-bottom: 2.66667vw;
}

.sec_c4 .txt_wrap p {
	margin-right: -5%;
	margin-left: -5%;
}

/* ------------------------------------
  section ポイント
------------------------------------ */

.sec_c5 {
	position: relative;
	padding-top: 16.8vw;
}

.sec_c5 .sec_head_ico {
	position: absolute;
	top: -3.73333vw;
	left: 50%;
	width: 23%;
	height: 0;
	padding-top: 23%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.sec_c5 .sec_head_ico img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.sec_c5 .sec_head_01 {
	position: relative;
	margin-bottom: 8vw;
}

.sec_c5 .sec_head_01 .head_pic {
	position: absolute;
	width: 25.86%;
	bottom: 0;
	left: 2vw;
}

.sec_c5 .txt_wrap.txt_01 p small {
	font-size: 77%;
}

.sec_c5 .box {
	position: relative;
}

.sec_c5 .box > div {
	z-index: 1;
	position: relative;
}

.sec_c5 .box_tit {
	position: absolute;
	top: -6.13333vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 2;
	width: 86.61%;
}

.sec_c5 .box.box_01 {
	margin-top: 8vw;
}

.sec_c5 .box.box_02 {
	margin-top: 13.33333vw;
}

/* ------------------------------------
  section お手頃プラン
------------------------------------ */

.sec_c6 {
	position: relative;
	padding: 8vw 0 0;
}

.sec_c6 .sec_head .head_pic {
	top: -4.66667vw;
	right: 0.66667vw;
	width: 26%;
}

.sec_c6 .box.whitening {
	position: relative;
	margin-top: 8vw;
}

.sec_c6 .box.whitening .img_wrap {
	position: relative;
	margin: 4vw auto 5.33333vw;
}

.sec_c6 .box.whitening .img_wrap .fuki_01 {
	position: absolute;
	bottom: -2.66667vw;
	left: -5.33333vw;
	width: 31.45%;
}

.sec_c6 .box.whitening .img_wrap .fuki_02 {
	position: absolute;
	top: -2.66667vw;
	right: -2.66667vw;
	width: 29.45%;
}

.sec_c6 .box.whitening .txt_wrap.wrap_01 p {
	margin: 2.66667vw -5%;
}

.sec_c6 .box.whitening .txt_wrap.wrap_02 {
	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_c6 .box.whitening .txt_wrap.wrap_02 > p {
	width: 56%;
	margin: 0;
}

.sec_c6 .box.whitening .txt_wrap.wrap_02 > p + p {
	width: 40%;
}

.sec_c6 .box.whitening .txt_wrap.wrap_03 p {
	margin-right: -4%;
	margin-left: -4%;
}

.sec_c6 .box.whitening .toku_wrap {
	margin: 12vw 0 6.66667vw;
}

.sec_c6 .box.whitening .toku_wrap p {
	margin: 4vw 0;
	line-height: 1.5;
}

.sec_c6 .box.whitening .toku_wrap p small {
	margin: 0 -8%;
}

.sec_c6 .box.whitening .toku_wrap .box_po {
	position: absolute;
	top: -9.33333vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 79.8%;
}
.sec_c6 .plan_01 .txt_wrap p:last-child {
	margin-bottom: 2vw;
}
.sec_c6 .box.plan_01 .txt_wrap {
	margin-bottom: 2vw;
}
/* ------------------------------------
  section 症例
------------------------------------ */

.sec_c7 {
	position: relative;
    margin-top: 30px;
}

.sec_c7 .case_list {
	margin-bottom: 8vw;
}

.sec_c7 .case_after {
	margin-top: 10.66667vw;
	position: relative;
}

.sec_c7 .case_after::before {
	content: "";
	position: absolute;
	top: -6.66667vw;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4vw 4vw 0 4vw;
	border-color: #00a9e0 transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.sec_c7 .case_fee .box_inner {
	max-width: 100%;
}

.sec_c7 .case_fee ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 4vw 0;
	width: 90%;
}

.sec_c7 .case_fee li {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #ffffff;
}

.sec_c7 .case_fee li div {
	width: 15.33333vw;
	font-size: 2.93333vw;
	line-height: 1;
}

.sec_c7 .case_fee li div span {
	display: block;
	background: #ffffff;
	border-radius: 50px;
	text-align: center;
	color: #00a9e0;
	padding: 1.33333vw 0;
	width: 14.66667vw;
	font-weight: 700;
}

.sec_c7 .case_fee li div small {
	margin: 1.2vw -8% 0 -10%;
	display: block;
	text-align: center;
}

.sec_c7 .case_fee li p {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 1.33333vw;
	font-size: 4.4vw;
	font-weight: 700;
	line-height: 1;
	letter-spacing: normal;
}

.sec_c7 .case_fee li p span {
	line-height: 1;
	letter-spacing: -0.08em;
}

.sec_c7 .case_fee li p span.fee {
	display: inline-block;
	position: relative;
}

.sec_c7 .case_fee li p span.fee small {
	position: absolute;
	font-weight: 300;
	color: #444;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 250%;
	display: block;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0;
}

.sec_c7 .case_fee li p b {
	font-size: 166%;
	line-height: 0.5;
}

.sec_c7 .case_fee li p small {
	font-size: 58%;
	display: block;
	font-weight: 400;
}

.sec_c7 .case_fee li p small.small-content {
	display: contents;
}


.sec_c7 .case_fee li p small:not(.att) {
	margin: 1.06667vw -15% 0 -15%;
	text-align: center;
}

.sec_c7 .case_fee li.lg {
	width: 55%;
}

.sec_c7 .case_fee li.lg + li {
	width: 45%;
}

.sec_c7 .case_fee li:nth-child(n + 3) {
	width: 100%;
	margin-top: 8px;
    margin-bottom: 10px;
}

.sec_c7 .case_fee li.lg2 p {
	line-height: 1.4;
	margin-right: -5%;
}

.sec_c7 .case_fee li.lg2 p span.fee {
	display: inline;
}

.sec_c7 .case_fee li.lg2 p small:not(.att) {
	position: static;
	margin: 0;
	display: inline;
	width: auto;
	text-align: left;
	-webkit-transform: none;
	transform: none;
}

.sec_c7 .case_attention {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 2.66667vw 0 4vw;
}

.sec_c7 .case_attention p,
.sec_c7 .case_attention li {
	font-size: 2.66667vw;
	line-height: 1.7;
}

.sec_c7 .case_attention p a,
.sec_c7 .case_attention li a {
	color: #00a9e0;
	text-decoration: underline;
}

.sec_c7 .case_attention ul {
	margin: 1.33333vw 0;
}

.sec_c7 .case_attention li::before {
	content: "・";
}

.sec_c7 .box {
	margin: 4vw 0 8vw;
	padding-top: 10.66667vw;
}

.sec_c7 .box + .box {
	margin-top: 12vw;
}

.sec_c7 .box .box_tit {
    width: 80%;
    position: absolute;
    top: -4.26667vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    padding: 0 6vw;
}

.sec_c7 .box .box_tit.lg {
	width: 84.6%;
}

.sec_c7 .box .case_attention {
	border-radius: 0 0 10px 10px;
}

.sec_c7 .txt_wrap.tp {
	padding-left: 30%;
	position: relative;
}

.sec_c7 .txt_wrap.tp .pic {
	position: absolute;
	width: 30.7%;
	bottom: 0;
	left: -3%;
}

.sec_c7 .txt_wrap.tp p {
	margin: 0;
}

.sec_c7 .txt_wrap.tp p + p {
	margin-top: 2.66667vw;
}

.sec_c7 .txt_wrap.wrap_01 {
	margin: -2vw 0 8vw;
}

.sec_c7 .txt_wrap.wrap_01 p small:not(.att) {
	font-size: 75%;
}

.sec_c7 .txt_wrap.wrap_01 p small.att {
	display: block;
	margin-top: 1.33333vw;
}

.sec_c7 .more_wrap {
	margin: 5.33333vw 0;
}

.sec_c7 .more_btn {
	position: relative;
	z-index: 1;
}

.sec_c7 .more_btn span,
.sec_c7 .more_btn a {
	cursor: pointer;
	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: 1px solid #bbb;
	border-bottom: 3px solid #e2e2e2;
	border-radius: 10px;
	position: relative;
	background: #ffffff;
	height: 13.33333vw;
	font-size: 4vw;
	text-align: center;
	font-weight: 500;
}

.sec_c7 .more_btn span::after,
.sec_c7 .more_btn a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 4vw;
	width: 2.66667vw;
	height: 2.66667vw;
	border-right: 1px solid #444;
	border-bottom: 1px solid #444;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

body:not(.mobile) .sec_c7 .more_btn span:hover,
body:not(.mobile) .sec_c7 .more_btn a:hover {
	opacity: 1;
	background: #e2e2e2;
}

.sec_c7 .more_btn.close span::after,
.sec_c7 .more_btn.close a::after {
	-webkit-transform: translateY(-50%) rotate(-135deg);
	transform: translateY(-50%) rotate(-135deg);
}

/* ------------------------------------
  section なぜ？
------------------------------------ */

.sec_c8 {
	position: relative;
	padding-top: 6.66667vw;
	padding-bottom: 2.66667vw;
}

.sec_c8 .fuki_tit {
	text-align: center;
	margin-bottom: 2.66667vw;
}

.sec_c8 .sec_head {
	margin-bottom: 0;
}

.sec_c8 .bg-white {
	background-color: #fff;
}
.sec_c8 .img_00 {
		margin: 1em 2em;
	text-align: center;
	}
.sec_c8 .img_wrap.img_01 {
	position: relative;
	margin: 5.33333vw 0;
}

.sec_c8 .img_wrap.img_01 .fuki {
	position: absolute;
	bottom: 10px;
	left: 10px;
	color: #000000;
	margin: 0;
	line-height: 1.4;
	font-size: 2.5vw;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8), -1px 1px 1px rgba(255, 255, 255, 0.8), 1px -1px 1px rgba(255, 255, 255, 0.8), -1px -1px 1px rgba(255, 255, 255, 0.8), 1px 0px 1px rgba(255, 255, 255, 0.8), 0px 1px 1px rgba(255, 255, 255, 0.8), -1px 0px 1px rgba(255, 255, 255, 0.8), 0px -1px 1px rgba(255, 255, 255, 0.8);
}

.sec_c8 .img_wrap.img_02 {
	position: relative;
	/*padding-left: 21.5%;*/
	margin: 5.33333vw 0 10.66667vw;
}

.sec_c8 .img_wrap.img_02 .pic_03 {
	position: absolute;
	bottom: -4vw;
	left: -5.33333vw;
	width: 34.6%;
}
.sec_c8 .box {
	position: relative;
	padding-top: 10px;
}

.sec_c8 .slide_wrap {
	margin-bottom: 1em;
}
.sec_c8 .box .box_left{
	width: 69%;
}
.sec_c8 .box .box_left p{
	font-size: 1.2rem;
}
.sec_c8 .box .box_left .img-s {
	width: 80%;
}
.sec_c8 .box .pic {
	width: 43%;
	position: absolute;
	bottom: 0;
    right: -7%;
}
.sec_c8 .txt_wrap p.txt {
	margin-bottom: 2.66667vw;
}

.sec_c8 .txt_wrap p.txt + p {
	margin-top: 0;
}

.sec_c8 .txt_wrap p .att {
	display: block;
	margin-top: 2.66667vw;
}

.sec_c8 .info_wrap {
	margin: 9.33333vw 0 6.66667vw;
	overflow: hidden;
}

.sec_c8 .info_wrap .img {
	width: 40%;
	float: right;
	margin: 0 0 4vw 4vw;
}

.sec_c8 .info_wrap .txt .name {
	font-size: 4vw;
	color: #00a9e0;
	font-weight: 500;
	margin-bottom: 4vw;
}

.sec_c8 .info_wrap .txt .name small {
	font-size: 80%;
	display: block;
	margin-top: 0.66667vw;
}

.sec_c8 .info_wrap .txt .name b {
	font-size: 140%;
	font-weight: 700;
	display: block;
	margin-top: 3.33333vw;
}

.sec_c8 .info_wrap .txt ul {
	margin-top: 3.33333vw;
}

.sec_c8 .info_wrap .txt li p {
	line-height: 1.5;
}

.sec_c8 .info_wrap .txt li p small {
	font-size: 80%;
}

.sec_c8 .slide_wrap .tit {
	margin-bottom: 5.33333vw;
}

.sec_c8 .slide_wrap .slider p {
	font-size: 2.4vw;
	line-height: 2;
	letter-spacing: -0.02em;
	margin: 0 -10% 0 0;
	text-align: center;
}

.sec_c8 .slide_wrap .slider p b {
	font-size: 120%;
}

/* ------------------------------------
  section インタビュー動画
------------------------------------ */

.sec_c9 {
	position: relative;
	padding: 9.33333vw 0;
}

.sec_c9 .sec_head .head_pic {
	top: -3.2vw;
	right: 2.66667vw;
	width: 23%;
}

/* ------------------------------------
  section 10代～30代に支持
------------------------------------ */

.sec_c10 .sec_head {
	margin-bottom: 0;
}

.sec_c10 .sec_inner {
	margin-bottom: 8.66667vw;
}

.sec_c10 .head_img {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 17.33333vw;
}

.sec_c10 .head_img > div {
	width: 33.333%;
}

.sec_c10 .head_img .txt_att {
	position: absolute;
	bottom: -11.33333vw;
	max-width: 650px;
	width: 86.6%;
	left: 6.7%;
	line-height: 1.3;
}

.sec_c10 .head_img .txt_att small {
	font-size: 83.3%;
}

.sec_c10 .sec_tit_fuki {
	border-radius: 50px;
	margin-bottom: -2.66667vw;
}

.sec_c10 .sec_tit_fuki::after {
	bottom: auto;
	top: 100%;
	border-width: 8px 8px 0 8px;
}

.sec_c10 .txt_wrap p b span {
	font-size: 12px;
}

/* ------------------------------------
  section 何故はじめるの？
------------------------------------ */

.sec_c11 .txt_01 {
	margin-bottom: 18px;
}

.sec_c11 .sec_tit_fuki .pic {
	position: absolute;
	width: 24%;
	bottom: 0;
	right: 3.8%;
}

.sec_c11 .txt_wrap p small.att {
	display: block;
	margin-top: 2.66667vw;
}

.sec_c11 .txt_wrap .txt p {
	margin: 0;
}

.sec_c11 .txt_wrap .txt p + p {
	margin-top: 4vw;
}

.sec_c11 .cnt_01 .txt_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 13.33333vw 0 6vw;
}

.sec_c11 .cnt_01 .txt_wrap .img {
	position: relative;
	width: 33%;
}

.sec_c11 .cnt_01 .txt_wrap .img .fuki {
	position: absolute;
	top: -10vw;
	left: -2.66667vw;
	width: 75.23%;
}

.sec_c11 .cnt_01 .txt_wrap .txt {
	padding-left: 3.33333vw;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.sec_c11 .cnt_01 .box_tit {
	position: absolute;
	top: -10.66667vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 90%;
}

.sec_c11 .cnt_02 .txt_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 15.33333vw;
}

.sec_c11 .cnt_02 .txt_wrap .img {
	width: 33%;
	position: relative;
}

.sec_c11 .cnt_02 .txt_wrap .img .fuki {
	position: absolute;
	top: -12vw;
	right: -2.66667vw;
	width: 88.3%;
}

.sec_c11 .cnt_02 .txt_wrap .txt {
	padding-right: 3.33333vw;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.sec_c11 .cnt_02 .box_po {
	position: absolute;
	top: -6vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 58.6%;
}

.sec_c11 .cnt_02 .box_inner {
	position: relative;
	width: 90%;
	margin: 6.66667vw auto;
}

.sec_c11 .cnt_02 .box_inner .pic {
	position: absolute;
    bottom: -10%;
	right: 0;
	width: 30%;
	z-index: 1;
	text-align: right;
}

.sec_c11 .cnt_02 .box_inner p {
	margin: 4vw 0;
	letter-spacing: -0.08em;
	z-index: 2;
	position: relative;
}

.sec_c11 .cnt_02 .box_inner p:first-of-type {
	margin-right: -5%;
}

.sec_c11 .cnt_03 {
	margin: 12vw auto 13.33333vw;
}

.sec_c11 .cnt_03 .txt_wrap {
	margin: 0 -8%;
}

.sec_c11 .cnt_03 .txt_wrap p {
	line-height: 2.2;
	letter-spacing: -0.06em;
	margin: 6.66667vw auto;
}

/* ------------------------------------
  section なぜそんなに人気なの？
------------------------------------ */

.sec_c12 .head_img {
	width: 50.13%;
	margin: 0 auto;
	text-align: center;
}

.sec_c12 .box {
	margin: 6.66667vw auto 9.33333vw;
}

.sec_c12 .box_num {
	position: absolute;
	top: -4vw;
	left: -4vw;
	width: 21.5%;
}

.sec_c12 .box_inner {
	padding: 5.33333vw 0;
}

.sec_c12 .box .img_wrap {
	background: #f8f8f8;
	border-radius: 10px;
	position: relative;
}

.sec_c12 .box .img_wrap .pic {
	position: relative;
	z-index: 1;
}

.sec_c12 .box .img_wrap .fuki,
.sec_c12 .box .img_wrap .po,
.sec_c12 .box .img_wrap .img {
	position: absolute;
	z-index: 2;
}

.sec_c12 .box .txt_wrap p {
	margin-right: -4%;
}

.sec_c12 .box .txt_wrap p small {
	font-size: 80%;
}

.sec_c12 .box .txt_wrap p small.att {
	display: block;
	margin-top: 2.66667vw;
}

.sec_c12 .box .txt_wrap.attention {
	border-top: 1px solid #ccc;
	padding-top: 2.66667vw;
}

.sec_c12 .box .txt_wrap.attention p {
	font-weight: 300;
	font-size: 2.66667vw;
	margin: 0;
}

.sec_c12 .box.reason_01 .fuki {
	top: -1.73333vw;
	left: -0.66667vw;
	width: 45.27%;
}

.sec_c12 .box.reason_01 .po {
	width: 37%;
	right: 2%;
	width: 37%;
}

.sec_c12 .box.reason_01 .po_01 {
	top: 2%;
}

.sec_c12 .box.reason_01 .po_02 {
	bottom: 2%;
}

.sec_c12 .box.reason_02 .fuki {
	top: 0;
	right: -0.66667vw;
	width: 35%;
}

.sec_c12 .box.reason_02 .img {
	width: 100%;
	left: 0;
	top: 0;
}

.sec_c12 .box.reason_03 .img_wrap,
.sec_c12 .box.reason_04 .img_wrap,
.sec_c12 .box.reason_05 .img_wrap {
	margin-top: 5.33333vw;
}

.sec_c12 .box.reason_03 .fuki,
.sec_c12 .box.reason_04 .fuki,
.sec_c12 .box.reason_05 .fuki {
	top: -9.33333vw;
	left: -2.66667vw;
	width: 42%;
}

.sec_c12 .box.reason_07 .img_wrap {
	margin-top: 8vw;
}

.sec_c12 .box.reason_07 .fuki {
	top: -10.66667vw;
	left: -2.66667vw;
	width: 66%;
}

/* ------------------------------------
  section 本当にキレイになる？
------------------------------------ */

.sec_c13 {
	padding-top: 6.66667vw;
}
.c13_list {
	border: 3px solid #33ccff;
}
.c13_list h3 {
	background-color: #33ccff;
	padding: 3em 0;
	text-align: center;
}
.c13_list h3 img {
	width: 80%;
}
.c13_list small {
	font-size: 0.8em;
}
.c13_list p {
	line-height: 1.5;
}
.c13_list .inner {
	width: 90%;
	margin: auto;
}
.c13_list p img {
	display: block;
	margin: auto;
}
.c13_list .box {
	position: relative;
}
.c13_list .box .box_left
{
	width: 64%;
}
.c13_list .box .pic {
	width: 48%;
	position: absolute;
	bottom: 0;
    right: -8%;
}
.sec_c13 .sec_head {
	margin-bottom: 0;
}

.sec_c13 .head_pic {
	bottom: 0;
	right: 3.33333vw;
	width: 27.4%;
}
.sec_c13 .img03 {
	width: 78%;
	margin: 2em auto;
}
.sec_c13 .txt_wrap p small.att {
	display: block;
	line-height: 1.5;
	margin-top: -2.66667vw;
}

.sec_c13 .txt_wrap p.lg {
	margin-left: -8%;
	margin-right: -8%;
}

/* ------------------------------------
  section お気軽に初回検診へ
------------------------------------ */

.sec_c14 .sec_head {
	margin-top: 4vw;
}

.sec_c14 .txt_wrap.wrap_01 {
	position: relative;
	padding-left: 26.66667vw;
}

.sec_c14 .txt_wrap.wrap_01 .img {
	position: absolute;
	top: 2%;
	left: -3.33333vw;
	width: 31%;
}

.sec_c14 .txt_wrap.wrap_01 p {
	margin: 0 -5% 0 0;
}

.sec_c14 .txt_wrap.wrap_01 p + p {
	margin-top: 2.66667vw;
}

.sec_c14 .txt_wrap p small.att {
	display: block;
	line-height: 1.5;
}

/* ------------------------------------
  section お越しください
------------------------------------ */

.sec_c15 {
	margin-bottom: 10.66667vw;
}

.sec_c15 .sec_head {
	margin-top: 25.33333vw;
}

.sec_c15 .sec_head .head_pic {
	top: -22.66667vw;
	left: 0;
}

.sec_c15 .clinic_map {
	margin: 8vw 0 6.66667vw;
	position: relative;
}

.sec_c15 .clinic_map .fuki {
	position: absolute;
	top: -6%;
	left: 0;
	width: 57.5%;
}

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

.sec_c15 .clinic_list_01 > div {
	width: 30.7%;
}

.sec_c15 .clinic_cnt {
	background: #e4f8ff;
	border-radius: 10px;
}

.sec_c15 .clinic_cnt img {
	border-radius: 10px 10px 0 0;
}

.sec_c15 .clinic_cnt p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #00a9e0;
	font-weight: 700;
	text-align: center;
	font-size: 3.46667vw;
	height: 8vw;
}

.sec_c15 .txt_wrap p small.att {
	display: block;
	margin-top: 2.66667vw;
}

.sec_c15 .txt_wrap .sec_tit_fuki {
	position: relative;
}

.sec_c15 .txt_wrap .sec_tit_fuki .pic {
	position: absolute;
	bottom: 0;
	left: -4vw;
	width: 36.3%;
	z-index: 2;
}
/* ------------------------------------
  section 初回検診の流れとメリット
------------------------------------ */

.sec_c16 .txt_wrap.wrap_01 {
	position: relative;
	padding-left: 36%;
}

.sec_c16 .txt_wrap.wrap_01 .img {
	position: absolute;
	bottom: 0;
	left: -3.2vw;
	width: 35.7%;
}

.sec_c16 .txt_wrap.wrap_01 p {
	margin: 4vw 0;
}

.sec_c16 .txt_wrap.wrap_02 {
	margin: 6.66667vw auto;
}

.sec_c16 .txt_wrap.wrap_02 p small:not(.att) {
	font-size: 60%;
}

.sec_c16 .txt_wrap.wrap_02 p small.att {
	display: block;
	line-height: 1.5;
	margin-top: -2.66667vw;
}

.sec_c16 .cv_wrap {
	margin: 9.33333vw auto 8vw;
}

.sec_c16 .box {
	margin-top: 9.33333vw;
}

.sec_c16 .box_img {
	position: relative;
}

.sec_c16 .box_img .fuki {
	position: absolute;
}

.sec_c16 .box_tit {
	position: relative;
}

.sec_c16 .box_tit .num {
	position: absolute;
	width: 21.6%;
	top: -5.33333vw;
	left: -4vw;
}

.sec_c16 .box_att {
	position: absolute;
	top: 100%;
	right: 0;
}

.sec_c16 .box_att small {
	display: block;
	margin-top: 1.33333vw;
	font-size: 65%;
}

.sec_c16 .box.step_01 .box_img .fuki {
	width: 39.5%;
	top: -4.6%;
	left: 7.7%;
}

.sec_c16 .box.step_02 .box_img .fuki {
	width: 39.3%;
	bottom: 10%;
	right: -3%;
}

.sec_c16 .box.step_03 .box_img .fuki {
	width: 39%;
	top: -12%;
	right: 1%;
}

.sec_c16 .box.step_04 .box_img .fuki {
	width: 46.45%;
	top: -8.2%;
	right: 23.1%;
}

.sec_c16 .box.step_05 .box_img .fuki {
	width: 39.5%;
	top: -9.8%;
	left: 2.3%;
}

/* ------------------------------------
  section 気持ちよくご利用
------------------------------------ */

.sec_c17 .sec_head {
	margin-top: 4vw;
}

.sec_c17 .txt_wrap.wrap_01 {
	position: relative;
	text-align: center;
	margin-bottom: 10.66667vw;
}

.sec_c17 .txt_wrap.wrap_01 .check_list {
	display: inline-block;
	margin: 0 auto;
}

.sec_c17 .txt_wrap.wrap_01 .check_list li {
	text-align: left;
}

.sec_c17 .txt_wrap.wrap_01 p {
	margin-bottom: 0;
}

.sec_c17 .box.box_02 {
	margin-bottom: 12vw;
}

.sec_c17 .box.box_02 .box_tit {
	position: absolute;
	top: -5.33333vw;
	left: 0;
}

.sec_c17 .box.box_02 .box_inner {
	padding-top: 10.66667vw;
}

/* ------------------------------------
  section どの提携クリニックに行けばいいの？
------------------------------------ */

.sec_c18 .txt_wrap.wrap_01 {
	position: relative;
	padding-left: 43%;
}

.sec_c18 .txt_wrap.wrap_01 .img {
	position: absolute;
	width: 46%;
	left: -4.6%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.sec_c18 .txt_wrap.wrap_01 p {
	margin: 2.66667vw -5% 2.66667vw 0;
}

.sec_c18 .txt_wrap p small.att {
	display: block;
	line-height: 1.5;
}

/* ------------------------------------
  section 料金プラン
------------------------------------ */

.sec_c19 {
	margin: 6.66667vw auto 10.66667vw;
}

.sec_c19 .head_pic {
	bottom: 0;
	left: 2.4%;
	width: 33.73%;
}

.sec_c19 .txt_wrap p small.att {
	line-height: 1.5;
	display: block;
}

.sec_c19 .toku_wrap p {
	margin: 4vw 0;
	line-height: 1.5;
}

.sec_c19 .toku_wrap p small {
	font-size: 80%;
}

.sec_c19 .toku_wrap.toku_01 .txt_wrap {
	margin: 6.66667vw auto;
	position: relative;
	padding-left: 36.9%;
}

.sec_c19 .toku_wrap.toku_01 .txt_wrap .pic {
	position: absolute;
	bottom: 0;
	width: 43%;
	left: -6.15%;
}

.sec_c19 .toku_wrap.toku_01 .txt_wrap p {
	margin-right: -5%;
}

.sec_c19 .toku_wrap.toku_03 {
	margin: 9.33333vw 0 6.66667vw;
}

.sec_c19 .toku_wrap.toku_03 .box_po {
	position: absolute;
	top: -9.33333vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 79.8%;
}

.sec_c19 .toku_wrap.toku_03 .txt_wrap + .txt_wrap {
	border-top: 1px solid #ccc;
	margin-top: 5.33333vw;
}

.sec_c19 .toku_wrap.toku_03 .txt_wrap .wrap_01 {
	position: relative;
	padding-right: 44%;
}

.sec_c19 .toku_wrap.toku_03 .txt_wrap .wrap_01 .pic {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
}

.sec_c19 .toku_wrap.toku_04 .txt_wrap {
	margin: 5.33333vw auto;
}

.sec_c19 .toku_wrap.toku_04 .txt_wrap .wrap_01 {
	position: relative;
	padding-right: 45%;
}

.sec_c19 .toku_wrap.toku_04 .txt_wrap .wrap_01 .pic {
	position: absolute;
	top: 0;
	right: -7%;
	width: 50%;
}

.sec_c19 .cv_wrap {
	margin-top: 12vw;
}

/* ------------------------------------
  section Q&A
------------------------------------ */

.sec_c20 {
	margin: 8vw auto 10.66667vw;
}

.sec_c20 .head_pic {
	bottom: 0;
	right: 3.2%;
	width: 28.9%;
}

/* ------------------------------------
  section 最後に
------------------------------------ */

.sec_c21 {
	margin: 9.33333vw auto;
}

.sec_c21 .head_pic {
	bottom: 0;
	right: 1%;
	width: 40.6%;
}

.sec_c21 .cv_wrap {
	margin-top: 10.66667vw;
}

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

/* ------------------------------------
  LINE 誘導版
------------------------------------ */

.type_line .floating_bnr a {
	background: #00c200;
}

.type_line .cta_line {
	padding-bottom: 4px;
}

.type_line .cta_line .anim {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	border: 1px solid transparent;
}

.type_line .cta_line .cv_btn {
	position: relative;
	z-index: 1;
}

.type_line .cta_line .cv_btn a {
	display: block;
	background-color: #067c00;
	border-radius: 10px;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border: 1px solid #067c00;
	padding-bottom: 4px;
}

.type_line .cta_line .cv_btn a::before {
	content: "";
	position: absolute;
	z-index: 1;
	width: calc(100% + 2px);
	height: 100%;
	top: -4px;
	left: -1px;
	background: #00c200;
	border-radius: 10px;
}

.type_line .cta_line .cv_btn a::after {
	z-index: 2;
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 4vw;
	width: 2.66667vw;
	height: 2.66667vw;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}

body:not(.mobile) .type_line .cta_line .cv_btn a:hover {
	opacity: 1;
}

body:not(.mobile) .type_line .cta_line .cv_btn a:hover::before {
	background: #00a900;
}

.type_line .cta_line .cv_btn a img {
	z-index: 2;
	position: relative;
	border-radius: 10px;
	margin-top: -4px;
}

.type_line .cta_line .cv_btn + .att {
	margin-top: 2.66667vw;
}

.type_line .cta_line .cta_arr {
	position: relative;
	text-align: center;
}

.type_line .cta_line .cta_arr span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	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;
	text-align: center;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.type_line .cta_line .cta_arr.tp span {
	-webkit-animation-name: arrDown;
	animation-name: arrDown;
}

.type_line .cta_line .cta_arr.btm span {
	-webkit-animation-name: arrUp;
	animation-name: arrUp;
}

.type_line .cta_line .cta_arr.btm span img {
	-webkit-transform: scale(-1, -1);
	transform: scale(-1, -1);
}

.type_line .cta_line .cta_arr.arr_01 {
	height: 14.0625vw;
}

.type_line .cta_line .cta_arr.arr_01 span img {
	height: auto;
	width: 57.3%;
}

.type_line .cta_line .cta_arr.arr_02 {
	height: 10.9375vw;
}

.type_line .cta_line .cta_arr.arr_02 span img {
	height: auto;
	width: 7.3%;
}

.type_line .cta_line_01 {
	padding: 2.34375vw 0 4.6875vw;
}

.type_line .cta_line_01 .img_wrap {
	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;
}

.type_line .cta_line_01 .img_wrap .pic {
	width: 33.333%;
}

.type_line .cta_line_01 .img_wrap .fuki {
	width: 42.7%;
	margin-right: -4.0625vw;
}

.type_line .cta_line_02 {
	padding: 7.8125vw 0 0;
}

.type_line .cta_line_02 .img_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.type_line .cta_line_02 .img_wrap .pic {
	width: 53.7%;
	margin-left: -3.125vw;
}

.type_line .cta_line_02 .img_wrap .fuki {
	width: 50.6%;
	padding-top: 9%;
	margin-right: -3.125vw;
}

.type_line .cta_line_03 .cv_wrap {
	margin: 0 auto;
}

.type_line .sec_c22 {
	padding-top: 8.75vw;
}

.type_line .sec_c22 .head_wrap {
	text-align: center;
}

.type_line .sec_c22 .head_wrap small {
	display: block;
	width: 31.25%;
	margin: 0 auto;
}

.type_line .sec_c22 .wrap_01 {
	margin-bottom: 6.25vw;
}

.type_line .sec_c22 .wrap_01 figcaption {
	font-size: 1.875vw;
	width: 78.125%;
	margin: 0 auto;
}

.type_line .sec_c22 .wrap_02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 4.6875vw;
}

.type_line .sec_c22 .wrap_02 .txt_wrap {
	width: 61%;
}

.type_line .sec_c22 .wrap_02 .txt_wrap p {
	margin: 0;
	font-size: 3.125vw;
	line-height: 1.8;
}

.type_line .sec_c22 .wrap_02 figure {
	width: 33%;
}

.type_line .sec_c23 {
	margin-bottom: 12.5vw;
}

.type_line .sec_c23 .sec_head {
	position: relative;
}

.type_line .sec_c23 .sec_head .head_pic {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 33%;
}

.type_line .sec_c23 .txt_wrap .txt_01 {
	margin: -2.66667vw -5%;
	text-align: center;
}

.type_line .sec_c23 .cta_line {
	margin: -5.33333vw auto;
}

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

.vsp767 {
	display: none;
}

.js-slider-doc .slick-slide {
    margin-right: 6.66667vw;
}
}

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

.bg_stripe_01 {
	background-size: 80px auto;
}

.bg_stripe_02 {
	background-size: 80px auto;
}

.js-slider-doc {
	margin-top: 40px;
}

.js-slider-doc .slick-slide {
    margin-right: 50px;
}

.js-slider-clinic {
	width: 112%;
	margin: 70px -8% 70px -4%;
}

.js-slider-clinic .slick-slide {
	margin-right: 25px;
}

.floating_bnr {
	width: 640px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.floating_bnr img {
	height: 60px;
	width: auto;
}

.pagetop_btn {
	bottom: 60px;
	right: 30px;
	width: 50px;
	height: 50px;
}

.footer_inner {
	padding: 40px 10px;
}

.footer_logo {
	margin: 0 0 30px;
}

.footer_copyright {
	margin: 0 0 20px;
	font-size: 19px;
}

.footer_nav li {
	font-size: 1.4rem;
}

.sec_head {
	margin-bottom: 35px;
	background-size: 80px auto;
}

.sec_head::before {
	top: 10px;
}

.sec_head::after {
	bottom: 10px;
}

.sec_tit_fuki {
	margin-bottom: 20px;
	border-radius: 20px;
}

.sec_tit_fuki::after {
	border-width: 20px 27px 0 27px;
	bottom: -20px;
}

.sec_tit_fuki.thin::after {
	border-width: 12px 22px 0 22px;
	bottom: -12px;
}

.sec_tit_fuki.white {
	margin-bottom: 35px;
}

.sec_tit_fuki.white::before {
	border-width: 20px 27px 0 27px;
	bottom: -19px;
}

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

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

.sec .txt_wrap p small.att {
	font-size: 54.16%;
}

.sec .img_round img {
	border-radius: 20px;
}

.sec .sorry_wrap {
	margin: 50px auto 60px;
}

.sec .sorry_wrap .box {
	padding: 25px 4% 25px 22%;
	margin-bottom: 30px;
}

.sec .sorry_wrap .box p {
	font-size: 2rem;
}

.sec .sorry_wrap li {
	font-size: 1.4rem;
}

.sec .check_list li {
	padding-left: 40px;
	background-position: left 5px;
	background-size: 28px auto;
	font-size: 2.2rem;
	margin: 20px 0;
}

.sec .box.box_round {
	border-radius: 20px;
}

.sec .box_img_tp,
.sec .box_img_tp img {
	border-radius: 20px 20px 0 0;
}

.sec .box_img_btm,
.sec .box_img_btm img {
	border-radius: 0 0 20px 20px;
}

.sec .box.plan {
	margin-top: 100px;
}

.sec .box.plan .box_tit {
	top: -63px;
}

.sec .box.plan .fee {
	border-radius: 20px 20px 0 0;
}

.sec .box.plan_01 .pic {
	top: 30%;
	right: 4%;
	width: 40%;
}

.sec .box.plan_01 .txt_wrap {
	margin: 50px auto;
}

.sec .box.plan_02 .wrap_01 {
	margin-bottom: 0;
}

.sec .box.plan_02 .wrap_01 .box.txt {
	width: 52%;
	padding: 20px 10px 20px 15px;
}

.sec .box.plan_02 .wrap_01 .box.txt p {
	font-size: 2rem;
}

.sec .box.plan_02 .wrap_02 .txt p {
	font-size: 3rem;
}

.sec .box.plan_02 .wrap_02 .txt + P {
	margin-top: 60px;
}

.sec .box.plan_03 .box_inner {
	padding-bottom: 20px;
}

.sec .box.plan_03 .txt_wrap .wrap_01 .pic {
	width: 36%;
	right: -5%;
}

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

.sec .box.plan_04 .box_inner {
	padding: 50px 0 20px;
}

.sec .box.faq {
	margin-bottom: 35px;
}

.sec .box.faq .box_tit {
	font-size: 2.2rem;
	height: 110px;
}

.sec .box.faq .box_tit.multiline {
	height: 140px;
}

.sec .box.faq .box_tit:not(.active) {
	border-radius: 20px;
}

.sec .box.faq .box_tit::before {
	left: 30px;
}

.sec .box.faq .box_tit::after {
	right: 30px;
	width: 20px;
	height: 20px;
}

.sec_hero {
	height: 1106px;
	min-height: 1106px;
	background-image: url(../img/hero_visual_pc.webp);
}

.sec_hero .hero_point > div {
	top: 40px;
}

.sec_hero .hero_point .point_01 {
	left: 50px;
}

.sec_hero .hero_point .point_02 {
	right: 50px;
}

.sec_hero .hero_txt .txt_02 {
	top: 15px;
	right: 45px;
}

.sec_hero .hero_btm .txt {
	top: -80px;
}

.sec_hero .hero_btm .txt_01 p {
	font-size: 25px;
}

.sec_hero .hero_btm .txt_02 p {
	font-size: 18px;
}

.sec_hero .hero_btm .txt_02 p small {
	font-size: 66%;
}

.sec_hero .hero_btm .txt > div {
	-webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

.sec_hero .hero_btm .txt > div p span.fee small {
	font-size: 66%;
	bottom: -15px;
}

.sec_hero.mv2 {
	background-image: url(../img/hero_visual_pc_210511.webp);
}

.sec_hero.mv2 .hero_point > div {
	top: 22px;
}

.sec_hero.mv2 .hero_txt .txt_01 small {
	font-size: 1.2rem;
}

.sec_hero.mv2 .hero_btm .txt {
	top: -78px;
}

.sec_movie .sec_inner {
	padding: 30px 0 40px 0;
}

.sec_movie .movie_cnt .movie {
	border-width: 2px;
}

.sec_movie .movie_cnt .txt_01 {
	top: -26px;
	left: -15px;
}

.sec_movie .movie_cnt .txt_02 {
	top: -26px;
	right: -15px;
}

.sec_movie .movie_cnt .txt_03 {
	bottom: -26px;
	left: -15px;
}

.sec_movie .movie_cnt .txt_04 {
	bottom: -26px;
	right: -15px;
}

.sec_movie .attention_txt {
	top: 10px;
	font-size: 11px;
	letter-spacing: 0;
}

.cv_wrap .cv_po {
	top: -45px;
}

.cv_wrap .cv_po.po_01 {
	left: -25px;
}

.cv_wrap .cv_po.po_02 {
	right: -25px;
}

.cv_wrap .cv_btn a {
	border-radius: 20px;
}

.cv_wrap .cv_btn a::before {
	top: -5px;
	border-radius: 20px;
}

.cv_wrap .cv_btn a::after {
	right: 30px;
	width: 20px;
	height: 20px;
}

.cv_wrap .cv_btn a img {
	border-radius: 20px;
}

.cv_wrap p {
	margin-top: 15px;
}

.cv_wrap p small {
	font-size: 60%;
}

.sec_c0 {
	padding: 0 0 0px;
}
.attention_txt {
	font-size: 11px;
	letter-spacing: 0;
}

.sec_cta {
	padding-bottom: 40px;
}

.sec_c1 {
	padding: 60px 0 70px;
}

.sec_c1 .comic_list li {
	margin-top: 30px;
}

.sec_c2 .sec_tit {
	margin-bottom: 50px;
}

.sec_c2 .wrap_01 .txt_box_fuki .tit {
	font-size: 3.4rem;
}

.sec_c2 .wrap_01 .txt_box_fuki li {
	margin-top: 20px;
	font-size: 2.6rem;
	padding-left: 50px;
	background-size: 30px auto;
	background-position: left 10px;
}

.sec_c3 {
	padding-top: 40px;
}

.sec_c3 .sec_head .head_pic {
	left: 25px;
}

.sec_c3 .point_cnt {
	margin-top: 60px;
	padding-bottom: 40px;
}

.sec_c3 .point_cnt .icon {
	top: -30px;
	left: -30px;
}

.sec_c3 .point_cnt .tit {
	margin-bottom: 25px;
}

.sec_c3 .point_cnt p {
	margin-top: 25px;
}

.sec_c3 .point_cnt p small {
	font-size: 62.5%;
}

.sec_c3 .point_cnt.point_02 .img .fuki {
	right: -30px;
}

.sec_c3 .point_cnt.point_03 .img .fuki {
	top: -18px;
	left: -18px;
}

.sec_c4 {
	padding-top: 40px;
}

.sec_c4 .fuki_tit {
	margin-bottom: 15px;
}

.sec_c4 .txt_wrap p {
	margin-right: -6%;
	margin-left: -6%;
}

.sec_c5 {
	padding-top: 126px;
}

.sec_c5 .sec_head_ico {
	top: -28px;
}

.sec_c5 .sec_head_01 {
	margin-bottom: 40px;
}

.sec_c5 .sec_head_01 .head_pic {
	left: 15px;
}

.sec_c5 .box_tit {
	top: -46px;
}

.sec_c5 .box.box_01 {
	margin-top: 40px;
}

.sec_c5 .box.box_02 {
	margin-top: 100px;
}

.sec_c6 {
	padding: 60px 0 0;
}

.sec_c6 .sec_head .head_pic {
	top: -35px;
	right: 5px;
}

.sec_c6 .box.whitening {
	margin-top: 60px;
}

.sec_c6 .box.whitening .img_wrap {
	margin: 30px auto 40px;
}

.sec_c6 .box.whitening .img_wrap .fuki_01 {
	bottom: -20px;
	left: -40px;
}

.sec_c6 .box.whitening .img_wrap .fuki_02 {
	top: -20px;
	right: -20px;
}

.sec_c6 .box.whitening .txt_wrap.wrap_01 p {
	margin: 20px -5%;
}

.sec_c6 .box.whitening .toku_wrap {
	margin: 80px 0 40px;
}

.sec_c6 .box.whitening .toku_wrap p {
	margin: 30px auto;
}

.sec_c6 .box.whitening .toku_wrap .box_po {
	top: -60px;
	width: 90%;
	text-align: center;
}
.sec_c6 .plan_01 .txt_wrap p:last-child {
	margin-bottom: 20px;
}
.sec_c6 .box.plan_01 .txt_wrap {
	margin-bottom: 20px;
}
.sec_c7 .case_list {
	margin-bottom: 60px;
}

.sec_c7 .case_after {
	margin-top: 80px;
}

.sec_c7 .case_after::before {
	top: -50px;
	border-width: 30px 30px 0 30px;
}

.sec_c7 .case_fee ul {
	padding: 30px 0 30px 15px;
	width: 100%;
}

.sec_c7 .case_fee li div {
	width: 105px;
	font-size: 1.8rem;
}

.sec_c7 .case_fee li div span {
	padding: 10px 0;
	width: 100px;
}

.sec_c7 .case_fee li div small {
	margin-top: 9px;
}

.sec_c7 .case_fee li p {
	padding-left: 10px;
	font-size: 2.6rem;
}

.sec_c7 .case_fee li p span.fee small {
	bottom: -25px;
}

.sec_c7 .case_fee li p span.fee i {
	font-size: 1.2em;
	font-style: normal;
}
.sec_c7 .case_fee li p.price {
	padding-left: 0;
	text-align: left;
}

.sec_c7 .case_fee li p small:not(.att) {
	margin-top: 8px;
}

.sec_c7 .case_attention {
	border-radius: 20px;
	padding: 20px 0 30px;
}

.sec_c7 .case_attention p,
.sec_c7 .case_attention li {
	font-size: 1.4rem;
}

.sec_c7 .case_attention ul {
	margin: 10px 0;
}

.sec_c7 .box {
	margin: 30px 0 60px;
	padding-top: 80px;
}

.sec_c7 .box + .box {
	margin-top: 90px;
}

.sec_c7 .box .box_tit {
	top: -32px;
	width: 80%;
	text-align: center;
}

.sec_c7 .box .case_attention {
	border-radius: 0 0 20px 20px;
}

.sec_c7 .txt_wrap.tp {
	margin-bottom: 80px;
	margin-top:150px;
	justify-content:center;
}
.c7_p{
	
}
.c7_p p{
	vertical-align: middle;
}
.sec_c7 .txt_wrap.tp p + p {
	margin-top: 20px;
}

.sec_c7 .txt_wrap.wrap_01 {
	margin: -30px 0 60px;
}

.sec_c7 .txt_wrap.wrap_01 p small.att {
	margin-top: 10px;
}

.sec_c7 .more_wrap {
	margin: 40px 0;
}

.sec_c7 .more_btn span,
.sec_c7 .more_btn a {
	border-bottom-width: 5px;
	border-radius: 20px;
	height: 100px;
	font-size: 2.8rem;
}

.sec_c7 .more_btn span::after,
.sec_c7 .more_btn a::after {
	right: 30px;
	width: 20px;
	height: 20px;
}
.sec_c7 .case_fee .price {
	font-size: 20px;
	font-weight: bold;
}

.sec_c8 {
	padding-top: 50px;
	padding-bottom: 20px;
}

.sec_c8 .fuki_tit {
	margin-bottom: 15px;
}
.sec_c8 .img_00 {
		margin: 1em 2em;
	}
	
.sec_c8 .img_wrap.img_01 {
	margin: 40px 0;
}

.sec_c8 .img_wrap.img_01 .fuki {
	bottom: 20px;
	left: 20px;
	font-size: 1.6rem;
}

.sec_c8 .img_wrap.img_02 {
	margin: 40px 0 60px;
}

.sec_c8 .img_wrap.img_02 .pic_03 {
	bottom: -30px;
	left: -40px;
}
.sec_c8 .box .box_left p{
	font-size: 1.9rem;
}
.sec_c8 .txt_wrap p .att {
	margin-top: 20px;
}

.sec_c8 .info_wrap {
	margin: 70px 0 50px;
}

.sec_c8 .info_wrap .img {
	margin: 0 0 30px 30px;
}

.sec_c8 .info_wrap .txt .name {
	font-size: 2.6rem;
	margin-bottom: 30px;
}

.sec_c8 .info_wrap .txt .name small {
	margin-top: 5px;
}

.sec_c8 .info_wrap .txt .name b {
	margin-top: 25px;
}

.sec_c8 .slide_wrap .tit {
	margin-bottom: 40px;
}

.sec_c8 .slide_wrap .slider p {
	font-size: 1.2rem;
}


.sec_c9 {
	padding: 70px 0;
}

.sec_c9 .sec_head .head_pic {
	top: -24px;
	right: 20px;
}

.sec_c10 .sec_inner {
	margin-bottom: 65px;
}

.sec_c10 .head_img {
	margin-bottom: 130px;
}

.sec_c10 .head_img .txt_att {
	bottom: -85px;
}

.sec_c10 .sec_tit_fuki {
	margin-bottom: -20px;
}

.sec_c10 .sec_tit_fuki::after {
	border-width: 16px 16px 0 16px;
}

.sec_c11 .txt_wrap p small.att {
	margin-top: 20px;
}

.sec_c11 .txt_wrap .txt p + p {
	margin-top: 30px;
}

.sec_c11 .cnt_01 .txt_wrap {
	margin: 100px 0 150px;
}

.sec_c11 .cnt_01 .txt_wrap .img .fuki {
	top: -75px;
	left: -20px;
}

.sec_c11 .cnt_01 .box_tit {
	top: -80px;
}

.sec_c11 .cnt_02 .txt_wrap {
	margin-bottom: 115px;
}

.sec_c11 .cnt_02 .txt_wrap .img .fuki {
	top: -90px;
	right: -20px;
}

.sec_c11 .cnt_02 .txt_wrap .txt {
	padding-right: 25px;
}

.sec_c11 .cnt_02 .box_po {
	top: -45px;
}

.sec_c11 .cnt_02 .box_inner {
	margin: 50px auto;
}

.sec_c11 .cnt_02 .box_inner .pic {
    width: 32%;
    bottom: -10%;
    right: 0;
}

.sec_c11 .cnt_02 .box_inner .pic img {
	width: 100%;
}

.sec_c11 .cnt_02 .box_inner p {
	margin: 30px 0;
}

.sec_c11 .cnt_02 .box_inner p:first-of-type {
	margin-right: -10%;
}

.sec_c11 .cnt_03 {
	margin: 90px auto 100px;
}

.sec_c11 .cnt_03 .txt_wrap p {
	margin: 50px auto;
}

.sec_c12 .box {
	margin: 50px auto 70px;
}

.sec_c12 .box_num {
	top: -30px;
	left: -30px;
}

.sec_c12 .box_inner {
	padding: 40px 0 0;
}

.sec_c12 .box .img_wrap {
	border-radius: 20px;
}

.sec_c12 .box .txt_wrap p small.att {
	margin-top: 20px;
}

.sec_c12 .box .txt_wrap.attention {
	padding-top: 20px;
}

.sec_c12 .box .txt_wrap.attention p {
	font-size: 1.6rem;
}

.sec_c12 .box.reason_01 .fuki {
	top: -13px;
	left: -5px;
}

.sec_c12 .box.reason_02 .fuki {
	right: -5px;
	width: 31%;
}

.sec_c12 .box.reason_03 .img_wrap,
.sec_c12 .box.reason_04 .img_wrap,
.sec_c12 .box.reason_05 .img_wrap {
	margin-top: 30px;
}

.sec_c12 .box.reason_03 .fuki,
.sec_c12 .box.reason_04 .fuki,
.sec_c12 .box.reason_05 .fuki {
	top: -70px;
	left: -20px;
	width: 34%;
}

.sec_c12 .box.reason_07 .img_wrap {
	margin-top: 60px;
}

.sec_c12 .box.reason_07 .fuki {
	top: -80px;
	left: -20px;
}

.sec_c13 {
	padding-top: 50px;
}

.sec_c13 .head_pic {
	right: 25px;
}

.sec_c13 .txt_wrap p small.att {
	margin-top: -20px;
}

.sec_c14 .sec_head {
	margin-top: 30px;
}

.sec_c14 .txt_wrap.wrap_01 {
	padding-left: 200px;
}

.sec_c14 .txt_wrap.wrap_01 .img {
	left: -25px;
}

.sec_c14 .txt_wrap.wrap_01 p + p {
	margin-top: 20px;
}

.sec_c15 {
	margin-bottom: 80px;
}

.sec_c15 .sec_head {
	margin-top: 190px;
}

.sec_c15 .sec_head .head_pic {
	top: -170px;
}

.sec_c15 .clinic_map {
	margin: 60px 0 50px;
}

.sec_c15 .clinic_cnt {
	border-radius: 20px;
}

.sec_c15 .clinic_cnt img {
	border-radius: 20px 20px 0 0;
}

.sec_c15 .clinic_cnt p {
	font-size: 2.6rem;
	height: 60px;
}

.sec_c15 .txt_wrap p small.att {
	margin-top: 20px;
}

.sec_c15 .txt_wrap .sec_tit_fuki .pic {
	left: -30px;
}

.sec_c16 .txt_wrap.wrap_01 .img {
	left: -24px;
}

.sec_c16 .txt_wrap.wrap_02 {
	margin: 50px auto;
}

.sec_c16 .txt_wrap.wrap_02 p small.att {
	margin-top: -20px;
}

.sec_c16 .cv_wrap {
	margin: 70px auto 60px;
}

.sec_c16 .box {
	margin-top: 70px;
}

.sec_c16 .box_tit .num {
	top: -40px;
	left: -30px;
}

.sec_c16 .box_att small {
	font-size: 54.16%;
	margin-top: 10px;
}

.sec_c17 .sec_head {
	margin-top: 30px;
}

.sec_c17 .txt_wrap.wrap_01 {
	margin-bottom: 80px;
}

.sec_c17 .box.box_01 {
	display: inline-block;
	margin-right: auto;
	margin-left: auto;
}

.sec_c17 .box.box_02 {
	margin-bottom: 90px;
}

.sec_c17 .box.box_02 .box_tit {
	top: -40px;
}

.sec_c17 .box.box_02 .box_inner {
	padding-top: 60px;
}

.sec_c18 .txt_wrap.wrap_01 p {
	margin: 20px 0;
	font-size: 2rem;
}

.sec_c19 {
	margin: 50px auto 80px;
}

.sec_c19 .toku_wrap p {
	margin: 30px auto;
}

.sec_c19 .toku_wrap.toku_01 .txt_wrap {
	margin: 50px auto;
}

.sec_c19 .toku_wrap.toku_03 {
	margin: 70px 0 50px;
}

.sec_c19 .toku_wrap.toku_03 .box_po {
	top: -70px;
}

.sec_c19 .toku_wrap.toku_03 .txt_wrap + .txt_wrap {
	margin-top: 40px;
}

.sec_c19 .toku_wrap.toku_04 .txt_wrap {
	margin: 40px auto;
}

.sec_c19 .cv_wrap {
	margin-top: 90px;
}

.sec_c20 {
	margin: 60px auto 80px;
}

.sec_c21 {
	margin: 60px auto;
}

.sec_c21 .cv_wrap {
	margin-top: 80px;
}

.type_line .cta_line .cv_btn a {
	border-radius: 20px;
}

.type_line .cta_line .cv_btn a::before {
	top: -5px;
	border-radius: 20px;
}

.type_line .cta_line .cv_btn a::after {
	right: 30px;
	width: 20px;
	height: 20px;
}

.type_line .cta_line .cv_btn a img {
	border-radius: 20px;
}

.type_line .cta_line .cv_btn + .att {
	margin-top: 20px;
}

.type_line .cta_line .cta_arr.arr_01 {
	height: 90px;
}

.type_line .cta_line .cta_arr.arr_02 {
	height: 70px;
}

.type_line .cta_line_01 {
	padding: 15px 0 30px;
}

.type_line .cta_line_01 .img_wrap .fuki {
	margin-right: -26px;
}

.type_line .cta_line_02 {
	padding: 50px 0 0;
}

.type_line .cta_line_02 .img_wrap .pic {
	margin-left: -20px;
}

.type_line .cta_line_02 .img_wrap .fuki {
	margin-right: -20px;
}

.type_line .sec_c22 {
	padding-top: 56px;
}

.type_line .sec_c22 .wrap_01 {
	margin-bottom: 40px;
}

.type_line .sec_c22 .wrap_01 figcaption {
	font-size: 12px;
}

.type_line .sec_c22 .wrap_02 {
	margin-bottom: 30px;
}

.type_line .sec_c22 .wrap_02 .txt_wrap p {
	font-size: 2rem;
}

.type_line .sec_c23 {
	margin-bottom: 80px;
}

.type_line .sec_c23 .txt_wrap .txt_01 {
	margin: -20px -5%;
}

.type_line .sec_c23 .cta_line {
	margin: -40px auto;
}

}

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

.vsp1024 {
	display: none;
}

}

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

.slick-arr {
	font-size: 1.6rem;
	width: 50px;
	height: 50px;
	line-height: 50px;
}

.sec_tit_stripe {
	background-size: 80px auto;
}

.sec_tit_stripe2 {
	background-size: 80px auto;
}

.sec_c7 .case_fee li p {
	font-size: 2.8rem;
}

}

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

.vpc1024 {
	display: none;
}

}

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

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

.sec .check_list li {
	font-size: 2rem;
}

.sec .box.faq .box_tit {
	font-size: 2rem;
}

.sec_hero {
	height: 150vw;
	min-height: 150vw;
}

}

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

.vpc767 {
	display: none;
}

.js-slider-clinic .slick-arr.next {
	right: 5%;
}

.sec_hero.mv2 {
	background-image: url(../img/hero_visual_sp_210511.webp);
}

.sec_c7 .txt_wrap.tp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content:center;
	min-height: calc((3.53333vw * 1.6 * 6) + 2.66667vw);
}
.sec_c6 .plan_01 .txt_wrap p:last-child {
    font-size: 2.8vw;
}

}

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

.sec_hero {
	max-height: 667px;
}

}

@-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 pulse {

from {
	-webkit-transform: scale3d(1.05, 1.05, 1.05);
	transform: scale3d(1.05, 1.05, 1.05);
}

50% {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

to {
	-webkit-transform: scale3d(1.05, 1.05, 1.05);
	transform: scale3d(1.05, 1.05, 1.05);
}

}

@keyframes pulse {

from {
	-webkit-transform: scale3d(1.05, 1.05, 1.05);
	transform: scale3d(1.05, 1.05, 1.05);
}

50% {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

to {
	-webkit-transform: scale3d(1.05, 1.05, 1.05);
	transform: scale3d(1.05, 1.05, 1.05);
}

}

@-webkit-keyframes arrDown {

0% {
	top: -5%;
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	top: 18%;
	opacity: 0;
}

}

@keyframes arrDown {

0% {
	top: -5%;
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	top: 18%;
	opacity: 0;
}

}

@-webkit-keyframes arrUp {

0% {
	top: 5%;
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	top: -18%;
	opacity: 0;
}

}

@keyframes arrUp {

0% {
	top: 5%;
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	top: -18%;
	opacity: 0;
}

}

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




/*----------------1126---------------*/
/*     top-menu 
--------------------------------------------------------------*/
.top-menu-sp {
position: fixed;
bottom: 0;
z-index: 99998;
width: 100%; }
.top-menu-sp .nav-social {
font-size: 0; }
.top-menu-sp .nav-social .nav-item {
display: inline-block;
vertical-align: middle; }
.top-menu-sp .nav-social .nav-item.link__contact {
background-color: #32c332;
width: 100%; }
.top-menu-sp .nav-social .nav-item.link__reservation {
background-image: -webkit-gradient(linear, left top, right top, from(#00b7ed), to(#53d3fa));
background-image: -webkit-linear-gradient(left, #00b7ed, #53d3fa);
background-image: -o-linear-gradient(left, #00b7ed, #53d3fa);
background-image: linear-gradient(to right, #00b7ed, #53d3fa);
width: 100%; }
.top-menu-sp .nav-social .nav-item .nav-link {
color: #fff;
text-align: center;
display: block;
height: 60px;
line-height: 60px;
text-decoration: none;
font-size: 2.0rem; }
.top-menu-sp .nav-social .nav-item .nav-link span:before {
content: "";
display: inline-block;
vertical-align: middle;
width: 30px;
height: 30px;
margin-right: 0.5em; }
.top-menu-sp .nav-social .nav-item .nav-link span.forLine:before {
background: url(../img/kireilign-icon-line.webp) center no-repeat;
background-size: 95% auto; }
.top-menu-sp .nav-social .nav-item .nav-link span.forBook:before {
background: url(../img/kirelign-icon-reservation.webp) center no-repeat;
background-size: contain; }
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
	.sec_c15 .txt_wrap1 p {
		font-size: 3vw;
	}
	.sec_c0 {
		padding-bottom: 4vw;
	}
	.sec_c1 {
		margin-top: 8vw;
		margin-bottom: 8vw;
	}
	
	.top-menu {
	width: 100%;
	max-width: 640px; }
	.top-menu-sp .nav-social {
	font-size: 0; }
	.top-menu-sp .nav-social .nav-item {
	display: inline-block;
	vertical-align: middle; }
	.top-menu-sp .nav-social .nav-item.link__contact {
	background-color: #32c332;
	width: 100%; }
	.top-menu-sp .nav-social .nav-item.link__reservation {
	background-image: -webkit-gradient(linear, left top, right top, from(#00b7ed), to(#53d3fa));
	background-image: -webkit-linear-gradient(left, #00b7ed, #53d3fa);
	background-image: -o-linear-gradient(left, #00b7ed, #53d3fa);
	background-image: linear-gradient(to right, #00b7ed, #53d3fa);
	width: 100%; }
	.top-menu-sp .nav-social .nav-item .nav-link {
	color: #fff;
	text-align: center;
	display: block;
	height: 15vw;
	line-height: 15vw;
	text-decoration: none;
	font-size: 4.2vw; }
	.top-menu-sp .nav-social .nav-item .nav-link span:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 7vw;
	height: 7vw;
	margin-right: 0.5em; }
	.top-menu-sp .nav-social .nav-item .nav-link span.forLine:before {
	background: url(../img/kireilign-icon-line.webp) center no-repeat;
	background-size: 95% auto; }
	.top-menu-sp .nav-social .nav-item .nav-link span.forBook:before {
	background: url(../img/kirelign-icon-reservation.webp) center no-repeat;
	background-size: contain; } 
}
/* LP116パーツ  */
.mv {
	text-align: center; }
	.mv .box {
	  background: #03a9e0;
	  color: #fff;
	  padding: calc(100vw / ( 750 / 20 )); }
	  .mv .box ul {
		font-size: calc(100vw / ( 750 / 12 ));
		line-height: 1.4;
		margin-top: calc(100vw / ( 750 / 20 ));
		text-align: left; }
	.mv .box.white {
	  background: #fff;
	  color: #808080; }
  
  @media only screen and (min-width: 768px) {
	.mv .box {
	  padding: calc(20px * 0.85333); }
	  .mv .box ul {
		font-size: calc(12px * 0.85333);
		margin-top: calc(20px * 0.85333); } }
  