/*
Theme Name: HiKARiBA
Theme URI:
Author: コワーキングスペース HiKARiBA
Author URI: https://hikariba.jp
Description: コワーキングスペース HiKARiBA
Version: 1.3
*/

@charset "utf-8";

/*** common ***/
html,body,main,aside,article,section,nav,header,footer,div,p,dl,dt,dd {
  margin: 0;
  padding: 0;
}
html {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 62.5%;
}
body {
  width: 100%;
  font-size: 100%;
  background-color: #381c01;
  line-height: 1.6;
}
header,main,footer {
  display: block;
}
main { display:block; overflow: hidden; }
h1,h2,h3,h4,h5,h6 {
  font-size: 2.4rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
div, p, a, span, dd, dt, li, address {
  font-size: 1.6rem;
}
h1 img,h2 img,h3 img,h4 img,h5 img,h6 img {
  max-width: 100%;
}
ul,ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
li {
  list-style: none;
}
a {
    color: #000;
  text-decoration: none;
}
time {
  display: inline-block;
}
address {
  font-style: normal;
}
button,html [type="button"],[type="reset"],[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  border-style: none;
  margin: 0 auto;
}
textarea {
  resize: vertical;
}
img {
    max-width: 100%;
}
* {
  box-sizing: border-box;
}
main {
  background-color: #fff;
  padding-top: 80px;
}
body.home main {
  padding-top: 0;
}


/*** animation ***/
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}


/*** container ***/
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  overflow: hidden;
}
.container::after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}


/*** header ***/
header {
  width: 100%;
  height: 80px;
  background-color: rgba(255, 235, 195, 0.8);
  position: fixed;
  z-index: 100;
}

header .container {
  position: relative;
  padding: 0 15px;
}

.header-title {
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


#logo {
  max-width: 220px;
  height: 100%;
  margin: 10px auto 0;
  padding-right: 40px;
}
#logo a {
  display: block;
}
#logo a img {
  /*min-height: 56.734px;*/
  max-height: 56.734px;
}

@media (min-width: 820px) {
  #logo {
    margin: 10px 0 0;
  }
}


/*** navigation ***/
#gnav {
  display: none;
  color: #fff;
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 80px;
  left: 0;
  background: rgba(255, 235, 195, 0.8);
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  margin: 0;
  padding: 30px 10px;

}
#gnav.active {
  display: block;
  animation: show 0.5s linear 0s;
  transform: translateY(0%);
  transition: 1s;
}

#gnav ul {
  list-style: none;
  max-width: 385px;
  margin: 0 auto;
}
#gnav li {
  display: inline-block;
  width: 50px;
  height: 50px;
  max-width: 100%;
  overflow: hidden;
  margin: 0 5px 10px;
  background-image: url(./images/nav.svg);
  background-position: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;

}
#gnav li:first-child {
  /*margin-left: 0;*/
}
#gnav li:hover {
  opacity: 0.6;
  transition: 0.2s;
}
#gnav li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

#gnav .nav_coworking {
  width: 180px;
  background-color: #09348b;
  background-position: 0px;
}
#gnav .nav_rooms {
  width: 180px;
  background-color: #2980b9;
  background-position: -180px;
}
#gnav .nav_about {
  background-color: #877458;
  background-position: -360px;
}
#gnav .nav_event {
  background-color: #cc9966;
  background-position: -410px;
}
#gnav .nav_access {
  background-color: #d05252;
  background-position: -460px;
}
#gnav .nav_contact {
  background-color: #01441d;
  background-position: -510px;
}
#gnav .nav_login {
  width: 75px;
  background-color: #09348b;
  background-position: -675px;
  border-radius: 1.2rem;
}
#gnav .nav_logout {
  width: 75px;
  background-color: #09348b;
  background-position: -750px;
  border-radius: 1.2rem;
}
#gnav .nav_mypage {
  width: 75px;
  background-color: #09348b;
  background-position: -825px;
  border-radius: 1.2rem;
}

@media (min-width: 820px) {
  #gnav .nav_rooms {
    width: 115px;
    background-position: -562px;
  }
  #gnav .nav_login {
    width: 50px;
    background-position: -687px;
  }
  #gnav .nav_mypage {
    width: 50px;
    background-position: -839px;
  }
  #gnav .nav_logout {
    display: none;
  }
}


#navToggle {
  display: block;
  position: fixed;
  top: 22px;
  right: 4px;
  width: 51px;
  height: 51px;
  cursor: pointer;
  z-index: 3;
  background: transparent;
  text-align: center;
}
#navToggle span {
  color: #0A348B;
  display: block;
  position: relative;
  width: 30px;
  border-bottom: solid 3px #0A348B;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}
#navToggle span:nth-child(1) { top:  8px; }
#navToggle span:nth-child(2) { top: 16px; }
#navToggle span:nth-child(3) { top: 24px; }
#navToggle span:nth-child(4) {
  border: none;
  font-size: 9px;
  font-weight: bold;
  top: 25px;
}


