@charset "UTF-8";

/* -----------------------------------------------------------------
reset
------------------------------------------------------------------ */
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
img {
	width: 100%;
	height: auto;
	display: block;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
b, strong {
	font-weight: bold;
}

/* -----------------------------------------------------------------
preset
------------------------------------------------------------------ */
html, body {
	-webkit-backface-visibility: hidden;
}
html {
	font-size: 62.5%;
}
@media screen and (max-width: 767px) {
	html {
		font-size: 59.375%;
	}
}
body {
	background-color: #ffffff;
	color: #222;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 400;
	font-family: 'Inter', 'BIZ UDPGothic', 'メイリオ', Meiryo, '游ゴシック', 'Yu Gothic', sans-serif;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
	body {
		width: 100%;
		height: 100%;
		min-width: 1208px;
	}
}
/*.safari body {
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: auto;
	font-smoothing: subpixel-antialiased;
}*/
.mac body, .iphone body, .ipod body, .ipad body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}
/* Roboto */
.roboto {
	font-family: Roboto, sans-serif;
}
.mac .roboto {
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
}
h1, h2, h3, h4 {
	color: #222;
	margin: 0;
	padding: 0;
}
p {
	font-size: 18px;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	p {
		font-size: 16px;
	}
}
a {
	color: #222;
	text-decoration: none;
}
a:hover span,
a:hover {
	text-decoration: none;
}
a:hover img {
	opacity: .8;
}

/* CSS変数代入 */
:root {
	--purple: #6461A2;
	--white: #fff;
	--darkblue: #0C2F54;
}

/* -----------------------------------------------------------------
common
------------------------------------------------------------------ */
.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}
}

/*背景*/
.bg1 {
	background: #F3F2FF;
}
.bg2 {
	background: #F8F8F8;
}
.bg3 {
	background: var(--purple);
	color: #FFF;
}
.bg4 {
	position: relative;
}
.bg4:before {
	content: "";
	transform: scaleX(-1);
	background: url(/skill_assessment/img/bg.jpg) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

/*陰*/
.shadow {
	box-shadow: 0 0 15px rgba(0,0,0,.11);	
}

.highlight {
	font-weight: bold;
	background-color: #000;
	color: #A09BFF;
}
.underline {
	text-decoration: underline;
	text-decoration-color: #A09BFF;
	text-decoration-thickness: 3px;
	text-underline-offset: 7px;
}
.small {
	font-size: 14px;
}

/*.container*/
[class*=container] {
	max-width: 100%;
	width: 1308px;
	margin: 0 auto;
	padding: 0 50px;
}
.container-s {
	width: 1100px;
}
@media screen and (max-width: 767px) {
	[class*=container] {
		padding: 0 15px;
	}
}

/*.mod_section*/
.mod_section {
	padding: 80px 0;
}
.mod_section2 {
	padding: 20px 0 80px;
	position: relative;
	z-index: 1;
}
.mod_section3 {
	padding: 0 0 80px;
}
.mod_section4 {
	padding: 60px 0;
}
.mod_section5 {
	padding: 70px 0;
}

/* -----------------------------------------------------------------
.mod_headerarea
------------------------------------------------------------------ */
.mod_headerarea {
	background: #fff;
	position: fixed;
	top: 0;
	z-index: 30;
	min-width: 1308px;
	width: 100%;
	height: 80px;
}
.mod_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding-left: 50px;
	position: relative;
	z-index: 30;
	background: var(--white);
}
.mod_header .logo {
	max-width: 179px;
}
.mod_header .logo a:hover img {
	opacity: 1;
}

