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

/*--作業用*/
#wrapper {overflow: hidden;}
.outer-menu {display:;}
/*--------------------------------------------------------------------------ページ全体を包括*/
#wrapper {
width: 100%;
margin: 0 auto;
overflow: hidden;
}

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

body {
  animation: disableScroll .1s linear 1.0s both;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 200px;
	right: 20px;
	width: 40px;
	height: 40px;
	z-index: 1000;
}
@media screen and (max-width:767px){
.pagetop {
	display: none;
	position: fixed;
	bottom: 0px;
	right: 0;
	width: 0;
	height: 0;
	z-index: 1000;
	cursor: pointer;
}
.pagetop img{
	width: 0;
	height: 0;
}
}
/*--------------------------------------------------------------------------ヘッダー*/

header {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 0;
	z-index: 20000;
	position: relative;
	top: 0;
	background-color: #fff;
}
.head {
	width: 100%;
	height: 180px;
	text-align: left;
	margin: 0 auto;
	padding: 0;
	line-height: 0;
}
h1 {
	width: 100%;
	position: absolute;
	height: 110px;
	top: 30px;
	text-align: center;
}
h1 img{
	width: 186px;
	height: 110px;
}
h1,h2,h3,h4,h5,h6 { font-weight: normal;}

@media screen and (max-width:767px){
header {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}
.head {
	width: 100%;
	min-width: 310px;
	height: 85px;
	text-align: left;
	margin: 0 auto;
}
h1 {
	width: 100%;
	height: 59px;
	top: 13px;
	text-align: center;
}
h1 img {
	width: 90px;
	height: 59px;
}
}

