@charset "UTF-8";
/**************************************************
    sass
***************************************************/
/* ---------- Media Query --------- */
/* ---------- Common --------- */
/**************************************************
	base
***************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a:focus, *:focus {
  outline: none;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

/* -----------------------------------------------
	1. Body
-------------------------------------------------- */
body {
  min-width: 1280px;
  color: #333;
  text-align: left;
  margin: 0;
}

body, input, textarea, select, button {
  font-size: 16px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  line-height: 1.8;
}

/* -----------------------------------------------
	2. Elements
-------------------------------------------------- */
/* ---------- base ---------- */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
}

img, video {
  border: 0;
  vertical-align: bottom;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

/* ---------- text ---------- */
p {
  margin: 0 0 20px;
}

a {
  color: #a8884e;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  color: #a8884e;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a[nohref] {
  color: inherit;
}
a[nohref]:hover {
  text-decoration: none;
}

/* ---------- plain ---------- */
ul.plain, ol.plain, dl.plain {
  margin-left: 20px;
  margin-bottom: 20px;
}

.plain ul, .plain ol {
  margin: 0 0 0 20px;
}

ul.plain {
  list-style-type: disc;
}
ul.plain ul {
  list-style-type: circle;
}
ul.plain ul ul {
  list-style-type: square;
}

ol.plain, ol.plain {
  list-style-type: decimal;
}

/* -----------------------------------------------
	3. Helper Class
-------------------------------------------------- */
._link-img a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
._link-img a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

._image-box-full a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
._image-box-full a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
._image-box-full img {
  width: 100%;
  height: auto;
}

.w780 {
  max-width: 780px;
  margin: 0 auto;
}

._flexc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
@media (max-width: 769px) {
  ._flexc {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
}
._flexc .column {
  margin: 0 10px;
}
@media (max-width: 769px) {
  ._flexc .column {
    margin: 0;
  }
}
._flexc::after {
  display: none !important;
}

.maker-a {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff77c));
  background: linear-gradient(transparent 60%, #fff77c 60%);
  font-style: normal;
  font-weight: bold;
}

.maker-pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffd6de));
  background: linear-gradient(transparent 60%, #ffd6de 60%);
  font-style: normal;
  font-weight: bold;
}

/* ---------- color ---------- */
._red {
  color: #e60012 !important;
}

i._red {
  color: #e60012 !important;
  font-style: normal !important;
}

._black {
  color: #333 !important;
}

._green {
  color: #6fba2c;
}

._pink {
  color: #f68ca2;
}

._brown {
  color: #a8884e;
}

/* ---------- clear ---------- */
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._float-l {
  float: left;
}

._float-r {
  float: right;
}

._clear {
  clear: both;
}

._hidden {
  display: none;
}

._block {
  display: block;
}
@media (max-width: 769px) {
  ._block {
    display: inline;
  }
}

/* ---------- text ---------- */
._small {
  font-size: 88% !important;
}

._middle {
  font-size: 100% !important;
}

._large {
  font-size: 113% !important;
}

._valignt {
  vertical-align: top !important;
}

._valignm {
  vertical-align: middle !important;
}

._valignb {
  vertical-align: bottom !important;
}

._txtc, ._txtc th, ._txtc td {
  text-align: center !important;
}

._txtr, ._txtr th, ._txtr td {
  text-align: right !important;
}

._txtl, ._txtl th, ._txtl td {
  text-align: left !important;
}

._wordbreak {
  word-break: break-all !important;
}

._nowrap {
  white-space: nowrap !important;
}

._image-text {
  overflow: hidden !important;
}

._bold {
  font-weight: bold !important;
}

._underline {
  text-decoration: underline !important;
}

/* ---------- margin ---------- */
._zero {
  margin-bottom: 0 !important;
}

._half {
  margin-bottom: 10px !important;
}

._default {
  margin-bottom: 20px !important;
}

._double {
  margin-bottom: 40px !important;
}

._triple {
  margin-bottom: 60px !important;
}

._first {
  margin-top: 0 !important;
}

/**************************************************
	structure
***************************************************/
.important-notice {
  background: #f1f2f6;
  padding: 0.4em;
}
.important-notice > .inner {
  max-width: 1400px;
  padding: 0.2em 60px;
  margin: 0 auto;
  position: relative;
}
.important-notice .btn-close {
  position: absolute;
  top: calc(50% - 5px);
  right: 60px;
  width: 10px;
  height: 10px;
  border: none;
  display: block;
  padding: 0;
  margin: 0;
}
.important-notice .btn-close img {
  width: 10px;
  height: 10px;
  display: block;
}
.important-notice a {
  font-size: 87.5%;
  color: #0E0D6A;
  line-height: 1;
  text-decoration: underline;
}
.important-notice a::before {
  content: "";
  background: url(../images/ico_info.svg) no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 6px 0 0;
}
.important-notice.close {
  display: none;
}

/* -----------------------------------------------
	1. Header
-------------------------------------------------- */
.site-header .head {
  max-width: 1400px;
  padding: 20px 60px 10px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .head .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.site-header .head .info .logo {
  width: 142px;
  height: 60px;
}
.site-header .head .info .description {
  font-size: 68.75%;
  color: #666;
  margin: 0 0 0 20px;
}
.site-header .head .utility-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header .head .utility-nav > li {
  margin-left: 1px;
  text-align: center;
}
.site-header .head .utility-nav > li a {
  font-size: 81.25%;
  padding: 10px 14px 9px;
  color: #fff;
  font-weight: bold;
  background: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .head .utility-nav > li a::before {
  content: "";
  margin-right: 8px;
}
.site-header .head .utility-nav > li a.faq::before {
  background: url(../images/ico_faq.svg) no-repeat;
  background-size: 18px 17px;
  width: 18px;
  height: 17px;
}
.site-header .head .utility-nav > li a.access::before {
  background: url(../images/ico_access.svg) no-repeat;
  background-size: 10px 14px;
  width: 10px;
  height: 14px;
}
.site-header .head .utility-nav > li a:hover, .site-header .head .utility-nav > li a.-active {
  text-decoration: none;
  background: #a8884e;
}
.site-header .head .utility-nav > li a.reservation-contact {
  background: #c97d4b;
}
.site-header .head .utility-nav > li a.reservation-contact::before {
  background: url(../images/ico_calendar.svg) no-repeat;
  background-size: 12px 13px;
  width: 12px;
  height: 13px;
}
.site-header .head .utility-nav > li a.reservation-contact:hover {
  text-decoration: none;
  opacity: 0.8;
}
.site-header .head .utility-nav > li:first-child {
  margin-left: 0;
}
.site-header .foot {
  max-width: 1400px;
  padding: 10px 60px 20px;
  margin: 0 auto;
}
.site-header .foot .global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header .foot .global-nav > li {
  width: 20%;
  text-align: center;
  border-left: 1px solid #e5e5e5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
.site-header .foot .global-nav > li > a {
  display: block;
}
.site-header .foot .global-nav > li > a .ja, .site-header .foot .global-nav > li > a .en {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.site-header .foot .global-nav > li > a .ja {
  font-size: 106.25%;
  font-weight: bold;
  color: #333;
}
.site-header .foot .global-nav > li > a .en {
  font-size: 62.5%;
  font-family: gibbs, sans-serif;
  font-weight: 400;
  color: #999;
}
.site-header .foot .global-nav > li > a:hover, .site-header .foot .global-nav > li > a.-active {
  text-decoration: none;
}
.site-header .foot .global-nav > li > a:hover .ja, .site-header .foot .global-nav > li > a:hover .en, .site-header .foot .global-nav > li > a.-active .ja, .site-header .foot .global-nav > li > a.-active .en {
  color: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.site-header .foot .global-nav > li:last-child {
  border-right: 1px solid #e5e5e5;
}
.site-header .foot .global-nav > li > ul {
  width: calc(100% - 40px);
  position: absolute;
  top: 68px;
  left: 20px;
}
.site-header .foot .global-nav > li > ul > li {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 2;
}
.site-header .foot .global-nav > li > ul > li > a {
  font-size: 87.5%;
  border-top: 1px solid #e5e5e5;
  background: #333333;
  color: #fff;
  display: block;
  width: 100%;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .foot .global-nav > li > ul > li > a:hover {
  background: #a8884e;
  text-decoration: none;
}
.site-header .foot .global-nav > li:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.site-header .foot .global-nav > li:hover > ul > li {
  height: 44px;
  overflow: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* -----------------------------------------------
	2. Footer
-------------------------------------------------- */
.site-footer .pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin: 0;
}
.site-footer .pagetop a {
  font-size: 75%;
  font-family: gibbs, sans-serif;
  background-color: #a8884e;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  letter-spacing: 0.1em;
}
.site-footer .pagetop a span {
  text-align: center;
  display: block;
}
.site-footer .pagetop a span::before {
  content: "\f078";
  display: block;
  font-family: "FontAwesome";
  color: #fff;
  margin: 0;
  line-height: 1;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.site-footer .pagetop a:hover {
  background-color: #333333;
  text-decoration: none;
}
.site-footer > .inner {
  max-width: 1400px;
  padding: 40px 60px 20px;
  margin: 0 auto;
}
.site-footer .site-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 20px;
}
.site-footer .site-map > .category {
  width: calc((100% - 10px - 10px - 10px - 10px - 10px) / 6);
}
.site-footer .site-map > .category .title {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 18px;
  margin-bottom: 20px;
  position: relative;
}
.site-footer .site-map > .category .title a {
  font-size: 100%;
  font-weight: bold;
  color: #333;
}
.site-footer .site-map > .category .title a:hover {
  text-decoration: none;
  color: #a8884e;
}
.site-footer .site-map > .category .title::after {
  content: "";
  background: #333;
  width: 40px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.site-footer .site-map > .category .menu > li {
  line-height: 1.6;
  margin-bottom: 8px;
}
.site-footer .site-map > .category .menu > li a {
  font-size: 87.5%;
  color: #333;
  text-indent: -1.7em;
  padding-left: 1.7em;
  letter-spacing: -0.05em;
  display: block;
}
.site-footer .site-map > .category .menu > li a::before {
  content: "―";
  color: #b3b3b3;
  margin-right: 10px;
}
.site-footer .site-map > .category .menu > li a:hover {
  text-decoration: none;
  color: #a8884e;
}
.site-footer .site-map > .category .menu > li:last-child {
  margin-bottom: 0;
}
.site-footer .site-map > .category .btn > li {
  margin-bottom: 20px;
}
.site-footer .site-map > .category .btn > li a {
  font-size: 81.25%;
  color: #333;
  display: block;
  padding: 0.6em 1em;
  border: 1px solid #e5e5e5;
  text-align: center;
}
.site-footer .site-map > .category .btn > li a:hover {
  text-decoration: none;
  color: #fff;
  background: #a8884e;
  border: 1px solid #a8884e;
}
.site-footer .site-map > .category .btn > li:last-child {
  margin-bottom: 0;
}
.site-footer .information {
  background: #fafafa;
}
.site-footer .information > .inner {
  max-width: 1400px;
  padding: 30px 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer .information .link-forest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer .information .link-forest .logo img {
  max-width: 160px;
  height: auto;
}
.site-footer .information .link-forest .description {
  font-size: 75%;
  margin: 0 0 0 20px;
}
.site-footer .information .operating-company .logo {
  text-align: right;
  margin-bottom: 10px;
}
.site-footer .information .operating-company .logo img {
  max-width: 60px;
  height: auto;
}
.site-footer .information .operating-company .address {
  font-size: 75%;
  margin: 0;
  text-align: right;
}
.site-footer .copyright {
  background: #333333;
  color: #fff;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: gibbs, sans-serif;
  font-size: 68.75%;
  letter-spacing: 0.1em;
}
.site-footer .privacy-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 25px 0 0 auto;
}
.site-footer .privacy-link > li {
  margin-left: 20px;
}
.site-footer .privacy-link > li a {
  font-size: 87.5%;
  font-weight: bold;
  color: #999;
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 0.5em 20px 0.4em;
  display: block;
}
.site-footer .privacy-link > li a:hover {
  text-decoration: none;
  background: #e6e6e6;
}

/* -----------------------------------------------
	3. Content
-------------------------------------------------- */
section {
  zoom: 1;
  margin: 0 auto;
}
section:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
section > .inner {
  max-width: 1400px;
  padding: 40px 60px;
  margin: 0 auto;
}
section > .inner.-lower {
  padding: 30px 60px;
}
section > .inner.pb0 {
  padding-bottom: 0;
}
section > .inner.-zero {
  padding: 0 60px;
}
.breadcrumb {
  width: 100%;
  background: #fafafa;
}
.breadcrumb .breadcrumb-list {
  max-width: 1400px;
  padding: 20px 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb .breadcrumb-list > li {
  font-size: 75%;
  line-height: 1;
  vertical-align: middle;
}
.breadcrumb .breadcrumb-list > li a {
  color: #999;
}
.breadcrumb .breadcrumb-list > li strong {
  font-weight: normal;
  color: #333;
}
.breadcrumb .breadcrumb-list > li::after {
  content: "";
  background: url(../images/ico_arrow_right.svg) no-repeat;
  background-size: 4px 6px;
  width: 4px;
  height: 6px;
  display: inline-block;
  margin: 0 10px;
}
.breadcrumb .breadcrumb-list > li:last-child::after {
  display: none;
}

.category-title {
  background: url(../images/bg_category.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.category-title .h2-a {
  line-height: 1;
  margin: 0 auto;
}

.category-cover .photo img {
  width: 100%;
  height: auto;
}
.category-cover .category-about {
  background: #fff;
  width: calc(100% - 80px);
  padding: 40px 40px 0;
  margin: -60px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.category-cover .category-about > .text {
  margin-right: 40px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.category-cover .category-about > .text .title {
  margin: 0 0 20px;
}
.category-cover .category-about > .text .title .en {
  font-size: 87.5%;
  font-family: gibbs, sans-serif;
  font-weight: 400;
  border-bottom: solid 4px #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 1;
}
.category-cover .category-about > .text .title .ja {
  font-size: 150%;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: block;
  line-height: 1.6;
}
.category-cover .category-about > .text .about-info {
  background: #fafafa;
  padding: 30px;
}
.category-cover .category-about > .text .about-info .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.category-cover .category-about > .text .about-info .head .logo {
  width: 190px;
  height: 80px;
  margin: 0 30px 0 0;
}
.category-cover .category-about > .text .about-info .head .address {
  font-size: 100%;
  margin: 0;
}
.category-cover .category-about > .text .about-info .foot img {
  width: 100%;
  height: auto;
}
.category-cover .category-about > .text.-single {
  margin-right: 0;
}
.category-cover .category-about .index {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 460px;
}
.category-cover .category-about .index .index-list, .category-cover .category-about .index .index-list-b {
  margin-bottom: 40px;
}
.category-cover .category-about .index .index-list > li, .category-cover .category-about .index .index-list-b > li {
  margin-bottom: 1px;
}
.category-cover .category-about .index .index-list > li a, .category-cover .category-about .index .index-list-b > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
}
.category-cover .category-about .index .index-list > li a .num, .category-cover .category-about .index .index-list-b > li a .num {
  width: 60px;
  min-height: 60px;
  background: #333333;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 131.25%;
  font-family: gibbs, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category-cover .category-about .index .index-list > li a .text, .category-cover .category-about .index .index-list-b > li a .text {
  font-size: 106.25%;
  background: #fafafa;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 20px;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.category-cover .category-about .index .index-list > li a .text::after, .category-cover .category-about .index .index-list-b > li a .text::after {
  content: "";
  background: url(../images/ico_arrow_bottom.svg) no-repeat;
  background-size: 20px 8px;
  width: 20px;
  height: 8px;
  position: absolute;
  top: calc((100% - 8px) / 2);
  right: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category-cover .category-about .index .index-list > li a .text .label, .category-cover .category-about .index .index-list-b > li a .text .label {
  font-size: 75%;
  font-weight: bold;
  font-style: normal;
  background: #a8884e;
  color: #fff;
  width: 7em;
  padding: 3px 0 2px;
  margin-right: 8px;
  text-align: center;
  border-radius: 5px;
}
.category-cover .category-about .index .index-list > li a:hover, .category-cover .category-about .index .index-list-b > li a:hover {
  text-decoration: none;
}
.category-cover .category-about .index .index-list > li a:hover .num, .category-cover .category-about .index .index-list-b > li a:hover .num {
  background: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category-cover .category-about .index .index-list > li a:hover .text, .category-cover .category-about .index .index-list-b > li a:hover .text {
  color: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category-cover .category-about .index .index-list > li a:hover .text::after, .category-cover .category-about .index .index-list-b > li a:hover .text::after {
  content: "";
  background: url(../images/ico_arrow_bottom_brown.svg) no-repeat;
  background-size: 20px 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category-cover .category-about .index .index-list > li:last-child, .category-cover .category-about .index .index-list-b > li:last-child {
  margin-bottom: 0;
}
.category-cover .category-about .index .index-list-b li a .text::after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.category-cover .lead-box {
  padding: 0 100px;
}

.page-back > .inner {
  padding: 20px 60px;
}
.page-back .column-2 {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-back .column-2 > .column:first-child {
  text-align: left;
}
.page-back .column-2 > .column:last-child {
  text-align: right;
}

/* -----------------------------------------------
	5. Primary
-------------------------------------------------- */
/* -----------------------------------------------
	6. Secondary
-------------------------------------------------- */
/* -----------------------------------------------
	7. Slider
-------------------------------------------------- */
.content-list, .slider-plain, .facility-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-list li, .slider-plain li, .facility-list li {
  margin: 0 20px;
}
.content-list li img, .slider-plain li img, .facility-list li img {
  width: 100%;
  height: auto;
}
.content-list li a, .slider-plain li a, .facility-list li a {
  display: block;
  color: #fff;
  opacity: 1;
}
.content-list li a .photo, .slider-plain li a .photo, .facility-list li a .photo {
  position: relative;
}
.content-list li a .photo .caption, .slider-plain li a .photo .caption, .facility-list li a .photo .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
}
.content-list li a .photo .caption .title, .slider-plain li a .photo .caption .title, .facility-list li a .photo .caption .title {
  font-size: 100%;
  font-weight: bold;
}
.content-list li a:hover, .slider-plain li a:hover, .facility-list li a:hover {
  opacity: 0.6;
}
.content-list .slick-dots, .slider-plain .slick-dots, .facility-list .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}
.content-list .slick-dots li, .slider-plain .slick-dots li, .facility-list .slick-dots li {
  display: inline;
  margin: 0;
}
.content-list .slick-dots li button, .slider-plain .slick-dots li button, .facility-list .slick-dots li button {
  color: transparent;
  background: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 20px;
  height: 20px;
  outline: none;
}
.content-list .slick-dots li button::before, .slider-plain .slick-dots li button::before, .facility-list .slick-dots li button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #e5e5e5;
  border-radius: 50%;
}
.content-list .slick-dots li.slick-active button::before, .slider-plain .slick-dots li.slick-active button::before, .facility-list .slick-dots li.slick-active button::before {
  background: #a8884e;
}
.content-list .slick-arrow, .slider-plain .slick-arrow, .facility-list .slick-arrow {
  position: absolute;
  top: calc((100% - 44px) / 2);
}
.content-list .slick-arrow img, .slider-plain .slick-arrow img, .facility-list .slick-arrow img {
  width: 20px;
  height: 44px;
  cursor: pointer;
}
.content-list .slider-prev, .slider-plain .slider-prev, .facility-list .slider-prev {
  left: -40px;
}
.content-list .slider-next, .slider-plain .slider-next, .facility-list .slider-next {
  right: -40px;
}

.slider-plain li {
  margin: 0;
}

.image-slider li {
  outline: none;
}
.image-slider li img {
  width: 100%;
  height: auto;
}
.image-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px -5px 0;
}
.image-slider .slick-dots > li {
  padding: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
}
.image-slider .slick-dots > li::after {
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: calc(100% - 14px);
  height: calc(100% - 4px);
  position: absolute;
  top: 0;
  left: 5px;
  border: 2px solid rgba(0, 0, 0, 0);
  display: block;
}
.image-slider .slick-dots > li.slick-active::after, .image-slider .slick-dots > li:hover::after {
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 4px);
  position: absolute;
  top: 0;
  left: 5px;
  border: 2px solid #a8884e;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.image-slider .slick-dots > li img {
  width: 100%;
  height: auto;
}
.image-slider .slick-dots > li .caption {
  position: absolute;
  bottom: 0;
  left: 5px;
  width: calc(100% - 10px);
  height: 100%;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
  text-align: center;
}
.image-slider .slick-dots > li .caption .title {
  font-size: 87.5%;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}
.image-slider .slick-dots.-list2 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.image-slider .slick-dots.-list2 > li {
  width: 33.3% !important;
}

.bnr-slider {
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
}
.bnr-slider li {
  margin: 0 10px;
  cursor: pointer;
}
.bnr-slider li a {
  pointer-events: none;
  display: block;
}
.bnr-slider li a:hover {
  opacity: 0.6;
}
.bnr-slider li img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.2;
}
.bnr-slider li.slick-current img, .bnr-slider li:hover img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.bnr-slider li.slick-current a {
  pointer-events: auto;
}
.bnr-slider .slick-arrow {
  position: absolute;
  top: calc((100% - 65px) / 2);
}
.bnr-slider .slick-arrow img {
  width: 14px;
  height: 30px;
  cursor: pointer;
}
.bnr-slider .slider-prev {
  left: 0;
}
.bnr-slider .slider-next {
  right: 0;
}
.bnr-slider .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}
.bnr-slider .slick-dots li {
  display: inline;
  margin: 0 4px;
}
.bnr-slider .slick-dots li button {
  color: transparent;
  background: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 8px;
  height: 8px;
  outline: none;
}
.bnr-slider .slick-dots li button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}
.bnr-slider .slick-dots li.slick-active button::before {
  background: #a8884e;
}

.plan-slider .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}
.plan-slider .slick-dots li {
  display: inline;
  margin: 0 4px;
}
.plan-slider .slick-dots li button {
  color: transparent;
  background: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  outline: none;
}
.plan-slider .slick-dots li button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}
.plan-slider .slick-dots li.slick-active button::before {
  background: #a8884e;
}

/**************************************************
	components
***************************************************/
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff600));
  background: linear-gradient(transparent 60%, #fff600 60%);
  font-style: normal;
  font-weight: bold;
}

/* -----------------------------------------------
	Icon
-------------------------------------------------- */
.ico-external::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../images/ico_external.svg) no-repeat 0 0;
  background-size: 12px 12px;
  margin-left: 8px;
}
.ico-external.-ml0::after {
  margin: 0 4px;
}

.ico-pdf::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/ico_pdf.svg) no-repeat 0 0;
  background-size: 18px 18px;
  margin-left: 8px;
  vertical-align: middle;
}
.ico-pdf.-ml0::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/ico_pdf.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin: -4px 4px 0 4px;
}

