/*
Theme Name:hada-archi-child
Template:hada-archi
Theme URI: https://athemes.com/theme/sydney
Author: aThemes
Author URI: https://athemes.com
Description: Sydney is a powerful business theme that provides a fast way for companies or freelancers to create an awesome online presence. As well as being fully compatible with Elementor, Sydney brings plenty of customization possibilities like access to all Google Fonts, full color control, layout control, logo upload, full screen slider, header image, sticky navigation and much more. Also, Sydney provides all the construction blocks you need to rapidly create an engaging front page. Looking for a quick start with Sydney? With just a few clicks, you can import one of our existing demos (https://athemes.com/sydney-demos/)
Version: 2.63
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tested up to: 6.6
Requires PHP: 5.6
Text Domain: sydney
Tags: two-columns, right-sidebar, block-styles, custom-colors, custom-background, custom-header, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Sydney is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
*/
/* ===== 全体 ===== */
html {
  scroll-behavior: auto;
}
body {
    overflow-x: hidden !important;
}
hr {
    border-top: 1px solid #8E8A83 !important;
    margin: 5em 0 !important;
}
.pc_only {
    display: block;
}
.mb_only {
    display: none;
}
.br_pc {
    display: block;
}
.br_mb {
    display: none;
}
/* 見出し */
h2 {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
}
h4 {
    padding: .2em .7em;
    border-left: 5px solid #8E8A83;
    margin-top: 2em !important;
}
.page .entry-header h1,
.page-title {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(90deg, #e7dcc1, #4D4943);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* 画像のぼかしフェードイン */
.blur-scroll img {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.blur-scroll.is-animated img {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/* フェードイン */
.js-animate-scroll{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}
.js-animate-scroll.is-animated{
  opacity:1;
  transform:none;
}
/* 文字が横から見えてくる */
.clip-text-immediate {
  clip-path: inset(0 100% 0 0);
  transition: 4s cubic-bezier(0.22,1,0.36,1);
}
.clip-text-immediate.is-animated {
  clip-path: inset(0);
}
.clip-text-scroll {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.22,1,0.36,1);
}
.clip-text-scroll.is-animated {
  clip-path: inset(0 0 0 0);
}
/* 文字をランダムに表示 */
.TextRandomAnime span {
  opacity: 0;
}
.TextRandomAnime.appearRandomtext span {
  animation: text_randomanime_on .5s ease-out forwards;
}
@keyframes text_randomanime_on {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.TextRandomAnime.appearRandomtext span:nth-child(2n) {
  animation-delay: .5s;
}
.TextRandomAnime.appearRandomtext span:nth-child(3n+1) {
  animation-delay: .15s;
}
/* パララックス */
.parallax-img-bg {
  width: 100vw;
  height: 600px;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}
.parallax-img-bg img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 140% !important;
  max-width: none;
  object-fit: cover;
  transform: translate3d(0, -50%, 0);
  will-change: transform;
}
/* ボタン */
.button_c a {
    margin-inline: auto;
}
.button01 a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4D4943;
  font-weight: 400;
  border: 1px solid #4D4943;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 200px;
  text-align: center; 
  padding: 10px 40px;
  cursor: pointer;
  z-index:999;
  transition: all 0.8s;
}
.button01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #4D4943;
  transition: all 0.3s ease;
}
.button01 a:hover {
  background: #fff;
  color: #4D4943 !important;
  transition: all 0.8s;
}
.button01 a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}
.button02 a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff !important;
  font-weight: 400;
  border: 1px solid #fff;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 200px;
  text-align: center; 
  padding: 10px 40px;
  margin-inline: auto;
  cursor: pointer;
  z-index:999;
  transition: all 0.8s;
}
.button02 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}
.button02 a:hover {
  background: rgb(255 255 255 / .2);
  color: #fff !important;
  transition: all 0.8s;
}
.button02 a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}
.button03 {
    margin: 2em 0 1em !important;
}
.button03 a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4D4943;
  font-weight: 400;
  border: 1px solid #4D4943;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 250px;
  text-align: center; 
  padding: 10px 40px;
  cursor: pointer;
  z-index:999;
  transition: all 0.8s;
}
.button03 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #4D4943;
  transition: all 0.3s ease;
}
.button03 a:hover {
  background: #fff;
  color: #4D4943 !important;
  transition: all 0.8s;
}
.button03 a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}

