@charset "UTF-8";

/* ------------------------------------
  Date: 2021-08-23
------------------------------------ */

/* ------------------------------------
  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_gold {
	color: #c29e72;
}

.txt_size_01 {
	font-size: 120%;
}

.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.1em;
	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.tp_arr_white {
	position: relative;
}

.sec.tp_arr_white::before {
	opacity: 0;
	content: "";
	position: absolute;
	top: -40px;
	left: calc(50% - 55px);
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 55px 0 55px;
	border-color: #ffffff transparent transparent transparent;
	-webkit-transition: all 0.6s ease-in-out 0.4s;
	transition: all 0.6s ease-in-out 0.4s;
}

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

.sec p {
	font-size: 1.75rem;
	line-height: 1.85;
	letter-spacing: 0.08em;
	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 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 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: #eceef1;
}

.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[data-scroll].tp_arr_white::before {
	opacity: 1;
	top: 0;
}

.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_tit {
	font-size: 2.8rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.4;
	color: #ffffff;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}

.cv_tit b {
	color: #c29e72;
}

.cv_txt {
	text-align: center;
	margin-bottom: 20px;
	letter-spacing: 0.12em;
}

.cv_btn {
	max-width: 660px;
	margin: 0 auto;
}

.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: 84px;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	position: relative;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
}

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

.sec_cta {
	background-color: #101937;
}

.sec_cta .sec_inner {
	padding: 40px 0 50px;
	max-width: 660px;
}

.sec_cta.visual {
	background-image: url(../img/cta_visual.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 345px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.sec_cta.visual .sec_inner {
	padding: 0;
}

.sec_cta.arr {
	position: relative;
	z-index: 30;
}

.sec_cta.arr::before {
	opacity: 0;
	content: "";
	position: absolute;
	top: -80px;
	left: calc(50% - 42px);
	width: 87px;
	height: 80px;
	background: url(../img/arr_btm_02.png) center center/cover no-repeat;
	-webkit-transition: all 0.6s ease-in-out 0.2s;
	transition: all 0.6s ease-in-out 0.2s;
}

.sec_cta.show.arr::before {
	opacity: 1;
	top: -50px;
}

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

.alert_bar {
	width: 100%;
	background: #002683;
	text-align: center;
	padding: 0 4%;
	min-height: 45px;
}

/* ------------------------------------
  modal
------------------------------------ */

body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

.content,
.footer,
.header {
	z-index: 100;
	position: relative;
}

.modal {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;
}

.modal_overlay {
	background: rgba(0, 0, 0, 0.6);
	height: 100vh;
	width: 100%;
}

.modal_box {
	background: #fff;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 570px;
	width: 80%;
	max-height: 570px;
	height: 80%;
	padding: 30px;
}

.modal_box_inner {
	height: 100%;
	overflow-y: scroll;
}

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

.modal_box p + .tit {
	margin-top: 15px;
}

.modal_box p.tit {
	font-weight: bold;
}

.modal_close {
	position: absolute;
	top: -30px;
	right: -30px;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: #8f8f8f;
	cursor: pointer;
}

.modal_close::after,
.modal_close::before {
	content: "";
	position: absolute;
	top: 47%;
	left: 22%;
	width: 60%;
	height: 2px;
	background: #fff;
}

.modal_close::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.modal_close::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

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

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

.footer {
	z-index: 100;
	position: relative;
	background: #101937;
	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: #434e72;
}

/* ------------------------------------
  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.show .hero_tit {
	opacity: 1;
}

/* ------------------------------------
  C1 --- キャリア面談開催スケジュール
------------------------------------ */

.sec_01 .schedule_table {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.9);
	border-left: 0;
	border-bottom: 0;
	margin-bottom: 45px;
}

.sec_01 .schedule_table th {
	vertical-align: middle;
	background: #002683;
	color: #ffffff;
	text-align: center;
	padding: 12px 15px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.2;
	border-left: 1px solid rgba(0, 0, 0, 0.9);
	border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}

.sec_01 .schedule_table th:nth-of-type(1) {
	width: 25%;
}

.sec_01 .schedule_table th:nth-of-type(2) {
	width: 20%;
}

.sec_01 .schedule_table th:nth-of-type(3) {
	width: 32%;
}

.sec_01 .schedule_table th:nth-of-type(4) {
	width: 23%;
}

