@charset "utf-8";

/* ------------------------------
 リセット
------------------------------ */
* {
border:0;
margin:0;
/* outline:0; */
padding:0;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-ms-box-sizing:border-box;
-o-box-sizing:border-box;
box-sizing:border-box;
font:inherit;
font-family:inherit;
font-size:100%;
font-style:inherit;
font-weight:inherit;
text-decoration:none;
vertical-align:baseline;
}
html {font-size:62.5%; width:100%; height:100%;}
body {
font-size:10px;
font-size:1.0rem;
line-height:1;
position:relative;
text-align:center;
-webkit-text-size-adjust:100%;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
width:100%;
height:100%;
}
article, aside, dialog, figure, footer, header, main, menu, nav, section {display:block;}
audio, canvas, video {display:inline-block;}
hr {display:block;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:""; content:none;}
input, select {vertical-align:middle;}
table {border-collapse:collapse; border-spacing:0; empty-cells:show;}

/* input focus outline */
input:focus {
	outline: solid 2px var(--main-font-color);
}
:root {
	/* 共通カラー（採用以外） */
	--main-font-color: #2a2a2a;
	--base-color: #f5f6fa;
	--pink-color: #e83372;
	--blue-color: #3562d4;
	--gradation: linear-gradient(-45deg, #ff73c7 0, #3c60f0 60%, #26b0ff 100%);
	--header-height-pc: 90px /* PC時のheaderの高さ */;
	--header-height-sp: 50px /* SP時のheaderの高さ */;
}
/* ------------------------------
 サイト全体
------------------------------ */
html, body {
	margin: 0 auto;
	color: var(--main-font-color);
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}
.site {
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1.75;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
.cf:after {
	content: "";
	clear: both;
	display: block;
}
.fl { float: left; }
.fr { float: right; }
.tal { text-align: left !important; }
.tac { text-align: center !important; }
.tar { text-align: right !important; }
.vat { vertical-align: top; }
.vam { vertical-align: middle; }
.vab { vertical-align: bottom; }
strong, .bold { font-weight: 700; }
.nobold { font-weight: 400 !important; }
.auto {
	margin-inline: auto;
}
input.none { display:none; }
/* 行スペース */
.t1 { margin-top: 1.75em; }
.b1 { margin-bottom: 1.75em; }
.b2 { margin-bottom: 3.5em; }
.b3 { margin-bottom: 5.25em; }
/* スペース */
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt80 { margin-top: 80px !important; }
.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }
.mb130 { margin-bottom: 130px !important; }
.ml0 { margin-left: 0 !important; }
.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml20 { margin-left: 20px !important; }
.ml50 { margin-left: 50px !important; }
.ml1em { margin-left: 1em !important; }
.ml2rem { margin-left: 2rem !important; }
.mr0 { margin-right: 0 !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr20 { margin-right: 20px !important; }
.nopd { padding: 0 !important; }

/* リンク */
a {
	color: var(--main-font-color);
	text-decoration: none;
	transition: opacity .3s ease-in-out;
}
@media screen and (min-width: 768px) {
	a:hover {
		opacity: .7;
	}
}
/* カラー */
.red { color: #DB0000 !important; }
.pink {
	color: var(--pink-color) !important;
}
.blue {
	color: var(--blue-color) !important;
}
/* フォントサイズ */
.f11 { font-size: 1.1rem; }
.f12 { font-size: 1.2rem; }
.f13 { font-size: 1.3rem; }
.small, small,
.f14 { font-size: 1.4rem; }
.f15 { font-size: 1.5rem; }
.f16 { font-size: 1.6rem; }
.big,
.f18 { font-size: 1.8rem; }
.f19 { font-size: 1.9rem; }
.f20 { font-size: 2rem; }
.f21 { font-size: 2.1rem; }
.f22 { font-size: 2.2rem; }
.f25 { font-size: 2.5rem; }
.f26 { font-size: 2.6rem; }
.f27 { font-size: 2.7rem; }
.f28 { font-size: 2.8rem; }
.f48 { font-size: 4.8rem; }
.f18,.f19,.f20,.f21,.f22,.f25,.f26,.f27,.f28,.f48 { line-height: 1.5; }
/* 上付き */
sup {
	font-size: 80%;
	vertical-align:top;
}
/* 下付き */
sub {
	font-size: 80%;
	vertical-align:bottom;
}
/* 強調 */
em { font-style: italic; }
/* 打消し */
del { text-decoration: line-through; }
/* 引用・転用 */
blockquote { margin: 1em 3em; }
/* 非表示 */
.hide { display: none; }
/* インラインブロック */
.inline-block {
	display: inline-block;
}
/* インデント */
.ti1c {
	padding-left: 1em;
	text-indent: -1em;
}
.ti1hc {
	padding-left: 1.6em;
	text-indent: -1.6em;
}
.ti2c {
	padding-left: 2em;
	text-indent: -2em;
}
.ti3c {
	padding-left: 3em;
	text-indent: -3em;
}
.ti4c {
	padding-left: 4em;
	text-indent: -4em;
}
.ti5c {
	padding-left: 5em;
	text-indent: -5em;
}
/* 下線 */
u { text-decoration: underline; }
/* ルビ */
ruby rt { font-size: 50%; }
/* ------------------------------
 サイト全体（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.pc { display: block !important; }
	.sp { display: none !important;}
	.pc_tal { text-align: left !important; }
	.pc_tac { text-align: center !important; }
	.pc_tar { text-align: right !important; }
	.pc_bold { font-weight: bold;}
	.pc_nobr br { display: none; }
	/* スペース */
	.pc_mt20 { margin-top: 20px !important }
	.pc_mt10 { margin-top: 10px !important }
	.pc_mt5 { margin-top: 5px !important }
	.pc_mb0 { margin-bottom: 0 !important }
	.pc_mb10 { margin-bottom: 10px !important; }
	.pc_mb20 { margin-bottom: 20px !important; }
	.pc_mb25 { margin-bottom: 25px !important; }
	.pc_mb30 { margin-bottom: 30px !important; }
	.pc_mb40 { margin-bottom: 40px !important; }
	.pc_mb50 { margin-bottom: 50px !important; }
	.pc_mb60 { margin-bottom: 60px !important; }
	.pc_mb70 { margin-bottom: 70px !important; }
	.pc_mb80 { margin-bottom: 80px !important; }
	.pc_mb90 { margin-bottom: 90px !important; }
	.pc_mb100 { margin-bottom: 100px !important; }
	.pc_mr0 { margin-right: 0 !important; }
	.pc_mr10 { margin-right: 10px !important; }
	.pc_ml20 { margin-left: 20px !important; }
	/* TEL Link */
	a[href^="tel:"] {
		color: var(--main-font-color);
		text-decoration: none;
		pointer-events: none;
		cursor: default;
	}
	/* PCのみブロック */
	.pc_block {
		display: block;
	}
	.pc_block + br {
		display: none;
	}
	/* PCのみインラインブロック */
	.pc_inline-block {
		display: inline-block;
	}
	/* 別ページからのアンカーリンクの頭出し調整 */
	.contents [id] {
		scroll-margin-top: var(--header-height-pc);
	}
}
/* ------------------------------
 サイト全体（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	html, body {
		min-width: 100%;
		max-width: 100%;
	}
	.site {
		min-width: 0;
		font-size: 1.5rem;
	}
	.pc { display: none !important; }
	.sp { display: block !important; }
	.sp_db { display: block !important; }
	.sp_tac { text-align: center !important; }
	.sp_tal { text-align: left !important; }
	.sp_nobr br { display: none; }
	.fl, .fr { float: none; }
	/* スペース */
	.mt80 { margin-top: 50px !important; }
	.mb15 { margin-bottom: 10px !important; }
	.mb20 { margin-bottom: 15px !important; }
	.mb25 { margin-bottom: 15px !important; }
	.mb30 { margin-bottom: 20px !important; }
	.mb35 { margin-bottom: 20px !important; }
	.mb40 { margin-bottom: 25px !important; }
	.mb50 { margin-bottom: 30px !important; }
	.mb60 { margin-bottom: 40px !important; }
	.mb70 { margin-bottom: 45px !important; }
	.mb80 { margin-bottom: 50px !important; }
	.mb90 { margin-bottom: 55px !important; }
	.mb100 { margin-bottom: 60px !important; }
	.mb130 { margin-bottom: 100px !important; }
	.sp_mt10 { margin-top: 10px !important; }
	.sb_mt-30 { margin-top: -30px !important; }
	.sp_mb0 { margin-bottom: 0 !important; }
	.sp_mb5 { margin-bottom: 5px !important; }
	.sp_mb10 { margin-bottom: 10px !important; }
	.sp_mb15 { margin-bottom: 15px !important; }
	.sp_mb20 { margin-bottom: 20px !important; }
	.sp_mb25 { margin-bottom: 25px !important; }
	.sp_mb30 { margin-bottom: 30px !important; }
	.sp_mb40 { margin-bottom: 40px !important; }
	.sp_mb50 { margin-bottom: 50px !important; }
	.sp_mb60 { margin-bottom: 60px !important; }
	.sp_mb80 { margin-bottom: 80px !important; }
	.sp_ml2em { margin-left: 2rem !important; }
	.sp_mr0 { margin-right: 0 !important; }
	/* フォントサイズ */
	.f11 { font-size: 1rem; }
	.f12 { font-size: 1.1rem; }
	.f13 { font-size: 1.2rem; }
	.small,
	.f14 { font-size: 1.3rem; }
	.f15 { font-size: 1.4rem; }
	.f16 { font-size: 1.5rem; }
	.big,
	.f18 { font-size: 1.6rem; }
	.f19 { font-size: 1.7rem; }
	.f20 { font-size: 1.8rem; }
	.f21 { font-size: 1.9rem; }
	.f22 { font-size: 2rem; }
	.f25 { font-size: 2.3rem; }
	.f26 { font-size: 2.4rem; }
	.f27 { font-size: 2.5rem; }
	.f28 { font-size: 2.6rem; }
	.f48 { font-size: 3rem; }
	.nobr br { display: none; }
	/* PCのみインラインブロックのスマホ表示 */
	.sp_block {
		display: block;
	}
	.sp_block + br {
		display: none;
	}
	/* spのみインラインブロック */
	.sp_inline-block {
		display: inline-block;
	}
	/* 別ページからのアンカーリンクの頭出し調整 */
	.contents [id] {
		scroll-margin-top: var(--header-height-sp);
	}
}

/* ------------------------------
 ヘッダー
------------------------------ */
.header {
	height: var(--header-height-pc);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	z-index: 1000;
	width: 100%;
	padding-inline: 1.8%;
	transition: background-color .2s ease-in-out;
}
/* スクロールしたら背景黒 */
.header.is-scrolled {
	background-color: var(--main-font-color);
}
.header a {
	color: #fff;
}
/* ロゴ */
.logoBox {
	display: flex;
	align-items: center;
	width: auto;
	color: #fff;
	column-gap: 25px;
}
.logo-img {
	width: 164px;
}
.logoBox .text {
	padding-bottom: 3px;
	border-bottom: solid 1px rgba(255,255,255,.5);
	font-size: 1.4rem;
	font-weight: bold;
}
 .header .btn {
	display: flex;
	align-items: center;
}
/* ------------------------------
 ヘッダー（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	.header {
		min-width: 1240px;
	}
    .header .btn a {
		min-width: 200px;
		height: 50px;
		font-size: 1.4rem;
	}
}
/* ------------------------------
 ヘッダー（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.header {
		height: var(--header-height-sp);
		padding-inline: 2.6%;
	}
	/* ロゴ */
	.logoBox {
		column-gap: 10px;
	}
	.logo-img {
		width: 100px;
	}
	.logoBox .text {
		padding-bottom: 2px;
		font-size: 1.05rem;
	}
	/* ボタン */
	.header .btn a {
		width: 32px;
		height: 32px;
		padding: 0;
		border-radius: 100%;
		background: url(../../img/shortvideo/icon_mail.svg) no-repeat center center / 14px auto, var(--gradation);
	}
}