/* -----------------------------------------------
	Heading
-------------------------------------------------- */
.h2-a {
  text-align: center;
  margin: -10px 0 30px;
}
.h2-a .en, .h2-a .ja {
  line-height: 1;
}
.h2-a .en {
  font-size: 75%;
  font-family: gibbs, sans-serif;
  font-weight: 400;
  border-bottom: solid 4px #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}
.h2-a .ja {
  font-size: 187.5%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: block;
}
.h2-a.-white {
  color: #fff;
}

.h3-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.h3-a .num {
  width: 60px;
  min-height: 60px;
  background: #333333;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 131.25%;
  font-family: gibbs, sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #333333;
}
.h3-a .title {
  background: #fafafa;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px;
  font-weight: bold;
  border-bottom: 1px solid #e5e5e5;
  font-size: 125%;
}

.h3-b {
  border-top: 1px solid #a8884e;
  border-bottom: 1px solid #a8884e;
  margin-bottom: 40px;
  color: #a8884e;
  background: #fafafa;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 137.5%;
  text-align: center;
}

.h4-a {
  text-align: center;
  margin: 30px 0 25px;
}
.h4-a .text {
  font-weight: bold;
  font-size: 125%;
  letter-spacing: 0.1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.h4-a .text i {
  font-style: normal;
  padding: 0 30px;
  white-space: nowrap;
}
.h4-a .text::before, .h4-a .text::after {
  content: "";
  background: #e5e5e5;
  width: 100%;
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.h4-b {
  margin-bottom: 20px;
  color: #fafafa;
  background: #333333;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 112.5%;
  letter-spacing: 0.02em;
}

.h5-a {
  font-size: 125%;
  font-weight: bold;
  color: #a8884e;
  margin: 0 0 10px;
}

.h5-b {
  font-size: 112.5%;
  font-weight: bold;
  margin: 0 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h5-b::before {
  content: "";
  width: 3px;
  height: 1em;
  display: block;
  background: #333333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: -3px 10px 0 0;
}

.h6-a {
  font-size: 112.5%;
  font-weight: bold;
  margin: 0 0 10px;
}

/* -----------------------------------------------
	Lead + Text
-------------------------------------------------- */
.h3-a + .section-lead, .h3-b + .section-lead {
  margin: -10px 0 30px;
}

.h4-a + .section-lead {
  margin: -10px 0 30px;
}

.indent-text-a {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}

/* -----------------------------------------------
	List
-------------------------------------------------- */
.attention-list > li, .attention-list-a > li, .attention-list-b > li {
  font-size: 75%;
  text-indent: -1em;
  padding-left: 1em;
}
.attention-list.-gray > li, .attention-list-a.-gray > li, .attention-list-b.-gray > li {
  color: #999;
}
.attention-list.-large > li, .attention-list-a.-large > li, .attention-list-b.-large > li {
  font-size: 100%;
}

.attention-list-a > li {
  font-size: 100%;
}
.attention-list-a > li > .plain {
  padding-left: 1em;
}

.attention-list-b > li {
  font-size: 87.5%;
}
.attention-list-b > li > .plain {
  padding-left: 1em;
}

.attention-list-c > li {
  font-size: 87.5%;
  line-height: 1.6;
  text-indent: -2em;
  padding-left: 2em;
  margin-bottom: 10px;
  color: #666;
}
.attention-list-c > li:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------
	Table
-------------------------------------------------- */
.table-a, .column-table- table {
  width: 100%;
  border-top: 1px solid #DDDDDD;
  margin: 0 auto 20px;
}
.table-a thead, .column-table- table thead {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: -1px;
  color: #a8884e;
  background: #F0F0F0;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 112.5%;
  text-align: center;
  position: relative;
  z-index: 2;
  text-align: center;
}
.table-a th, .table-a td, .column-table- table th, .column-table- table td {
  border-bottom: 1px solid #DDDDDD;
  padding: 0.6em 1.2em;
  text-align: left;
}
@media (max-width: 769px) {
  .table-a th, .table-a td, .column-table- table th, .column-table- table td {
    display: block;
  }
  .table-a th .column-2 .column, .table-a td .column-2 .column, .column-table- table th .column-2 .column, .column-table- table td .column-2 .column {
    width: 100%;
  }
}
.table-a th, .column-table- table th {
  font-weight: bold;
  vertical-align: top;
  background: #F0F0F0;
}

.table-b {
  width: 100%;
  margin: 0 auto 40px;
}
.table-b th, .table-b td {
  padding: 0.6em 1em;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.table-b th {
  background: #f2f2f2;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  color: #a8884e;
}
.table-b td {
  background: #fff;
}
.table-b.-thin th, .table-b.-thin td {
  padding: 0.6em;
}
.table-b.-thin td {
  vertical-align: top;
}

/* -----------------------------------------------
	Button
-------------------------------------------------- */
.btn-more {
  font-size: 93.75%;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  padding: 1em 2em;
  margin: 0 auto;
  color: #fff;
  background: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 300px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-more .ico-supplement {
  vertical-align: -webkit-baseline-middle;
  display: inline-block;
  margin-top: -10px;
}
.btn-more:hover {
  text-decoration: none;
  background: #a8884e;
  color: #fff;
  border-radius: 10px;
}
.btn-more.-contact {
  font-size: 112.5%;
  max-width: 300px;
  border-radius: 100px;
  background: #c97d4b;
  padding: 0.6em 1em;
  border: 1px solid #c97d4b;
}
.btn-more.-contact .ico-external::after {
  background: url(../images/ico_external-white.svg) no-repeat 0 0;
  background-size: 12px 12px;
  margin-left: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-more.-contact:hover {
  color: #c97d4b;
  background: #fff;
}
.btn-more.-contact:hover .ico-external::after {
  background: url(../images/ico_external-orange.svg) no-repeat 0 0;
  background-size: 12px 12px;
  margin-left: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-more.-contact.-outline {
  color: #c97d4b;
  background: #fff;
  border: 1px solid #c97d4b;
}
.btn-more.-contact.-outline:hover {
  color: #fff;
  background: #c97d4b;
}
.btn-more.-natural {
  max-width: 100%;
}
.btn-more.-full {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.btn-a {
  font-size: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.6em 2em 0.5em;
  margin: 0 auto;
  color: #333333;
  border: 1px solid #333333;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  min-width: 300px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn-a.-back {
  min-width: inherit;
}
.btn-a.-full {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.btn-a.-short {
  font-size: 93.75%;
  padding: 0.2em 1.4em 0.2em;
  min-width: 80px;
}
.btn-a:hover {
  text-decoration: none;
  color: #FFF;
  background: #a8884e;
  border: 1px solid #a8884e;
}
.btn-a:hover .ico-external::after {
  background: url(../images/ico_external-white.svg) no-repeat 0 0;
  background-size: 12px 12px;
  margin-left: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-a.-bg {
  color: #FFF !important;
  background: #a8884e;
  border: 1px solid #a8884e;
}
.btn-a.-bg:hover {
  text-decoration: none;
  color: #a8884e !important;
  background: #fff;
  border: 1px solid #a8884e;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.btn-wrap > a {
  margin: 0 20px;
}

.btn-wrap-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.btn-wrap-contact > a, .btn-wrap-contact > button {
  margin: 0 20px;
}

@-webkit-keyframes shine {
  33% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@keyframes shine {
  33% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.btn-shine {
  position: relative;
  background: #333;
  color: #fff;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skewX(-25deg);
      -ms-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: shine 5s infinite;
          animation: shine 5s infinite;
}
.btn-shine:hover::before {
  -webkit-animation: none;
          animation: none;
}
.btn-shine.-active {
  overflow: visible;
}
.btn-shine.-active::before {
  display: none;
}

/* -----------------------------------------------
	Box
-------------------------------------------------- */
.box-a, .box-b, .box-c, .box-d, .box-e, .box-f, .box-g, .box-puroland {
  zoom: 1;
  padding: 30px;
  margin-bottom: 30px;
}
.box-a:after, .box-b:after, .box-c:after, .box-d:after, .box-e:after, .box-f:after, .box-g:after, .box-puroland:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.box-a.-flex, .box-b.-flex, .box-c.-flex, .box-d.-flex, .box-e.-flex, .box-f.-flex, .box-g.-flex, .box-puroland.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-a {
  border: 1px solid #e5e5e5;
}

.box-b {
  background: #FFE;
}

.box-c {
  background: #EEE;
}

.box-d {
  background: #fafafa;
}

.box-e {
  background: #fff;
  border: 1px solid #c97d4b;
}

.box-f {
  background: #fafafa;
  border: 1px solid #a8884e;
}

.box-g {
  background: #f8fff1;
  border: 1px solid #6fba2c;
}

.box-puroland {
  padding: 20px;
  background: #fdf4f6;
  border: 2px solid red;
  border-radius: 6px;
  color: red;
  font-weight: bold;
}

.plan-close {
  background: #fff2f2;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media (max-width: 769px) {
  .plan-close {
    padding: 15px;
    margin: 15px 0 20px;
  }
}

.blockquote-a {
  position: relative;
  padding: 20px 60px;
  margin: 30px auto;
  background: #fafafa;
  border-radius: 10px;
}
@media (max-width: 769px) {
  .blockquote-a {
    padding: 20px 60px;
  }
}
.blockquote-a::before, .blockquote-a::after {
  position: absolute;
  font-size: 4em;
  opacity: 0.2;
  line-height: 1;
  display: block;
}
.blockquote-a::before {
  content: "“";
  top: 20px;
  left: 20px;
}
.blockquote-a::after {
  content: "”";
  bottom: -20px;
  right: 20px;
  vertical-align: bottom;
}

/* -----------------------------------------------
	Column
-------------------------------------------------- */
.column-2, .column-3, .column-4, .column-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.column-2 > .column, .column-3 > .column, .column-4 > .column, .column-5 > .column {
  margin-bottom: 30px;
  position: relative;
}
.column-2 > .column > .caption, .column-3 > .column > .caption, .column-4 > .column > .caption, .column-5 > .column > .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
  font-size: 100%;
  font-weight: bold;
  color: #fff;
}
.column-2 > .column > .caption .title, .column-3 > .column > .caption .title, .column-4 > .column > .caption .title, .column-5 > .column > .caption .title {
  font-size: 100%;
  font-weight: bold;
  color: #fff;
}
.column-2 > .column > .caption.-small, .column-3 > .column > .caption.-small, .column-4 > .column > .caption.-small, .column-5 > .column > .caption.-small {
  padding-bottom: 12px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
  font-size: 87.5%;
}
.column-2 > .column > .caption.-small .title, .column-3 > .column > .caption.-small .title, .column-4 > .column > .caption.-small .title, .column-5 > .column > .caption.-small .title {
  font-size: 87.5%;
}
.column-2 > .column .caption-b, .column-3 > .column .caption-b, .column-4 > .column .caption-b, .column-5 > .column .caption-b {
  font-weight: bold;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.column-2 > .column img, .column-3 > .column img, .column-4 > .column img, .column-5 > .column img {
  width: 100%;
}
.column-2.column-2 > .column, .column-3.column-2 > .column, .column-4.column-2 > .column, .column-5.column-2 > .column {
  width: calc((100% - 30px) / 2);
}
.column-2.column-2 > .column.-full, .column-3.column-2 > .column.-full, .column-4.column-2 > .column.-full, .column-5.column-2 > .column.-full {
  width: 100%;
}
@media (max-width: 769px) {
  .column-2.column-2 > .column.sp-full, .column-3.column-2 > .column.sp-full, .column-4.column-2 > .column.sp-full, .column-5.column-2 > .column.sp-full {
    width: 100% !important;
  }
}
.column-2.column-3 > .column, .column-3.column-3 > .column, .column-4.column-3 > .column, .column-5.column-3 > .column {
  width: calc((100% - 30px - 30px) / 3);
}
.column-2.column-3 > .column.-full, .column-3.column-3 > .column.-full, .column-4.column-3 > .column.-full, .column-5.column-3 > .column.-full {
  width: 100%;
}
@media (max-width: 769px) {
  .column-2.column-3 > .column.sp-full, .column-3.column-3 > .column.sp-full, .column-4.column-3 > .column.sp-full, .column-5.column-3 > .column.sp-full {
    width: 100% !important;
  }
}
.column-2.column-3::after, .column-3.column-3::after, .column-4.column-3::after, .column-5.column-3::after {
  content: "";
  display: block;
  width: calc((100% - 30px - 30px) / 3);
}
.column-2.column-4 > .column, .column-3.column-4 > .column, .column-4.column-4 > .column, .column-5.column-4 > .column {
  width: calc((100% - 30px - 30px - 30px) / 4);
}
.column-2.column-5 > .column, .column-3.column-5 > .column, .column-4.column-5 > .column, .column-5.column-5 > .column {
  width: calc((100% - 30px - 30px - 30px - 30px) / 5);
}
.column-2.-align-center, .column-3.-align-center, .column-4.-align-center, .column-5.-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* -----------------------------------------------
	Image
-------------------------------------------------- */
.image-l .caption, .image-r .caption {
  font-size: 87.5%;
  text-align: center;
  margin-top: 0.5em;
}
.image-l.w300 img, .image-r.w300 img {
  max-width: 300px;
  height: auto;
}

.image-l {
  float: left;
  margin: 0 30px 30px 0;
}

.image-caption {
  font-size: 12px;
  text-align: center;
  margin: 8px auto 0;
  display: block;
}

/**************************************************
  Form
***************************************************/
.form-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 30px;
  overflow: hidden;
  background: #eee;
  font-size: 14px;
  color: #999;
}
.form-step > li {
  position: relative;
  width: 33.3%;
  padding: 1em;
  text-align: center;
  white-space: nowrap;
}
.form-step > li.-done {
  background: #fafafa;
}
.form-step > li.-current {
  font-weight: bold;
  background: #a8884e;
  color: #fff;
}
.form-step > li.-current::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  border-top: 30px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 15px solid #eee;
}
.form-step > li.-current::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 0;
  border-top: 30px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 15px solid #a8884e;
}
.form-step > li:first-child {
  border-left: 0;
}
.form-step > li:first-child.-current::before {
  display: none;
}
.form-step > li:last-child {
  border-right: 0;
}

.required, .any {
  color: #FFF;
  font-size: 12px;
  background: #ff0000;
  padding: 0.1em 0.5em;
  font-size: 12px;
  display: inline-block;
  margin-left: 20px;
  float: right;
}
.required.-top, .any.-top {
  margin-top: -75px;
}
.required.-add, .any.-add {
  margin-top: -78px;
}
.required.-second, .any.-second {
  margin-top: 0;
}
.required.-third, .any.-third {
  clear: both;
  margin-top: 55px;
}

.any {
  background: #aaa;
}

.form-table {
  width: 100%;
  margin-bottom: 40px;
}
.form-table th, .form-table td {
  zoom: 1;
  border-bottom: 1px solid #dddddd;
}
.form-table th:after, .form-table td:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.form-table th table th, .form-table th table td, .form-table td table th, .form-table td table td {
  border-bottom: none;
}
.form-table th {
  font-size: 0.94em;
  vertical-align: middle;
  padding: 1em 1em 1em 0;
}
.form-table th .note {
  color: #333333;
}
.form-table td {
  padding: 1em 0;
}
.form-table td .h-memo {
  display: inline-block;
  width: 365px;
  margin-left: 12px;
  font-size: 75.5%;
  font-weight: normal;
  line-height: 1.5;
  vertical-align: middle;
}
.form-table td .h-memo a {
  text-decoration: underline;
}
.form-table td .h-memo a:hover {
  opacity: 0.8;
}
.form-table table {
  width: 100%;
}
.form-table table th, .form-table table td {
  padding: 0.5em 1em 0.5em 0;
  vertical-align: middle;
}
.form-table.-select th, .form-table.-select td {
  border-bottom: 2px solid #dddddd;
}
.form-table.-preview {
  background: #FAF8F4;
}
.form-table.-preview th, .form-table.-preview td {
  padding: 1em;
  border-bottom: 1px dotted #999;
}
.form-table.-preview .text-field {
  background: #fff;
}
.form-table.-preview .text-area {
  background: #fff;
}
.form-table.-preview .radio-button span::before {
  background: #fff;
}

.form-row:not(:last-child) {
  margin-bottom: 10px;
}

.form-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-action > li {
  margin: 0 10px 20px;
}

.error {
  display: block;
  color: #ff0000;
  font-size: 0.88em;
  padding-top: 0.5em;
}

.alert {
  width: 22px;
  height: 22px;
  display: block;
  float: left;
}
.alert img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.text-field, .text-area, .select-box {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 0.5em 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.text-field.-error, .text-area.-error, .select-box.-error {
  background: #fff0f0;
  border-color: #f4c2c2;
}
.text-field.-inline, .text-area.-inline, .select-box.-inline {
  width: 20%;
  margin-right: 1em;
}
.text-field.-middle, .text-area.-middle, .select-box.-middle {
  width: 60%;
  margin-right: 1em;
}
.text-field.-wide, .text-area.-wide, .select-box.-wide {
  width: 79%;
}
.text-field.-short, .text-area.-short, .select-box.-short {
  width: 50%;
  margin-right: 1em;
}
.text-field.-date, .text-area.-date, .select-box.-date {
  width: 30%;
  margin: 0 0.5em;
}
.text-field.-small, .text-area.-small, .select-box.-small {
  width: 13%;
  margin-right: 0.5em;
}
.text-field.-active, .text-area.-active, .select-box.-active {
  ime-mode: active;
}
.text-field.-inactive, .text-area.-inactive, .select-box.-inactive {
  ime-mode: inactive;
}
.text-field[disabled], .text-field[readonly], .text-area[disabled], .text-area[readonly], .select-box[disabled], .select-box[readonly] {
  color: #999;
  background: #DDD;
  border: 1px solid #CCC;
}
.text-field[name=email2], .text-area[name=email2], .select-box[name=email2] {
  margin-top: 10px;
}
.text-field[name=inquiry], .text-area[name=inquiry], .select-box[name=inquiry] {
  height: 8em;
}

.radio-button, .check-box {
  margin: 0 0 0.5em;
}
.radio-button input, .check-box input {
  display: none;
}
.radio-button span, .check-box span {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  padding-right: 25px;
}
.radio-button span::before, .check-box span::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #d7d7d7;
  background: #F9F9F9;
  vertical-align: middle;
}
.radio-button span.bottom-a, .check-box span.bottom-a {
  margin-bottom: 0.5em;
}
.radio-button span.bottom-b, .check-box span.bottom-b {
  margin-bottom: 1em;
}
.radio-button span.pd-r, .check-box span.pd-r {
  padding-right: 0;
}
.radio-button span em, .check-box span em {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
}
.radio-button input:checked + span::before, .check-box input:checked + span::before {
  border-color: #cacaca;
}
.radio-button input:checked + span::after, .check-box input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 5px;
  width: 9px;
  height: 9px;
  background: #333;
}
.radio-button.radio-button span::before, .check-box.radio-button span::before {
  border-radius: 50%;
}
.radio-button.radio-button input:checked + span::after, .check-box.radio-button input:checked + span::after {
  border-radius: 50%;
}

.agreement {
  text-align: center;
  margin-bottom: 40px;
}
.agreement label {
  display: inline-block;
  padding: 0.5em 1em;
  background: #EEE;
  margin-top: 1.5em;
}

/* -----------------------------------------------
	FAQ
-------------------------------------------------- */
.counter-wrap {
  counter-reset: number 0;
}

.accordion > ul > li {
  margin-bottom: 20px;
  background: #fafafa;
}
.accordion > ul > li > a {
  display: block;
  padding: 20px 60px;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  -webkit-transition: all, 0.25s, linear;
  transition: all, 0.25s, linear;
  position: relative;
}
.accordion > ul > li > a:hover, .accordion > ul > li > a.active {
  text-decoration: none;
}
.accordion > ul > li > a::before {
  content: "";
  background: url(../images/ico_q.svg) no-repeat;
  background-size: 19px 20px;
  width: 19px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
}
.accordion > ul > li .inner {
  zoom: 1;
  display: none;
  padding: 0 20px 20px 60px;
  margin: 0;
  position: relative;
}
.accordion > ul > li .inner:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}
.accordion > ul > li .inner p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}
.accordion > ul > li .inner p a {
  text-decoration: underline;
}
.accordion > ul > li .inner p:last-child {
  margin-bottom: 0;
}
.accordion > ul > li:last-child {
  margin-bottom: 0;
}

.switch .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: bold;
}
.switch .menu .counter::before {
  counter-increment: number 1;
  content: counter(number) " ";
  font-style: normal;
  color: #a8884e;
  line-height: 1;
  vertical-align: middle;
  margin: 0 14px 0 -14px;
}
@media (max-width: 769px) {
  .switch .menu .counter::before {
    padding-bottom: 8px;
    margin: 0 0 0 -10px;
    display: block;
  }
}
.switch .menu .tag {
  font-size: 75%;
  border: 1px solid #a8884e;
  color: #a8884e;
  padding: 0.2em 0.8em 0.1rem;
  margin-right: 20px;
  white-space: nowrap;
  text-align: center;
  min-width: 92px;
}
.switch .menu::after {
  content: "";
  background: url(../images/ico_plus.svg) no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  -webkit-transition: all, 0.25s, linear;
  transition: all, 0.25s, linear;
}
.switch .menu.active::after {
  background: url(../images/ico_minus.svg) no-repeat;
  background-size: 20px 20px;
}
.switch > ul > li.open .menu::after {
  content: "";
  background: url(../images/ico_minus.svg) no-repeat;
  background-size: 20px 20px;
}
.switch > ul > li.open .menu.active::after {
  background: url(../images/ico_plus.svg) no-repeat;
  background-size: 20px 20px;
}
.switch > ul > li.open .inner {
  display: block;
}

/* -----------------------------------------------
	Other
-------------------------------------------------- */
.news-list .item {
  margin-bottom: 20px;
}
.news-list .item a, .news-list .item .wrap {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-list .item a .date, .news-list .item .wrap .date {
  font-size: 93.75%;
  font-family: gibbs, sans-serif;
  font-weight: 400;
  min-width: 5em;
}
.news-list .item a .category, .news-list .item .wrap .category {
  font-size: 62.5%;
  color: #fff;
  font-weight: bold;
  background: #666;
  border-radius: 40px;
  min-width: 120px;
  padding: 1em;
  margin: 0 30px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.news-list .item a .title, .news-list .item .wrap .title {
  font-size: 100%;
  font-weight: 500;
}
.news-list .item a .link-a, .news-list .item .wrap .link-a {
  color: #a8884e;
  font-weight: bold;
  text-decoration: none;
  display: inline;
}
.news-list .item a .link-a:hover, .news-list .item .wrap .link-a:hover {
  text-decoration: underline;
}
.news-list .item a:hover {
  text-decoration: none;
  color: #a8884e;
}
.news-list .item a:hover .category {
  background: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-list .item a[nohref] {
  pointer-events: none;
}
.news-list .item .wrap a {
  display: inline-block;
}
.news-list .item .wrap a:hover {
  text-decoration: underline;
}
.news-list .item:last-child {
  margin-bottom: 0;
}
.news-list .item.is-hide {
  display: none;
}

.entry-nav {
  position: relative;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  font-size: 0.88em;
  overflow: hidden;
  min-height: 1.7em;
  text-align: center;
}
.entry-nav a {
  color: #666;
  text-decoration: none;
}
.entry-nav a:hover {
  color: #a8884e !important;
}
.entry-nav .previous {
  float: right;
}
.entry-nav .previous a {
  color: #333;
}
.entry-nav .previous a::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: url(../images/icon/icon_arrow.svg) no-repeat 0 0;
  background-size: 8px 8px;
  margin-left: 10px;
}
.entry-nav .index {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}
.entry-nav .index a {
  color: #333;
}
.entry-nav .next {
  float: left;
}
.entry-nav .next a {
  color: #333;
}
.entry-nav .next a::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: url(../images/icon/icon_arrow.svg) no-repeat 0 0;
  background-size: 8px 8px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 10px;
}

/**************************************************
	base
***************************************************/
@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 769px) {
  .pc-only {
    display: none;
  }
  body {
    min-width: 100%;
    font-size: 14px;
    padding-top: 60px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  p {
    margin: 0 0 10px;
  }
  /* ---------- margin ---------- */
  ._default {
    margin-bottom: 10px !important;
  }
  ._double {
    margin-bottom: 20px !important;
  }
  ._triple {
    margin-bottom: 30px !important;
  }
}
/**************************************************
	structure
***************************************************/
@media (max-width: 769px) {
  .important-notice {
    padding: 0.4em;
  }
  .important-notice > .inner {
    max-width: 100%;
    padding: 0.2em 10px;
    margin: 0 auto;
  }
  .important-notice .btn-close {
    right: 10px;
  }
  .important-notice.close {
    display: none;
  }
  /* -----------------------------------------------
  	1. Header
  -------------------------------------------------- */
  .site-header {
    display: none;
  }
  .sp-site-header {
    border-top: 4px solid #333333;
    border-bottom: 1px solid #ebebeb;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
  }
  .sp-site-header > .inner {
    height: 56px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp-site-header > .inner > .logo {
    padding-left: 12px;
    margin-right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp-site-header > .inner > .logo .description {
    font-size: 62.5%;
    margin-left: 10px;
  }
  .sp-site-header > .inner > .logo img {
    width: 100%;
    max-width: 60px;
    height: auto;
  }
  .sp-site-header > .inner > .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 999;
  }
  .sp-site-header > .inner > .wrapper .menu-category {
    position: relative;
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon {
    height: 56px;
    padding: 0 12px 0 34px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon span {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #333333;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    top: 52%;
    left: 20px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon span::before, .sp-site-header > .inner > .wrapper .menu-category #sp-icon span::after {
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #333333;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon span::before {
    content: "";
    -webkit-transform: translateY(-4px) rotate(0deg);
        -ms-transform: translateY(-4px) rotate(0deg);
            transform: translateY(-4px) rotate(0deg);
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon span::after {
    content: "";
    -webkit-transform: translateY(4px) rotate(0deg);
        -ms-transform: translateY(4px) rotate(0deg);
            transform: translateY(4px) rotate(0deg);
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon.sp-open {
    background: #f3f4f5;
    color: #a8884e;
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon.sp-open span {
    background: transparent !important;
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon.sp-open span::before, .sp-site-header > .inner > .wrapper .menu-category #sp-icon.sp-open span::after {
    background: #a8884e;
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon.sp-open span::before {
    content: "";
    -webkit-transform: rotate(45deg) !important;
        -ms-transform: rotate(45deg) !important;
            transform: rotate(45deg) !important;
  }
  .sp-site-header > .inner > .wrapper .menu-category #sp-icon.sp-open span::after {
    content: "";
    -webkit-transform: rotate(-45deg) !important;
        -ms-transform: rotate(-45deg) !important;
            transform: rotate(-45deg) !important;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content {
    display: none;
    background: #f3f4f5;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px 15px 1px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 9998;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .search-box {
    margin-bottom: 20px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .search-box .gsc-input-box {
    padding: 0 !important;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .search-box .gsc-search-button-v2 {
    padding: 10px !important;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list {
    margin-bottom: 20px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li {
    margin-bottom: 10px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li a {
    width: 100%;
    height: 40px;
    padding: 0.6em 0.8em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    font-size: 14px;
    background: #fff;
    color: #333;
    text-decoration: none;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li a[target=_blank]::after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    background: url(../images/ico_external.svg) no-repeat 0 0;
    background-size: 8px 8px;
    margin-left: 8px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li .utility-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li .utility-nav > li {
    font-size: 87.5%;
    width: calc((100% - 1px) / 2);
    margin-top: 1px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li .utility-nav > li.-full {
    width: 100%;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.accordion > .inner {
    zoom: 1;
    display: none;
    position: relative;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.accordion > .inner:after {
    content: "";
    display: block;
    clear: both;
    overflow: auto;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.accordion > .inner .title {
    font-size: 13px;
    background: #585858;
    height: 40px;
    padding: 0.6em 0.8em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    color: #fff;
    margin-top: 10px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.accordion > .inner > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.accordion > .inner > ul > li {
    width: calc((100% - 1px) / 2);
    margin-top: 1px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.accordion > .inner > ul > li.toplink {
    width: 100%;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.accordion > .inner > ul > li > a {
    font-size: 12px;
    height: 100%;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.switch > .menu {
    display: block;
    position: relative;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.switch > .menu::after {
    content: "";
    background: url(../images/btn_menu_open.svg) no-repeat;
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all, 0.25s, linear;
    transition: all, 0.25s, linear;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li.switch > .menu.active::after {
    background: url(../images/btn_menu_close.svg) no-repeat;
    background-size: 40px 40px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .menu-list > li:last-child {
    margin-bottom: 0;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .btn-close {
    margin: 20px -15px -1px;
  }
  .sp-site-header > .inner > .wrapper .menu-category .menu-content .btn-close a {
    display: block;
    background: #333333;
    color: #fff;
    text-align: center;
    padding: 0.8em 0;
    font-size: 12px;
    font-weight: bold;
  }
  /* -----------------------------------------------
  	2. Footer
  -------------------------------------------------- */
  .site-footer .pagetop {
    display: none;
  }
  .site-footer > .inner {
    display: none;
  }
  .site-footer .site-map {
    display: none;
  }
  .site-footer .information {
    background: #fff;
  }
  .site-footer .information > .inner {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    display: block;
  }
  .site-footer .information .link-forest {
    margin-bottom: 15px;
  }
  .site-footer .information .link-forest .logo img {
    width: 80px;
    height: auto;
  }
  .site-footer .information .link-forest .description {
    font-size: 75%;
    margin: 0 0 0 10px;
  }
  .site-footer .information .operating-company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-footer .information .operating-company .logo {
    width: 80px;
    text-align: center;
    margin-bottom: 0;
  }
  .site-footer .information .operating-company .logo img {
    max-width: 60px;
    height: auto;
  }
  .site-footer .information .operating-company .address {
    font-size: 75%;
    margin: 0 0 0 10px;
    text-align: left;
  }
  .site-footer .copyright {
    width: 100%;
    height: auto;
    padding: 1em 0.8em;
    font-size: 62.5%;
    display: block;
    text-align: center;
  }
  /* -----------------------------------------------
  	3. Content
  -------------------------------------------------- */
  section {
    zoom: 1;
    margin: 0 auto;
  }
  section:after {
    content: "";
    display: block;
    clear: both;
    overflow: auto;
  }
  section > .inner {
    max-width: 100%;
    padding: 30px 20px;
    margin: 0 auto;
  }
  section > .inner.-lower {
    padding: 15px 20px;
  }
  section > .inner.-zero {
    padding: 0 20px;
  }
  .breadcrumb {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 2;
  }
  .breadcrumb .breadcrumb-list {
    max-width: 100%;
    padding: 14px 20px;
  }
  .breadcrumb .breadcrumb-list > li {
    font-size: 75%;
    white-space: nowrap;
  }
  .breadcrumb .breadcrumb-list > li::after {
    margin: 0 6px;
  }
  .category-cover .photo {
    margin-top: 5px;
  }
  .category-cover .category-about {
    width: 100%;
    padding: 20px 0 0;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .category-cover .category-about > .text {
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .category-cover .category-about > .text .title {
    margin: 20px 0 12px;
  }
  .category-cover .category-about > .text .title .ja {
    font-size: 131.25%;
  }
  .category-cover .category-about > .text .about-info {
    padding: 20px;
  }
  .category-cover .category-about > .text .about-info .head {
    margin-bottom: 20px;
  }
  .category-cover .category-about > .text .about-info .head .logo {
    width: 120px;
    height: auto;
    margin: 0 10px 0 0;
  }
  .category-cover .category-about > .text .about-info .head .address {
    font-size: 87.5%;
    margin: 0;
  }
  .category-cover .category-about .index {
    min-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .category-cover .category-about .index .index-list, .category-cover .category-about .index .index-list-b {
    margin-bottom: 0;
  }
  .category-cover .category-about .index .index-list > li a .num, .category-cover .category-about .index .index-list-b > li a .num {
    width: 40px;
    min-height: 40px;
    font-size: 112.5%;
  }
  .category-cover .category-about .index .index-list > li a .text, .category-cover .category-about .index .index-list-b > li a .text {
    font-size: 100%;
    font-weight: bold;
    padding: 12px;
  }
  .category-cover .category-about .index .index-list > li a .text::after, .category-cover .category-about .index .index-list-b > li a .text::after {
    right: 12px;
  }
  /* -----------------------------------------------
  	7. Slider
  -------------------------------------------------- */
  .content-list li, .slider-plain li, .facility-list li {
    margin: 0;
  }
  .content-list li a .photo .caption, .slider-plain li a .photo .caption, .facility-list li a .photo .caption {
    padding-bottom: 10px;
  }
  .content-list li a .photo .caption .title, .slider-plain li a .photo .caption .title, .facility-list li a .photo .caption .title {
    font-size: 100%;
    font-weight: bold;
  }
  .content-list .slick-arrow, .slider-plain .slick-arrow, .facility-list .slick-arrow {
    display: none;
  }
  .content-list .slider-prev, .slider-plain .slider-prev, .facility-list .slider-prev {
    display: none;
  }
  .content-list .slider-next, .slider-plain .slider-next, .facility-list .slider-next {
    display: none;
  }
  .image-slider .slick-dots {
    margin: 5px -2.5px 0;
  }
  .image-slider .slick-dots > li {
    padding: 0 2.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .image-slider .slick-dots > li img {
    opacity: 0.2;
    width: 100%;
    height: auto;
  }
  .image-slider .slick-dots > li::after {
    display: none;
  }
  .image-slider .slick-dots > li.slick-active img, .image-slider .slick-dots > li:hover img {
    opacity: 1;
  }
  .image-slider .slick-dots > li.slick-active::after, .image-slider .slick-dots > li:hover::after {
    display: none;
  }
  .image-slider .slick-dots > li .caption {
    display: none;
  }
  .bnr-slider {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
  }
  .bnr-slider li {
    margin: 0;
  }
  .bnr-slider .slick-arrow {
    display: none;
  }
}
/**************************************************
	components
***************************************************/
@media (max-width: 769px) {
  /* -----------------------------------------------
  	Heading
  -------------------------------------------------- */
  .h2-a {
    margin: -8px 0 25px;
  }
  .h2-a .en {
    margin-bottom: 14px;
  }
  .h2-a .ja {
    font-size: 162.5%;
  }
  .h3-a {
    margin-bottom: 20px;
  }
  .h3-a .num {
    width: 52px;
    min-height: 52px;
    font-size: 125%;
  }
  .h3-a .title {
    padding: 10px 16px;
    font-size: 125%;
  }
  .h3-b {
    margin-bottom: 20px;
    padding: 0.4em 20px;
    font-size: 125%;
  }
  .h4-a {
    margin: 20px 0 14px;
  }
  .h4-a .text {
    font-size: 112.5%;
  }
  .h4-a .text i {
    padding: 0 10px;
  }
  .h5-a {
    font-size: 112.5%;
    margin: 0 0 10px;
  }
  .h6-a {
    font-size: 112.5%;
    font-weight: bold;
    margin: 0 0 10px;
  }
  /* -----------------------------------------------
  	Lead + Text
  -------------------------------------------------- */
  .h3-a + .section-lead, .h3-b + .section-lead {
    margin: 0 0 20px;
  }
  .h4-a + .section-lead {
    margin: 0 0 20px;
  }
  .section-lead._txtc {
    text-align: left !important;
  }
  .section-lead._txtc br {
    display: none;
  }
  /* -----------------------------------------------
  	List
  -------------------------------------------------- */
  .attention-list > li, .attention-list-b > li {
    font-size: 75%;
    text-indent: -1em;
    padding-left: 1em;
  }
  .attention-list.-gray > li, .attention-list-b.-gray > li {
    color: #999;
  }
  .attention-list.-large > li, .attention-list-b.-large > li {
    font-size: 100%;
  }
  .attention-list-b > li {
    font-size: 75%;
  }
  .attention-list-b > li > .plain {
    padding-left: 1em;
  }
  .attention-list-c > li {
    font-size: 87.5%;
    line-height: 1.6;
    text-indent: -2em;
    padding-left: 2em;
    margin-bottom: 10px;
    color: #666;
  }
  .attention-list-c > li:last-child {
    margin-bottom: 0;
  }
  /* -----------------------------------------------
  	Table
  -------------------------------------------------- */
  .table-a, .column-table- table {
    margin: 0 auto 20px;
  }
  .table-a thead, .column-table- table thead {
    margin-bottom: 0;
    padding: 0.6em 20px;
    font-size: 112.5%;
  }
  .table-a th, .table-a td, .column-table- table th, .column-table- table td {
    font-size: 87.5%;
    padding: 0.4em 1em;
    display: block;
  }
  .table-b {
    width: 100%;
    margin: 0 auto 20px;
  }
  .table-b th, .table-b td {
    padding: 0.6em 1em;
  }
  .table-scroll {
    font-size: 87.5%;
    width: 100%;
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  /* -----------------------------------------------
  	Button
  -------------------------------------------------- */
  .btn-more {
    font-size: 93.75%;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding: 1em 2em;
    margin: 0 auto;
    color: #fff;
    background: #333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .btn-more:hover {
    text-decoration: none;
    background: #a8884e;
    color: #fff;
    border-radius: 10px;
  }
  .btn-more.-contact {
    font-size: 100%;
    max-width: 100%;
    padding: 0.6em;
  }
  .btn-a {
    font-size: 93.75%;
    padding: 0.6em 0.4em;
    margin: 0 auto;
    min-width: 100%;
  }
  .btn-a.-back {
    min-width: inherit;
  }
  .btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
  .btn-wrap > a {
    margin: 0 20px;
  }
  .btn-wrap-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
  .btn-wrap-contact > a, .btn-wrap-contact > button {
    margin: 0 20px;
  }
  /* -----------------------------------------------
  	Box
  -------------------------------------------------- */
  .box-a, .box-b, .box-c, .box-d, .box-e {
    padding: 20px;
    margin-bottom: 20px;
  }
  /* -----------------------------------------------
  	Column
  -------------------------------------------------- */
  .column-2 > .column, .column-3 > .column, .column-4 > .column, .column-5 > .column {
    margin-bottom: 15px;
  }
  .column-2 > .column > .caption, .column-3 > .column > .caption, .column-4 > .column > .caption, .column-5 > .column > .caption {
    padding: 0 8px 8px;
    font-size: 87.5%;
  }
  .column-2 > .column > .caption .title, .column-3 > .column > .caption .title, .column-4 > .column > .caption .title, .column-5 > .column > .caption .title {
    font-size: 87.5%;
  }
  .column-2 > .column > .caption.-small, .column-3 > .column > .caption.-small, .column-4 > .column > .caption.-small, .column-5 > .column > .caption.-small {
    padding: 0 8px 8px;
    font-size: 87.5%;
  }
  .column-2 > .column > .caption.-small .title, .column-3 > .column > .caption.-small .title, .column-4 > .column > .caption.-small .title, .column-5 > .column > .caption.-small .title {
    font-size: 87.5%;
  }
  .column-2.column-2 > .column, .column-2.column-3 > .column, .column-2.column-4 > .column, .column-2.column-5 > .column, .column-3.column-2 > .column, .column-3.column-3 > .column, .column-3.column-4 > .column, .column-3.column-5 > .column, .column-4.column-2 > .column, .column-4.column-3 > .column, .column-4.column-4 > .column, .column-4.column-5 > .column, .column-5.column-2 > .column, .column-5.column-3 > .column, .column-5.column-4 > .column, .column-5.column-5 > .column {
    width: calc((100% - 15px) / 2);
  }
  .column-2.column-2::after, .column-2.column-3::after, .column-2.column-4::after, .column-2.column-5::after, .column-3.column-2::after, .column-3.column-3::after, .column-3.column-4::after, .column-3.column-5::after, .column-4.column-2::after, .column-4.column-3::after, .column-4.column-4::after, .column-4.column-5::after, .column-5.column-2::after, .column-5.column-3::after, .column-5.column-4::after, .column-5.column-5::after {
    content: "";
    display: block;
    width: calc((100% - 15px) / 2);
  }
  /* -----------------------------------------------
  	Image
  -------------------------------------------------- */
  .image-l .caption, .image-r .caption {
    font-size: 87.5%;
    text-align: center;
    margin-top: 0.5em;
  }
  .image-l.w300 img, .image-r.w300 img {
    max-width: 300px;
    height: auto;
  }
  .image-l {
    float: left;
    margin: 0 30px 30px 0;
  }
  /**************************************************
    Form
  ***************************************************/
  .form-step {
    font-size: 87.5%;
    margin-bottom: 10px;
  }
  .form-step > li {
    padding: 1em 0;
  }
  .form-step > li:nth-child(2) {
    width: 50%;
  }
  .form-step > li.-current::before {
    display: none;
  }
  .form-step > li.-current::after {
    display: none;
  }
  .required, .any {
    font-size: 75%;
    margin-right: 0;
  }
  .required.-top, .required.-add, .required.-second, .any.-top, .any.-add, .any.-second {
    margin-top: 0;
  }
  .form-table {
    width: 100%;
    margin-bottom: 20px;
  }
  .form-table tr, .form-table th, .form-table td {
    display: block;
  }
  .form-table th {
    font-size: 93.75%;
    border-bottom: 0;
    padding: 1em 0 0 0;
  }
  .form-table th .note {
    line-height: 1.8;
    display: block;
    margin-top: 0.5em;
  }
  .form-table th .note br {
    display: none;
  }
  .form-table td .h-memo {
    display: block;
    width: 100%;
    margin: 12px 0 0 0;
  }
  .text-field, .text-area, .select-box {
    padding: 0.5em;
  }
  .text-field.-inline, .text-field.-small, .text-area.-inline, .text-area.-small, .select-box.-inline, .select-box.-small {
    width: 35%;
    margin-right: 1em;
  }
  .text-field.-date, .text-area.-date, .select-box.-date {
    width: 35%;
    margin: 0 0.2em;
  }
  .radio-button, .check-box {
    margin: 0 0 0.5em;
  }
  .radio-button span, .check-box span {
    font-size: 93.75%;
    padding-left: 25px;
    padding-right: 10px;
  }
  .radio-button span.bottom-a, .check-box span.bottom-a {
    margin-bottom: 0;
  }
  .radio-button span.bottom-b, .check-box span.bottom-b {
    margin-bottom: 0;
  }
  .radio-button span.pd-r, .check-box span.pd-r {
    padding-right: 0;
  }
  .radio-button span em, .check-box span em {
    font-size: 12px;
  }
  .radio-button + .text-field.-inline, .radio-button + .text-field.-middle, .radio-button + .text-field.-wide, .radio-button + .text-field.-short, .check-box + .text-field.-inline, .check-box + .text-field.-middle, .check-box + .text-field.-wide, .check-box + .text-field.-short {
    width: 100%;
    margin: 0.5em 0 0;
  }
  .agreement {
    font-size: 87.5%;
    margin-bottom: 20px;
    text-align: left;
  }
  .agreement .check-box {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  #contact .column-2.column-2 > .column {
    display: block;
    width: 100%;
  }
  #contact .column-2.column-2 > .column:last-child {
    margin-top: 20px;
  }
  #contact .form-table col {
    width: 100%;
  }
  /* -----------------------------------------------
    FAQ
  -------------------------------------------------- */
  .accordion > ul > li {
    margin-bottom: 10px;
  }
  .accordion > ul > li > a {
    padding: 20px 60px 20px 50px;
    font-size: 16px;
  }
  .accordion > ul > li > a::before {
    background-size: 16px;
    width: 16px;
    height: 17px;
    top: 26px;
    left: 20px;
  }
  .accordion > ul > li .inner {
    padding: 0 60px 20px 50px;
  }
  .accordion > ul > li .inner p {
    font-size: 14px;
    line-height: 1.8;
  }
  .switch .menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .switch .menu .tag {
    font-size: 75%;
    padding: 0.2em 0.8em;
    margin: 0 0 10px 10px;
    width: 90%;
  }
  .switch .menu::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
    top: 26px;
    right: 20px;
  }
  .switch .menu.active::after {
    background-size: 16px;
  }
  .switch > ul > li.open .menu::after {
    background-size: 16px;
  }
  .switch > ul > li.open .menu.active::after {
    background-size: 16px;
  }
  .news-list .item {
    margin-bottom: 10px;
  }
  .news-list .item a, .news-list .item .wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news-list .item a .date, .news-list .item .wrap .date {
    font-size: 87.5%;
    min-width: inherit;
    margin: 0 0 8px 0;
  }
  .news-list .item a .category, .news-list .item .wrap .category {
    font-size: 62.5%;
    min-width: inherit;
    padding: 0.4em 2em 0.3em;
    margin: 0 0 8px 8px;
    line-height: 1.6;
    display: block;
  }
  .news-list .item a .title, .news-list .item .wrap .title {
    font-size: 87.5%;
    font-weight: bold;
    width: 100%;
  }
}
/**************************************************
	Top
***************************************************/
#top .hero .hero-slider li {
  outline: none;
}
#top .hero .hero-slider li img {
  width: 100%;
  height: auto;
}
#top .hero .hero-slider li .keyvisual {
  position: relative;
}
#top .hero .hero-slider li .keyvisual .caption {
  width: 100%;
  max-width: 1400px;
  padding: 0 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 40px;
}
#top .hero .hero-slider li .keyvisual .caption .text {
  font-size: 87.5%;
  background: #a8884e;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  color: #fff;
  padding: 0.4em 1em;
}
#top .hero .hero-copy {
  max-width: 1400px;
  padding: 0 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#top .hero .hero-copy .catch {
  width: 100%;
  max-width: 580px;
  padding: 30px 30px 25px;
  margin: -120px 40px 0 0;
  background: #333333;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top .hero .hero-copy .catch .inner .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 30px;
  margin-bottom: 16px;
}
#top .hero .hero-copy .catch .inner .sub-title .date {
  font-size: 87.5%;
  background: #a8884e;
  font-weight: bold;
  color: #fff;
  padding: 0.4em 1em;
  margin-right: 14px;
}
#top .hero .hero-copy .catch .inner .main-title {
  font-size: 175%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}
#top .hero .hero-copy .hero-slider-thumb {
  width: 100%;
  max-width: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#top .hero .hero-copy .hero-slider-thumb .thumbnail-item {
  width: calc((100% - 10px - 10px - 10px - 10px) / 5);
  padding: 3px;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .hero .hero-copy .hero-slider-thumb .thumbnail-item img {
  width: 100%;
  height: auto;
}
#top .hero .hero-copy .hero-slider-thumb .thumbnail-item.thumbnail-current, #top .hero .hero-copy .hero-slider-thumb .thumbnail-item:hover {
  background: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .news .heading {
  border-bottom: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#top .news .heading .title {
  font-size: 187.5%;
  font-family: gibbs, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 45px;
}
#top .news .heading .tab, #top .news .heading .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top .news .heading .tab > li, #top .news .heading .tab .search-item, #top .news .heading .search > li, #top .news .heading .search .search-item {
  margin: 0 15px;
}
#top .news .heading .tab > li a, #top .news .heading .tab > li span, #top .news .heading .tab .search-item a, #top .news .heading .tab .search-item span, #top .news .heading .search > li a, #top .news .heading .search > li span, #top .news .heading .search .search-item a, #top .news .heading .search .search-item span {
  font-size: 93.75%;
  display: block;
  color: #999;
  font-weight: bold;
  outline: none;
  cursor: pointer;
}
#top .news .heading .tab > li a:hover, #top .news .heading .tab > li a.-active, #top .news .heading .tab > li span:hover, #top .news .heading .tab > li span.-active, #top .news .heading .tab .search-item a:hover, #top .news .heading .tab .search-item a.-active, #top .news .heading .tab .search-item span:hover, #top .news .heading .tab .search-item span.-active, #top .news .heading .search > li a:hover, #top .news .heading .search > li a.-active, #top .news .heading .search > li span:hover, #top .news .heading .search > li span.-active, #top .news .heading .search .search-item a:hover, #top .news .heading .search .search-item a.-active, #top .news .heading .search .search-item span:hover, #top .news .heading .search .search-item span.-active {
  color: #a8884e;
  text-decoration: none;
}
#top .news .heading .tab > li.is-active a, #top .news .heading .tab > li.is-active span, #top .news .heading .tab .search-item.is-active a, #top .news .heading .tab .search-item.is-active span, #top .news .heading .search > li.is-active a, #top .news .heading .search > li.is-active span, #top .news .heading .search .search-item.is-active a, #top .news .heading .search .search-item.is-active span {
  color: #a8884e;
  text-decoration: none;
}
#top .news .heading .more {
  margin: 0 0 0 auto;
}
#top .news .heading .more a {
  font-size: 75%;
  display: block;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top .news .heading .more a .cls-1 {
  fill: #ccc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .news .heading .more a i {
  margin-left: 8px;
  font-style: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .news .heading .more a:hover {
  text-decoration: none;
}
#top .news .heading .more a:hover .cls-1 {
  fill: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .news .heading .more a:hover i {
  color: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .news .content .more-button {
  text-align: right;
  margin: 0;
}
#top .news .content .more-button a {
  font-size: 75%;
  display: inline-block;
  border: 1px solid #a8884e;
  border-radius: 100px;
  padding: 0.4em 1.2em 0.2em;
}
#top .news .content .more-button a:hover {
  background: #a8884e;
  color: #fff;
  text-decoration: none;
}
#top .news .unique-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#top .news .unique-area .column-left {
  width: 100%;
  max-width: 940px;
}
#top .news .unique-area .column-left .important-notices-b {
  padding: 12px 20px 10px;
  margin-bottom: 35px;
}
#top .news .unique-area .column-left .important-notices-b > p > a {
  font-size: 15px;
}
#top .news .unique-area .side-banner {
  width: 100%;
  max-width: 310px;
  margin-left: 30px;
}
#top .news .unique-area .side-banner .dayuse, #top .news .unique-area .side-banner .summer, #top .news .unique-area .side-banner .discount, #top .news .unique-area .side-banner .satellite-office, #top .news .unique-area .side-banner .beer-garden {
  background: #c97d4b;
  padding: 10px 10px 15px;
}
#top .news .unique-area .side-banner .dayuse > a, #top .news .unique-area .side-banner .summer > a, #top .news .unique-area .side-banner .discount > a, #top .news .unique-area .side-banner .satellite-office > a, #top .news .unique-area .side-banner .beer-garden > a {
  display: block;
}
#top .news .unique-area .side-banner .dayuse > a:hover, #top .news .unique-area .side-banner .summer > a:hover, #top .news .unique-area .side-banner .discount > a:hover, #top .news .unique-area .side-banner .satellite-office > a:hover, #top .news .unique-area .side-banner .beer-garden > a:hover {
  text-decoration: none;
}
#top .news .unique-area .side-banner .dayuse .title, #top .news .unique-area .side-banner .summer .title, #top .news .unique-area .side-banner .discount .title, #top .news .unique-area .side-banner .satellite-office .title, #top .news .unique-area .side-banner .beer-garden .title {
  font-size: 87.5%;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 0;
}
#top .news .unique-area .side-banner .dayuse .title .main, #top .news .unique-area .side-banner .summer .title .main, #top .news .unique-area .side-banner .discount .title .main, #top .news .unique-area .side-banner .satellite-office .title .main, #top .news .unique-area .side-banner .beer-garden .title .main {
  font-size: 106.25%;
  display: block;
  padding: 0.2em 0 0.1em;
  margin: 0.2em 0;
  background: #fff;
  border-radius: 4px;
}
#top .news .unique-area .side-banner .dayuse .title > i, #top .news .unique-area .side-banner .summer .title > i, #top .news .unique-area .side-banner .discount .title > i, #top .news .unique-area .side-banner .satellite-office .title > i, #top .news .unique-area .side-banner .beer-garden .title > i {
  position: relative;
  font-style: normal;
}
#top .news .unique-area .side-banner .dayuse .title > i::before, #top .news .unique-area .side-banner .summer .title > i::before, #top .news .unique-area .side-banner .discount .title > i::before, #top .news .unique-area .side-banner .satellite-office .title > i::before, #top .news .unique-area .side-banner .beer-garden .title > i::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffed02;
  top: -6px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
#top .news .unique-area .side-banner .dayuse .photo, #top .news .unique-area .side-banner .summer .photo, #top .news .unique-area .side-banner .discount .photo, #top .news .unique-area .side-banner .satellite-office .photo, #top .news .unique-area .side-banner .beer-garden .photo {
  margin-bottom: 10px;
}
#top .news .unique-area .side-banner .dayuse .photo img, #top .news .unique-area .side-banner .summer .photo img, #top .news .unique-area .side-banner .discount .photo img, #top .news .unique-area .side-banner .satellite-office .photo img, #top .news .unique-area .side-banner .beer-garden .photo img {
  width: 100%;
  height: auto;
}
#top .news .unique-area .side-banner .dayuse .lead, #top .news .unique-area .side-banner .summer .lead, #top .news .unique-area .side-banner .discount .lead, #top .news .unique-area .side-banner .satellite-office .lead, #top .news .unique-area .side-banner .beer-garden .lead {
  font-size: 81.25%;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  margin-bottom: 6px;
  line-height: 1.6;
}
#top .news .unique-area .side-banner .dayuse .btn-more, #top .news .unique-area .side-banner .summer .btn-more, #top .news .unique-area .side-banner .discount .btn-more, #top .news .unique-area .side-banner .satellite-office .btn-more, #top .news .unique-area .side-banner .beer-garden .btn-more {
  font-size: 75%;
  min-width: 100%;
  padding: 0.6em 1em 0.5em;
  background: #fff;
  color: #c97d4b;
  font-weight: bold;
}
#top .news .unique-area .side-banner .summer, #top .news .unique-area .side-banner .discount {
  margin-bottom: 30px;
}
#top .news .unique-area .side-banner .summer .title, #top .news .unique-area .side-banner .discount .title {
  padding: 0.4em 0;
  margin: 0 0 4px;
}
#top .news .unique-area .side-banner .discount {
  background: -webkit-gradient(linear, left top, left bottom, from(#0f67ba), to(#34b6eb));
  background: linear-gradient(to bottom, #0f67ba, #34b6eb);
  position: relative;
}
#top .news .unique-area .side-banner .discount .title {
  color: #fff;
  margin-right: -30px;
}
#top .news .unique-area .side-banner .discount .btn-more {
  background: #fff;
  color: #34b6eb;
}
#top .news .unique-area .side-banner .discount::before {
  content: "";
  background: url(../images/ico_discount_catch.svg) no-repeat;
  background-size: 80px 80px;
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  top: -10px;
  left: -20px;
  z-index: 2;
}
#top .news .unique-area .side-banner .dayuse {
  background: #fff;
  padding: 0;
}
#top .news .unique-area .side-banner .dayuse > a {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff6000), to(#f07818));
  background: linear-gradient(to bottom, #ff6000, #f07818);
  padding: 10px 10px 15px;
}
#top .news .unique-area .side-banner .dayuse > a:hover {
  opacity: 0.8;
}
#top .news .unique-area .side-banner .dayuse > a:hover .btn-more {
  background: #fff;
  color: #ff6000;
}
#top .news .unique-area .side-banner .dayuse .title {
  color: #fff;
}
#top .news .unique-area .side-banner .dayuse .title .main {
  color: #ff6000;
}
#top .news .unique-area .side-banner .dayuse .btn-more {
  border: 1px solid #fff;
  background: none;
  color: #fff;
  border-radius: 100px;
}
#top .news .unique-area .side-banner .satellite-office {
  background: #fff;
  padding: 0;
}
#top .news .unique-area .side-banner .satellite-office > a {
  background: -webkit-gradient(linear, left top, left bottom, from(#1dc047), to(#2ce518));
  background: linear-gradient(to bottom, #1dc047, #2ce518);
  padding: 15px 10px 20px;
  max-height: 212px;
}
#top .news .unique-area .side-banner .satellite-office > a:hover {
  opacity: 0.8;
}
#top .news .unique-area .side-banner .satellite-office > a:hover .btn-more {
  background: #fff;
  color: #1dc047;
}
#top .news .unique-area .side-banner .satellite-office .title .main {
  color: #1dc047;
}
#top .news .unique-area .side-banner .satellite-office .lead {
  letter-spacing: -0.01em;
}
#top .news .unique-area .side-banner .satellite-office .btn-more {
  border: 1px solid #fff;
  background: none;
  color: #fff;
  border-radius: 100px;
}
#top .news .unique-area .side-banner .beer-garden {
  background: #fff;
  padding: 0;
}
#top .news .unique-area .side-banner .beer-garden > a {
  background: -webkit-gradient(linear, left top, left bottom, from(#002374), to(#5d89bb));
  background: linear-gradient(to bottom, #002374, #5d89bb);
  padding: 15px 10px 20px;
  max-height: 212px;
}
#top .news .unique-area .side-banner .beer-garden > a:hover {
  opacity: 0.8;
}
#top .news .unique-area .side-banner .beer-garden > a:hover .btn-more {
  background: #fff;
  color: #002374;
}
#top .news .unique-area .side-banner .beer-garden .title .main {
  color: #002374;
}
#top .news .unique-area .side-banner .beer-garden .lead {
  letter-spacing: -0.01em;
}
#top .news .unique-area .side-banner .beer-garden .btn-more {
  border: 1px solid #fff;
  background: none;
  color: #fff;
  border-radius: 100px;
}
#top .news .unique-area .side-banner .bnr-puroland > a, #top .news .unique-area .side-banner .bnr-boccia > a {
  display: block;
}
@media (max-width: 769px) {
  #top .news .unique-area .side-banner .bnr-puroland > a img, #top .news .unique-area .side-banner .bnr-boccia > a img {
    width: 100%;
    height: auto;
  }
}
#top .news .unique-area .side-banner .bnr-puroland > a:hover, #top .news .unique-area .side-banner .bnr-boccia > a:hover {
  opacity: 0.6;
}
#top .news .unique-area .side-banner .important-notices {
  padding: 20px;
  margin-bottom: 0;
}
#top .news .unique-area .side-banner .important-notices .h5-a {
  font-size: 137.5%;
}
#top .news .unique-area .side-banner .important-notices .link-COVID-19 {
  font-weight: bold;
}
#top .training > .inner > .content-list, #top .lodging > .inner > .content-list, #top .meal > .inner > .content-list, #top .guide > .inner > .content-list, #top .contact > .inner > .content-list {
  margin-bottom: 30px;
}
#top .training > .inner > .content-list > .slick-dots, #top .lodging > .inner > .content-list > .slick-dots, #top .meal > .inner > .content-list > .slick-dots, #top .guide > .inner > .content-list > .slick-dots, #top .contact > .inner > .content-list > .slick-dots {
  margin-bottom: -10px;
}
#top .training > .inner > .lead, #top .lodging > .inner > .lead, #top .meal > .inner > .lead, #top .guide > .inner > .lead, #top .contact > .inner > .lead {
  font-size: 106.25%;
  text-align: center;
  font-weight: 500;
  margin: 0 0 25px;
  line-height: 1.8;
}
#top .about {
  background: #fafafa;
}
#top .about .catch {
  font-size: 100%;
  text-align: center;
  margin: -10px 0 20px;
}
#top .about .catch.-last {
  margin-bottom: 30px;
}
#top .about .facility-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 -10px;
}
@media (max-width: 769px) {
  #top .about .facility-group {
    display: block;
    margin: 0 0 -20px;
  }
}
#top .about .facility-group .facility {
  width: 33.33%;
  padding: 0 10px;
}
@media (max-width: 769px) {
  #top .about .facility-group .facility {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
#top .about .facility-group .facility .facility-inner {
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.05);
  border-top: 1px solid #a8884e;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#top .about .facility-group .facility .facility-inner > .title {
  font-size: 112.5%;
  text-align: center;
  font-weight: bold;
  margin: -5px 0 15px;
  color: #a8884e;
}
@media (max-width: 769px) {
  #top .about .facility-group .facility .facility-inner > .title {
    margin-bottom: 10px;
  }
}
#top .about .facility-group .facility .unit {
  position: relative;
  margin: 0;
}
#top .about .facility-group .facility .unit .name {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.3em;
  font-size: 75%;
  font-weight: bold;
  z-index: 2;
}
#top .about .facility-group .facility .description {
  font-size: 87.5%;
  margin: 5px 0 15px;
}
#top .about .facility-group .facility ._txtc._zero {
  margin-top: auto;
}
#top .about .facility-group .facility .btn-a {
  font-size: 87.5%;
  width: 100%;
  border: 1px solid #a8884e;
  color: #a8884e;
}
#top .about .facility-group .facility .btn-a:hover {
  color: #fff;
}
@media (max-width: 769px) {
  #top .about .movie iframe {
    width: 100%;
    height: auto;
  }
}
#top .training {
  background: #fafafa;
}
#top .meal {
  background: #fafafa;
}
#top .guide .catch {
  font-size: 100%;
  text-align: center;
  margin: -10px 0 20px;
}
#top .guide .catch.-last {
  margin-bottom: 30px;
}
#top .guide .how-to-use {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#top .guide .how-to-use > .column {
  width: calc((100% - 30px) / 2);
  margin-bottom: 30px;
  position: relative;
}
#top .guide .how-to-use > .column .case {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.3em;
  font-size: 75%;
  font-weight: bold;
}
#top .guide .how-to-use > .column .photo img {
  max-width: 100%;
}
#top .guide .how-to-use > .column .photo .caption {
  font-size: 100%;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
