@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

input[type="reset"],
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

button {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

table {
  display: table;
  width: 100%;
}

strong {
  font-weight: bold;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #333333;
  background: #fff url(../img/top/bg_pattern.png) repeat center 0;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Times New Roman", "メイリオ", Meiryo, Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  font-feature-settings: "palt";
}

.ft-century {
  font-family: CenturyGothic, "Century Gothic", sans-serif;
  font-style: inherit;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #333333;
  text-decoration: none;
}

.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}
.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.fz-sm {
  font-size: 12px;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
  text-justify: distribute;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-warning {
  color: #c11c1f;
}

.text-primary {
  color: #303f30;
}

.text-success {
  color: #689c79;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.wrapper {
  min-width: 1000px;
}

.container {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE
 * ----------------------------------------------- */
.sm, .sm-inline {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 13.02083vw;
  }

  body {
    font-size: 0.3rem;
  }

  .is-scroll {
    padding-top: 131px;
  }

  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  .sm-inline {
    display: inline-block !important;
  }

  .trans,
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  .wrapper {
    width: auto;
    min-width: 320px;
  }

  .container {
    width: auto;
    margin: 0;
    padding-left: 0.36rem;
    padding-right: 0.36rem;
  }

  .fz-sm {
    font-size: 1em;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.site-header {
  background: #fff url(../img/common/bg_header.png) repeat 0 0;
  padding-bottom: 30px;
}

.header-sns {
  padding: 12px 15px 0 0;
}
.header-sns li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

/* Navigation */
.navbar-menu {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.navbar-menu .menu {
  position: relative;
  top: -10px;
}
.navbar-menu .menu li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 40px;
}
.navbar-menu .menu li:first-child {
  margin-left: 0;
}
.navbar-menu .menu li:last-child {
  margin-right: 0;
}
.navbar-menu .menu a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #303f30;
  text-align: center;
  letter-spacing: 0.1em;
}
.navbar-menu .menu .en {
  display: block;
  color: #689c79;
  font-family: "Times New Roman", serif;
  font-size: 0.8125em;
  font-weight: normal;
  letter-spacing: 0.05em;
}
.navbar-menu .logo {
  margin: 0 50px;
}

@media print, (min-width: 768px) {
  .header-sp {
    display: none !important;
  }

  .main-nav {
    display: block !important;
    height: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .site-header {
    position: relative;
    z-index: 9999;
    padding: 10px 0;
    background-repeat: no-repeat;
    background-image: url(../img/common/sp/bg_header.png);
    background-size: 120% auto;
  }
  .is-scroll .site-header, .menu-open .site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
  .is-scroll .site-header {
    visibility: visible;
    animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .site-header .header-sp {
    position: relative;
  }
  .site-header .logo-sp {
    display: inline-block;
    margin-left: 12%;
  }
  .site-header .logo-sp .fixed, .site-header .logo-sp .company-name {
    display: none;
  }
  .is-scroll .site-header .logo-sp {
    margin-left: 0;
  }
  .is-scroll .site-header .logo-sp .fixed, .is-scroll .site-header .logo-sp .company-name {
    display: inline-block;
  }
  .is-scroll .site-header .logo-sp .normal {
    display: none;
  }
  .site-header .logo-sp .fixed {
    width: 120px;
  }
  .site-header .logo-sp .company-name {
    vertical-align: middle;
    font-size: 11px;
    font-family: "Time New Roman", serif;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-left: 10px;
    color: #303f30;
  }

  .hamburger-btn {
    display: block;
    overflow: visible;
    margin: 0;
    padding: 7px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: 0.15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    position: absolute;
    right: -7px;
    top: 0;
    z-index: 9999;
  }

  .hamburger-box {
    position: relative;
    display: block;
    width: 33px;
    height: 22px;
  }

  .hamburger-inner,
  .hamburger-inner:after,
  .hamburger-inner:before {
    position: absolute;
    width: 100%;
    height: 1px;
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
    border-radius: 1px;
    background-color: #333;
  }

  .hamburger-inner {
    top: 0;
    display: block;
  }
  .hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
  }
  .hamburger-inner:before {
    top: 10px;
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform, opacity;
  }
  .hamburger-inner:after {
    top: 20px;
  }

  .is-open .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }
  .is-open .hamburger-inner:before {
    transform: rotate(-45deg) translate3d(-10px, -7px, 0);
    opacity: 0;
  }
  .is-open .hamburger-inner:after {
    transform: translate3d(0, -20px, 0) rotate(-90deg);
  }

  .main-nav {
    display: none;
    position: fixed;
    z-index: 9990;
    background: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
  }
  .main-nav .nav-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 100px 0 20px;
  }
  .main-nav .navbar-menu {
    display: block;
    width: 100%;
  }
  .main-nav .navbar-menu .menu {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0.3rem 0.4rem;
  }
  .main-nav .navbar-menu .menu li {
    display: block !important;
    margin: 0;
    text-align: center;
    width: 25%;
  }
  .main-nav .navbar-menu .menu a {
    display: inline-block;
    text-align: left;
    font-size: 0.49rem;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    line-height: 1.333;
    letter-spacing: 0.05em;
  }
  .main-nav .navbar-menu .menu a .en {
    font-size: 0.34rem;
  }
  .main-nav .navbar-menu .menu:last-child:after {
    content: "";
    width: 25%;
  }
  .main-nav .header-sns {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .main-nav .header-sns li {
    margin: 0 15px;
  }
  .main-nav .header-sns li a {
    display: block;
    width: 37px;
  }
  .main-nav .header-sns li a img {
    width: 100%;
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-101%);
    -ms-transform: translateY(-101%);
    transform: translateY(-101%);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.9);
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
.site-footer {
  background: url(../img/common/bg_footer.jpg) no-repeat center 0;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
}
.site-footer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: #485214;
  mix-blend-mode: multiply;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.site-footer .btn-top {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7) url(../img/common/arrow_up.svg) no-repeat center 10px;
  background-size: 14px auto;
  padding-top: 20px;
  border-radius: 30px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  position: fixed;
  right: 15px;
  bottom: 0;
  margin-bottom: 20px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.site-footer .btn-top.stuff {
  position: absolute;
  bottom: 100%;
}
.site-footer .addr {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 10px 0 15px;
}
.site-footer .footer-sns {
  margin-bottom: 15px;
}
.site-footer .footer-sns li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
}
.site-footer .copyright {
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 10px;
}

.menu-footer {
  padding: 24px 0;
}
.menu-footer li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 21px;
}
.menu-footer li a {
  display: block;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .site-footer {
    margin-top: 1.2rem;
    background-image: url(../img/common/sp/bg_footer.jpg);
  }
  .site-footer .btn-top {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 0.6rem;
    font-size: 0.26rem;
    background-size: 0.28rem auto;
    padding-top: 0.4rem;
  }
  .site-footer .addr {
    font-size: 0.36rem;
    margin: 0.24rem 0 0.36rem;
  }
  .site-footer .copyright {
    font-size: 0.24rem;
    padding: 0.2rem;
  }
  .site-footer .footer-sns {
    margin-bottom: 0.4rem;
  }
  .site-footer .footer-sns li {
    margin: 0 0.3rem;
  }
  .site-footer .footer-sns a {
    display: inline-block;
    width: 0.75rem;
  }
  .site-footer .footer-sns a img {
    width: 100%;
  }

  .logo-footer {
    padding-top: 0.45rem;
  }
  .logo-footer a {
    display: inline-block;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-footer:before {
    opacity: 0.8;
  }
}
/* CSS HELPERS DISPLAY
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .align-items-md-center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .justify-content-md-between {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .justify-content-md-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .align-items-md-end {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}
.d-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-items-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-items-end {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.justify-content-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-content-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* COMMON TITLES
 * ----------------------------------------------- */
.sec-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 25px;
  letter-spacing: 0.14em;
}
.sec-title .ttl-en {
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-family: "Times New Roman", serif;
  color: #689c79;
}