/* .mod_gnavi */
.mod_gnavi {
	display: flex;
	gap: 30px;
	align-items: center;
	font-size: 16px;
	font-feature-settings: normal;
	height: 80px;
}
.mod_gnavi li:not(.mod_btnarea) a {
	padding: 5px 0;
	position: relative;
	display: inline-block;
	margin: 0;
	text-decoration: none;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.4;
}
.mod_gnavi li:not(.mod_btnarea) a::before,
.mod_gnavi li.current a::before {
	content: "";
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
	border-bottom: 2px solid var(--purple);
	transition: .4s ease;
	transform: scaleX(0);
	transform-origin: left center;
	will-change: transform;
	will-change: top;
}
.mod_gnavi li:not(.mod_btnarea) a:hover::before,
.mod_gnavi li.current a::before {
	transform: scaleX(1);
}
/*.mod_gnavi li:not(.mod_btnarea) a:hover span {
	color: var(--purple);
}*/
.mod_gnavi .mod_btnarea {
	display: block;
	height: 100%;
	margin-top: 0;
}
.mod_gnavi .mod_btn {
	width: 189px;
	font-size: 13px;
	padding: 14.5px;
	background-color: var(--purple);
	border-radius: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
}
.mod_gnavi .mod_btn .txt {
	color: var(--white);
}
.mod_gnavi .mod_btn .txt .icon {
	color: var(--white);
	font-size: 13px;
}
.mod_gnavi .mod_btn:after {
	background: var(--darkblue);
	border-radius: 0;
}

@media screen and (min-width: 768px) {
	.mod_headerarea {
		min-width: 1200px;
	}
}
@media screen and (max-width: 767px) {
	.mod_headerarea {
		min-width: auto;
		width: 100% !important;
		height: 64px;
	}
	.mod_header {
		padding: 20px 15px;
		height: 100%;
	}
	.mod_logoarea .logo {
		max-width: 107px;
	}
	.mod_gnavi {
		display: none !important;
	}
}

/**
 * .drawer (top)
 */
/* .drawer-hamburger */
@media print, screen and (min-width: 768px) {
	.drawer--top .drawer-hamburger,
	.drawer--top .drawer-nav {
		display: none;
	}
}
.drawer--top .drawer-hamburger {
	position: fixed;
	top: 0px;
	right: 0px;
	width: 64px;
	height: 64px;
	padding: 0;
	z-index: 540;
	transition: none;
	background-color: transparent;
}
.drawer-hamburger-icon {
	margin: 0px auto 0;
}
.drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
	background-color: var(--purple);
	width: 20px;
}
.drawer-hamburger-icon:before {
	top: -7px;
}
.drawer-hamburger-icon:after {
	top: 7px;
}
.drawer-open .drawer-hamburger-icon:before, .drawer-open .drawer-hamburger-icon:after {
	background-color: var(--purple);
}
/* .drawer-nav */
.drawer-nav a {
	outline: none;
}
.drawer--top .drawer-nav {
	/*left: -18rem;*/
	max-height: none;
	z-index: 20;
	text-align: center;
}
.drawer--top.drawer-open .drawer-nav {
	position: fixed;
	top: 64px !important;
	bottom: 0;
	left: 0;
	background-color: var(--white);
	width: 100%;
	z-index: 20;
}
.drawer-menu {
	padding: 0  0 30px;
}
.drawer--top.drawer-open .drawer-menu {
	transition-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
	transition-duration: 0ms;
	transform: translate(0px, 0px) translateZ(0px);
}
/* .drawer-overlay */
.drawer-overlay {
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
	top: 64px;
}
/* .drawer-menu */
.drawer .drawer-nav ul.drawer-menu > li {
	border-bottom: 1px solid #E6E6E6;
	font-size: 16px;
	font-size: 1.6rem;
}
/*.drawer .drawer-nav ul.drawer-menu > li:first-of-type {
	border-top: 1px solid #89898A;
}*/
.drawer .drawer-nav ul.drawer-menu > li:last-of-type {
	border: none;
}
.drawer .drawer-nav ul.drawer-menu > li:not(.mod_btnarea) > a {
	display: block;
	overflow: hidden;
	color: #222;
	text-decoration: none;
	font-size: 16px;
	font-size: 1.6rem;
	padding: 17px 20px;
	text-align: left;
	position: relative;
}
.drawer .drawer-nav ul.drawer-menu > li:not(.mod_btnarea) > a > .icon {
	font-size: 16px;
	font-size: 1.6rem;
	color: #FFF;
	width: 20px;
	height: 20px;
	background: var(--purple);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	position: absolute;
	top: calc(50%);
	transform: translateY(-50%);
	right: 20px;
	z-index: 1;
	margin: 0 0 0 6px;
	padding-left: 0;
}
.drawer .mod_btnarea {
	margin-top: 0;
}
.drawer * + .mod_btnarea {
	margin-top: 30px;
}
.drawer .mod_btnarea .mod_btn {
	display: block;
	width: 200px;
	padding: 14.5px 10px;
	margin: 0;
	font-size: 15px;
	background: var(--purple);
	box-shadow: none;
}
.drawer .mod_btnarea .mod_btn:after {
	content: none;
}
.drawer .mod_btnarea .mod_btn .txt,
.drawer .mod_btnarea .mod_btn .txt .icon {
	color: #FFF;
	font-size: 15px;
}

