@charset "utf-8";

/* ---------------------------------------------------------------------------
 * ROOT
--------------------------------------------------------------------------- */
:root {
	--color_01: #ffcc00;	/* var(--color_01) */
	--color_02: #fff1b9;	/* var(--color_02) */
	--txt_jpn_01: "Puhu Picnic";	/* var(--txt_jpn_01) */
	--txt_jpn_02: "Gosha E";	/* var(--txt_jpn_02) */
}

/* ---------------------------------------------------------------------------
 * RESET STYLE
--------------------------------------------------------------------------- */
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%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* =============================================
 COMMON
============================================= */
body {
	background: #fafafa;
	font-family: 'Roboto', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'Osaka', sans-serif;
	line-height: 1;
	-webkit-text-size-adjust: none;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

a {
	color: var(--color_01);
	text-decoration: none;
}

b {
	font-weight: bold;
}

.wrap {
	overflow: hidden;
}

@media print, screen and (max-width:640px) {
	.onlyPC {
		display: none !important;
	}

	.onlyTAB {
		display: none !important;
	}

	.onlySP {
		display: block;
	}
}

@media print, screen and (min-width:641px) {
	.onlyPC {
		display: block;
	}

	.onlySP {
		display: none !important;
	}
}

@media print, screen and (min-width:641px) and (max-width:1000px) {
	.onlyTAB {
		display: block;
	}

	.noTAB {
		display: none !important;
	}
}

@media print, screen and (min-width:1001px) {
	.onlyTAB {
		display: none !important;
	}
}

/**/

/* =============================================
 ヘッダー
============================================= */
.header {
	width: 100%;
	/* position: absolute; */
	top: 0;
	z-index: 5;
}

.header.fixed {
	width: 100%;
	position: fixed;
	padding-bottom: 0;
	margin-top: 0;
	top: 0;
	left: 0;
	z-index: 100;
}

.header_inner {
	max-width: 1000px;
	padding: 2%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}

.header_top {
	background: #fff;
}

.header_logo {
	width: 24%;
	max-width: 110px;
	transition: .3s;
}

.fixed .header_logo {
	width: 18%;
}

.header_bot {
	background: var(--color_01);
	position: relative;
}

.header_bot .header_inner {
	min-height: 11vw;
	background: url(../img/bg_header.png) no-repeat top 10% right 15%;
	background-size: 30%;
}

.header_title {
	width: 70%;
	/* max-width: 340px; */
	max-width: 460px;
	margin-right: auto;
	position: relative;
	transition: .3s;
}

.fixed .header_title {
	width: 60%;
}

.header_title::before {
	content: "";
	width: 26%;
	height: 300%;
	background: url(../img/img_abciee.png) no-repeat top;
	background-size: contain;
	position: absolute;
	right: -30%;
	top: 10%;
}
.header_title.logo_adjust::before {
	/* width: 20%;
	right: -24%; */
	width: 19%;
	right: -22%;
}

.prg_info {
	box-sizing: border-box;
}

@media print, screen and (min-width:641px) {
	.header_inner {
		padding: 10px;
	}

	.header_logo {
		width: 12%;
		max-width: inherit;
		flex-shrink: 0;
	}
	.fixed .header_logo {
		width: 9%;
	}

	.header_title {
		width: 36%;
		width: 46%;
		margin: 0 auto;
		transform: translateX(-13%);
	}

	.fixed .header_title {
		width: 36%;
	}

	.header_bot .header_inner {
		min-height: 60px;
		background: url(../img/bg_header.png) no-repeat top 10% right 10%;
		background-size: 200px;
	}

	.fixed .header_bot .header_inner {
		height: auto;
		min-height: 50px;
	}
}

/* =============================================
 pageMenu
============================================= */
.pageMenu-toggle {
	width: 9vw;
	height: 9vw;
	max-width: 50px;
	max-height: 50px;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 100%;
	position: absolute;
	right: 0;
	cursor: pointer;
	transition: all 0.2s;
	z-index: 10;
	color: #fff;
}

.open .pageMenu-toggle {
	background: none;
}

.pageMenu-toggle span:nth-child(1),
.pageMenu-toggle span:nth-child(2),
.pageMenu-toggle span:nth-child(3) {
	content: "";
	height: 2px;
	margin-left: -26%;
	background: #fff;
	position: absolute;
	transition: all 0.2s;
}

.pageMenu {
	position: absolute;
	top: 5px;
	right: 0;
	z-index: 10;
}

.pageMenu-toggle span:nth-child(1) {
	width: 50%;
	top: 32%;
	left: 50%;
}

.pageMenu-toggle span:nth-child(2) {
	width: 50%;
	top: 48%;
	left: 50%;
}

.pageMenu-toggle span:nth-child(3) {
	width: 50%;
	top: 64%;
	left: 50%;
}

.open .pageMenu-toggle span:nth-child(1) {
	transform: rotate(-45deg);
	top: 48%;
}

.open .pageMenu-toggle span:nth-child(2) {
	transform: rotate(45deg);
}

.open .pageMenu-toggle span:nth-child(3) {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}

@media print, screen and (max-width:640px) {
	.pageMenu {
		width: calc(100% - 12px);
		margin: 0 auto;
		display: block !important;
		left: 0;
	}
}

@media print, screen and (min-width:641px) {
	.pageMenu {
		width: 300px;
		right: 5px;
	}

	.fixed .pageMenu-toggle {
		transform: scale(0.8);
		transform-origin: top;
	}
}

@media print, screen and (min-width:1001px) {
	.pageMenu {
		right: 50%;
		transform: translateX(164%);
	}
	.fixed .pageMenu-toggle {
		transform: scale(1);
	}
}

/* side-menu
------------------------------------ */
.side-menu a {
	padding: 1em 1em 1em 2em;
	border-top: 1px solid #676767;
	display: block;
	position: relative;
	overflow: hidden;
	transition: all 0.2s;
	color: #fff;
	text-decoration: none;
	text-align: left;
	line-height: 1.3;
}

.side-menu a::before {
	content: "";
	border-top: 0.325em solid transparent;
	border-right: 0.6em solid var(--color_01);
	border-bottom: 0.325em solid transparent;
	border-left: 0 solid transparent;
	position: absolute;
	top: 50%;
	left: 1em;
	transform: translateY(-50%);
	transition: all 0.2s;
}

.side-menu a span {
	display: none;
}

.side-menu li:first-child a {
	border-top: none;
}

.pageMenu .side-menu {
	width: 100%;
	padding: 20px 15px 15px;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 5px;
	box-sizing: border-box;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 8;
}

.pageMenu .side-menu span:first-child {
	margin-bottom: 10px;
	display: block;
	color: #fff;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
}

@media print, screen and (max-width:640px) {
	.side-menu a {
		padding: 1em 2em;
		text-overflow: ellipsis;
		white-space: nowrap;
		text-align: center;
	}
}

@media print, screen and (min-width:641px) {
	.side-menu {
		background: #424242;
		margin-bottom: 30px;
		border-radius: 0 0 5px 5px;
		display: block;
		overflow: hidden;
	}

	.side-menu a:hover::before {
		left: 0.75em;
	}

	.side-menu a span {
		font-size: 0.8rem;
	}
}

@media print, screen and (min-width:1001px) {
	.side-menu a:after {
		content: "";
		width: 100%;
		height: 0;
		position: absolute;
		left: 0;
		bottom: 0;
		transition: all 0.2s;
	}

	.side-menu a:hover:after {
		height: 100%;
		background: #fff;
		opacity: 0.15;
	}
}

/* =============================================
 main_slider
============================================= */
.main_slider {
	margin: 9% 0;
}

.main_slider:first-child {
	margin-top: 0;
}

/* .main_slider .item{
	padding: 2px;
    margin: 2px;
    background: #fff;
    position: relative;
    display: block;
}
.main_slider .item::before{
	content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #000;
    z-index: -1;
} */
@media print, screen and (min-width:641px) {
	.main_slider {
		margin: 60px 0;
	}
}

/* =============================================
 mov_slider
============================================= */

.thumb_slider .owl-item p {
	margin-top: 10px;
	line-height: 1.3;
}

/* =============================================
 contents
============================================= */
.contents {
	font-size: 0.875em;
}

.sec_wrap {
	width: 100%;
	padding: 9% 0;
}

.sec_wrap>.inner {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

@media print, screen and (min-width:641px) {
	.contents {
		font-size: 1em;
	}

	.sec_wrap {
		padding: 60px 0;
	}
}

/* 背景パターン1 */
.bg_01 {
	background: var(--color_02);
}

/* 背景パターン2 */
.bg_02 {
	background: #ededed;
}

/* =============================================
 title
============================================= */
.content_ttl {
	margin-top: -0.25em;
	margin-bottom: 6%;
	font-size: 6.5vw;
	font-size: clamp(2.25em, 5.62vw, 3em);
	font-family: var(--txt_jpn_01);
	font-weight: bold;
	letter-spacing: -0.1em;
	line-height: 1.2;
	text-align: center;
}

.content_ttl h2 {
	padding-bottom: 0.4em;
	display: inline-block;
	position: relative;
}

.fs_adjust {
	font-size: 1.1em;
}

.content_ttl h2::before {
	content: "";
	width: 90%;
	height: 0.2em;
	background-size: auto auto;
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 0.2em, rgba(255, 204, 0, 1) 0.2em, rgba(255, 204, 0, 1) 0.4em);
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
}

@media print, screen and (min-width:641px) {
	.content_ttl {
		margin-bottom: 30px;
		font-size: 3em;
	}
}

/* リンクボタン
---------------------------------------- */
.link_btn {
	margin: 6% 0;
}

.link_btn:last-child {
	margin-bottom: 0;
}

.link_btn a {
	width: 90%;
	max-width: 450px;
	padding: 1em 1.5em 1em 0.5em;
	margin: 0 auto;
	background: var(--color_01);
	box-sizing: border-box;
	border-radius: 3em;
	display: block;
	position: relative;
	color: #000;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	transition: all .3s;
}

.link_btn a::before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	margin-top: -0.3em;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	position: absolute;
	right: 1em;
	top: 50%;
}

