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

/* グローバルナビ　モバイル*/
.outer-menu {
  position: fixed;
  top: 10px;
  right: 45px;
  z-index: 100000;
  display: block;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  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: 40px;
  height: 40px;
  padding: .5em 1em;
  background: rgba(0,0,0,1.0);
  border-radius: 4px;
  cursor: pointer;
  transition: box-shadow .4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  outline: 2px solid #FFF;
  outline-offset: -2px;
}
.outer-menu .hamburger &gt; div {
  position: relative;
  flex: none;
  width: 200%;
  height: 2px;
  background: #FEFEFE;
  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: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all .4s ease;
}
.outer-menu .hamburger &gt; div:after {
  top: 7px;
}

.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: 300vw;
  height: 300vw;
  color: #FEFEFE;
  background: rgba(0,0,0,0.90);
  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: 100vw;
  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{
    scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
    -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/}
.outer-menu .menu &gt; div &gt; div::-webkit-scrollbar{
	  display: none;
}


#dmcontainer {
  width: 300px;
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
}
.outer-menu .menu &gt; div &gt; div{
    scrollbar-width: none; /*Firefox対応のスクロールバー非表示コード*/  
    -ms-overflow-style: none;/*Internet Explore対応のスクロールバー非表示コード*/}
.outer-menu .menu &gt; div &gt; div::-webkit-scrollbar{
	  display: none;
}

#dmcmenu {
	width: 100%;
	height: auto;
	float: left;
}
#dmcmenu .ttl a{
	width: 100%;
	height: 24px;
	float: left;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	color: #FFF;
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	text-decoration: none;
	margin-bottom: 14px;
	border-bottom: 1px dotted #999999;
}

#hmlogo {
	width: 100%;
	height: auto;
	float: left;
	margin-top: 20px;
	text-align: center;
}
#hmlogo p{
	width: 100%;
	height: auto;
	float: left;
	margin-top: 10px;
	text-align: center;
	margin-top: 5px;
	font-size: 14px;
	line-height: 17px;
	font-weight: 500;
	color: #FFF;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 1px;
}
#hmlogo p a{
	color: #FFF;
	text-decoration: none;
}
#hmlogo img{
	width: 260px;
	height: auto;
}</pre></body></html>