/* ===== ヘッダー ===== */
/* ヒーローエリア */
.slides-container .slide-item {
    animation: zoomUp 10s linear 0s normal both;
}
@keyframes zoomUp {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.sydney-hero-area{
    position: relative;
}
.home-hero-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.home-hero-logo img{
    width: 130px;
    height: auto;
}
.home-hero-logo{
    opacity: 0;
    animation: heroLogo 2s ease forwards;
}
@keyframes heroLogo{
    from{
        opacity: 0;
        transform: translate(-50%,-40%);
    }
    to{
        opacity: 1;
        transform: translate(-50%,-50%);
    }
}
/* スクロールを促す */
.scrolldown{
    display: block;
	position: absolute;
	bottom: 4em;
	left: 4em;
    z-index: 99;
}
.scrolldown span{
    position: absolute;
	left: 10px;
	bottom: 0;
	color: #fff;
	font-size: .7em;
	letter-spacing: .2em;
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.scrolldown:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	animation: circlemove 2s ease-in-out infinite,
    cirlemovehide 2s ease-out infinite;
}
@keyframes circlemove{
      0%{bottom:75px;}
     100%{bottom:-5px;}
 }
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }
.scrolldown:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 80px;
	background: #fff;
}
/* Instagram */
.side_name {
    display: none;
}
.page-id-603 .side_name {
    position: fixed;
    right: 0;
    top: 0;
    width: 6%;
    height: 100%;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .8em;
    letter-spacing: .2em;
    padding: 0;
    margin: 0;
    transition:0.4s;
    color: #fff;
    z-index: 99;
}
.side_name a {
    color: #fff;
}
.side_name a:hover {
    color: #f2f2f2;
}
.side_name.scrolled a {
    color:#4D4943;
}
.side_name.scrolled a:hover {
    color:#8E8A83;
}
/* ヘッダーメニュー */
.page .entry-header {
    margin: 8em 0 5em;
}
.page-header {
    margin: 8em 0 5em;
}
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 2em 4em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    background: transparent;
}
/* ロゴ */
.custom-logo img {
    width: auto;
    height: 39px;
}
.logo-white {
    display: none;
}
.logo-color {
    display: block;
}
.home .logo-white,
.single-works .logo-white {
    display: block;
}
.home .logo-color,
.single-works .logo-color {
    display: none;
}
.scrolled .logo-white {
    display: none;
}
.scrolled .logo-color {
    display: block;
}
.menu-open .logo-white {
    display: none;
}
.menu-open .logo-color {
    display: block;
}
/* ハンバーガー */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}
.hamburger-btn {
    width: 80px;
    height: 20px;
    cursor: pointer;
    position: relative;
    top: 20px;
    right: 20px;
}
.hamburger-btn span {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #4D4943;
    transition: .4s ease;
}
.home .hamburger-btn span,
.single-works .hamburger-btn span {
    background: #fff;
}
.hamburger-btn span:first-child {
    top: 0;
    right: 20px;
}
.hamburger-btn span:last-child {
    bottom: 0;
}
.scrolled .hamburger-btn span {
    background: #4D4943;
}
.menu-open .hamburger-btn span {
    background: #4D4943;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 10px;
    right: 0;
}.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    bottom: 10px;
}
/* フルスクリーンメニュー */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F0F0EA;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .6s ease;
    z-index: 9998;
}
.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}
.menu-wrap {
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.menu-wrap-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5em;
}
/* 左カラム */
.menu-main {
    display: flex;
    flex-direction: column;
    gap: 3.5em;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu-main li a {
    display: flex;
    align-items: end;
    column-gap: 1em;
}
.menu-main li a:hover {
    color: #B5AFA4;
}
.menu-en {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: .05em;
}
.menu-ja {
    font-size: .9em;
}
/* 右カラム */
.menu-photo {
    width: 300px;
    margin: 0 0 2em;
}
.menu-en-pp {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    letter-spacing: .05em;
}
.menu-sub {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-sub li a:hover {
    color: #B5AFA4;
}
.menu-sub li:first-child {
    margin: 0 0 20px;
}
.menu-sub li {
    margin: 10px 0 0 0;
}
.menu-sub img {
    width: 18px;
    height: 18px;
    opacity: .8;
    transition: .3s;
    margin-right: 5px;
}

/* ===== フッター ===== */
.foot_logo {
    width: 300px;
}
.menu-footer-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-footer-menu-container ul li {
    display: inline-block;
    padding-right: 15px;
}
.menu-footer-menu-container ul li:last-child {
    padding-right: 0;
}
.menu-footer-menu-container a {
    font-family: "Libre Baskerville", serif;
    letter-spacing: .08em;
    font-size: 15px;
}
.sydney-credits {
    font-size: .8em;
    letter-spacing: .1em;
}
.foot_privacy {
    margin: 20px 0 0;
    font-family: "Libre Baskerville", serif;
    font-size: .8em;
    letter-spacing: .1em;
}
.foot_info {
    font-size: .9em;
}
.foot_sns {
    font-size: .8em;
    letter-spacing: .1em;
    margin-top: 5px;
}
.foot_sns img {
    width: 18px;
    height: 18px;
    opacity: .8;
    transition: .3s;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

/* ===== Home ===== */
/* About */
.parallax-img {
  position: relative;
  overflow: hidden;
}
.parallax-img img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  transform: translate3d(0, calc(-50% + 40px), 0);
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.22,1,.36,1),
    filter 1.2s ease; 
}
.parallax-img.show img {
  opacity: 1;
  transform: translate3d(0,-50%,0);
  filter: blur(0);
}
.home-about-img03.parallax-img img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 180%;
  object-fit: cover;
  transform: translate3d(0, calc(-50% + 40px), 0);
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.22,1,.36,1),
    filter 1.2s ease; 
}
.home-about-img03.parallax-img.show img {
  opacity: 1;
  transform: translate3d(0,-50%,0);
  filter: blur(0);
}
.home-about {
    width: 100vw;
    margin-top: 10em;
    margin-left: calc(50% - 50vw);
    position: relative;
}
.home-about-in {
    margin: 0 auto;
    width: fit-content;
}
.home-about-img01 {
    width: clamp(190px, 25vw, 600px);
    aspect-ratio: 3 / 2;
    position: absolute;
    right: 0;
    top: 0;
    margin-block-start: 0;
}
.home-about-img02 {
    width: clamp(190px, 28vw, 600px);
    aspect-ratio: 2 / 2;
    position: absolute;
    left: 0;
    top: 30%;
    margin-block-start: 0;
}
.home-about-img03 {
    width: clamp(190px, 18vw, 600px);
    aspect-ratio: 3 / 2;
    position: absolute;
    right: 10%;
    bottom: 0;
    margin-block-start: 0;
    z-index: 9;
}
.home-concept {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 1.8em;
    line-height: 2;
    text-align: center;
    letter-spacing: .1em;
    margin: 160px 0 0;
    padding: 0;
}
.home-concept-en {
    font-family: "Libre Baskerville", serif;
    font-size: .8em;
    text-align: center;
    letter-spacing: .1em;
    padding: 2em 0 5em;
    margin: 0;
    color: #8E8A83;
}
.philosophy-box {
    position: relative;
}
.home-philosophy {
    position: relative;
    font-size: 1.06em;
    text-align: center;
    line-height: 3;
    padding: 2em 0;
    margin: 0;
    z-index: 9;
}
.about-text {
    line-height: 3;
    padding: 3em 0;
    margin: 0;
}
.line {
    position: absolute;
    top: -60px;
    margin-block-start: 0;
}
/* Works */
.works-slider {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.home-works-item img{
    width: 100%;
    height: auto;
    display: block;
}
.home-works-item{
    transition: transform .6s ease;
}
.home-works-item img:hover{
    transform: scale(1.04);
}
.home-works-item .works-meta {
    margin-top: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-works-item a h2 {
    transition: all .6s;
}
.home-works-item a:hover h2 {
    color: #8E8A83;
    transition: all .6s;
}
/* Days */
.days_leftbox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.button01 {
    margin-top: auto;
}
.wp-block-latest-posts li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1.5em 0;
    border-top: 1px solid #d8d6d3;
}
.wp-block-latest-posts li:last-child{
    border-bottom: 1px solid #d8d6d3;
}
.wp-block-latest-posts__post-date{
    order: 2;
    padding-right: 20px;
    border-right: 1px solid #d8d6d3;
    width: 8em;
    font-size: 15px;
    letter-spacing: .1em;
    color: #8E8A83;
    white-space: nowrap;
}
.wp-block-latest-posts__post-title{
    order: 3;
    padding-left: 20px;
    text-decoration: none;
    line-height: 1.5;
}
/* contact */
.home_contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home_contact::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url(../../../wp-content/uploads/2026/03/contact.jpg);
    background-position:bottom;
    background-size:cover;
    background-repeat:no-repeat;
    filter:blur(7px);
    transform:scale(1.1);
    z-index:-1;
}
.home_contact_ttl {
    text-align: center;
    color: #fff;
}
.contact_jp {
    text-align: center;
    letter-spacing: .2em;
    color: #fff;
    margin-bottom: 4em;
}