.sec_01 .schedule_table td {
	vertical-align: middle;
	text-align: center;
	padding: 20px 15px;
	font-size: 1.8rem;
	font-weight: 500;
	background: #ffffff;
	line-height: 1.2;
	border-left: 1px solid rgba(0, 0, 0, 0.9);
	border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}

.sec_01 .schedule_table td .txt_close {
	display: inline-block;
	position: relative;
}

.sec_01 .schedule_table td .txt_close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ff0000;
}

.sec_01 .sec_title_sb2 {
	position: relative;
	margin: 20px 0 10px;
	text-align: center;
}

.sec_01 .sec_title_sb2::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	top: 50%;
	left: 0;
	background: #002683;
	z-index: 1;
}

.sec_01 .sec_title_sb2 span {
	width: 160px;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.2;
	background: #002683;
	display: inline-block;
	border-radius: 30px;
	padding: 5px 0 6px;
	letter-spacing: 0.1em;
	z-index: 2;
	position: relative;
	text-align: center;
}

.sec_01 p {
	font-size: 2rem;
	text-align: center;
}

.sec_01 .cv_btn {
	margin-top: 40px;
}

/* ------------------------------------
  C2 --- 今ならカウンセリング参加で
------------------------------------ */

.sec_02 .tokuten_tit {
	text-align: center;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.5;
	margin-bottom: 20px;
}

.sec_02 .tokuten_tit span {
	display: block;
	width: 133px;
	height: 27px;
	border-radius: 30px;
	color: #ffffff;
	text-align: center;
	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;
	letter-spacing: 0.16em;
	font-size: 65.7%;
	font-weight: 700;
	margin: 0 auto 10px;
	background: #c29e72;
}

.sec_02 .tokuten_tit b {
	color: #002683;
}

.sec_02 .tokuten_img {
	margin-top: 0;
}

.sec_02 .tokuten p {
	margin: 0;
}

.sec_02 .tokuten p a {
	color: #002683;
	text-decoration: underline;
}

.sec_02 .tokuten .txt_01 {
	text-align: center;
	margin-bottom: 40px;
}

.sec_02 .tokuten .txt_01 span {
	font-size: 2.7rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	letter-spacing: 0.1em;
}

.sec_02 .tokuten .txt_01 span b {
	color: #002683;
}

.sec_02 .tokuten .txt_01 span::after,
.sec_02 .tokuten .txt_01 span::before {
	content: "";
	position: absolute;
	top: 20%;
	width: 1px;
	height: 70%;
	background: #002683;
}

.sec_02 .tokuten .txt_01 span::before {
	left: -20px;
	-webkit-transform: rotate(-28deg);
	transform: rotate(-28deg);
}

.sec_02 .tokuten .txt_01 span::after {
	right: -20px;
	-webkit-transform: rotate(28deg);
	transform: rotate(28deg);
}

.sec_02 .tokuten .check_list li b {
	color: #002683;
}

/* ------------------------------------
  C3 --- こんなお悩み、 不安はありませんか？
------------------------------------ */