@media print, screen and (min-width:1001px) {
	.link_btn {
		margin: 30px 0;
	}

	.link_btn a:hover {
		transform: scale(1.05);
	}
}

/* =============================================
 outline
============================================= */
.outline {
	padding: 4vw 20px 15vw;
    position: relative;
    background: url(../img/bg_outline_02.png) no-repeat center bottom 0px, url(../img/bg_outline_01.png) repeat-x center bottom 16%, linear-gradient(0deg, #fff1b9 0%, #fff1b9 10%, transparent 10.1%);
    background-size: auto 12vw, auto 12vw, auto;
}

.outline_txt {
	max-width: 1000px;
	margin: 0 auto;
	font-size: clamp(1.5em, 3.75vw, 2.5em);
	font-family: var(--txt_jpn_01);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	letter-spacing: -0.1em;
}

.outline_txt span {
	display: inline-block;
}

/* .outline_glid{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.outline_img{
    width: 20%;
    max-width: 130px;
    margin-right: 5%;
}
.outline_txt{
    width: 100%;
    padding: 1em;
    border: 2px solid #ffd119;
    border-radius: 10px;
    box-sizing: border-box;
	position: relative;
	font-size: clamp(1em, 2.5vw, 1.25em);
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}
.outline_txt::before{
	content: "";
    width: 1.2em;
    height: 2px;
    background: #ffd119;
    box-shadow: 0 2px 0 #fff, 0 4px 0 #fff, 0 -2px 0 #fff, 0 -4px 0 #fff;
    position: absolute;
    top: 50%;
    left: -0.7em;
    transform: rotate(15deg);
} */
@media print, screen and (min-width:641px) {

	/* .outline_txt{
		padding: 1.5em;
		border: 3px solid #ffd119;
	}
	.outline_txt::before{
		height: 3px;
	} */
	.outline {
		padding: 3vw 20px 9vw;
		background-size: auto 6vw, auto 6vw,auto;
	}
}

@media print, screen and (min-width:1001px) {
	.outline {
		padding: 30px 20px 80px;
        background-size: auto 60px, auto 60px, auto;
	}
}


/* =============================================
 トピックス
============================================= */
/* topics_list
------------------------------------ */
.topics_list li {
	margin-bottom: 10px;
	border-radius: 5px;
}

.topics_list li:last-child {
	margin-bottom: 0;
}

.topics_list li a {
	background: #fff;
}

/* .topics_list li:nth-child(even) a {
	background: #f8f8f8;
} */

.topics_list li .date {
	width: 100%;
	margin-bottom: 0.25em;
	font-size: 1.125em;
	font-weight: bold;
}

.topics_list li a {
	padding: 0.75em 2.5em 0.75em 1em;
	border-radius: 5px;
	display: block;
	position: relative;
	color: #000;
	line-height: 1.2;
	text-decoration: none;
	transition: all .3s;
}

.topics_list li a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.topics_list li .week {
	margin: 0 -0.25em;
}

.topics_list li .txt {
	width: 100%;
	display: flex;
	justify-content: left;
	line-height: 1.3;
}

@media print, screen and (min-width:1001px) {
	.topics_list li a:hover {
		background: rgba(255, 255, 255, 0.75);
	}

	.topics_list li a {
		padding: 1em 2.5em 1em 0;
		display: flex;
	}

	.topics_list li .txt {
		width: 85%;
	}

	.topics_list li .date {
		width: 15%;
		padding-left: 1em;
		margin-bottom: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: left;
		align-items: center;
		font-size: 1em;
	}
}

/* x
---------------------------------------- */
.wrap_x {
    max-width: 900px;
	margin: 9% auto;
    background: #fff;
    border: 2px solid #000;
    border-radius: 5px;
	overflow: hidden;
}
.wrap_x:last-child {
    margin-bottom: 0;
}

.ttl_x {
	padding: 0.9em;
	background: #000;
	color: #fff;
	font-size: 1.125rem;
	font-weight: bold;
	text-align: center;
}

.x_embed {
	max-width: 910px;
	min-height: 300px;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	overflow-y: scroll;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 0 0 1px rgb(0 0 0 / 30%);
}

.x_embed iframe {
	width: 660px !important;
}

@media screen and (min-width:641px) {
	.wrap_x {
		margin: 60px auto;
	}
	.x_embed {
		overflow: hidden;
	}
}


/* =============================================
 box
============================================= */
.box {
	max-width: 600px;
	margin: 0 auto;
}

.box+.box {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 2px dotted #999;
}

.box_txt {
	margin: 1em 0;
	line-height: 1.5;
}

.box_txt.end {
    padding: 0.5em;
    background: #d90b0b;
    color: #fff;
	font-weight: bold;
	text-align: center;
}

@media print, screen and (min-width:641px) {
	.box+.box {
		margin-top: 50px;
		padding-top: 50px;
	}
}

/* @media print, screen and (min-width:1001px) {
	.box_txt{
		font-size: 1.125em;
	}
} */
/**/
.link_thum {
	padding: 0 2px 2px 0;
	position: relative;
	z-index: 1;
}

.link_thum a {
	background: #fff;
	border: 2px solid #fff;
	display: block;
}

.link_thum::before {
	content: "";
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	position: absolute;
	bottom: 0;
	right: 0;
	background: #000;
	z-index: -1;
}

.owl-item:not(.active.center) .link_thum::before {
	background: rgba(0, 0, 0, 0.5);
}

.owl-item:not(.active.center) .link_thum img,
.thumb_slider .owl-item:not(.active.center) img {
	opacity: 0.5;
}

.thumb_slider .owl-item:not(.active.center) p {
	opacity: 0.5;
}

@media print, screen and (min-width:641px) {
	.link_thum {
		padding: 0 3px 3px 0;
	}

	.link_thum::before {
		width: calc(100% - 3px);
		height: calc(100% - 3px);
	}

	.link_thum a {
		border: 3px solid #fff;
	}
}

/**/
.hv_effect {
	overflow: hidden;
	display: block;
}

.hv_effect img {
	transition: .3s;
}

@media (hover: hover) {
	.hv_effect:hover img {
		transform: scale(1.05);
	}
}

/* =============================================
 アイコン付きリンク
============================================= */
.icon_link a {
	display: block;
	color: #000;
	font-size: 1.125em;
	font-weight: bold;
	text-align: center;
}

.icon_link span {
	padding: 0.25em 1em 0.25em 0.25em;
	position: relative;
	display: inline-block;
}

.icon_link span::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

/* =============================================
 バナーエリア
============================================= */
.bnr_list {
	max-width: 800px;
	margin: 9% auto;
}

.sec_wrap .bnr_list {
	width: 90%;
}

.bnr_list:first-child,
script+.bnr_list {
	margin-top: 0;
}

.bnr_list:last-child {
	margin-bottom: 0;
}

.bnr_list:first-child,
script:first-child+.bnr_list {
	margin-top: 0 !important;
}

.bnr_list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 4%;
	row-gap: 3vw;
}