#top .guide .how-to-use > .column .photo .caption .place, #top .guide .how-to-use > .column .photo .caption .title {
  color: #fff;
  padding: 0.5em 1em 0.4em;
}
#top .guide .how-to-use > .column .photo .caption .place {
  background: #a8884e;
}
#top .guide .how-to-use > .column .photo .caption .title {
  background: #333333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#top .guide .how-to-use > .column .text {
  font-size: 100%;
  font-weight: 500;
  background: #fafafa;
  padding: 20px 30px;
  line-height: 2;
}
#top .guide .how-to-use > .column::before {
  content: "";
}
#top .guide .how-to-use::after {
  content: "";
  display: block;
  width: calc((100% - 30px) / 2);
}
#top .guide .h3-b {
  margin: 40px 0 30px;
}
#top .guide .use-case li a {
  display: block;
  color: #333;
  position: relative;
}
#top .guide .use-case li a:hover {
  text-decoration: none;
  color: #a8884e;
  opacity: 1;
}
#top .guide .use-case li a:hover .thumbnail img {
  -webkit-transform: scale(1.2, 1.2);
      -ms-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .guide .use-case li a:hover .more {
  border-color: #a8884e;
  background: #a8884e;
  color: #fff;
}
#top .guide .use-case .thumbnail {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
#top .guide .use-case .thumbnail.-new::after {
  content: "";
  background: url(../images/icon/icon_new.svg) no-repeat;
  background-size: 60px 60px;
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
#top .guide .use-case .thumbnail img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top .guide .use-case .thumbnail .label-list {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 769px) {
  #top .guide .use-case .thumbnail .label-list {
    top: 10px;
    left: 10px;
  }
}
#top .guide .use-case .thumbnail .label-list > .item {
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.3em;
  font-size: 75%;
  font-weight: bold;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 10px 0 0 !important;
  display: block !important;
}
#top .guide .use-case .thumbnail .label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.3em;
  font-size: 75%;
  font-weight: bold;
  z-index: 2;
}
#top .guide .use-case .body .text {
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#top .guide .use-case .body .more {
  font-size: 75%;
  display: block;
}
#top .guide .use-case.-other .body .caption {
  font-size: 75%;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: -20px;
}
#top .guide .use-case.-other .body .caption .place, #top .guide .use-case.-other .body .caption .title {
  color: #fff;
  padding: 0.5em 1em 0.4em;
}
#top .guide .use-case.-other .body .caption .place {
  background: #a8884e;
}
#top .guide .use-case.-other .body .caption .title {
  background: #333333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#top .guide .use-case.-other .body .text {
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: inline-axis;
}
#top .guide .slick-dots {
  margin-top: 20px;
}
@media (max-width: 769px) {
  #top .hero .hero-slider li .keyvisual .caption {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    display: block;
    position: relative;
    bottom: 0;
  }
  #top .hero .hero-slider li .keyvisual .caption .text {
    width: 100%;
    display: block;
    text-align: center;
  }
  #top .hero .hero-copy {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #top .hero .hero-copy .catch {
    width: 100%;
    max-width: 100%;
    padding: 15px 10px;
    margin: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #top .hero .hero-copy .catch .inner .sub-title {
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  #top .hero .hero-copy .catch .inner .sub-title .date {
    font-size: 75%;
    padding: 0.4em 0.8em;
    margin-right: 10px;
  }
  #top .hero .hero-copy .catch .inner .main-title {
    font-size: 125%;
    letter-spacing: 0;
  }
  #top .hero .hero-copy .hero-slider-thumb {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 10px 0;
  }
  #top .hero .hero-copy .hero-slider-thumb .thumbnail-item {
    width: calc((100% - 5px - 5px - 5px - 5px) / 5);
    padding: 2px;
  }
  #top .news .heading {
    display: block;
    line-height: 1.6;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #top .news .heading .title {
    font-size: 175%;
    margin: 0 0 10px;
    text-align: center;
  }
  #top .news .heading .tab {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #top .news .heading .tab > li {
    margin: 0 10px;
  }
  #top .news .heading .tab > li a {
    font-size: 75%;
  }
  #top .news .heading .more {
    display: none;
  }
  #top .news .unique-area {
    display: block;
    margin-bottom: 0;
  }
  #top .news .unique-area .important-notices {
    margin-right: 0;
  }
  #top .news .unique-area .side-banner {
    width: 100%;
    max-width: 100%;
    margin: 20px 0 0 0;
  }
  #top .news .unique-area .side-banner .dayuse .title, #top .news .unique-area .side-banner .summer .title, #top .news .unique-area .side-banner .satellite-office .title {
    font-size: 100%;
    padding: 0.6em;
  }
  #top .news .unique-area .side-banner .dayuse .photo, #top .news .unique-area .side-banner .summer .photo, #top .news .unique-area .side-banner .satellite-office .photo {
    margin-bottom: 10px;
  }
  #top .news .unique-area .side-banner .dayuse .btn-more.-contact, #top .news .unique-area .side-banner .summer .btn-more.-contact, #top .news .unique-area .side-banner .satellite-office .btn-more.-contact {
    font-size: 87.5%;
    padding: 0.6em 1em;
  }
  #top .news .unique-area .side-banner .discount .title {
    margin: 0 auto 4px;
  }
  #top .news .unique-area .side-banner .discount::before {
    top: -15px;
    left: -10px;
  }
  #top .news .unique-area .side-banner .summer {
    margin-bottom: 20px;
  }
  #top .training > .inner > .content-list, #top .lodging > .inner > .content-list, #top .meal > .inner > .content-list, #top .guide > .inner > .content-list, #top .contact > .inner > .content-list {
    margin-bottom: 20px;
  }
  #top .training > .inner > .lead, #top .lodging > .inner > .lead, #top .meal > .inner > .lead, #top .guide > .inner > .lead, #top .contact > .inner > .lead {
    font-size: 100%;
    text-align: left;
    margin: 0 0 15px;
  }
  #top .training > .inner > .lead br, #top .lodging > .inner > .lead br, #top .meal > .inner > .lead br, #top .guide > .inner > .lead br, #top .contact > .inner > .lead br {
    display: none;
  }
  #top .guide .catch {
    font-size: 100%;
    text-align: left;
    margin: -10px 0 20px;
  }
  #top .guide .catch br {
    display: none;
  }
  #top .guide .catch.-last {
    margin-bottom: 20px;
  }
  #top .guide .how-to-use {
    display: block;
  }
  #top .guide .how-to-use > .column {
    width: 100%;
    margin: 20px 0 0;
  }
  #top .guide .how-to-use > .column .case {
    top: 10px;
    left: 10px;
  }
  #top .guide .how-to-use > .column .photo .caption {
    font-size: 93.75%;
  }
  #top .guide .how-to-use > .column .text {
    font-size: 93.75%;
    padding: 15px 20px;
    line-height: 1.8;
  }
  #top .guide .how-to-use > .column:first-child {
    margin-top: 0;
  }
  #top .guide .how-to-use::after {
    display: none;
  }
}