.sttl {
  text-align: center;
  font-size: 19px;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
}

.page-title {
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  position: relative;
  text-align: center;
}
.page-title:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(90, 108, 71, 0.8);
  mix-blend-mode: multiply;
}
.page-title .container {
  height: 365px;
}
.page-title .container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.page-title .sec-title {
  color: #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.page-title .sec-title .ttl-en {
  color: inherit;
}

.leading {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .sec-title {
    margin-bottom: 0.4rem;
    font-size: 0.6rem;
  }
  .sec-title .ttl-en {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .sttl {
    font-size: 0.43rem;
    margin-bottom: 0.5rem;
  }

  .page-title .container {
    height: 3.6rem;
  }

  .leading {
    font-size: 0.43rem;
    margin-bottom: 0.36rem;
  }
}
/* COMMON BUTTONS
 * ----------------------------------------------- */
.btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: url(../img/common/arrow_right.svg) no-repeat right 10px center;
  background-size: 6px auto;
  padding: 10px 5px;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.444;
  min-width: 220px;
}

.btn-default {
  border: 1px solid #a7a7a7;
  color: #818181;
}

.btn-primary {
  background-color: #000;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .btn {
    display: block;
    width: 100%;
    padding: 0.32rem 0.2rem;
    background-size: 0.18rem auto;
    background-position: right 0.24rem center;
  }
}
/* COMMON FORMS
 * ----------------------------------------------- */
