@charset "UTF-8";

/* ------------------------------------
  疲労回復SL
  Date: 2021-07-12
------------------------------------ */

/* ------------------------------------
  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 Serif JP", serif;
}

body {
	font-size: 1.4rem;
	line-height: 1;
	font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	color: #000;
	background: #fff;
}

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

a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
}

a:hover {
	color: #000;
}

a:visited {
	color: #000;
}

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

*:focus {
	outline: none;
}

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

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

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

.txt_blue {
	color: #002683;
}

.txt_red {
	color: #ff3a3a;
}

.txt_size_01 {
	font-size: 120%;
}

.txt_size_02 {
	font-size: 140%;
}

.txt_line {
	text-decoration: underline;
}

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

.txt_bold {
	font-weight: 700;
}

.bg_white {
	background-color: #ffffff;
}

.bg_blue {
	background-color: #002683;
}

.bg_gray {
	background-color: #f8f8f8;
}

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

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

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

.up_in {
	opacity: 0;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1s ease 0.4s;
	transition: all 1s ease 0.4s;
}

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

.fade_in {
	opacity: 0;
	-webkit-transition: all 1s ease 0.4s;
	transition: all 1s ease 0.4s;
}

.fade_in.show {
	opacity: 1;
}

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

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

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

.sec {
	position: relative;
	z-index: 20;
}

.sec_title {
	margin: 0 auto 40px;
	text-align: center;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.6;
}

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

.sec_title small {
	font-size: 80%;
	display: block;
}

.sec_title.zoom_in {
	opacity: 0;
	-webkit-transition: all 0.4s ease 0.2s;
	transition: all 0.4s ease 0.2s;
}

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

.sec_title_sb {
	text-align: center;
	margin: 30px auto;
}

.sec_title_sb span {
	display: inline-block;
	padding: 0 22px;
	position: relative;
	font-size: 2.4rem;
	font-weight: 700;
	color: #002683;
	letter-spacing: 0.18em;
	line-height: 1.6;
}

.sec_title_sb span::before,
.sec_title_sb span::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 15px 0 15px;
	border-color: #002683 transparent transparent transparent;
}

.sec_title_sb span::before {
	top: 0;
	left: -30px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.sec_title_sb span::after {
	bottom: 0;
	right: -30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-color: #000000 transparent transparent transparent;
}

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

.sec_inner {
	width: 92%;
	max-width: 720px;
	margin: 0 auto;
	padding: 100px 0;
}

.sec_lead_txt {
	text-align: center;
	margin-bottom: 40px;
}

.sec p {
	font-size: 1.6rem;
	line-height: 1.85;
	letter-spacing: 0.14em;
	font-weight: 400;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hanging-punctuation: allow-end;
}

.sec .box {
	background: #ffffff;
	padding: 50px 50px 10px;
}

.sec .box + .box {
	margin-top: 30px;
}

.sec .box_tit {
	text-align: center;
	margin: 0 -5% 35px;
}

.sec .box_tit span {
	display: inline-block;
	position: relative;
	font-weight: 700;
	font-size: 2.5rem;
	letter-spacing: 0.2em;
	line-height: 1.6;
}

.sec .box_tit span::before {
	content: "";
	position: absolute;
	top: 8px;
	left: -40px;
	width: 27px;
	height: 27px;
	background: url(../img/icon_chk_01.png) center center/100% auto no-repeat;
}

.sec .box_tit span b {
	color: #c29e72;
	font-weight: 700;
}

.sec .box > p,
.sec .box figure {
	margin: 40px 0;
}

.sec .box .check_list {
	margin-bottom: 40px;
}

.sec .box.cta {
	padding-bottom: 40px;
	padding-top: 30px;
}

.sec .txt_wrap {
	max-width: 620px;
	margin: 0 auto;
}

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

.sec .txt_wrap p b.bold_txt_01 {
	font-size: 180%;
	color: #002683;
	font-weight: 700;
	font-style: italic;
	line-height: 1.6;
}

.sec .txt_wrap p b.bold_txt_02 {
	font-size: 120%;
	color: #002683;
	font-weight: 700;
	font-style: italic;
	line-height: 1.6;
}

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

.sec .check_list li {
	padding-left: 45px;
	position: relative;
	letter-spacing: 0.18em;
	margin-right: -5%;
}

.sec .check_list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 29px;
	height: 29px;
	background: url(../img/icon_chk_01.png) center center/cover no-repeat;
}

.sec .check_list li::before p {
	font-size: 1.7rem;
}

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

.sec .check_list li p {
	font-weight: 500;
}

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

.sec.bg_blue {
	background-color: #002683;
}

.sec.bg_blue .sec_title {
	color: #ffffff;
}

.sec.bg_blue .sec_title b {
	color: #c29e72;
}

.sec.bg_gray {
	background-color: #eceef1;
}

.sec.bg_gray2 {
	background-color: #f8f8f8;
}

.sec[data-scroll] {
	opacity: 1;
	-webkit-transition: all 0.6s ease-in-out 0s;
	transition: all 0.6s ease-in-out 0s;
}

.sec[data-scroll] .sec_inner {
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 0.2s;
	transition: all 0.6s ease-in-out 0.2s;
}

.sec.show .sec_inner {
	opacity: 1;
}

/* ------------------------------------
  parallax
------------------------------------ */

