@charset "utf-8";

@import url("reset.css");
@import url("print.css");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap&subset=japanese');

html {
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  color: #000;
  margin: auto;
}
@media screen and (max-width: 560px) {
  body {
    font-size: 1em;
    min-width: inherit;
    margin: 0;
    padding: 0;
  }
}

img {
  border: none;
}

table.default {
  width: 100%;
  font-style: normal;
  border-collapse: separate;
  border-spacing: 0.5em;
  font-size: 0.95em;
}

table.default th, table.default td {
  vertical-align: top;
}

table.default th {
  padding: 0.75em 1.5em;
  background: rgba(57,40,23,0.8);
  font-weight: normal;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
  color: #FFF;
  border-radius: 0.25em;
}
@media only screen and (max-width: 560px) {
  table.default th {
    padding: 0.5em 1em;
    display: block;
  }
}

table.default td {
  padding: 0.75em 1.5em;
  text-align: left;
  background: rgba(255,255,255,0.7);
  border-radius: 0.25em;
}
@media only screen and (max-width: 560px) {
  table.default td {
    padding: 0.5em 1em;
    display: block;
  }
}

ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}

iframe {
  display: block;
}

a {
  color: #1B1B1B;
  transition: all .30s ease;
}

a:hover {
  text-decoration: none;
  transition: all .30s ease;
}

.small {
  font-size: 0.8em;
}

.big {
  font-size: 1.2em;
}

.fontRed {
  color: #d70000;
}

.fontBlue {
  color: #3545c0;
}

.fontYellow {
  color: #ffcc00;
}

.fontGreen {
  color: #0A8A00;
}

.fontGray {
  color: #555555;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

#headerWrapper {
  background-image: url("../img/headerBg.png");
  background-repeat: repeat-x;
  background-size: contain;
  transition: all .30s ease;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 10px 1% 80px 3%;
  top: 0px;
  left: 0px;
  overflow: hidden;
  position: fixed;
  display: flex;
  z-index: 9980;
  box-sizing: border-box;
}
@media only screen and (max-width: 1080px) {
  #headerWrapper {
    overflow: visible !important;
    padding: 0;
    height: 100px;
  }
}

#header {
  width: auto;
  margin: 0 auto 0 0;
  position: relative;
}
@media only screen and (max-width: 1080px) {
  #header {
    width: auto;
    position: static;
    margin: 0;
  }
}

#logo {
  margin: 0 !important;
  padding: 0 !important;
  z-index: 500;
  line-height: 1em;
}
@media only screen and (max-width: 1080px) {
  #logo {
    margin: 0 auto !important;
    padding: 20px 0 0 10% !important;
    text-align: left;
  }
}
@media only screen and (max-width: 560px) {
  #logo {
    margin: 0 auto !important;
    padding: 20px 0 0 5% !important;
    text-align: left;
  }
}

#logo img {
  width: 300px;
  vertical-align: middle;
  margin-right: 1em;
}
@media only screen and (max-width: 560px) {
  #logo img {
    height: 50px;
    width: auto;
  }
}

#headerInner {
}
@media only screen and (max-width: 560px) {
  #headerInner {
  }
}

#toggle {
  display:none;
}
@media only screen and (max-width: 1080px) {
  #toggle {
    display: block;
    width: 25px;
    height: 25px;
    margin: 0;
    position: fixed;
    cursor: pointer;
    float: none;
    top: 50px;
    left: 93%;
    z-index: 400;
  }
}
@media only screen and (max-width: 560px) {
  #toggle {
    top: 33px;
    left: 90%;
  }
}

#toggle .bar {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #FFF;
	position: absolute;
	left: 0;
	transition: .15s ease-in-out;
  border-radius: 1px;
  z-index: 500;
}
#bar01 {
	top: 0;
}
#bar02 {
	top: 8px;
}
#bar03 {
	top: 16px;
}
.active #bar01 {
	top: 7px;
	transform: rotate(45deg);
}
.active #bar02 {
	width: 0;
}
.active #bar03 {
	top: 7px;
	transform: rotate(-45deg);
}

#menuWrapper {
  position: relative;
}
@media only screen and (max-width: 1080px) {
  #menuWrapper {
    display: none;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.8);
    position: fixed !important;
  }
}

#menuWrapper ul {
  margin: 25px 0 0 auto;
  padding: 0;
  list-style: none;
  display: table;
  box-sizing: border-box;
  text-shadow: 0px 1px 3px rgba(0,0,0,0.6);
}
@media only screen and (max-width: 1080px) {
  #menuWrapper ul {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    display: block !important;
    width: 70%;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
  }
}