.bnr_list ul+ul {
	margin-top: 20px;
}

.bnr_list li a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	transition: all .3s;
}

/* .bnr_list .bnr_m {
	margin-bottom: -10px;
	
} */
.bnr_list li {
	width: 100%;
}

.bnr_list .bnr_m li {
	width: 48%;
	/* margin: 0 1%; */
}

/* .bnr_list .bnr_m li {
	margin-bottom: 10px;
} */
@media print, screen and (min-width:641px) {
	.bnr_list {
		margin: 60px auto;
	}
	.bnr_list ul {
		column-gap: 2%;
		row-gap: 1.5vw;
	}

	.bnr_list li {
		width: 48%;
	}

	.bnr_list .bnr_m li {
		width: 23%;
	}
}

/* バナーオンマウス */
@media print, screen and (min-width:1001px) {
	.bnr_list ul {
		row-gap: 20px;
	}

	.bnr_list li a:hover {
		transform: scale(1.05);
	}
}

/* =============================================
 ABCからの情報発信
============================================= */
.link_list {
	width: 90%;
	max-width: 1000px;
	margin: 6% auto;
}

.link_list:last-child {
	margin-bottom: 0;
}

.link_list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 4%;
	row-gap: 3vw;
}

.link_list li {
	width: 48%;
}