/* ------------------------------
 コンテンツ（PC）
------------------------------ */
.contents {
	position: relative;
	width: 100%;
	text-align: left;
	background-color: #fff;
}
.inBlock {
	text-align: left;
}
@media print, screen and (min-width: 768px) {
	.site {
		min-width: 1240px;
		margin: 0 auto;
	}
	.contents {
		min-width: 1240px;
		overflow: hidden;
	}
	/* 横幅1140px */
	.inBlock {
		width: 1140px;
		margin-inline: auto;
	}
	.contents .inBlock::after {
		content: "";
		display: block;
		clear: both;
	}
	/* 横幅1920px */
	.cms_block {
		width: 1140px;
		margin-inline: auto;
	}
	.cms_block.wide {
		width: 100%;
	}
	.wide > * {
		width: 1140px;
		margin-inline: auto;
	}
}
/* ------------------------------
 コンテンツ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.site {
		min-width: 320px;
		position: relative;
        bottom: 0;
	}
	.contents {
		min-width: 320px;
	}
	/* 入力 */
	.inBlock,
	.cms_block {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
	.inBlock .cms_block {
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
	}
	/* Wideの場合 */
	.cms_block.wide {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.cms_block.wide > *:not(.wide) {
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
	}
}

/* ------------------------------
 フッター（PC）
------------------------------ */
.footer {
	width: 100%;
	position: relative;
	padding: 60px 0 70px;
	background-color: var(--main-font-color);
	color: #fff;
}
.footer .inBlock,
.footer a {
	color: #fff;
}
.footer a[target="_blank"]::after {
	content: "";
	display: inline-block;
	width: 14px;
    height: 14px;
	margin: -3px 0 0 3px;
	background: #fff;
	-webkit-mask: url(../../img/shortvideo/icon_blank.svg) no-repeat center / cover;
	mask: url(../../img/shortvideo/icon_blank.svg) no-repeat center / cover;
    vertical-align: middle;
}
.footer .line-b {
	margin-bottom: 12px;
	padding-bottom: 25px;
	border-bottom: solid 1px rgba(215, 220, 226, 0.5);
}
/* コピーライト */
.footerCopy.flexBox {
	column-gap: 15px;
}
.copyright {
	font-family: "Roboto", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.2rem;
	line-height: 1;
}
.media_logo img {
	display: block;
	width: 144px;
}
@media print, screen and (min-width: 768px) {
	
}
/* ------------------------------
 フッター（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.footer {
		padding: 40px 0 30px;
	}
	.footer .line-b {
		margin-bottom: 10px;
		padding-bottom: 15px;
	}
}

/* ------------------------------
 ページトップ（PC）
------------------------------ */
.js-btn-pagetop {
	display: block;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	bottom: 70px;
	right: 3%;
	z-index: 100;
	width: 44px;
    height: 44px;
	border-radius: 50%;
	transition: .2s ease 0s;
	cursor: pointer;
}
.js-btn-pagetop.is-show {
	visibility: visible;
	opacity: 1;
}

@media print, screen and (min-width: 768px) {
	a.js-btn-pagetop.is-show:hover {
		opacity: 1;
	}
}
/* ------------------------------
 ページトップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.js-btn-pagetop {
		bottom: 40px;
		right: 3%;
		width: 38px;
		height: 38px;
	}
	.js-btn-pagetop::before {
		top: 5px;
		width: 10px;
		height: 10px;
	}
}

/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
	html,
	body {
		background: none;
	}
	.header {
		position: absolute;
	}
	
}
/* -- 余白 -- */
@page {
	margin: 9.7mm 9.7mm;
}