#menuWrapper ul li {
  margin: 0;
  padding: 0;
  display: table-cell;
  white-space: nowrap;
  line-height: 1em;
  box-sizing: border-box;
  vertical-align: middle;
}
@media only screen and (max-width: 1080px) {
  #menuWrapper ul li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

#menuWrapper ul li a {
  text-decoration: none;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin: 0;
  padding: 3px 1em 1px 1em;
  color: #FFF;
  border-left: 1px solid rgba(255,255,255,0.3);
  line-height: 0.9em;
  font-size: 0.9em;
}
@media only screen and (max-width: 1080px) {
  #menuWrapper ul li a {
    display: block;
    padding: 20px;
    height: auto;
    text-align: center;
    font-size: 1.1em;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: none;
    width: 100% !important;
    box-sizing: border-box;
    opacity: 1;
  }
}

#menuWrapper ul li:first-of-type a {
  border-left: none;
}

#menuWrapper ul li a:hover {
  background-color: #6E5713 !important;
  opacity: 1;
}
@media only screen and (max-width: 560px) {
  #menuWrapper ul li a:hover {
  }
}


#menuWrapper ul li.snsLink {
  width: 5.5em;
  padding-left: 0.5em;
}
@media only screen and (max-width: 1080px) {
  #menuWrapper ul li.snsLink {
    display: inline-block;
    flex-wrap: nowrap;
    padding: 20px 0;
    height: auto;
    text-align: center;
    background: none;
    border-radius: 0;
    width: auto !important;
    box-sizing: border-box;
    position: static;
  }
}

#menuWrapper ul li.snsLink a {
  width: 2em;
}
@media only screen and (max-width: 1080px) {
  #menuWrapper ul li.snsLink a {
    display: inline-block;
    flex-wrap: nowrap;
    padding: 10px 0;
    height: auto;
    text-align: center;
    border: none;
    background: none;
    border-radius: 0;
    width: auto !important;
    box-sizing: border-box;
    opacity: 1;
    position: static;
  }
}

#menuWrapper ul li.snsLink a:hover {
  transition: all .05s ease;
  opacity: 0.5;
  background: none !important;
}

#menuWrapper ul li.snsLink img {
  width: 2em;
}
@media only screen and (max-width: 1080px) {
  #menuWrapper ul li.snsLink img {
    padding: 0 0.5em;
    width: 2.5em;
  }
}


/*================================================
inview
================================================*/

.scrollView {
  opacity: 0;
  transform: translate(0,30px);
  -webkit-transform: translate(0,30px);
  transition: 1s;
}

.scrollViewAction {
  opacity: 1.0;
  -webkit-animation: scrollViewA 0.8s forwards ease-in-out;
  animation: scrollViewA 0.8s forwards ease-in-out;
}
@-webkit-keyframes scrollViewA {
  0% {
    opacity: 0;
    -webkit-transform: translate(0,30px);
  }
  100% {
    opacity: 1.0;
    -webkit-transform: translate(0,0);
  }
}
@keyframes scrollViewA {
  0% {
    opacity: 0;
    transform: translate(0,30px);
    -webkit-transform: translate(0,30px);
  }
  100% {
    opacity: 1.0;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
  }
}

.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeInAction {
  opacity: 1.0;
  -webkit-animation: fadeInA 0.8s forwards ease-in-out;
  animation: fadeInA 0.8s forwards ease-in-out;
}
@-webkit-keyframes fadeInA {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}
@keyframes fadeInA {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}

h2 {
  font-family: 'Noto Serif JP';
  margin: 0;
  padding: 0 0 1.5em 0;
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  position: relative;
  line-height: 1em;
}
@media only screen and (max-width: 560px) {
  h2 {
    font-size: 1.8em;
    background-size: 70px auto;
  }
}

h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 3px;
	height: 40px;
	background-color: #6E5713;
}
@media only screen and (max-width: 560px) {
  h2::after {
    height: 30px;
  }
}


h3 {
  font-family: 'Noto Serif JP';
  font-size: 1.8rem;
  margin: 0 0 1em 0;
  padding: 0 0 1em 0;
  line-height: 1em;
  text-align: left;
  font-weight: 500;
  position: relative;
  border: none;
}
@media only screen and (max-width: 1080px) {
  h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 560px) {
  h3 {
    font-size: 1.5rem;
  }
}
h3:before {
  position: absolute;
  top: auto;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: rgba(0,0,0,0.2);
}
h3:after {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  content: '';
  background: #6E5713;
}