.form-control {
  display: block;
  width: 100%;
  border: 0;
  box-shadow: none;
  font-size: 1em;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, "Yu Gothic", Verdana, sans-serif;
  height: 32px;
  line-height: normal;
  background-color: #ededed;
  padding: 5px 15px;
  color: #000;
}

textarea.form-control {
  height: auto;
  max-width: 100%;
  resize: none;
  font-size: 12px;
}

select.form-control {
  background-image: url(../img/common/icn_dropdown.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px auto;
}
select.form-control::-ms-expand {
  display: none;
}

.error {
  display: block;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .form-control {
    height: 0.64rem;
    padding: 0.1rem 0.24rem;
  }

  select.form-control {
    background-size: 0.24rem auto;
    background-position: right 0.2rem center;
  }
}
/* COMMON PAGINATIONS
 * ----------------------------------------------- */
/* COMMON LAYOUT
 * ----------------------------------------------- */
.breadcrumb {
  background: #fafafa;
  padding: 15px 0;
  white-space: nowrap;
  width: 100%;
  overflow: auto;
}
.breadcrumb li {
  display: inline-block;
  vertical-align: middle;
  color: #a7a7a7;
}
.breadcrumb li + li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  background: url(../img/common/arrow_right.svg) no-repeat 0 0;
  margin: 0 10px;
}

.menu-dropdown {
  display: none;
}

