@charset "UTF-8";

/*アイコンフォント*/
@import url("../font/fontawesome/fontawesome.css");
@import url("../font/icomoon/style.css");

/* oswald-200 - latin */
@font-face {
	font-display: swap;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 200;
	src: url('../font/Oswald/oswald-v56-latin-200.woff2') format('woff2');
	unicode-range: U+0041-005A, U+0061-007A, U+0030-0039; /* A-Z, a-z, 0-9 */
}
/* oswald-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 300;
	src: url('../font/Oswald/oswald-v56-latin-regular.woff2') format('woff2');
	unicode-range: U+0041-005A, U+0061-007A, U+0030-0039; /* A-Z, a-z, 0-9 */
}
/* oswald-600 - latin */
@font-face {
	font-display: swap;
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	src: url('../font/Oswald/oswald-v56-latin-600.woff2') format('woff2');
	unicode-range: U+0041-005A, U+0061-007A, U+0030-0039; /* A-Z, a-z, 0-9 */
}

html { font-size: 62.5%;}
img { max-width:100%; height:auto; }

body{
	min-width: 100%;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.6rem;
	line-height:2;
	letter-spacing: 0.01rem;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	background:#fff ;
	position: relative;
}
@media screen and (max-width:680px){ body{ font-size: 1.5rem; } }

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

:root {
	--red: #E01919;
	--blue: #444A7F;
}