/* ===== About ===== */
.page-id-608 .page-wrap {
    padding-bottom: 0;
}
.page-id-608 .entry-footer {
    margin-top: 0;
}
.split-img03-mb {
    display: none;
}
/* スプリットレイアウト */
.split {
    width: 100vw;
    margin-top: 150px;
    margin-left: calc(50% - 50vw);
    display: flex;
}
/* スプリット左カラム */
.split-left {
    width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.split-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 50%;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.split-img.active img {
    opacity: 1;
}
/* スプリット右カラム */
.split-right {
    width: 50%;
    padding: 200px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.split-text{
  min-height: 180vh;
}
.concept {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-size: 1.7em;
    letter-spacing: .1em;
    margin: 0;
}
.concept_en {
    font-family: "Libre Baskerville", serif;
    font-size: .8em;
    letter-spacing: .1em;
    padding-bottom: 3em;
    color: #8E8A83;
}
.philosophy {
    font-size: 1.06em;
    line-height: 3;
    padding: 3em 0;
    margin: 0;
}
/* プロフィール */
.staff {
    background: #fff;
    padding: 2em 2.5em;
}
.staff_in {
    gap: 24px;
}
.suppl_border {
    font-size: .9em;
    border: 1px solid #4D4943;
    padding: 2em 2.5em;
}
.staff img {
    width: 240px;
}
.name_ja {
    font-size: 1.1em;
}
.name_en {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: .7em;
    margin: .3em 0 0 !important;
    color: #8E8A83;
}
.cert {
    font-size: .8em;
}
.office th {
    width: 20%;
    text-align: left;
    vertical-align: top;
    padding: 12px 0;
    border: unset;
    font-weight: 500;
}
.office td {
    text-align: left;
    word-break: break-all;
    padding: 12px 0;
    border: unset;
}
/* 流れ */
.flow {
    padding: 2.5em 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.flow_no {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 200px;
    font-size: 3em;
    line-height: 0;
}
.flow_in {
    display: table-cell;
}
.page-id-608 h2 {
    margin: 3em 0 1.5em !important;
}
.flow h3 {
    margin: 0 !important;
}
.subttl_first {
    margin: 1.5em 0 .5em !important;
}
.flow p,
.flow ul {
    margin-block-start: 14px;
}
.suppl {
    font-size: .9em;
}
.arrow {
    position: relative;
    display: block;
    width: 62px;
    height: 33px;
    margin: 2em auto;
}
.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50%);
    width: 1px;
    height: 45px;
    border-radius: 9999px;
    background-color: #4D4943;
    transform-origin: 50% calc(100%);
}
.arrow::before {
    transform: rotate(45deg);
}
.arrow::after {
    transform: rotate(-45deg);
}
.about-tel {
    font-family: "Libre Baskerville", serif;
    font-size: 1.2em;
    font-weight: 400;
    letter-spacing: .15em;
}
/* 料金 */
.fee-box {
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-bottom: 0;
    background: #fff;
}
.fee-box-in {
    width: 1140px;
    padding: 0 0 180px;
    margin: 0 auto;
}
.fee th {
    position: relative;
    width: 18%;
    text-align: left;
    vertical-align: top;
    padding: 10px 0;
    border: unset;
    font-weight: 500;
}
.fee th::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    width: 6px;
    height: 10px;
    background: #8E8A83;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.fee td {
    text-align: left;
    word-break: break-all;
    padding: 10px 0 10px 15px;
    border: unset;
}