.sec_03 {
	background-image: url(../img/sec3_visual.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

/* ------------------------------------
  C4 --- そんなお悩みを一気に解決！
------------------------------------ */

.sec_04 .txt_wrap .tit_fuki {
	text-align: center;
	margin-bottom: 40px;
}

.sec_04 .txt_wrap .tit_fuki span {
	font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
	display: inline-block;
	position: relative;
	padding: 4px 30px 5px;
	background: #002683;
	color: #ffffff;
	letter-spacing: 0.16em;
	line-height: 1.4;
}

.sec_04 .txt_wrap .tit_fuki span::after {
	content: "";
	position: absolute;
	top: 100%;
	left: calc(50% - 28px);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 19px 0 19px;
	border-color: #002683 transparent transparent transparent;
}

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

.sec_04 .txt_wrap.show figure {
	opacity: 1;
}

/* ------------------------------------
  C5 --- 受けるべき理由
------------------------------------ */

.sec_05 .txt_wrap .txt_01 {
	text-align: center;
	letter-spacing: 0.14em;
}

.sec_05 .txt_wrap .txt_01 span {
	font-weight: 700;
	font-size: 130%;
}

.sec_05 .box .tit {
	font-size: 3.3rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.45;
	margin-bottom: 40px;
}

.sec_05 .box.tp_arr {
	position: relative;
	margin-top: 80px;
}

.sec_05 .box.tp_arr::before {
	opacity: 0;
	content: "";
	position: absolute;
	top: -88px;
	left: calc(50% - 43px);
	width: 87px;
	height: 80px;
	background: url(../img/arr_btm_02.png) center center/cover no-repeat;
	-webkit-transition: all 0.6s ease-in-out 0.2s;
	transition: all 0.6s ease-in-out 0.2s;
}

.sec_05 .box.show.tp_arr::before {
	opacity: 1;
	top: -58px;
}

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

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

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

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

.sec_06 .sec_title {
	letter-spacing: 0.08em;
	margin-right: -5%;
	margin-left: -5%;
}

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

.sec_06 .box {
	position: relative;
	padding-bottom: 60px;
}

.sec_06 .box::after {
	opacity: 0;
	position: absolute;
	content: "";
	top: calc(100% - 30px);
	left: calc(50% - 5px);
	width: 11px;
	height: 38px;
	background: url(../img/arr_btm_01_black.png) center top/100% auto no-repeat;
	-webkit-transition: all 0.6s ease-in-out 0.2s;
	transition: all 0.6s ease-in-out 0.2s;
}

.sec_06 .box:last-of-type::after {
	display: none;
}

.sec_06 .box + .box {
	margin-top: 40px;
}

.sec_06 .box .step_tit {
	width: 120px;
	height: 28px;
	color: #ffffff;
	text-align: center;
	background: #002683;
	border-radius: 30px;
	margin: 0 auto 20px;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	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_06 .box > p {
	margin: 20px -5%;
	letter-spacing: 0.06em;
}

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

.sec_06 .box .list_box {
	background: #f8f8f8;
	padding: 15px 34px;
	margin: 30px 0;
}

.sec_06 .box .list_box li {
	padding-left: 32px;
	position: relative;
}

.sec_06 .box .list_box li::before {
	content: "";
	position: absolute;
	width: 13px;
	height: 9px;
	background: url(../img/icon_chk_02.png) center center/cover no-repeat;
	top: 12px;
	left: 0;
}

.sec_06 .box .list_box li p {
	color: #002683;
	font-weight: 500;
}

.sec_06 .box.show::after {
	opacity: 1;
	top: calc(100% - 10px);
}

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

.sec_06 .txt_wrap .btm_txt {
	text-align: center;
}

.sec_06 .txt_wrap .btm_txt span {
	font-size: 155%;
	letter-spacing: 0.24em;
	font-weight: 700;
}

/* ------------------------------------
  C7 --- ７つの内容
------------------------------------ */

.sec_07 .sec_inner {
	max-width: 920px;
}

.sec_07 .list_wrap ul {
	width: 100%;
	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;
	counter-reset: detail_number;
	margin-top: -40px;
}

.sec_07 .list_wrap li {
	counter-increment: detail_number;
}

.sec_07 .list_wrap li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.sec_07 .list_wrap li .icon {
	background: #eceef1;
	border-radius: 100%;
	-webkit-box-shadow: 0px 0px 0 7px #f5f6f8 inset;
	box-shadow: 0px 0px 0 7px #f5f6f8 inset;
}

.sec_07 .list_wrap li .icon img {
	border-radius: 100%;
}

.sec_07 .list_wrap li p {
	font-size: 2rem;
	color: #002683;
	letter-spacing: 0;
	line-height: 1.4;
	padding-left: 30px;
	margin-top: 5px;
	font-weight: 700;
	position: relative;
}

.sec_07 .list_wrap li p::before {
	position: absolute;
	top: 2px;
	left: 0;
	content: counter(detail_number);
	background: #002683;
	width: 24px;
	height: 24px;
	border-radius: 24px;
	color: #ffffff;
	text-align: center;
	line-height: 24px;
	text-align: center;
	font-size: 95%;
}

/* ------------------------------------
  C8 --- キャリアカウンセリングの詳細
------------------------------------ */

.sec_08 .sec_title {
	color: #c29e72;
}

.sec_08 .box {
	counter-increment: sec11_box_number;
}

.sec_08 .box_wrap {
	counter-reset: sec11_box_number;
}

.sec_08 .box_tit {
	font-size: 3.3rem;
	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;
	margin-bottom: 20px;
	color: #002683;
	line-height: 1.2;
}

.sec_08 .box_tit::before {
	font-size: 66%;
	font-weight: 700;
	content: counter(sec11_box_number);
	width: 27px;
	height: 27px;
	background: #002683;
	color: #ffffff;
	line-height: 27px;
	text-align: center;
	border-radius: 30px;
	margin-right: 15px;
}

.sec_08 .box_tit span {
	font-size: 100%;
}

.sec_08 .box_tit span::before {
	display: none;
}

.sec_08 .box_tit_sb {
	text-align: center;
	margin-top: 0;
}

.sec_08 .box_tit_sb b {
	color: #5b7fd4;
	font-size: 116%;
	font-weight: 700;
	line-height: 1.4;
}

.sec_08 .box > p {
	margin-right: -2%;
}

.sec_08 .box > p.box_tit_sb {
	margin-top: 0;
}

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

.sec_08 .box .list_wrap {
	margin: -20px auto 0;
}

.sec_08 .box .list_wrap + P {
	margin-top: 0;
}

.sec_08 .box .list_cnt:nth-child(2n+1) .list_tit::after {
	left: 20px;
	border-width: 0 20px 20px 0;
	border-color: transparent #eceef1 transparent transparent;
}

.sec_08 .box .list_cnt:nth-child(2n) .list_tit::after {
	right: 20px;
	border-width: 20px 20px 0 0;
	border-color: #eceef1 transparent transparent transparent;
}

.sec_08 .box .list_cnt figure {
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 0.4s;
	transition: all 0.6s ease-in-out 0.4s;
}

.sec_08 .box .list_cnt.show figure {
	opacity: 1;
}

.sec_08 .box .list_tit {
	background: #eceef1;
	height: 70px;
	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;
	position: relative;
}

.sec_08 .box .list_tit::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 0;
	height: 0;
	border-style: solid;
}

.sec_08 .box .list_tit span {
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.4;
	text-align: center;
}

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

/* ------------------------------------
  C9 --- 参加方法
------------------------------------ */

.sec_09 .parallax_visual {
	background-image: url(../img/sec9_visual.jpg);
}

.sec_09 .step_wrap {
	position: relative;
}

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

.sec_09 .step_list li {
	opacity: 0;
	position: relative;
	background: #ffffff;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding: 25px 20px 25px 160px;
}

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

.sec_09 .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_09 .step_list li .icon img {
	width: 56.25%;
	height: auto;
}

.sec_09 .step_list li .tit {
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 15px;
	letter-spacing: 0.08em;
}

.sec_09 .step_list li .tit small {
	color: #002683;
}

.sec_09 .step_list li p {
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.sec_10 .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_10 .faq_cnt dd {
	display: none;
	padding: 25px 50px;
}

.sec_10 .faq_cnt dd p {
	line-height: 1.6;
}

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

.sec_10 .box.cta {
	margin-top: 50px;
	padding: 0;
}

.sec_10 .box.cta .cv_txt span {
	color: #000000;
}

.sec_10 .box.cta .cv_txt span::after,
.sec_10 .box.cta .cv_txt span::before {
	background: #000000;
}

/* ------------------------------------
  C11 --- ABOUT US
------------------------------------ */

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

.sec_11 .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/sec11_head_img.jpg) center center no-repeat;
	text-align: center;
}

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

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

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

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

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

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

.sec_11 .box_01 .list_box {
	position: relative;
	background: #ffffff;
	border: 1px solid #000000;
	padding: 60px 15px 15px;
}

.sec_11 .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_11 .box_01 .list_wrap {
	width: 100%;
	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;
}

.sec_11 .box_01 .list_wrap li {
	width: 33.333%;
	padding: 0 15px 15px;
}

.sec_11 .box_01 .list_wrap li figure {
	margin: 0;
	text-align: center;
}

.sec_11 .box_01 .list_wrap li figure img {
	max-width: 166px;
	width: 55%;
	margin: 0 auto 10px;
}

.sec_11 .box_01 .list_wrap li figcaption {
	font-size: 1.2rem;
	line-height: 1.7;
	letter-spacing: 0.06em;
}

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

.sec_11 .box_02 .client_list figure {
	margin: 50px 0;
}

.sec_11 .btm_txt_01 {
	margin-top: 50px;
	text-align: center;
}

.sec_11 .btm_txt_01 span {
	display: block;
	font-size: 180%;
	font-weight: 500;
	line-height: 1.54;
	color: #ffffff;
	letter-spacing: 0.14em;
}

.sec_11 .btm_txt_01 b {
	color: #c29e72;
	font-weight: 700;
}

.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_07 .list_wrap li {
	width: calc(25% - 50px);
	margin: 40px 25px 0 25px;
}

.sec_08 .box .list_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.sec_08 .box .list_cnt {
	width: 46.42%;
	margin-top: 20px;
}

.sec_09 .step_list li .icon {
	position: absolute;
	top: 0;
	left: 0;
	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: 160px;
	height: 100%;
}

}

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