.link_list a {
	height: 100%;
	padding: 1em 0.5em;
	background: var(--color_01);
	border-radius: 5px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: clamp(0.875em, 2.18vw, 1.125em);
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
}

.link_list a span {
	display: inline-block;
}

@media print, screen and (min-width: 641px) {
	.link_list {
		margin: 30px auto;
	}

	.link_list ul {
		column-gap: 2%;
		row-gap: 1.5vw;
	}
}

@media print, screen and (min-width: 1001px) {
	.link_list ul {
		row-gap: 20px;
	}
}

/* =============================================
 フッター
============================================= */
footer {
	margin-top: 30px;
	background: #000;
}

.footer {
	padding: min(15vw, 60px) 0;
	position: relative;
}

/* link
---------------------------------------- */
.footer_link {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 6%;
}

.footer_link ul {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	column-gap: 4%;
}

.footer_link li {
	width: 100%;
	border-bottom: 1px solid #333;
}

.footer_link li:first-child {
	border-top: 1px solid #333;
}

.footer_link a {
	padding: 1em;
	display: block;
	color: #fff;
	font-size: 0.875em;
}

.footer_link span.win {
	padding-right: 1.25em;
	display: inline-block;
	position: relative;
}

.footer_link span.win::before {
	content: "";
	width: 1em;
	height: 1em;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-55%);
	-webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23fff"><path d="M320-320h480v-400H320v400Zm0 80q-33 0-56.5-23.5T240-320v-480q0-33 23.5-56.5T320-880h480q33 0 56.5 23.5T880-800v480q0 33-23.5 56.5T800-240H320ZM160-80q-33 0-56.5-23.5T80-160v-560h80v560h560v80H160Zm160-720v480-480Z"/></svg>');
	-webkit-mask-size: contain;
	mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23fff"><path d="M320-320h480v-400H320v400Zm0 80q-33 0-56.5-23.5T240-320v-480q0-33 23.5-56.5T320-880h480q33 0 56.5 23.5T880-800v480q0 33-23.5 56.5T800-240H320ZM160-80q-33 0-56.5-23.5T80-160v-560h80v560h560v80H160Zm160-720v480-480Z"/></svg>');
	mask-size: contain
}

