<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*//////////////////////////////////////////////////////////////
  Html Reset
//////////////////////////////////////////////////////////////*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	vertical-align:baseline;
	background:transparent;
}
html {
	font-size: 10px;
}
body {
	line-height:1;
	-webkit-text-size-adjust : 100%;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}
ul,ol,li {
	list-style-type:none;
}
img {
	vertical-align:top;
}
blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	vertical-align:baseline;
	background:transparent;
}
table {
	border-collapse: separate;
	border-spacing: 0px;
}

/*//////////////////////////////////////////////////////////////
  Base
//////////////////////////////////////////////////////////////*/

/* Clearfix ------------------------------------------------- */

.clear-fix:before,
.clear-fix:after {
	content:"";
	display:table;
}
.clear-fix:after {
	clear:both;
}

/* body ----------------------------------------------------- */

body {
	width: 100%;
    background: #fff;
    color: #3e3e3e;
    font-family: "Yu Gothic","游ゴシック",YuGothic,sans-serif;
	/* font-family: 'Noto Sans JP', sans-serif; */
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    -webkit-text-size-adjust: 100%;
}
section {
	clear: both;
}
.smallonly {
	display: none;
}
@media screen and (max-width: 768px) {
	.smallonly {
		display: block;
	}
	.largeonly {
		display: none;
	}
}

/* link ----------------------------------------------------- */

a:link,
a:visited {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

/* link button ---------------------------------------------- */

.c-btn {
    align-items: center;
    background: #0b3089;
    border: 1px solid #0b3089;
    border-radius: 38px;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    font-size: 1.6rem;
	font-weight: 600;
    height: 60px;
    justify-content: center;
    letter-spacing: .08em;
    line-height: 1.1em;
    position: relative;
    text-decoration: none;
    transition: all 250ms ease;
}
.c-btn:link,
.c-btn:visited {
	text-decoration: none;
}
.c-btn:after {
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    bottom: 0;
    content: "";
    height: 10px;
    margin: auto;
    position: absolute;
    right: 18px;
    top: 0;
    transform: rotate(45deg);
    transition: all 250ms ease;
    width: 10px;
}
.c-btn:hover {
    background: #fff;
    color: #0b3089;
}
.c-btn:hover:after {
    border-right: 1px solid #0b3089;
    border-top: 1px solid #0b3089;
}
@media screen and (max-width: 768px) {
	.c-btn {
		font-size: 1.1rem;
		font-weight: 400;
		height: 36px;
		letter-spacing: .08em;
		line-height: 1.1em;
	}
	.c-btn:after {
		height: 6px;
		right: 12px;
		width: 6px;
	}
}

/* Page Top ------------------------------------------------- */

.pagetop {
    bottom: 40px;
	display: block;
    height: 75px;
    position: fixed;
    right: 20px;
    width: 75px;
    z-index: 100;
}
.pagetop a {
    align-items: center;
    background: #0b3089;
    border: 2px solid #fff;
    border-radius: 100%;
    box-sizing: border-box;
    display: flex;
    font-size: 0;
    height: 100%;
    justify-content: center;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 125px;
    width: 100%;
    transition: all 250ms ease;
}
.pagetop[data-status=show] a {
    top: 0;
}
.pagetop a:before {
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    content: "";
    display: block;
    height: 15px;
    margin: 5px 0 0;
    transform: rotate(45deg);
    width: 15px;
    transition: all 250ms ease;
}
.pagetop a:hover {
    background: #fff;
}
.pagetop a:hover:before {
    border-left: 2px solid #0b3089;
    border-top: 2px solid #0b3089;
}
@media screen and (max-width: 768px) {
	.pagetop {
		display: none;
	}
}

/* Navi ---------------------------------------------------- */

.nav__item {
    align-items: center;
    background: #0b3089;
    border-top: 1px solid #fff;
    bottom: 0;
    box-sizing: border-box;
    display: flex;
    height: 80px;
    justify-content: center;
    left: 0;
    position: fixed;
	right: 0;
    transform: translateY(100%);
    width: 100%;
    z-index: 100;
    transition: all 250ms ease;
}
.nav__item[data-status=show] {
    transform: translateY(0);
}
.nav__item a {
    align-items: center;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 48px;
    box-sizing: border-box;
    color: #0b3089;
    display: flex;
    font-family: "游明朝体","Yu Mincho",YuMincho,serif;
    font-size: 1.5rem;
	font-weight: 800;
    height: 48px;
    justify-content: center;
    letter-spacing: .1em;
    margin: 0 15px;
    position: relative;
    text-decoration: none;
    width: 250px;
    transition: all 250ms ease;
}
.nav__item a:after {
    border-bottom: 2px solid #0b3089;
    border-right: 2px solid #0b3089;
    bottom: 0;
    box-sizing: border-box;
    content: "";
    height: 11px;
    margin: auto;
    position: absolute;
    right: 14px;
    top: 0;
    transform: rotate(-45deg);
    width: 11px;
    z-index: 5;
    transition: all 250ms ease;
}
.nav__item a:hover {
    background: #0b3089;
    color: #fff;
}
.nav__item a:hover:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}
@media screen and (max-width: 768px) {
	.nav__item {
		background: 0 0;
		border: none;
		height: 40px;
		padding: 0 15px;
	}
	.nav__item[data-status=show] {
		bottom: 15px;
	}
	.nav__item a {
		box-shadow: 0 0 10px rgb(0 0 0 / 25%);
		background: #0b3089;
		border: none;
		color: #fff;
		font-size: 1.1rem;
		height: 40px;
		letter-spacing: .06em;
		margin: 0 6px;
	}
	.nav__item a:after {
		border-color: #fff;
		border-width: 1px;
		height: 7px;
		right: 10px;
		width: 7px;
	}
}