.sec.parallax {
	z-index: 10;
}

.sec.parallax .parallax_visual {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

/* ------------------------------------
  CTA
------------------------------------ */

.cv_txt {
	font-size: 1.9rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-bottom: 15px;
	text-align: center;
	line-height: 1.6;
}

.cv_txt span {
	display: inline-block;
	position: relative;
}

.cv_txt span::after,
.cv_txt span::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 110%;
	background: #000000;
	top: -5%;
}

.cv_txt span::before {
	left: -20px;
	-webkit-transform: rotate(-20deg);
	transform: rotate(-20deg);
}

.cv_txt span::after {
	right: -20px;
	-webkit-transform: rotate(20deg);
	transform: rotate(20deg);
}

.cv_btn a {
	display: inline-block;
}

.cv_btn a.anim_scale {
	border: 1px solid transparent;
}

.sec_cta {
	background: #ffffff url(../img/cta_visual.jpg) center center/cover no-repeat;
}

.sec_cta .sec_inner {
	padding: 90px 0;
}

.sec_cta .box {
	background: #ffffff;
	padding: 40px 50px 55px;
}

.sec_cta .box_tit {
	font-size: 3rem;
	margin-bottom: 30px;
}

.sec_cta .box_tit b {
	font-size: 130%;
	color: #002683;
}

/* ------------------------------------
  floationg_btn
------------------------------------ */

