@charset "utf-8";


body{
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	background-color: #F6F6F6;
	overflow-x: hidden;
	margin: 0;
}

h1, h2, h3, h4, h5, p{
	margin: 0;
}

img{
	max-width: 100%;
	width: auto;
	vertical-align: bottom;
}

a{
	text-decoration: none;
	transition: all 0.3s linear;
}

p{
	line-height: 1.75em;
}

dl {
	margin: 0;
}

dl dd{
	margin: 0;
}

ul{
	padding: 0;
	margin: 0;
}

ul li{
	list-style: none;
}

.button{
	width: 100%;
	box-sizing: border-box;
	position: relative;
	border: 1px solid #000;
	background-color: #FFF;
	margin: auto;
}

.button::after, .button::before,
.button .inner::after, .button .inner::before{
	content: "";
	position: absolute;
	width: 10px;
	aspect-ratio: 1;
	background-color: #000;
}

.button::after{
	left: -1px;
	top: -1px;
	clip-path: polygon(0 0,100% 0,0 100%);
}

.button::before{
	left: -1px;
	bottom: -1px;
	clip-path: polygon(0 100%,0 0,100% 100%);
}

.button .inner::after{
	right: -1px;
	top: -1px;
	clip-path: polygon(0 0,100% 0,100% 100%);
}

.button .inner::before{
	right: -1px;
	bottom: -1px;
	clip-path: polygon(0 100%,100% 0,100% 100%);
}

.button a{
	color: #000;	
	position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    padding: 20px 30px;
    text-align: center;
    outline: none;
}

.button a::before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #000;
    width: 0;
    height: 100%;
    transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

.button a:hover:before{
    width: 100%;
}