/* Galley --------------------------------------------------- */

.gallery {
	width: 100%;
	background-color: #ebecf0;
	padding: 0 0 60px;
}
.gallery h2 {
	color: #0b3089;
	font-size: 3.8rem;
	font-weight: 400;
	font-family: "Noto Serif",serif;
	letter-spacing: .07em;
	padding: 30px 0;
}
@media screen and (max-width: 768px) {
	.gallery {
		padding: 0 0 30px;
	}
	.gallery h2 {
		font-size: 2.2rem;
		padding: 20px 0;
	}
}

/*//////////////////////////////////////////////////////////////
  Slider
//////////////////////////////////////////////////////////////*/

.slider {
	margin : 0px auto;
	position : relative;
	width : 1000px;
}
.slider_prev {
	bottom : 0px;
	height : 30px;
	left : 0%;
	margin : auto 0px auto 0px;
	position : absolute;
	top : 0px;
}
.slider_next {
	bottom : 0px;
	height : 30px;
	margin : auto 0px auto 0px;
	position : absolute;
	right : 0%;
	top : 0px;
}
.slider_prev img,
.slider_next img {
	cursor : pointer;
	height : 30px;
	width : 15px;
}
.slider_next img {
	transform : rotate(180deg);
}
.slider_wrapper {
	margin : 0px auto;
	overflow : hidden;

	width : 880px;
}
.slider_images {
	display : flex;
}
.slider_images[data-animation="true"] {
	transition : transform 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.slider_images li {
	flex-shrink : 0;
	padding : 0px 20px 0px 0px;
	width : 280px;
}
.slider_images a {
	border : 1px solid #0b1465;
	display : block;
}
.slider_images img {
	width : 100%;
}
@media screen and (max-width: 768px) {
	.slider {
		width : 100vw;
	}
	.slider_prev ,
	.slider_next {
		display: none;
	}
	.slider_wrapper {
		width : 100%;
	}
	.slider_images li {
		padding : 0px 0px 0px 15px;
		width : 140px;
	}
}

.modal {
  align-items : center;
  bottom : 0px;
  box-sizing : border-box;
  display : none;
  justify-content : center;
  left : 0px;
  margin : auto;
  position : fixed;
  right : 0px;
  top : 0px;
  z-index : 1000;
}
.modal[data-modal="show"] {
  animation : fadein 500ms ease 0s 1 forwards;
  display : flex;
}
.modal[data-modal="close"] {
  animation : fadeout 500ms ease 0s 1 forwards;
  display : flex;
}
.modal[data-modal="hide"] {
  display : none;
}
.modal_bg {
  background : rgba(0,0,0,0.6);
  bottom : 0;
  left : 0;
  margin : auto;
  position : fixed;
  right : 0;
  top : 0;
  z-index : 1;
}
.modal_wrapper{
	/* width:960px; */
	position: relative;
	z-index: 10;
}
.modal_body{
	/* background: white; */
}
.modal_body img{
	max-width: 95%;
	max-height: 95vh;
	object-fit: contain;
}
@media screen and (max-width: 768px) {
	.modal_body img{
		max-width: 80vw;
		max-height: 80vh;
		object-fit: contain;
	}
}

.modal_body iframe {
	width : 960px;
	height: 540px;
}
.modal_close {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 10px;
	top:10px;
	cursor: pointer;
	z-index: 10;
}
.modal_close::before,
.modal_close::after {
	width: 40px;
	height: 2px;
	background: white;
	position: absolute;
	left: 0px;
	top: 0px;
	bottom:0px;
	right: 0px;
	margin: auto;
	content: "";
}
.modal_close::after {
	transform:rotate(45deg);
}
.modal_close::before{
	transform:rotate(-45deg);
}

/*//////////////////////////////////////////////////////////////
  Movie
//////////////////////////////////////////////////////////////*/

.movie {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
	background: url(../img/mv.webp) no-repeat center;
	background-size: cover;
}
.movie__scroll {
  bottom : 30px;
  height : 75px;
  left : 0px;
  margin : 0px auto;
  position : absolute;
  right : 0px;
  text-align: center;
  width : 160px;
  z-index : 100;
}
.movie__scroll a {
  background : rgba(7, 57, 128, 0.8);
  border-radius : 100%;
  box-sizing : border-box;
  display : block;
  font-size : 0px;
  height : 100%;
  margin: 0 auto;
  padding : 30px 0px 0px;
  text-align : center;
  width : 75px;
  text-decoration: none;
  transition:padding 300ms ease;
}
.movie__scroll a:before {
  text-decoration: none;
  color : white;
  content : "商品詳細はこちら";
  font-size : 18px;
  font-family: "游明朝体","Yu Mincho",YuMincho,serif;
  left : 0px;
  letter-spacing : 1px;
  position : absolute;
  text-align : center;
  top : -30px;
  width : 100%;
}
.movie__scroll a:hover {
  padding : 35px 0px 0px;
}
.movie__scroll img {
  width: 26px;
}

/* PC用 */
@media screen and (min-width: 769px) {
	.movie {
	}
	.movie iframe {
		left : 50%;
		min-height : 100%;
		position : absolute;
		top : 50%;
		transform : translate(-50%,-50%);
		width : 100%;
		z-index : 1;
	}
	.movie:before {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0px;
		top: 0px;
		z-index: 10;
		background: transparent;
		content: "";
	}
	.movie__btn {
		display:none;
	}
}
/* スマホ用 */
@media screen and (max-width: 768px) {
	.movie {
		background: url(../img/mv_sp.webp) no-repeat center;
		background-size: cover;
	}
	.movie iframe {
		display:none;
	}
	.movie__btn {
		bottom: 100px;
		display: block;
		height: 125px;
		position: absolute;
		right: 15px;
		width: 160px;
		z-index: 10;
	}
	.movie__btn img {
		width: 100%;
	}
	.movie__scroll {
	  bottom : 15px;
	  height : 40px;
	  width : 120px;
	}
	.movie__scroll a {
	  padding : 17px 0px 0px;
	  width : 40px;
	}
	.movie__scroll a:before {
	  font-size : 12px;
	  font-family: "游明朝体","Yu Mincho",YuMincho,serif;
	  left : 0px;
	  top : -18px;
	}
	.movie__scroll a:hover {
		padding : 20px 0px 0px;
	}
	.movie__scroll img {
		width: 16px;
	}
}
  /*
.movie__sp{
    height:auto !important;
}
.movie__sp .movie iframe{
    display:none;
}
  .movie__sp .movie__scroll {
    bottom : 5px;
    height : 28px;
    width : 28px;
  }
  .movie__sp .movie__scroll a{
    padding : 13px 0px 0px;
  }
  .movie__sp .movie__scroll a img{
    width : 7px;
  }
.movie__sp .movie__spimg {
    position : relative;
    display:block !important;
    width : 100%;
    z-index : 1;
}
.movie__sp .movie__btn {
	display:block;
	bottom : 36px;
	left : 0px;
	position : absolute;
	z-index : 10;
}
  .movie__sp .movie__btn img{
		width:50%;
		max-width:389px;
	}
*/</pre></body></html>