a {
	font-weight: 600;
	text-decoration: none;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

address{ font-style: normal; }

@media screen and (min-width: 880px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}



/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

select::-ms-expand { display: none; }
input[type="button"]{ cursor: pointer; }

form, input[type="email"], input[type="number"], input[type="password"], input[type="tel"], input[type="text"], input[type="url"], .border-box {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input , select , textarea { font-family: Noto Serif JP, sans-serif;}


/*========/ フェードインアニメーション /========*/
.fadeIn {
	opacity: 0;
	-ms-filter: blur(6px);
	filter: blur(6px);
	transition: all 1s;
	transform : translate(0, 20px);
}
.on {
	opacity: 1;
	-ms-filter: blur(0px);
	filter: blur(0px);
	transform: translate(0, 0);
}


/*========/ 共通ボタン /========*/
.common-btn { text-align: center; }
.common-btn a {
	padding: 10px 80px 10px 60px;
	display: inline-flex;
	border: 1px solid #000;
	border-radius: 30px;
	align-items: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 600;
	background-color: #000;
	position: relative;
}
.common-btn a:after {
	content: "\a901";
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #000;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 0.8rem;
	font-family: 'icomoon';
	background-color: #fff;
	position: absolute;
    right: 16px;
}
.common-btn a:hover {
	border: 1px solid #fff;
	background-color: var(--red);
}


/*========/ pc背景 /========*/
body .pc-logo {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 100;
}
body .pc-logo img { width: 240px; }
body > div {
	position: relative;
	padding: 0;
	background-color: #f4f4f4;
}
body > div::after {
	content: "";
	position: fixed;
	bottom: 0;
	left: 0;
	width: calc(100% - 870px);
	height: 100%;
	background-image: url(../../img/pc-bg03.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	pointer-events: none;
}


/* fc背景 */
body .fc-bg::after { background-image: url(../../img/pc-fc-bg.png); }


@media screen and (max-width:1220px){
	body .pc-logo { position: absolute; }
}
@media screen and (max-width:880px){
	body .pc-logo { display: none; }
	body > div { padding: 0; }
}

/*========/ pcサイドメニュー /========*/
.nav_wrapper {
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.nav_wrapper > div {
	width: 280px;
	height: calc(100vh - 40px);
	padding: 20px 45px 20px 45px;
    overflow-y: auto;
	background: #f4f4f4;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 5;
}
.nav_wrapper > div::-webkit-scrollbar { display: none; }


.nav_wrapper .nav_list {
	width: calc(100% - 20px);
	margin: auto;
	list-style: none;
}
.nav_wrapper .nav_list > li { border-top: 1px solid #C0C0C0; }
.nav_wrapper .nav_list > li:first-child { border-top: none; }
.nav_wrapper .nav_list > li > a {
	padding: 18px 0;
	display: block;
	color: #000;
	position: relative;
}
.nav_wrapper .nav_list > li > a::after {
	content: "\a901"; /* IcoMoonのコードを使う */
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #fff;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 0.6rem;
	font-family: 'icomoon'; /* IcoMoonのフォント名 */
	background-color: #000;
	position: absolute;
    right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.nav_wrapper .nav_list > li > a:hover { color: var(--red); }
.nav_wrapper .nav_list > li > a:hover::after {
	color: #fff;
	background-color: var(--red);
}
.nav_wrapper .nav_list > li > ul li {
	padding-bottom: 10px;
	list-style: none;
	line-height: normal;
}
.nav_wrapper .nav_list > li > ul li:last-child { padding-bottom: 20px; }
.nav_wrapper .nav_list > li > ul li a {
	padding-left: 24px;
	color: #000;
	display: block;
	font-size: 1.4rem;
	position: relative;
}
.nav_wrapper .nav_list > li > ul li a::before {
    content: "";
    width: 16px;
    height: 3px;
    display: block;
    border-radius: 2px;
    background: #C0C0C0;
	position: absolute;
    left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.nav_wrapper .nav_list > li > ul li a:hover { color: var(--red); }
.nav_wrapper .nav_list > li > ul li a:hover::before { background: var(--red); }
.nav_wrapper .nav_kv-box {
	margin-top: 10px;
	display: flex;
	gap: 10px;
}
.nav_wrapper .nav_kv-box p { width: 50%; }
.nav_wrapper .nav_kv-box p a {
	height: 70px;
	padding: 10px 0;
    display: flex;
	border-radius: 10px;
	justify-content: center;
    align-items: end;
    color: #fff;
	font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    background-color: #000;
    position: relative;
    transition: background-color 0.3s;
    position: relative;
}
.nav_wrapper .nav_kv-box p a::after {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #000;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 1.2rem;
	font-family: 'icomoon';
	background-color: #fff;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.nav_wrapper .nav_kv-box .nav-con-btn a::after { content: "\e907";}
.nav_wrapper .nav_kv-box .nav-fc-btn a::after { content: "\e908";}
.nav_wrapper .nav_kv-box p a:hover { background-color: var(--red); }
.nav_wrapper .nav_kv-box p a:hover::after { color: var(--red); }
.nav_wrapper .nav_sns-box {
	height: 70px;
	margin-top: 10px;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	background-color: var(--red);
}
.nav_wrapper .nav_sns-box p {
	color: #fff;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: 600;
}
.nav_wrapper .nav_sns-box ul {
	display: flex;
	gap: 10px;
	list-style: none;
}
.nav_wrapper .nav_sns-box ul li a {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	border-radius: 50%;
}
.nav_wrapper .nav_sns-box ul li a img {
	width: 30px;
	height: auto;
	display: block;
}
.nav_wrapper .nav_sns-box ul li a:hover { opacity: 0.7; }


/* fcサイドメニュー */
.fc-nav_wrapper .nav_list > li > a:hover { color: var(--blue); }
.fc-nav_wrapper .nav_list > li > a:hover::after { background-color: var(--blue); }
.fc-nav_wrapper .nav_list > li > ul li a:hover { color: var(--blue); }
.fc-nav_wrapper .nav_list > li > ul li a:hover::before { background: var(--blue); }
.fc-nav_wrapper .nav_kv-box p a:hover { background-color: var(--blue); }
.fc-nav_wrapper .nav_kv-box p a:hover::after { color: var(--blue); }
.fc-nav_wrapper .nav_sns-box { background-color: var(--blue); }



@media screen and (max-width:880px){
.nav_wrapper > div {
	width: 240px;
	padding: 20px;
	}
}
@media screen and (max-width:680px){
	.nav_wrapper { display: none; }
}


/*========/ コンテンツ /========*/
.current{
    background-color: #fa8072 !important;
    a{ color: #fff !important; }
}
.article{
    max-width: 480px;
	width: 100%;
    margin: 0 370px 0 auto;
	border-left: solid 10px #fff;
	border-right: solid 10px #fff;
	background-color: #fff;
    position: relative;
	z-index: 5;
	-webkit-box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.3);
}


@media screen and (max-width:880px){
	.article{
    	width: calc(100% - 280px);
    	max-width: none;
		border: none;
	}
}
@media screen and (max-width:680px){
	.article{ width: 100%; }
}


/*========/ header /========*/
header {
    max-width: 100%;
	width: 100%;
	height: 70px;
	display: none;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
	position: fixed;
	z-index: 10;
	transition: background-color 0.3s ease;
}
header .logo {
	padding-left: 20px;
	flex: 1;
}
header .line { width: 32px; }
header .navi_block{
	display: flex;
	gap: 40px;
}

/* 下層ページ-背景赤 */
.header-red {
	background-color: var(--red);
}

/* スクロール後：背景白に変更 */
header.scrolled {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* 下層ページ-スクロール後：背景赤に変更 */
header.header-red.scrolled {
	background-color: var(--red);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


@media screen and (max-width:880px){
	header {
		width: calc(100% - 280px);
		display: flex;
	}
}
@media screen and (max-width:680px){
	header { width: 100%; }
}


/*==// #hamburger //==*/
.hamburger {
	margin: 0 20px;
    width: 30px;
    height: 30px;
	border: none;
	background: none;
    cursor: pointer;
    position: relative;
    z-index: 150;
}
.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(155deg);
}
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-155deg);
}

.hamburger span {
    transform: translate(-50%, -50%);
    width: 30px;
    height: 2px;
	background-color: #fff;
    position: absolute;
    left: 50%;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
.hamburger.is-active span { background-color: #fff; }
.hamburger span:nth-child(1) { top: 30%; }
.hamburger span:nth-child(2) { top: 60%; }
.hamburger span:nth-child(3) { top: 90%; }

/* スクロール禁止 */
body.menu-open {
	overflow: hidden;
	width: 100%;
}

/* スクロール後：黒に変更 */
header.scrolled .hamburger span { background-color: #000; }
header.scrolled .hamburger.is-active span { background-color: #fff }

/* 下層ページ-スクロール後：白に変更 */
header.header-red.scrolled .hamburger span { background-color: #fff; }
header.header-red.scrolled .hamburger.is-active span { background-color: #fff }


/*==// #drawer //==*/
.drawer {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    visibility: hidden;
    background-color: var(--red);
    position: fixed;
    top: 0;
    z-index: 130;
    opacity: 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	transform: skewY(-10deg);
	transform-origin: top left;
}
.drawer::-webkit-scrollbar-track { background: transparent; }
.drawer.is-active {
    visibility: visible;
    opacity: 1;
}
.drawer .drawer_logo {
    height: 70px;
	padding-left: 20px;
    display: flex;
    align-items: center;
    position: absolute;
	top: 0;
    left: 0;
	transform: skewY(10deg);
	transform-origin: bottom left;
}
.drawer .drawer-inner {
    padding: 0 20px 40px;
	text-align: center;
	position: relative;
	top: 80px;
	left: 50%;
	transform: translateX(-50%) skewY(10deg);
	transform-origin: top left;
}
.drawer .drawer_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
	list-style: none;
}
.drawer .drawer_list li a {
	color: #fff;
	position: relative;
}
.drawer .drawer_list li a::before {
	content: "";
	width: 0;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: -4px;
	transition: 0.3s;
}
.drawer .drawer_list li a:hover::before { width: 100%; }
.drawer .drawer_sns-list {
	margin-top: 40px;
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 40px;
	list-style: none;
}
.drawer .drawer_sns-list li { width: 32px; }
.drawer .drawer_sns-list li a:hover { opacity: 0.7; }


/* fcヘッダー */
.fc-header .drawer { background-color: var(--blue); }


@media screen and (max-width:880px){
	.drawer { width: calc(100% - 280px); }
}
@media screen and (max-width:680px){
	.drawer { width: 100%; }
}


/*========/ バナー:fixedarea /========*/
.kv-fixedarea {
	width: 100%;
	display: none;
	position: fixed;
	bottom: 0;
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
}

.kv-fixedarea ul {
	margin: 0;
	padding: 5px;
	display: flex;
	list-style: none;
	gap: 5px;
}

.kv-fixedarea li { width: 50%; }
.kv-fixedarea li a {
	height: 66px;
	padding: 0 15px 0 55px;
	display: flex;
	border: 1px solid #fff;
	border-radius: 10px;
	align-items: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	background-color: #000;
	position: relative;
	transition: background-color 0.3s;
	position: relative;
}
.kv-fixedarea li a::after {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #000;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 1.2rem;
	font-family: 'icomoon';
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.kv-fixedarea .con-btn a::after { content: "\e907";}
.kv-fixedarea .fc-btn a::after { content: "\e908";}
.kv-fixedarea li a:hover { background-color: var(--red); }
.kv-fixedarea li a:hover::after { color: var(--red); }


/* fcバナー */
.fc-kv-fixedarea li a:hover { background-color: var(--blue); }
.fc-kv-fixedarea li a:hover::after { color: var(--blue); }


@media screen and (max-width:680px){
	.kv-fixedarea{ display: block; }
}
/*========/ footer /========*/
footer {
	margin-top: 160px;
	padding-bottom: 60px;
	background-color: var(--red);
	position: relative;
}
footer .footer-bg {
	width: 100%;
	height: 50%;
	background-color: var(--red);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	transform: skewY(-10deg);
	transform-origin: top left;
}
footer .footer-inner {
	padding: 40px 40px 40px;
	text-align: center;
	background-color: transparent;
	position: relative;
	z-index: 1;
}
footer .footer-inner .footer-logo a img{ width: 220px; }
footer .footer-inner ul {
	margin-top: 40px;
	list-style: none;
}
footer .footer-inner ul li + li { margin-top: 10px; }
footer .footer-inner ul li a {
	color: #fff;
	position: relative;
}
footer .footer-inner ul li a::before {
	content: "";
	width: 0;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: -4px;
	transition: 0.3s;
}
footer .footer-inner ul li a:hover::before { width: 100%; }
footer .footer-inner small {
	margin-top: 40px;
	display: block;
	color: #fff;
}

.pagetop a::after {
	content: "\a902"; /* IcoMoonのコードを使う */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #fff;
	border: solid 1px #fff;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 2rem;
	font-family: 'icomoon'; /* IcoMoonのフォント名 */
	background-color: var(--red);
	position: absolute;
    right: 16px;
	bottom: 80px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.pagetop a:hover::after {
  opacity: 0.6;
}


/* 下層特殊フッター */
.abo-footer ,
.spe-footer ,
.rec-footer ,
.fc-footer { margin-top: 0;}


/* fcフッター */
.fc-footer { background-color: var(--blue); }
.fc-footer .footer-bg { background-color: var(--blue); }
.fc-footer .pagetop a::after { background-color: var(--blue); }

@media screen and (max-width:880px){
	footer .footer-inner { padding: 40px 20px 40px; }
}


/*========/ スクロールバー /========*/
::-webkit-scrollbar {
	width: 12px;
	background: transparent;
}
::-webkit-scrollbar-track {
	background: #dfdfdf;
}
::-webkit-scrollbar-thumb {
	width: 10px;
	background-color: #fff;
	border: 2px solid #aeaeae;
	border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #dfdfdf;
}