@media (max-width: 420px) {
  #gnav ul {
    max-width: 180px;
  }
}

@media (min-width: 820px) {
  #gnav {
    display: block;
    width: auto;
    position: absolute;
    top: 20px;
    left: auto;
    right: 10px;
    color: #fff;
    padding: 0;
    transform: translateY(0%);
    background-color: transparent;
  }

  #gnav ul {
    max-width: none;
    margin: 0;
  }
  #gnav li {
    display: inline-block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-left: 1px;
    margin-left: calc((100vw - 820px) / 6);
    margin-right: 0;
  }
  #gnav li:first-child {
    margin-left: 0;
  }

  #navToggle {
    display: none;
  }
}
@media (min-width: 875px) {
  #gnav li {
    margin-left: 10px;
  }
}


/* nav button after tap */
#navToggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#navToggle.active span:nth-child(2) {
  display: none;
}
#navToggle.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*** main_container & sidebar ***/
div#main_container {
  width: 100%;
  margin: 20px 0 0;
}
div#main_container section,
div#main_container article {
  padding-bottom: 30px;
  overflow: hidden;
}

div#main_container section h2,
div#main_container article h2 {
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
div#main_container section h2::before,
div#main_container section h2::after,
div#main_container article h2::before,
div#main_container article h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #444;
  display: block;
  margin-right: 0.4em;
  margin-left: 0.4em;
}

aside#sidebar {
  margin: 20px 0 0;
}
aside#sidebar ul {
  text-align: center;
}


@media (min-width: 830px) {
  div#main_container {
    float: left;
    margin-right: -320px;
    padding-right: 320px;
    box-sizing: border-box;
    word-break: break-all;
  }

  aside#sidebar {
    float: right;
    width: 300px;
  }
}


/*** mainvisual ***/
#mainvisual {
  padding-top: 80px;
  background-color: #efd49e;
}

#mainvisual > div {
  position: relative;
}

#mainvisual > div img {
  max-width: none;
  display: block;
  position: relative;
  width: 100%;
  width: calc(100vw / 1200 * 1920);
  left: 0;
  left: calc(100vw / 1200 * -360);
}

#mainvisual > div div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  max-width: 722px;
  height: 30%;

}

#mainvisual > div div::before {
  content: '';
  background-color: rgba(255, 235, 195, 0.35);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

#mainvisual > div div p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  width: calc(100% - 100px);
  height: 100%;
  height: calc(100% - 20px);
  background-image: url(./images/phrase2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media (min-width:700px) {
  #mainvisual {
    padding-top: calc((100vw - 1200px) * -0.16);
  }
}


@media (min-width:1200px) {
  #mainvisual {
    left:0;
    padding-top: 0;
  }
  #mainvisual > div img {
    width: 1920px;
    left:0;
    left:calc((100vw - 1920px) / 2);
  }
}

@media (min-width:1920px) {
  #mainvisual {
  }
  #mainvisual > div img {
    width: 100vw;
    left: 0;
  }
}


/*** container_cover ***/
.container_cover {
  height: 10vw;
  min-height: 80px;
  background-image: url(./images/cover.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width:768px) {
  .container_cover {
    height: 150px;
  }
}


/*** notice ***/
#notice {
  padding: 20px 0;
  background-color: #efd49e;
  text-align: center;
}
#notice h2 {
  display: none;
}

#notice ul {
}
#notice ul li {
  display: list-item;
}

#notice li, #notice p, #notice a {
  font-size: 1.8rem;
}
#notice a:hover {
  text-decoration: underline;
}
#notice * {
  color: #ee0000;
}



/*** concept ***/
#concept {
  background-color: #fcf2de;
  padding: 30px 0;
}

#concept h2 {
  display: none;
}

#concept .concept_announce {
}
#concept .concept_announce > .concept_description {
  padding: 0 30px;
}
#concept .concept_announce > .concept_description p {
  margin-bottom: 1.3em;
}

#concept .concept_announce > .concept_badge {
}
#concept .concept_announce > .concept_badge h3 {
  display: none;
}

#concept ul.concept_link {
  text-align: center;
}
#concept ul.concept_link li {
  display: inline-block;
  padding: 0 .5em .5em;
}

#concept ul.concept_link li a {
  text-decoration: underline;
  position: relative;
  padding-left: .8em;
}
#concept ul.concept_link li a:hover {
  text-decoration: none;
}
#concept ul.concept_link li a::before {
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  content: "";
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #000;
}


#concept .concept_area {
  display: block;
  margin: 25px auto 0;
}



#concept .concept_badge ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 15px;
}