.vsp768 {
	display: none;
}

}

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

.sec.bg_visual_01 {
	background-attachment: fixed;
}

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

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

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

.sec_03 {
	background-attachment: fixed;
}

.sec_11 {
	background-attachment: fixed;
}

.sec_11 p {
	font-size: 1.6rem;
}

.sec_11 .btm_txt_01 {
	margin: 6.66667vw -5% 0;
}

}

@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 (max-width: 1024px) {

.vpc1024 {
	display: none;
}

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

.sec_11 .sec_head {
	height: 35vw;
}

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

}

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

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

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

}

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

.vpc768 {
	display: none;
}

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

.sec_cta.visual {
	height: 55vw;
}

.modal_box {
	padding: 15px;
}

.modal_close {
	top: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
}

.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_03 {
	background-position: center 130%;
}

.sec_11 .btm_txt_01 span {
	font-size: 130%;
}

}

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

.vpc640 {
	display: none;
}

.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.tp_arr_white::before {
	top: -20px;
	left: calc(50% - 25px);
	border-width: 20px 25px 0 25px;
}

.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_tit {
	font-size: 4.25vw;
	margin-bottom: 2.66667vw;
}

.cv_txt {
	margin-bottom: 2.66667vw;
}

.cv_txt span {
	display: inline-block;
	position: relative;
	font-size: 3.73333vw;
	font-weight: 500;
	line-height: 1.4;
	color: #ffffff;
}