.txt {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.txt .text-success {
  font-weight: bold;
}
.txt p + p {
  margin-top: 1.8em;
}

.block-intro {
  margin: 50px 0 55px;
  text-align: center;
}

@media print, (min-width: 768px) {
  .l-column-2 .col {
    width: 520px;
  }
}
@media screen and (max-width: 767px) {
  .txt p + p {
    margin-top: 1em;
  }

  .breadcrumb {
    padding: 0.16rem 0;
  }
  .breadcrumb li + li:before {
    margin: 0 0.1rem;
  }

  .block-intro {
    margin: 0.6rem 0 0.3rem;
    text-align: left;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn-primary span {
    padding: 15px 31px 9px 0;
  }

  .pagination .page-arrows.prev,
  .pagination .page-arrows.next {
    padding-top: 2px;
    padding-bottom: 0;
  }

  .btn {
    padding-top: 13px;
    padding-bottom: 7px;
    background-size: 6px 11px;
  }

  .page-title:before {
    opacity: 0.8;
  }
}
/* PAGES
 * ----------------------------------------------- */
/* 1. TOP PAGE
 * ----------------------------------------------- */
.slider-top:not(.slick-initialized) .slide:not(:first-child) {
  visibility: hidden;
}
.slider-top .slide > img {
  width: 100%;
}
.slider-top .slick-arrow {
  width: 50px;
  height: 100px;
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px auto;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  z-index: 990;
}
.slider-top .slick-prev {
  left: 20px;
  background-image: url(../img/common/btn_prev.svg);
}
.slider-top .slick-next {
  right: 20px;
  background-image: url(../img/common/btn_next.svg);
}
.slider-top .slick-dots {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 99;
}

.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 9px;
}
.slick-dots button {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  text-indent: -999px;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #999;
}
.slick-dots .slick-active button {
  background: #fff;
}

.sec-top-about {
  padding: 90px 0 100px;
}
.sec-top-about .txt em {
  display: block;
  font-style: italic;
  font-size: 16px;
  padding: 8px 0;
  font-family: "Times New Roman", serif;
}
.sec-top-about .btn {
  margin-top: 25px;
}

.group-anchor .pane-lesson {
  background: #586538;
}
.group-anchor .pane-lesson .section-name {
  left: 0;
}
.group-anchor .pane-space {
  background: #5d4e42;
}
.group-anchor .pane-space .section-name {
  right: 0;
}
.group-anchor .pane-event {
  background: #744a4b;
}
.group-anchor .pane-event .section-name {
  left: 0;
}
.group-anchor .sec-title .ttl-en {
  color: #fff;
}
.group-anchor .box-info {
  color: #fff;
  text-align: center;
  position: relative;
}
.group-anchor .box-info .btn {
  color: #fff;
  border: 1px solid #fff;
  background-image: url(../img/common/arrow_right_w.svg);
  margin-top: 25px;
}
.group-anchor .box-info .section-name {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.group-anchor .box-img {
  position: relative;
  overflow: hidden;
}
.group-anchor .box-img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.events-schedule {
  padding: 70px 0 80px;
}
.events-schedule .label {
  display: inline-block;
  font-size: 10px;
  color: #fff;
  padding: 1px 3px;
  margin-bottom: 5px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, "Yu Gothic", Verdana, sans-serif;
  line-height: 1.2;
  letter-spacing: 0.05em;
}


.events-schedule .coming/*予定*/ {
  background: #b18379;
}
.events-schedule .chaji/*茶事*/ {
  background: #689c79;
}
.events-schedule .chakai/*茶会*/ {
  background: #4492bc;
}
.events-schedule .koukai/*香会*/ {
  background: #ed635e;
}
.events-schedule .chabana/*茶花*/ {
  background: #836792;
}
.events-schedule .kaiseki/*懐石*/ {
  background: #9fae43;
}
.events-schedule .welcome/*歓迎*/ {
  background: #c48d1d;
}




.events-schedule .item {
  width: 215px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  text-align: center;
  position: relative;
  padding-bottom: 55px;
}
.events-schedule .item .ct {
  padding: 20px 18px 24px;
}
.events-schedule .item .title {
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.events-schedule .item .txt {
  font-size: 12px;
  text-align: justify;
  letter-spacing: 0;
}
.events-schedule .item dl {
  display: inline-block;
  font-size: 12px;
}
.events-schedule .item dl dt {
  display: inline-block;
  border: 1px solid #333;
  line-height: 1.2;
  margin: 20px 0 3px;
  min-width: 42px;
}
.events-schedule .item dl dd.text-left {
  text-align: left;
}
.events-schedule .permalink {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 25px;
}
.events-schedule .permalink a {
  display: inline-block;
  padding: 2px 10px;
  border-bottom: 1px dashed #797979;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.events-schedule .view-more {
  margin-top: 40px;
}
.events-schedule .view-more .btn {
  letter-spacing: 0.05em;
}

.permalink a {
  display: inline-block;
  padding: 2px 10px;
  border-bottom: 1px dashed #797979;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.permalink a span {
  display: inline-block;
  background: url(../img/common/arrow_right.svg) no-repeat right center;
  background-size: 6px auto;
  padding-right: 16px;
}

@media print, (min-width: 768px) {
  .group-anchor .rows {
    height: 440px;
  }
  .group-anchor .box-img, .group-anchor .box-info {
    width: 50%;
  }
  .group-anchor .box-img {
    height: 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .events-schedule .label {
    padding-top: 3px;
    padding-bottom: 0;
  }
  .events-schedule .item dl dt {
    padding-top: 3px;
    margin-bottom: 5px;
  }

  .permalink a span {
    background-size: 6px 11px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-top .slick-arrow {
    display: none !important;
  }
  .slider-top .slick-dots {
    position: static;
    padding: 10px 0;
  }
  .slider-top .slick-dots li {
    margin: 0 12px;
  }
  .slider-top .slick-dots .slick-active button {
    background-color: #000;
  }

  .sec-top-about {
    padding: 0.5rem 0 1.1rem;
  }
  .sec-top-about .txt em {
    font-size: 1em;
    padding: 0.1rem 0;
  }
  .sec-top-about .btn {
    margin-top: 0.5rem;
  }

  .group-anchor .box-img {
    height: 3.75rem;
  }
  .group-anchor .box-info {
    padding: 0.8rem 0.36rem 1rem;
  }
  .group-anchor .box-info .section-name {
    transform: none;
    top: 0;
    right: auto;
    left: 0;
  }
  .group-anchor .box-info .section-name > img {
    width: 1rem;
  }
  .group-anchor .box-info .btn {
    margin-top: 0.4rem;
  }
  .group-anchor .pane-space .box-info .section-name > img {
    width: 1.34rem;
  }

  .events-schedule {
    padding: 1.1rem 0;
  }
  .events-schedule .label {
    font-size: 0.25rem;
    padding: 2px 4px;
  }
  .events-schedule .item {
    width: auto;
    margin: 0 0 0.4rem;
    padding: 0;
  }
  .events-schedule .item .thumb img {
    width: 100%;
  }
  .events-schedule .item .ct {
    padding: 0.4rem 0.4rem 0.6rem;
  }
  .events-schedule .item .title {
    font-size: 0.36rem;
    margin-bottom: 0.26rem;
    font-weight: normal;
  }
  .events-schedule .item .txt {
    font-size: 1em;
    margin-bottom: 0.6rem;
  }
  .events-schedule .item dl {
    font-size: 1em;
    margin-top: -0.2rem;
  }
  .events-schedule .item dl dt {
    margin: 0 0 0.16rem;
    padding: 0 2px;
  }
  .events-schedule .item dl dd {
    margin-bottom: 0.3rem;
    line-height: 1.7;
  }
  .events-schedule .permalink {
    position: static;
  }
  .events-schedule .permalink span {
    padding-right: 0.3rem;
    background-size: 0.12rem auto;
  }
  .events-schedule .view-more {
    margin-top: 0.55rem;
  }

  .permalink a {
    font-size: 1em;
  }
}
/* 2. About PAGE
 * ----------------------------------------------- */
.page-about {
  background-image: url(../img/about/bg_about_ttl.jpg);
}

.block-intro .pane-quantity {
  display: inline-block;
  border: 1px solid #7c7c7c;
  padding: 5px 20px;
  margin-top: 30px;
}

.about-item {
  padding: 40px 0;
}
.about-item:nth-child(even) {
  background: url(../img/common/bg_pattern.png) repeat 0 0;
}
.about-item .ttl {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.about-item .ttl:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background: #689c79;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.chizurei-group {
  padding: 70px 0 80px;
}
.chizurei-group .list-item li {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px;
  width: 160px;
}
.chizurei-group .list-item .thumb {
  margin-bottom: 15px;
}
.chizurei-group .list-item p {
  letter-spacing: 0.05em;
  text-align: left;
}
.chizurei-group .list-item a {
  border-bottom: 1px dashed #797979;
  padding-bottom: 2px;
}

@media print, (min-width: 768px) {
  .about-item .img {
    width: 404px;
  }
  .about-item .info {
    -webkit-flex: 1 0 0%;
    flex: 1 0 0%;
    padding-left: 32px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .block-intro .pane-quantity {
    padding: 7px 20px 3px;
  }
}
@media only screen and (max-width: 767px) {
  .page-about {
    background-image: url(../img/about/sp/bg_about_ttl.jpg);
  }

  .block-intro .pane-quantity {
    display: block;
    border: 1px solid #7c7c7c;
    padding: 0.1rem 0;
    margin: 0.4rem auto 0;
    width: 85%;
    text-align: center;
  }

  .group-about .img {
    margin-bottom: 0.3rem;
  }
  .group-about .about-item {
    padding: 0.8rem 0 0.7rem;
  }
  .group-about .about-item .ttl {
    text-align: center;
    font-size: 0.37rem;
  }
  .group-about .about-item .ttl:after {
    display: block;
    width: 1.05rem;
    margin: 0.2rem auto 0;
  }

  .chizurei-group {
    padding: 1rem 0 0.6rem;
  }
  .chizurei-group .list-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .chizurei-group .list-item li {
    margin: 0 0 0.4rem;
    width: 48.5%;
  }
  .chizurei-group .list-item .thumb {
    width: 74.5%;
    margin: 0 auto 0.3rem;
  }
  .chizurei-group .list-item p {
    display: inline-block;
    letter-spacing: 0;
  }
}
/* 3. LESSON PAGE
 * ----------------------------------------------- */
.page-lesson {
  background-image: url(../img/lesson/bg_lesson_ttl.jpg);
}

.lesson-concept .group-image {
  margin: 35px 0 60px;
}
.lesson-concept .group-image figure {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px;
}

.schedule-lesson {
  background: url(../img/common/bg_pattern.png) repeat 0 0;
  padding: 60px 0 70px;
}
.schedule-lesson .leading {
  margin-bottom: 70px;
}
.schedule-lesson .row {
  margin-bottom: 10px;
}
.schedule-lesson .thead {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
.schedule-lesson .tbox {
  background: #fff;
  padding: 12px 16px;
  position: relative;
}
.schedule-lesson .tbox .box-ttl {
  position: absolute;
  width: 100%;
  bottom: 100%;
  left: 0;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  text-align: center;
}
.schedule-lesson .tbox .text {
  letter-spacing: 0.08em;
}
.schedule-lesson .tbox .text p + p {
  margin-top: 0.5em;
}
.schedule-lesson .tbox .fz-sm {
  display: block;
}
.schedule-lesson .tea-ceremony .thead {
  background: #76845c;
}
.schedule-lesson .tea-kaiseki .thead {
  background: #857a71;
}

@media print, (min-width: 768px) {
  .schedule-lesson .thead, .schedule-lesson .tbox {
    display: inherit;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 152px;
  }
  .schedule-lesson .thead {
    width: 12.8%;
  }
  .schedule-lesson .tbox {
    width: 28.2%;
  }
  .schedule-lesson .tbox .text {
    width: 100%;
  }
  .schedule-lesson .tea-kaiseki {
    margin-bottom: 30px;
  }
  .schedule-lesson .tea-kaiseki .box-ttl {
    display: none;
  }
  .schedule-lesson .btn {
    font-size: 12px;
    color: #333;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .page-lesson {
    background-image: url(../img/lesson/sp/bg_lesson_ttl.jpg);
  }

  .lesson-concept {
    padding-bottom: 0.4rem;
  }
  .lesson-concept .group-image {
    margin: 0.4rem auto 0.6rem;
    width: 62.5%;
  }
  .lesson-concept .group-image figure {
    margin: 0 0 0.3rem;
  }

  .schedule-lesson {
    padding: 0.8rem 0 2rem;
    margin-bottom: -1.2rem;
  }
  .schedule-lesson .leading {
    margin-bottom: 0.55rem;
  }
  .schedule-lesson .row {
    margin-bottom: 0.55rem;
  }
  .schedule-lesson .thead {
    font-size: 0.33rem;
    padding: 0.1rem 0;
  }
  .schedule-lesson .thead br {
    display: none;
  }
  .schedule-lesson .tbox {
    padding: 0.3rem;
  }
  .schedule-lesson .tbox .box-ttl {
    position: static;
  }
  .schedule-lesson .txt.text-center {
    text-align: left;
  }
  .schedule-lesson .txt.text-center .btn {
    margin-top: 0.4rem;
  }
}
/* 4. EVENT PAGE
 * ----------------------------------------------- */
.page-event {
  background-image: url(../img/event/bg_event_ttl.jpg);
}

.events-schedule.sec-event {
  padding: 0 0 80px;
  margin-top: -10px;
}
.events-schedule.sec-event .item .ct {
  padding-bottom: 8px;
}
.events-schedule.sec-event .btn-primary {
  min-width: 275px;
}
.events-schedule.event-detail {
  padding-top: 0;
}
.events-schedule.event-detail .permalink {
  position: static;
}

.event-detail {
  text-align: center;
}
.event-detail .data-table {
  width: 630px;
  margin: 46px auto 0;
}
.event-detail .data-table .text-success {
  font-weight: bold;
  letter-spacing: 0.08em;
}
.event-detail .data-table table {
  border-bottom: 1px dashed #857a71;
}
.event-detail .data-table th, .event-detail .data-table td {
  border-top: 1px dashed #857a71;
  padding: 18px 0;
  vertical-align: top;
  letter-spacing: 0.05em;
}
.event-detail .data-table td {
  padding-right: 25px;
  color: #000;
}
.event-detail .data-table td p + p {
  margin-top: 1.4em;
}
.event-detail .data-table th {
  color: #857a71;
  width: 150px;
  text-align: left;
  padding-left: 30px;
}
.event-detail .leading {
  margin-bottom: 0;
}
.event-detail .txt {
  margin: 25px 0 35px;
  line-height: 1.9;
}
.event-detail .txt p + p {
  margin-top: 1em;
}
.event-detail .permalink .back-link span {
  background-image: url(../img/common/arrow_left.svg);
  background-position: 0 center;
  padding-right: 0;
  padding-left: 16px;
}

@media print, (min-width: 768px) {
  .events-schedule.event-detail .label {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .events-schedule.event-detail .view-more {
    margin: 30px 0 70px;
  }
  .events-schedule.event-detail .img-feature {
    margin-top: -20px;
  }
  .events-schedule .btn-primary {
    width: 275px;
  }
}
@media only screen and (max-width: 767px) {
  .page-event {
    background-image: url(../img/event/sp/bg_event_ttl.jpg);
  }

  .events-schedule.sec-event {
    margin-top: 0.6rem;
    padding-bottom: 1rem;
  }
  .events-schedule.sec-event .item .ct {
    padding-bottom: 0.6rem;
  }
  .events-schedule.sec-event .item .ct .title {
    font-weight: bold;
  }
  .events-schedule.sec-event .view-more {
    margin-top: 0.7rem;
  }
  .events-schedule.event-detail {
    padding-bottom: 1.3rem;
  }
  .events-schedule.event-detail .block-intro {
    text-align: center;
  }
  .events-schedule.event-detail .block-intro .txt {
    text-align: left;
    margin: 0.24rem 0;
    line-height: 1.8;
  }
  .events-schedule.event-detail .block-intro .leading {
    font-size: 0.36rem;
  }
  .events-schedule.event-detail .img-feature {
    width: 65%;
    margin: 0 auto;
  }
  .events-schedule.event-detail .img-feature img {
    width: 100%;
  }
  .events-schedule.event-detail .data-table {
    width: 100%;
    margin: 1rem 0 0.74rem;
  }
  .events-schedule.event-detail .data-table table th, .events-schedule.event-detail .data-table table td {
    display: block;
    width: 100%;
    padding-left: 0.24rem;
    padding-right: 0.24rem;
  }
  .events-schedule.event-detail .data-table table th {
    border-bottom: 0;
    padding-top: 0.36rem;
    padding-bottom: 0.12rem;
  }
  .events-schedule.event-detail .data-table table td {
    border-top: 0;
    padding-top: 0.12rem;
    padding-bottom: 0.26rem;
  }
  .events-schedule.event-detail .data-table table td p + p {
    margin-top: 1.2em;
  }
}
/* 6. SPACE PAGE
 * ----------------------------------------------- */
.page-space {
  background-image: url(../img/space/bg_space_ttl.jpg);
}

.space-photos {
  padding-bottom: 32px;
}

@media print, (min-width: 768px) {
  .space-photos figure {
    width: 327px;
    margin: 0 22px 48px;
  }
}
@media only screen and (max-width: 767px) {
  .page-space {
    background-image: url(../img/space/sp/bg_space_ttl.jpg);
  }

  .space-photos {
    padding: 0.3rem 0 0.4rem;
  }
  .space-photos figure {
    width: 73%;
    margin: 0 auto 0.55rem;
  }
}
/* 7. ACCESS PAGE
 * ----------------------------------------------- */
.page-access {
  background-image: url(../img/access/bg_access_ttl.jpg);
}

.access-inner {
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.access-inner .google-maps {
  height: 445px;
  margin: 30px 0 15px;
}
.access-inner .google-maps iframe {
  width: 100%;
}
.access-inner .address {
  display: inline-block;
  text-align: left;
  letter-spacing: 0.05em;
}
.access-inner .address p + p {
  margin-top: 0.8em;
}

@media print, (min-width: 768px) {
  .access-photos figure {
    width: 327px;
    margin: 0 22px 48px;
  }
}
@media only screen and (max-width: 767px) {
  .page-access {
    background-image: url(../img/access/sp/bg_access_ttl.jpg);
  }

  .access-inner {
    padding: 0.1rem 0 0.8rem;
  }
  .access-inner .location {
    text-align: left;
  }
  .access-inner .address {
    display: block;
  }
  .access-inner .address p + p {
    margin-top: 1em;
  }
  .access-inner .google-maps {
    height: 6rem;
    margin: 0.5rem 0 0.3rem;
    position: relative;
  }
  .access-inner .google-maps iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 90;
  }
}
/* 8. CONTACT PAGE
 * ----------------------------------------------- */
.page-contact {
  background-image: url(../img/contact/bg_contact_ttl.jpg);
}

.contact-form {
  max-width: 630px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.contact-form .mw-wrap {
  display: block;
}
.contact-form table {
  border-top: 1px dashed #857a71;
}
.contact-form table th, .contact-form table td {
  border-bottom: 1px dashed #857a71;
  padding-top: 17px;
  padding-bottom: 17px;
  vertical-align: middle;
  text-align: left;
}
.contact-form table th {
  width: 150px;
  font-weight: bold;
  color: #857a71;
  padding-left: 25px;
  padding-right: 25px;
  letter-spacing: 0.05em;
}
.contact-form table th.align-top {
  vertical-align: top;
  padding-top: 24px;
}
.contact-form table td {
  padding-right: 35px;
}
.contact-form .form-footer {
  text-align: center;
  margin-top: 45px;
}
.contact-form .form-footer .mw-wrap {
  display: inline-block;
  vertical-align: top;
}
.contact-form .form-footer .btn-primary {
  background-image: url(../img/common/arrow_left.svg);
  background-position: left 10px center;
}

.form-complete {
  padding-bottom: 80px;
}
.form-complete .permalink span {
  background-image: url(../img/common/arrow_left.svg);
  background-position: left center;
  padding-right: 0;
  padding-left: 16px;
}

@media print, (min-width: 768px) {
  .contact-form .form-footer .btn {
    font-size: 12px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .page-contact {
    background-image: url(../img/contact/sp/bg_contact_ttl.jpg);
  }

  .contact-form {
    margin: 0.7rem 0 0;
    padding-bottom: 1rem;
  }
  .contact-form table th, .contact-form table td {
    display: block;
    width: 100%;
    padding-left: 0.26rem;
    padding-right: 0.36rem;
  }
  .contact-form table th {
    padding-top: 0.3rem !important;
    padding-bottom: 0.1rem;
    border-bottom: 0;
  }
  .contact-form table td {
    border-top: 0;
    padding-top: 0.1rem;
    padding-bottom: 0.44rem;
  }
  .contact-form .form-footer {
    margin-top: 0.7rem;
  }
  .contact-form .form-footer .mw-wrap {
    display: block;
  }
  .contact-form.mw_wp_form_confirm .form-footer {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .contact-form.mw_wp_form_confirm .form-footer .mw-wrap {
    width: 48.5%;
  }
  .contact-form.mw_wp_form_confirm .form-footer .btn {
    min-width: 100px;
    padding: 0;
    height: 1rem;
  }
  .contact-form.mw_wp_form_confirm .form-footer .btn-primary {
    background-size: left 0.24rem center;
  }

  .form-complete {
    padding-bottom: 0.8rem;
  }
}

/*# sourceMappingURL=style.css.map */