/**************************************************
	Training
***************************************************/
#training .category-title {
  background: url(../training/images/bg_training.jpg) no-repeat center center;
  background-size: cover;
}
#training .training-area .photo {
  margin-bottom: 40px;
  text-align: center;
}
#training .training-area .photo img {
  width: 100%;
  height: auto;
}
#training .training-area .tab-training {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 30px;
}
#training .training-area .tab-training > li {
  width: calc((100% - 30px) / 2);
  text-align: center;
}
#training .training-area .tab-training > li a {
  font-size: 112.5%;
  font-weight: bold;
  width: 100%;
  display: block;
  background: #333333;
  color: #fff;
  padding: 0.6em 1em;
  position: relative;
  border-radius: 6px;
}
#training .training-area .tab-training > li a:hover, #training .training-area .tab-training > li a.-active {
  background: #a8884e;
  text-decoration: none;
}
#training .training-area .tab-training > li a:hover::after, #training .training-area .tab-training > li a.-active::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #a8884e transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: calc((100% - 20px) / 2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#training .training-area .tab-training::after {
  content: "";
  display: block;
  width: calc((100% - 30px) / 2);
}
@media (max-width: 769px) {
  #training .training-area .photo {
    margin-bottom: 20px;
  }
  #training .training-area .tab-training {
    margin-bottom: 20px;
  }
  #training .training-area .tab-training > li {
    width: calc((100% - 10px) / 2);
  }
  #training .training-area .tab-training > li a {
    font-size: 100%;
    padding: 0.4em 1em;
  }
  #training .training-area .tab-training::after {
    width: calc((100% - 10px) / 2);
  }
}

/**************************************************
	Lodging
***************************************************/
#lodging .category-title {
  background: url(../lodging/images/bg_lodging.jpg) no-repeat center center;
  background-size: cover;
}
#lodging .lodging-area {
  /*全体*/
  /*ボタン装飾*/
  /*アイコンを表示*/
  /*ボタンホバー時*/
  /*アイコンを切り替え*/
  /*チェックは見えなくする*/
  /*中身を非表示にしておく*/
  /*クリックで中身表示*/
}
#lodging .lodging-area .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 -10px -10px;
}
#lodging .lodging-area .item-list > .item {
  width: calc((100% - 10px - 10px - 10px - 10px - 10px - 10px - 10px - 10px) / 8);
  border: 1px solid #e5e5e5;
  text-align: center;
  padding: 18px 6px 10px;
  margin: 0 0 10px 10px;
}
#lodging .lodging-area .item-list > .item .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
#lodging .lodging-area .item-list > .item .icon img {
  width: 100%;
  max-width: 50px;
  height: auto;
  max-height: 50px;
}
#lodging .lodging-area .item-list > .item .text {
  font-size: 75%;
  font-weight: bold;
  color: #a8884e;
  display: block;
  margin-top: 0.5em;
  line-height: 1.4;
}
#lodging .lodging-area .item-list > .item .text.-fonts {
  letter-spacing: -0.15em;
}
#lodging .lodging-area .hidden_box {
  padding: 0;
}
#lodging .lodging-area .hidden_box label {
  padding: 15px 40px;
  font-weight: bold;
  background: #fafafa;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#lodging .lodging-area .hidden_box label:after {
  display: inline-block;
  content: "\f078";
  font-family: "FontAwesome";
  color: #a8884e;
}
#lodging .lodging-area .hidden_box label:hover {
  background: #e5e5e5;
}
#lodging .lodging-area .hidden_box input:checked ~ label:after {
  content: "\f00d";
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  color: #333333;
}
#lodging .lodging-area .hidden_box input:checked ~ label {
  background: #e5e5e5;
}
#lodging .lodging-area .hidden_box input {
  display: none;
}
#lodging .lodging-area .hidden_box .hidden_show {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}
#lodging .lodging-area .hidden_box input:checked ~ .hidden_show {
  padding: 10px 0;
  height: auto;
  opacity: 1;
}
#lodging .lodging-area .text-area {
  height: 600px;
  padding: 60px;
  overflow: scroll;
  border: solid 1px #e5e5e5;
}
@media (max-width: 769px) {
  #lodging .lodging-area {
    /*ボタン装飾*/
  }
  #lodging .lodging-area .item-list > .item {
    width: calc((100% - 10px - 10px - 10px - 10px) / 3);
    padding: 18px 6px 8px;
  }
  #lodging .lodging-area .item-list > .item .icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
  #lodging .lodging-area .item-list > .item .icon img {
    max-width: 40px;
    max-height: 40px;
  }
  #lodging .lodging-area .item-list > .item .text {
    font-size: 62.5%;
    margin-top: 10px;
  }
  #lodging .lodging-area .hidden_box label {
    padding: 15px;
    width: 100%;
  }
  #lodging .lodging-area .text-area {
    font-size: 75%;
    height: 300px;
    padding: 20px;
  }
  #lodging .lodging-area .details {
    display: block;
  }
  #lodging .lodging-area .details > .column {
    width: 100%;
  }
  #lodging .lodging-area .details > .column.text {
    margin-top: 20px;
  }
  #lodging .lodging-area .column-3.box-d._zero.-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #lodging .lodging-area .column-3.box-d._zero.-flex > .column {
    width: calc((100% - 15px) / 2);
  }
  #lodging .lodging-area .column-3.box-d._zero.-flex > .column.text {
    width: 100%;
  }
  #lodging .lodging-area .column-3.box-d._zero.-flex > .column.text .h5-a {
    margin: 10px 0 0;
  }
  #lodging .lodging-area .bnt-notice-list > .column {
    width: calc((100% - 10px - 10px) / 3);
  }
  #lodging .lodging-area .bnt-notice-list > .column div {
    text-align: left;
  }
  #lodging .lodging-area .bnt-notice-list > .column div br {
    display: none;
  }
  #lodging .lodging-area .universal-room {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #lodging .lodging-area .universal-room > .column {
    width: 100%;
    margin-top: 20px;
  }
  #lodging .lodging-area .universal-room > .column:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #lodging .lodging-area .universal-room > .column:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #lodging .lodging-area .universal-room > .column:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
  #lodging .lodging-area .deluxe-single-room {
    display: block;
  }
  #lodging .lodging-area .deluxe-single-room > .column {
    width: 100%;
    margin-top: 20px;
  }
}

/**************************************************
	Meal
***************************************************/
#meal .category-title {
  background: url(../meal/images/bg_meal.jpg) no-repeat center center;
  background-size: cover;
}
#meal .meal-area .tab-meal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 30px;
}
#meal .meal-area .tab-meal > li {
  width: calc((100% - 30px - 30px) / 3);
  text-align: center;
}
#meal .meal-area .tab-meal > li a {
  font-size: 112.5%;
  font-weight: bold;
  width: 100%;
  display: block;
  background: #333333;
  color: #fff;
  padding: 0.6em 1em;
  position: relative;
}
#meal .meal-area .tab-meal > li a:hover, #meal .meal-area .tab-meal > li a.-active {
  background: #a8884e;
  text-decoration: none;
}
#meal .meal-area .tab-meal > li a:hover::after, #meal .meal-area .tab-meal > li a.-active::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #a8884e transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: calc((100% - 20px) / 2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#meal .meal-area .tab-meal::after {
  content: "";
  display: block;
  width: calc((100% - 30px - 30px) / 3);
}
#meal .meal-area .photo {
  margin-bottom: 40px;
  text-align: center;
}
#meal .meal-area .photo img {
  width: 100%;
  height: auto;
}
@media (max-width: 769px) {
  #meal .meal-area .photo {
    margin-bottom: 20px;
  }
  #meal .meal-area .meal-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #meal .meal-area .meal-list > .column {
    width: 100%;
  }
}

/**************************************************
	Guide
***************************************************/
#guide .category-title {
  background: url(../guide/images/bg_guide.jpg) no-repeat center center;
  background-size: cover;
}
#guide .guide-area {
  /*全体*/
  /*ボタン装飾*/
  /*アイコンを表示*/
  /*ボタンホバー時*/
  /*アイコンを切り替え*/
  /*チェックは見えなくする*/
  /*中身を非表示にしておく*/
  /*クリックで中身表示*/
}
#guide .guide-area .hidden_box {
  padding: 0;
}
#guide .guide-area .hidden_box label {
  padding: 15px 40px;
  font-weight: bold;
  background: #fafafa;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#guide .guide-area .hidden_box label:after {
  display: inline-block;
  content: "\f078";
  font-family: "FontAwesome";
  color: #a8884e;
}
#guide .guide-area .hidden_box label:hover {
  background: #e5e5e5;
}
#guide .guide-area .hidden_box input:checked ~ label:after {
  content: "\f00d";
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  color: #333333;
}
#guide .guide-area .hidden_box input:checked ~ label {
  background: #e5e5e5;
}
#guide .guide-area .hidden_box input {
  display: none;
}
#guide .guide-area .hidden_box .hidden_show {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}
#guide .guide-area .hidden_box input:checked ~ .hidden_show {
  padding: 10px 0;
  height: auto;
  opacity: 1;
}
#guide .guide-area .text-area {
  height: 600px;
  padding: 60px;
  overflow: scroll;
  border: solid 1px #e5e5e5;
}
#guide .guide-area .text-area .indent-list-a > li {
  text-indent: -2em;
  padding-left: 2em;
}
#guide .guide-area .text-area .indent-list-b > li {
  text-indent: -4em;
  padding-left: 4em;
}
#guide .guide-area .text-area .indent-list-b > li > .plain {
  text-indent: 0;
  padding-left: 0;
}
#guide .guide-area .text-area .indent-list-c > li {
  text-indent: -5em;
  padding-left: 5em;
}
#guide .guide-area .text-area .indent-list-c > li > .plain {
  text-indent: 0;
  padding-left: 0;
}
#guide .guide-area .text-area .plain > li > .indent-list-a {
  margin-left: 0;
}
@media (max-width: 769px) {
  #guide .guide-area {
    /*ボタン装飾*/
  }
  #guide .guide-area .hidden_box label {
    padding: 15px;
  }
  #guide .guide-area .text-area {
    height: 480px;
    padding: 20px;
    font-size: 87.5%;
  }
  #guide .guide-area .text-area .indent-list-a > li {
    text-indent: -1.3em;
    padding-left: 1.3em;
  }
  #guide .guide-area .type-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #guide .guide-area .type-list > .column {
    width: 100%;
  }
}

/**************************************************
	Floor
***************************************************/
#floor .category-title {
  background: url(../guide/images/bg_guide.jpg) no-repeat center center;
  background-size: cover;
}
#floor .floor-list > li {
  margin-bottom: 1px;
}
#floor .floor-list > li a {
  font-size: 87.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
#floor .floor-list > li a .floor, #floor .floor-list > li a .text {
  padding: 0.8em 1.8em;
}
#floor .floor-list > li a .floor {
  background: #a8884e;
}
#floor .floor-list > li a .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #333333;
}
#floor .floor-list > li a:hover {
  text-decoration: none;
}
#floor .floor-list > li a:hover .text {
  background: #a8884e;
}
#floor .floor-list > li:last-child {
  margin-bottom: 0;
}
#floor .floor-area .floor-map {
  border: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 80px 40px 40px;
}
#floor .floor-area .floor-map .caption {
  width: 100%;
  font-size: 81.25%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#floor .floor-area .floor-map .caption .floor, #floor .floor-area .floor-map .caption .text {
  padding: 0.5em 2em 0.4em;
}
#floor .floor-area .floor-map .caption .floor {
  background: #a8884e;
}
#floor .floor-area .floor-map .caption .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #333333;
}
#floor .floor-area .movie {
  text-align: center;
}
#floor .floor-area .movie iframe {
  width: 853px;
  height: 480px;
  padding: 0;
  margin: 0 auto;
}
#floor .floor-map-wrap > .column > a {
  display: block;
}
@media (max-width: 769px) {
  #floor .floor-list > li a {
    font-size: 87.5%;
  }
  #floor .floor-list > li a .floor, #floor .floor-list > li a .text {
    padding: 0.8em 1em;
  }
  #floor .floor-area .floor-map {
    padding: 50px 20px 20px;
  }
  #floor .floor-area .floor-map .caption {
    font-size: 75%;
  }
  #floor .floor-area .floor-map .caption .floor, #floor .floor-area .floor-map .caption .text {
    padding: 0.5em 0.6em 0.4em;
  }
  #floor .floor-area .movie {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0px;
    position: relative;
  }
  #floor .floor-area .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #floor .floor-map-wrap {
    display: block;
  }
  #floor .floor-map-wrap > .column {
    width: 100%;
  }
}
#floor .concept-block {
  background: #fff url(../images/bg_concept2.jpg) no-repeat top center;
  background-size: contain;
  padding: 40px 40px 0;
}
#floor .concept-block .concept-slider li img {
  width: 100%;
  height: auto;
}
#floor .concept-block .concept-slider .slick-dots {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}
#floor .concept-block .concept-slider .slick-dots li {
  display: inline;
  margin: 0;
}
#floor .concept-block .concept-slider .slick-dots li button {
  color: transparent;
  background: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  width: 20px;
  height: 20px;
  outline: none;
}
#floor .concept-block .concept-slider .slick-dots li button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #e5e5e5;
  border-radius: 50%;
}
#floor .concept-block .concept-slider .slick-dots li.slick-active button::before {
  background: #a8884e;
}
#floor .concept-block .catch {
  font-size: 187.5%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 30px 0 20px;
  text-align: center;
}
#floor .concept-block .lead {
  font-size: 100%;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media (max-width: 769px) {
  #floor .concept-block {
    background-size: 180%;
    padding: 20px 20px 0;
  }
  #floor .concept-block .catch {
    font-size: 112.5%;
    margin: 10px 0;
    letter-spacing: 0;
  }
  #floor .concept-block .lead {
    font-size: 93.75%;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 10px;
  }
  #floor .concept-block .lead br {
    display: none;
  }
}