.button a span{
	display: block;
	position: relative;
    z-index: 3;
	transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

.button a:hover span{
	color: #FFF;
}

.button a span::after{
	content: "";
	position: absolute;	
    top: 50%;
	right: 0;
	width: 15px;
	height: 1px;
	background-color: #000;
	transform: translateY(-50%);
	transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

.button a span::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: translateY(-50%) rotate(45deg);
	transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

.button a:hover span::after{
	background-color: #FFF;
}

.button a:hover span::before{
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

.button.narrow{
	max-width: 520px;
}

.button.narrow a{
	padding: 3% 30px;
}

.button.more a span::before{
	border: none;
    width: 1px;
    height: 15px;
	right: 7px;
    background-color: #000;
    transform: translateY(-50%);
}

.button.more a:hover span::before{
	background-color: #FFF;
}

.pc{
	display: block;
}

.sp{
	display: none;
}

section{
	padding: 100px 0 150px;
	background-color: #F6F6F6;
}

.title-wrap h2{
	font-size: 60px;
	transform: scale(1, 1.5);
	font-weight: 400;
	margin-bottom: 20px;
}

.title-wrap .sub{
	font-size: 15px;
	text-decoration: underline;
	text-underline-offset: 8px;
}

/*
.content
*/
.content{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 60px 0 65px;
}

.content li{
	position: relative;
}

.content li.newpost::after{
	content: url("images/common/icon-newpost.png");
	position: absolute;
	width: 32px;
	height: 32px;
	top: 10px;
	left: 10px;
}

.content li a{
	color: #000;
}

.content li a .thumb{
	overflow: hidden;
    position: relative;
    margin: auto;
    display: block;
	height: 0;
	padding-bottom: 100%;
}

.content li a .thumb img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s linear;
}

.content li a:hover .thumb img{
	transform: scale(1.1)
}

.content li a .wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0 10px;
}

.content li a .wrap .shop{
	font-size: 12px;
	border: 1px solid #BBB;
	padding: 3px 5px;
	line-height: 1;
}

.content li a .wrap .date{
	font-size: 10px;
	color: #A2A2A2;
	line-height: 1;
}

.content li a h3{
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 56px;
	font-weight: 400;
	line-height: 1.75em;
	transition: all 0.3s ease;
}

.content li a:hover h3{
	color: #BF4646;
}

.content li a .period{
	position: relative;
	font-size: 14px;
	padding-top: 10px;
	margin-top: 5px;
}

.content li a .period::before,
.content li a .period::after{
	content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #BBB;
    width: 100%;
    height: 1px;
    transition: all 0.3s ease-in-out;
}

.content li a .period::after{
	width: 0;
    background-color: #BF4646;
}

.content li a:hover .period::after{
	width: 100%;
}


/*
================================================
header
================================================
*/
header{
	position: relative;
}

header .header-logo{
	position: fixed;
	z-index: 5;
	top: 30px;
	left: 40px;
}

header ul{
	position: fixed;
	z-index: 4;
	right: 0;
	writing-mode: vertical-rl;
	background-color: #FFF;
	display: table;
}

header ul li{
	display: table-cell;
}

header ul li a{
	display: block;
	font-weight: 500;
	font-size: 17px;
	color: #000;
	padding: 15px 10px;
	letter-spacing: 0.35em;
}

header ul li a:hover{
	color: #FFF;
	background-color: #000;
}

header ul li .contact{
	background-color: #BF4646;
	color: #FFF;
}

header ul li a img{
	max-width: 25px;
}

header ul li:last-child a{
	padding: 10px;
}

/*
================================================
footer
================================================
*/
footer{
	background-color: #F6F6F6;
}

footer a{
	color: #FFF;
}

footer .footer-inner{
	max-width: 1800px;
    width: 100%;
    margin: auto;
	background-color: #000;
	display: table;
	align-items: center;
}

footer .footer-inner div{
	width: calc(100% / 4);
	padding: 0 3%;
	box-sizing: border-box;
	display: table-cell;
    vertical-align: middle;
}

footer .logo-wrap{
	text-align: center;
}

footer .logo-wrap .logo{	
	max-width: 168px;
	width: 100%;
	margin: 0 auto 40px;
	padding: 0;
	display: block;
}

footer .logo-wrap .copyright{
	font-size: 10px;
	color: #FFF;
}

footer .info-wrap dl{
	color: #FFF;
}

footer .info-wrap dl dt{
	font-size: 14px;
	transform: scale(1, 1.5);
	margin: 30px 0 15px;
}

footer .info-wrap dl dt:first-child{
	margin-top: 0;
}

footer .info-wrap dl dd{
	font-size: 14px;
}

footer .info-wrap dl dd a{
	text-decoration: underline;
}

footer .info-wrap dl dd .map{
	display: inline-block;
	padding-right: 14px;
	background: url("images/common/icon-blank.png") no-repeat right center;
}

footer .menu-wrap{
	border-left: 1px solid #F6F6F6;
	border-right: 1px solid #F6F6F6;
}

footer .menu-wrap ul{
	position: relative;
}

footer .menu-wrap ul li{
	margin: 0 0 30px;
	position: relative;
}

footer .menu-wrap ul li:last-child{
	margin: 0;
}

footer .menu-wrap ul li a{
	font-size: 14px;
	transform: scale(1, 1.5);
	display: block;
	position: relative;
}

footer .menu-wrap ul li a::after{
	content: "";
	position: absolute;
	top: 50%;
    right: 0;
    width: 12px;
    height: 1px;
    background-color: #FFF;
    transform: translateY(-50%);
    transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

footer .menu-wrap ul li a::before{
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 4px;
    height: 4px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    transform: translateY(-50%) rotate(45deg);
    transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

footer .menu-wrap ul li a span{
	display: block;
	position: relative;
}

footer .menu-wrap ul li a span::after{
	content: "";
    position: absolute;
    z-index: 1;
    bottom: -5px;
    left: 0;
    background-color: transparent;
    width: 0;
    height: 1px;
    transition: all 0.5s ease-in-out;
}

footer .menu-wrap ul li a:hover span::after{
	width: 100%;
	background-color: #BBB;
}

footer .contact-wrap{
	text-align: center;
	padding: 0!important;
}

footer .contact-wrap a{
	display: block;
	position: relative;
	font-size: 13px;
	line-height: 1.35em;
	padding: 120px 0;
}

footer .contact-wrap a:hover{
	background-color: #BF4646;
}

footer .contact-wrap a span{
	transform: scale(1, 1.5);
    display: block;
	font-size: 17px;
}

footer .policy{
	text-align: center;
	padding: 30px 0;
	width: 80%;
	margin: auto;
}

footer .policy a{
	color: #000;
	font-size: 13px;
	margin: 0 10px;
	position: relative;
}

footer .policy a:hover{
	color: #BF4646;
}

footer .policy a::after{
	content: "";
	position: absolute;
	height: 10px;
	width: 1px;
	background-color: #000;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

footer .policy a:last-child::after{
	content: none;
}

/*
================================================
top
================================================
*/
.top .main-area{
	position: relative;
}

.top .main-area h1{
	writing-mode: vertical-rl;
	z-index: 5;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-weight: 400;
}

.top .main-area h1 .frame{
	background-color: #FFF;
    display: inline-block;
    padding: 10px 5px;
    margin: 0 5px;
    line-height: 1em;
    letter-spacing: 0.2em;
    white-space: nowrap;
    transform: scale(1, 1.05);
}

.top .main-area h1 .frame:first-child{
	margin-top: -1.45em;
}

.top .main-area h1 .letter{
	letter-spacing: -0.2em;
}

.top .swiper-slide{
	background-size: cover;
    height: 100vh;
	background-position: center;
}

.top .main-slide01{
	background-image: url("./images/top/main-image01.jpg");
}

.top .main-slide02{
	background-image: url("./images/top/main-image02.jpg");
}

.top .main-slide03{
	background-image: url("./images/top/main-image03.jpg");
}

.top section .section-inner{
	max-width: 1400px;
	width: 90%;
	margin: auto;
}

.top .event-area .content li{
    width: 23.5%;
    margin-right: 2%;
}

.top .pickup-area .content li{
	width: 30%;
	margin-right: 5%;
}

.top .content li:last-child{
	margin-right: 0;
}

.top .instagram-area .content li{
	width: calc(100% / 6);
	border-right: 1px solid #F6F6F6;
	border-bottom: 1px solid #F6F6F6;
	box-sizing: border-box;
}

.top .pickup-area .section-inner{
	position: relative;
}

.top .pickup-area .section-inner::before{
	content: "";
	position: absolute;
	width: 1800px;
	height: 100%;
	background-color: #FFF;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	padding: 150px 0 90px;
}

.top .pickup-area .title-wrap{
	position: absolute;
    top: -180px;
    z-index: 1;
}

.top .instagram-area .title-wrap{
	text-align: center;
}

.top .instagram-area .title-wrap h2{
	font-size: 48px;
}


/*
================================================
under
================================================
*/
.under .breadcrumb{
	max-width: 1400px;
    width: 90%;
    padding-top: 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.under .breadcrumb li{
	display: inline-block;
	font-size: 12px;
	padding-right: 24px;
	position: relative;
}

.under .breadcrumb li::after{
	content: "";
    position: absolute;	
	width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-50%) rotate(45deg);
	top: 50%;
    right: 7px;
}

.under .breadcrumb li:last-child{
	padding-right: 0;
}

.under .breadcrumb li:last-child::after{
	display: none;
}

.under .breadcrumb li a{
	color: #000;
	text-decoration: underline;
}

.under .breadcrumb li a:hover{
	color: #BF4646;
}

/*
.under .title{
	position: relative;
    height: 100vh;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}
*/
.under .title{
	position: relative;
	height: 100vh;
	z-index: -1;
}

.under .title::before{
	content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.under .title h1{
	font-size: 40px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1, 1.5) translate(-50%, -50%);
    line-height: 1;
    height: 46px;
	background-color: #FFF;
	padding: 0 10px;
}

.under .title-wrap{
	text-align: center;
}

.under section .section-inner{
	max-width: 1200px;
	width: 90%;
	margin: auto;
}

.under section .content{
	margin-bottom: 0;
}


/*
================================================
article
================================================
*/

.main-image{
	width: 100%;
	overflow: hidden;
}

.main-image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.article article{
	background-color: #FFF;
}

.article .article-inner{
	max-width: 800px;
	width: 80%;
	margin: auto;
	padding: 50px 0 100px;
}

.article h1{
	font-size: 28px;
	order: 2;
	margin: 10px 0 30px;
	line-height: 1.75em;
	width: 100%;
}

.article h1 .small{
	font-size: 80%;
}

.article h2{
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	padding: 20px 0;
	margin: 100px 0 25px;
	font-size: 21px;
}

.article h3{
	border-left: 5px solid #BF4646;
	padding: 0 0 0 10px;
	margin: 40px 0 20px;
	font-size: 19px;
}

.article h4{
	border-left: 3px solid #707070;
	padding: 0 0 0 10px;
	margin: 40px 0 20px;
	font-size: 17px;
}

.article p.talk{
	font-family: "Noto Sans JP", sans-serif;
	color: #222;
}

.article p.txt{
	margin: 1em 0;
	line-height: 2em;
}

.article p.txt strong{
	display: inline;
    padding: 0 4px 2px 4px;
    background: linear-gradient(transparent 70%, #FFEB3B 0%);
}

.article ul{
	line-height: 1.75em;
	margin: 1em 0;
}

.article ul li{
	margin-bottom: 5px;
	padding-left: 1em;
    text-indent: -1em;
}

.article ul li:last-child,
.article .chapter-block ul li:last-child{
	margin-bottom: 0;
}

.article article .button{
	border: 1px solid #BF4646;
	max-width: 400px;
	margin: auto;
}

.article article .button::after,
.article article .button::before,
.article article .button .inner::after,
.article article .button .inner::before,
.article article .button a span::after,
.article article .button a::before{
	background-color: #BF4646;
}

.article article .button a{
	color: #BF4646;
	padding: 10px 20px;
}

.article article .button a span::before{
	border-top: 1px solid #BF4646;
	border-right: 1px solid #BF4646;
}

.article article .button a:hover span::before{
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

.article article .button a:hover span::after{
	background-color: #FFF;
}

.article .title-block{
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #000;
	padding-bottom: 20px;
	margin-bottom: 50px;
}

.article .title-block .shop{
	order: 1;
	font-size: 12px;
    border: 1px solid #BBB;
    padding: 3px 5px;
    line-height: 1;
}

.article .title-block .date{
	order: 3;
	font-size: 14px;
	color: #A2A2A2;
	line-height: 1;
}

.article .speaker-block{
	text-align: center;
	margin: 0 auto 50px;
}

.article .speaker-block .profile{
	width: 100px;
	height: 100px;
	margin: auto;
	border-radius: 50px;
	overflow: hidden;
}

.article .speaker-block .name{
	color: #707070;
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 10px;
}

.article .speaker-block .name span{
	font-weight: 700;
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 17px;
}

.article .speaker-block .position{
	font-size: 13px;
    margin-top: 15px;
    line-height: normal;
	color: #707070;
}

.article .chapter-block{
	background-color: #EDF2F4;
	margin: 80px 0;
	padding: 40px 40px 30px;
	position: relative;
}

.article .chapter-block .heading{
	font-size: 21px;
	font-weight: 700;
    transform: scale(1, 1.5);
	position: absolute;
	top: -20px;
}

.article .chapter-block ul{
	margin: 0;
}

.article .chapter-block ul li{
	padding-bottom: 5px;
	border-bottom: 1px solid #C4D0D5;
	position: relative;
	margin-bottom: 15px;
	padding-left: 1.5em;
	line-height: 1.5em;
	text-indent: 0;
	transition: all 0.3s linear;
	font-weight: 500;
}

.article .chapter-block ul li.child{
	font-size: 15px;
}

.article .chapter-block ul li::after{
	content: "";
	position: absolute;
    left: 0.5em;
    top: 8px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
	transform: rotate(135deg);
	transition: all 0.3s linear;
}

.article .chapter-block ul li.child::after{
	content: none;
}

.article .chapter-block ul li:hover{
	border-bottom: 1px solid #2D579A;
}

.article .chapter-block ul li:hover::after{
	border-top: 2px solid #2D579A;
    border-right: 2px solid #2D579A;
}

.article .chapter-block ul li a{
	color: #000;
	display: block;
}

.article .chapter-block ul li:hover a{
	color: #2D579A;
}

.article .info-block{
	background-color: #F5F3E0;
	border: 1px solid #E8E097;
	padding: 30px 40px;
	margin: 50px 0 20px;
}

.article .accident-block{
	background-color: #E5F2F9;
	border: 1px solid #BDD9E7;
	padding: 30px 40px;
	margin: 50px 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.article .accident-block .head{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 30px;
	padding-left: 10px;
	border-left: 5px solid #6FA8C6;
	width: 100%;
	line-height: normal;
}

.article .accident-block .image-box{
	max-width: 300px;
	width: 40%;
	height: 0;
	padding-bottom: 28%;
    overflow: hidden;
    position: relative;
}

.article .accident-block .text-box{
	width: 55%;
}

.article .accident-block .button{
	border: none;
	background-color: #294C7A;
	margin-top: 20px;
}

.article .accident-block .button::after,
.article .accident-block .button::before{
	background-color: transparent;
}

.article .accident-block .button a{
	color: #FFF;
}

.article .accident-block .button a::before{
	background-color: #0C3468;
}

.article .accident-block .button a span::after{
	background-color: #FFF;
}

.article .accident-block .button a span::before{
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

.article figure{
	margin: 40px auto;
	width: 100%;
}

.article figure.main-image{
	margin: 0;
}

.article figure.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.article figure img{
	display: block;
	margin: 0 auto 10px;
}

.article figure img.width100{
	width: 100%;
}

.article figure img.width70{
	width: 70%;
}

.article figure img.width50{
	width: 50%;
}

.article .article-inner figure.flex img.width50{
	width: 49%;
	margin-left: 0;
	margin-right: 0;
}

.article figure figcaption{
	text-align: center;
	color: #707070;
	font-size: 14px;
	width: 100%;
}

.article .contact-block{
	background-color: #F6F6F6;
	padding: 30px 40px;
	margin: 50px 0 20px;
}

.article .contact-block dt{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

.article .contact-block dd{
	margin-bottom: 5px;
}

.article .contact-block dd:last-child{
	margin-bottom: 0;
}

.article .button.back{
	max-width: 768px;
	width: 80%;
	margin: 100px auto 0;
}

.article .button.back a span::before{
	left: 0;
    right: inherit;
    transform: translateY(-50%) rotate(-135deg);
}

.article .button.back a span::after {
    left: 0;
    right: inherit;
}

/*
================================================
policy
================================================
*/

h1.subject{
	font-size: 56px;
	margin-bottom: 60px;
}

.policy h2{
	font-size: 21px;
	margin-top: 50px;
}

.policy p{
	margin: 1em 0;
}

.policy a{
	text-decoration: underline;
	color: #000;
}

.policy ol{
	padding-left: 1em;
}

.policy li{
    line-height: 1.75em;
	margin-bottom: 5px;
}

.policy ul{
	margin: 10px 0;
}

.policy ul li{
	padding-left: 1em;
    text-indent: -1em;
}

.policy hr{
	margin: 50px 0 0;
}

.policy dl dt{
	font-size: 12px;
    color: #707070;
}

.policy dl dd{
	font-size: 15px;
    margin: 6px 0 10px;
}


/*
================================================
sitemap
================================================
*/

.sitemap .link-area{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sitemap .link-area .link{
	width: 100%;
	padding: 0 10px 15px;
	box-sizing: border-box;
	position: relative;
	margin: 50px 0 0;
}

.sitemap .link-area .link:first-child{
	margin: 0;
}

.sitemap .link-area .link.divide{
	width: 48%;
	font-size: 21px;
	font-weight: 700;
	margin: 25px 0 0;
}

.sitemap .link-area .link::before,
.sitemap .link-area .link::after{
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 1px;
    transition: all 0.6s ease-in-out;
}

.sitemap .link-area .link::after{
	width: 0;
    background-color: #BF4646;
}

.sitemap .link-area .link:hover::after{
	width: 100%;
}

.sitemap .link-area .link a{
	display: block;
	color: #000;
	position: relative;
}

.sitemap .link-area .link:hover a,
.sitemap .link-area .link:hover a .sub{
	color: #BF4646;
}

.sitemap .link-area .link a::after{
	content: "";
	position: absolute;
	top: 50%;
    right: 0;
    width: 12px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
    transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

.sitemap .link-area .link a::before{
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: cubic-bezier(0.8, 0, 0.2, 1) .6s;
}

.sitemap .link-area .link:hover a::after{
	background-color: #BF4646;
}

.sitemap .link-area .link:hover a::before{
    border-top: 1px solid #BF4646;
    border-right: 1px solid #BF4646;
}

.sitemap .link-area .link a .head{
	font-size: 36px;
	display: inline-block;
	transform: scale(1, 1.5);
}

.sitemap .link-area .link a .sub{
	font-size: 15px;
	color: #707070;
	vertical-align: bottom;
	margin-left: 15px;
	transition: all 0.6s ease-in-out;
}

@media print, screen and (max-width: 768px){

	.sp{
		display: block;
	}

	.pc{
		display: none;
	}

	.button a,
	.button.narrow a{
		padding: 12px 20px;
	}

	.button::after, .button::before,
	.button .inner::after, .button .inner::before{
		width: 6px;
	}

	section{
		padding: 60px 0 100px;
	}

	section .section-inner{
		width: 80%!important;
	}

	.title-wrap h2{
		font-size: 35px;
		margin-bottom: 10px;
	}

/*
.content
*/
	.content{
		display: block;
		margin-top: 40px;
	}

	.content li{
		max-width: 500px;
        width: 100% !important;
        margin: 0 auto 50px !important;
	}

	.content li:last-child{
		margin-bottom: 0;
	}

/*
================================================
header
================================================
*/
	header{
		position: relative;
	}

	header .header-logo{
		position: absolute;
		top: 15px;
        left: 15px;
        width: 100px;
	}

	header ul li a{
		font-size: 15px;
		padding: 10px 6px;
	}

	header ul li:last-child a {
		padding: 6px;
	}

	header ul li a img{
		max-width: 21px;
	}

/*
================================================
footer
================================================
*/

	footer .footer-inner div{
		width: 100%;
		display: block;
		padding: 40px 10%;
	}

	footer .logo-wrap{
		padding-bottom: 0!important;
	}

	footer .logo-wrap .logo{
		max-width: 130px;
		margin-bottom: 20px;
	}

	footer .menu-wrap{
		border-top: 1px solid #FFF;
		border-left: none;
		border-right: none;
	}

	footer .contact-wrap a{
		padding: 25px 0;
		background-color: #BF4646;
	}

	footer .policy{
		padding: 10px 0;
		display: flex;
        flex-wrap: wrap;
	}

	footer .policy a{
		width: 50%;
		margin: 8px 0;
		text-decoration: underline;
	}

	footer .policy a::after{
		content: none;
	}

/*
================================================
top
================================================
*/
	.top .main-area h1{
		font-size: 21px;
	}
	
	.top .swiper-slide{
		background-position: 40% center;
	}

	.top .pickup-area{
		background-color: #FFF;
	    padding-bottom: 70px;
	}

	.top .pickup-area .title-wrap{
		top: -135px;
	}

	.top .pickup-area .section-inner::before{
		content: none;
	}

	.top .instagram-area .title-wrap h2{
		font-size: 28px;
	}

	.top .instagram-area .content{
		display: flex;
	}

	.top .instagram-area .content li{
		width: calc(100% / 3)!important;
		margin-bottom: 0 !important;
	}


/*
================================================
under
================================================
*/
	.under .breadcrumb{
		display: none;
	}

	.under .title h1{
		font-size: 28px;
		height: 32px;
	}

	h1.subject{
		font-size: 24px;
        margin: 50px 0 30px;
	}

/*
================================================
policy
================================================
*/
	.policy h2 {
		font-size: 18px;
		margin-top: 40px;
	}

	.policy p,
	.policy ol,
	.policy li{
		font-size: 15px;
	}

/*
================================================
article
================================================
*/
	.article .section-inner{
		width: 100%!important;
	}
	.article .article-inner{
		padding: 40px 0 50px;
	}

	.article h1{
		font-size: 21px;
		line-height: 1.75em;
	}

	.article h2{
		font-size: 19px;
		margin-top: 60px;
		padding: 15px 0;
	}

	.article h3{
		font-size: 18px;
	}

	.article p,
	.article dl,
	.article ul{
		font-size: 15px;
	}

	.article .chapter-block{
		padding-left: 15px;
		padding-right: 15px;
	}

	.article .chapter-block ul li.child{
		font-size: 14px;
	}

	.article article .button{
		max-width: 258px;
	}

	.article article .button a{
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.article .info-block,
	.article .accident-block,
	.article .contact-block{
		margin-top: 40px;
		padding: 20px;
	}

	.article .accident-block .head{
		margin-bottom: 20px;
	}

	.article .accident-block .image-box{
		margin: 0 auto 20px;
		width: auto;
		padding-bottom: 180px;
	}

	.article .accident-block .text-box{
		width: 100%;
	}

	.article figure{
		margin: 30px auto;
	}

	.article figure img.width70,
	.article figure img.width50,
	.article .article-inner figure.flex img.width50{
		width: 100%;
	}

	.article figure figcaption{
		font-size: 12px;
	}

	.article .button.back{
		margin: 50px auto 0;
	}


/*
================================================
sitemap
================================================
*/
	.sitemap .link-area .link{
		margin-top: 30px;
	}

	.sitemap .link-area .link.divide{
		width: 96%;
		margin-top: 15px;
		margin-left: auto;
		padding-bottom: 10px;
	}

	.sitemap .link-area .link a .head{
		font-size: 21px;
	}

	.sitemap .link-area .link.divide a{
		font-size: 18px;
	}
}