#concept .concept_badge ul li {
  width: 59px;
  height: 59px;
    background-color: #fff;
    background-image: url('./images/info-icon.png');
    background-size: cover;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 7px;
    margin: 0 7px 14px;
}
#concept .concept_badge ul li#concept_badge_poweroutlet { background-position:0; }
#concept .concept_badge ul li#concept_badge_wifi { background-position:-100%; }
#concept .concept_badge ul li#concept_badge_drink { background-position:-200%; }
#concept .concept_badge ul li#concept_badge_rental { background-position:-300%; }
#concept .concept_badge ul li#concept_badge_bring { background-position:-400%; }
#concept .concept_badge ul li#concept_badge_talking { background-position:-500%; }
#concept .concept_badge ul li#concept_badge_parking { background-position:-600%; }

@media (min-width: 768px) {
  #concept .concept_announce > .concept_description {
    width: 50%;
    float: left;
    padding:15px 5px;
  }

  #concept .concept_announce > .concept_badge {
    width: 50%;
    max-width: 576px;
    float: right;
  }
  #concept .concept_badge ul {
    padding-top: 0;
  }
  #concept .concept_badge ul li {
      width: 21%;
      height: 0;
      padding-top: 21%;
      max-width: 130px;
      max-height: 130px;
      border-radius: 15px;
  }
}



/*** breadcrumbs ***/
.breadcrumbs {
  margin: 20px 0 0;
}

.breadcrumbs ul {
}

.breadcrumbs ul li {
  display: inline-block;
}

.breadcrumbs ul li + li {
  padding-left: .5em;
}
.breadcrumbs ul li + li::before {
  content: '≫';
  padding-right: .5em;
}

.breadcrumbs ul li,
.breadcrumbs ul li a {
  font-size: 1.4rem;
}
.breadcrumbs ul li a:hover {
  text-decoration: underline;
}


/*** contents ***/
section h1,
.contents h1 {
  background-color: #ffebc3;
  margin: 0 0 .8em;
  padding: .5em .7em;
  border-radius: 10px;
}

div#main_container section .editor-styles-wrapper h2::before,
div#main_container section .editor-styles-wrapper h2::after,
div#main_container article .editor-styles-wrapper h2::before,
div#main_container article .editor-styles-wrapper h2::after {
    display: none;
}

.contents .contents-thumbnail {
  margin-bottom: 10px;
}

.contents .editor-styles-wrapper {
  margin:0 .5em;
}

.contents .contents-property {
  margin: 15px 10px 0;
}
.contents .contents-property * {
  font-size: 1.3rem;
}
.contents .contents-property .contents-property_date span {
  display: block;
}
.contents .contents-property .contents_date {
}
.contents .contents-property .contents_categories,
.contents .contents-property .contents_tags {
  display: inline-block;
  margin-right: .5em;
}
.contents .contents-property .contents_categories li,
.contents .contents-property .contents_tags li {
  display: inline-block;
}


.contents .contents-property .contents_date::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f017";
  padding-right: .3em;
}
.contents .contents-property .contents_update::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f1da";
  padding-right: .3em;
}
.contents .contents-property .contents_categories::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f07c";
}
.contents .contents-property .contents_tags::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f02c";
}


.contents .notes {
  width: 100%;
  max-width: 630px;
  margin: 30px auto 0;
}
.contents .notes p {
  padding-bottom: .8em;
}
.contents .notes ul {
  padding-left: 2em;
}
.contents .notes ul li {
  list-style: disc;
  padding-bottom: .5em;
}

@media (min-width: 768px) {
  .contents .contents-property .contents-property_date span {
  	display: inline-block;
  }
  .contents .contents-property .contents-property_date span + span {
    margin-left: 1em;
  }
}


/*** author ***/
.author {
  margin: 35px 20px 0;
  padding: 20px 20px 0 20px;
  background-color: #fcf2de;
}
.author::after {
  content: "";
  display: block;
  clear: both;
}

div#main_container section .author h2,
div#main_container article .author h2 {
  display: none;
}

.author dl {
  padding-bottom: 20px;
}
.author dl dt {
  font-size: 2.0rem;
  margin-bottom: .5em;
}
.author dl dd,
.author dl dd * {
  font-size: 1.4rem;
}

.author dl dd a       { text-decoration: underline; }
.author dl dd a:hover { text-decoration: none; }

.author .author_image {
  position: relative;
  float: left;
  width: 150px;
  height: 150px;
  max-width: 100%;
  margin: 0 20px 20px 0;
  overflow: hidden;
background-color:#fff;
}
.author .author_image img {
  width: auto;
  max-width: none;
  height: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

@media (max-width: 360px) {
  .author .author_image {
    float: none;
    margin: 20px auto;
  }
}


/*** related ***/
.related {
}

div#main_container section .related h2,
div#main_container article .related h2 {
  display: inline-block;
  margin: 0;
}