.bgextend {
	animation-name: bgextendAnimeBase;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity: 0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
  }
}

.bgappear {
	animation-name:bgextendAnimeSecond;
	animation-duration: 1s;
	animation-delay: 0.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
  }
}

.bgLRextend::before {
	animation-name: bgLRextendAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(124,103,75,0.7);
}
@keyframes bgLRextendAnime {
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

.bgappearTrigger, .bgLRextendTrigger {
    opacity: 0;
}

#contents {
  line-height: 1.5em;
}

.section {
  margin: 0 auto;
  padding: 100px 0 !important;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 560px) {
  .section {
    padding: 60px 0 !important;
  }
}

.section .sectionInner {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}
@media only screen and (max-width: 1080px) {
  .section .sectionInner {
    margin: 30px auto 0 auto !important;
    padding: 0 3%;
  }
}

.catchcopyWrap {
  text-align: center;
}

.catchcopy {
  display: inline-block;
  background: #000;
  text-align: center;
  font-family: 'Noto Serif JP';
  font-size: 2.3rem;
  margin: 0 0 1em 0;
  padding: 0.2em 1em;
  letter-spacing: -0.05em;
  line-height: 1em;
}
@media only screen and (max-width: 560px) {
  .catchcopy {
    font-size: 1.5em;
  }
}

.left {
  width: 47%;
  float: left;
}
@media only screen and (max-width: 560px) {
  .left { 
    width: auto;
    float: none;
    margin: auto;
  }
}

.right {
  width: 47%;
  float: right;
}
@media only screen and (max-width: 560px) {
  .right { 
    width: auto;
    float: none;
    margin: auto;
  }
}

.moreInformation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
}

.moreInformationRight {
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;
}

.moreInformationLeft {
  display: flex;
  justify-content: flex-start;
  margin-top: 2em;
}

.moreInformation a, .moreInformationRight a, .moreInformationLeft a {
  display: block;
  background: #6E5713;
  color:#fff;
  padding: 0.75em 2.5em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1em;
  font-size: 0.85em;
  border-radius: 1.5em;
}

.moreInformation a:hover, .moreInformationRight a:hover , .moreInformationLeft a:hover {
  opacity: 0.7;
}


/*================================================
#mainVisual
================================================*/

#mainVisual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
@media only screen and (max-width: 560px) {
  #mainVisual {
    aspect-ratio: 10 / 8;
  }
}

#mainVisual video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-50%) scale(1.5);
}
@media only screen and (max-width: 560px) {
  #mainVisual video {
    transform: translateX(-50%) scale(1.9);
  }
}

/*================================================
#information
================================================*/

#information {
  background:  url("../img/bg01.jpg") repeat;
  text-align: center;
  color: 000;
}

#information .moreInformation .instaIcon {
  width: 1.8em;
  height: 1.8em;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.75em;
}

#newsList {
  margin: 50px auto 0 auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  line-height: 1.5em;
  text-align: left;
}
@media only screen and (max-width: 1080px) {
  #newsList {
    margin: 30px auto 0 auto;
    padding: 0;
  }
}

#newsList li {
  margin: 0;
  padding: 1em 0;
  list-style: none;
  border-bottom: 1px solid rgba(0,0,0,0.5);
}

#newsList li:first-child {
  border-top: 1px solid rgba(0,0,0,0.5);
}

#newsList dl {
  display: flex;
  margin: 0;
  padding: 0;
  line-height: 1.75em;
}
@media only screen and (max-width: 560px) {
  #newsList dl {
    display: block;
    padding: 0 1em;
  }
}

#newsList dl dt {
  margin: 0;
  padding: 0 0 0 2em;
  width: 12em !important;
  overflow: hidden;
}
@media only screen and (max-width: 560px) {
  #newsList dl dt {
    padding: 0 0 0.5em 0;
    width: auto !important;
    font-weight: normal;
  }
}

#newsList dl dd {
  margin: 0;
  padding: 0 0 0 2em;
  box-sizing: border-box;
  width: calc(100% - 12em);
  position: relative;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
@media only screen and (max-width: 560px) {
  #newsList dl dd {
    width: auto;
    padding: 0 0 0 1em;
    text-indent: 0;
  }
}

#newsList dl dd::before {
  content: "－";
  display: inline-block;
  width: 1.5em;
  color: #6E5713;
  font-weight: bold;
}
@media only screen and (max-width: 560px) {
  #newsList dl dd::before {
    display: none;
  }
}


a.modalOpen {
  text-decoration: underline;
}

a.modalOpen:hover {
  text-decoration: none;
  cursor: pointer;
}