/**************************************************
	Contact
***************************************************/
#contact .category-title {
  background: url(../contact/images/bg_contact.jpg) no-repeat center center;
  background-size: cover;
}
#contact .attention-list-b > li > .plain {
  text-indent: 0;
  padding-left: 0;
}

#top .contact, #training .contact, #lodging .contact, #meal .contact, #guide .contact, #floor .contact, #access .contact, #contact .contact, #faq .contact, #privacy-policy .contact, #cookie-policy .contact, #news .contact, #case .contact, #case2 .contact, #case3 .contact, #faq2 .contact {
  background: #fafafa;
  margin-top: 30px;
}
#top .contact > .inner > .lead, #training .contact > .inner > .lead, #lodging .contact > .inner > .lead, #meal .contact > .inner > .lead, #guide .contact > .inner > .lead, #floor .contact > .inner > .lead, #access .contact > .inner > .lead, #contact .contact > .inner > .lead, #faq .contact > .inner > .lead, #privacy-policy .contact > .inner > .lead, #cookie-policy .contact > .inner > .lead, #news .contact > .inner > .lead, #case .contact > .inner > .lead, #case2 .contact > .inner > .lead, #case3 .contact > .inner > .lead, #faq2 .contact > .inner > .lead {
  font-size: 112.5%;
  text-align: center;
  font-weight: 500;
  margin: 40px 0;
  line-height: 2;
}
#top .contact .information, #training .contact .information, #lodging .contact .information, #meal .contact .information, #guide .contact .information, #floor .contact .information, #access .contact .information, #contact .contact .information, #faq .contact .information, #privacy-policy .contact .information, #cookie-policy .contact .information, #news .contact .information, #case .contact .information, #case2 .contact .information, #case3 .contact .information, #faq2 .contact .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: -40px;
}
#top .contact .information > .card, #training .contact .information > .card, #lodging .contact .information > .card, #meal .contact .information > .card, #guide .contact .information > .card, #floor .contact .information > .card, #access .contact .information > .card, #contact .contact .information > .card, #faq .contact .information > .card, #privacy-policy .contact .information > .card, #cookie-policy .contact .information > .card, #news .contact .information > .card, #case .contact .information > .card, #case2 .contact .information > .card, #case3 .contact .information > .card, #faq2 .contact .information > .card {
  width: calc((100% - 40px) / 2);
  margin-bottom: 40px;
  background: #fff;
}
#top .contact .information > .card > .inner, #training .contact .information > .card > .inner, #lodging .contact .information > .card > .inner, #meal .contact .information > .card > .inner, #guide .contact .information > .card > .inner, #floor .contact .information > .card > .inner, #access .contact .information > .card > .inner, #contact .contact .information > .card > .inner, #faq .contact .information > .card > .inner, #privacy-policy .contact .information > .card > .inner, #cookie-policy .contact .information > .card > .inner, #news .contact .information > .card > .inner, #case .contact .information > .card > .inner, #case2 .contact .information > .card > .inner, #case3 .contact .information > .card > .inner, #faq2 .contact .information > .card > .inner {
  padding: 30px 40px;
  background: #fff;
}
#top .contact .information > .card .title, #training .contact .information > .card .title, #lodging .contact .information > .card .title, #meal .contact .information > .card .title, #guide .contact .information > .card .title, #floor .contact .information > .card .title, #access .contact .information > .card .title, #contact .contact .information > .card .title, #faq .contact .information > .card .title, #privacy-policy .contact .information > .card .title, #cookie-policy .contact .information > .card .title, #news .contact .information > .card .title, #case .contact .information > .card .title, #case2 .contact .information > .card .title, #case3 .contact .information > .card .title, #faq2 .contact .information > .card .title {
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.5em 1em 0.4em;
  background: #333333;
}
#top .contact .information > .card .attention, #training .contact .information > .card .attention, #lodging .contact .information > .card .attention, #meal .contact .information > .card .attention, #guide .contact .information > .card .attention, #floor .contact .information > .card .attention, #access .contact .information > .card .attention, #contact .contact .information > .card .attention, #faq .contact .information > .card .attention, #privacy-policy .contact .information > .card .attention, #cookie-policy .contact .information > .card .attention, #news .contact .information > .card .attention, #case .contact .information > .card .attention, #case2 .contact .information > .card .attention, #case3 .contact .information > .card .attention, #faq2 .contact .information > .card .attention {
  font-size: 87.5%;
  font-weight: bold;
  text-align: center;
}
#top .contact .information > .card .column-2 .column, #training .contact .information > .card .column-2 .column, #lodging .contact .information > .card .column-2 .column, #meal .contact .information > .card .column-2 .column, #guide .contact .information > .card .column-2 .column, #floor .contact .information > .card .column-2 .column, #access .contact .information > .card .column-2 .column, #contact .contact .information > .card .column-2 .column, #faq .contact .information > .card .column-2 .column, #privacy-policy .contact .information > .card .column-2 .column, #cookie-policy .contact .information > .card .column-2 .column, #news .contact .information > .card .column-2 .column, #case .contact .information > .card .column-2 .column, #case2 .contact .information > .card .column-2 .column, #case3 .contact .information > .card .column-2 .column, #faq2 .contact .information > .card .column-2 .column {
  width: calc((100% - 15px) / 2);
}
#top .contact .information > .card .btn-more, #training .contact .information > .card .btn-more, #lodging .contact .information > .card .btn-more, #meal .contact .information > .card .btn-more, #guide .contact .information > .card .btn-more, #floor .contact .information > .card .btn-more, #access .contact .information > .card .btn-more, #contact .contact .information > .card .btn-more, #faq .contact .information > .card .btn-more, #privacy-policy .contact .information > .card .btn-more, #cookie-policy .contact .information > .card .btn-more, #news .contact .information > .card .btn-more, #case .contact .information > .card .btn-more, #case2 .contact .information > .card .btn-more, #case3 .contact .information > .card .btn-more, #faq2 .contact .information > .card .btn-more {
  font-size: 112.5%;
  max-width: 100%;
  border-radius: 100px;
  background: #c97d4b;
  padding: 0.6em 1em;
  border: 1px solid #c97d4b;
}
#top .contact .information > .card .btn-more:hover, #training .contact .information > .card .btn-more:hover, #lodging .contact .information > .card .btn-more:hover, #meal .contact .information > .card .btn-more:hover, #guide .contact .information > .card .btn-more:hover, #floor .contact .information > .card .btn-more:hover, #access .contact .information > .card .btn-more:hover, #contact .contact .information > .card .btn-more:hover, #faq .contact .information > .card .btn-more:hover, #privacy-policy .contact .information > .card .btn-more:hover, #cookie-policy .contact .information > .card .btn-more:hover, #news .contact .information > .card .btn-more:hover, #case .contact .information > .card .btn-more:hover, #case2 .contact .information > .card .btn-more:hover, #case3 .contact .information > .card .btn-more:hover, #faq2 .contact .information > .card .btn-more:hover {
  color: #c97d4b;
  background: #fff;
}
#top .contact .information > .card .phone-guidance, #training .contact .information > .card .phone-guidance, #lodging .contact .information > .card .phone-guidance, #meal .contact .information > .card .phone-guidance, #guide .contact .information > .card .phone-guidance, #floor .contact .information > .card .phone-guidance, #access .contact .information > .card .phone-guidance, #contact .contact .information > .card .phone-guidance, #faq .contact .information > .card .phone-guidance, #privacy-policy .contact .information > .card .phone-guidance, #cookie-policy .contact .information > .card .phone-guidance, #news .contact .information > .card .phone-guidance, #case .contact .information > .card .phone-guidance, #case2 .contact .information > .card .phone-guidance, #case3 .contact .information > .card .phone-guidance, #faq2 .contact .information > .card .phone-guidance {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  margin: 30px 0;
}
#top .contact .information > .card .phone-guidance .about, #training .contact .information > .card .phone-guidance .about, #lodging .contact .information > .card .phone-guidance .about, #meal .contact .information > .card .phone-guidance .about, #guide .contact .information > .card .phone-guidance .about, #floor .contact .information > .card .phone-guidance .about, #access .contact .information > .card .phone-guidance .about, #contact .contact .information > .card .phone-guidance .about, #faq .contact .information > .card .phone-guidance .about, #privacy-policy .contact .information > .card .phone-guidance .about, #cookie-policy .contact .information > .card .phone-guidance .about, #news .contact .information > .card .phone-guidance .about, #case .contact .information > .card .phone-guidance .about, #case2 .contact .information > .card .phone-guidance .about, #case3 .contact .information > .card .phone-guidance .about, #faq2 .contact .information > .card .phone-guidance .about {
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin-right: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#top .contact .information > .card .phone-guidance .about .name, #training .contact .information > .card .phone-guidance .about .name, #lodging .contact .information > .card .phone-guidance .about .name, #meal .contact .information > .card .phone-guidance .about .name, #guide .contact .information > .card .phone-guidance .about .name, #floor .contact .information > .card .phone-guidance .about .name, #access .contact .information > .card .phone-guidance .about .name, #contact .contact .information > .card .phone-guidance .about .name, #faq .contact .information > .card .phone-guidance .about .name, #privacy-policy .contact .information > .card .phone-guidance .about .name, #cookie-policy .contact .information > .card .phone-guidance .about .name, #news .contact .information > .card .phone-guidance .about .name, #case .contact .information > .card .phone-guidance .about .name, #case2 .contact .information > .card .phone-guidance .about .name, #case3 .contact .information > .card .phone-guidance .about .name, #faq2 .contact .information > .card .phone-guidance .about .name {
  font-size: 87.5%;
  font-weight: bold;
  text-align: center;
}
#top .contact .information > .card .phone-guidance .phone, #training .contact .information > .card .phone-guidance .phone, #lodging .contact .information > .card .phone-guidance .phone, #meal .contact .information > .card .phone-guidance .phone, #guide .contact .information > .card .phone-guidance .phone, #floor .contact .information > .card .phone-guidance .phone, #access .contact .information > .card .phone-guidance .phone, #contact .contact .information > .card .phone-guidance .phone, #faq .contact .information > .card .phone-guidance .phone, #privacy-policy .contact .information > .card .phone-guidance .phone, #cookie-policy .contact .information > .card .phone-guidance .phone, #news .contact .information > .card .phone-guidance .phone, #case .contact .information > .card .phone-guidance .phone, #case2 .contact .information > .card .phone-guidance .phone, #case3 .contact .information > .card .phone-guidance .phone, #faq2 .contact .information > .card .phone-guidance .phone {
  position: relative;
  padding-left: 50px;
}
#top .contact .information > .card .phone-guidance .phone .tel, #top .contact .information > .card .phone-guidance .phone .animation, #training .contact .information > .card .phone-guidance .phone .tel, #training .contact .information > .card .phone-guidance .phone .animation, #lodging .contact .information > .card .phone-guidance .phone .tel, #lodging .contact .information > .card .phone-guidance .phone .animation, #meal .contact .information > .card .phone-guidance .phone .tel, #meal .contact .information > .card .phone-guidance .phone .animation, #guide .contact .information > .card .phone-guidance .phone .tel, #guide .contact .information > .card .phone-guidance .phone .animation, #floor .contact .information > .card .phone-guidance .phone .tel, #floor .contact .information > .card .phone-guidance .phone .animation, #access .contact .information > .card .phone-guidance .phone .tel, #access .contact .information > .card .phone-guidance .phone .animation, #contact .contact .information > .card .phone-guidance .phone .tel, #contact .contact .information > .card .phone-guidance .phone .animation, #faq .contact .information > .card .phone-guidance .phone .tel, #faq .contact .information > .card .phone-guidance .phone .animation, #privacy-policy .contact .information > .card .phone-guidance .phone .tel, #privacy-policy .contact .information > .card .phone-guidance .phone .animation, #cookie-policy .contact .information > .card .phone-guidance .phone .tel, #cookie-policy .contact .information > .card .phone-guidance .phone .animation, #news .contact .information > .card .phone-guidance .phone .tel, #news .contact .information > .card .phone-guidance .phone .animation, #case .contact .information > .card .phone-guidance .phone .tel, #case .contact .information > .card .phone-guidance .phone .animation, #case2 .contact .information > .card .phone-guidance .phone .tel, #case2 .contact .information > .card .phone-guidance .phone .animation, #case3 .contact .information > .card .phone-guidance .phone .tel, #case3 .contact .information > .card .phone-guidance .phone .animation, #faq2 .contact .information > .card .phone-guidance .phone .tel, #faq2 .contact .information > .card .phone-guidance .phone .animation {
  display: block;
}
#top .contact .information > .card .phone-guidance .phone .tel, #training .contact .information > .card .phone-guidance .phone .tel, #lodging .contact .information > .card .phone-guidance .phone .tel, #meal .contact .information > .card .phone-guidance .phone .tel, #guide .contact .information > .card .phone-guidance .phone .tel, #floor .contact .information > .card .phone-guidance .phone .tel, #access .contact .information > .card .phone-guidance .phone .tel, #contact .contact .information > .card .phone-guidance .phone .tel, #faq .contact .information > .card .phone-guidance .phone .tel, #privacy-policy .contact .information > .card .phone-guidance .phone .tel, #cookie-policy .contact .information > .card .phone-guidance .phone .tel, #news .contact .information > .card .phone-guidance .phone .tel, #case .contact .information > .card .phone-guidance .phone .tel, #case2 .contact .information > .card .phone-guidance .phone .tel, #case3 .contact .information > .card .phone-guidance .phone .tel, #faq2 .contact .information > .card .phone-guidance .phone .tel {
  font-size: 262.5%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
#top .contact .information > .card .phone-guidance .phone .animation, #training .contact .information > .card .phone-guidance .phone .animation, #lodging .contact .information > .card .phone-guidance .phone .animation, #meal .contact .information > .card .phone-guidance .phone .animation, #guide .contact .information > .card .phone-guidance .phone .animation, #floor .contact .information > .card .phone-guidance .phone .animation, #access .contact .information > .card .phone-guidance .phone .animation, #contact .contact .information > .card .phone-guidance .phone .animation, #faq .contact .information > .card .phone-guidance .phone .animation, #privacy-policy .contact .information > .card .phone-guidance .phone .animation, #cookie-policy .contact .information > .card .phone-guidance .phone .animation, #news .contact .information > .card .phone-guidance .phone .animation, #case .contact .information > .card .phone-guidance .phone .animation, #case2 .contact .information > .card .phone-guidance .phone .animation, #case3 .contact .information > .card .phone-guidance .phone .animation, #faq2 .contact .information > .card .phone-guidance .phone .animation {
  font-size: 75%;
  color: #666;
  margin-top: 0.4em;
}
#top .contact .information > .card .phone-guidance .phone::before, #training .contact .information > .card .phone-guidance .phone::before, #lodging .contact .information > .card .phone-guidance .phone::before, #meal .contact .information > .card .phone-guidance .phone::before, #guide .contact .information > .card .phone-guidance .phone::before, #floor .contact .information > .card .phone-guidance .phone::before, #access .contact .information > .card .phone-guidance .phone::before, #contact .contact .information > .card .phone-guidance .phone::before, #faq .contact .information > .card .phone-guidance .phone::before, #privacy-policy .contact .information > .card .phone-guidance .phone::before, #cookie-policy .contact .information > .card .phone-guidance .phone::before, #news .contact .information > .card .phone-guidance .phone::before, #case .contact .information > .card .phone-guidance .phone::before, #case2 .contact .information > .card .phone-guidance .phone::before, #case3 .contact .information > .card .phone-guidance .phone::before, #faq2 .contact .information > .card .phone-guidance .phone::before {
  content: "";
  background: url(../images/ico_tel.svg) no-repeat;
  background-size: 40px 51px;
  width: 40px;
  height: 51px;
  position: absolute;
  top: calc((100% - 51px) / 2);
  left: 0;
}
#top .contact .information > .card .lead, #training .contact .information > .card .lead, #lodging .contact .information > .card .lead, #meal .contact .information > .card .lead, #guide .contact .information > .card .lead, #floor .contact .information > .card .lead, #access .contact .information > .card .lead, #contact .contact .information > .card .lead, #faq .contact .information > .card .lead, #privacy-policy .contact .information > .card .lead, #cookie-policy .contact .information > .card .lead, #news .contact .information > .card .lead, #case .contact .information > .card .lead, #case2 .contact .information > .card .lead, #case3 .contact .information > .card .lead, #faq2 .contact .information > .card .lead {
  font-size: 100%;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 769px) {
  #top .contact, #training .contact, #lodging .contact, #meal .contact, #guide .contact, #floor .contact, #access .contact, #contact .contact, #faq .contact, #privacy-policy .contact, #cookie-policy .contact, #news .contact, #case .contact, #case2 .contact, #case3 .contact, #faq2 .contact {
    margin-top: 15px;
  }
  #top .contact > .inner > .lead, #training .contact > .inner > .lead, #lodging .contact > .inner > .lead, #meal .contact > .inner > .lead, #guide .contact > .inner > .lead, #floor .contact > .inner > .lead, #access .contact > .inner > .lead, #contact .contact > .inner > .lead, #faq .contact > .inner > .lead, #privacy-policy .contact > .inner > .lead, #cookie-policy .contact > .inner > .lead, #news .contact > .inner > .lead, #case .contact > .inner > .lead, #case2 .contact > .inner > .lead, #case3 .contact > .inner > .lead, #faq2 .contact > .inner > .lead {
    font-size: 100%;
    margin: 20px 0;
    line-height: 1.8;
    text-align: left;
  }
  #top .contact .information, #training .contact .information, #lodging .contact .information, #meal .contact .information, #guide .contact .information, #floor .contact .information, #access .contact .information, #contact .contact .information, #faq .contact .information, #privacy-policy .contact .information, #cookie-policy .contact .information, #news .contact .information, #case .contact .information, #case2 .contact .information, #case3 .contact .information, #faq2 .contact .information {
    display: block;
    margin-bottom: 0;
  }
  #top .contact .information > .card, #training .contact .information > .card, #lodging .contact .information > .card, #meal .contact .information > .card, #guide .contact .information > .card, #floor .contact .information > .card, #access .contact .information > .card, #contact .contact .information > .card, #faq .contact .information > .card, #privacy-policy .contact .information > .card, #cookie-policy .contact .information > .card, #news .contact .information > .card, #case .contact .information > .card, #case2 .contact .information > .card, #case3 .contact .information > .card, #faq2 .contact .information > .card {
    width: 100%;
    margin: 20px 0 0;
  }
  #top .contact .information > .card > .inner, #training .contact .information > .card > .inner, #lodging .contact .information > .card > .inner, #meal .contact .information > .card > .inner, #guide .contact .information > .card > .inner, #floor .contact .information > .card > .inner, #access .contact .information > .card > .inner, #contact .contact .information > .card > .inner, #faq .contact .information > .card > .inner, #privacy-policy .contact .information > .card > .inner, #cookie-policy .contact .information > .card > .inner, #news .contact .information > .card > .inner, #case .contact .information > .card > .inner, #case2 .contact .information > .card > .inner, #case3 .contact .information > .card > .inner, #faq2 .contact .information > .card > .inner {
    padding: 20px 15px;
  }
  #top .contact .information > .card .attention, #training .contact .information > .card .attention, #lodging .contact .information > .card .attention, #meal .contact .information > .card .attention, #guide .contact .information > .card .attention, #floor .contact .information > .card .attention, #access .contact .information > .card .attention, #contact .contact .information > .card .attention, #faq .contact .information > .card .attention, #privacy-policy .contact .information > .card .attention, #cookie-policy .contact .information > .card .attention, #news .contact .information > .card .attention, #case .contact .information > .card .attention, #case2 .contact .information > .card .attention, #case3 .contact .information > .card .attention, #faq2 .contact .information > .card .attention {
    font-size: 87.5%;
    margin-bottom: 10px;
  }
  #top .contact .information > .card .column-2 .column, #training .contact .information > .card .column-2 .column, #lodging .contact .information > .card .column-2 .column, #meal .contact .information > .card .column-2 .column, #guide .contact .information > .card .column-2 .column, #floor .contact .information > .card .column-2 .column, #access .contact .information > .card .column-2 .column, #contact .contact .information > .card .column-2 .column, #faq .contact .information > .card .column-2 .column, #privacy-policy .contact .information > .card .column-2 .column, #cookie-policy .contact .information > .card .column-2 .column, #news .contact .information > .card .column-2 .column, #case .contact .information > .card .column-2 .column, #case2 .contact .information > .card .column-2 .column, #case3 .contact .information > .card .column-2 .column, #faq2 .contact .information > .card .column-2 .column {
    width: calc((100% - 10px) / 2);
  }
  #top .contact .information > .card .btn-more, #training .contact .information > .card .btn-more, #lodging .contact .information > .card .btn-more, #meal .contact .information > .card .btn-more, #guide .contact .information > .card .btn-more, #floor .contact .information > .card .btn-more, #access .contact .information > .card .btn-more, #contact .contact .information > .card .btn-more, #faq .contact .information > .card .btn-more, #privacy-policy .contact .information > .card .btn-more, #cookie-policy .contact .information > .card .btn-more, #news .contact .information > .card .btn-more, #case .contact .information > .card .btn-more, #case2 .contact .information > .card .btn-more, #case3 .contact .information > .card .btn-more, #faq2 .contact .information > .card .btn-more {
    font-size: 100%;
    max-width: 100%;
    padding: 0.6em 1em;
  }
  #top .contact .information > .card .phone-guidance, #training .contact .information > .card .phone-guidance, #lodging .contact .information > .card .phone-guidance, #meal .contact .information > .card .phone-guidance, #guide .contact .information > .card .phone-guidance, #floor .contact .information > .card .phone-guidance, #access .contact .information > .card .phone-guidance, #contact .contact .information > .card .phone-guidance, #faq .contact .information > .card .phone-guidance, #privacy-policy .contact .information > .card .phone-guidance, #cookie-policy .contact .information > .card .phone-guidance, #news .contact .information > .card .phone-guidance, #case .contact .information > .card .phone-guidance, #case2 .contact .information > .card .phone-guidance, #case3 .contact .information > .card .phone-guidance, #faq2 .contact .information > .card .phone-guidance {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0 14px;
    margin: 20px 0;
  }
  #top .contact .information > .card .phone-guidance .about, #training .contact .information > .card .phone-guidance .about, #lodging .contact .information > .card .phone-guidance .about, #meal .contact .information > .card .phone-guidance .about, #guide .contact .information > .card .phone-guidance .about, #floor .contact .information > .card .phone-guidance .about, #access .contact .information > .card .phone-guidance .about, #contact .contact .information > .card .phone-guidance .about, #faq .contact .information > .card .phone-guidance .about, #privacy-policy .contact .information > .card .phone-guidance .about, #cookie-policy .contact .information > .card .phone-guidance .about, #news .contact .information > .card .phone-guidance .about, #case .contact .information > .card .phone-guidance .about, #case2 .contact .information > .card .phone-guidance .about, #case3 .contact .information > .card .phone-guidance .about, #faq2 .contact .information > .card .phone-guidance .about {
    width: 100%;
    padding: 0.4em 10px 0.3em;
    margin: 0 0 10px;
  }
  #top .contact .information > .card .phone-guidance .about .name, #training .contact .information > .card .phone-guidance .about .name, #lodging .contact .information > .card .phone-guidance .about .name, #meal .contact .information > .card .phone-guidance .about .name, #guide .contact .information > .card .phone-guidance .about .name, #floor .contact .information > .card .phone-guidance .about .name, #access .contact .information > .card .phone-guidance .about .name, #contact .contact .information > .card .phone-guidance .about .name, #faq .contact .information > .card .phone-guidance .about .name, #privacy-policy .contact .information > .card .phone-guidance .about .name, #cookie-policy .contact .information > .card .phone-guidance .about .name, #news .contact .information > .card .phone-guidance .about .name, #case .contact .information > .card .phone-guidance .about .name, #case2 .contact .information > .card .phone-guidance .about .name, #case3 .contact .information > .card .phone-guidance .about .name, #faq2 .contact .information > .card .phone-guidance .about .name {
    font-size: 87.5%;
  }
  #top .contact .information > .card .phone-guidance .phone, #training .contact .information > .card .phone-guidance .phone, #lodging .contact .information > .card .phone-guidance .phone, #meal .contact .information > .card .phone-guidance .phone, #guide .contact .information > .card .phone-guidance .phone, #floor .contact .information > .card .phone-guidance .phone, #access .contact .information > .card .phone-guidance .phone, #contact .contact .information > .card .phone-guidance .phone, #faq .contact .information > .card .phone-guidance .phone, #privacy-policy .contact .information > .card .phone-guidance .phone, #cookie-policy .contact .information > .card .phone-guidance .phone, #news .contact .information > .card .phone-guidance .phone, #case .contact .information > .card .phone-guidance .phone, #case2 .contact .information > .card .phone-guidance .phone, #case3 .contact .information > .card .phone-guidance .phone, #faq2 .contact .information > .card .phone-guidance .phone {
    padding-left: 50px;
  }
  #top .contact .information > .card .phone-guidance .phone::before, #training .contact .information > .card .phone-guidance .phone::before, #lodging .contact .information > .card .phone-guidance .phone::before, #meal .contact .information > .card .phone-guidance .phone::before, #guide .contact .information > .card .phone-guidance .phone::before, #floor .contact .information > .card .phone-guidance .phone::before, #access .contact .information > .card .phone-guidance .phone::before, #contact .contact .information > .card .phone-guidance .phone::before, #faq .contact .information > .card .phone-guidance .phone::before, #privacy-policy .contact .information > .card .phone-guidance .phone::before, #cookie-policy .contact .information > .card .phone-guidance .phone::before, #news .contact .information > .card .phone-guidance .phone::before, #case .contact .information > .card .phone-guidance .phone::before, #case2 .contact .information > .card .phone-guidance .phone::before, #case3 .contact .information > .card .phone-guidance .phone::before, #faq2 .contact .information > .card .phone-guidance .phone::before {
    background-size: 31px 40px;
    width: 31px;
    height: 40px;
    top: calc((100% - 40px) / 2);
    left: 10px;
  }
  #top .contact .information > .card .attention-list, #training .contact .information > .card .attention-list, #lodging .contact .information > .card .attention-list, #meal .contact .information > .card .attention-list, #guide .contact .information > .card .attention-list, #floor .contact .information > .card .attention-list, #access .contact .information > .card .attention-list, #contact .contact .information > .card .attention-list, #faq .contact .information > .card .attention-list, #privacy-policy .contact .information > .card .attention-list, #cookie-policy .contact .information > .card .attention-list, #news .contact .information > .card .attention-list, #case .contact .information > .card .attention-list, #case2 .contact .information > .card .attention-list, #case3 .contact .information > .card .attention-list, #faq2 .contact .information > .card .attention-list {
    margin: -6px 0 0;
  }
  #top .contact .information > .card .lead, #training .contact .information > .card .lead, #lodging .contact .information > .card .lead, #meal .contact .information > .card .lead, #guide .contact .information > .card .lead, #floor .contact .information > .card .lead, #access .contact .information > .card .lead, #contact .contact .information > .card .lead, #faq .contact .information > .card .lead, #privacy-policy .contact .information > .card .lead, #cookie-policy .contact .information > .card .lead, #news .contact .information > .card .lead, #case .contact .information > .card .lead, #case2 .contact .information > .card .lead, #case3 .contact .information > .card .lead, #faq2 .contact .information > .card .lead {
    margin: -6px 0 0;
  }
  #top .contact .information > .card:first-child, #training .contact .information > .card:first-child, #lodging .contact .information > .card:first-child, #meal .contact .information > .card:first-child, #guide .contact .information > .card:first-child, #floor .contact .information > .card:first-child, #access .contact .information > .card:first-child, #contact .contact .information > .card:first-child, #faq .contact .information > .card:first-child, #privacy-policy .contact .information > .card:first-child, #cookie-policy .contact .information > .card:first-child, #news .contact .information > .card:first-child, #case .contact .information > .card:first-child, #case2 .contact .information > .card:first-child, #case3 .contact .information > .card:first-child, #faq2 .contact .information > .card:first-child {
    margin-top: 0;
  }
}

