@charset "UTF-8";
/*
Theme Name : esplanade
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
  margin-top: 0;
}

body {
  color: #191919;
  font-size: 16px;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, Helvetica, sans-serif;
  line-height: 1.5;
  margin: 0;
  background: #d7eee6;
  min-width: 1300px;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.8;
}

.img_wrap {
  overflow: hidden;
  cursor: pointer;
}

.img_wrap img {
  width: 100%;
  transition-duration: 0.5s;
}

.img_wrap:hover img {
  transform: scale(1.2);
  transition-duration: 0.5s;
}

.wrapper {
  display: flex;
  padding-top: 22px;
}

.inner {
  max-width: 1038px;
  margin: auto;
}

.maincolumn {
  width: 100%;
}

.main_box {
  flex: 1;
}

.vibration:hover {
  display: inline-block;
  animation: hurueru .1s  infinite;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(1px, 1px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 1px) rotateZ(0deg);
  }
  75% {
    transform: translate(1px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}

header .box {
  margin: 40px auto 50px;
  text-align: center;
}

header .header_space .site_title a {
  text-decoration: none;
}

header .header_space .site_title .sitename {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  padding: 20px 80px;
}

header .header_space .title_dec {
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background: #F99F48;
}

header .header_space .title_dec:before {
  margin: 0;
  padding: 0;
  position: absolute;
  top: -11px;
  left: -11px;
  width: 99.8%;
  height: 100%;
  content: '';
  border: 4px solid #191919;
}

.gnavi {
  display: none;
}

/* main */
.main_title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px auto 30px;
  text-align: center;
}

.article_list_detail {
  width: 326px;
  background: #FFF;
  margin: 0 30px 30px 0;
  float: left;
}

.article_list_detail .article_block {
  margin: 10px 10px 40px;
}

.article_list_detail .article_block span.txt {
  line-height: 1.8;
}

.article_list_detail .img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article_list_detail .article_title {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}

.article_list_detail .at_uderline {
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
}

.article_list_detail .at_uderline:before {
  content: '';
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 4px;
  left: 10%;
  transform: translateX(-50%);
  background-color: #191919;
  border-radius: 2px;
}

/* sidebar */
.sidebar .side_list {
  margin-bottom: 35px;
}