/*--インスタ--*/
.hig {
  position: fixed;
  width: 80px;
  height: 80px;
  top: 50px;
  left: 50px;
  z-index: 100000;
  transition: 0.4s;
  background-image: url(../web/object/hig.png);
}
.hig:hover {
  background-image: url(../web/object/higon.png);
}
.hig img{
  transition: 0.4s;
}
.hig img:hover {
	opacity: 0.0;
}
@media screen and (max-width:767px){
.hig {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 20px;
  left: 10px;
  z-index: 100000;
  transition: 0.4s;
  background-image: url(../web/object/hig.png);
  background-size: contain;
}
}
/*--ハンバーガーメニュー --*/
.outer-menu {
  position: fixed;
  top: 50px;
  right: 130px;
  z-index: 100000;
}
.outer-menu .checkbox-toggle {
	position: absolute;
	top: -2px;
	left: -2px;
	z-index: 2;
	cursor: pointer;
	width: 80px;
	height: 80px;
	opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger &gt; div {
  transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger &gt; div:before,
.outer-menu .checkbox-toggle:checked + .hamburger &gt; div:after {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger &gt; div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu &gt; div {
  transform: scale(1);
  transition-duration: .75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu &gt; div &gt; div {
  opacity: 1;
  transition: opacity .4s ease .4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger &gt; div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  padding: .5em 1em;
  background: rgba(255,255,255,0.4);
  border-radius: 0 .12em .12em 0;
  cursor: pointer;
  transition: box-shadow .4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.outer-menu .hamburger &gt; div {
  position: relative;
  flex: none;
  width: 100%;
  height: 3px;
  background: #92153e;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger &gt; div:before,
.outer-menu .hamburger &gt; div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: inherit;
  transition: all .4s ease;
}
.outer-menu .hamburger &gt; div:after {
  top: 15px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu &gt; div {
  width: 200vw;
  height: 200vw;
  color: #000;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  transition: all .4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu &gt; div &gt; div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity .4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 35px;
  display: block;
  color: #000;
  text-align: left;
  text-indent: 60px;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst1 {
	background-image: url(../web/object/hmac01.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst2 {
	background-image: url(../web/object/hmac02.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst3 {
	background-image: url(../web/object/hmac03.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst4 {
	background-image: url(../web/object/hmac04.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst5 {
	background-image: url(../web/object/hmac05.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst6 {
	background-image: url(../web/object/hmac06.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst7 {
	background-image: url(../web/object/hmac07.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst8 {
	background-image: url(../web/object/hmac08.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li &gt; a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color .4s ease;
  text-decoration: none;
  color: #000;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li &gt; a:hover {
  text-decoration: none;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li &gt; a:hover {
  color: #92153e;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li &gt; a:hover:after {
  width: 100%;
}

/* グローバルナビ　モバイル*/
@media screen and (max-width:767px){
.outer-menu {
  position: fixed;
  top: 20px;
  right: 60px;
  z-index: 100000;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  padding: .5em 1em;
  background: rgba(255,255,255,0.4);
  border-radius: 0 .12em .12em 0;
  cursor: pointer;
  transition: box-shadow .4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.outer-menu .hamburger &gt; div {
  position: relative;
  flex: none;
  width: 200%;
  height: 2px;
  background: #92153e;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger &gt; div:before,
.outer-menu .hamburger &gt; div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all .4s ease;
}
.outer-menu .hamburger &gt; div:after {
  top: 10px;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li {
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 20px;
  display: block;
  color: #FFF;
  text-align: left;
  text-indent: 50px;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst1 {
	background-size: contain;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst2 {
	background-size: contain;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst3 {
	background-size: contain;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst4 {
	background-size: contain;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst5 {
	background-size: contain;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst6 {
	background-size: contain;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst7 {
	background-size: contain;
}
.outer-menu .menu &gt; div &gt; div &gt; ul &gt; li.hst8 {
	background-size: contain;
}

}


/*--------------------------------------------------------------------------フッター*/
footer {
	width: 100%;
	height: 650px;
	margin-top: 150px;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	float: left;
	background-image: url(../web/object/footer.webp);
	background-position: center;
}

#foot {
	width: 1100px;
	height: 500px;
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0,0,0,0.4);
}
.ft_logo {
	width: 180px;
	height: 106px;
	float: left;
	margin-top: 30px;
	margin-left: 460px;
}
.ft_logo img{
	width: 180px;
	height: 106px;
}
.fig {
	width: 40px;
	height: 40px;
	float: left;
	margin-top: 30px;
	margin-left: 500px;
	clear: both;
}
.fmap {
	width: 40px;
	height: 40px;
	float: left;
	margin-top: 30px;
	margin-left: 20px;
	transition: 0.4s;
}
#fbox {
	width: 900px;
	height: 220px;
	float: left;
	margin-top: 40px;
	margin-left: 100px;
	background-color: rgba(0,0,0,0.4);
}
#fbox .t1{
	width: 350px;
	height: 160px;
	float: left;
	margin-top: 40px;
	margin-left: 100px;
}
#fbox .t1 p{
	width: 100%;
	color: #FFF;
	font-size: 15px;
	line-height: 30px;
	text-align: left;
}
#fbox .t2{
	width: 350px;
	height: 160px;
	padding-left: 50px;
	float: left;
	margin-top: 40px;
	margin-left: 0px;
	border-left: 1px solid #999;
}
#fbox .t2 p{
	width: 100%;
	color: #FFF;
	font-size: 15px;
	line-height: 30px;
	text-align: left;
}
.cr {
	width: 100%;
	height: 50px;
	font-size: 10px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	float: left;
	background-color: #92153e;
}

@media screen and (max-width:767px){
footer {
	width: 100%;
	height: auto;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0px;
	padding-bottom: 15px;
}
#foot {
	width: 310px;
	height: 390px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0,0,0,0.4);
}
.ft_logo {
	width: 90px;
	height: 53px;
	float: left;
	margin-top: 20px;
	margin-left: 110px;
}
.ft_logo img{
	width: 90px;
	height: 53px;
}
.fig {
	width: 30px;
	height: 30px;
	float: left;
	margin-top: 15px;
	margin-left: 120px;
	clear: both;
}
.fig img{
	width: 30px;
	height: 30px;
}
.fmap {
	width: 30px;
	height: 30px;
	float: left;
	margin-top: 15px;
	margin-left: 10px;
	transition: 0.4s;
}
.fmap img{
	width: 30px;
	height: 30px;
}
#fbox {
	width: 260px;
	height: auto;
	float: left;
	padding: 10px;
	margin-top: 10px;
	margin-left: 15px;
	background-color: rgba(0,0,0,0.4);
}
#fbox .t1{
	width: 260px;
	height: auto;
	float: left;
	margin-top: 20px;
	margin-left: 0px;
}
#fbox .t1 p{
	width: 100%;
	color: #FFF;
	font-size: 12px;
	line-height: 15px;
	text-align: left;
}
#fbox .t2{
	width: 260px;
	height: auto;
	padding-left: 0px;
	float: left;
	margin-top: 10px;
	margin-left: 0px;
	border-left: 0px solid #999;
}
#fbox .t2 p{
	width: 100%;
	color: #FFF;
	font-size: 12px;
	line-height: 20px;
	text-align: left;
}
#fbox .t2 p img{
	width: 50%;
}
.cr {
	width: 100%;
	height: 20px;
	font-size: 10px;
	text-align: center;
	line-height: 20px;
	color: #fff;
	float: left;
}
}
</pre></body></html>