#top .contact {
  margin-top: 0;
}

/**************************************************
	FAQ
***************************************************/
#faq .category-title {
  background: url(../faq/images/bg_faq.jpg) no-repeat center center;
  background-size: cover;
}
#faq .h4-a {
  margin: 20px 0 15px;
}
#faq .h4-a .text {
  font-size: 18px;
}

/**************************************************
	Access
***************************************************/
#access .category-title {
  background: url(../access/images/bg_access.jpg) no-repeat center center;
  background-size: cover;
}
#access .access-area .map {
  height: 580px;
}
#access .access-area .map iframe {
  width: 100%;
  margin: 0 auto;
}
#access .access-area .route-map {
  border: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 40px;
  margin-bottom: 0;
}
#access .access-area .route-map .caption {
  font-size: 81.25%;
  position: absolute;
  top: -1px;
  left: -1px;
  background: #333333;
  color: #fff;
  padding: 0.5em 2em 0.4em;
}
#access .access-area .train-map {
  margin: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#access .access-area .train-map .fig-a {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-right: 40px;
  height: 100%;
}
#access .access-area .train-map .fig-a img {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
}
#access .access-area .train-map .fig-a .caption {
  font-size: 93.75%;
  margin: 1em 0;
}
#access .access-area .train-map > .text {
  min-width: 580px;
  max-width: 580px;
}
#access .access-area .train-map > .text .title {
  background: #fafafa;
  font-size: 125%;
  font-weight: bold;
  padding: 20px 30px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#access .access-area .train-map > .text .title::before {
  content: "";
  width: 27px;
  height: 38px;
  margin-right: 20px;
}
#access .access-area .train-map > .text .title.-train::before {
  content: "";
  background: url(../images/ico_train.svg) no-repeat;
  background-size: 27px 38px;
}
#access .access-area .train-map > .text .title.-monorail::before {
  content: "";
  background: url(../images/ico_monorail.svg) no-repeat;
  background-size: 27px 38px;
}
#access .access-area .train-map > .text .route-guide {
  padding-left: 28px;
}
#access .access-area .train-map > .text .route-guide > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
#access .access-area .train-map > .text .route-guide > li .num {
  font-size: 87.5%;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #a8884e;
  color: #fff;
  margin-right: 20px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
#access .access-area .train-map > .text .route-guide > li .text {
  font-size: 100%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
#access .access-area .train-map > .text .route-guide > li .photo {
  max-width: 150px;
  margin-left: 20px;
}
#access .access-area .train-map > .text .route-guide > li .photo a:hover {
  opacity: 0.6;
}
#access .access-area .train-map > .text .route-guide > li .photo img {
  width: 100%;
  height: auto;
}
#access .access-area .train-map > .text .route-guide > li:last-child {
  margin-bottom: 0;
}
#access .access-area .train-map > .text .route-guide.-train {
  margin-bottom: 40px;
}
#access .access-area .train-map > .text .route-guide.-train > li .num {
  background: #bc9d20;
}
#access .access-area .train-map > .text .route-guide.-monorail > li .num {
  background: #386591;
}
#access .access-area .parking-guide {
  margin: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#access .access-area .parking-guide .fig-b {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-right: 40px;
  height: 100%;
}
#access .access-area .parking-guide .fig-b img {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  -webkit-backface-visibility: hidden;
}
#access .access-area .parking-guide .fig-b .caption {
  font-size: 93.75%;
  margin: 1em 0;
}
#access .access-area .parking-guide > .text {
  min-width: 580px;
  max-width: 580px;
}
#access .access-area .parking-guide > .text .title {
  background: #fafafa;
  font-size: 125%;
  font-weight: bold;
  padding: 20px 30px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#access .access-area .parking-guide > .text .title::before {
  content: "";
  background: url(../images/ico_parking.svg) no-repeat;
  background-size: 38px 38px;
  width: 38px;
  height: 38px;
  margin-right: 20px;
}
#access .access-area .parking-guide > .text .image a {
  display: block;
}
#access .access-area .parking-guide > .text .image a:hover {
  opacity: 0.6;
}
#access .access-area .parking-guide > .text .image img {
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 769px) {
  #access .index-list, #access .category-cover .category-about .index .index-list-b, .category-cover .category-about .index #access .index-list-b {
    margin-bottom: 20px;
  }
  #access .access-area .map {
    height: auto;
  }
  #access .access-area .map iframe {
    width: 100%;
    height: auto;
    margin: 0 auto -10px;
  }
  #access .access-area .route-map {
    padding: 40px 20px 20px;
    margin-bottom: 20px;
  }
  #access .access-area .train-map {
    display: block;
    margin-top: 20px;
  }
  #access .access-area .train-map .fig-a {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin: 0 0 20px 0;
  }
  #access .access-area .train-map > .text {
    min-width: 100%;
    max-width: 100%;
  }
  #access .access-area .train-map > .text .title {
    font-size: 112.5%;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  #access .access-area .train-map > .text .title::before {
    width: 20px;
    height: 28px;
    margin-right: 14px;
  }
  #access .access-area .train-map > .text .title.-train::before {
    background-size: 20px 28px;
  }
  #access .access-area .train-map > .text .title.-monorail::before {
    background-size: 20px 28px;
  }
  #access .access-area .train-map > .text .route-guide {
    padding-left: 0;
  }
  #access .access-area .train-map > .text .route-guide > li {
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #access .access-area .train-map > .text .route-guide > li .num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    margin-right: 10px;
  }
  #access .access-area .train-map > .text .route-guide > li .text {
    font-size: 100%;
    line-height: 1.6;
    width: calc(100% - 38px);
  }
  #access .access-area .train-map > .text .route-guide > li .photo {
    max-width: 100%;
    margin: 10px auto 0;
  }
  #access .access-area .train-map > .text .route-guide > li .photo img {
    width: 100%;
    height: auto;
  }
  #access .access-area .train-map > .text .route-guide.-train {
    margin-bottom: 20px;
  }
  #access .access-area .parking-guide {
    display: block;
    margin-top: 20px;
  }
  #access .access-area .parking-guide .fig-b {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin: 0 0 20px 0;
  }
  #access .access-area .parking-guide > .text {
    min-width: 100%;
    max-width: 100%;
  }
  #access .access-area .parking-guide > .text .title {
    font-size: 112.5%;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  #access .access-area .parking-guide > .text .title::before {
    background-size: 28px 28px;
    width: 28px;
    height: 28px;
    margin-right: 14px;
  }
}

/**************************************************
	News
***************************************************/
#news .category-title {
  background: url(../news/images/bg_news.jpg) no-repeat center center;
  background-size: cover;
}
#news .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0;
}
@media (max-width: 769px) {
  #news .sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0;
  }
}
#news .sns-list > li {
  margin-left: 10px;
}
@media (max-width: 769px) {
  #news .sns-list > li {
    margin: 0 5px;
  }
}
#news .sns-list > li a {
  font-size: 75%;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 100px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#news .sns-list > li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
#news .sns-list > li a.facebook {
  color: #3b5998;
  border: 1px solid #3b5998;
}
#news .sns-list > li a.facebook::before {
  background: url(../images/icon/icon_facebook.svg);
  background-size: 7px 14px;
  width: 7px;
  height: 14px;
}
#news .sns-list > li a.twitter {
  color: #55acee;
  border: 1px solid #55acee;
}
#news .sns-list > li a.twitter::before {
  background: url(../images/icon/icon_twitter.svg);
  background-size: 17px 14px;
  width: 17px;
  height: 14px;
}
#news .sns-list > li a.line {
  color: #00b900;
  border: 1px solid #00b900;
}
#news .sns-list > li a.line::before {
  background: url(../images/icon/icon_line.svg);
  background-size: 15px 14px;
  width: 15px;
  height: 14px;
}
#news .sns-list > li a:hover {
  color: #fff;
  text-decoration: none;
}
#news .sns-list > li a:hover.facebook {
  background: #3b5998;
}
#news .sns-list > li a:hover.facebook::before {
  background: url(../images/icon/icon_facebook_white.svg);
  background-size: 7px 14px;
}
#news .sns-list > li a:hover.twitter {
  background: #55acee;
}
#news .sns-list > li a:hover.twitter::before {
  background: url(../images/icon/icon_twitter_white.svg);
  background-size: 17px 14px;
}
#news .sns-list > li a:hover.line {
  background: #00b900;
}
#news .sns-list > li a:hover.line::before {
  background: url(../images/icon/icon_line_white.svg);
  background-size: 15px 14px;
}
#news .search .search-item {
  font-size: 93.75%;
  border: 1px solid #a8884e;
  border-radius: 100px;
  color: #a8884e;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
#news .search .search-item a {
  padding: 0.2em 1em;
  display: block;
}
#news .search .search-item:hover, #news .search .search-item.is-active {
  background: #a8884e;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#news .search .search-item:hover a, #news .search .search-item.is-active a {
  color: #fff;
  text-decoration: none;
}
#news .news-area > .inner {
  padding-top: 0;
  padding-bottom: 0;
}
#news .news-area .news-list {
  width: calc(100% - 80px);
  padding: 0 40px 40px;
  margin: 0 auto;
}
#news .news-area .news-list .item {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}
#news .news-area .news-list .item > a, #news .news-area .news-list .item .wrap {
  padding: 16px 0;
}
#news .news-area .news-list .item > a .category, #news .news-area .news-list .item .wrap .category {
  margin: 0 20px;
}
#news .news-area .news-list .item > a .title, #news .news-area .news-list .item .wrap .title {
  font-size: 93.75%;
}
#news .news-area .news-list .item > a:hover, #news .news-area .news-list .item .wrap:hover {
  background: #fafafa;
}
#news .news-area .item.is-hide {
  display: none;
}
#news #info .news-list .media, #news #info .news-list .topics {
  display: none;
}
#news #media .news-list .info, #news #media .news-list .topics {
  display: none;
}
#news #topics .news-list .info, #news #topics .news-list .media {
  display: none;
}
#news .entry-content .gallery-group {
  margin: 30px 0;
}
#news .entry-content .gallery-group > li {
  margin-bottom: 0;
}
#news .entry-content .img-r {
  float: right;
  margin: 0 0 30px 30px;
  max-width: 250px;
}
#news .entry-content .img-r img {
  width: 100%;
  height: auto;
}
#news .entry-content .img-l {
  float: left;
  margin: 0 30px 30px 0;
  max-width: 250px;
}
#news .entry-content .img-l img {
  width: 100%;
  height: auto;
}
#news .entry-content .interview-lead {
  margin: 30px 0;
}
#news .entry-content .interview-title {
  background: #fafafa;
  border-bottom: 1px solid #e5e5e5;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 10px;
  margin: 60px 0px 30px;
  text-align: left;
}
#news .entry-content .h3-a {
  margin: 40px 0 30px;
  border-left: 4px solid #333;
}
#news .entry-content .h3-a > .title {
  margin-bottom: 0 !important;
}
#news .entry-content .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 20px;
}
#news .entry-content .question span {
  font-size: 18px;
  font-weight: bold;
}
#news .entry-content .question span.icon {
  background: #a8884e;
  border-radius: 100px;
  color: #fff;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#news .entry-content .balloon {
  position: relative;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 30px 30px 10px;
  display: inline-block;
  text-align: left;
}
#news .entry-content .balloon p {
  text-align: left !important;
}
#news .entry-content .balloon.-left {
  margin-left: 15px;
}
#news .entry-content .balloon.-left::before, #news .entry-content .balloon.-left::after {
  content: " ";
  right: 100%;
  top: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#news .entry-content .balloon.-left::before {
  border-color: rgba(230, 230, 230, 0);
  border-right-color: #e6e6e6;
  border-width: 16px;
  margin-top: -16px;
}
#news .entry-content .balloon.-left::after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 15px;
  margin-top: -15px;
}
#news .entry-content .balloon.-right {
  margin-right: 15px;
}
#news .entry-content .balloon.-right::before, #news .entry-content .balloon.-right::after {
  content: " ";
  left: 100%;
  top: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#news .entry-content .balloon.-right::before {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #e6e6e6;
  border-width: 16px;
  margin-top: -16px;
}
#news .entry-content .balloon.-right::after {
  border-color: rgba(230, 230, 230, 0);
  border-left-color: #fff;
  border-width: 15px;
  margin-top: -15px;
}
#news .entry-content .fukidashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#news .entry-content .fukidashi .photo {
  max-width: 280px;
}
#news .entry-content .fukidashi .photo.-right {
  margin-left: 20px;
}
#news .entry-content .fukidashi .photo.-left {
  margin-right: 20px;
}
#news .entry-content .fukidashi .commenter {
  text-align: center;
}
#news .entry-content .fukidashi .commenter .icon {
  display: block;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  margin: 0 auto;
  background: #f1f2f6;
}
@media (max-width: 769px) {
  #news .entry-content .fukidashi .commenter .icon {
    width: 60px;
    height: 60px;
  }
}
#news .entry-content .fukidashi .commenter .icon img {
  width: auto;
  height: 100%;
  max-height: 50px;
}
@media (max-width: 769px) {
  #news .entry-content .fukidashi .commenter .icon img {
    max-height: 40px;
  }
}
#news .entry-content .fukidashi .commenter .author {
  font-size: 14px;
  text-align: center;
  display: block;
  line-height: 1.6;
  margin-top: 14px;
  font-weight: bold;
}
#news .entry-content .fukidashi .balloon {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#news .entry-content .fukidashi .balloon.-left {
  margin-left: 30px;
}
#news .entry-content .fukidashi .balloon.-right {
  margin-right: 30px;
}
#news .entry-content .fukidashi .balloon p {
  margin-bottom: 10px;
}
#news .entry-content .fukidashi._a .commenter .icon {
  background: #faece8;
}
#news .entry-content .fukidashi._a .balloon {
  border: 4px solid #faece8;
}
#news .entry-content .fukidashi._a .balloon.-left::before {
  border-right-color: #faece8;
}
#news .entry-content .fukidashi._a .balloon.-left::after {
  border-right-color: #fff;
  border-width: 11px;
  margin-top: -11px;
}
#news .entry-content .fukidashi._a .balloon.-right::before {
  border-left-color: #faece8;
}
#news .entry-content .fukidashi._a .balloon.-right::after {
  border-left-color: #fff;
  border-width: 11px;
  margin-top: -11px;
}
#news .entry-content .fukidashi._b1 .commenter .icon {
  background: #f1f2f6;
}
#news .entry-content .fukidashi._b1 .balloon {
  border: 4px solid #f1f2f6;
}
#news .entry-content .fukidashi._b1 .balloon.-left::before {
  border-right-color: #f1f2f6;
}
#news .entry-content .fukidashi._b1 .balloon.-left::after {
  border-right-color: #fff;
  border-width: 11px;
  margin-top: -11px;
}
#news .entry-content .fukidashi._b1 .balloon.-right::before {
  border-left-color: #f1f2f6;
}
#news .entry-content .fukidashi._b1 .balloon.-right::after {
  border-left-color: #fff;
  border-width: 11px;
  margin-top: -11px;
}
#news .entry-content .fukidashi._b2 .commenter .icon {
  background: #def3ed;
}
#news .entry-content .fukidashi._b2 .balloon {
  border: 4px solid #def3ed;
}
#news .entry-content .fukidashi._b2 .balloon.-left::before {
  border-right-color: #def3ed;
}
#news .entry-content .fukidashi._b2 .balloon.-left::after {
  border-right-color: #fff;
  border-width: 11px;
  margin-top: -11px;
}
#news .entry-content .fukidashi._b2 .balloon.-right::before {
  border-left-color: #def3ed;
}
#news .entry-content .fukidashi._b2 .balloon.-right::after {
  border-left-color: #fff;
  border-width: 11px;
  margin-top: -11px;
}
#news .entry-content .box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 769px) {
  #news .entry-content .box-flex {
    display: block;
  }
}
#news .entry-content .box-flex .box-right {
  width: 100%;
  max-width: 400px;
  margin-left: 30px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
#news .entry-content .box-flex .box-right.-left {
  margin: 0 30px 0 0;
}
#news .entry-content .box-flex .box-right.w520 {
  max-width: 520px;
}
#news .entry-content .box-flex .box-right.w580 {
  max-width: 580px;
}
#news .entry-content .box-flex .box-right.w610 {
  max-width: 610px;
}
#news .entry-content .box-flex .box-right.w650 {
  max-width: 650px;
}
@media (max-width: 769px) {
  #news .entry-content .box-flex .box-right {
    max-width: 100%;
    margin: 0;
  }
}
#news .entry-content .box-flex .box-right .column-2 > .column {
  width: calc((100% - 20px) / 2);
}
#news .entry-content .box-flex .box-right .column-2.half-column > .column {
  width: calc((100% - 10px) / 2);
}
#news .entry-content .box-flex .box-right .image-block a {
  display: block;
}
#news .entry-content .box-flex .box-right .image-block a img {
  width: 100%;
  height: auto;
}
#news .entry-content .box-flex .box-right .image-block .caption-people {
  text-align: center;
  font-weight: bold;
  display: block;
  margin: 16px auto 0;
}
#news .entry-content .panel-a {
  border: 1px solid #333;
  background: #FAFAFA;
  margin: 20px 0;
  position: relative;
}
@media (max-width: 769px) {
  #news .entry-content .panel-a {
    margin: 30px 0 20px;
  }
}
#news .entry-content .panel-a .title {
  margin: 0;
  padding: 6px 10px;
  font-size: 16px;
  color: #fff;
  background: #333;
  font-weight: bold;
  width: 80%;
  margin: auto;
  margin-top: -20px;
  text-align: center;
  border-left: none;
}
@media (max-width: 769px) {
  #news .entry-content .panel-a .title {
    font-size: 12px;
    width: 90%;
  }
}
#news .entry-content .panel-a .inner {
  padding: 20px 20px 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
