<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url(reset.css);

/*--------------------------------------------------------------

reset.css
リセット関係・clearfixなど

common.css
上記cssのimport、レイアウト（大枠）を記載したcss

sub.css
下層のレイアウト（大枠）を記載したcss


--------------------------------------------------------------*/
/* fontIcon 
:before,
:after {
	content: "\f099";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
  }

/* ------------------------------------------------------------ */
/* 全デバイス幅共通：基本・レイアウト指定 */
/* ------------------------------------------------------------ */

* html body {
	background: url(null) fixed;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: #f5f2f2;
	color: #2a2a2a;
	font-size: 16px;
 *font-size: small;
 *font: x-small;
	line-height: 1.5;
	font-family: Arial, Helvetica, sans-serif, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
	-webkit-text-size-adjust: 100%; /*レスポンシブのとき*/
}

html {
	overflow-x: hidden;
}

.sp {
	display: none;
}

/* telリンクSPのみ */
@media screen and (min-width: 768px) {

a[href^="tel:"] {
	pointer-events: none;
}
}

/* ------------------------------------------------------------ */
/* リンク色 */
/* ------------------------------------------------------------ */
/*::selection {
	background: #000;
	color: #fff;
}

::-moz-selection {
 background: #000;
 color: #fff;
}*/

a {
	color: #2a2a2a;
	cursor: pointer;
	line-height: inherit;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	text-decoration: none;
}