#modalOverlay {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.popup {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  max-height: 80vh;  
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.popupContent {
  max-height: 80vh;
  overflow-y: auto;
  padding: 2em 5%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.popup .closeBtn {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1002;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.popup .closeBtn a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

.popup .closeBtn a:hover {
  color: #000;
}


.popupContent img {
  display: block;
  max-width: 100%;
  border-radius: 0.5em;
  box-sizing: border-box;
}



/*================================================
  #greeting
================================================*/

#greeting {
  background: url("../img/greetingBg.jpg") no-repeat center;
  background-size: cover;
  color: #FFF;
}

#greeting .sectionInner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 560px) {
  #greeting .sectionInner {
    display: block;
  }
}

#greeting #greetingPhoto {
  width: 30%;
}
@media only screen and (max-width: 560px) {
  #greeting #greetingPhoto {
    width: 60%;
    margin: 3em auto auto auto;
  }
}

#greeting #greetingPhoto img {
  width: 100%;
  display: block;
  border-radius: 1em;
  border: 5px solid #FFF;
  margin-top: 0.5em;
  box-sizing: border-box;
}

#greeting #greetingMessage {
  width: 65%;
}
@media only screen and (max-width: 560px) {
  #greeting #greetingMessage {
    width: auto;
  }
}

#greeting #greetingMessage p:first-child {
  margin-top: 0;
}

#greeting .catchcopy {
  background: rgba(66,50,30,0.80);
}

#greeting .signature {
  text-align: center;
  font-family: 'Noto Serif JP';
  font-size: 1.1em;
}


/*================================================
#about
================================================*/

#about {
  background:  url("../img/aboutBg.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
}

#history dl {
  display: flex;
  margin: 0.5em 0 0 0;
}
@media only screen and (max-width: 560px) {
  #history dl {
    display: block;
    border-top:  1px solid #7C7C7C;
  }
}

#history dl:first-of-type {
  margin-top: 0;
}
@media only screen and (max-width: 560px) {
  #history dl:first-of-type {
    border: none;
  }
}

#history dt {
  width: 13em;
}
@media only screen and (max-width: 560px) {
  #history dt {
    width: auto;
  }
}

#history dd {
  margin: 0;
  position: relative;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
@media only screen and (max-width: 560px) {
  #history dd {
    padding-left: 1.5em;;
    text-indent: 0;
  }
}

#history dd::before {
  content: "－";
  display: inline-block;
  width: 1.5em;
  color: #6E5713;
  font-weight: bold;
}
@media only screen and (max-width: 560px) {
  #history dd::before {
    display: none;
  }
}


/*================================================
  #serviceList
================================================*/

#service {
  background: rgba(231,228,221,1.00);
}

#serviceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw 2vw;
  list-style: none;
  padding: 0.5vw;
}
@media only screen and (max-width: 560px) {
  #serviceList {
    display: block;
    padding: 0.5vw;
    width: 90%;
    margin: auto;
  }
}

#serviceList li {
  background: #FFF;
  overflow: hidden;
  box-shadow: 0px 5px 16px -6px rgba(0,0,0,0.3);
  border-radius: 1em;
}
@media only screen and (max-width: 560px) {
  #serviceList li {
    margin-bottom: 20px;
  }
}


#serviceList li dl {
  box-sizing: border-box;
  padding: 0.5em 2em;
}

#serviceList li dt {
  font-family: 'Noto Serif JP';
  font-weight: bold;
  margin-bottom: 0.5em;
  padding: 1em 0;
  text-align: center;
  font-size: 1.5em;
}

#serviceList li dd {
}

#serviceList li dd.serviceListPhoto {
  margin-bottom: 1.5em;
}

#serviceList li dd.serviceListPhoto img {
  width: 100%;
  display: block;
  border-radius: 0.75em;
}


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

#footer {
  background:  url("../img/bg01.jpg") repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0 110px 0;
}

#footerCaption {
  display: block;
  width: 100%;
  max-width: 900px;
  color: #FFF;
  text-align: center;
  margin: auto;
  background: #6E5713;
  font-size: 1.6em;
  font-family: 'Noto Sans JP', sans-serif;
}
@media only screen and (max-width: 560px) {
  #footerCaption {
    width: 80%;
    margin-bottom: 50px;
    font-size: 1.6em;
  }
}

.footerInner {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0 auto;
  box-sizing: border-box;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 560px) {
  .footerInner {
    display: block;
    width: 90%;
  }
}

#footer dl#address {
  margin: 0;
  padding: 0;
  width: 48%;
}
@media only screen and (max-width: 560px) {
  #footer dl#address {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
}