/* ===== Works ===== */
/* 一覧 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
.slash, .term-title {
    font-size: .4em;
    color: #8E8A83;
}
.works-filter {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 4em 0;
    flex-wrap: wrap;
}
.works-filter .filter-btn {
    position: relative;
    color: #4D4943;
    text-decoration: none;
    padding-bottom: 4px;
    transition: 0.4s;
}
.works-filter .filter-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #4D4943;
    transition: width 0.4s ease;
}
.works-filter .filter-btn:hover::after {
    width: 100%;
}
.works-filter .filter-btn.active::after {
    width: 100%;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-bottom: 6em;
}
.works-item a h2 {
    transition: all .6s;
}
.works-item a:hover h2 {
    color: #8E8A83;
    transition: all .6s;
}
.thumb {
    overflow: hidden;
}
.thumb img {
    width: 100%;
    height: auto;
    transition: 0.6s;
}
.thumb:hover img {
    transform: scale(1.05);
}
.works-meta {
    margin-top: 12px;
}
.works-title {
    font-size: 16px;
    margin-bottom: 5px;
}
.works-cat {
    font-size: 12px;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    color: #8E8A83;
}
/* 詳細 */
.single-works .page-wrap {
    padding: 0 0 100px;
}
.single-works .site-header {
    position: absolute;
    width: 100%;
    background: transparent;
    z-index: 999;
}
.single-works .site-header a {
    color: #fff;
}
.works-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-bottom: 15em;
    overflow: hidden;
}
.works-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    animation: heroFade 1.8s ease forwards;
}
@keyframes heroFade {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.works-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}
.hero-title-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    justify-content: center;
    transform: translateY(-5%);
}
.hero-logo {
    margin-bottom: 30px;
    animation: logoFade 2s ease forwards;
    opacity: 0;
}
.hero-logo img {
    width: 60px;
    height: auto;
}
.hero-title {
    color: #fff;
    letter-spacing: 0.15em;
    opacity: 0;
    animation: titleFade 2.5s ease forwards;
    font-size: 22px !important;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}