/* -----------------------------------------------------------------
.mod_btnarea
------------------------------------------------------------------ */
.mod_btnarea {
	text-align: center;
	margin-top: 50px;
	display: flex;
	justify-content: center;
	gap: 40px;
}
.mod_btn {
	display: block;
	border-radius: 3px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	width: 100%;
	background-color: var(--white);
	font-size: 20px;
	padding: 24px;
	max-width: 584px;
	transition: .5s;
	position: relative;
	box-shadow: 0 0 20px rgba(0,0,0,.16);
}
.mod_btn .txt {
	position: relative;
	z-index: 1;
	color: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.mod_btn .txt .icon {
	color: var(--darkblue);
	font-size: 23px;
}
.mod_btn:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--purple);
	border-radius: 3px;
	-webkit-transition: .4s ease;
	-ms-transition: .4s ease;
	transition: .4s ease;
	width: 0;
	height: 100%;
}
.mod_btn:hover:after {
	width: 100%;
}
.mod_btn.color2 .txt {
	color: var(--darkblue);
}
.mod_btn.color2:after {
	background: var(--darkblue);
}
.mod_btn:hover .txt,
.mod_btn:hover .txt .icon {
	color: var(--white);
}

@media screen and (max-width: 767px) {
	.mod_btnarea {
		margin-top: 40px;
		gap: 15px;
	}
	.mod_btn {
		margin: 0 auto;
		font-size: 16px;
	}
	.mod_btn:hover {
		transform: none;
	}
}

/* -----------------------------------------------------------------
.mod_mainarea
------------------------------------------------------------------ */
.mod_mainarea {
	padding-top: 80px;
}
@media screen and (max-width: 767px) {
	.mod_mainarea {
		padding-top: 64px;
	}
}

/* -----------------------------------------------------------------
.mod_mainvisual
------------------------------------------------------------------ */
.mod_mainvisualarea {
	background: url(/skill_assessment/img/img_main.jpg) center no-repeat;
	background-size: cover;
}
.mod_mainvisualarea .container {
	padding-top: 70px;
	padding-bottom: 70px;
}
.mod_mainvisualarea .main_title {
	font-size: 58px;
	color: var(--white);
	text-shadow: 0 0 10px rgba(0,0,0,.8);
	max-width: fit-content;
}
.mod_mainvisualarea .main_text {
	color: var(--white);
	font-size: 30px;
	font-weight: bold;
	margin-top: 20px;
	max-width: fit-content;
}
.mod_mainvisualarea .highlight {
	font-size: 38px;
}
.mod_mainvisualarea .sub_text {
	font-size: 20px;
	color: var(--white);
	padding: 17px 13px;
	margin-top: 50px;
	max-width: fit-content;
	font-family: 'Frank Ruhl Libre', serif;
}
@media screen and (max-width: 767px) {
	.mod_mainvisualarea {
		background-position: right 27% center;
	}
	.mod_mainvisualarea .main_title {
		font-size: 40px;
	}
	.mod_mainvisualarea .main_text {
		font-size: 24px;
	}
	.mod_mainvisualarea .highlight {
		font-size: 32px;
	}
	.mod_mainvisualarea .sub_text {
		font-size: 16px;
		margin-top: 40px;
	}
}