.floating_cv_btn {
	display: none;
	z-index: 100;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.floating_cv_btn a {
	background: #00d044;
	background: -webkit-gradient(linear, left top, right top, from(#00a100), color-stop(50%, #00c600), to(#00a100));
	background: linear-gradient(90deg, #00a100 0%, #00c600 50%, #00a100 100%);
	color: #ffffff;
	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;
	width: 100%;
	height: 70px;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

.floating_cv_btn a span {
	position: relative;
	display: inline-block;
}

.floating_cv_btn a span::after {
	content: "";
	position: absolute;
	bottom: 45%;
	right: -50px;
	width: 41px;
	height: 12px;
	background: url(../img/arr_right_01_white.png) center center/cover no-repeat;
}

.floating_cv_btn.is_show {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

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

.footer {
	z-index: 100;
	position: relative;
	background: #002683;
	color: #ffffff;
	text-align: center;
	padding: 35px 0 30px;
	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: 300;
}

.footer_copy {
	padding-top: 25px;
	font-size: 1.5rem;
	line-height: 1.4;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	color: #4766b2;
}

/* ------------------------------------
  MV
------------------------------------ */

.sec_hero {
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
	width: 100%;
	text-align: center;
	position: relative;
}

.sec_hero .hero_tit {
	z-index: 3;
	position: relative;
	opacity: 0;
	height: 100%;
}

.sec_hero .hero_company {
	z-index: 3;
	position: absolute;
	top: 48px;
	left: 50px;
}

.sec_hero .hero_cv {
	z-index: 3;
	position: absolute;
	bottom: 4.6%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	max-width: 620px;
}

.sec_hero .hero_cv .cv_txt {
	color: #ffffff;
}

.sec_hero .hero_cv .cv_txt span::before,
.sec_hero .hero_cv .cv_txt span::after {
	background: #ffffff;
}

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

/* ------------------------------------
  C1 --- こんなこと、考えたことありませんか？
------------------------------------ */

/* ------------------------------------
  C2 --- そんなお悩みを全て解決！
------------------------------------ */

.sec_02 .flow_list li + li {
	margin-top: 58px;
	position: relative;
}

.sec_02 .flow_list li + li::before {
	opacity: 0;
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(100% + 60px);
	width: 11px;
	height: 38px;
	background: url(../img/arr_btm_01_black.png) center center/auto 100% no-repeat;
	-webkit-transition: bottom 0.4s ease-in-out 0.2s, opacity 0.4s ease-in-out 0.2s;
	transition: bottom 0.4s ease-in-out 0.2s, opacity 0.4s ease-in-out 0.2s;
}

.sec_02 .flow_list li figure {
	opacity: 0;
	text-align: center;
	-webkit-transition: all 0.4s ease-in-out 0.4s;
	transition: all 0.4s ease-in-out 0.4s;
	max-width: 450px;
	margin: 0 auto;
}

.sec_02 .flow_list li:nth-of-type(1) {
	z-index: 3;
}

.sec_02 .flow_list li:nth-of-type(1) figure {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.sec_02 .flow_list li:nth-of-type(2) {
	z-index: 2;
}

.sec_02 .flow_list li:nth-of-type(3) {
	z-index: 1;
}

.sec_02 .flow_list li.show + li::before {
	opacity: 1;
	bottom: calc(100% + 10px);
}

.sec_02 .flow_list li.show figure {
	opacity: 1;
}

/* ------------------------------------
  C3 --- WEBマーケッターの魅力
------------------------------------ */

.sec_03 .parallax_visual {
	background-image: url(../img/sec3_visual.jpg);
}

.sec_03 .parallax_content {
	background-image: url(../img/sec_bg_01.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}

.sec_03 .sec_title {
	margin-right: -5%;
	margin-left: -5%;
	font-size: 3.6rem;
}

.sec_03 .sec_title b {
	font-size: 120%;
	display: block;
	line-height: 1;
}

.sec_03 .sec_title strong {
	font-size: 180%;
	line-height: 1;
}

.sec_03 .sec_title_sb {
	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_03 .sec_title_sb span {
	color: #ffffff;
	font-size: 2rem;
	margin: 0 30px;
	font-weight: 500;
}

.sec_03 .sec_title_sb span::after,
.sec_03 .sec_title_sb span::before {
	border-color: #aac1e5 transparent transparent transparent;
}

.sec_03 .box figure {
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0.4s;
	transition: all 0.4s ease-in-out 0.4s;
}

.sec_03 .box.show figure {
	opacity: 1;
}

/* ------------------------------------
  C4 --- ３ステップ
------------------------------------ */

.sec_c4 .parallax_visual {
	background-image: url(../img/sec4_visual.jpg);
}

.sec_c4 .step_wrap {
	position: relative;
}

.sec_c4 .step_wrap .fuki {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 100%;
	background: #002683;
	width: 56px;
	z-index: 20;
	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-transition: all 0.6s ease-in-out 1.4s;
	transition: all 0.6s ease-in-out 1.4s;
}

.sec_c4 .step_list {
	z-index: 10;
	position: relative;
}

.sec_c4 .step_list li {
	opacity: 0;
	position: relative;
	background: #ffffff;
	text-align: center;
	height: 83px;
	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-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.sec_c4 .step_list li + li {
	margin-top: 30px;
}

.sec_c4 .step_list li + li::before {
	opacity: 0;
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(100% + 5px);
	width: 11px;
	height: 38px;
	background: url(../img/arr_btm_01_black.png) center center/auto 100% no-repeat;
	-webkit-transition: bottom 0.4s ease-in-out 0.6s, opacity 0.4s ease-in-out 0.6s;
	transition: bottom 0.4s ease-in-out 0.6s, opacity 0.4s ease-in-out 0.6s;
}

.sec_c4 .step_list li p {
	z-index: 1;
	position: relative;
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 500;
}

.sec_c4 .step_list li p b {
	color: #002683;
	font-weight: 500;
	display: block;
}

.sec_c4 .step_list li .course {
	opacity: 0;
	z-index: 2;
	position: absolute;
	top: 0;
	left: 100%;
	width: 56px;
	height: 100%;
	background: #002683;
	-webkit-transition: opacity 0.4s ease-in-out 1.8s;
	transition: opacity 0.4s ease-in-out 1.8s;
}

.sec_c4 .step_list li .course::after {
	content: "";
	position: absolute;
	top: calc(50% - 16px);
	left: -12px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 12px 16px 0;
	border-color: transparent #002683 transparent transparent;
}

.sec_c4 .step_wrap.show .fuki {
	opacity: 1;
}

.sec_c4 .step_wrap.show li {
	opacity: 1;
}

.sec_c4 .step_wrap.show li:nth-of-type(1) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.sec_c4 .step_wrap.show li:nth-of-type(2) {
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

.sec_c4 .step_wrap.show li:nth-of-type(3) {
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

.sec_c4 .step_wrap.show li:nth-of-type(3)::before {
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

.sec_c4 .step_wrap.show li::before {
	opacity: 1;
	bottom: calc(100% - 5px);
}

.sec_c4 .step_wrap.show li .course {
	opacity: 1;
}

/* ------------------------------------
  C5 --- 「超一流のプロから学ぶ」
------------------------------------ */

/* ------------------------------------
  C6 --- 無料講座の内容
------------------------------------ */

.sec_06 .parallax_visual {
	background-image: url(../img/sec6_visual.jpg);
}

.sec_06 .box_tit small {
	display: block;
	letter-spacing: 0.17em;
}

.sec_06 .box_tit small.sm_01 {
	font-size: 70%;
}

.sec_06 .box_tit small.sm_02 {
	font-size: 80%;
}

.sec_06 .box_tit b.txt_red {
	color: #ff3a3a;
}

.sec_06 .box figure {
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0.4s;
	transition: all 0.4s ease-in-out 0.4s;
}

.sec_06 .box_05 .box_tit span {
	letter-spacing: 0.15em;
}

.sec_06 .box.cta {
	padding-bottom: 50px;
}

.sec_06 .box.cta .box_tit {
	font-size: 3.5rem;
	letter-spacing: 0.1em;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
	text-align: center;
}

.sec_06 .box.show figure {
	opacity: 1;
}

.sec_06 .box_wrap .box:last-of-type {
	position: relative;
	margin-bottom: 76px;
}

.sec_06 .box_wrap .box:last-of-type::after {
	opacity: 0;
	content: "";
	position: absolute;
	top: calc(100% - 50px);
	left: calc(50% - 43px);
	width: 87px;
	height: 85px;
	background: url(../img/arr_btm_02.png) center bottom/100% auto no-repeat;
	-webkit-transition: all 0.6s ease-in-out 0.6s;
	transition: all 0.6s ease-in-out 0.6s;
}

.sec_06 .box_wrap .box:last-of-type.show::after {
	opacity: 1;
	top: calc(100% - 30px);
}

/* ------------------------------------
  C7 --- ビジョン・ミッション
------------------------------------ */

.sec_07 .sec_head {
	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;
	width: 100%;
	height: 400px;
	background: url(../img/sec7_head_img.jpg) center center no-repeat;
	text-align: center;
}

/* ------------------------------------
  C8 --- ABOUT US
------------------------------------ */

.sec_08 {
	background-image: url(../img/sec_bg_01.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.sec_08 .box {
	padding: 70px 50px 30px;
}

.sec_08 .box_tit {
	text-align: center;
	font-weight: 700;
	font-size: 2.5rem;
	letter-spacing: 0.2em;
	line-height: 1.6;
}

.sec_08 .box_01 .box_head {
	margin-bottom: 40px;
}

.sec_08 .box_01 .box_head p {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	margin: 20px 0 0;
}

.sec_08 .box_01 .sec_title_sb {
	margin: 0;
}

.sec_08 .box_01 .sec_title_sb span {
	display: block;
	margin: 0 auto;
	width: 400px;
	font-size: 2.9rem;
	line-height: 1.4;
}

.sec_08 .box_01 .list_box {
	position: relative;
	background: #ffffff;
	border: 1px solid #000000;
	padding: 40px 15px 20px;
}

.sec_08 .box_01 .list_tit {
	display: inline-block;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	background: #ffffff;
	position: absolute;
	top: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	line-height: 1.1;
	padding: 0 20px;
	text-align: center;
}

.sec_08 .box_01 .list_wrap {
	width: calc(100% + 10px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 -5px -10px;
}

.sec_08 .box_01 .list_wrap li {
	width: calc(33.333% - 10px);
	padding: 15px;
	margin: 0 5px 10px;
}

.sec_08 .box_01 .list_wrap li:nth-child(1) {
	background: rgba(170, 193, 229, 0.25);
}

.sec_08 .box_01 .list_wrap li:nth-child(2) {
	background: rgba(185, 172, 157, 0.25);
}

.sec_08 .box_01 .list_wrap li:nth-child(3) {
	background: rgba(197, 212, 187, 0.25);
}

.sec_08 .box_01 .list_wrap li:nth-child(4) {
	background: rgba(183, 192, 205, 0.25);
}

.sec_08 .box_01 .list_wrap li:nth-child(5) {
	background: rgba(229, 170, 185, 0.25);
}

.sec_08 .box_01 .list_wrap li p {
	font-size: 1.3rem;
	line-height: 1.7;
	letter-spacing: 0.02em;
}

.sec_08 .box_02 .client_list {
	margin: -30px 0;
}

.sec_08 .box_02 .client_list figure {
	margin: 80px 0;
}

.sec_08 .box_03 p {
	margin-bottom: 70px;
}

/* ------------------------------------
  C9 --- 講師紹介
------------------------------------ */

.sec_09 {
	text-align: center;
}

.sec_09 .sec_title {
	letter-spacing: 0.22em;
}

.sec_09 figure {
	width: 60%;
	margin: 40px auto 0;
	max-width: 416px;
}

/* ------------------------------------
  C10 --- WEBマーケッターの情報とは？
------------------------------------ */

.sec_10 .parallax_visual {
	background-image: url(../img/sec10_visual.jpg);
}

.sec_10 .box {
	background: #f8f8f8;
}

/* ------------------------------------
  C11 --- こんなお悩みがあるなら・・・？
------------------------------------ */

.sec_11 .txt_01 {
	position: relative;
	z-index: 2;
}

.sec_11 .txt_01 .img {
	position: absolute;
	bottom: -20px;
	left: -40px;
	width: 130px;
	z-index: 2;
}

.sec_11 .txt_01 ul {
	z-index: 1;
	position: relative;
	margin-bottom: 30px;
}

.sec_11 .txt_01 li {
	opacity: 0;
	padding: 15px;
	text-align: center;
	background: #f8f8f8;
	margin-bottom: 20px;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.sec_11 .txt_01 li p {
	font-size: 1.8rem;
	margin: 0;
	font-weight: 500;
}

.sec_11 .txt_01 li p b {
	color: #002683;
}

.sec_11 .txt_01 li:nth-child(2n) {
	background: #e7edf7;
}

.sec_11 .txt_01 li:nth-of-type(1) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.sec_11 .txt_01 li:nth-of-type(2) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.sec_11 .txt_01 li:nth-of-type(3) {
	-webkit-transition-delay: 0.8s;
	transition-delay: 0.8s;
}

.sec_11 .txt_01 li:nth-of-type(4) {
	-webkit-transition-delay: 1.1s;
	transition-delay: 1.1s;
}

.sec_11 .txt_01 li:nth-of-type(5) {
	-webkit-transition-delay: 1.4s;
	transition-delay: 1.4s;
}

.sec_11 .txt_01 li:nth-of-type(6) {
	-webkit-transition-delay: 1.7s;
	transition-delay: 1.7s;
}

.sec_11 .txt_02 {
	text-align: center;
	position: relative;
	margin-top: 110px;
	padding-top: 10px;
	z-index: 1;
	letter-spacing: 0.2em;
}

.sec_11 .txt_02::before {
	opacity: 0;
	content: "";
	position: absolute;
	bottom: calc(100% + 50px);
	left: calc(50% - 43px);
	width: 87px;
	height: 85px;
	background: url(../img/arr_btm_02.png) center bottom/100% auto no-repeat;
	-webkit-transition: all 0.6s ease-in-out 2s;
	transition: all 0.6s ease-in-out 2s;
}

.sec_11 .txt_02 b {
	font-size: 187.5%;
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 2.4s;
	transition: all 0.6s ease-in-out 2.4s;
}

.sec_11 .txt.show .txt_01 li {
	opacity: 1;
}

.sec_11 .txt.show .txt_02::before {
	opacity: 1;
	bottom: 100%;
}

.sec_11 .txt.show .txt_02 b {
	opacity: 1;
}

/* ------------------------------------
  C12 --- 参加方法
------------------------------------ */

.sec_12 .step_wrap {
	position: relative;
}

.sec_12 .step_list {
	z-index: 10;
	position: relative;
}

.sec_12 .step_list li {
	opacity: 0;
	position: relative;
	background: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.sec_12 .step_list li + li {
	margin-top: 40px;
}

.sec_12 .step_list li + li::before {
	opacity: 0;
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(100% + 30px);
	width: 11px;
	height: 38px;
	background: url(../img/arr_btm_01_black.png) center center/auto 100% no-repeat;
	-webkit-transition: bottom 0.4s ease-in-out 0.6s, opacity 0.4s ease-in-out 0.6s;
	transition: bottom 0.4s ease-in-out 0.6s, opacity 0.4s ease-in-out 0.6s;
}

.sec_12 .step_list li .icon {
	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;
	width: 100px;
	background: #002683;
}

.sec_12 .step_list li p {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	z-index: 1;
	position: relative;
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 500;
	padding: 25px 15px 25px 40px;
	letter-spacing: 0.08em;
}

.sec_12 .step_list li p b {
	color: #002683;
	font-weight: 500;
	display: block;
}

.sec_12 .step_wrap.show li {
	opacity: 1;
}

.sec_12 .step_wrap.show li:nth-of-type(1) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.sec_12 .step_wrap.show li:nth-of-type(2) {
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

.sec_12 .step_wrap.show li:nth-of-type(3) {
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

.sec_12 .step_wrap.show li:nth-of-type(3)::before {
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

.sec_12 .step_wrap.show li::before {
	opacity: 1;
	bottom: calc(100% + 10px);
}

.sec_12 .box.cta {
	margin-top: 60px;
}

/* ------------------------------------
  C13 --- よくあるご質問
------------------------------------ */

.sec_13 .faq_cnt {
	border: 1px solid #e7edf7;
	background: #ffffff;
	margin-bottom: 30px;
}

.sec_13 .faq_cnt dt {
	background: #e7edf7;
	color: #002683;
	padding: 25px 50px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	position: relative;
	cursor: pointer;
	letter-spacing: 0.14em;
}

.sec_13 .faq_cnt dt::after,
.sec_13 .faq_cnt dt::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 20px;
	height: 1px;
	background: #002683;
}

.sec_13 .faq_cnt dt::after {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sec_13 .faq_cnt dd {
	display: none;
	padding: 25px 50px;
}

.sec_13 .faq_cnt dd p {
	font-size: 1.8rem;
	line-height: 1.6;
}

.sec_13 .faq_cnt.is_open dt::after {
	opacity: 0;
}

.sec_13 .box.cta {
	margin-top: 50px;
}

/* ------------------------------------
  C14 --- 講師からのメッセージ
------------------------------------ */

.sec_14 .parallax_visual {
	background-image: url(../img/sec14_visual.jpg);
}

.sec_14 figure {
	width: 40%;
	margin: 20px auto;
	max-width: 300px;
}

.sec_14 .box.note {
	padding-top: 10px;
}

.sec_14 .box.note .box_inner {
	background-color: #ffffff;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(100, 100, 100, 0)), color-stop(98%, rgba(100, 100, 100, 0)), to(#aaa));
	background-image: linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 98%, #aaa 100%);
	background-size: 100% 40px;
	line-height: 40px;
}

.sec_14 .box.note p {
	line-height: 40px;
	margin: 0;
	letter-spacing: 0.06em;
}

.sec_14 .box.note p + p {
	margin-top: 40px;
}

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

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

.vsp640 {
	display: none;
}

}

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

.sec_hero .hero_cv .cv_txt {
	font-size: 1.9vh;
}

.sec_hero .hero_cv .cv_btn img {
	height: 8vh;
	width: auto;
}

.sec_02 .sec_inner {
	padding-bottom: 70px;
}

.sec_06 .box_01 .box_tit span::before {
	top: 2px;
}

.sec_06 .box_04 .box_tit span::before {
	left: -20px;
}

.sec_06 .box_05 .box_tit span::before {
	left: 5px;
	top: 2px;
}

.sec_06 .box_06 .box_tit span::before {
	left: -20px;
}

.sec_08 .box_01 .list_wrap li p:not(.taC) {
	text-align: left;
}

}

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

.vsp768 {
	display: none;
}

}

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

.footer_nav li + li::before {
	content: "｜";
	margin: 0 5px;
}

.sec_hero {
	max-height: 1000px;
	background: #002683 url(../img/mv_visual_pc.jpg) center center/cover no-repeat;
	background-attachment: fixed;
	height: 100vh;
}

.sec_hero::before {
	z-index: 2;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/mv_bg.png) center center/auto 100% no-repeat;
}

.sec_hero::after {
	z-index: 1;
	content: "";
	position: absolute;
	top: 0;
	right: calc(50% + 530px);
	width: 50%;
	height: 100%;
	background: #002683;
}

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

.sec_08 {
	background-attachment: fixed;
}

}

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

.vsp1024 {
	display: none;
}

}

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

.sec.parallax {
	padding: 400px 0 0;
}

.sec.parallax .parallax_visual {
	background-attachment: fixed;
	z-index: 1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.sec.parallax .parallax_content {
	z-index: 2;
	position: relative;
	width: 100%;
	background-color: #ffffff;
	overflow: hidden;
}

.sec.parallax.bg_gray .parallax_content {
	background-color: #eceef1;
}

.sec.parallax.bg_blue .parallax_content {
	background-color: #002683;
}

}

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

.sec_03 .parallax_content {
	background-size: 100% auto;
}

}

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

.vpc1024 {
	display: none;
}

.sec.parallax .parallax_visual {
	height: 35vw;
}

.sec_07 .sec_head {
	height: 35vw;
}

.sec_07 .sec_head img {
	width: 45%;
}

}

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

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

}

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

.vpc768 {
	display: none;
}

.sec_cta {
	background: #ffffff url(../img/cta_visual_sp.jpg) center center/cover no-repeat;
}

.sec_cta .sec_inner {
	padding: 8vw 0;
}

.footer {
	padding: 20px 15px;
}

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

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

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

.sec_hero {
	background: #002683 url(../img/mv_visual_sp.jpg) center center/cover no-repeat;
}

.sec_c4 .step_wrap .fuki {
	left: calc(100% - 25px);
}

.sec_c4 .step_list li .course {
	left: calc(100% - 25px);
}

}

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

.vpc640 {
	display: none;
}

.txt_size_02 {
	font-size: 130%;
}

.up_in {
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}

.fade_in {
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}

.sec_title {
	font-size: 5.6vw;
	margin: 0 -2% 5.33333vw;
}

.sec_title_sb {
	margin: 4vw auto;
}

.sec_title_sb span {
	font-size: 4.5vw;
	padding: 0 10px;
}

.sec_title_sb span::before,
.sec_title_sb span::after {
	border-width: 10px 10px 0 10px;
}

.sec_title_sb span::before {
	left: -20px;
}

.sec_title_sb span::after {
	right: -20px;
}

.sec_inner {
	padding: 13.33333vw 0;
}

.sec_lead_txt {
	text-align: left;
	margin-bottom: 5.33333vw;
}

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

.sec .box {
	padding: 6.66667vw 6.66667vw 1.33333vw;
}

.sec .box + .box {
	margin-top: 4vw;
}

.sec .box_tit {
	margin-bottom: 4.66667vw;
}

.sec .box_tit span {
	font-size: 4.5vw;
}

.sec .box_tit span::before {
	top: 1.25vw;
	left: -28px;
	width: 20px;
	height: 20px;
}

.sec .box > p,
.sec .box figure {
	margin: 5.33333vw 0;
}

.sec .box .check_list {
	margin-bottom: 5.33333vw;
}

.sec .box.cta {
	padding-bottom: 6.66667vw;
	padding-top: 4vw;
}

.sec .txt_wrap {
	width: 94%;
}

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

.sec .txt_wrap p b.bold_txt_01 {
	font-size: 150%;
}

.sec .check_list li {
	font-size: 4vw;
	padding-left: 30px;
	margin-right: 0;
}

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

.sec .check_list li::before p {
	font-size: 4vw;
}

.sec .check_list li + li {
	margin-top: 2.66667vw;
}

.sec[data-scroll] {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.sec[data-scroll] .sec_inner {
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

.sec.parallax .parallax_content > .sec_inner:first-of-type {
	padding-top: 9.33333vw;
}

.cv_txt {
	font-size: 2.66667vw;
	margin: 0 -5% 2vw;
}

.cv_txt span::before {
	left: -10px;
}

.cv_txt span::after {
	right: -10px;
}

.sec_cta .box {
	padding: 5.33333vw 4vw;
}

.sec_cta .box_tit {
	font-size: 4vw;
	margin-bottom: 4vw;
}

.floating_cv_btn a {
	font-size: 4.8vw;
	height: 12vw;
}

.floating_cv_btn a span::after {
	right: -30px;
	width: 20px;
	height: 6px;
}

.sec_hero .hero_company {
	width: 37.33333vw;
	top: 4vw;
	left: 5.33333vw;
}

.sec_hero .hero_cv {
	bottom: 9.33333vw;
}

.sec_hero .hero_cv .cv_txt {
	font-size: 2.8vw;
}

.sec_hero .hero_cv .cv_btn img {
	width: 81.33333vw;
	height: auto;
}

.sec_02 .sec_title {
	font-size: 5.33333vw;
}

.sec_02 .flow_list li + li {
	margin-top: 40px;
}

.sec_02 .flow_list li + li::before {
	bottom: calc(100% + 40px);
	width: 9px;
	height: 30px;
}

.sec_02 .flow_list li.show + li::before {
	bottom: calc(100% + 5px);
}

.sec_03 .sec_title {
	font-size: 4.8vw;
}

.sec_03 .sec_title_sb span {
	font-size: 3.75vw;
	margin: 0 20px;
	padding: 0 10px;
}

.sec_c4 .step_wrap .fuki {
	left: calc(100% - 10vw);
	width: 12vw;
	height: calc(50vw + 20px);
}

.sec_c4 .step_list li {
	height: 25vw;
}

.sec_c4 .step_list li + li {
	margin-top: 20px;
}

.sec_c4 .step_list li + li::before {
	bottom: calc(100% + 5px);
	width: 9px;
	height: 30px;
}

.sec_c4 .step_list li p {
	font-size: 3.75vw;
}

.sec_c4 .step_list li p b {
	font-weight: 700;
}

.sec_c4 .step_list li .course {
	left: calc(100% - 10vw);
	width: 12vw;
}

.sec_c4 .step_list li .course::after {
	top: calc(50% - 8px);
	left: -6px;
	border-width: 8px 6px 8px 0;
}

.sec_c4 .step_wrap.show li::before {
	bottom: calc(100% - 5px);
}

.sec_06 .box_01 .box_tit span::before {
	top: 0;
}

.sec_06 .box_05 .box_tit span::before {
	left: -4vw;
	top: 0.5vw;
}

.sec_06 .box_06 .box_tit span::before {
	left: -1.5vw;
}

.sec_06 .box.cta {
	padding-bottom: 6.66667vw;
}

.sec_06 .box.cta .box_tit {
	font-size: 4.75vw;
	margin-bottom: 4vw;
}

.sec_06 .box_wrap .box:last-of-type {
	margin-bottom: 10.66667vw;
}

.sec_06 .box_wrap .box:last-of-type::after {
	top: calc(100% - 25px);
	left: calc(50% - 22px);
	width: 44px;
	height: 43px;
}

.sec_06 .box_wrap .box:last-of-type.show::after {
	top: calc(100% - 15px);
}

.sec_08 .box {
	padding: 9.33333vw 6.66667vw 4vw;
}

.sec_08 .box_tit {
	font-size: 4.5vw;
}

.sec_08 .box_01 .box_head {
	margin-bottom: 5.33333vw;
}

.sec_08 .box_01 .box_head p {
	font-size: 4vw;
	margin-top: 2.66667vw;
}

.sec_08 .box_01 .sec_title_sb span {
	width: 80%;
	font-size: 4.75vw;
}

.sec_08 .box_01 .list_box {
	padding: 5.33333vw 2vw 2.66667vw;
}

.sec_08 .box_01 .list_tit {
	font-size: 4vw;
	width: 60%;
	padding: 0;
}

.sec_08 .box_01 .list_wrap {
	margin: 0 0 -10px;
	width: 100%;
}

.sec_08 .box_01 .list_wrap li {
	font-size: 4vw;
	padding: 10px 0;
	width: 100%;
	margin: 0 0 10px;
	text-align: center;
	height: 20vw;
	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_08 .box_01 .list_wrap li p {
	font-size: 3.25vw;
}

.sec_08 .box_02 .client_list {
	margin: 0;
}

.sec_08 .box_02 .client_list figure {
	margin: 10.66667vw 0;
}

.sec_08 .box_03 p {
	margin-bottom: pctovw(70);
}

.sec_09 figure {
	margin: 5.33333vw auto 0;
}

.sec_10 .check_list li {
	margin-right: -4%;
}

.sec_11 .txt_01 .img {
	bottom: -18vw;
	left: -5%;
	width: 25%;
}

.sec_11 .txt_01 ul {
	margin-bottom: 4vw;
}

.sec_11 .txt_01 li {
	padding: 2.66667vw 2vw;
	margin-bottom: 2.66667vw;
}

.sec_11 .txt_01 li p {
	font-size: 4vw;
}

.sec_11 .txt_02 {
	margin-top: 14.66667vw;
	padding-top: 1.33333vw;
}

.sec_11 .txt_02::before {
	bottom: calc(100% + 25px);
	left: calc(50% - 22px);
	width: 44px;
	height: 43px;
}

.sec_11 .txt_02 b {
	font-size: 160%;
}

.sec_12 .step_list li + li {
	margin-top: 30px;
}

.sec_12 .step_list li + li::before {
	bottom: calc(100% + 20px);
	width: 9px;
	height: 30px;
}

.sec_12 .step_list li .icon {
	width: 15vw;
}

.sec_12 .step_list li p {
	padding: 3.33333vw 2vw 3.33333vw 4vw;
	font-size: 3.75vw;
}

.sec_12 .step_list li p b {
	font-weight: 700;
}

.sec_12 .step_wrap.show li::before {
	bottom: calc(100% + 5px);
}

.sec_12 .box.cta {
	margin-top: 8vw;
}

.sec_13 .faq_cnt {
	margin-bottom: 4vw;
}

.sec_13 .faq_cnt dt {
	font-size: 3.75vw;
	padding: 3.33333vw 30px 3.33333vw 4vw;
}

.sec_13 .faq_cnt dt::after,
.sec_13 .faq_cnt dt::before {
	width: 15px;
	right: 10px;
}

.sec_13 .faq_cnt dd {
	padding: 3.33333vw 3.33333vw 3.33333vw 4vw;
}

.sec_13 .faq_cnt dd p {
	font-size: 3.75vw;
}

.sec_13 .box.cta {
	margin-top: 6.66667vw;
}

.sec_14 figure {
	margin: 4vw auto;
}

.sec_14 .box.note {
	padding-top: 1.33333vw;
}

.sec_14 .box.note .box_inner {
	background-size: 100% 8vw;
	line-height: 8vw;
}

.sec_14 .box.note p {
	line-height: 8vw;
}

.sec_14 .box.note p + p {
	margin-top: 8vw;
}

}

@-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);
}

}