.cv_txt span::after,
.cv_txt span::before {
	content: "";
	position: absolute;
	top: 35%;
	width: 1px;
	height: 30%;
	background: #ffffff;
}

.cv_txt span::before {
	left: -10%;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

.cv_txt span::after {
	right: -10%;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}

.cv_txt b {
	position: relative;
	color: #ffdb5d;
	display: block;
}

.cv_txt b::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ffdb5d;
}

.cv_txt b strong {
	font-size: 163%;
	line-height: 1;
}

.cv_txt img {
	width: 8vw;
	height: auto;
	margin-bottom: -5px;
}

.cv_btn a {
	font-size: 4vw;
	height: 13.33333vw;
}

.cv_btn a::after {
	width: 20px;
	height: 6px;
	right: 15px;
}

.sec_cta.arr::before {
	top: -40px;
	left: calc(50% - 21px);
	width: 43px;
	height: 40px;
}

.sec_cta.show.arr::before {
	top: -25px;
}

.alert_bar {
	min-height: 20px;
}

.modal_box p {
	font-size: 3.25vw;
}

.sec_01 .schedule_table {
	margin-bottom: 6vw;
}

.sec_01 .schedule_table th {
	font-size: 3.25vw;
	padding: 1.33333vw 0;
}

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

.sec_01 .schedule_table th:nth-of-type(3) {
	width: 37%;
}

.sec_01 .schedule_table td {
	font-size: 3.25vw;
	padding: 1.33333vw 0.66667vw;
}

.sec_01 .sec_title_sb2 {
	margin: 3.33333vw 0;
}

.sec_01 .sec_title_sb2 span {
	width: 35vw;
	font-size: 3.75vw;
	padding: 0.66667vw 2.66667vw;
}

.sec_01 p {
	font-size: 4.25vw;
}

.sec_01 .cv_btn {
	margin-top: 2.66667vw;
}

.sec_02 .tokuten_tit {
	font-size: 5.25vw;
	margin-bottom: 2.66667vw;
}

.sec_02 .tokuten_tit span {
	width: 25vw;
	height: 6.66667vw;
	margin-bottom: 1.33333vw;
}

.sec_02 .tokuten_img {
	margin-top: 0;
}

.sec_02 .tokuten p {
	margin: 0;
}

