@charset "utf-8";
body, input, button, select, optgroup, textarea {
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Verdana, Roboto, "Droid Sans";
}

/*--------------------------------------------------------------
####### Reset #######
--------------------------------------------------------------*/
*{
  word-break: break-all;
}

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input[type="submit"]{
  outline: 0;
}

iframe{
  border: 0;
}


/*--------------------------------------------------------------
####### Bootstrap Override #######
--------------------------------------------------------------*/
@media screen and (min-width: 769px){
  body{
    min-width: 1140px;
  }
}

ul, menu, dir {
  display: block;
  list-style-type: disc;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  padding: 0;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}
button:focus {
  outline: 0px;
  outline: 0px;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

/*--------------------------------------------------------------
####### Liblary Override #######
--------------------------------------------------------------*/
html, body {
  overflow: inherit;
  margin:0;
  padding:0;

  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/*--------------------------------------------------------------
####### Components #######
--------------------------------------------------------------*/
/* bread crumb */
@media screen and (max-width:768px){
  #bread-wrap{
    overflow-x: auto;
    white-space: nowrap;
  }
}

#bread-crumb>li{
  font-size: 12px;
  margin-right: 4px;
}

/* post navigation */
.nav-links{
  display: flex;
  justify-content: space-between;
}

.nav-previous, .nav-next{
  font-size: 12px;
  border: 1px solid #dfdfdf;
  display: block;
  padding: 8px 24px;
  background: #fff;
  color: #333;
}
@media screen and (max-width: 768px){
  .nav-previous, .nav-next{
    font-size: 10px;
    padding: 8px 12px;
  }
}


/* page nation */
.page-numbers, .post-page-numbers{
  text-align: center;
  display: inline-block;
  border: 1px solid #ccc;
  padding: 4px 12px;
  margin-right: 4px;
  color: #333;
}
.page-numbers.current, .post-page-numbers.current{
  border: 1px solid #333;
  background: #333;
  color: #fff;
}

/*--------------------------------------------------------------
####### Base #######
--------------------------------------------------------------*/
img{
  max-width: 100%;
  height: auto;
}

.inner{
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:768px){
  .inner{
    width: 100%;
  }
}

/*--------------------------------------------------------------
####### Display #######
--------------------------------------------------------------*/
@media screen and (max-width:768px){
  .sp-none{
    display: none!important;
  }
}
@media screen and (min-width: 769px) {
  .pc-none {
    display: none!important;
  }
}


/*--------------------------------------------------------------
####### Common #######
--------------------------------------------------------------*/
.clear{
  clear: both;
}

.hover:hover{
  opacity: .7;
}

.list-none>li{
  list-style: none;
}

.dotted{
  border-style: dotted !important;
}

.m-auto{
  margin-right: auto;
  margin-left: auto;
}


/*--------------------------------------------------------------
####### Layout #######
--------------------------------------------------------------*/


/*---------------------------
##### Colomn #####
----------------------------*/
.two-col{
  width: calc(100% - 340px);
}
@media screen and (max-width: 768px){
  .two-col{
    width: 100%;
  }
}



/*---------------------------
##### Header #####
----------------------------*/
.site-description-wrap{
  background: #f1f1f1;
  padding: 6px 0;
}

.site-description{
  font-size: 12px;
}

.site-title{
  font-size: 24px;
}

/* site-navigation */
#site-navigation{
  background: #ffffff;
  margin: 0 auto;
}

#site-navigation>ul{
  position: relative;
}

#site-navigation>ul>li{
  float: left;
  width: 210px;
  text-align: center;
  position: relative;
}
#site-navigation>ul>li:before, #site-navigation>ul>li:last-child:after{
  content: ' ';
  display: block;
  background: #333;
  width: 1px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
#site-navigation>ul>li:last-child:after{
  right: 0;
  left: inherit;
}

#site-navigation>ul>li>a{
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  display: block;
}
#site-navigation>ul>li:last-child a{
  border-right:none;
}

#pc-gnav{
  padding-top: 12px;
}

#pc-gnav li a{
  position: relative;
  padding-bottom: 20px;
}

#pc-gnav li a::before,
#pc-gnav li a::after {
  border-bottom: solid 2px #f00;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
#pc-gnav li a::before {
  left: 50%;
}
#pc-gnav li a::after {
  right: 50%;
}
#pc-gnav li a:hover::before,
#pc-gnav li a:hover::after {
  width: 50%;
}

.site-header section{
  margin: 0 0 0 auto;
}

/* drawer menu */
.menu-trigger{
  display: block;
  position: fixed;
  right: 20px;
  top: 30px;
  width: 30px;
  height: 28px;
  cursor: pointer;
  z-index: 201;
}

.menu-trigger span{
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all .5s;
  top: 0;
  left: 0;
}

.menu-trigger.active span{
  background-color: #fff;
}

.menu-trigger span:nth-of-type(2){
  top: 8px;
}

.menu-trigger span:nth-of-type(3){
  top: 16px;
}

.menu-trigger.active span:nth-of-type(1){
  transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2){
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3){
  transform: translateY(-8px) rotate(45deg);
}