a:link,
a:visited,
a:active,
a:hover {
	color: #2a2a2a;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */

.min,
.menu li {
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-weight: 400;
	font-style: normal;
}

/* 小塚明朝 */
.kmin {
	font-family: kozuka-mincho-pro, serif;
	font-weight: 400;
	font-style: normal;
}

/* 小塚ゴシック */
.kgothic,
.menu li span {
	font-family: kozuka-gothic-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.font_red {
	color: #9d1012;
}

.font_black {
	color: #2a2a2a;
}

.fontB {
	font-weight: bold;
}

.font20 {
	font-size: 20px;
}

.font22 {
	font-size: 22px;
}

.font24 {
	font-size: 24px;
}

.font28 {
	font-size: 28px;
}

.font32 {
	font-size: 32px;
}


/* ------------------------------------------------------------ */
/* 画像 */
/* ------------------------------------------------------------ */
.logo img,
.mv_tit img,
.sidebar img,
.banner img,
.thum img,
.image img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* ------------------------------------------------------------ */
/* float */
/* ------------------------------------------------------------ */

.floatL {
	float: left;
	margin: 0 1em 1em 0;
}

.floatR {
	float: right;
	margin: 0 0 1em 1em;
}

/* ------------------------------------------------------------ */
/* ロゴ共通 */

.logo {
	width: 100%;
	height: auto;
	max-width: 380px;
	max-height: 85px;
}

.logo a {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.logo a:hover {
	opacity: .7;
}

/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
.wrapper {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.inner {
	width: 100%;
	max-width: 950px;
	height: auto;
	padding: 0;
	margin: 0 auto;
	clear: both;
}

.inner::after {
	content: "";
	clear: both;
	display: block;
}

.content {
	width: 100%;
	height: auto;
	margin: 0 auto 50px;
	overflow: hidden;
}

/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */
header {
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: #f5f2f2;
	position: relative;
	z-index: 999;
}

header h1.logo {
	margin: 0;
}

.topNav {
	width: 100%;
	background: #f5f2f2;
	height: auto;
	margin: 0 auto;
	padding: 8px 0;
	box-shadow: 0 -2px 2px 0 rgba(0,0,0,.1) inset;
}

/* ------------------------------------------------------------ */
/* グローバルナビ */
/* ------------------------------------------------------------ */

header .gNav {
	width: 100%;
	height: auto;
	/*background: url(../img/bg-navi.png) repeat-x left top;	*/
	margin: 0 auto;
	clear: both;
	background: -webkit-linear-gradient(0deg, rgb(222, 222, 222), rgb(255, 255, 255));
	background: linear-gradient(0deg, rgb(222, 222, 222), rgb(255, 255, 255));
	box-shadow: 0 3px 5px 0 rgba(0,0,0,.6);
}

.gNav .menu {
	width: 950px;
	height: auto;
	margin: 0 auto;
}

.gNav .menu li {
	width: calc(100%/7);
	float: left;
	text-align: center;
	font-size: 15px;
	letter-spacing: .05em;
}

.gNav .menu li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 8px 1em;
	background: -webkit-linear-gradient(0deg, rgb(222, 222, 222), rgb(255, 255, 255));
	background: linear-gradient(0deg, rgb(222, 222, 222), rgb(255, 255, 255));
	border-left: 1px solid;
	border-image: linear-gradient(0deg, #a8a8a7, #fff);
	border-image-slice: 1;
}

.gNav .menu li:last-child a {
	border-right: 1px solid;
	border-image: linear-gradient(0deg, #a8a8a7, #fff);
	border-image-slice: 1;
}

.gNav .menu li a:hover {
	color: #a00e2d;
	text-decoration: none;
	background: -webkit-linear-gradient(0deg, rgb(216, 213, 213) 0%, rgb(216, 213, 213) 35%, rgb(255, 255, 255) 85%, rgb(255, 255, 255) 100%);
	background: linear-gradient(0deg, rgb(216, 213, 213) 0%, rgb(216, 213, 213) 35%, rgb(255, 255, 255) 85%, rgb(255, 255, 255) 100%);
}

.gNav .menu li span {
	display: block;
	font-size: 9px;
	color: #9f9f9f;
	margin: 0 0 3px;
}

.gNav .menu li.drop {
	position: relative;
}

.gNav .drop .menu__second-level {
	width: 110%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
}

.gNav .drop:hover .menu__second-level {
	visibility: visible;
	opacity: 1;
}

.gNav .menu__second-level li {
	width: 100%;
	float: none;
	border-bottom: 1px solid #a8a8a7;	
}

.gNav .menu__second-level li:last-child {
	border: none;
}

.gNav .menu__second-level li a {
	padding: 10px 1em;
	background: #efefef;
	border: none;
	border-image: none;
}

.gNav .menu__second-level li a:hover {
    background: #d8d5d5;
}

/* ------------------------------------------------------------ */
/* コンテンツ共通 */
/* ------------------------------------------------------------ */

section.base {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 40px 0;
	clear: both;
	position: relative;
	overflow: hidden;
}

section.base::after {
	content: "";
	clear: both;
	display: block;
}

.content-left {
	width: 600px;
	float: left;
}

.content-right {
	width: 300px;
	float: right;
}

.box {
	width: 100%;
	height: auto;
	margin: 0 auto 40px;
}

/* ------------------------------------------------------------ */
/* 見出し */

.tit {
	font-size: 20px;
	font-weight: 500;
	color: #9d1012;
	letter-spacing: .03em;
	margin: 0 auto 20px;
	position: relative;
}

.tit::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #9d1012;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
}

.tit.lineB::after {
	height: 2.5px;
}

.tit span {
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px 0 0;
	background: #fff;
}

.tit .min {
	font-size: 11px;
	font-weight: 700;
	color: #7c7c7c;
	letter-spacing: .03em;
	padding: 0 0 0 10px;
	margin: 0 0 0 10px;
	position: relative;
}

.tit .min::before {
	content: "";
	display: block;
	width: 1px;
	height: 60%;
	background: #7c7c7c;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.subtit {
	border-left: 5px solid #972b2c;
	font-size: 18px;
	padding: 0 0 0 10px;
	margin: 0 0 20px;
	line-height: 1.4;
}

.subtit.blue {
	border-left: 5px solid #6094c8;
}

.subtit.bdr {
	padding: 0 0 3px;
	font-weight: normal;
	color: #972b2c;	
	border-bottom: 1px solid #972b2c;
	border-left: none;	
}


/* ------------------------------------------------------------ */
/* サイドバー */

.sidebar,
.banner {
	width: 100%;
	height: auto;
	margin: 0 auto 20px;
}

.sidebar li {
	margin: 0 0 5px;
}

.banner li {
	margin: 0 0 10px;
}

.sidebar li a,
.banner li a {
	display: block;
	width: 100%;
	height: 100%;
}

.sidebar li a:hover,
.banner li a:hover {
	opacity: .7;
}

/* ------------------------------------------------------------ */
/* コンテンツ・カラムパターン */
/* ------------------------------------------------------------ */

.column {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
}

.column .item {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* 2カラム */
.column.col02 .item {
	width: calc(100%/2);
}

/* 3カラム */
.column.col03 .item {
	width: calc(100%/3);
}

/* 4カラム */
.column.col04 .item {
	width: calc(100%/4);
}

/* 5カラム */
.column.col05 .item {
	width: calc(100%/5);
}

/* ------------------------------------------------------------ */
/* スライダー共通 */
/* ------------------------------------------------------------ */
.slideBox {
	position: relative;
}

.swiper-slide {
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.swiper-container-horizontal &gt; .swiper-pagination-bullets {
}

.swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	background: #808080;
	border: 1px solid #808080;
	border-radius: 50%;
	opacity: 1;
}

.swiper-pagination-bullet:hover {
	background: #e7686e;
	border: 1px solid #e7686e;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.swiper-pagination-bullet-active {
	background: #e7686e;
	border: 1px solid #e7686e;
}

/* ------------------------------------------------------------ */
/* mainvisual */

.main-visual {
	width: 100%;
	height: auto;
	padding: 30px 0 0;
	margin: 0 auto;
	background: #fff url(../img/bg-wrap.png) no-repeat center top / cover;
	clear: both;
	overflow: hidden;
	position: relative;
}

.mvSlider {
	/*width: 100%;
	height: auto;*/
	width: 950px;
	height: auto;
	margin: 0 auto 320px;
	position: relative;
	z-index: 1;
	padding: 10px;
	background: #fff;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}

.mvSlider .swiper-wrapper {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

.mvSlider.swiper-container-horizontal &gt; .swiper-pagination-bullets {
	padding: 0;
	text-align: center;
	bottom: -35px;
}

.mv_tit {
	width: 850px;	
	height: auto;
	margin: 0 auto;
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
}



/* ------------------------------------------------------------ */
/* PV */

.videoWrap {
	width: 100%;
	height: 320px;
	overflow: hidden;
	margin: 0 auto;
}

.videoWrap iframe {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
footer {
	background: #f5f2f2;
	box-shadow: 0 -3px 5px rgba(0,0,0,.2);	
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 30px 0;
	line-height: 1.8em;
	clear: both;
	position: relative;
	z-index: 999;
}

/* サイトマップ */
.sitemap {
	width: 100%;
	margin: 0 0 15px;
	overflow: hidden;
}

.sitemap li {
	display: inline-block;
	vertical-align: middle;
	font-size: 10px;
	margin: 0 10px 0 0;
}

.sitemap li a {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.sitemap li a:hover {
	color: #2a2a2a;
}

.sitemap li a::before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	margin: 0 5px 0 0;
	color: #d10000;
}

/* sns */
.snslink {
	width: 100%;
	margin: 0;
	overflow: hidden;
	text-align: right;
}

.snslink a {
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 28px;
	line-height: 30px;
	font-size: 18px;
	margin: 0 5px 0 0;
	background: #2a2a2a;
	text-align: center;
	border-radius: 3px;
}

.snslink a:hover {
	opacity: .7;
}

.snslink a.tw {
	color: #7be7f9;
}

.snslink a.fb {
	color: #95b4f0;
}

.snslink a.youtube {
	color: #d60000;
	position: relative;
	z-index: 2;
}

.snslink a.youtube i {
	position: relative;
	z-index: 2;
}

.snslink a.youtube::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.sitemap li:last-child,
.snslink a:last-child {
	margin: 0;
}

.copy,
.address {
	font-size: 12px;
	width: 100%;
	margin: 0 auto;
	line-height: 1.8;
}

@media screen and (max-width: 1024px) {
/* 1024px以下用（タブレット用）の記述 */

.pc {
	display: none;
}

.sp {
	display: block;
}

/* ------------------------------------------------------------ */
/* 共通 */
/* ------------------------------------------------------------ */

/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
.inner {
	max-width: 95%;
}

.content {
	margin: 0 auto 30px;
	padding: 50px 0 0;
}

/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */

header {
	position: fixed;
	top: 0;
	left: 0;
}

header h1.logo {
	width: 30%;
}

.topNav {
	box-shadow: -10px 0 10px 0 rgba(0,0,0,.5);
}

/* ------------------------------------------------------------ */	
/* ナビボタン */
.sb-toggle-right {
	width: 35px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

#spBtn {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 999;
}

#spBtn span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #a00e2d;
	position: absolute;
	left: 0;
	transition: all .4s;
}

#spBtn span:nth-of-type(1) {
	top: 0;
}

#spBtn span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

#spBtn span:nth-of-type(3) {
	bottom: 0;
}

.sb-active #spBtn span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.sb-active #spBtn span:nth-of-type(2) {
	opacity: 0;
}

.sb-active #spBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}

/* ------------------------------------------------------------ */
/* ドロワーナビ */
/* ------------------------------------------------------------ */
.sbNav {
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	background: #f5f2f2;
	border-left: 2px solid #9f9f9f
}

.sb-right-inner {
	width: 100%;
	height: 100%;
	padding: 1em 1em 0;
}

.sb-right-inner .logo {
	width: 85%;
	margin: 0 auto 10px;
}

.drawrNav {
	width: 100%;
	height: auto;
	margin: 0 auto 20px;
}

.drawrNav ul {
	width: 100%;
	height: auto;
}

.menu li {
	margin: 0 auto;
	width: 100%;
	text-align: left;
}

.menu li a,
.menu li p {
	display: block;
	width: 100%;
	height: 100%;
	padding: 8px;
	color: #a00e2d;
	border-bottom: 1px solid #9f9f9f;
}

.menu li p::after {
	content: "\f0d7";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu li p.open::after {
	content: "\f0d8";
}

.menu li span {
	display: block;
	font-size: 10px;
	color: #9f9f9f;
	margin: 0 0 3px;
}

#accordion li .nav-child {
	display: none;
	font-size: .9em;
	padding: 0 0 0 10px;
}

#accordion li .nav-child a {
	border-bottom: none;
}

.drawrNav .menuList li a:hover {
	color: #000;
}

/* ------------------------------------------------------------ */
/* コンテンツ共通 */
/* ------------------------------------------------------------ */
section.base {
	padding: 30px 0;
}

.content-left {
	width: 65%;
}

.content-right {
	width: 30%;
}

.sidebar li {
	margin: 0 0 8px;
}

/* ------------------------------------------------------------ */
/* コンテンツ・カラムパターン */

/* ------------------------------------------------------------ */
/* スライダー共通 */

/* ------------------------------------------------------------ */
/* mainvisual */
/* ------------------------------------------------------------ */

.main-visual {
}

.mvSlider {
	width: 95%;
	margin: 0 auto 220px;
}

.mvSlider.swiper-container-horizontal &gt; .swiper-pagination-bullets {
	bottom: -30px;
}
	
.mv_tit {
	width: 85%;
	bottom: 30px;
}	

/* ------------------------------------------------------------ */
/* PV */
/* ------------------------------------------------------------ */
.videoWrap {
	height: 260px;
}

/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
footer {
	padding: 20px 0;
}
}

@media screen and (max-width: 767px) {
/* 767px以下用（タブレット／スマートフォン用）の記述 */
/* ------------------------------------------------------------ */
/* 共通 */
/* ------------------------------------------------------------ */
	
.font20 {
	font-size: 1.1em;
}

.font22 {
	font-size: 1.15em;
}

.font24 {
	font-size: 1.2em;
}

.font28 {
	font-size: 1.3em;
}

.font32 {
	font-size: 1.5em;
}
	
	
/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
	
.content {
	margin: 0 auto 30px;
	padding: 40px 0 0;
}	
	
/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */

header h1.logo {
	width: 35%;
}
		
/* ------------------------------------------------------------ */
/* コンテンツ共通 */
/* ------------------------------------------------------------ */

section.base {
	padding: 30px 0 0;
}
	
.content-left,
.content-right {
	width: 100%;
	float: none;
	margin: 0 auto 30px;
}	
	
.tit {
	font-size: 1.1em;
}
	
.subtit {
	font-size: 1.05em;
}		
	
/* ------------------------------------------------------------ */
/* sidebar */
	
.sidebar,
.banner {
	margin: 0 auto 10px;
}
	
.sidebar::after,
.banner::after {
	content: "";
	display: block;
	clear: both;
}	
	
.sidebar li,
.banner li	{
	margin: 0 0 10px;
	float: left;
	width: calc(100%/3);
	padding: 0 5px;
}	

/* ------------------------------------------------------------ */
/* コンテンツ・カラムパターン */

/* ------------------------------------------------------------ */
/* スライダー共通 */

/* ------------------------------------------------------------ */
/* メインビジュアル */
/* ------------------------------------------------------------ */

.mvSlider {
	width: 90%;
	margin: 0 auto 200px;
}

/* ------------------------------------------------------------ */
/* PV */

.videoWrap {
	height: 320px;
}	

/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
	
footer {
	padding: 30px 0 20px;
}
	
footer .floatL,
footer .floatR	{
	width: 100%;
	float: none;
	margin: 0 auto 10px;
	text-align: center;	
}	
	
.sitemap {
	margin: 0 auto 10px;
}
	
.snslink {
	text-align: center;
}	
	
}

@media screen and (max-width: 479px) {
/* 479px以下用（スマートフォン用）の記述 */

	
/* ------------------------------------------------------------ */
/* 共通 */
/* ------------------------------------------------------------ */
.font20 {
	font-size: 1.05em;
}

.font22 {
	font-size: 1.1em;
}

.font24 {
	font-size: 1.15em;
}

.font28 {
	font-size: 1.3em;
}

.font32 {
	font-size: 1.5em;
}
	
	
/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
	
.inner {
	max-width: 90%;
}
	
.content {
	margin: 0 auto 20px;
	padding: 40px 0 0;
}	
	
/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */

header .inner {
	max-width: 95%;
}
	
header h1.logo {
	width: 50%;
}

.sb-toggle-right {
	right: 15px;
}
	
.sb-right-inner .logo {
	width: 95%;
	margin: 0 auto 5px;
}	
	
/* ------------------------------------------------------------ */
/* コンテンツ共通 */
/* ------------------------------------------------------------ */

section.base {
	padding: 25px 0 0;
}
	
.box {
	margin: 0 auto 30px;
}
	
.sidebar li,
.banner li {
	width: calc(100%/2);
}	
	
/* ------------------------------------------------------------ */
/* コンテンツ・カラムパターン */

/* ------------------------------------------------------------ */
/* スライダー共通 */

/* ------------------------------------------------------------ */
/* mainvisual */

.main-visual {
	padding: 25px 0 0;
}
	
.mvSlider {
	padding: 5px;
	margin: 0 auto 120px;
}

.mv_tit {
	width: 90%;
	bottom: 10px;
}	
	
	
/* ------------------------------------------------------------ */
/* PV */

.videoWrap {
	height: 200px;
}
	
/* ------------------------------------------------------------ */
/* footer */
	
footer {
	padding: 20px 0 10px;
}	
	
.copy, .address {
	font-size: 10px;
}	
	
}

@media screen and (max-width: 360px) {
/* 360px以下用（スマートフォン用）の記述 */

/* ------------------------------------------------------------ */
/* mainvisual */

.main-visual {
	padding: 20px 0 0;
}
	
.mvSlider {
	margin: 0 auto 100px;
}	
	
.mvSlider.swiper-container-horizontal &gt; .swiper-pagination-bullets {
	bottom: -25px;
}

/* ------------------------------------------------------------ */
/* PV */
	
.videoWrap {
	height: 160px;
}	

}
</pre></body></html>