div#main_container section .related h2::before,
div#main_container section .related h2::after,
div#main_container article .related h2::before,
div#main_container article .related h2::after {
    display: none;
}
.related .related_title {
  margin : 0 15px 20px;
    border-bottom: 2px solid #ffebc3;
}
.related h2 {
    margin: 0;
    padding: 1.2em 1em 0 .5em;
    border-bottom: 2px solid #f9e5bd;
}


/*** pricelist ***/
#price #pricetable {
  display: flex;
  flex-wrap: wrap;
}

#price #pricetable h3 {
  display: none;
}

#price .pricelist,
#price .otherlist {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

#price .pricelist-header,
#price .priceitem {
    border-style:solid;
    border-color:#b2b2b2;
}

#price .pricelist .pricelist-header {
  float:right;
  margin-right: 25px;
  margin-left: auto;
  border-width:1px 1px 0 1px;
}
#price .pricelist .pricelist-header p {
  display: inline-block;
    width:5em;
    line-height: 3em;
    padding: .5em;
    text-align:center;
}

#price .pricelist .priceitem {
  clear: both;
  width: 100%;
  width: calc(100% - 45px);
  margin: 0 25px 0 20px;
  border: #b2b2b2 solid 1px;
}
#price .pricelist .priceitem::after,
#price .pricelist .priceitem > div::after,
#price .otherlist > div.otherlist-table::after,
#price .otherlist > div.otherlist-table > .otheritem > div::after {
  content: "";
  display: block;
  clear: both;
}

#price .pricelist .priceitem > div {
  clear: both;
  line-height: 3em;
}
#price .priceitem > div:nth-child(2n+1) { background-color:#fcf2de; }
#price .pricelist .priceitem > div > h4 {
  float: left;
  width: calc(100% - 17rem);
  min-width: 7em;
  font-size: 1.6rem;
  padding:0.5em;
  text-align:center;
}
#price .pricelist .priceitem > div > dl {
  float: right;
  width: 17rem;
}
#price .pricelist .priceitem > div > dl dt {
  display: none;
}
#price .pricelist .priceitem > div > dl dd {
  display: inline-block;
  width:5em;
  padding:0.5em;
  text-align:center;
}
#price .pricelist .priceitem > div > dl.price_generalonly dd {
  margin-right: 5em;
}

#price .otherlist > div.otherlist-table {
  display: block;
  position: relative;
  width: 100%;
  width: calc(100% - 45px);
  margin: 0 20px 0 25px;

}

#price .otherlist > div.otherlist-table::before {
  display: inline-block;
  margin: auto;
  content: "+";
  width: 1px;
  font-size: 6rem;
  height: 1px;
}
@media screen and (min-width: 768px) {
  #price .otherlist > div.otherlist-table::before {
    position: absolute;
    top: 75px;
    left: -40px;
  }
}


#price .otherlist > div.otherlist-table > .otheritem {
  border-style: solid;
  border-color: #b2b2b2;
  border-width: 1px;
  width: 100%;
  margin: 20px 0;
}

#price .otherlist > div.otherlist-table > .otheritem > div {
  clear: both;
  border-top: 1px solid #b2b2b2;
}
#price .otherlist > div.otherlist-table > .otheritem > div:first-child {
  border: none;
}
#price .otherlist > div.otherlist-table > .otheritem > div > h4 {
  float: left;
  width: calc(100% - 22rem);
  min-width: 7em;
  font-size: 1.6rem;
  padding:0.5em;
  text-align:center;
}
#price .otherlist > div.otherlist-table > .otheritem > div > dl {
  float: right;
  width: 22rem;
  max-width: 100%;
  border-bottom: 1px solid #b2b2b2;
}
#price .otherlist > div.otherlist-table > .otheritem > div > dl:last-child {
  border-bottom: none;
}

#price .otherlist > div.otherlist-table > .otheritem > div > dl dt {
  min-width: 13rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0;
}
#price .otherlist > div.otherlist-table > .otheritem > div > dl dt span {
  font-size: 1.3rem;
  padding-left: .25em;
}

#price .otherlist > div.otherlist-table > .otheritem > div > dl dd {
  display: inline-block;
  width: 8rem;
}

#price .otherlist .otherlist-explain {
  font-size: 1.2rem;
  width: 100%;
  width: calc(100% - 45px);
  margin: 0 20px 0 25px;
  text-align: left;
}
#price .otherlist .otherlist-explain p {
  margin-bottom: .7em;
}
#price .otherlist .otherlist-explain .otherlist-explain-tax {
  text-align: right;
}

#price .btn_price_monthly {
  display: block;
  margin: 20px 30px 0;
  background-color: #09348b;
  padding: 13px 25px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 10px;
}
#price .btn_price_monthly:hover {
  opacity: 0.6;
  transition: 0.2s;
}