.sec_02 .tokuten .txt_01 {
	margin-bottom: 5.33333vw;
}

.sec_02 .tokuten .txt_01 span {
	font-size: 4.5vw;
}

.sec_02 .tokuten .txt_01 span::before {
	left: -5%;
}

.sec_02 .tokuten .txt_01 span::after {
	right: -5%;
}

.sec_03 {
	background-position: center 110%;
}

.sec_03 .sec_inner {
	padding-bottom: 16.66667vw;
}

.sec_04 .txt_wrap .tit_fuki {
	margin-bottom: 5.33333vw;
}

.sec_04 .txt_wrap .tit_fuki span {
	font-size: 4vw;
	padding: 0.66667vw 5.33333vw;
}

.sec_04 .txt_wrap .tit_fuki span::after {
	left: calc(50% - 14px);
	border-width: 11px 14px 0 14px;
}

.sec_05 .box .tit {
	font-size: 5vw;
	margin: 0 -5% 5.33333vw;
}

.sec_05 .box.tp_arr {
	margin-top: 10.66667vw;
}

.sec_05 .box.tp_arr::before {
	top: -44px;
	left: calc(50% - 21px);
	width: 43px;
	height: 40px;
}

.sec_05 .box.show.tp_arr::before {
	top: -26px;
}

.sec_06 .box {
	padding-bottom: 8vw;
}

.sec_06 .box::after {
	top: calc(100% - 15px);
	width: 9px;
	height: 30px;
}

.sec_06 .box + .box {
	margin-top: 8vw;
}

.sec_06 .box .step_tit {
	font-size: 4vw;
	margin: 0 auto 4vw;
	width: 24vw;
	height: 6.66667vw;
}

.sec_06 .box > p {
	margin: 2.66667vw -5%;
}

.sec_06 .box figure {
	margin: 2.66667vw 0;
}

.sec_06 .box .list_box {
	padding: 2.66667vw 4vw;
	margin: 4vw 0;
}

.sec_06 .box .list_box li {
	padding-left: 25px;
}

.sec_06 .box .list_box li::before {
	top: 2vw;
}

.sec_06 .box.show::after {
	top: calc(100% - 5px);
}

.sec_07 .list_wrap ul {
	margin-top: 5.33333vw;
}

.sec_07 .list_wrap li {
	width: calc(50% - 14px);
	margin: 5.33333vw 7px 0;
}

.sec_07 .list_wrap li .icon {
	width: 70%;
	margin: 0 auto;
}

.sec_07 .list_wrap li p {
	font-size: 3.75vw;
	margin-top: 10px;
}

.sec_08 .box_tit {
	font-size: 5vw;
	margin-bottom: 2.66667vw;
}

.sec_08 .box_tit::before {
	width: 24px;
	height: 24px;
	line-height: 24px;
	margin-right: 10px;
}

.sec_08 .box .list_wrap {
	margin-top: -2.66667vw;
}

.sec_08 .box .list_cnt {
	width: 100%;
	margin-top: 2.66667vw;
}

.sec_08 .box .list_tit {
	text-align: center;
	height: 14.66667vw;
}

.sec_08 .box .list_tit span {
	font-size: 3.75vw;
}

.sec_09 .step_list li {
	padding: 4vw 2vw 4vw 4vw;
	font-size: 3.75vw;
}

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

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

.sec_09 .step_list li .icon {
	width: 20vw;
	margin: 0 auto 2.66667vw;
	text-align: center;
}

.sec_09 .step_list li .tit {
	font-size: 4vw;
	margin-bottom: 2vw;
	text-align: center;
}

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

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

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

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

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

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

.sec_10 .box.cta {
	margin-top: 6.66667vw;
	padding: 0;
}

.sec_10 .box.cta .cv_txt b {
	color: #a47133;
}

.sec_10 .box.cta .cv_txt b::after {
	background: #a47133;
}

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

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

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

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

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

.sec_11 .box_01 .list_box {
	padding: 8vw 2vw 2vw;
}

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

.sec_11 .box_01 .list_wrap li {
	font-size: 4vw;
	padding: 0 10px 10px;
	width: 50%;
}

.sec_11 .box_01 .list_wrap li figcaption {
	font-size: 3.25vw;
}

.sec_11 .box_02 .client_list figure {
	margin: 6.66667vw 0;
}

}

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

}