@media print, screen and (min-width: 641px) {
	.footer_link {
		margin: 0 auto 50px;
	}

	.footer_link li {
		width: 48%;
	}
}

@media print, screen and (min-width: 641px) and (max-width: 1000px) {
	.footer_link li:nth-of-type(-n+2) {
		border-top: 1px solid #333;
	}
}

@media print, screen and (min-width: 1001px) {
	.footer_link li {
		width: 30%;
	}

	.footer_link li:nth-of-type(-n+3) {
		border-top: 1px solid #333;
	}
}

/* コピーライト
---------------------------------------- */
.footer_copy {
	padding: 0 1em;
	color: #fff;
	font-size: 0.65em;
	line-height: 1.3;
	text-align: center;
}

.footer_copy p {
	width: 94%;
	max-width: 1000px;
	margin: 0 auto;
}

.footer_copy a {
	color: #fff;
}

@media print, screen and (min-width: 641px) {
	.footer_copy {
		font-size: 0.75em;
	}
}

/* ページトップ
---------------------------------------- */
.pageTop {
	position: fixed;
	position: absolute;
	top: -30px;
	right: 10px;
	z-index: 10;
	transition: all .3s;
}

.pageTop a {
	width: 60px;
	height: 60px;
	background: var(--color_01);
	border-radius: 100%;
	display: block;
	position: relative;
}