@media screen and (max-width: 319px) {
  #price .pricelist .priceitem > div > h4,
  #price .otherlist > div.otherlist-table > .otheritem > div > h4 {
      font-weight:bold;
  }

  #price .pricelist .priceitem > div > dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  #price .pricelist .priceitem > div > dl dt {
    display: inline-block;
    padding: .5em;
    width: 50%;
  }
  #price .pricelist .priceitem > div > dl dd {
    width: 50%;
  }
  #price .pricelist .priceitem > div > dl.price_generalonly dd {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1110px) {
  #price .pricelist .priceitem > div > h4,
  #price .otherlist > div.otherlist-table > .otheritem > div > h4 {
      font-weight:bold;
  }
}


@media screen and (min-width: 768px) {
  #price .pricelist,
  #price .otherlist {
    width: 50%;
  }

  #price .btn_price_monthly {
    max-width: 22em;
    margin: 20px auto 0;
  }
}


/*** about ***/
#aboutuse {  }

#aboutuse .use-items {
  margin: 0 20px;
}

#aboutuse .use-items ul li {
  max-width: 500px;
  clear: both;
  margin: 0 auto 30px;
}
#aboutuse .use-items ul li::after {
  content: "";
  display: block;
  clear: both;
}
#aboutuse .use-items ul li img {
  float: right;
  width: 35%;
  min-width: 60px;
  margin-left: 5px;
  border-color: rgba(222, 171, 98, 0.5);
  border-width: 3px;
  border-style: solid;
}
#aboutuse .use-item {
  position: relative;
  margin-top: 32px;
}
#aboutuse .use-item p {
  text-align: center;
}
#aboutuse .use-item::before {
  position: absolute;
  top: -24px;
  right: 50%;
  margin: auto;
  content: "";
  height: 0px;
  border: 16px solid transparent;
  border-top: 20px solid #D1A966;
}
#aboutuse .use-item:first-child::before{
  display:none;
}

@media screen and (min-width: 768px) {
  #aboutuse .use-items ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #aboutuse .use-item {
    width: 25%;
    text-align: center;
    position: relative;
    padding: .5rem;
    margin-bottom: 5px;
  }
  #aboutuse .use-item::before {
    position: absolute;
    top: -25%;
    bottom: 0;
    left: -3px;
    margin: auto;
    content: "";
    height: 0px;
    border: 16px solid transparent;
    border-left: 20px solid #D1A966;
  }
  #aboutuse .use-item:first-child::before{
    display: none;
  }
  #aboutuse .use-items ul li img {
    float: none;
    width: auto;
    min-width: inherit;
  }
  #aboutuse .use-item p {
    /*margin-top: 5px;*/
    font-size: 1.4rem;
  }
  #aboutuse .use-item p br {
    display:inline;
  }
}


/*** news ***/
.news_list,
.event_list {
}

.news_list .news,
.event_list .event {
  position: relative;
  padding: 0 0 0 7px;
  background-color: transparent;
  clear: both;
}
.news_list .news > a,
.event_list .event > a {
  display: block;
}
.news_list .news > a::after,
.event_list .event > a::after {
  content: "";
  display: block;
  clear: both;
}
.news_list .news > a > div,
.event_list .event > a > div {

}

.news_list .news .thumbnail,
.event_list .event .thumbnail {
  position: relative;
  float: left;
  width: 50%;
  height: 176px;
  max-height: 176px;
  margin: 0 10px 0 0;
  padding: 0;
  overflow: hidden;
  border: 3px solid #ffcc99;
}
.news_list .news .thumbnail img.wp-post-image,
.event_list .event .thumbnail img.wp-post-image {
  width: auto;
  max-width: none;
  height: 105%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

.news_list .news .thumbnail img.wp-post-image.cropL,
.event_list .event .thumbnail img.wp-post-image.cropL {
  left: 0;
  transform: translateY(-50%);
}
.news_list .news .thumbnail img.wp-post-image.cropR,
.event_list .event .thumbnail img.wp-post-image.cropR {
  left: auto;
  right: 0;
  transform: translateY(-50%);
}

.news_list .news h3,
.event_list .event h3 {
  font-size: 1.6rem;
  padding:7px 5px;
  text-align: left;
}

.news_list .news .news_date,
.event_list .event .event_date {
  font-size: 1.2rem;
  text-align: right;
  padding: 0 5px 5px 0;
}

.news_list .news .news_cat,
.event_list .event .event_cat {
  position: absolute;
  top: 5px;
  left: 0;
  padding: 5px .7em 12px 8px;
  font-size: 1.4rem;
  color:#000;
  font-weight: 600;
  background-image: url(./images/blogcat.png);
  background-repeat: no-repeat;
  background-position: left 0 bottom 0;
  background-color: transparent;
  border: none;
}


@media (min-width: 481px) {
  .news_list,
  .event_list {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    justify-content: start;
  }

  .news_list .news,
  .event_list .event {
    width: 32%;
    margin-right: 1.33%;
  }

  .news_list .news > a > div,
  .event_list .event > a > div {
    border: 3px solid #ffcc99;
  }

  .news_list .news .thumbnail,
  .event_list .event .thumbnail {
    width: 100%;
    border: none;
    margin: 0;
  }

  .news_list .news .news_cat,
  .event_list .event .event_cat {
    top: 15px;
  }
}

@media (min-width: 768px) {
  .news_list .news,
  .event_list .event {
    width: 49%;
    margin-right: 1%;
  }
}

@media (min-width: 900px) {
  .news_list .news,
  .event_list .event {
    width: 32%;
    margin-right: 1.33%;
  }
}

#news .more {
  display: block;
  margin: 20px auto;
  text-align: center;
}
#news .more a {
  padding: 1em 2em;
  color: #000;
  background-color: #ffa852/*#ff9022*/;
  border-radius: 10px;
}
#news .more a:hover {
  opacity: 0.7;
  transition: .2s;
}