.sidebar .side_list .parts_heading {
  font-size: 18px;
  width: 326px;
  font-weight: bold;
  padding: 0.25em 0.5em;
  color: #494949;
  background: transparent;
  border-left: solid 5px #494949;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

.sidebar .side_list .parts_heading:before {
  content: '';
  position: absolute;
  bottom: -1px;
  display: inline-block;
  width: 95%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #494949;
  border-radius: 2px;
}

.sidebar .side_list .list-hover {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.sidebar .side_list .list-hover::after {
  position: absolute;
  content: '';
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  background: #494949;
  transition: all 0.3s ease 0s;
}

.sidebar .side_list .list-hover:hover {
  cursor: pointer;
}

.sidebar .side_list .list-hover:hover::after {
  width: 100%;
}

.sidebar .side_list .item .list-sty dt {
  margin-left: 1em;
  margin-bottom: 10px;
}

.sidebar .side_list .item .list-sty dt:before {
  content: '';
  display: inline-block;
  width: .5em;
  height: .5em;
  margin-right: .5em;
  background: #494949;
  vertical-align: 2px;
}

.sidebar .golist {
  margin-left: 2.5em;
  position: relative;
}

.sidebar .golist::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: -1.5em;
  width: 10px;
  height: 5px;
  border-left: 2px solid #F99F48;
  border-bottom: 2px solid #F99F48;
  transform: rotate(-45deg);
}

.sidebar a.golist {
  display: inline-block;
  transition: .3s;
  transform: scale(1);
}

.sidebar a.golist:hover {
  transform: scale(1.1);
}

.pagetop {
  bottom: 30px;
  right: 30px;
  text-align: center;
  position: fixed;
  z-index: 2;
}

.pagetop a {
  border-radius: 18%;
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  border: 1px solid #ffffff;
  background: #8D8D8D;
  padding-top: 20px;
  color: #ffffff;
}

.pagetop a:hover {
  color: #8D8D8D;
  border-color: #8D8D8D;
  background: #ffffff;
  opacity: inherit;
}

.pagetop a:before {
  content: '';
  position: absolute;
  display: block;
  top: 20px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-top: 3px solid;
  border-right: 3px solid;
  transform: rotate(-45deg);
}

.footer {
  clear: both;
  padding: 15px 0;
  background: #F99F48;
  color: #ffffff;
  text-align: center;
}

.breadcrumb {
  padding-top: 20px;
  padding-bottom: 20px;
}

.breadcrumb ol {
  text-align: left;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.breadcrumb ol li {
  display: inline;
  letter-spacing: normal;
}

.breadcrumb ol li:first-child a {
  padding: 0px;
}

.breadcrumb ol li:after {
  margin-left: 10px;
  content: '\f105';
  margin-right: 10px;
  font-family: FontAwesome;
  opacity: 0.4;
}

.breadcrumb ol li:last-child:after {
  display: none;
}

.breadcrumb ol a {
  color: #F99F48;
  font-weight: 400;
  text-decoration: none;
}

.headline {
  color: #F99F48;
  position: relative;
  padding: 1.5rem 2rem;
  border: 4px solid #191919;
  margin-bottom: 30px;
  width: 96%;
  background: #FFF;
}

.headline:before, .headline:after {
  position: absolute;
  left: 0;
  width: 100%;
  content: '';
  border-top: 4px dotted #191919;
}

.headline:before {
  top: 6px;
}

.headline:after {
  bottom: 6px;
}

.maincolumn {
  margin-bottom: 20px;
}

.article_page .single_column {
  margin-bottom: 15px;
}

.article_page .single_column p {
  padding: 0 30px 15px 0;
}

@media screen and (max-width: 1300px) {
  body {
    min-width: auto;
  }
  .inner {
    max-width: none;
  }
  .gnavi_list ul {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
  .gnavi_list li a {
    font-size: 90%;
  }
  .wrapper {
    display: block;
    max-width: 100%;
    min-width: initial;
  }
  main {
    margin: 0;
  }
  .main_title {
    width: 98%;
  }
  header .box {
    margin: 40px auto 50px;
    text-align: center;
  }
  header .header_space .site_title .sitename {
    padding: 20px;
  }
  header .title_dec {
    display: block;
    width: 88%;
    margin: 0 auto;
  }
  /*スマホ版グロナビ*/
  .gnavi {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
  .toggle {
    z-index: 12;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    content: '';
    display: block;
    cursor: pointer;
    background: #888888cc;
  }
  .toggle:before, .toggle:after {
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: 25%;
    width: 50%;
    height: 5%;
    content: "";
    background-color: #ffffff;
    transition: all 0.6s ease-in-out;
  }
  .toggle.on:before, .toggle.on:after {
    top: 47%;
    left: 15%;
    width: 70%;
  }
  .toggle.on:before {
    transform: rotate(315deg);
  }
  .toggle.on:after {
    transform: rotate(-315deg);
  }
  .toggle:before {
    top: 30%;
  }
  .toggle:after {
    top: 60%;
  }
  .top .gnavi_list, .gnavi_list {
    position: fixed;
    right: -100%;
    width: 100%;
    transition: 0.6s;
    text-shadow: none;
  }
  .toggle.on + .gnavi_list {
    right: 0%;
  }
  .gnavi_list ul {
    display: block;
    padding: 0;
  }
  .gnavi_list ul li {
    display: block;
  }
  .gnavi_list li a {
    display: block;
    white-space: nowrap;
    width: 100%;
    text-align: left;
    text-overflow: ellipsis;
    padding: 0 15px 0 25px;
    line-height: 50px;
    color: #F99F48;
    background: #ffffff;
    overflow: hidden;
    font-weight: normal;
    border-bottom: 1px solid #dddddd;
    backface-visibility: #f2f2f2;
    font-size: inherit;
  }
  .gnavi_list li:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 10px;
    width: 0;
    height: 0;
    margin-top: -30px;
    border-top: 4px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #F99F48;
    background: transparent;
    opacity: inherit;
  }
  .breadcrumb {
    padding: 0 10px 15px;
  }
  .breadcrumb ol {
    white-space: normal;
  }
  .headline {
    margin: 0 10px 15px;
    width: 92%;
  }
  .article_page .single_column p {
    padding: 0 15px 15px;
  }
}

@media screen and (max-width: 960px) {
  header .box {
    width: 100%;
  }
  .sidebar {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sidebar .side_list .parts_heading {
    width: 95%;
  }
  .sidebar .parts_heading:before {
    width: 80%;
  }
  .article_list_detail {
    width: 100%;
    background: none;
  }
  .wrapper {
    padding-top: 0;
    overflow: hidden;
  }
  .main_title {
    margin-bottom: 40px;
  }
}
/*# sourceMappingURL=style.css.map */