.pageTop a::before {
	content: "";
	width: 15px;
	height: 15px;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	transform: translate(-50%, -30%) rotate(-45deg);
	position: absolute;
	top: 50%;
	left: 50%;
}

@media print, screen and (min-width:1001px) {
	.pageTop {
		right: 30px;
	}

	.pageTop a {
		transition: all .3s;
	}
	.pageTop a:hover {
		transform: translate(0, -10px);
	}
}

/* ---------------------------------------------------------------------------
 * 汎用
--------------------------------------------------------------------------- */
/* テキスト
------------------------------------ */
.fs_xs {
	font-size: 0.75em !important;
}

.fs_s {
	font-size: 0.875em !important;
}

.fs_l {
	font-size: 1.25em !important;
}

.fs_xl {
	font-size: 1.5em !important;
}

.fs_inherit {
	font-size: inherit !important;
}

.fw_normal {
	font-weight: normal !important;
}

.fw_bold {
	font-weight: bold !important;
}

.ti-05 {
	text-indent: -0.5em !important;
}

.ls01 {
	letter-spacing: 0.1em !important;
}

.ls-005 {
	letter-spacing: -0.05em !important;
}

.ls-01 {
	letter-spacing: -0.1em !important;
}

.ls-02 {
	letter-spacing: -0.2em !important;
}

.ls-03 {
	letter-spacing: -0.3em !important;
}

.ta_left {
	text-align: left !important;
}

.ta_right {
	text-align: right !important;
}

.ta_center {
	text-align: center !important;
}

.week {
	margin: 0 -0.5em;
	display: inline-block;
	font-size: 0.875em;
}

.fc_red {
	color: #d90b0b;
}

.fc_pnk {
	color: #f5499f;
}

.fc_gry {
	color: #333;
}

.txt_jpn_02 {
	font-family: var(--txt_jpn_02) !important;
	letter-spacing: 0;
}

/* レイアウト
------------------------------------ */
.mt0 {
	margin-top: 0 !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mt_1em {
	margin-top: 1em !important;
}

.mb_1em {
	margin-bottom: 1em !important;
}

.w_100 {
	width: 100% !important;
}

.mw_inherit {
	max-width: inherit !important;
}

/* =============================================
 protect
============================================= */
.protect {
	display: block;
	position: relative;
	-webkit-user-drag: none;
	user-select: none;
}

.protect::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.protect img {
	-webkit-user-drag: none;
	pointer-events: none;
}

@media print {
	.protect {
		display: none !important;
	}
}