/*** qa ***/
.qa_category {
  border: 1px solid #000;
  margin: 0 3em 1em;
  padding: .5em 1em 0 .5em;
}

.qa_category li {
  display: inline-block;
  margin-left: .5em;
  margin-bottom: .5em;
}
.qa_category li + li {
}

.qa_category li label {
  display: block;
  padding: 0.2em 0.5em 0.2em 0.2em;
  border: 1px solid #ccc;
  border-radius: 0.5em;
}
.qa_category li.checked label {
  background-color: #ffebc3;
  box-shadow: -1px -1px 1px #ccc inset;
}

.qa_category li label,
.qa_category li label input[type=checkbox] {
  cursor: pointer;
}





.qa_list {
  border-width:0 2px 2px;
  border-style: solid;
  border-color: #ffcc99;
  background-color: #f4f4f3;
  margin: 0 1em;
}

div#main_container article .qa_list h2 {
  display: none;
}

.qa_list > div {
  display: none;
  padding: 0;
  border-top: 2px solid #ffcc99;
}
.qa_list > div:first-child {
  border-top: none;
}

/*.qa_list > div + div {
  border-top: 2px solid #ffcc99;
}*/


.qa_list > div.qa_visible {
  display: block;
}


.qa_list > div > h3 {
  position: relative;
  font-size: inherit;
  padding: 0;
  padding-left: 2em;
}

.qa_list > div > h3::before {
  content: 'Q.';
  position: absolute;
  top: 0;
  top: calc(50% - .75em);
  left:.35em;
  font-size: 2rem;
  font-weight: bold;
  color: #fcb900;
}
.qa_list > div > h3::after {
  content: '+';
  display: inline-block;
  position: absolute;
  top: 0;
  top: calc(50% - .65em);
  right: .5em;
  background-color: #fff;
  color: #fcb900;
  font-size: 2rem;
  font-weight: bold;
  border: 2.5px solid #fcb900;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  text-align: center;
  line-height: 1em;
  cursor: pointer;
}


.qa_list > div > h3 button {
  padding: .5em 2em .5em 0;
  background-color: inherit;
  color: inherit;
  text-align: left;
  font-weight: normal;
  font-size: 1.7rem;
  line-height: 1;
}



.qa_list > div .qa_answer {
  /*display: none;*/
  /*visibility: hidden;*/
  max-height:0;
  /*height: 0;*/

  /*border-top: 2px dotted #fcb900;*/
  margin-left: 0;
/*  padding-right: 2em;
  padding-left: 2em;*/
  padding: 0 2em;
  overflow:hidden;


  /*animation: show 0s linear .5s;*/
  transform: translateY(0%);
  /*opacity: 0;*/
  /*transition: 1s;*/
  /*transition: max-height 1s;*/
  /*transition: height 0.3s linear;*/
  transition: transform .2s linear;

}
.qa_list > div .qa_answer > div {
  position: relative;
  margin: .5em 0 1em;
  padding: .5em .5em .5em 2em;
  background-color: #fff;
}
.qa_list > div .qa_answer > div::before {
  content: 'A.';
  position: absolute;
  top: .35em;
  left: .35em;
  font-size: 2rem;
  font-weight: bold;
  color: #cf2e2e;
}


.qa_list > div.active > h3::after {
  content: '-';
}
.qa_list > div.active .qa_answer {
  /*display: block;*/
  /*visibility: visible;*/
  max-height: 100%;
  /*height: auto;*/
  /*opacity: 1;*/

  /*animation: show 0.5s linear 0s;*/
  transform: translateY(0%);
  /*transition: 1s;*/
  /*transition: max-height 1s;*/
  transition: transform .2s linear;
}



/*** widget ***/
.widget {
  max-width: 300px;
  margin: 0 auto 15px;
  font-size: 1.2rem;
  /*border: 2px solid #ffcc99;*/
}
.widget * { font-size: 1.6rem; }

/*.widget.widget_text { border: none; }*/

.widget > h3 {
  text-align:center;
  margin: .5em;
  padding: .2em 0;
  border-bottom: 2px solid #ffcc99;
}