/* -----------------------------------------------------------------
.page-nav-area
------------------------------------------------------------------ */
.page-nav-area {
	padding: 25px 0;
	background: #F8F8F8;
}
.page-nav-inner {
	position: relative;
	height: 100%;
	margin: 0 auto;
}
.page-nav-area ul {
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
	justify-content: center;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.page-nav-area ul {
		display: block;
	}
}
.page-nav-area ul li + li {
	margin-left: 40px;
}
@media screen and (max-width: 767px) {
	.page-nav-area ul li + li {
		margin-left: 0px;
		margin-top: 15px;
	}
}
.page-nav-area ul li a {
	position: relative;
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
	align-items: center;
}
.page-nav-area ul li .icon {
	font-size: 16px;
	font-size: 1.6rem;
	color: #f27000;
}
.page-nav-area ul li .icon + .linktext {
	margin-left: 6px;
}
.page-nav-area ul li a .linktext {
	position: relative;
}
.page-nav-area ul li a:hover .linktext {
	color: #F27000;
}
.page-nav-area ul li a:hover .linktext:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1)
}
.page-nav-area ul li .linktext:after {
	display: block;
	position: absolute;
	bottom: -4px;
	content: "";
	width: 100%;
	border-bottom: 1px solid #f27000;
	color: #f27000;
	-webkit-transition: .4s ease;
	-ms-transition: .4s ease;
	transition: .4s ease;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

/* -----------------------------------------------------------------
.mod_conbox
------------------------------------------------------------------ */
.mod_conbox {
	padding: 45px 65px;
	box-shadow: 0 0 20px rgba(0,0,0,.1);
	border-radius: 3px;
}
.mod_conbox .title {
	font-size: 20px;
	color: var(--purple);
	text-align: center;
}
@media screen and (max-width: 767px) {
	.mod_conbox {
		padding: 45px 30px;
	}
	.mod_conbox .title {
		font-size: 18px;
	}
}

/*.mod_col*/
.mod_col {
	display: flex;
	justify-content: flex-end;
}
.mod_col .textbox * + * {
	margin-top: 30px;
}
.mod_col .textbox .title {
	font-size: 26px;
}
.mod_col .textbox .title + p {
	margin-top: 10px;
}
.mod_col .textbox .text2 {
	font-weight: bold;
	color: #BE6221;
}
.mod_col .textbox .mod_btnarea {
	justify-content: flex-start;
}
.mod_col .textbox .mod_btn {
	min-width: 584px;
}
@media screen and (max-width: 767px) {
	.mod_col {
		display: block;
	}
	.mod_col .textbox .title {
		font-size: 24px;
	}
	.mod_col .textbox .mod_btn {
		min-width: auto;
	}
}

/*.mod_list*/
.mod_list {
	margin-top: 30px;
}
.mod_list li {
	position: relative;
}
.mod_list li:before {
	content: "";
	background: url(/skill_assessment/img_com/icon_check.svg) no-repeat center;
	width: 34px;
	height: 26px;
	position: absolute;
	left: 0;
	top: 0;
}
.mod_list p {
	padding-left: 44px;
}
.mod_list li + li {
	margin-top: 20px;
}
.mod_list li p {
	font-size: 24px;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.mod_list li p {
		font-size: 20px;
	}
}

/*.mod_textbox*/
* + .mod_textbox {
	margin-top: 40px;
}
.mod_textbox {
	text-align: center;
}
.mod_textbox p + p {
	margin-top: 20px;
}
.mod_h21 {
	font-size: 26px;
	color: var(--darkblue);
}
.mod_h21 + p {
	margin-top: 50px;
}
.mod_textbox .text2 {
	font-size: 26px;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.mod_h21 {
		font-size: 24px;
	}
	.mod_textbox .text2 {
		font-size: 24px;
	}
}

/*.mod_textbox2*/
.mod_textbox2 {
	background: var(--darkblue);
	padding: 32px;
	text-align: center;
	color: var(--white);
	border-radius: 3px;
}
.mod_textbox2 p {
	font-size: 26px;
	line-height: 1.8;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.mod_textbox2 {
		padding: 30px;
	}
	.mod_textbox2 p {
		font-size: 24px;
	}
}

.conwrap.con1 {
	position: relative;
	z-index: 1;
}
.conwrap.con2 {
	transform: translateY(-55px);
}
.conwrap.bg1 {
	position: relative;
	margin-bottom: 40px;
	padding: 105px 0 80px;
}
.conwrap.bg1:before {
	content: "";
	border-top: 40px solid #F3F2FF;
	border-right: 45px solid transparent;
	border-left: 45px solid transparent;
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
}

/* -----------------------------------------------------------------
.mod_col3
------------------------------------------------------------------ */
* + .mod_col3 {
	margin-top: 50px;
}
.mod_col3 {
	display: flex;
	gap: 40px;
}
.mod_set {
	flex: 1;
	box-shadow: 0 0 20px rgba(0,0,0,.13);
	width: 33.333%;
}
.mod_set .cat {
	font-size: 20px;
	color: var(--white);
	background: var(--purple);
	padding: 15px;
	text-align: center;
	width: 100%;
}
.mod_set .boxwrap {
	background: var(--white);
}
.mod_set .boxwrap .thubox {
	max-width: 376px;
	margin: 0 auto;
}
.mod_set .textbox {
	padding: 30px 50px 50px;
	position: relative;
}
.mod_set .textbox:before {
	content: "";
	width: calc(100% - 100px);
	height: 2px;
	background: #EDEDED;
	position: absolute;
	top: 0;
	left: 50px;
}
.mod_set .corp {
	font-size: 20px;
	text-align: center;
}
.mod_set .quote_text {
	margin-top: 45px;
	position: relative;
}
.mod_set .quote_text:before {
	content: "";
	width: 57px;
	height: 44px;
	background: url(/skill_assessment/img_com/icon_quote.svg) center no-repeat;
	position: absolute;
	left: -20px;
	top: -25px;
}
.mod_set .quote_text > * {
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 767px) {
	.mod_col3 {
		flex-wrap: wrap;
	}
	.mod_set {
		flex: none;
		width: 100%;
	}
	.mod_set .cat,
	.mod_set .corp {
		font-size: 18px;
	}
	.mod_set .textbox {
		padding: 30px 30px 50px;
	}
	.mod_set .textbox:before {
		width: calc(100% - 60px);
		left: 30px;
	}
	.mod_set .quote_text:before {
		left: -10px;
	}
}

/* -----------------------------------------------------------------
.mod_col2
------------------------------------------------------------------ */
.mod_col2 {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
.mod_col2 .textbox .title {
	font-size: 26px;
}
.mod_col2 .textbox .title + p {
	margin-top: 30px;
}
.mod_col2 .textbox p + p {
	margin-top: 20px;
}
.bg3 .mod_col2 .textbox .title {
	color: #FFF;
}
.bg3 .mod_col2 .textbox .thubox {
	margin-top: 30px;
}
.mod_col2 .mod_btnarea {
	justify-content: flex-start;
	margin-top: 60px;
}
.mod_list2 {
	counter-reset: mycounter;
}
.mod_list2 li {
	margin-top: 70px;
	position: relative;
}
.mod_list2 li:before {
	content: counter(mycounter);
	counter-increment: mycounter;
	height: 34px;
	width: 34px;
	background: var(--purple);
	border-radius: 2px;
	font-size: 18px;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}
.mod_list2 .mod_col2 > * {
	flex: 1;
}
.mod_list2 .mod_col2 .textbox .title {
	padding-left: 50px;
	font-size: 24px;
}
@media screen and (max-width: 767px) {
	.mod_col2 {
		flex-wrap: wrap;
	}
	.mod_col2 > * {
		width: 100%;
	}
	.mod_list2 .mod_col2 > * {
		flex: none;
	}
	.mod_col2 .thubox {
		max-width: fit-content;
		margin: 0 auto;
	}
	.mod_col2 .textbox .title {
		font-size: 24px;
	}
}

/*.mod_detailbox*/
.mod_detailbox {
	margin-top: 70px;
}
.mod_detailbox .title {
	font-size: 24px;
}
.mod_detailbox > .title {
	text-align: center;
}
.mod_col2.style2 {
	background: #FFF;
	gap: 0;
}
.mod_col2.style2 .col {
	padding: 40px;
}
.mod_col2.style2 .col:last-child {
	position: relative;
}
.mod_col2.style2 .col:last-child:before {
	content: "";
	height: calc(100% - 80px);
	width: 1px;
	background: #E6E6E6;
	position: absolute;
	left: 0;
	top: 40px;
}
.mod_detailbox .mod_col2 {
	margin-top: 40px;
}
.mod_col2.style2 p {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.mod_detailbox .title {
		font-size: 22px;
	}
	.mod_col2.style2 .col:last-child:before {
		content: "";
		height: 1px;
		width: calc(100% - 80px);
		background: #E6E6E6;
		position: absolute;
		left: 40px;
		top: 0;
	}
}

/*.mod_usefularea*/
.mod_usefularea .mod_col2 .thubox {
	max-width: 453px;
}

/* -----------------------------------------------------------------
.mod_ctabox
------------------------------------------------------------------ */
.mod_ctabox {
	background-color: var(--darkblue);
	color: var(--white);
	padding: 80px 0;
	text-align: center;
}
.mod_ctabox .mod_h21 {
	color: var(--white);
}
.mod_ctabox .mod_h21 + p,
.mod_ctabox .mod_btnarea {
	margin-top: 40px;
}
.mod_ctabox .small {
	margin-top: 30px;
}
.mod_ctabox .tel {
	font-size: 30px;
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.mod_ctabox .tel span {
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	padding: 2px 0;
	font-size: 12px;
}


/* -----------------------------------------------------------------
.footer-content-inner
------------------------------------------------------------------ */
#footer .footer-content-inner {
	padding-top: 35px;
	padding-bottom: 55px;
}
#footer .footer-content-inner .footer-info {
	font-size: 12px;
	font-size: 1.2rem;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
#footer .footer-content-inner .footer-info ul {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}
#footer .footer-content-inner .footer-info ul li {
	display: inline-block;
}
#footer .footer-content-inner .footer-info ul li a {
	display: block;
	color: #222;
	font-size: 12px;
	font-size: 1.2rem;

	padding-bottom: 0;
}
#footer .footer-content-inner .footer-info ul li a:hover {
	color: var(--on24);
	text-decoration: underline;
}
#footer .footer-content-inner .footer-info ul li + li a {
	margin-left: 10px;
	padding-left: 10px;
	border-left: #E6E6E6 1px solid;
}
#footer .footer-content-inner .footer-info ul li:last-child {
	margin-right: 0;
}
#footer .footer-content-inner .footer-copyright {
	line-height: 1;
	color: #222;
}
#footer p.footer-copyright{
	font-size: 12px;
	font-size: 1.2rem;
}
#footer .footer-content .common-share {
	margin-left: auto;
}