@media (max-width: 769px) {
  #news .entry-content .panel-a .inner {
    padding: 20px 10px 1px;
    font-size: 12px;
  }
}
#news .entry-content .photo-column-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
@media (max-width: 769px) {
  #news .entry-content .photo-column-2 {
    display: block;
  }
}
#news .entry-content .photo-column-2 .column {
  text-align: center;
  margin: 0 15px 25px;
}
@media (max-width: 769px) {
  #news .entry-content .photo-column-2 .column {
    margin: 0 0 20px;
  }
}
#news .entry-content .photo-column-2 .column img {
  width: 100%;
  max-width: 350px;
  height: auto;
}
@media (max-width: 769px) {
  #news .entry-content .photo-column-2 .column img {
    max-width: 287px;
  }
}
#news .entry-content .photo-column-2 .column .caption {
  display: block;
  font-weight: bold;
  margin-top: 15px;
}
#news .entry-content .report-box {
  border-right: 4px solid #f1f2f6;
  border-bottom: 4px solid #f1f2f6;
  border-left: 4px solid #f1f2f6;
  margin: 40px 0;
}
@media (max-width: 769px) {
  #news .entry-content .report-box {
    margin: 30px 0;
  }
}
#news .entry-content .report-box > .inner {
  padding: 30px;
}
@media (max-width: 769px) {
  #news .entry-content .report-box > .inner {
    padding: 20px;
  }
}
#news .entry-content .report-box .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  #news .entry-content .report-box .head {
    display: block;
    margin-bottom: 20px;
  }
}
#news .entry-content .report-box .head .photo {
  max-width: 350px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 30px;
}
@media (max-width: 769px) {
  #news .entry-content .report-box .head .photo {
    width: 100%;
    max-width: 287px;
    margin: 0 auto;
  }
}
#news .entry-content .report-box .head .body {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
#news .entry-content .report-box .head .body .title {
  font-size: 150%;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 0 25px 1em;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.6;
  text-indent: -1em;
}
@media (max-width: 769px) {
  #news .entry-content .report-box .head .body .title {
    font-size: 125%;
    padding: 0 0 20px 0.5em;
    margin-bottom: 20px;
  }
}
#news .entry-content .report-box .head .body .author {
  margin-bottom: 0;
}
@media (max-width: 769px) {
  #news .entry-content .report-box .head .body .author {
    font-size: 87.5%;
  }
}
#news .entry-content .report-box .head .body .author .name {
  font-size: 131.25%;
  font-weight: bold;
}
@media (max-width: 769px) {
  #news .entry-content .report-box .head .body .author .name {
    font-size: 112.5%;
  }
}
#news .entry-content .report-box .foot {
  padding: 30px;
}
@media (max-width: 769px) {
  #news .entry-content .report-box .foot {
    padding: 20px;
  }
}
#news .entry-content .report-box .foot p:last-child {
  margin-bottom: 0;
}
#news .entry-content .report-box.-blue {
  border-top: 4px solid #5493ef;
}
#news .entry-content .report-box.-blue .head .body .title {
  color: #5493ef;
}
#news .entry-content .report-box.-blue .foot {
  background: #f1f2f6;
}
#news .entry-content .report-box.-orange {
  border-top: 4px solid #f17452;
}
#news .entry-content .report-box.-orange .head .body .title {
  color: #f17452;
}
#news .entry-content .report-box.-orange .foot {
  background: #faece8;
}
#news .entry-content .report-box.-green {
  border-top: 4px solid #61caa6;
}
#news .entry-content .report-box.-green .head .body .title {
  color: #61caa6;
}
#news .entry-content .report-box.-green .foot {
  background: #def3ed;
}
#news .voice-link {
  text-align: center;
  margin: 30px auto 40px;
}
#news .voice-link a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #0E0D6A;
  border-radius: 100px;
  padding: 10px 25px;
  margin: 0 auto;
}
@media (max-width: 769px) {
  #news .voice-link a {
    width: 100%;
    padding: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#news .voice-link a .image {
  background: #f1f2f6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  #news .voice-link a .image {
    width: 30px;
    height: 30px;
  }
}
#news .voice-link a .image::before {
  content: "";
  background: url(../images/icon/icon_man1_blue.svg) no-repeat;
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 40px;
}
@media (max-width: 769px) {
  #news .voice-link a .image::before {
    width: 20px;
    height: 16px;
  }
}
#news .voice-link a .text {
  color: #0E0D6A;
  margin-left: 20px;
}
@media (max-width: 769px) {
  #news .voice-link a .text {
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
  }
}
#news .voice-link a:hover {
  background: #0E0D6A;
  text-decoration: none;
  color: #fff;
}
#news .voice-link a:hover .text {
  color: #fff;
}
#news .voice {
  margin-bottom: 60px;
}
@media (max-width: 769px) {
  #news .voice {
    margin-bottom: 30px;
  }
}
#news .voice .h3-b {
  margin-top: 60px;
  border-top: 1px solid #0E0D6A;
  border-bottom: 1px solid #0E0D6A;
  color: #0E0D6A;
  background: #f1f2f6;
}
@media (max-width: 769px) {
  #news .voice .h3-b {
    margin-top: 30px;
  }
}
#news .voice .voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px -20px;
}
#news .voice .voice-list .item {
  width: 25%;
  padding: 0 10px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 769px) {
  #news .voice .voice-list .item {
    width: 50%;
  }
}
#news .voice .voice-list .item::before {
  content: "";
  background: url(../images/icon/icon_clip.svg) no-repeat;
  width: 20px;
  height: 22px;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 2;
}
#news .voice .voice-list .item .body {
  background: #f1f2f6;
  padding: 10px;
  font-size: 14px;
  position: relative;
  margin-bottom: 20px;
  height: 100%;
}
@media (max-width: 769px) {
  #news .voice .voice-list .item .body {
    padding: 5px;
    font-size: 12px;
  }
}
#news .voice .voice-list .item .body .inner {
  background: #fff;
  padding: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-weight: bold;
  color: #0E0D6A;
}
@media (max-width: 769px) {
  #news .voice .voice-list .item .body .inner {
    padding: 15px;
    text-align: left;
  }
  #news .voice .voice-list .item .body .inner br {
    display: none;
  }
}
#news .voice .voice-list .item .body .inner strong {
  color: #0E0D6A;
}
#news .voice .voice-list .item .body::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #f1f2f6 transparent transparent transparent;
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
}
#news .voice .voice-list .item .author .image {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  margin: 0 auto;
  background: #f1f2f6;
}
#news .voice .voice-list .item .author .image::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 40px;
}
#news .voice .voice-list .item .author .image.-man1::before {
  content: "";
  background: url(../images/icon/icon_man1_blue.svg) no-repeat;
}
#news .voice .voice-list .item .author .image.-man2::before {
  content: "";
  background: url(../images/icon/icon_man2_blue.svg) no-repeat;
}
#news .voice .voice-list .item .author .image.-man3::before {
  content: "";
  background: url(../images/icon/icon_man3_blue.svg) no-repeat;
}
#news .voice .voice-list .item .author .image.-man4::before {
  content: "";
  background: url(../images/icon/icon_man4_blue.svg) no-repeat;
}
#news .voice .voice-list .item .author .image.-woman1::before {
  content: "";
  background: url(../images/icon/icon_woman1_blue.svg) no-repeat;
}
#news .voice .voice-list .item .author .image.-woman2::before {
  content: "";
  background: url(../images/icon/icon_woman2_blue.svg) no-repeat;
}
#news .voice .voice-list .item .author .image.-woman3::before {
  content: "";
  background: url(../images/icon/icon_woman3_blue.svg) no-repeat;
}
@media (max-width: 769px) {
  #news .box-boccia {
    width: 100%;
    max-width: calc(100vw - 40px);
    margin: 0 auto;
  }
}
#news .box-boccia .category-cover .category-about .index {
  min-width: 380px;
}
@media (max-width: 769px) {
  #news .box-boccia .category-cover .category-about .index {
    min-width: 100%;
  }
}
#news .box-boccia .category-cover .category-about .index .index-list > li a, #news .box-boccia .category-cover .category-about .index .index-list-b > li a {
  font-size: 14px;
  font-weight: bold;
  color: #6fba2c;
}
#news .box-boccia .category-cover .category-about .index .index-list > li a:hover .text, #news .box-boccia .category-cover .category-about .index .index-list-b > li a:hover .text {
  background: #6fba2c;
  color: #fff;
}
#news .box-boccia .category-cover .category-about .index .index-list > li a .text, #news .box-boccia .category-cover .category-about .index .index-list-b > li a .text {
  padding: 10px 15px;
}
#news .box-boccia .category-cover .category-about .index .index-list > li a .text::after,
#news .box-boccia .category-cover .category-about .index .index-list-b > li a .text::after {
  background: url(../images/ico_arrow_bottom_black.svg) no-repeat;
  background-size: 10px 4px;
  width: 10px;
  height: 4px;
  top: calc((100% - 4px) / 2);
  right: 15px;
}
#news .box-boccia .category-cover .category-about .index .index-list > li a:hover .text::after, #news .box-boccia .category-cover .category-about .index .index-list-b > li a:hover .text::after {
  background: url(../images/ico_arrow_bottom_white.svg) no-repeat;
  background-size: 10px 4px;
}
#news .box-boccia .category-cover .category-about .index .index-list > li a .num, #news .box-boccia .category-cover .category-about .index .index-list-b > li a .num {
  width: 50px;
  min-height: 50px;
  background: #6fba2c;
  border-right: 1px solid #fafafa;
  font-size: 14px;
}
#news .box-boccia .fukidashi-a {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  padding: 7px 20px;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #6fba2c;
  background: #FFF;
  border: solid 1px #6fba2c;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-size: 15px;
}
#news .box-boccia .fukidashi-a::after {
  content: "";
  background: url(../news/plan/images/fukidashi-a.gif) no-repeat;
  width: 30px;
  height: 14px;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: -14px;
  left: calc((100% - 30px) / 2);
  z-index: 2;
}
#news .box-boccia .btn-more {
  max-width: 420px;
  background: #6fba2c;
  border: 1px solid #6fba2c;
  padding: 8px 20px;
  font-size: 16px;
}
#news .box-boccia .btn-more:hover {
  background: #fff;
  color: #6fba2c;
}
#news .box-boccia .column-3 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 0 30px !important;
}
@media (max-width: 769px) {
  #news .box-boccia .column-3 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 20px !important;
  }
}
#news .box-boccia .column-3 > .column {
  width: 100%;
  margin: 0 !important;
  border-radius: 6px;
}
#news .box-boccia .column-3 > .column a {
  display: block;
  border-radius: 6px;
}
#news .box-boccia .column-3 > .column a img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
#news .box-boccia .column-3 > .column .caption {
  border-radius: 0 0 6px 6px;
  padding-bottom: 10px;
}
#news .box-boccia .column-3::before, #news .box-boccia .column-3::after {
  display: none;
}
#news .box-boccia .entry-content-wrap {
  width: 100%;
  border-radius: 10px;
  background: #6fba2c;
  padding-bottom: 40px;
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap {
    padding: 20px !important;
  }
}
#news .box-boccia .entry-content-wrap > .entry-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap > .entry-content {
    width: 100%;
    padding: 20px;
  }
}
#news .box-boccia .entry-content-wrap > .entry-content > .title {
  text-align: center;
  color: #6fba2c;
  font-weight: bold;
  border-bottom: 2px solid #6fba2c;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap > .entry-content > .title {
    padding-bottom: 15px;
    margin-top: 5px;
  }
}
#news .box-boccia .entry-content-wrap > .entry-content > .title > .sub {
  font-size: 112.5%;
  display: block;
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap > .entry-content > .title > .sub {
    font-size: 100%;
    margin-top: 10px;
  }
}
#news .box-boccia .entry-content-wrap > .entry-content > .title > .main {
  font-size: 162.5%;
  display: block;
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap > .entry-content > .title > .main {
    font-size: 143.75%;
    line-height: 1.6;
  }
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap > .entry-content > .title._large {
    font-size: 100% !important;
  }
}
#news .box-boccia .entry-content-wrap .entry-content-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap .entry-content-index {
    display: block;
  }
}
#news .box-boccia .entry-content-wrap .entry-content-index > .index {
  margin-left: 30px;
}
@media (max-width: 769px) {
  #news .box-boccia .entry-content-wrap .entry-content-index > .index {
    margin-left: 0;
    margin-top: 20px;
  }
}
#news .box-boccia .carousel-slide-column3-1, #news .box-boccia .carousel-slide-column3-2,
#news .box-boccia .carousel-slide-column4-1 {
  overflow: hidden;
}
#news .box-boccia .carousel-slide-column3-1 .swiper-slide, #news .box-boccia .carousel-slide-column3-2 .swiper-slide,
#news .box-boccia .carousel-slide-column4-1 .swiper-slide {
  position: relative;
  border-radius: 6px;
}
#news .box-boccia .carousel-slide-column3-1 .swiper-slide a, #news .box-boccia .carousel-slide-column3-2 .swiper-slide a,
#news .box-boccia .carousel-slide-column4-1 .swiper-slide a {
  display: block;
  border-radius: 6px;
}
#news .box-boccia .carousel-slide-column3-1 .swiper-slide a:hover, #news .box-boccia .carousel-slide-column3-2 .swiper-slide a:hover,
#news .box-boccia .carousel-slide-column4-1 .swiper-slide a:hover {
  opacity: 0.6;
}
#news .box-boccia .carousel-slide-column3-1 .swiper-slide img, #news .box-boccia .carousel-slide-column3-2 .swiper-slide img,
#news .box-boccia .carousel-slide-column4-1 .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
#news .box-boccia .carousel-slide-column3-1 .swiper-slide .caption, #news .box-boccia .carousel-slide-column3-2 .swiper-slide .caption,
#news .box-boccia .carousel-slide-column4-1 .swiper-slide .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
  font-weight: bold;
  color: #fff;
  border-radius: 0 0 6px 6px;
}
#news .box-boccia .carousel-slide-column3-1 .swiper-slide .caption .title, #news .box-boccia .carousel-slide-column3-2 .swiper-slide .caption .title,
#news .box-boccia .carousel-slide-column4-1 .swiper-slide .caption .title {
  font-size: 87.5%;
  font-weight: bold;
  color: #fff;
}
#news .box-boccia .carousel-slide-column3-1 .swiper-slide {
  width: calc((100% - 40px) / 3);
}
#news .box-boccia .carousel-slide-column3-2 .swiper-slide {
  width: calc((100% - 40px) / 3);
}
#news .box-boccia .carousel-slide-column4-1 .swiper-slide {
  width: calc((100% - 60px) / 4);
}
#news .box-boccia .swiper-controller {
  width: 100%;
  margin: 42px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#news .box-boccia .swiper-controller .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  #news .box-boccia .swiper-controller .swiper-pagination {
    margin-top: -10px;
  }
}
#news .box-boccia .swiper-controller .swiper-pagination::before, #news .box-boccia .swiper-controller .swiper-pagination::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 0 30px;
}
@media (max-width: 769px) {
  #news .box-boccia .swiper-controller .swiper-pagination::before, #news .box-boccia .swiper-controller .swiper-pagination::after {
    display: none;
  }
}
#news .box-boccia .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #e5e5e5;
  opacity: 1;
}
#news .box-boccia .swiper-controller .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6fba2c;
}
#news .box-boccia .swiper-controller .swiper-pagination .swiper-pagination-bullet:only-child {
  background: #6fba2c !important;
  display: block !important;
}
#news .box-boccia .swiper-controller .swiper-button-prev, #news .box-boccia .swiper-controller .swiper-button-next {
  position: relative;
  background: #6fba2c;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(17, 90, 24, 0.1);
          box-shadow: 0px 0px 30px 0px rgba(17, 90, 24, 0.1);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  #news .box-boccia .swiper-controller .swiper-button-prev, #news .box-boccia .swiper-controller .swiper-button-next {
    width: 38px;
    height: 38px;
  }
}
#news .box-boccia .swiper-controller .swiper-button-prev::after, #news .box-boccia .swiper-controller .swiper-button-next::after {
  width: 8px;
  height: 18px;
  font-size: 1rem;
  color: #fff;
  vertical-align: middle;
}
@media (max-width: 769px) {
  #news .box-boccia .swiper-controller .swiper-button-prev::after, #news .box-boccia .swiper-controller .swiper-button-next::after {
    font-size: 12px;
    height: 12px;
  }
}
#news .box-boccia .swiper-controller .swiper-button-prev {
  margin-left: -10px;
}
#news .box-boccia .swiper-controller .swiper-button-prev::after {
  margin-left: -4px;
}
@media (max-width: 769px) {
  #news .box-boccia .swiper-controller .swiper-button-prev::after {
    margin-left: -2px;
  }
}
#news .box-boccia .swiper-controller .swiper-button-next {
  margin-right: -10px;
}
#news .box-boccia .swiper-controller .swiper-button-next::after {
  margin-right: -4px;
}
#news .molkky-block blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff4ea;
  border: 1px solid #dbbea4;
}
@media (max-width: 769px) {
  #news .molkky-block blockquote {
    display: block;
  }
}
#news .molkky-block blockquote .image {
  max-width: 300px;
  margin-right: 30px;
}
@media (max-width: 769px) {
  #news .molkky-block blockquote .image {
    max-width: 100%;
    margin: 0 auto 20px;
  }
}
#news .molkky-block blockquote .image img {
  width: 100%;
  height: auto;
}
#news .molkky-block blockquote .body {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
#news .molkky-block blockquote .body h5 {
  font-size: 106.25%;
  color: #c09672;
}
#news .molkky-block blockquote .body p {
  font-size: 93.75%;
}
#news .molkky-block blockquote::before, #news .molkky-block blockquote::after {
  opacity: 1;
  color: #c09672;
}
@media (max-width: 769px) {
  #news .category-about {
    padding-top: 0;
  }
  #news .search {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 15px;
  }
  #news .search .search-item {
    font-size: 87.5%;
    padding: 0.2em 1em;
    margin-left: 0;
  }
  #news .news-area .news-list {
    width: 100%;
    padding: 0 0 20px;
  }
  #news .news-area .news-list .item > a .date, #news .news-area .news-list .item .wrap .date {
    margin-bottom: 0;
  }
  #news .news-area .news-list .item > a .category, #news .news-area .news-list .item .wrap .category {
    margin: 0 10px;
  }
  #news .news-area .news-list .item > a .title, #news .news-area .news-list .item .wrap .title {
    font-size: 93.75%;
    margin-top: 10px;
  }
  #news .entry-content .img-r, #news .entry-content .img-l {
    float: none;
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 100%;
  }
  #news .entry-content .img-r img, #news .entry-content .img-l img {
    width: 100%;
    height: auto;
  }
  #news .entry-content .interview-lead {
    margin: 30px 0 20px;
  }
  #news .entry-content .interview-title {
    font-size: 16px;
    font-weight: bold;
    padding: 16px 20px;
    margin: 20px 0px 20px;
    text-align: left;
  }
  #news .entry-content .h3-a {
    margin: 30px 0 20px;
  }
  #news .entry-content .h3-a > .title {
    margin: 0 !important;
    font-size: 16px;
  }
  #news .entry-content .question {
    margin: 20px 0;
  }
  #news .entry-content .question span {
    font-size: 14px;
  }
  #news .entry-content .question span.icon {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    font-size: 12px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  #news .entry-content .question span.text {
    line-height: 1.4;
    text-align: left;
  }
  #news .entry-content .balloon {
    padding: 20px 20px 1px;
  }
  #news .entry-content .balloon p {
    font-size: 12px;
    line-height: 1.6;
  }
  #news .entry-content .fukidashi {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #news .entry-content .fukidashi .photo {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #news .entry-content .fukidashi .photo.-right {
    margin: 20px auto 0;
  }
  #news .entry-content .fukidashi .photo.-left {
    margin: 20px auto 0;
  }
  #news .entry-content .fukidashi .commenter {
    margin-bottom: 0;
  }
  #news .entry-content .fukidashi .commenter img {
    width: 80px;
    height: auto;
  }
  #news .entry-content .fukidashi .commenter .author {
    font-size: 10px;
    margin-top: 8px;
  }
  #news .entry-content .fukidashi .balloon {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #news .entry-content .fukidashi .balloon p {
    font-size: 12px !important;
    line-height: 1.6;
  }
  #news .entry-content .fukidashi .balloon.-left {
    margin-left: 20px;
  }
  #news .entry-content .fukidashi .balloon.-right {
    margin-right: 20px;
  }
  #news .entry-content .fukidashi .balloon.-last {
    margin-bottom: 0;
  }
}

/**************************************************
	Case
***************************************************/
#case {
  /* -----------------------------------------------
    Common Setting
  -------------------------------------------------- */
  /* -----------------------------------------------
    Filter
  -------------------------------------------------- */
  /* -----------------------------------------------
    Hero
  -------------------------------------------------- */
  /* -----------------------------------------------
    Case List
  -------------------------------------------------- */
}
#case .top-slider {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
#case .top-slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#case .top-slider .swiper-pagination {
  position: static;
  text-align: center;
  height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.56rem;
}
@media (max-width: 769px) {
  #case .top-slider .swiper-pagination {
    margin: 1rem auto;
  }
}
#case .top-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #ccc;
  display: block;
  opacity: 1;
  margin: 0 4px;
}
#case .top-slider .swiper-pagination-bullet-active {
  background: #a8884e;
}
#case .filter {
  background: #fafafa;
  padding: 20px 20px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 769px) {
  #case .filter {
    float: none;
    width: 100%;
    margin-right: 0;
    position: static;
    padding: 20px;
  }
}
#case .filter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  #case .filter form {
    display: block;
  }
}
#case .filter form::before {
  content: "ご利用例を探す：";
  font-size: 112.5%;
  margin-right: 20px;
  font-weight: bold;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 769px) {
  #case .filter form::before {
    font-size: 100%;
    margin: 0 auto 10px;
    display: block;
  }
}
#case .filter form select, #case .filter form option {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #333;
  cursor: pointer;
  padding: 10px 30px 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  margin-right: 20px;
}
#case .filter form select.filter-nav, #case .filter form option.filter-nav {
  width: 100%;
  max-width: 280px;
}
@media (max-width: 769px) {
  #case .filter form select, #case .filter form option {
    width: 100%;
    margin-right: 0;
    font-size: 87.5%;
    margin-bottom: 10px;
  }
}
#case .filter form select {
  background: #fff url(../images/ico_arrow_bottom.svg) no-repeat;
  background-position: 92% center;
  background-size: 14px 6px;
}
#case .filter form .button-reset {
  margin-left: auto;
  margin-bottom: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 769px) {
  #case .filter form .button-reset {
    margin: 10px auto 0;
    text-align: center;
  }
}
#case .filter form .button-reset button {
  background: #fff;
  border: 1px solid #a8884e;
  color: #a8884e;
  border-radius: 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: auto;
  padding: 2px 10px 0;
}
@media (max-width: 769px) {
  #case .filter form .button-reset button {
    font-size: 87.5%;
  }
}
#case .filter form .button-reset:hover button {
  background: #a8884e;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .main-visual {
  overflow: hidden;
}
#case .article-slider {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
#case .hero-card {
  width: 100%;
  display: block;
  text-decoration: none;
  position: relative;
  color: #fff;
}
#case .hero-card .thumbnail {
  position: relative;
  overflow: hidden;
}
#case .hero-card .thumbnail.-new::after {
  content: "";
  background: url(../images/icon/icon_new.svg) no-repeat;
  background-size: 70px 70px;
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
#case .hero-card .thumbnail .label-list {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 769px) {
  #case .hero-card .thumbnail .label-list {
    top: 10px;
    left: 10px;
  }
}
#case .hero-card .thumbnail .label-list > .item {
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.2em;
  font-size: 75%;
  font-weight: bold;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
}
#case .hero-card .thumbnail .label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.2em;
  font-size: 75%;
  font-weight: bold;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 769px) {
  #case .hero-card .thumbnail .label {
    top: 10px;
    left: 10px;
  }
}
#case .hero-card .thumbnail img {
  width: auto;
  max-width: none;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 769px) {
  #case .hero-card .thumbnail img {
    width: 100vw;
    height: auto;
  }
}
#case .hero-card .body {
  width: 100%;
  padding: 60px 20px 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
@media (max-width: 769px) {
  #case .hero-card .body {
    padding: 40px 0 20px;
  }
}
#case .hero-card .body .category {
  font-size: 87.5%;
  font-weight: 500;
  display: inline-block;
  border-bottom: 1px solid #fff;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (max-width: 769px) {
  #case .hero-card .body .category {
    font-size: 75%;
  }
}
#case .hero-card .body .title {
  font-size: 125%;
  font-weight: 500;
  display: block;
  margin: 10px auto 5px;
  line-height: 1.6;
}
@media (max-width: 769px) {
  #case .hero-card .body .title {
    font-size: 100%;
  }
}
[lang=ja] #case .hero-card .body .title {
  font-weight: bold;
}
#case .hero-card .body .data {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#case .hero-card .body .data .time {
  font-size: 87.5%;
}
@media (max-width: 769px) {
  #case .hero-card .body .data .time {
    font-size: 75%;
  }
}
#case .hero-card .body .data .time::after {
  content: "";
  background: #e6e6e6;
  width: 1px;
  height: 0.63rem;
  margin: 0 0.88rem;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 769px) {
  #case .hero-card .body .data .time::after {
    margin: 0 0.44rem;
  }
}
#case .hero-card .body .data .tag {
  font-size: 87.5%;
}
@media (max-width: 769px) {
  #case .hero-card .body .data .tag {
    font-size: 75%;
  }
}
#case .hero-card:hover img {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 -20px -40px;
}
@media (max-width: 769px) {
  #case .case-list {
    margin: 0 -5px -20px;
  }
}
#case .case-list .case {
  width: 33.3333%;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 769px) {
  #case .case-list .case {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 20px;
  }
}
#case .case-list .case a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #333;
  position: relative;
  -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
#case .case-list .case a.item-case {
  background: #a8884e;
  color: #fff;
}
#case .case-list .case a.item-case .label {
  background: #a8884e;
  color: #fff;
}
#case .case-list .case a.item-case .body {
  background: #a8884e;
}
#case .case-list .case a.item-case .body .data {
  color: #fff;
}
#case .case-list .case a.item-case .body .case-study {
  color: #fff;
}
#case .case-list .case a.item-case .body .case-study::before {
  background: url(../images/icon/icon_pickup_white.svg) no-repeat;
  background-size: 21px 14px;
}
#case .case-list .case a.item-case .more {
  border-top: 1px solid #fff;
  color: #fff;
}
#case .case-list .case a.item-case .more .icon::before {
  background: #fff;
}
#case .case-list .case a.item-case .more .icon::after {
  border-top: 1px solid #a8884e;
  border-right: 1px solid #a8884e;
}
#case .case-list .case a.item-case:hover {
  color: #fff;
  opacity: 0.8;
}
#case .case-list .case a.item-case:hover .thumbnail img {
  opacity: 1;
}
#case .case-list .case a.item-case:hover .data {
  color: #fff;
}
#case .case-list .case a.item-case:hover .more {
  border-top: 1px solid #fff;
}
#case .case-list .case a:hover {
  text-decoration: none;
  color: #a8884e;
  opacity: 1;
}
#case .case-list .case a:hover .thumbnail img {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case a:hover .label {
  background: #a8884e;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case a:hover .data {
  color: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case a:hover .data .tag::after {
  background: #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case a:hover .more {
  border-color: #a8884e;
  background: #a8884e;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case a:hover .more .icon::before {
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case a:hover .more .icon::after {
  border-top: 1px solid #a8884e;
  border-right: 1px solid #a8884e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case .thumbnail {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px 10px 0 0;
}
#case .case-list .case .thumbnail.-interview::after {
  content: "";
  background: #fff url(../images/icon/icon_microphone.svg) no-repeat center center;
  background-size: 17px 20px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#case .case-list .case .thumbnail img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}
#case .case-list .case .thumbnail .label-list {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 769px) {
  #case .case-list .case .thumbnail .label-list {
    top: 10px;
    left: 10px;
  }
}
#case .case-list .case .thumbnail .label-list > .item {
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.3em;
  font-size: 75%;
  font-weight: bold;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
}
#case .case-list .case .thumbnail .label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.3em;
  font-size: 75%;
  font-weight: bold;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 769px) {
  #case .case-list .case .thumbnail .label {
    top: 10px;
    left: 10px;
  }
}
#case .case-list .case .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
#case .case-list .case .body .data {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case .body .data .time {
  font-size: 87.5%;
}
@media (max-width: 769px) {
  #case .case-list .case .body .data .time {
    font-size: 75%;
  }
}
#case .case-list .case .body .data .time::after {
  content: "";
  background: #e6e6e6;
  width: 1px;
  height: 0.63rem;
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 769px) {
  #case .case-list .case .body .data .time::after {
    margin: 0 0.44rem;
  }
}
#case .case-list .case .body .data .tag {
  font-size: 87.5%;
}
@media (max-width: 769px) {
  #case .case-list .case .body .data .tag {
    font-size: 75%;
  }
}
#case .case-list .case .body .data .interview, #case .case-list .case .body .data .case-study {
  margin-left: auto;
  font-size: 75%;
  color: #a8884e;
}
@media (max-width: 769px) {
  #case .case-list .case .body .data .interview, #case .case-list .case .body .data .case-study {
    width: 100%;
    display: block;
  }
}
#case .case-list .case .body .data .interview::before, #case .case-list .case .body .data .case-study::before {
  content: "";
  background: url(../images/icon/icon_microphone.svg) no-repeat;
  background-size: 14px 16px;
  width: 14px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
@media (max-width: 769px) {
  #case .case-list .case .body .data .interview, #case .case-list .case .body .data .case-study {
    font-size: 75%;
    margin-top: 5px;
  }
}
#case .case-list .case .body .data .case-study::before {
  background: url(../images/icon/icon_pickup.svg) no-repeat;
  background-size: 21px 14px;
  width: 21px;
  height: 14px;
}
#case .case-list .case .body .text {
  display: block;
  font-weight: bold;
  margin: 0 0 20px;
}
@media (max-width: 769px) {
  #case .case-list .case .body .text {
    margin: 0 0 10px;
  }
}
#case .case-list .case .body .more {
  font-size: 75%;
  display: block;
  padding: 10px 0;
  margin: auto -20px -20px;
  text-align: center;
  border-top: 1px solid #eee;
  color: #a8884e;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case .body .more .icon {
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
#case .case-list .case .body .more .icon::before, #case .case-list .case .body .more .icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#case .case-list .case .body .more .icon::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a8884e;
}
#case .case-list .case .body .more .icon::after {
  left: 3px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
#case .case-list::before, #case .case-list::after {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  content: "";
  display: block;
  width: 33.3333%;
}
@media (max-width: 769px) {
  #case .case-list::before, #case .case-list::after {
    width: 50%;
  }
}
#case .notfound {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 40px 0 0;
  text-align: center;
}
@media (max-width: 769px) {
  #case .notfound {
    margin-top: 20px;
  }
}
#case .how-to-use {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: -30px;
}
@media (max-width: 769px) {
  #case .how-to-use {
    display: block;
    margin-bottom: -20px;
  }
}
#case .how-to-use > .column {
  width: calc((100% - 30px) / 2);
  margin-bottom: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 769px) {
  #case .how-to-use > .column {
    width: 100%;
    margin-bottom: 20px;
  }
}
#case .how-to-use > .column .case {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #a8884e;
  padding: 0.4em 0.8em 0.3em;
  font-size: 75%;
  font-weight: bold;
}
@media (max-width: 769px) {
  #case .how-to-use > .column .case {
    top: 10px;
    left: 10px;
  }
}
#case .how-to-use > .column .photo img {
  max-width: 100%;
}
#case .how-to-use > .column .photo .caption {
  font-size: 100%;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
#case .how-to-use > .column .photo .caption .place, #case .how-to-use > .column .photo .caption .title {
  color: #fff;
  padding: 0.5em 1em 0.4em;
}
#case .how-to-use > .column .photo .caption .place {
  background: #a8884e;
}
#case .how-to-use > .column .photo .caption .title {
  background: #333333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#case .how-to-use > .column .text {
  font-size: 100%;
  font-weight: 500;
  background: #fafafa;
  padding: 20px 30px;
  line-height: 2;
  height: 100%;
}
@media (max-width: 769px) {
  #case .how-to-use > .column .text {
    padding: 15px 20px;
    height: auto;
  }
}
#case .how-to-use > .column::before {
  content: "";
}
#case .how-to-use::after {
  content: "";
  display: block;
  width: calc((100% - 30px) / 2);
}
@media (max-width: 769px) {
  #case .how-to-use::after {
    display: none;
  }
}