.widget a.banner {
  display:block;
  line-height: 0;
}

.widget_clock_manager {
  background-color: #fcf2de;
  border: 2px solid #ffcc99;
}
.widget.widget_clock_manager > h3::before {
  content: '';
  display: inline-block;
  width: 100px;
  height: 30px;
  margin-right: .4em;
  background-image: url(./images/logo.svg);
  background-size: cover;
}
.widget_clock_manager > div .date {
    border-bottom: 2px solid #ffcc99;
}
.widget_clock_manager > div .date::before { content: '[ '; }
.widget_clock_manager > div .date::after { content: ' ]'; }


/*** pagenation ***/
.pagination {
    text-align:center;
}
.pagination .nav-links {
    margin-bottom: 1em;
}
.pagination .nav-links a, .pagination .nav-links span {
    display: inline-block;
    font-size:2rem;
    margin: 0.2em;
    padding:0.3em 0.5em;
}
.pagination .nav-links a {
    border: 1px solid #ccc;
}
.pagination .nav-links span.current {
    border-color:#e26919;
    background-color:#fbe5d6;
}


/*** footer ***/
footer {
  background-color: #381c01;
  color: #fff;
}
footer a {
  color: #fff;
}

footer .footer_container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
footer .footer_container::after {
  content: "";
  display: block;
  clear: both;
}

footer .footer_info {
  width: 100%;
  padding: 30px 20px;
}
footer .footer_map {
  width: 100%;
  height:55.6vw;
}
footer .footer_map img {
  width: 100%;
}
footer .footer_copyright {
  font-size: 1.2rem;
  text-align: center;
  margin: 7px 0 7px;
}
footer .footer_copyright span,
footer .footer_copyright a {
  font-size: 1.1rem;
}


footer .footer_logo {
  max-width: 200px;
  margin: 0 auto 10px;
  text-align: center;
}
footer .footer_logo img {
}


footer ul.footer_sns {
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  list-style: none;
}
footer .footer_sns li {
  display: inline-block;
}
footer .footer_sns .sns_icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow:hidden;
}
footer .footer_sns .sns_icon::before {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-family:'Font Awesome 5 Brands';
  font-size: 2.5rem;
  font-weight: 400;
}
footer .footer_sns .sns_icon:hover {
  opacity: 0.5;
  transition: .2s;
}
footer .footer_sns .sns_facebook::before { content: "\f09a"; }
footer .footer_sns .sns_twitter::before { content: "\f099"; }
footer .footer_sns .sns_instagram::before { content: "\f16d"; }
footer .footer_sns .sns_slack::before { content: "\f198"; }
footer .footer_sns .sns_github::before { content: "\f09b"; }


footer .footer_address {
  margin: 15px 0;
  text-align: center;
}
footer .footer_address address {
  line-height: 1.3;
  margin-bottom: .5em;
}
footer .footer_address address span {
  display: inline-block;
  padding-right: .5em;
}
footer .footer_address address br {
  display: none;
}
footer .footer_address .footer_contact {
  margin-bottom: .5em;
}
footer .footer_address .footer_contact > p {
  display: inline-block;
  margin-right:.5em;
}


footer .contact_tel::before {
  font-family:'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f095";
  padding-right: .3em;


/*    content: "";
    background-image: url(./images/icon.svg);
    background-repeat: no-repeat;
    width: 25px;
    display: inline-block;
    background-size: auto;
    height: 25px;
     background-position: -25px 0;
    overflow: hidden;*/
}
footer .contact_tel span { display: none; }

footer .contact_fax::before {
  font-family:'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f1ac";
  padding-right: .3em;
}
footer .contact_fax span { display: none; }

footer .footer_openinghours::before {
  font-family:'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f017";
  padding-right: .3em;
}