#drawer-menu{
  position: fixed;
  overflow-x: hidden;
  top: 0;
  right: 0;
  width: 280px;
  transform: translate(280px);
  height: 100%;
  padding-top: 100px;
  z-index: 200;
  background: rgba(255, 255, 255, .95);
  -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
       -o-transition: all 0.5s;
          transition: all 0.5s;
}
#drawer-menu.open{
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
       -o-transform: translateZ(0);
          transform: translateZ(0);
}

#drawer-menu ul{
  padding: 0 20px;
}

#drawer-menu>ul{
  position: relative;
  width: 100vw;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
     -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
       -o-transition: all 0.5s;
          transition: all 0.5s;
}
#drawer-menu.lv1>ul{
  transform: translate(-280px);
}
#drawer-menu.lv2>ul{
  transform: translate(-560px);
}

#drawer-menu .sub-menu{
  position: absolute;
  top: 0;
  left: 100vw;
  width: 100vw;
}

.parent-back-lv1, .parent-back-lv2{
  color: #333;
}

#drawer-menu ul>li{
  margin-bottom: 24px;
  letter-spacing: .1em;
  color: #333;
  padding-right: 12px;
  list-style: none;
}

#drawer-menu ul>li>a{
  color: #333;
}

.child-menu-title{
  border-bottom: 1px solid #333;
  padding-bottom: 12px;
}

#drawer-bg{
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 199;
}

#drawer-bg.active{
  display: block;
}




/*---------------------------
##### Footer #####
----------------------------*/
#footer-fix{
  width: 100%;
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}

a.footer-fix-btn{
  background: #333;
  display: block;
  color: #fff;
  padding: 16px 0;
  text-align: center;
  border-radius: 4px;
}

#page-top{
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100%;
  border: 2px solid #333333;
  text-align: center;
  line-height: 32px;
  z-index: 30;
}
@media screen and (max-width:768px){
  #page-top{
    right: 5px;
  }
}
/* sp-footer-nav */
#sp-footer-nav ul li a{
  padding: 14px 20px;
  display: block;
  border-bottom: 1px solid #dfdfdf;
  color: #333;
  background: #f1f1f1;
}

#sp-footer-menu>li{
  position: relative;
}

#sp-footer-menu>li>.open{
  position: absolute;
  top: 10px;
  right: 20px;
  color: #666;
}

#sp-footer-menu>li>.open:before{
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 30px;
}

#sp-footer-menu>li>.open.on:before{
  content: '\f106';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 30px;
}

#sp-footer-menu>li>ul>li{
  text-indent: 20px;
}

/* pc-footer-nav */
#footer-menu{
  margin-left: 40px;
}

#footer-menu>li{
  font-size: 14px;
  font-weight: bold;
  padding: 0 10px;
  float: left;
  margin-right: 24px;
}
#footer-menu>li>a{
  margin-bottom: 10px;
  display: inline-block;
}

#footer-menu>li>ul>li{
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 8px;
}



.copyright-wrap{
  background: #f1f1f1;
  padding: 6px 0;
}

#copyright{
  font-size: 10px;
}



/*---------------------------
##### Sidebar #####
----------------------------*/
#secondary{
  width: 300px;
}

#secondary ul li{
  list-style: none;
}

#secondary ul>li{
  background: #f8f8fa;
  padding: 8px 10px;
  margin-bottom: 4px;
  color: #949697;
  position: relative;
}

#secondary ul>li a{
  color: #949697;
}

#secondary ul>li>.open{
  position: absolute;
  right: 10px;
}

#secondary ul>li>.open:before{
  content: "\f067";
  font-family: FontAwesome;
}

#secondary ul>li>.open.on:before{
  content: '\f068';
  font-family: FontAwesome;
}

#secondary ul>li>ul{
  margin-top: 12px;
  display: none;
}

#secondary ul>li>ul>li{
  border-top: 1px solid #949697;
  padding: 12px 0px 12px 20px;
}

/*---------------------------
##### Form #####
----------------------------*/
#main select, #main input[type="text"], #main input[type="email"], #main input[type="url"], #main input[type="tel"], #main textarea {
  width: 100%;
  padding: 16px 20px !important;
  background-color: #fafbfd;
  border: 1px solid #dfdfdf;
  line-height: 18px;
}

#main select{
  height: calc(2.25rem + 26px);
}
@media screen and (max-width: 768px){
  #main select, #main input[type="text"], #main input[type="email"], #main input[type="url"], #main input[type="tel"], #main textarea {
    font-size: 16px;
  }
}

#main input[type="submit"] {
  background: #333;
  color: #fff;
  padding: 6px 40px;
  display: block;
  margin: 0 auto;
}

.required{
  color: #f00000;
}


/*---------------------------
##### Table #####
----------------------------*/
.table-v-header,.table-h-header{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.table-v-header tr td, .table-h-header tr td{
  border: 1px solid #ccc;
  padding: 16px;
}

.table-v-header tr td:first-child{
  background: #f1f1f1;
}
.table-h-header tr:first-child td{
  background: #f1f1f1;
}

.table-border{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}

.table-border tr td{
  border-bottom: 1px solid #ccc;
  padding: 16px;
}

.table-border tr td:first-child{
}

/*---------------------------
##### iframe #####
----------------------------*/
.ggmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.ggmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}