/**************************************************
	LP
***************************************************/
.lp-puroland .category-cover > .inner > .photo {
  margin-bottom: 30px;
}
.lp-puroland .category-cover > .inner > .photo img {
  border-radius: 10px;
}
.lp-puroland .h3-a {
  color: #f68ca2;
  border-left: none !important;
  border-top: 2px solid #f68ca2;
}
.lp-puroland .h3-a > .title {
  background: #fff9fa;
  border-bottom: 1px solid #fbe6ea;
  display: block;
  text-align: center;
}
@media (max-width: 769px) {
  .lp-puroland .h4-a {
    line-height: 1.6;
  }
}
.lp-puroland .h4-a .text {
  color: #f68ca2;
}
.lp-puroland .h4-a .text::before, .lp-puroland .h4-a .text::after {
  background: #f68ca2;
}
.lp-puroland .h5-a {
  color: #f68ca2;
  font-size: 100%;
  margin-bottom: 20px;
}
@media (max-width: 769px) {
  .lp-puroland .h5-a {
    margin-bottom: 10px;
  }
}
.lp-puroland .table-a {
  border-top: 1px solid #f68ca2;
  margin-bottom: 30px;
}
.lp-puroland .table-a tbody tr th, .lp-puroland .table-a tbody tr td {
  padding: 16px;
}
@media (max-width: 769px) {
  .lp-puroland .table-a tbody tr th, .lp-puroland .table-a tbody tr td {
    padding: 10px;
  }
}
.lp-puroland .table-a tbody tr th {
  background: #fff9fa;
  color: #f68ca2;
  border-bottom: 1px solid #f68ca2;
}
.lp-puroland .table-a tbody tr td {
  border-bottom: 1px solid #f68ca2;
}
.lp-puroland .btn-more {
  background: #f68ca2;
  border: 1px solid #f68ca2;
  padding: 10px 20px;
}
.lp-puroland .btn-more:hover {
  background: #fff;
  color: #f68ca2;
}
.lp-puroland .link-text {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  color: #f68ca2;
  font-weight: bold;
}
.lp-puroland .link-text::after {
  content: "";
  background: url(../images/ico_external-pink.svg) no-repeat;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0 8px 0 6px;
}
.lp-puroland .link-text:hover {
  text-decoration: none;
}
.lp-puroland .box-a {
  border: 1px solid #f68ca2;
  border-radius: 10px;
  margin-top: 30px;
}
.lp-puroland .box-d {
  background: #f8f8f8;
}
.lp-puroland ol.plain li {
  margin-bottom: 10px;
}
.lp-puroland .column-4 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 0 30px !important;
}
@media (max-width: 769px) {
  .lp-puroland .column-4 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 20px !important;
  }
}
.lp-puroland .column-4 > .column {
  width: 100%;
  margin: 0 !important;
  border-radius: 6px;
}
.lp-puroland .column-4 > .column a {
  display: block;
  border-radius: 6px;
}
.lp-puroland .column-4 > .column a img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.lp-puroland .column-4 > .column .caption {
  border-radius: 0 0 6px 6px;
  padding-bottom: 10px;
}
.lp-puroland .column-4::before, .lp-puroland .column-4::after {
  display: none;
}
.lp-puroland .box-flex .box-right {
  max-width: 512px !important;
}
@media (max-width: 769px) {
  .lp-puroland .box-flex .box-right {
    max-width: 100% !important;
  }
}
.lp-puroland .copyright-a img {
  max-width: 344px;
  height: auto;
  display: block;
  text-align: right;
  margin: 10px 0 0 auto;
}
.lp-puroland .copyright-b img {
  max-width: 412px;
  height: auto;
  display: block;
  text-align: right;
  margin: 10px 0 0 auto;
}
.lp-puroland .copyright-c img {
  max-width: 300px;
  height: auto;
  display: block;
  text-align: right;
  margin: 10px 0 0 auto;
  border-radius: 0 !important;
}
.lp-puroland .category-about {
  width: 100%;
  border-radius: 10px;
  background: #f68ca2;
  padding-bottom: 40px;
}
@media (max-width: 769px) {
  .lp-puroland .category-about {
    padding: 20px !important;
  }
}
.lp-puroland .category-about > .entry-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
}
@media (max-width: 769px) {
  .lp-puroland .category-about > .entry-content {
    width: 100%;
    padding: 20px;
  }
}
.lp-puroland .category-about > .entry-content > .title {
  text-align: center;
  color: #f68ca2;
  font-weight: bold;
  border-bottom: 2px solid #f68ca2;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .lp-puroland .category-about > .entry-content > .title {
    padding-bottom: 15px;
    margin-top: 5px;
  }
}
.lp-puroland .category-about > .entry-content > .title > .sub {
  font-size: 112.5%;
  display: block;
}
@media (max-width: 769px) {
  .lp-puroland .category-about > .entry-content > .title > .sub {
    font-size: 100%;
    margin-top: 10px;
  }
}
.lp-puroland .category-about > .entry-content > .title > .main {
  font-size: 175%;
  display: block;
}
@media (max-width: 769px) {
  .lp-puroland .category-about > .entry-content > .title > .main {
    font-size: 150%;
    line-height: 1.6;
  }
}
@media (max-width: 769px) {
  .lp-puroland .category-about > .entry-content > .title._large {
    font-size: 100% !important;
  }
}
.lp-puroland .logo-puroland {
  text-align: center;
  margin-bottom: 20px;
}
.lp-puroland .logo-puroland .caption {
  font-size: 12px;
  margin-top: 16px;
  line-height: 1;
  display: block;
}
.lp-puroland .logo-puroland .caption img {
  width: 300px;
  height: auto;
}
.lp-puroland .access-map {
  max-width: 75%;
  margin: 0 auto 30px;
}
@media (max-width: 769px) {
  .lp-puroland .access-map {
    max-width: 100%;
  }
}
.lp-puroland .access-map a {
  display: block;
}
.lp-puroland .access-map a img {
  width: 100%;
  height: auto;
}
.lp-puroland .access-map a:hover {
  opacity: 0.6;
}
.lp-puroland .fukidashi-a {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  width: 100%;
  max-width: 100%;
  color: #f68ca2;
  background: #FFF;
  border: solid 1px #f68ca2;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.lp-puroland .fukidashi-a::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}
.lp-puroland .fukidashi-a::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #f68ca2;
  z-index: 1;
}
.lp-puroland .fukidashi-a p {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/**************************************************
	LP
***************************************************/
.lp-boccia .category-cover .category-about .index {
  min-width: 380px;
}
@media (max-width: 769px) {
  .lp-boccia .category-cover .category-about .index {
    min-width: 100%;
  }
}
.lp-boccia .category-cover .category-about .index .index-list > li a, .lp-boccia .category-cover .category-about .index .index-list-b > li a {
  font-size: 14px;
  font-weight: bold;
  color: #6fba2c;
}
.lp-boccia .category-cover .category-about .index .index-list > li a:hover .text, .lp-boccia .category-cover .category-about .index .index-list-b > li a:hover .text {
  background: #6fba2c;
  color: #fff;
}
.lp-boccia .category-cover .category-about .index .index-list > li a .text, .lp-boccia .category-cover .category-about .index .index-list-b > li a .text {
  padding: 10px 15px;
}
.lp-boccia .category-cover .category-about .index .index-list > li a .text::after,
.lp-boccia .category-cover .category-about .index .index-list-b > li a .text::after {
  background: url(../images/ico_arrow_bottom_black.svg) no-repeat;
  background-size: 10px 4px;
  width: 10px;
  height: 4px;
  top: calc((100% - 4px) / 2);
  right: 15px;
}
.lp-boccia .category-cover .category-about .index .index-list > li a:hover .text::after, .lp-boccia .category-cover .category-about .index .index-list-b > li a:hover .text::after {
  background: url(../images/ico_arrow_bottom_white.svg) no-repeat;
  background-size: 10px 4px;
}
.lp-boccia .category-cover .category-about .index .index-list > li a .num, .lp-boccia .category-cover .category-about .index .index-list-b > li a .num {
  width: 50px;
  min-height: 50px;
  background: #6fba2c;
  border-right: 1px solid #fafafa;
  font-size: 14px;
}
.lp-boccia .h3-a {
  color: #6fba2c;
  border-left: none !important;
  border-top: 2px solid #6fba2c;
}
.lp-boccia .h3-a > .title {
  background: #f8fff1;
  border-bottom: 1px solid #d3eebc;
  display: block;
  text-align: center;
}
@media (max-width: 769px) {
  .lp-boccia .h4-a {
    line-height: 1.6;
  }
}
.lp-boccia .h4-a .text {
  color: #6fba2c;
}
.lp-boccia .h4-a .text::before, .lp-boccia .h4-a .text::after {
  background: #6fba2c;
}
.lp-boccia .h5-a {
  color: #6fba2c;
  font-size: 100%;
  margin-bottom: 20px;
}
@media (max-width: 769px) {
  .lp-boccia .h5-a {
    margin-bottom: 10px;
  }
}
.lp-boccia .lead-text {
  font-size: 106.25%;
  line-height: 2;
  text-align: center;
}
@media (max-width: 769px) {
  .lp-boccia .lead-text {
    text-align: left;
  }
  .lp-boccia .lead-text br {
    display: none;
  }
}
.lp-boccia .table-a {
  border-top: 1px solid #6fba2c;
  margin-bottom: 30px;
}
.lp-boccia .table-a tbody tr th, .lp-boccia .table-a tbody tr td {
  padding: 16px;
}
@media (max-width: 769px) {
  .lp-boccia .table-a tbody tr th, .lp-boccia .table-a tbody tr td {
    padding: 10px;
  }
}
.lp-boccia .table-a tbody tr th {
  width: 200px;
  background: #f8fff1;
  color: #6fba2c;
  border-bottom: 1px solid #6fba2c;
}
@media (max-width: 769px) {
  .lp-boccia .table-a tbody tr th {
    width: auto;
  }
}
.lp-boccia .table-a tbody tr td {
  border-bottom: 1px solid #6fba2c;
}
.lp-boccia .btn-more {
  max-width: 420px;
  background: #6fba2c;
  border: 1px solid #6fba2c;
  padding: 10px 20px;
}
.lp-boccia .btn-more:hover {
  background: #fff;
  color: #6fba2c;
}
.lp-boccia .btn-more.-outline {
  font-size: 87.5%;
  background: #fff;
  border: 1px solid #6fba2c;
  color: #6fba2c;
  padding: 7px 20px;
  min-width: inherit;
}
.lp-boccia .btn-more.-outline:hover {
  background: #6fba2c;
  border: 1px solid #6fba2c;
  color: #fff;
}
.lp-boccia .link-text {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  color: #6fba2c;
  font-weight: bold;
}
.lp-boccia .link-text::after {
  content: "";
  background: url(../images/ico_external-pink.svg) no-repeat;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0 8px 0 6px;
}
.lp-boccia .link-text:hover {
  text-decoration: none;
}
.lp-boccia .box-a {
  border: 1px solid #6fba2c;
  border-radius: 10px;
  margin-top: 30px;
}
.lp-boccia .box-d {
  background: #f8f8f8;
}
.lp-boccia ol.plain li {
  margin-bottom: 10px;
}
.lp-boccia .column-3 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 0 30px !important;
}
@media (max-width: 769px) {
  .lp-boccia .column-3 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 20px !important;
  }
}
.lp-boccia .column-3 > .column {
  width: 100%;
  margin: 0 !important;
  border-radius: 6px;
}
.lp-boccia .column-3 > .column a {
  display: block;
  border-radius: 6px;
}
.lp-boccia .column-3 > .column a img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.lp-boccia .column-3 > .column .caption {
  border-radius: 0 0 6px 6px;
  padding-bottom: 10px;
}
.lp-boccia .column-3::before, .lp-boccia .column-3::after {
  display: none;
}
.lp-boccia .column-4 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 0 0 30px !important;
}
@media (max-width: 769px) {
  .lp-boccia .column-4 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 20px !important;
  }
}
.lp-boccia .column-4 > .column {
  width: 100%;
  margin: 0 !important;
  border-radius: 6px;
}
.lp-boccia .column-4 > .column a {
  display: block;
  border-radius: 6px;
}
.lp-boccia .column-4 > .column a img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.lp-boccia .column-4 > .column .caption {
  border-radius: 0 0 6px 6px;
  padding-bottom: 10px;
}
.lp-boccia .column-4::before, .lp-boccia .column-4::after {
  display: none;
}
.lp-boccia .box-flex .box-right {
  max-width: 512px !important;
}
@media (max-width: 769px) {
  .lp-boccia .box-flex .box-right {
    max-width: 100% !important;
  }
}
.lp-boccia .entry-content-wrap {
  width: 100%;
  border-radius: 10px;
  background: #6fba2c;
  padding-bottom: 40px;
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap {
    padding: 20px !important;
  }
}
.lp-boccia .entry-content-wrap > .entry-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap > .entry-content {
    width: 100%;
    padding: 20px;
  }
}
.lp-boccia .entry-content-wrap > .entry-content > .title {
  text-align: center;
  color: #6fba2c;
  font-weight: bold;
  border-bottom: 2px solid #6fba2c;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap > .entry-content > .title {
    padding-bottom: 15px;
    margin-top: 5px;
  }
}
.lp-boccia .entry-content-wrap > .entry-content > .title > .sub {
  font-size: 112.5%;
  display: block;
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap > .entry-content > .title > .sub {
    font-size: 100%;
    margin-top: 10px;
  }
}
.lp-boccia .entry-content-wrap > .entry-content > .title > .main {
  font-size: 175%;
  display: block;
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap > .entry-content > .title > .main {
    font-size: 150%;
    line-height: 1.6;
  }
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap > .entry-content > .title._large {
    font-size: 100% !important;
  }
}
.lp-boccia .entry-content-wrap .entry-content-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap .entry-content-index {
    display: block;
  }
}
.lp-boccia .entry-content-wrap .entry-content-index > .index {
  margin-left: 30px;
}
@media (max-width: 769px) {
  .lp-boccia .entry-content-wrap .entry-content-index > .index {
    margin-left: 0;
    margin-top: 20px;
  }
}
.lp-boccia .fukidashi-a {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
  padding: 7px 20px;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #6fba2c;
  background: #FFF;
  border: solid 1px #6fba2c;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.lp-boccia .fukidashi-a::after {
  content: "";
  background: url(../news/plan/images/fukidashi-a.gif) no-repeat;
  width: 30px;
  height: 14px;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: -14px;
  left: calc((100% - 30px) / 2);
  z-index: 2;
}
.lp-boccia .fukidashi-a p {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.lp-boccia .boccia-point {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 20px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .lp-boccia .boccia-point {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px 0;
    margin-bottom: 20px;
  }
}
.lp-boccia .boccia-point > .item {
  padding: 20px;
  border: 1px solid #6fba2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp-boccia .boccia-point > .item > .inner > .illust {
  width: 250px;
  height: 250px;
  margin: 0 auto 15px;
  text-align: center;
  border: 1px solid #6fba2c;
  border-radius: 100%;
  overflow: hidden;
  background: #f8fff1;
}
.lp-boccia .boccia-point > .item > .inner > .illust img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 100%;
}
.lp-boccia .boccia-point > .item > .inner > p {
  text-align: center;
  font-weight: bold;
  margin: 0;
}
.lp-boccia .boccia-point > .item > .inner > p > strong {
  color: #6fba2c;
}
.lp-boccia .about-boccia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .lp-boccia .about-boccia {
    display: block;
    margin-bottom: 20px;
  }
}
.lp-boccia .about-boccia > .illust {
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  .lp-boccia .about-boccia > .illust {
    margin: 0 auto 20px;
  }
}
.lp-boccia .about-boccia > .illust img {
  width: 100%;
  max-width: 560px;
  height: auto;
}
@media (max-width: 769px) {
  .lp-boccia .about-boccia > .illust img {
    max-width: 100%;
  }
}
.lp-boccia .about-boccia > .body {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.lp-boccia .about-boccia > .body > .item {
  background: #f8fff1;
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .lp-boccia .about-boccia > .body > .item {
    margin-bottom: 20px;
  }
}
.lp-boccia .about-boccia > .body > .item > .title {
  font-size: 100%;
  font-weight: bold;
  color: #6fba2c;
  margin-bottom: 10px;
}
@media (max-width: 769px) {
  .lp-boccia .about-boccia > .body > .item > .title {
    margin-top: 0;
  }
}
.lp-boccia .about-boccia > .body > .item > p {
  font-size: 93.75%;
  margin-bottom: 0;
}
.lp-boccia .about-boccia > .body > .item:last-child {
  margin-bottom: 0;
}
.lp-boccia .voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px 10px;
}
.lp-boccia .voice-list .item {
  width: 25%;
  padding: 0 10px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 769px) {
  .lp-boccia .voice-list .item {
    width: 50%;
  }
}
.lp-boccia .voice-list .item::before {
  content: "";
  background: url(../images/icon/icon_clip_green.svg) no-repeat;
  width: 20px;
  height: 22px;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 2;
}
.lp-boccia .voice-list .item .body {
  background: #cff0b1;
  padding: 10px;
  font-size: 14px;
  position: relative;
  margin-bottom: 20px;
  height: 100%;
}
@media (max-width: 769px) {
  .lp-boccia .voice-list .item .body {
    padding: 5px;
    font-size: 12px;
  }
}
.lp-boccia .voice-list .item .body .inner {
  background: #fff;
  padding: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-weight: bold;
  color: #6fba2c;
}
@media (max-width: 769px) {
  .lp-boccia .voice-list .item .body .inner {
    padding: 15px;
    text-align: left;
  }
  .lp-boccia .voice-list .item .body .inner br {
    display: none;
  }
}
.lp-boccia .voice-list .item .body .inner strong {
  color: #6fba2c;
}
.lp-boccia .voice-list .item .body::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #cff0b1 transparent transparent transparent;
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
}
.lp-boccia .voice-list .item .author .image {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  margin: 0 auto;
  background: #cff0b1;
}
.lp-boccia .voice-list .item .author .image::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 40px;
}
.lp-boccia .voice-list .item .author .image.-man1::before {
  content: "";
  background: url(../images/icon/icon_man1_green.svg) no-repeat;
}
.lp-boccia .voice-list .item .author .image.-man2::before {
  content: "";
  background: url(../images/icon/icon_man2_green.svg) no-repeat;
}
.lp-boccia .voice-list .item .author .image.-man3::before {
  content: "";
  background: url(../images/icon/icon_man3_green.svg) no-repeat;
}
.lp-boccia .voice-list .item .author .image.-man4::before {
  content: "";
  background: url(../images/icon/icon_man4_green.svg) no-repeat;
}
.lp-boccia .voice-list .item .author .image.-woman1::before {
  content: "";
  background: url(../images/icon/icon_woman1_green.svg) no-repeat;
}
.lp-boccia .voice-list .item .author .image.-woman2::before {
  content: "";
  background: url(../images/icon/icon_woman2_green.svg) no-repeat;
}
.lp-boccia .voice-list .item .author .image.-woman3::before {
  content: "";
  background: url(../images/icon/icon_woman3_green.svg) no-repeat;
}
.lp-boccia .voice-list .item .author > .name {
  font-size: 87.5%;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 10px auto 0;
  color: #6fba2c;
}
.lp-boccia .carousel-slide-column3-1, .lp-boccia .carousel-slide-column3-2,
.lp-boccia .carousel-slide-column4-1 {
  overflow: hidden;
}
.lp-boccia .carousel-slide-column3-1 .swiper-slide, .lp-boccia .carousel-slide-column3-2 .swiper-slide,
.lp-boccia .carousel-slide-column4-1 .swiper-slide {
  position: relative;
  border-radius: 6px;
}
.lp-boccia .carousel-slide-column3-1 .swiper-slide a, .lp-boccia .carousel-slide-column3-2 .swiper-slide a,
.lp-boccia .carousel-slide-column4-1 .swiper-slide a {
  display: block;
  border-radius: 6px;
}
.lp-boccia .carousel-slide-column3-1 .swiper-slide a:hover, .lp-boccia .carousel-slide-column3-2 .swiper-slide a:hover,
.lp-boccia .carousel-slide-column4-1 .swiper-slide a:hover {
  opacity: 0.6;
}
.lp-boccia .carousel-slide-column3-1 .swiper-slide img, .lp-boccia .carousel-slide-column3-2 .swiper-slide img,
.lp-boccia .carousel-slide-column4-1 .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.lp-boccia .carousel-slide-column3-1 .swiper-slide .caption, .lp-boccia .carousel-slide-column3-2 .swiper-slide .caption,
.lp-boccia .carousel-slide-column4-1 .swiper-slide .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
  font-weight: bold;
  color: #fff;
  border-radius: 0 0 6px 6px;
}
.lp-boccia .carousel-slide-column3-1 .swiper-slide .caption .title, .lp-boccia .carousel-slide-column3-2 .swiper-slide .caption .title,
.lp-boccia .carousel-slide-column4-1 .swiper-slide .caption .title {
  font-size: 87.5%;
  font-weight: bold;
  color: #fff;
}
.lp-boccia .carousel-slide-column3-1 .swiper-slide {
  width: calc((100% - 40px) / 3);
}
.lp-boccia .carousel-slide-column3-2 .swiper-slide {
  width: calc((100% - 40px) / 3);
}
.lp-boccia .carousel-slide-column4-1 .swiper-slide {
  width: calc((100% - 60px) / 4);
}
.lp-boccia .swiper-controller {
  width: 100%;
  margin: 42px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.lp-boccia .swiper-controller .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  .lp-boccia .swiper-controller .swiper-pagination {
    margin-top: -10px;
  }
}
.lp-boccia .swiper-controller .swiper-pagination::before, .lp-boccia .swiper-controller .swiper-pagination::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin: 0 30px;
}
@media (max-width: 769px) {
  .lp-boccia .swiper-controller .swiper-pagination::before, .lp-boccia .swiper-controller .swiper-pagination::after {
    display: none;
  }
}
.lp-boccia .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #e5e5e5;
  opacity: 1;
}
.lp-boccia .swiper-controller .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6fba2c;
}
.lp-boccia .swiper-controller .swiper-pagination .swiper-pagination-bullet:only-child {
  background: #6fba2c !important;
  display: block !important;
}
.lp-boccia .swiper-controller .swiper-button-prev, .lp-boccia .swiper-controller .swiper-button-next {
  position: relative;
  background: #6fba2c;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(17, 90, 24, 0.1);
          box-shadow: 0px 0px 30px 0px rgba(17, 90, 24, 0.1);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  .lp-boccia .swiper-controller .swiper-button-prev, .lp-boccia .swiper-controller .swiper-button-next {
    width: 38px;
    height: 38px;
  }
}
.lp-boccia .swiper-controller .swiper-button-prev::after, .lp-boccia .swiper-controller .swiper-button-next::after {
  width: 8px;
  height: 18px;
  font-size: 1rem;
  color: #fff;
  vertical-align: middle;
}
@media (max-width: 769px) {
  .lp-boccia .swiper-controller .swiper-button-prev::after, .lp-boccia .swiper-controller .swiper-button-next::after {
    font-size: 12px;
    height: 12px;
  }
}
.lp-boccia .swiper-controller .swiper-button-prev {
  margin-left: -10px;
}
.lp-boccia .swiper-controller .swiper-button-prev::after {
  margin-left: -4px;
}
@media (max-width: 769px) {
  .lp-boccia .swiper-controller .swiper-button-prev::after {
    margin-left: -2px;
  }
}
.lp-boccia .swiper-controller .swiper-button-next {
  margin-right: -10px;
}
.lp-boccia .swiper-controller .swiper-button-next::after {
  margin-right: -4px;
}
.lp-boccia .case-block-boccia {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .lp-boccia .case-block-boccia {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.lp-boccia .case-block-boccia > .item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #6fba2c;
  padding: 20px;
  height: 100%;
}
@media (max-width: 769px) {
  .lp-boccia .case-block-boccia > .item > a {
    display: block;
  }
}
.lp-boccia .case-block-boccia > .item > a .thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 200px;
}
@media (max-width: 769px) {
  .lp-boccia .case-block-boccia > .item > a .thumb {
    max-width: 100%;
  }
}
.lp-boccia .case-block-boccia > .item > a .thumb img {
  width: 100%;
  height: auto;
}
.lp-boccia .case-block-boccia > .item > a .body {
  margin-left: 20px;
}
@media (max-width: 769px) {
  .lp-boccia .case-block-boccia > .item > a .body {
    margin-left: 0;
  }
}
.lp-boccia .case-block-boccia > .item > a .body .title {
  font-size: 87.5%;
  display: block;
  color: #6fba2c;
  font-weight: bold;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lp-boccia .case-block-boccia > .item > a .body .lead {
  font-size: 75%;
  display: block;
  color: #000;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lp-boccia .case-block-boccia > .item > a .body .btn {
  font-size: 75%;
  display: block;
  background: #6fba2c;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  padding: 4px 20px 2px;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 769px) {
  .lp-boccia .case-block-boccia > .item > a .body .btn {
    margin: 0 auto;
  }
}
.lp-boccia .case-block-boccia > .item > a:hover {
  text-decoration: none !important;
  background: #6fba2c;
}
.lp-boccia .case-block-boccia > .item > a:hover .body > .title {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lp-boccia .case-block-boccia > .item > a:hover .body > .lead {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lp-boccia .case-block-boccia > .item > a:hover .body > .btn {
  background-color: #fff;
  color: #6fba2c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lp-boccia .activity-list > .column {
  margin-bottom: 0;
  padding: 20px 20px 30px;
  background: #f8fff1;
}
.lp-boccia .activity-list > .column > .text {
  font-weight: bold;
  text-align: center;
}
.lp-boccia .activity-list > .column > .image {
  max-width: 440px;
  margin: 0 auto;
}
.lp-boccia .activity-list > .column > .image img {
  border-radius: 6px;
}
@media (max-width: 769px) {
  .lp-boccia .activity-list > .column {
    margin-bottom: 20px;
  }
}
