@charset "utf-8";

@font-face {
    font-family: "Noto Sans JP";
    font-weight: normal;
    src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Noto Sans JP";
    font-weight: bold;
    src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf") format("truetype");
}

html {
	font-family: 'Noto Sans JP',Hiragino Kaku Gothic ProN,Meiryo,'Helvetica Neue',Arial,sans-serif;
	color: #221815;
	scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;
}

img {
    width: 100%;
	height: auto;
}

p {
	line-height: 1.5;
}

a {
    display: inline-block;
}

@media (hover: hover) {
    a:not(header a):hover {
        opacity: .6;
        transition: .4s;
    }
}
@media (hover: none) {
    a:not(header a):active {
        opacity: .6;
    }
}

:target::before {
	content: "";
	display: block;
	height: 80px;
	margin-top: -80px;
	visibility: hidden;
}

/* 出し分け */
.u-show_pc {
    display: block;
}

.u-show_sp {
    display: none;
}

.u-show_sp_small {
	display: none;
}

/* 画像保護 */
.image-protect {
	pointer-events: none;
}

.image-protect_sp {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
}

/* TAB */
@media screen and (max-width: 1100px) {
    .u-show_tab {
        display: block;
    }
}

/* SP */
@media screen and (max-width: 767px) {
	.u-show_pc {
		display: none;
	}

	.u-show_sp {
		display: block;
	}
}

/* TAB */
@media screen and (min-width: 768px) {

}

/* PC */
@media screen and (min-width: 1104px) {

}

/* マージン　パディング */
.u-mt8 {
	margin-top: 8px!Important;
}

.u-mt40 {
	margin-top: 40px !Important;
}

.u-mb40 {
	margin-bottom: 40px!Important;
}

/* 文章 */
.u-txt_normal {
	font-size: 14px;
    letter-spacing: 1px;
    line-height: 2;
	word-break: break-all;
}

.u-txt_bold {
	font-weight: bold;
}

.u-disp-inlineblock {
	display: inline-block;
}

.u-txt_underline {
	text-decoration: underline;
}

/* SP */
@media screen and (max-width: 767px) {
	.u-txt_normal {
		font-size: 13px;
	}
}

/* ヘッダー */
/* PC */
.l-header_sp {
	display: none;
}

.l-header_pc {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background-color: #fff;
	filter: drop-shadow(0 3px 4px hsl(0deg 0% 60% / 33%));
	z-index: 15;
}

.p-header-logo {
	width: 120px;
	margin: 0 0 4px 0;
}

@media (hover: hover) {
    .p-header-logo:hover {
        opacity: .6;
        transition: .4s;
    }
}

@media (hover: none) {
    .p-header-logo:active {
        opacity: .6;
    }
}

.p-header-nav {
	display: flex;
}

.p-header-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

.c-header-item_box {
	margin: 0 0 0 8px;
	padding: 4px;
	border-right: none;
	border: 1px solid #666464;
}

.c-header-txt,
.c-header-txt_box {
	margin: 0 11px;
	text-align: center;
	font-size: 11px;
	color: #666464;
}

