@charset "UTF-8";
/*
Theme Name : wom
Theme URI : http://wom-maison.com
Author: SCARAMANGA INC.
Author URI: http://scaramanga.jp
Description:
Version: 1.0
*/
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: '';
}

a,
input {
  outline: none;
}

input,
textarea {
  border-radius: 0;
}

input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

body {
  color: #121212;
  background: #ffffff;
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.32rem;
  letter-spacing: 0.05em;
  line-height: 2;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #121212;
  text-decoration: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a img {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (max-width: 999px) {
  .nav-sp_only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .nav-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* first
---------------------------------------------------------------------------------------*/
#first {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
}

#first p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 90px;
}

#first p path {
  fill-opacity: 0;
  fill: #121212 !important;
  stroke: #121212;
  stroke-width: 1;
  stroke-dasharray: 1200 1800;
  stroke-dashoffset: 1800;
  animation-name: draw;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes draw {
  72% {
    stroke-dashoffset: 0;
    stroke-width: 1;
    fill-opacity: 0;
  }
  100% {
    stroke-width: 0;
    fill-opacity: 1;
  }
}

/* animate
---------------------------------------------------------------------------------------*/
.fadein,
.fadein_up,
.fadein_up_slow,
.faden_filter {
  opacity: 0;
}

.fadein_filter {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated_first {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*!------------------------------------*
fadeIn
\*!------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*!------------------------------------*
fadeInUp
\*!------------------------------------*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*!------------------------------------*
fadeInUp_slow
\*!------------------------------------*/
@-webkit-keyframes fadeInUp_slow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp_slow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp_slow {
  -webkit-animation-name: fadeInUp_slow;
  animation-name: fadeInUp_slow;
}

/*!------------------------------------*
fadeIn_filter
\*!------------------------------------*/
@-webkit-keyframes fadeIn_filter {
  from {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
  }
}

@keyframes fadeIn_filter {
  from {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
  }
}

.fadeIn_filter {
  -webkit-animation-name: fadeIn_filter;
  animation-name: fadeIn_filter;
}

/* _header
---------------------------------------------------------------------------------------*/
.add_fixed.header_logo svg, .add_fixed.sns_nav svg {
  fill: #121212 !important;
}

.add_fixed.btn_reserve {
  color: #121212 !important;
}

.add_fixed.copyright {
  color: #121212 !important;
}

.add_fixed.hamburger span {
  background-color: #121212 !important;
}

.home .header_logo svg,
.home .sns_nav svg {
  fill: #ffffff;
}

.home .btn_reserve {
  color: #ffffff;
}

.home .copyright {
  color: #ffffff;
}

.home .hamburger span {
  background-color: #ffffff;
}

.header_logo {
  position: fixed;
  top: 50px;
  left: 50px;
  width: 180px;
  z-index: 99996;
}

@media screen and (max-width: 767px) {
  .header_logo {
    top: 25px;
    left: 20px;
    width: 30%;
  }
}

.btn_reserve {
  position: fixed;
  top: 50px;
  right: 200px;
  z-index: 99996;
  letter-spacing: 0.2em;
  text-decoration: line-through;
  font-family: "Playfair Display", serif;
}

@media screen and (max-width: 767px) {
  .btn_reserve {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: 0;
  }
}

.sns_nav {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99996;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sns_nav {
    bottom: 10px;
    right: 20px;
  }
}

.sns_nav a {
  display: inline-block;
  width: 20px;
  margin: 10px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.sns_nav a svg {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.g_nav {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(233, 233, 233, 0.9);
  z-index: 99997;
  overflow: scroll;
  padding-bottom: 140px;
}

.g_nav .g_nav_inr {
  max-width: 680px;
  margin: auto;
  padding-top: 70px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .g_nav .g_nav_inr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr {
    padding-top: 95px;
  }
}

.g_nav .g_nav_inr .nav_logo {
  width: 190px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr .nav_logo {
    width: 28%;
  }
}

.g_nav .g_nav_inr .nav {
  width: -webkit-calc(100% - 200px);
  width: calc(100% - 200px);
  padding: 5%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr .nav {
    width: 100%;
  }
}

.g_nav .g_nav_inr .nav > li {
  width: -webkit-calc(50% - 50px);
  width: calc(50% - 50px);
  padding: 0;
  margin: 0 0 0 50px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr .nav > li {
    width: 50%;
    padding: 0 10px;
    margin: 10px 0;
    text-align: center;
  }
}

.g_nav .g_nav_inr .nav > li > a {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr .nav > li > a {
    font-size: 1rem;
  }
}

.g_nav .g_nav_inr .nav > li > a:after {
  content: '';
  display: block;
  width: 20%;
  height: 1px;
  margin: 15px 0 25px;
  background: #121212;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr .nav > li > a:after {
    margin: 15px auto;
  }
}

.g_nav .g_nav_inr .nav > li > a:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .g_nav .g_nav_inr .nav > li > a:hover:after {
    width: 80%;
    background: #121212;
  }
}

.g_nav .g_nav_inr .nav > li > a span {
  display: block;
  font-size: 1.48rem;
  letter-spacing: 0.25rem;
  color: #121212;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr .nav > li > a span {
    font-size: 1.4rem;
  }
}

/*----------ハンバーガーアイコン----------*/
.ico_nav_area {
  position: fixed;
  top: 35px;
  right: 13px;
  z-index: 99999;
  display: block;
  width: 35px;
}

.hamburger_area {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hamburger_area.header_fixed {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hamburger_area:hover {
  cursor: pointer;
}

.hamburger {
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;
  width: 60px;
  height: 21px;
  z-index: 99999;
}

@media screen and (max-width: 767px) {
  .hamburger {
    top: 25px;
    right: 20px;
    width: 35px;
    height: 21px;
  }
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger:hover span:nth-of-type(1) {
  top: -2px;
}

.hamburger:hover span:nth-of-type(3) {
  bottom: -2px;
}

.hamburger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #121212;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 10px;
}

.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger p {
  margin-top: 26px;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 0.1rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.active {
  top: 0 !important;
}

.active:hover {
  cursor: pointer;
}

.active:hover span:nth-of-type(1) {
  top: 1px;
}

.active:hover span:nth-of-type(3) {
  bottom: 1px !important;
}

.active span {
  background-color: #121212 !important;
}

.active span:nth-of-type(1) {
  top: 1px;
}

.active span:nth-of-type(3) {
  bottom: 1px !important;
}

.hamburger span:nth-of-type(1) {
  -webkit-animation: menu-ber01 0.75s forwards;
  animation: menu-ber01 0.75s forwards;
}

.hamburger span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.hamburger span:nth-of-type(3) {
  -webkit-animation: menu-ber02 0.75s forwards;
  animation: menu-ber02 0.75s forwards;
}

.active span:nth-of-type(1) {
  -webkit-animation: active-menu-ber01 0.75s forwards;
  animation: active-menu-ber01 0.75s forwards;
}

.active span:nth-of-type(2) {
  opacity: 0;
}

.active span:nth-of-type(3) {
  -webkit-animation: active-menu-ber03 0.75s forwards;
  animation: active-menu-ber03 0.75s forwards;
}

@-webkit-keyframes menu-ber01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-ber02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber02 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes active-menu-ber01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}

@keyframes active-menu-ber01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

@-webkit-keyframes active-menu-ber03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes active-menu-ber03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* _page
---------------------------------------------------------------------------------------*/
.container {
  max-width: 1600px;
  margin: auto;
}

.txt_page_title {
  text-align: center;
  margin-top: 138px;
  padding: 90px 25px 60px;
  background: rgba(0, 0, 0, 0.01);
}

@media screen and (max-width: 767px) {
  .txt_page_title {
    margin: 25px auto 25px;
    padding: 80px 25px 30px;
  }
}

.txt_page_title:after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  background: #121212;
  margin: 35px auto;
}

@media screen and (max-width: 767px) {
  .txt_page_title:after {
    height: 28px;
    margin: 20px auto 0;
  }
}

.txt_page_title p {
  letter-spacing: 0.2rem;
  font-size: 1.26rem;
  line-height: 2.4;
  color: #4d4d4d;
}

@media screen and (max-width: 767px) {
  .txt_page_title p {
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

.txt_page_title h1 {
  letter-spacing: 0.65rem;
  font-size: 2.6rem;
  line-height: 1.7;
  margin-bottom: 0.48em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .txt_page_title h1 {
    font-size: 2rem;
    line-height: 1.7;
  }
}

.section_title {
  margin-bottom: 2.35em;
  text-align: center;
  padding-top: 60px;
}

.section_title h2 {
  font-size: 1.92rem;
  letter-spacing: 0.3em;
  position: relative;
  padding-top: 42px;
  display: inline-block;
  font-family: "Playfair Display", serif;
}

.section_title h2:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 15px;
  width: 1px;
  height: 34px;
  background-color: #000;
  transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
}

.btn_more {
  text-align: center;
  margin: 60px auto;
}

@media screen and (max-width: 767px) {
  .btn_more {
    margin: 30px auto;
  }
}

.btn_more a {
  display: inline-block;
  position: relative;
  padding: .6em 2em;
  border-top: solid 1px #121212;
  border-bottom: solid 1px #121212;
  text-decoration: none;
}

.btn_more a:before {
  content: '';
  position: absolute;
  top: 2px;
  width: 1px;
  height: -webkit-calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #121212;
  transition: 0.3s;
}

.btn_more a:after {
  content: '';
  position: absolute;
  top: 2px;
  width: 1px;
  height: -webkit-calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #121212;
  transition: 0.3s;
}

.btn_more a:before {
  left: -5px;
}

.btn_more a:after {
  right: -5px;
}

.btn_more a:hover:before {
  top: 0;
  left: 0;
  height: 100%;
}

.btn_more a:hover:after {
  top: 0;
  right: 0;
  height: 100%;
}

.post_content {
  /**
 * 3.0 - Elements
 */
  /**
 * 4.0 - Alignment
 */
  /**
 * 5.0 - Caption
 */
  /**
 * 7.0 - Audio / Video
 */
  /**
 * 8.0 - RTL
 */
}

.post_content h1 {
  font-size: 3rem;
  margin: 1.2em auto;
}

.post_content h2 {
  font-size: 2.4rem;
  margin: 1.2em auto;
}

.post_content h3 {
  font-size: 2rem;
  margin: 1.2em auto;
}

.post_content h4 {
  font-size: 1.8rem;
  margin: 1.2em auto;
}

.post_content h5 {
  margin: 1.2em auto;
}

.post_content h6 {
  margin: 1.2em auto;
}

.post_content hr {
  border-top: 1px solid #000;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.post_content p {
  margin: 1.2em auto;
  line-height: 2;
}

.post_content a {
  text-decoration: underline;
}

.post_content .addtoany_content {
  margin: 90px 0 0 !important;
}

.post_content b,
.post_content strong {
  font-weight: 700;
}

.post_content cite,
.post_content dfn,
.post_content em,
.post_content i {
  font-style: italic;
}

.post_content blockquote {
  border-left: 4px solid #1a1a1a;
  color: #686868;
  font-size: 19px;
  font-style: italic;
  line-height: 1.4736842105;
  margin-bottom: 28px;
  overflow: hidden;
  padding: 0 0 0 24px;
}

.post_content blockquote:not(.alignleft):not(.alignright) {
  margin-left: -28px;
}

.post_content blockquote blockquote:not(.alignleft):not(.alignright) {
  margin-left: 0;
}

.post_content blockquote:after,
.post_content blockquote:before {
  content: "";
  display: table;
}

.post_content blockquote:after {
  clear: both;
}

.post_content blockquote > :last-child {
  margin-bottom: 0;
}

.post_content blockquote cite,
.post_content blockquote small {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.75;
}

.post_content blockquote cite,
.post_content blockquote em,
.post_content blockquote i {
  font-style: normal;
}

.post_content blockquote b,
.post_content blockquote strong {
  font-weight: 400;
}

.post_content blockquote.alignleft,
.post_content blockquote.alignright {
  border: 0 solid #1a1a1a;
  border-top-width: 4px;
  padding: 18px 0 0;
  width: -webkit-calc(50% - 14px);
  width: calc(50% - 14px);
}

.post_content address {
  font-style: italic;
  margin: 0 0 28px;
}

.post_content code,
.post_content kbd,
.post_content pre,
.post_content samp,
.post_content tt,
.post_content var {
  font-family: Inconsolata, monospace;
}

.post_content pre {
  border: 1px solid #d1d1d1;
  font-size: 16px;
  line-height: 1.3125;
  margin: 0 0 28px;
  max-width: 100%;
  overflow: auto;
  padding: 14px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.post_content code {
  background-color: #d1d1d1;
  padding: 2px 4px;
}

.post_content abbr[title] {
  border-bottom: 1px dotted #d1d1d1;
  cursor: help;
}

.post_content ins,
.post_content mark {
  background: #007acc;
  color: #fff;
  padding: 2px 4px;
  text-decoration: none;
}

.post_content sub,
.post_content sup {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.post_content sub {
  top: -6px;
}

.post_content sup {
  bottom: -3px;
}

.post_content small {
  font-size: 80%;
}

.post_content big {
  font-size: 125%;
}

.post_content hr {
  background-color: #d1d1d1;
  border: 0;
  height: 1px;
  margin-bottom: 28px;
}

.post_content ol,
.post_content ul {
  margin: 0 0 28px;
  padding: 0;
}

.post_content ul {
  list-style: disc;
}

.post_content ol {
  list-style: decimal;
}

.post_content li > ol,
.post_content li > ul {
  margin-bottom: 0;
}

.post_content blockquote > ul,
.post_content li > ul {
  margin-left: 20px;
}

.post_content blockquote > ol,
.post_content li > ol {
  margin-left: 24px;
}

.post_content dl {
  margin: 0 0 28px;
}

.post_content dt {
  font-weight: bold;
}

.post_content dd {
  margin: 0 0 28px;
}

.post_content .mce-item-table,
.post_content .mce-item-table td,
.post_content .mce-item-table th,
.post_content table,
.post_content td,
.post_content th {
  border: 1px solid #d1d1d1;
}

.post_content table a {
  color: #121212;
}

.post_content .mce-item-table,
.post_content table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 28px;
  width: 100%;
}

.post_content .mce-item-table th,
.post_content table caption,
.post_content table th {
  border-width: 0 1px 1px 0;
  font-size: 16px;
  font-weight: 700;
  padding: 7px;
  text-align: left;
  vertical-align: baseline;
}

.post_content .mce-item-table td,
.post_content table td {
  border-width: 0 1px 1px 0;
  font-size: 16px;
  padding: 7px;
  vertical-align: baseline;
}

.post_content img {
  border: 0;
  height: auto;
  max-width: 100%;
}

.post_content a img {
  display: block;
}

.post_content figure {
  margin: 0;
}

.post_content del {
  opacity: 0.8;
}

.post_content a {
  box-shadow: 0 1px 0 0 currentColor;
  color: #121212;
  text-decoration: none;
}

.post_content fieldset {
  border: 1px solid #d1d1d1;
  margin: 0 0 28px;
  padding: 14px;
}

.post_content .alignleft {
  float: left;
  margin: 6px 28px 28px 0;
}

.post_content .alignright {
  float: right;
  margin: 6px 0 28px 28px;
}

.post_content .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 28px;
}

.post_content .wp-caption {
  background: transparent;
  border: none;
  margin-bottom: 28px;
  max-width: 100%;
  padding: 0;
  text-align: inherit;
}

.post_content .wp-caption-dd,
.post_content .wp-caption-text {
  color: #686868;
  font-size: 13px;
  font-style: italic;
  line-height: 1.6153846154;
  padding-top: 7px;
}

.post_content .wp-audio-shortcode a,
.post_content .wp-playlist a {
  box-shadow: none;
}

.post_content .mce-content-body .wp-audio-playlist {
  margin: 0;
  padding-bottom: 0;
}

.post_content .mce-content-body .wp-playlist-tracks {
  margin-top: 0;
}

.post_content .mce-content-body .wp-playlist-item {
  padding: 10px 0;
}

.post_content .mce-content-body .wp-playlist-item-length {
  top: 10px;
}

.post_content .rtl blockquote {
  border: 0 solid #1a1a1a;
  border-right-width: 4px;
}

.post_content .rtl blockquote.alignleft,
.post_content .rtl blockquote.alignright {
  border: 0 solid #1a1a1a;
  border-top-width: 4px;
}

.post_content .rtl blockquote:not(.alignleft):not(.alignright) {
  margin-right: -28px;
  padding: 0 24px 0 0;
}

.post_content .rtl blockquote blockquote:not(.alignleft):not(.alignright) {
  margin-right: 0;
  margin-left: auto;
}

.post_content .rtl blockquote > ul,
.post_content .rtl li > ul {
  margin-right: 20px;
  margin-left: auto;
}

.post_content .rtl blockquote > ol,
.post_content .rtl li > ol {
  margin-right: 24px;
  margin-left: auto;
}

.post_content .rtl .mce-item-table th,
.post_content .rtl table caption,
.post_content .rtl table th {
  text-align: right;
}

.article_404 {
  text-align: center;
  padding: 160px 25px;
}

@media screen and (max-width: 767px) {
  .article_404 {
    padding: 120px 25px;
  }
}

.article_404 .article_404_title {
  margin-bottom: 3em;
}

.article_404 .article_404_title h1 {
  font-size: 2.2rem;
  margin: 2em 0;
}

.article_404 .article_404_reed {
  line-height: 2.2;
  margin-bottom: 4em;
}

@media screen and (max-width: 767px) {
  .article_404 .article_404_reed {
    text-align: left;
  }
}

/* _footer
---------------------------------------------------------------------------------------*/
.access_section .googlemap {
  width: 100%;
}

.access_section .googlemap iframe {
  width: 100%;
  height: 620px;
}

@media screen and (max-width: 767px) {
  .access_section .googlemap iframe {
    height: 280px;
  }
}

.access_section .googlemap #map {
  width: 100%;
  height: 620px;
  background-color: grey;
}

.access_section .info {
  width: 400px;
  margin: 55px auto;
}

@media screen and (max-width: 767px) {
  .access_section .info {
    width: 100%;
    padding: 20px;
  }
}

.access_section .info p {
  margin-bottom: 2em;
}

.access_section .info .map_link {
  margin-bottom: 55px;
  text-align: center;
}

.access_section .info .map_link a {
  display: inline-block;
  border: 1px solid #121212;
  padding: 5px 30px;
}

.access_section .row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.access_section .row .img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .access_section .row .img {
    width: 100%;
  }
}

.access_section .row .info {
  width: 50%;
  padding-left: 5%;
}

@media screen and (max-width: 767px) {
  .access_section .row .info {
    width: 100%;
    padding: 20px;
  }
}

.access_section .row .info h2 {
  font-size: 3rem;
  margin-bottom: 1em;
  line-height: 1.7;
}

.access_section .row .info p {
  margin-bottom: 2em;
}

.access_section .row .info .map_link a {
  border: 1px solid #121212;
  padding: 5px 30px;
}

footer {
  margin-top: 90px;
  padding: 55px 20px;
  text-align: center;
}

footer img {
  width: 220px;
}

@media screen and (min-width: 768px) {
  .copyright {
    color: #ffffff;
    width: 0.875vw;
    height: 18.75vw;
    display: inline-block;
    font-family: 'Lato', serif;
    letter-spacing: 0.25em;
    font-weight: 700;
    font-size: 0.625vw;
    position: fixed;
    right: 55px;
    top: calc(50% - 130px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: "Playfair Display", serif;
  }
}

@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1.2rem;
    text-align: center;
  }
}

/* clearfix
---------------------------------------------------------------------------------------*/
.clr:after {
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

.clr {
  display: inline-block;
  min-height: 1%;
}

/* Hides from IE-mac \*/
* html .clr {
  height: 1%;
}

.clr {
  display: block;
}

/*
     FILE ARCHIVED ON 19:57:28 Jan 27, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 08:47:47 Apr 30, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 18.781
  load_resource: 127.991
  PetaboxLoader3.resolve: 60.227
  PetaboxLoader3.datanode: 67.047
*/