footer .footer_nav {
}
footer .footer_nav ul {
  list-style: none;
  border-top: 1px dotted rgba(255, 255, 255, 0.5);
}
footer .footer_nav ul li {
  min-height: 60px;
  line-height: 60px;
  vertical-align: middle;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
footer .footer_nav ul li a {
  padding: 0 .5em 0 1em;
  display: block;
}
footer .footer_nav ul li a:hover {
  background-color: rgba(255,255,255,0.2);
  transition: .2s;
}


footer .footer_copyright span {
  display: inline-block;
}
footer .footer_copyright a:hover {
  text-decoration: underline;
}


@media (min-width: 768px) {
  footer .footer_container {
    position: relative;
  }

  footer .footer_info {
    float: left;
    padding: 20px 20px 10px;
    width: 40vw;
    width: calc(40vw - 18px);
    max-width: 490px;
  }

  footer .footer_map {
    position:absolute;
    right: 0;
    bottom: 0;
    width: 60vw;
    height: 33.3vw;
    max-width: 709px;
    max-height: 394px;
  }

  footer .footer_copyright {
    width: 40vw;
    width: calc(40vw - 18px);
    max-width: 490px;
    margin: 5px 0;
    padding: 0;
  }


  footer .footer_address {
    margin: 15px 0 15px 30px;
    text-align: inherit;
  }
  footer .footer_address address {
    margin-bottom: 0;
  }
  footer .footer_address address br {
    display: inline;
  }

  footer .footer_address .footer_contact {
    margin-bottom: 0;
  }

  footer .footer_nav {
    padding: 0 10px;
  }
  footer .footer_nav ul {
    border-top: none;
    line-height: 1.3;
  }
  footer .footer_nav ul li {
    display: inline-block;
    min-height: 60px;
    line-height: inherit;
    padding: 0 .5em 0 1em;
    position: relative;
    color: #fff;
    border-bottom: none;
  }
  footer .footer_nav ul li,
  footer .footer_nav ul li * {
    font-size: 1.3rem;
    min-height: inherit;
  }
  footer .footer_nav ul li::before {
    position: absolute;
    top: 0;
    left: 4px;
    bottom: 0;
    margin: auto;
    content: "";
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
    border-left: 4px solid #fff;
  }
  footer .footer_nav ul li a {
    padding: 0;
    display: inline-block;
    text-decoration: underline;
  }
  footer .footer_nav ul li a:hover {
    text-decoration: none;
    background-color: inherit;
  }

}

@media (min-width: 1000px) {
  footer .footer_container {
    min-height: 394px;
  }
}

@media (min-width: 1200px) {
  footer .footer_container {
    width: 1200px;
  }
}


/*** contactform ***/
.mw_wp_form form {
  max-width: 500px;
  margin: auto;
}

.mw_wp_form form > p {
  margin-bottom: 25px;
}

.mw_wp_form input,
.mw_wp_form textarea,
.mw_wp_form select,
.mw_wp_form button {
  border-radius: 5px;
  width: 100%;
}

.mw_wp_form input[type="text"],
.mw_wp_form input[type="password"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="url"],
.mw_wp_form input[type="date"],
.mw_wp_form input[type="month"],
.mw_wp_form input[type="time"],
.mw_wp_form input[type="datetime"],
.mw_wp_form input[type="datetime-local"],
.mw_wp_form input[type="week"],
.mw_wp_form input[type="number"],
.mw_wp_form input[type="search"],
.mw_wp_form input[type="tel"],
.mw_wp_form input[type="color"],
.mw_wp_form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border-radius: 0;
  border-style: solid;
  border-width: 0.1rem;
  box-shadow: none;
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  max-width: 100%;
  padding: 1rem .8rem;
  width: 100%;
}

.mw_wp_form input[type="radio"],
.mw_wp_form input[type="checkbox"] {
  width: auto;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #3ab0db;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.0333em;
  line-height: 1.25;
  padding: 2rem 5rem;
  outline: none;
  text-align: center;
}

.mw_wp_form input[type="reset"],
.mw_wp_form button[type="reset"],
.mw_wp_form button[name="submitButton"] {
  background-color: #B4B4B5;
}

.mw_wp_form select {
  height: 35px;
  padding: 0px 10px;
  font-size: 1.6rem;
}

.mw_wp_form label {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 .5rem 0;
}

.mw_wp_form .mwform-radio-field-text,
.mw_wp_form .mwform-checkbox-field-text {
  font-weight: normal;
}

.mw_wp_form .required {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 13px;
  margin-bottom: 2px;
  margin-right: 10px;
  font-size: 1.6rem;
  font-weight: normal;
  color: #fff;
  background: #F92931;
}

.mw_wp_form .horizontal-item label {
  display: inline-block;
  word-break: break-word;
}

.mw_wp_form input[type="checkbox"] {
  outline: none;
}

.mw_wp_form .form_buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mw_wp_form .form_buttons  *:nth-child(2) {
  margin-top: 40px;
}

.mw_wp_form .horizontal-item + .horizontal-item,
.mw_wp_form form .horizontal-item + .horizontal-item {
    margin-left: 0px;
    margin-right: 10px;
}


.mw_wp_form .use_date {
  display: block;
}

.mw_wp_form .use_date input[type="text"] {
  display: inline-block;
  width: 10em;
}
.mw_wp_form .use_date select {
  width: 6em;
}
.mw_wp_form .use_date .use_datetime {
  display: inline-block;
}
.mw_wp_form .use_date .use_datetime span {
  display: none;
}
.mw_wp_form .use_date .use_datetime span.use_datetime_end {
  display: inline;
}


.ui-datepicker.ui-widget.ui-widget-content {
  width: auto;
}


@media (min-width: 768px) {
  .mw_wp_form .form_buttons {
    flex-direction: row;
  }
  .mw_wp_form .form_buttons > * {
    width: 50%;
  }
  .mw_wp_form .form_buttons  *:nth-child(2) {
    margin-top: 0;
    margin-left: 20px;
  }
}