@keyframes logoFade {
    to { opacity: 1; }
}
@keyframes titleFade {
    to { opacity: 1; }
}
.fade-wrap {
    position: relative;
    overflow: hidden;
}
.fade-in-item {
    display: block;
    width: 100%;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(20px);
    transition:
        opacity 1s ease,
        filter 1.5s ease,
        transform 1s ease;
}
.fade-in-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
.fade-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #F0F0EA;
    transform: translateY(0);
    transition: transform 1.4s ease;
    z-index: 2;
}
.fade-wrap.is-visible::before {
    transform: translateY(100%);
}
.works_data {
    font-size: .9em;
}

/* ===== Days ===== */
/* 一覧 */
.posts-layout .list-content {
    max-width: unset;
}
.posts-layout .content-inner {
    border-bottom: 1px solid #8E8A83;
    padding: 0 0 4em 0;
}
.entry-thumb {
    overflow: hidden;
}
.entry-thumb img {
    width: 100%;
    height: 145px !important;
    object-fit: cover;
    transition: 0.6s;
}
.entry-thumb:hover img {
    transform: scale(1.05);
}
.entry-meta {
    font-weight: 400;
}
.nav-links {
    text-align: center;
}
.nav-links .page-numbers,
.woocommerce nav.woocommerce-pagination ul li .page-numbers {
    background-color: unset;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #4D4943;
}
.nav-links .page-numbers {
    position: relative;
}
.nav-links .page-numbers::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: #4D4943;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}
.nav-links .page-numbers.current::after,
.nav-links .page-numbers:not(.dots):hover::after {
    transform: scaleX(1);
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:not(.dots):hover {
    color: #4D4943;
    background: unset;
}

/* ===== Contact ===== */
/* 問い合わせフォーム */
.cf7_box {
    margin: 0 auto;
}
.cf7_ttl {
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 3em;
    font-size: 1.5em;
    line-height: 40px;
}
.cf7_ttl:after {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #555;
    border-radius: 2px;
}
.cf7_box table th,
.cf7_box table td {
    border: 0 solid #ccc;
    text-align: left;
    padding: 1em 0;
}
.cf7_box table th {
    width: 35%;
    font-weight: 400;
}
.cf7_box table p {
    margin: 0;
}
.cf7_box .rqd {
    color: darkgoldenrod;
    padding: 0 10px;
    font-size: 11px;
    float: right;
    font-weight: 500;
    line-height: 2;
}
.cf7_mailcheck {
    font-size: .6em;
    background: #4D4943;
    padding: .1em .5em .2em;
    margin: .5em;
    color: #F0F0EA;
}
.cf7_box table .msg {
    vertical-align: top;
}
.cf7_box .multi {
    margin-bottom: 3em;
}
.cf7_box .multi th,
.cf7_box .multi td {
    border-bottom: 1px dotted #e0dccb;
    padding: 2em 0;
}
.cf7_box .multi td p {
    font-size: 1.06em;
    letter-spacing: .1em;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="select"],
.wpcf7 input[type="email"] {
    width: 100%;
    height: 70px;
    color: #4D4943;
    background: #fff;
    border: unset;
    font-size: 1.06em;
    letter-spacing: .1em;
}
.wpcf7 input[type="radio"] {
    accent-color: #4D4943;
}
.wpcf7 input[type=checkbox] {
    accent-color: #4D4943;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #cac5bb;
}
.wpcf7 textarea {
    height: 200px;
    color: #4D4943;
    border: unset;
    font-size: 1.06em;
    letter-spacing: .1em;
    padding: 20px 20px;
}
textarea:focus,
select,
select:focus {
    color: #4D4943;
    border: unset;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 0px solid #333;
    border: 0px solid #333;
}
.con_pri .wpcf7-list-item {
    margin: 0;
}
.con_pri {
    text-align: center;
    margin: 2em 0;
}
.btn_ok p {
    margin: 0;
}
.btn_ok {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4D4943;
  font-weight: 400;
  border: 1px solid #4D4943;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 230px;
  text-align: center;
  margin-inline: auto;
  cursor: pointer;
  z-index:999;
  transition: all 0.8s;
}
.btn_ok::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #4D4943;
  transition: all 0.3s ease;
}
.btn_ok:hover {
  background: #fff;
  color: #4D4943 !important;
  transition: all 0.8s;
}
.btn_ok:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}
.btn_ok input[type=submit] {
    color: #4D4943;
    background: unset;
    border: unset;
    padding: 15px 90px;
    letter-spacing: .1em;
}
.wpcf7-spinner {
    display: contents;
}
.wpcf7-spinner::before {
    background-color: darkgoldenrod;
}
.btn_back p {
    margin: 0;
}
.btn_back {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #B5AFA4;
  font-weight: 400;
  border: 1px solid #B5AFA4;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 230px;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2em;
  cursor: pointer;
  z-index:999;
  transition: all 0.3s;
}
.btn_back::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 60px;
  height: 1px;
  background: #B5AFA4;
  transition: all 0.3s ease;
}
.btn_back:hover {
  background: #fff;
  color: #4D4943 !important;
  transition: all 0.8s;
}
.btn_back:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}
.btn_back input[type=button] {
    color: #817c73;
    background: unset;
    border: unset;
    padding: 15px 90px;
    letter-spacing: .1em;
}
.btn_back input[type=button]:hover {
    color: #645f55;
}
span.wpcf7-not-valid-tip {
    font-size: .7em;
}
div.wpcf7-validation-errors {
    border: none;
    background: #e5e5e5;
    color: #ff0000;
    padding: 20px;
    margin: 2em 0;
    font-size: 15px;
    text-align: center;
}
div.wpcf7-mail-sent-ok {
    border: none;
    background: #727272;
    color: #fff;
    padding: 20px;
    margin: 2em 0;
    font-size: 15px;
    text-align: center;
}
.thanks {
    text-align: center;
}