#footer dl#address dt {
  margin: 0 0 15px 0;
  padding: 0 0 5px 0;
  font-size: 2em;
  border-bottom: 1px solid rgba(0,0,0,0.4);
  font-family: 'Noto Serif JP';
}

#footer dl#address dd {
  margin: 0;
  padding: 0;
}

#footer ul#telFax {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 48%;
}
@media only screen and (max-width: 560px) {
  #footer ul#telFax {
    width: 100%;
  }
}

#footer ul#telFax li {
  margin: 0;
  padding: 0;
}

#footer ul#telFax li dl {
  margin: 0 0 0 auto;
  padding: 0;
  display: table;
  line-height: 1.5em;
}
@media only screen and (max-width: 560px) {
  #footer ul#telFax li dl {
    margin: auto !important;
  }
}

#footer ul#telFax li dl:first-of-type {
  margin: 0 0 1.5em auto !important;
}
@media only screen and (max-width: 560px) {
  #footer ul#telFax li dl:first-of-type {
    margin: 0 auto 1.5em auto !important;
  }
}

#footer ul#telFax li dt {
  margin: 0;
  padding: 0.5em 1em 0 0;
  display: table-cell;
  vertical-align: top;
}

#footer ul#telFax li dd {
  margin: 0;
  padding: 0;
  display: table-cell;
  vertical-align: top;
  font-family: "Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "YuMincho", "游明朝", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 2em;
}

#footer ul#telFax li dd .small {
  font-size: 0.25em;
  font-family: normal;
}

#footer ul#telFax li dl:nth-child(2) dd .small {
  opacity: 0;
}

#footer ul#telFax li dd .openClose {
  display: block;
}

#footer .moreInformation a {
  font-size: 1em;
}



.copyright {
  background: #251C02;
  text-align: center;
  padding: 2em 0;
  font-size: 0.8em;
  color: #fff;
}
@media only screen and (max-width: 560px) {
  .copyright {
  }
}

#toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
@media only screen and (max-width: 560px) {
  #toTop {
    bottom: 10px;
    right: 10px;
  }
}

#toTop a {
  display: block;
}
@media only screen and (max-width: 560px) {
  #toTop a {
  }
}

#toTop a img {
  display: block;
  width: 100px;
}
@media only screen and (max-width: 560px) {
  #toTop a img {
    width: 80px;
  }
}

#toTop a:hover {
  top: -2px;
  position: relative;
}


/** DeviceControl **/

.pcBlock {
  display: block;
}
@media only screen and (max-width: 1080px) {
  .pcBlock {
      display: inline;
  }
}

.mobileBlock {}
@media only screen and (max-width: 560px) {
  .mobileBlock {
      display: block;
  }
}

.underTabBlock {}
@media only screen and (max-width: 1080px) {
  .underTabBlock {
      display: block;
  }
}

.mobileInline {}
@media only screen and (max-width: 560px) {
  .mobileInline {
      display: inline;
  }
}

.underTabInline {}
@media only screen and (max-width: 1080px) {
  .underTabInline {
      display: inline;
  }
}

.mobileNone {}
@media only screen and (max-width: 560px) {
  .mobileNone {
      display: none;
  }
}

.forUnderTab {
  display: none !important;
}
@media only screen and (max-width: 1080px) {
  .forUnderTab {
      display: block !important;
  }
}

.forPcOnly {}
@media only screen and (max-width: 1080px) {
  .forPcOnly {
      display: none !important;
  }
}

.forPcTab {}
@media only screen and (max-width: 560px) {
  .forPcTab {
      display: none !important;
  }
}

.forTabOnly {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .forTabOnly {
      display: block;
  }
}
@media only screen and (max-width: 560px) {
  .forTabOnly {
      display: none;
  }
}

.forMobileOnly {
  display: none !important;
}
@media only screen and (max-width: 560px) {
  .forMobileOnly {
      display: block !important;
  }
}




#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
	text-align: center;
	color: #fff;
}

#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
  z-index: 999;
	transform: translate(-50%, -50%);
	color: #fff;
	width: 100%;
}

#splash_text svg {
    height: 2px;
}

.loader_cover {
    width: 100%;
    height: 50%;
    background-color: #2D2B27;
    transition: all .5s cubic-bezier(.04, .435, .315, .9);
    transform: scaleY(1);
}

.loader_cover-up {
    transform-origin: center top;
}

.loader_cover-down {
    position: absolute;
    bottom: 0;
    transform-origin: center bottom;
}

.coveranime {
    transform: scaleY(0);
}