@media screen and (max-width: 767px) {
	#footer .footer-content-inner .footer-info {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

/* -----------------------------------------------------------------
.animation
------------------------------------------------------------------ */
/*.inview*/
.inview {
	opacity: 0;
	transform: translateY(40px)
}
.inview-ready .inview {
	transition: opacity 1s ease,transform 1s ease
}
.inview-ready .inview.inview-on {
	opacity: 1;
	transform: translateY(0)
}

/*.amimate_title*/
.animate_title .title {
	overflow: hidden;
	transform: translate(-100%, 0);
	transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.animate_title .title span {
	display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.animate_title .title.animated,
.animate_title .title.animated span {
	transform: translate(0, 0);
}

.animate_title .text,
.animate_title .text span {
	position: relative;
	color: transparent;
	background-color: transparent;
}
.animate_title .text:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0%;
	right: 100%;
	bottom: 0%;
	left: 0%;
	background: #000;
}
.animate_title .text.animated {
	animation-name: closeMask;
	animation-duration: 0s;
	animation-delay: 0.35s;
	animation-fill-mode: forwards;
}
.animate_title .text.animated span {
	animation-name: closeMask2;
	animation-duration: 0s;
	animation-delay: 0.35s;
	animation-fill-mode: forwards;
}
.animate_title .text.animated:before {
	animation-name: openMask;
	animation-duration: .7s;
	animation-fill-mode: forwards;
}
@keyframes closeMask {
	100% {
			color: #FFF;
			text-shadow: 0 0 20px rgba(0,0,0,.8);
	}
}
@keyframes closeMask2 {
	100% {
			color: #A09BFF;
			background-color: #000;
	}
}
@keyframes openMask {
	50% {
			left: 0%;
			right: 0%;
	}
	100% {
			left: 100%;
			right: 0%;
	}
}
.animate_title .text2 {
	position: relative;
	opacity: 0;
}
.animate_title .text2::before {
	position: absolute;
	content: '';
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
	opacity: 0;
	top: 25%;
	bottom: 25%;
	left: 0;
	right: 0;
	border-top: 3px double #5d728a;
	border-bottom: 3px double #5d728a;
}
.animate_title .text2.animated {
	opacity: 1;
}
.animate_title .text2.animated:before {
	opacity: 1;
	top: 0;
	bottom: 0;
}

/* -----------------------------------------------------------------
mod_followbtn
------------------------------------------------------------------ */
.mod_followbtn3 {
	display: none;
	width: 240px;
	position: fixed;
	top: 144px;
	right: 45px;
	z-index: 9;
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	border-radius: 3px;
	box-shadow: 0 0 20px rgba(0,0,0,.13);
}
.mod_followbtn3 .followbtn-close {
	position: absolute;
	right: -5px;
	top: -5px;
	padding: 0;
	width: 21px;
	height: 21px;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 10;
}
.mod_followbtn3 img {
	width: 100%;
	height: auto;
	border-radius: 3px;
}
.mod_followbtn3 > a {
	display: block;
	width: 100%;
	height: 100%;
}
.mod_followbtn3 > a img {
	-webkit-transition: opacity 0.30s;
	-ms-transition: opacity 0.30s;
	transition: opacity 0.30s;
}
.mod_followbtn3 > a:hover img {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.mod_followbtn3 {
		display: none !important;
	}
}

/* -----------------------------------------------------------------
.common-btn-top
------------------------------------------------------------------ */
.common-btn-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 8;
	transition: bottom .4s ease;
}
.common-btn-top a {
	padding-top: 13px;
	padding-bottom: 10px;
	width: 48px;
	background: black no-repeat 14px 17px;
	color: #ffffff !important;
	font-size: 24px;
	font-size: 2.4rem;
	display: block;
	text-align: center;
	border-radius: 3px;
	opacity: 0.5;
	line-height: 1;
}

/*============== .sns =================*/
.sns-1 {
	margin-top: 0px;
	padding-bottom: 40px;
}
.sns-1.m-t {
	margin-top: 30px;
}
.sns-1 .common-container-inner > *,
.sns-1 .contentsbox-2 > * {
	display: inline-block;
	vertical-align: bottom;
}
.sns-1 .common-container-inner > * + *,
.sns-1 .contentsbox-2 > * + * {
	margin-left: 5px;
}
.sns-1.center .common-container-inner,
.sns-1.center .contentsbox-2 {
	text-align: center;
}

/*シェアボタンの欠け修正*/
/*.sns-1 .fb_iframe_widget span,
.sns-1 .fb_iframe_widget iframe {
	width: 160px !important;
}*/

.sns-1.center .container {
	padding-top: 30px;
	padding-bottom: 30px;
}
/*.sns-1 + * {
	margin-top: 40px;
}*/

/* -----------------------------------------------------------------
微調整
------------------------------------------------------------------ */
.mt0 {
	margin-top: 0!important;
}
.mt60 {
	margin-top: 60px!important;
}

.pt0 {
	padding-top: 0!important;
}
.pt20 {
	padding-top: 20px!important;
}
.pb0 {
	padding-bottom: 0!important;
}

@media screen and (min-width: 768px) {
	#an1, #an2, #an3, #an4 {
		margin-top: -79px;
		padding-top: 79px;
	}
	/*#an1 {
		padding-top: 99px;
	}*/
}