/* ===== Privacy Policy ===== */
.post-3775 h2 {
    margin-top: 3em !important;
    font-family: "Zen Old Mincho", serif;
    font-size: 24px;
}

@media (max-width: 1199px) {
    /* 全体 */
    body {
        font-size: 15px;
    }
    table {
        font-size: 15px;
    }
    h1:not(.site-title) {
        font-size: 68px;
    }
    h2 {
        font-size: 38px;
    }
    h3 {
        font-size: 22px;
    }
    /* ヘッダー */
    .page .entry-header {
        margin: 6em 0 5em;
    }
    .page-header {
        margin: 6em 0 5em;
    }
    .home-hero-logo img {
        width: 82px;
    }
    /* フッター */
    .foot_logo {
        width: 225px;
    }
    /* Home */
    .home-concept {
        font-size: 1.5em;
    }
    .home-philosophy {
        font-size: 1em;
        line-height: 2.4;
    }
    .full_img {
        height: 400px;
    }
    .home-about-img02 {
        width: clamp(190px, 25vw, 600px);
    }
    /* About */
    .split-left{
        width: 100%;
        height: 60vh;
        top: 20%;
    }
    .split-right{
        width: 100%;
        padding: 80px 20px;
    }
    .split-text{
        min-height: auto;
    }
    .office th {
        width: 22%;
    }
    .fee-box-in {
        width: 970px;
        padding: 0 30px 130px;
    }
    .fee th {
        width: 22%;
    }
    /* Works */
    .works-title {
        font-size: 15px;
        margin-bottom: 2px;
    }
    /* Days */
    .posts-layout .entry-title {
        font-size: 18px;
    }
    .posts-layout .entry-post {
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    /* 全体 */
    .pc_only {
        display: none;
    }
    .mb_only {
        display: block;
    }
    .container {
        width: 680px;
    }
    h1:not(.site-title) {
        font-size: 40px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 17px;
    }
    /* アニメーション */
    .scrolldown {
        bottom: 2em;
        left: 2em;
    }
    .scrolldown span{
        font-size: .6em;
    }
    @keyframes circlemove{
        0%{bottom:45px;}
        100%{bottom:-5px;}
    }
    .scrolldown:after{
        height: 50px;
    }
    /* ボタン */
    .button01 a {
        margin: 0 auto;
    }
    /* ヘッダー */
    .custom-header {
        height: 70px;
        padding: 0 2em;
    }
    .menu-wrap-main {
        width: 540px;
    }
    .menu-main {
        gap: 2.8em;
    }
    .home-hero-logo img {
        width: 65px;
    }
    .custom-logo img {
        max-height: 26px;
    }
    .hamburger-btn {
        width: 50px;
    }
    .page-header {
        margin: 3em 0;
    }
    .page .entry-header {
        margin: 3em 0;
    }
    /* フッター */
    footer .container {
        padding: 30px 15px 0;
    }
    .menu-footer-menu-container a {
        font-size: 14px;
    }
    /* Home */
    .home-about-in {
        margin: 0 50px 0 auto;
    }
    .home-about-img01 {
        width: clamp(190px, 30vw, 600px);
        right: unset;
        left: 8%;
    }
    .home-about-img02 {
        width: clamp(190px, 34vw, 600px);
    }
    .home-about-img03 {
        width: clamp(190px, 24vw, 600px);
        right: unset;
        left: 12%;
    }
    .full_img {
        height: 300px;
    }
    .home-aboutus {
        flex-direction: column-reverse;
    }
    .home-aboutus h2 {
        margin: 1em 0 0 !important;
    }
    .home-days {
        margin-bottom: 3em !important;
    }
    /* About */
    .split-right {
        padding: 50px 40px;
    }
    .concept {
        font-size: 1.5em;
    }
    .philosophy {
        font-size: 1em;
        line-height: 2.5;
        padding: 2em 0;
    }
    .staff .wp-block-columns {
        flex-wrap: nowrap !important;
    }
    .staff_in {
        gap: 0px;
        flex-wrap: nowrap !important;
    }
    .staff img {
        width: 200px;
    }
    .flow_no {
        width: 120px;
        font-size: 2em;
    }
    .arrow::before, .arrow::after {
        height: 30px;
    }
    .fee-box-in {
        width: 680px;
        padding: 0 15px 100px;
    }
    .fee th {
        width: 30%;
    }
    /* Works */
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 20px !important;
    }
    .works_data {
        border-bottom: 1px dotted #e0dccb;
        padding-bottom: 30px;
    }
    /* Days */
    .entry-post p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .entry-post p {
        -webkit-line-clamp: 3;
    }
    .posts-layout .list-image {
        width: 38%;
    }
    .posts-layout .entry-title {
        font-size: 17px;
    }
    .single .entry-header .entry-title {
        font-size: 18px;
        letter-spacing: .05em;
    }
    .single .entry-meta {
        font-size: 15px;
    }
    /* Contact */
    .wpcf7 input[type="text"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="select"],
    .wpcf7 input[type="email"] {
        font-size: 1em;
    }
    .wpcf7 textarea {
        font-size: 1em;
    }
    .post-3775 h2 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    /* 全体 */
    .container {
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }
    .page-id-603 .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .br_pc {
        display: none;
    }
    .br_mb {
        display: block;
    }
    /* アニメーション */
    .parallax-img-bg {
        height: 400px;
    }
    /* ボタン */
    .button03 a {
        margin: 0 auto;
    }
    /* ヘッダー */
    .hamburger-btn {
        top: 0;
        right: 0;
    }
    .menu-wrap-main {
        display: flex;
        flex-flow: column;
        width: 100%;
        gap: 3em;
    }
    .menu-main {
        gap: 2em;
    }
    .menu-en {
        font-size: 22px;
    }
    .menu-ja {
        font-size: .8em;
    }
    .menu-photo {
        width: 240px;
    }
    .menu-en-pp {
        font-size: 16px;
    }
    .mobile-slide {
        width: auto;
        height: 100vh !important;
        object-fit: cover !important;
        object-position: 50% 50% !important;
    }
    .page-id-603 .side_name {
        position: absolute;
        top: unset;
        right: 2em;
        bottom: 2em;
        width: auto;
        justify-content: flex-end;
        font-size: .7em;
    }
    /* フッター */
    .page-id-603 footer .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    /* Home */
    .home-about {
        margin-top: 0;
        margin-bottom: 0;
        padding: 400px 0 180px;
    }
    .home-about-in {
        margin: 0 auto;
    }
    .home-about-img01 {
        right: 0;
        left: unset;
        top: 4em;
        z-index: 9;
    }
    .home-about-img02 {
        left: 12%;
        top: 10%;
    }
    .home-about-img03 {
        width: clamp(300px, 24vw, 600px);
        aspect-ratio: 5 / 2;
        right: unset;
        left: 0;
    }
    .parallax-img img {
        top: 80%;
    }
    .line {
        top: -10px;
    }
    .home-concept {
        font-size: 1.3em;
    }
    .about-text {
        padding: 1.5em 0 3em;
    }
    .home-works-item .thumb img {
        height: 480px;
        object-fit: cover;
    }
    .wp-block-latest-posts li {
        display: grid;
        gap: 5px;
        padding: 1em 0;
    }
    .wp-block-latest-posts__post-title {
        padding-left: 0;
    }
    .wp-block-latest-posts__post-date {
        padding-right: 0;
        border-right: 0 solid #d8d6d3;
    }
    .home_contact_ttl {
        font-size: 28px;
    }
    .home_contact {
        padding: 90px 0;
    }
    /* About */
    .split-img03-mb {
        display: block;
    }
    .split {
        display: block;
        margin-top: 80px;
    }
    .split-left {
        position: static;
        width: 100%;
        height: auto;
    }
    .image-wrap {
        height: 470px;
    }
    .split-img img {
        position: static;
        width: 100%;
        height: auto;
        opacity: 1;
    }
    .split-img02 {
        width: 260px;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .split-img03 {
        display: none;
    }
    .split-right {
        padding: 60px 20px;
        text-align: center;
    }
    .concept_en {
        margin-block-start: 15px;
    }
    .philosophy {
        padding: 1.5em 0;
    }
    .office th {
        width: 30%;
    }
    .suppl_border {
        padding: 1.4em 1.8em;
    }
    .staff {
        padding: 2em;
        margin-top: 3em;
    }
    .staff .wp-block-columns {
        flex-wrap: wrap !important;
    }
    .staff_left {
        border-bottom: 1px dotted #8E8A83;
        padding-bottom: 20px;
    }
    .cert {
        margin-block-start: 15px;
    }
    .staff_in {
        gap: 20px;
        flex-wrap: wrap !important;
    }
    .staff img {
        width: 100%;
    }
    .flow {
        padding: 1em 0 2.5em 0;
    }
    .flow_no {
        display: block;
        text-align: left;
        vertical-align: unset;
        width: auto;
        line-height: 3;
    }
    .about-tel {
        text-align: center;
    }
    .fee-box-in {
        width: 100%;
        padding: 0 25px 100px;
    }
    .fee th {
        width: 36%;
        padding: 10px 10px 10px 0;
    }
    /* Works */
    .works-grid {
        grid-template-columns: auto;
    }
    .hero-title {
        font-size: 18px !important;
    }
    .works-hero {
        margin-bottom: 3em;
    }
    /* Days */
    .entry-thumb img {
        height: 240px !important;
    }
    .entry-post p {
        -webkit-line-clamp: 2;
    }
    /* Contact */
    .cf7_box table th,
    .cf7_box table td {
        display: block;
        width: 100%;
    }
    .cf7_box table th {
        padding: 1em 0 0;
        font-weight: 600;
    }
    .cf7_box .rqd {
        float: left;
    }
    .cf7_box .multi th {
        border-bottom: 0 dotted #ccc;
        padding: 1em 0 0;
        font-size: .9em;
        font-weight: 400;
    }
    .cf7_box .multi td {
        border-bottom: 1px dotted #ccc;
        padding: .5em 0 1.5em;
        font-weight: 500;
    }
    .cf7_box .multi td p {
        font-weight: 600;
    }
    select {
        background: #fff;
    }
}