.c-header-txt {
	line-height: 2.2;
	background: linear-gradient(#e60012 0 0) 0 100% /var(--d, 0) 1px no-repeat;
	/* transition: .5s; */
}

@media (hover: hover) {
    .p-header-list .c-header-item:hover .c-header-txt {
        color: #e60012;
        --d: 100%;
        transition: .5s;
    }

    .c-header-item_box:hover {
        border: 1px solid #e60012;
    }

    .c-header-item_box:hover .c-header-txt_box {
        color: #e60012;
        transition: .5s;
    }
}

@media (hover: none) {
    .p-header-list .c-header-item:active .c-header-txt {
        color: #e60012;
        --d: 100%;
    }

    .c-header-item_box:active {
        border: 1px solid #e60012;
    }

    .c-header-item_box:active .c-header-txt_box {
        color: #e60012;
    }
}

/* TAB */
@media screen and (min-width: 768px) {
	.p-header_pc {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		height: 100%;
		margin: 0 16px;
		padding: 0 0 16px;
	}

	.p-header-nav {
		flex-direction: column-reverse;
		align-items: flex-end;
	}

	.c-header-item_box {
		width: fit-content;
	}
}

/* SMALL PC */
@media screen and (min-width: 900px) {
	.p-header-nav {
		flex-direction: row;
		align-items: flex-end;
	}
}

/* MIDDLE PC */
@media screen and (min-width: 1160px) {
	.p-header-logo {
		width: 224px;
		margin: 0 0 8px 0;
	}

	.c-header-txt,
	.c-header-txt_box {
		font-size: 14px;
	}

	.p-header-list .c-header-txt {
		margin: 0 14px;
	}
}

/* LARGE PC */
@media screen and (min-width: 1296px) {
	.p-header_pc {
		padding: 0 0 14px;
	}

	.p-header-logo {
		width: 224px;
		margin: 0 0 8px 0;
	}

	.c-header-txt,
	.c-header-txt_box {
		font-size: 15px;
	}

	.p-header-list .c-header-txt {
		margin: 0 15px;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.l-header_pc {
		display: none;
	}

	.l-header_sp {
		display: block;
		position: fixed;
		top: 0;
		width: 100%;
		height: 72px;
		z-index: 20;
	}

	.p-header_sp {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: 0 0 0 16px;
		height: 100%;
		background-color: #fff;
		box-shadow: 0 3px 4px hsl(0deg 0% 60% / 33%);
		z-index: 110;
	}

    .p-header_sp > a {
        z-index: 1000;
    }

	.p-header-menu,
	.p-header-menu span {
	  display: inline-block;
	  transition: all .4s;
	  box-sizing: border-box;
	}

	.p-header-logo {
		width: 160px;
		margin: 0;
	}

	.p-header-menu {
		position: relative;
		width: 72px;
		height: 72px;
		cursor: pointer;
		z-index: 1000;
	}

	.p-header-menu.is-active {
		overflow: visible;
	}

	.c-header-menu {
		position: absolute;
		bottom: 8px;
		left: 16px;
		font-size: 10px;
		font-weight: bold;
		letter-spacing: 4px;
		color: #fff;
	}

	.p-header-menu span {
		position: absolute;
		left: 50%;
		margin-left: -17px;
		width: 34px;
		height: 2px;
		background-color: #676767;
		border-radius: 2px;
		transition: all .5s;
	}

	.p-header-menu span:nth-of-type(1) {
		top: 24px;
	}

	.p-header-menu span:nth-of-type(2) {
		top: 34px;
	}
	.p-header-menu span:nth-of-type(3) {
		top: 44px;
	}

	.p-header-menu.is-active span {
		width: 32px;
	}

	.p-header-menu.is-active span:nth-of-type(1) {
		transform: translateY(10px) rotate(-45deg);
		top: 22px;
	}

	.p-header-menu.is-active span:nth-of-type(2) {
		opacity: 0;
	}
	.p-header-menu.is-active span:nth-of-type(3) {
		transform: translateY(-14px) rotate(45deg);
		top: 45px;
	}

	.p-header-sidenav {
		position: absolute;
		top: 0;
		right: -200vw;
        padding-top: 72px;
		width: 200vw;
		height: 100vh;
		background-color: #fff;
		transition: all .5s;
		z-index: 100;
	}

	.p-header-sidenav.is-active {
		overflow: auto;
		transform: translateX(-100vw);
	}

	.p-header-sidenav.is-active.is-slide {
		transform: translateX(-200vw);
	}

    .p-header-sidenav-box {
        height: 100%;
    }

	.p-header-nav {
		position: relative;
		display: block;
        height: 100%;
	}

	.p-header-list {
		display: block;
		height: 100%;
	}

	.c-header-item {
		display: block;
		width: 100vw;
		border-top: 1px solid #c9caca;
	}

	.c-header-item:last-child {
		border-bottom: 1px solid #c9caca;
	}

	.c-header-item a {
		display: block;
	}

	.c-header-txt {
		padding: 8px 16px;
		font-size: 14px;
		letter-spacing: 4px;
		text-align: left;
	}

    @media (hover: hover) {
        .p-header-list .c-header-item:hover .c-header-txt {
            --d: 0%;
        }

        .c-header-item_box:hover {
            border: none;
        }
    }

    @media (hover: none) {
        .p-header-list .c-header-item:active .c-header-txt {
            --d: 0%;
        }

        .c-header-item_box:active {
            border: none;
        }
    }

	.c-slide-link {
		position: relative;
	}

	.c-slide-link::before {
		content: '';
		position: absolute;
		top: 12px;
		right: 16px;
		height: 20px;
		width: 20px;
		border-radius: 50%;
		background-color: #e60012;
	}

	.c-slide-link::after {
		content: '';
		position: absolute;
		width: 6px;
		height: 6px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		right: 24px;
		top: 19px;
		transform: rotate(45deg);
	}

	.c-slide-link {
		display: block;
		width: 100vw;
		cursor: pointer;
	}

	.p-slide-list {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		width: 100vw;
		height: 100%;
	}

	.c-slide-item {
		border-top: 1px solid #c9caca;
		background-color: #fff3f3;
	}

	.c-slide-item:last-child {
		border-bottom: 1px solid #c9caca;
	}

    @media (hover: hover) {
        .p-slide-list .c-slide-item:hover .c-header-txt {
            color: #e60012;
            --d: 0%;
            transition: .5s;
        }
    }

    @media (hover: none) {
        .p-slide-list .c-slide-item:active .c-header-txt {
            color: #e60012;
            --d: 0%;
        }
    }

	.link-item {
		display: block;
	}

	.c-back-item {
		background-color: #fff;
	}

	.c-back-link {
		position: relative;
		display: block;
		cursor: pointer;
	}

	.c-back-link::before {
		content: '';
		position: absolute;
		top: 14px;
		left: 26px;
		height: 20px;
		width: 20px;
		border-radius: 50%;
		background-color: #e60012;
	}

	.c-back-link::after {
		content: '';
		position: absolute;
		width: 6px;
		height: 6px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		left: 34px;
		top: 21px;
		transform: rotate(-135deg);
	}

	.c-back-link .c-header-txt {
		padding: 8px 16px 8px 48px;
		color: #999;
	}

}

/* メイン */
/* PC */
main {
	margin: 0 auto;
	padding: 72px 0 0;
}

.l-content-section {
	margin: 40px 20%;
}

.l-content-section>*:first-child {
    margin: 0 auto;
    max-width: 1200px;
}

.l-content-section_wide {
    margin: 40px 10%;
}

.l-content-section_wide>*:first-child {
    margin: 0 auto;
	max-width: 1440px;
}

.c-content-section {
	max-width: 760px;
	margin: 0 auto 80px;
}

/* SMALL PC */
@media screen and (max-width: 1200px) {
	.l-content-section {
		margin: 40px 10%;
	}

	.l-content-section_wide {
		margin: 40px 5%;
	}
}

/* TAB */
@media screen and (max-width: 900px) {
	.l-content-section {
		margin: 40px 5%;
	}

	.l-content-section_wide {
		margin: 40px 16px;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.l-content-section,
	.l-content-section_wide {
		margin: 32px 16px;
		max-width: unset;
	}
}

@media screen and (max-width: 499px) {
	.p-heading ~ .l-content-section,
	.p-heading ~ .l-content-section_wide:first-of-type {
		margin-top: 0;
	}
}

/* パンくず */
.p-bcnav {
	margin-top: 16px;
	margin-bottom: 16px;
}

.p-bcnav-list {
	display: flex;
	align-items: center;
}

.c-bcnav-item {
	white-space: nowrap;
	font-size: 10px;
	color: #564535;
}

.c-bcnav-item:last-child {
	overflow: hidden;
    text-overflow: ellipsis;
}

.c-bcnav-item span {
	display: inline-block;
	margin: 10px 6px;
	color: #564535;
}

.c-bcnav-item span::before {
	content: "＞";
}

/* SP */
@media screen and (max-width: 767px) {
	.p-bcnav {
		display: none;
	}
}

/* 大見出し */
.p-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 180px;
	color: #666464;
	background-image: url('/images/common/header/bg-heading_pc.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.c-heading {
	font-size: 24px;
	letter-spacing: 8px;
	text-align: center;
}

.c-heading span {
	display: inline-block;
	padding: 0 36px 4px;
	border-bottom: 2px solid #e60012;
	line-height: 1.6;
}

.c-heading span span {
	display: inline-block;
	padding: 0;
	border-bottom: none;
	line-height: 0;
}

/* SP */
@media screen and (max-width: 767px) {
	.c-heading {
		font-size: 17px;
	}

	.c-heading span {
		padding-left: 16px;
		padding-right: 16px;
	}

	.c-heading span span.u-show_pc {
		display: none;
	}
}

@media screen and (max-width: 499px) {
	.p-heading {
		background-image: url('/images/common/header/bg-heading_sp.png');
	}
}

@media screen and (max-width: 349px) {
	.c-heading {
		font-size: 18px;
	}
}


/* 中見出し */
.c-heading-level2 {
    position: relative;
    padding: 0 0 2px 16px;
    border-bottom: 1px solid #ccc;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 4px;
}

.c-heading-level2::before {
	content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 4px;
    height: calc(100% - 4px);
    background: #e60012;
}

.c-heading-level2.is-2lines::before {
    height: 44px;
}

/* SP */
@media screen and (max-width: 767px) {
	.c-heading-level2 {
		font-size: 15px;
		padding: 0 0 2px 16px;
	}
}

/* 小見出し */
.u-heading-level3_triangle {
    position: relative;
    padding: 0 0 0 36px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 4px;
}

.u-heading-level3_triangle::before {
	content: '';
    position: absolute;
    top: 4px;
    left: 0;
	height: 22px;
	width: 22px;
	border-right: 12.7px solid transparent;
	border-bottom: 22px solid #fbdce2;
	border-left: 12.7px solid transparent;
}

.u-heading-level3_circle {
    position: relative;
    padding: 0 0 0 36px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 4px;
}

.u-heading-level3_circle::before {
	content: '';
    position: absolute;
    top: 4px;
    left: 0;
	height: 22px;
	width: 22px;
	border-radius: 50%;
	background-color: #d7eced;
}

.u-heading-level3_square {
    position: relative;
    padding: 0 0 0 36px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 4px;
}

.u-heading-level3_square::before {
	content: '';
    position: absolute;
    top: 4px;
    left: 0;
	height: 22px;
	width: 22px;
	background-color: #f6e89d;
}

/* SP */
@media screen and (max-width: 767px) {
	.u-heading-level3_triangle {
		font-size: 14px;
		padding: 0 0 0 28px;
	}

	.u-heading-level3_triangle::before {
		top: 0;
		left: 0;
		height: 18px;
		width: 18px;
		border-right: 10.39px solid transparent;
		border-bottom: 18px solid #fbdce2;
		border-left: 10.39px solid transparent;
	}

	.u-heading-level3_circle {
		font-size: 14px;
		padding: 0 0 0 28px;
	}

	.u-heading-level3_circle::before {
		top: 4px;
		left: 0;
		height: 18px;
		width: 18px;
	}

	.u-heading-level3_square {
		font-size: 14px;
		padding: 0 0 0 28px;
	}

	.u-heading-level3_square::before {
		top: 2px;
		left: 0;
		height: 18px;
		width: 18px;
	}
}

/* 基本レイアウト */
.p-detail-section {
    margin: 64px auto;
}

.c-detail-heading {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 2;
    color: #0160ac;
}

.c-lead-text {
	margin: 32px auto 0;
}

/* SP */
@media screen and (max-width: 767px) {
	.p-detail-section {
		margin: 40px auto;
	}

    .c-lead-text {
        margin: 24px auto 0;
    }

	.c-detail-heading {
		font-size: 15px;
	}
}



/* コンポーネント */
/* リンクリスト */
.c-menulink-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.c-menulink-title {
	margin: 16px auto;
	font-size: 16px;
	letter-spacing: 2px;
	color: #666464;
}

@media (hover: hover) {
    .c-menulink-item:hover .c-menulink-title {
        text-decoration: underline;
    }
}

@media (hover: none) {
    .c-menulink-item:active .c-menulink-title {
        text-decoration: underline;
    }
}

.c-menulink-title::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin: 0 8px 0 0;
	border: 5px solid transparent;
	border-right: 0 solid transparent;
	border-left: 8px solid #e60012;
}

.c-menulink-text {
	font-size: 14px;
	letter-spacing: 1px;
	color: #666464;
}

.c-menulink-item {
	margin: 0 0 48px;
	width: 46%;
}

.p-widelink-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.p-widelink-list .c-menulink-item {
	margin: 0 0 32px;
	width: 28%;
}

/* SP */
@media screen and (max-width: 767px) {
	.c-menulink-title {
		font-size: 13px;
	}

	.c-menulink-list {
		flex-direction: column;
	}

	.c-menulink-item {
		width: 100%;
	}

	.p-widelink-list {
		flex-direction: column;
	}

	.p-widelink-list .c-menulink-item {
		margin: 0 0 48px;
		width: 100%;
	}
}

/* ボタンリンク */
.c-btn-link {
	display: block;
	margin: 40px auto 0;
	width: 280px;
	font-size: 16px;
	background-color: #ED4151;
	border-radius: 21px;
}

.c-btn-text {
	position: relative;
	margin: 0 auto;
	padding: 8px 0 10px 16px;
	width: fit-content;
	font-weight: bolder;
	letter-spacing: 1px;
	color: #fff;
}

.c-btn-text::before {
	position: absolute;
    content: "";
    display: inline-block;
	top: 50%;
	left: 0;
	width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right: 0 solid transparent;
    border-left: 8px solid #fff;
	transform: translateY(-50%);
}

.c-btn-link_small {
	display: block;
    margin: 16px auto 0;
    width: 240px;
    font-size: 13px;
    background-color: #ED4151;
    border-radius: 20px;
}

.c-btn-link_small > .c-btn-text {
    padding: 8px 0 9px 16px;
}

/* SP */
@media screen and (max-width: 767px) {
	.c-btn-link {
		font-size: 14px;
	}

	.c-btn-link_small {
		width: 280px;
	}
}

/* SMALL SP */
@media screen and (max-width: 349px) {
	.c-btn-link_small {
		width: 240px;
		font-size: 12px;
	}
}

.c-others-link {
    color: #e00315;
    text-decoration: underline;
}

.c-text-red {
    color: #e00315;
}

/* 写真・イラストコピー */
.c-main-copy {
	font-size: 12px;
	text-align: right;
	color: #666464;
}

/* アコーディオン */
.c-accordion-btn {
    position: relative;
	cursor: pointer;
}

.c-accordion-btn::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: #e60012;
}

.c-accordion-btn span {
    content: '';
    position: absolute;
    top: 15px;
    right: 9px;
    height: 2px;
    width: 14px;
    background-color: #fff;
    z-index: 1;
}

.c-accordion-btn span:after {
    content: '';
    position: absolute;
    top: -6px;
    right: 6px;
    height: 14px;
    width: 2px;
    background-color: #fff;
    z-index: 1;
    opacity: 1;
    transition: .4s;
}

.c-accordion-btn.is-active span:after {
    opacity: 0;
}

.p-accordion-content {
	height: 0;
	overflow: hidden;
	transition: .4s;
}

.c-accordion-btn.is-active + .p-accordion-content {
	height: auto;
	overflow: hidden;
	transition: .4s;
}

/* SP */
@media screen and (max-width: 767px) {
	.c-accordion-btn::after {
		top: 2px;
		right: 4px;
		height: 20px;
		width: 20px;
	}

	.c-accordion-btn span {
		top: 11px;
		right: 8px;
		height: 2px;
		width: 12px;
	}

	.c-accordion-btn span:after {
		top: -5px;
		right: 5px;
		height: 12px;
		width: 2px;
	}
}

/* ページャー */
.p-pager-list {
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
}

.p-three-pointer {
	line-height: 5px;
}

.p-pager-item {
	width: 34px;
	text-align: center;
	margin: 0px 9px;
}

.c-link-prev,
.c-link-next,
.c-link-num {
    position: relative;
    padding: 0px 10px;
    height: 36px;
    line-height: 36px;
    color: #707070;
    border-radius: 4px;
    background-color: #e6e6e6;
}

@media screen and (max-width: 767px) {
    .c-link-prev,
    .c-link-next,
    .c-link-num {
        height: 32px;
        line-height: 32px;
    }
}

.c-link-prev.is-inactive,
.c-link-next.is-inactive {
    background-color: #fff;
    pointer-events: none;
}

.c-link-num.is-current {

    background-color: #e40011;
    color: #fff;
    pointer-events: none;
}

.c-link-prev::before,
.c-link-next::before {
    content: '';
    position: absolute;
    top: 12px;
    height: 10px;
    width: 10px;
    border-top: solid 2px #707070;
    border-right: solid 2px #707070;
}

.c-link-prev {
    padding-left: 20px;
}

.c-link-prev::before {
    left: 12px;
    transform: rotate(-135deg);
}

.c-link-next {
    padding-right: 20px;
}

.c-link-next::before {
    right: 12px;
    transform: rotate(45deg);
}

.hidden-content{
	visibility:hidden
}

/* MIDDLE SP */
@media screen and (max-width: 499px) {
	.p-three-pointer {
		line-height: 5px;
	}

	.hidden-content{
		visibility:hidden
	}
    /* ページャー */
    .p-pager-list {
        justify-content: space-between;
    }

    .p-pager-item {
		width: 2.6087rem;
        padding: 0;
        font-size: 13px;
		margin: 0px 6px;
    }

    .c-link-prev {
        padding-left: 18px;
    }

    .c-link-next {
        padding-right: 18px;
    }

    .c-link-prev::before,
    .c-link-next::before {
		width: 2.6087rem;
        height: 8px;
        width: 8px;
        top: 12px;
    }
}

/* SMALL SP */
@media screen and (max-width: 349px) {
    .c-link-prev::before,
    .c-link-next::before {
		width: 2.6087rem;
        top: 8px;
    }
}

/* フッター */
/* PC */
.p-footer-totop {
    position: relative;
	/* height: 64px; */
	margin: 0 auto;
}

.c-footer-totop {
	opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
	position: fixed;
	height: 50px;
    width: 50px;
    right: 32px;
    bottom: 16px;
    border: none;
    border-radius: 50%;
    background: #e60012;
	cursor: pointer;
	transition: .5s;
    border: solid 1px #FFFFFF;
}

.c-footer-totop.is-show {
	opacity: 1;
	transition: .4s;
}

@media (hover: hover) {
    .c-footer-totop.is-show:hover {
        opacity: .6;
        transition: .4s;
    }
}

@media (hover: none) {
    .c-footer-totop.is-show:active {
        opacity: .6;
    }
}

.c-footer-totop-arrow {
    height: 16px;
    width: 16px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

.p-footer-sns {
	display: flex;
	justify-content: center;
	margin: 0 auto 30px;
	gap: 48px;
}

.c-footer-sns-img {
	width: 48px;
}

.l-footer_wrap {
	background-color: #e60012;
	font-size: 13px;
	color: #fff;
}

.p-footer_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.p-footer-link-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 24px 0;
	flex-wrap: nowrap;
}

.p-footer-link-list .c-footer-link-item {
	border-right: 1px solid #fff;
}

.p-footer-link-list li:first-child {
	border-left: 1px solid #fff;
}

.c-footer-link {
	display: inline-block;
	margin: 0 1em;
}

@media (hover: hover) {
    .c-footer-link:hover {
        text-decoration: underline;
    }
}

@media (hover: none) {
    .c-footer-link:active {
        text-decoration: underline;
    }
}

.p-copy-wrap {
    text-align: center;
}

.c-copy-fig {
	margin: 16px auto;
	width: 48px;
}

.c-copy-text {
	font-size: 11px;
	text-align: center;
	color: #221815;
}

/* SP */
@media screen and (max-width: 767px) {
	.c-footer-totop {
		right: 8px;
		width: 40px;
		height: 40px;
	}

	.c-footer-totop-arrow {
		height: 12px;
		width: 12px;
	}

	.p-footer-link-list {
		flex-wrap: wrap;
	}

	.p-footer-link-list li:first-child {
		border: none;
	}

	.p-footer-link-list .c-footer-link-item {
		border: none;
	}

	.c-footer-link {
		margin: 0 0.5em;
		font-size: 13px;
		line-height: 2.2;
	}

}

/* スライダー */
@media (hover: hover) {
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        opacity: .6;
        transition: .4s;
    }
}

@media (hover: none) {
    .swiper-button-prev:active,
    .swiper-button-next:active {
        opacity: .6;
    }
}
