@charset "UTF-8";
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v52-japanese-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v52-japanese-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  background-color: #fff;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

header {
  z-index: 15;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input[type=submit] {
  border-radius: 0;
}

/*===============================================
# 電話発信
=================================================*/
/*===============================================
# common
=================================================*/
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  background-color: #fff;
  font-style: normal;
  font-weight: 400;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (max-width: 1649px) {
  .container {
    padding: 0 28px;
  }
}

.container2 {
  max-width: 944px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (max-width: 1649px) {
  .container2 {
    padding: 0 28px;
  }
}

@media screen and (max-width: 1023px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

a:hover {
  opacity: 0.7;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #9A751D;
  background: #fff;
  color: #9A751D;
  max-width: 522px;
  width: 100%;
  position: relative;
  padding: 20.5px 50px;
  font-size: 26px;
  box-shadow: 0 3px 6px rgba(137, 137, 137, 0.2);
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 20px;
  }
}
.btn::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/btn_arrow.png) no-repeat;
  background-size: 100%;
  width: 5px;
  height: 11px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-text {
  font-size: 26px;
  color: #9A751D;
}
@media screen and (max-width: 1279px) {
  .btn-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .btn-text {
    font-size: 16px;
  }
}

.title {
  color: #9A751D;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 60px;
  display: inline-block;
  text-align: left;
}
.title-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
.title-ja {
  display: block;
  text-align: left;
  color: #D3AB44;
  font-size: 16px;
  padding-left: 19px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  .title-ja {
    font-size: 14px;
  }
}
.title-ja::before {
  position: absolute;
  content: "";
  background: url(../images/cmn/title.png) no-repeat;
  background-size: 100%;
  width: 10px;
  height: 16px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.title-ja-white {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .title-ja {
    font-size: 14px;
  }
}
.title-cta {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .title-cta {
    margin-bottom: 40px;
  }
}

.subtitle {
  font-size: 25px;
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 20px;
  }
}
.subtitle::before {
  position: absolute;
  content: "";
  background: #D3AB44;
  width: 45px;
  height: 1px;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
}

.text {
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 16px;
  color: #5C4000;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 14px;
  }
}

.wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .wrap {
    display: block;
  }
}
.wrap-r {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .wrap-r {
    display: block;
  }
}

.comingsoon {
  margin: 200px auto 200px;
  text-align: center;
}
.comingsoon-title {
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
  font-size: 35px;
  font-weight: bold;
  color: #9A751D;
}
.comingsoon-text {
  color: #5C4000;
  margin-top: 50px;
}

/*===============================================
# フェードイン
=================================================*/
/*フェードインアニメ*/
/*左から右にフェードイン*/
.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 0.9s;
}

.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s;
}

.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

.down-to-top:nth-of-type(2) {
  transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}

/*===============================================
# 画像、ボタンの背景移動
=================================================*/
.mask_wrap {
  display: table;
  overflow: hidden;
  width: 0;
}

.mask-wrap .mask {
  width: 100%;
  height: 100%;
  display: table;
  position: relative;
  margin-bottom: 0;
  left: -1000%;
  overflow: hidden;
}

.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

div.colorbox {
  position: relative;
  width: 80%;
  margin: 30px auto 30px;
}

div.colorbox div.color {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
}

div.colorbox img {
  display: block;
  width: 100%;
}

/*===============================================
# header
=================================================*/
.header {
  position: fixed;
  width: 100%;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 3px 6px rgba(137, 137, 137, 0.2);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 6px 0;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1023px) {
  .header-inner {
    padding: 0 28px;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    justify-content: flex-end;
  }
}
.header-logo {
  max-width: 414px;
  width: 100%;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .header-logo {
    max-width: 290px;
  }
}
.header-nav {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 85px;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 25px;
    overflow-y: scroll;
    z-index: 3;
  }
}
.header-nav-list {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .header-nav-list {
    display: block;
  }
}
.header-nav-item {
  margin-left: 60px;
}
@media screen and (max-width: 1279px) {
  .header-nav-item {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav-item {
    margin-left: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}
.header-nav-item-link {
  color: #D3AB44;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.hamburger-menu {
  display: none;
}
@media screen and (max-width: 1023px) {
  .hamburger-menu {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    z-index: 5;
    cursor: pointer;
    right: 0;
    background: transparent;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .hamburger-menu {
    width: 16px;
  }
}
.hamburger-menu-bar {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #D3AB44;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .hamburger-menu-bar {
    width: 16px;
  }
}
.hamburger-menu-bar:first-child {
  top: 30%;
}
.hamburger-menu-bar:nth-child(2) {
  top: 50%;
}
.hamburger-menu-bar:last-child {
  top: 70%;
}
.hamburger-menu-open .hamburger-menu-bar {
  top: 50%;
}
.hamburger-menu-open .hamburger-menu-bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu-open .hamburger-menu-bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu-open .hamburger-menu-bar:nth-child(2) {
  display: none;
}

/*===============================================
# mv
=================================================*/
.mv {
  background: url(../images/top/mv_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 771px;
  margin-top: 89px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .mv {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    background: url(../images/top/mv_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 582px;
  }
}
.mv-container {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 160px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .mv-container {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media screen and (max-width: 767px) {
  .mv-container {
    bottom: 125px;
  }
}
.mv-title {
  width: 625px;
}
@media screen and (max-width: 1023px) {
  .mv-title {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .mv-title {
    width: 55%;
  }
}
@media screen and (max-width: 550px) {
  .mv-title {
    width: 303px;
  }
}
.mv-scroll {
  position: absolute;
  left: -90px;
  bottom: 0px;
}
@media screen and (max-width: 1279px) {
  .mv-scroll {
    left: -65px;
  }
}
@media screen and (max-width: 767px) {
  .mv-scroll {
    left: -34px;
  }
}

/*===============================================
# footer
=================================================*/
.footer {
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
  background: rgba(155, 114, 2, 0.2);
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.footer-wrap {
  display: flex;
  margin-bottom: 70px;
}
@media screen and (max-width: 1023px) {
  .footer-wrap {
    display: block;
    margin-bottom: 50px;
  }
}
.footer-logo {
  max-width: 403px;
  width: 100%;
  margin-right: auto;
}
@media screen and (max-width: 1279px) {
  .footer-logo {
    max-width: 300px;
  }
}
.footer-right {
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer-right {
    margin-top: 40px;
    display: block;
  }
}
.footer-nav {
  display: flex;
  margin-top: 12px;
}
@media screen and (max-width: 1023px) {
  .footer-nav {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav {
    display: block;
  }
}
.footer-nav-list {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    margin-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav-list:nth-child(1) {
    margin-left: 0;
  }
}
.footer-nav-item {
  display: block;
  color: #9A751D;
}
@media screen and (max-width: 767px) {
  .footer-nav-item {
    margin-bottom: 20px;
  }
}
.footer-copyright {
  color: #9A751D;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    text-align: center;
    font-size: 10px;
  }
}

/*===============================================
# cta
=================================================*/
.cta {
  background: url(../images/cmn/cta_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.cta-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .cta-wrap {
    display: block;
  }
}
.cta-item {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cta-item {
    max-width: none;
  }
}
@media screen and (max-width: 1023px) {
  .cta-item:nth-child(1) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cta-item:nth-child(1) {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.cta-text {
  font-size: 24px;
  color: #9A751D;
  text-align: center;
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .cta-text {
    font-size: 18px;
  }
}
.cta-btn {
  width: 100%;
  margin: 20px auto 0;
}

/*===============================================
# post-case
=================================================*/
.voice {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 80px 0;
  }
}
.voice-wrap {
  max-width: 796px;
  width: 100%;
  margin: 0 auto;
}
.voice-item {
  display: flex;
  border-bottom: solid 1px #1B1B1B;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .voice-item {
    display: block;
  }
}
.voice-time {
  font-size: 16px;
  color: #5C4000;
  font-weight: 600;
  display: block;
  margin-right: 65px;
}
@media screen and (max-width: 1023px) {
  .voice-time {
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .voice-time {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.voice-inner-top {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .voice-inner-top {
    display: block;
    margin-bottom: 10px;
  }
}
.voice-category {
  background: #D3AB44;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  width: 195px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-size: 14px;
  font-weight: bold;
  height: 100%;
  padding: 2px 8px;
}
@media screen and (max-width: 767px) {
  .voice-category {
    font-size: 12px;
  }
}
.voice-title {
  color: #9A751D;
  margin-left: 24px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .voice-title {
    font-size: 16px;
    margin-left: 0;
    margin-top: 10px;
  }
}
.voice-text {
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
}
@media screen and (max-width: 767px) {
  .voice-text {
    font-size: 14px;
  }
}
.voice-btn {
  margin: 80px auto 0;
}

.news {
  padding: 160px 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 80px 0;
  }
}
.news-items {
  display: flex;
  flex-wrap: wrap;
}
.news-item {
  display: flex;
  align-items: center;
  width: calc((100% - 100px) / 2);
  margin-right: 100px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .news-item {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .news-item {
    display: block;
  }
}
.news-item:nth-child(even) {
  margin-right: 0;
}
.news-inner {
  width: calc(100% - 200px);
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .news-inner {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
.news-category {
  font-family: "Vollkorn", serif;
  color: #000;
  font-size: 12px;
}
.news-time {
  font-size: 16px;
  color: #000;
}
.news-title {
  font-size: 16px;
  color: #9A751D;
  letter-spacing: 0.05em;
}
.news-img {
  max-width: 200px;
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-img {
    max-width: none;
    width: 100%;
    height: auto;
    padding-top: 70.55%;
  }
}
.news-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-btn {
  margin: 0 auto;
}

.post-closed {
  display: block;
  width: 100%;
  text-align: center;
  padding: 40px 0;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
}
.post-closed-blog {
  max-width: 840px;
  padding-bottom: 80px;
}

/*===============================================
# トップページ
=================================================*/
.t-message {
  background: #FFFDF7;
  padding: 160px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-message {
    padding: 80px 0;
  }
}
.t-message::before {
  position: absolute;
  content: "";
  background: url(../images/top/message_text.png) no-repeat;
  background-size: 100%;
  width: 826px;
  height: 152px;
  right: -10px;
}
@media screen and (max-width: 767px) {
  .t-message::before {
    width: 300px;
    top: 50px;
  }
}
.t-message-wrap {
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .t-message-wrap {
    display: block;
  }
}
.t-message-item {
  width: calc(100% - 507px);
  margin-right: 55px;
}
@media screen and (max-width: 1279px) {
  .t-message-item {
    width: 50%;
    margin-right: 45px;
  }
}
@media screen and (max-width: 767px) {
  .t-message-item {
    width: 100%;
  }
}
.t-message-title {
  color: #9A751D;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-message-title {
    font-size: 24px;
  }
}
.t-message-title::before {
  position: absolute;
  content: "";
  width: 191px;
  height: 1px;
  background: #D3AB44;
  left: 0;
  bottom: -4px;
}
.t-message-text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .t-message-text {
    font-size: 16px;
  }
}
.t-message-images {
  max-width: 507px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 120px;
}
@media screen and (max-width: 1279px) {
  .t-message-images {
    width: 50%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .t-message-images {
    width: 100%;
    margin-top: 50px;
  }
}
.t-message-img {
  width: 100%;
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 767px) {
  .t-message-img {
    margin-bottom: 20px;
  }
}
.t-message-img-bottom {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .t-message-img-bottom {
    width: 47%;
  }
}
.t-message-btn {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .t-message-btn {
    margin-top: 50px;
  }
}

.t-service {
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .t-service {
    padding-top: 80px;
  }
}
.t-service-wrap {
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .t-service-wrap {
    display: block;
    margin-bottom: 50px;
  }
}
.t-service-wrap-r {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .t-service-wrap-r {
    display: block;
    margin-bottom: 50px;
  }
}
.t-service-item {
  width: 50%;
  padding-right: 29px;
}
@media screen and (max-width: 767px) {
  .t-service-item {
    width: 100%;
    padding-right: 0;
  }
}
.t-service-item-r {
  width: 50%;
  padding-left: 29px;
}
@media screen and (max-width: 767px) {
  .t-service-item-r {
    width: 100%;
    padding-left: 0;
  }
}
.t-service-title {
  font-size: 22px;
  font-weight: 900;
  color: #9A751D;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .t-service-title {
    font-size: 18px;
  }
}
.t-service-subtitle {
  font-size: 18px;
  font-weight: 900;
  color: #D3AB44;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .t-service-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.t-service-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .t-service-img {
    width: 100%;
    margin-top: 30px;
  }
}

.t-merit {
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .t-merit {
    padding-top: 80px;
  }
}
.t-merit-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .t-merit-wrap {
    flex-wrap: wrap;
  }
}
.t-merit-item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .t-merit-item {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.t-merit-item-border {
  border-left: solid 1px #D3AB44;
  border-right: solid 1px #D3AB44;
}
@media screen and (max-width: 767px) {
  .t-merit-item-border {
    border-top: solid 1px #D3AB44;
    border-bottom: solid 1px #D3AB44;
    border-left: none;
    border-right: none;
  }
}
.t-merit-img {
  width: 174px;
  margin: 0 auto 30px;
}
.t-merit-text {
  font-size: 20px;
  font-weight: 600;
  color: #9A751D;
}
@media screen and (max-width: 1279px) {
  .t-merit-text {
    font-size: 16px;
  }
}
.t-merit-btn {
  max-width: 443px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .t-merit-btn {
    padding-left: 20px;
    margin-top: 60px;
  }
}
.t-merit-btn-text {
  font-size: 24px;
  color: #9A751D;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .t-merit-btn-text {
    font-size: 18px;
  }
}
.t-merit-btn-text-small {
  font-size: 18px;
  display: block;
}
@media screen and (max-width: 767px) {
  .t-merit-btn-text-small {
    font-size: 14px;
  }
}

.t-about {
  background: url(../images/top/about_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 160px 0;
  position: relative;
}
.t-about::before {
  position: absolute;
  content: "";
  background: url(../images/top/about_bg_logo.png) no-repeat;
  background-size: 100%;
  width: 406px;
  height: 406px;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .t-about::before {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .t-about {
    padding: 80px 0;
  }
}
.t-about-subtitle {
  font-size: 30px;
  text-align: center;
  color: #9A751D;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .t-about-subtitle {
    font-size: 20px;
  }
}
.t-about-subtitle::before {
  position: absolute;
  content: "";
  width: 191px;
  height: 1px;
  background: #D3AB44;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.t-about-text {
  font-size: 18px;
  line-height: 2;
  max-width: 1010px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .t-about-text {
    font-size: 16px;
  }
}
.t-about-btn {
  margin: 50px auto 60px;
}
.t-about-img {
  max-width: 835px;
  width: 100%;
  margin: 0 auto;
}

/*===============================================
# 下層ページ共通
=================================================*/
.sub-mv {
  width: 100%;
  height: 330px;
  position: relative;
  margin-top: 105px;
}
@media screen and (max-width: 1023px) {
  .sub-mv {
    margin-top: 79px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv {
    height: 160px;
  }
}
.sub-mv-about {
  background: url(../images/about/mv_about.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-mv-product {
  background: url(../images/sub/mv_product.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-mv-contact {
  background: url(../images/sub/mv_contact.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-mv-service {
  background: url(../images/service/mv_service.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-mv-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 1250px;
  width: 100%;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .sub-mv-inner {
    padding: 0 35px;
  }
}
.sub-mv-title {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #fff;
  text-shadow: 0px 0px 15px rgb(28, 42, 80);
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1279px) {
  .sub-mv-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv-title {
    font-size: 25px;
  }
}

/*===============================================
# 下層ページ
=================================================*/
/*===============================================
# contact
=================================================*/
.form {
  margin-top: 70px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .form {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.form-text {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  color: #5C4000;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .form-text {
    margin-bottom: 40px;
  }
}
.form-btn {
  background: #ECF4FA;
  margin: 0 auto 107px;
}
@media screen and (max-width: 767px) {
  .form-btn {
    margin-bottom: 60px;
  }
}

.contact-head {
  text-align: center;
}
.contact-body {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
.contact-line {
  background: #fff;
  border: solid 1px #E3DED5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem 4.6rem;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 767px) {
  .contact-line {
    display: block;
    padding: 2.5rem 2rem;
  }
}
.contact-line-text {
  text-align: center;
  width: 100%;
}
.contact-line-btn {
  display: block;
  max-width: 33.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-line-btn {
    margin: 2rem auto 0;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 17px;
  border-bottom: solid 1px #E8E8E8;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .contact-item {
    padding: 15px 0;
    display: block;
  }
}
.contact-item-top {
  align-items: flex-start;
}
.contact-title {
  margin-right: 50px;
}
.contact-title p {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  letter-spacing: 0;
}
.contact-input {
  width: calc(100% - 280px);
}
@media screen and (max-width: 1023px) {
  .contact-input {
    width: calc(100% - 200px);
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact-input {
    margin-top: 15px;
    width: 100%;
    margin-left: 0;
  }
}
.contact-input ul {
  display: flex;
  align-items: center;
}
.contact-input ul li {
  width: 240px;
}
.contact-note {
  max-width: 868px;
  width: 100%;
  height: 200px;
  overflow: scroll;
  margin: 20px auto 40px;
  padding: 20px 30px;
  background: #fff;
  border: 1px solid #CFCFCF;
}
@media screen and (max-width: 767px) {
  .contact-note {
    padding: 20px 25px;
  }
}
.contact-note p {
  margin-bottom: 1em;
  letter-spacing: 0;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
}
.contact-note::-webkit-scrollbar {
  width: 20px;
  height: 0;
  background: #F2F2F2;
}
.contact-note::-webkit-scrollbar-thumb {
  background: #B7B7B7;
  height: 30px;
  border-radius: 10px;
  border: solid 4px #f2f2f2;
}
.contact-check p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .contact-check p {
    margin: 8px auto;
    font-size: 14px;
  }
}
.contact-check .wpcf7-list-item {
  margin-bottom: 0;
  margin-right: 10px;
}
.contact-submit {
  width: 100%;
  margin: 55px auto 40px;
  position: relative;
}
.contact-submit:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .contact-submit {
    margin-top: 50px;
  }
}
.contact-protect {
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
  line-height: 1.3;
  color: #5C4000;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .contact-protect {
    text-align: left;
  }
}
.contact-protect a {
  color: #5C4000;
}
.contact-address-item {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact-address-item {
    padding-bottom: 30px;
  }
}
.contact-address-item-bottom {
  padding-bottom: 20px;
  align-items: flex-start;
}
.contact-address-wrap {
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
}
.contact-address-title {
  width: 100px;
}
.contact-address-title-bottom {
  margin-top: 15px;
}
.contact-address-postcode {
  max-width: 200px;
  width: 100%;
}
.contact-address-prefecture {
  width: 230px;
}
.contact-address-input {
  width: calc(100% - 100px);
}
.contact-address-note {
  font-size: 14px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .contact-address-note {
    font-size: 12px;
  }
}
.contact-radio .wpcf7-list-item {
  margin-bottom: 10px;
}

.haveto {
  white-space: nowrap;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #A7232B;
  font-size: 12px;
  padding: 0 11px;
  margin-left: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .haveto {
    font-size: 12px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  border: 0;
  border: 1px solid #CFCFCF;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel] {
  padding: 17px 8px;
}

textarea {
  min-height: 200px;
  resize: vertical;
  padding: 17px 8px;
}

.wpcf7-select {
  border: 1px solid #CFCFCF;
  width: 100%;
  padding: 15px 8px;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .wpcf7-select {
    font-size: 14px;
  }
}

.wpcf7-list-item {
  display: block;
  letter-spacing: 0;
  font-weight: 400;
  margin-left: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item {
    font-size: 12px;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.wpcf7 input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  opacity: 1;
  display: block;
  width: 100%;
  background: #9A751D;
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .wpcf7 input[type=submit] {
    margin-top: 50px;
  }
}

/*===============================================
# breadcrumb
=================================================*/
.breadcrumb {
  margin: 4rem auto 0;
  max-width: 1080px;
  box-sizing: content-box;
}
@media screen and (max-width: 1023px) {
  .breadcrumb {
    margin: 2rem auto 0;
    padding: 0 20px;
  }
}

.breadcrumb span {
  color: #000;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .breadcrumb span {
    font-size: 12px;
  }
}

/*===============================================
# archive
=================================================*/
.contents {
  display: flex;
  margin-top: 10rem;
  margin-bottom: 19.5rem;
}
@media screen and (max-width: 767px) {
  .contents {
    display: block;
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
}

.content {
  margin-top: 73px;
  margin-bottom: 160px;
}
.content-voice {
  margin-top: 0;
}

.primary {
  width: 71%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .primary {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .primary {
    width: 100%;
    margin-bottom: 7rem;
  }
}

.entry-item {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 550px) {
  .entry-item {
    display: block;
    margin-bottom: 40px;
  }
}
.entry-item-img {
  max-width: 14.3rem;
  width: 100%;
  height: auto;
  padding-top: 16%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 550px) {
  .entry-item-img {
    max-width: none;
    padding-top: 70%;
  }
}
.entry-item-img img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry-item-body {
  width: calc(100% - 14.3rem);
  margin-left: 26px;
}
@media screen and (max-width: 550px) {
  .entry-item-body {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}
.entry-item-wrap {
  display: flex;
  align-items: center;
}
.entry-item-published {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #000;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 550px) {
  .entry-item-published {
    margin-bottom: 0;
  }
}
.entry-item-title {
  font-size: 14px;
  color: #000;
  font-family: "Shippori Mincho", serif;
}
.entry-closed {
  text-align: center;
}

/*===============================================
# pagination
=================================================*/
.pagination {
  margin-top: 5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 3rem;
  }
}

.page-numbers {
  color: #fff;
  background: #9A751D;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  margin: 0;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #ECF4FA;
  color: #9A751D;
}

/*===============================================
# sidebar
=================================================*/
.widget {
  margin-bottom: 45px;
}

.widget-title {
  font-family: "Cormorant Garamond", serif;
  color: #9A751D;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid #9A751D;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .widget-title {
    font-size: 20px;
  }
}

.secondary {
  width: 29%;
  margin-left: 4.4rem;
  padding-right: 3.6rem;
}
@media screen and (max-width: 1023px) {
  .secondary {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .secondary {
    width: 100%;
    margin-left: 0;
  }
}

.secondary-category-list a {
  color: #5C4000;
  padding-left: 30px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 4px;
  display: inline-block;
}
.secondary-category-list a::before {
  position: absolute;
  content: "";
  background: url(../images/post/arrow.png) center center/contain no-repeat;
  width: 7px;
  height: 13px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.secondary-category-item {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.secondary-child {
  margin-left: 15px;
}

.secondary-archive-list a {
  color: #5C4000;
  padding-left: 30px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 4px;
  display: inline-block;
}
.secondary-archive-list a::before {
  position: absolute;
  content: "";
  background: url(../images/post/arrow.png) center center/contain no-repeat;
  width: 7px;
  height: 13px;
  top: 55%;
  left: 15px;
  transform: translateY(-50%);
}

.secondary-post-list {
  margin-bottom: -10px;
  font-weight: bold;
}

.secondary-post-item {
  display: block;
  padding: 10px 3px;
  border-bottom: #d9d9d9 solid 1px;
}
.secondary-post-item p {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0;
  font-weight: bold;
}
.secondary-post-item time {
  color: #000;
  font-size: 10px;
  line-height: 2.4;
  letter-spacing: 0;
  margin-top: -6px;
  display: block;
}

/*===============================================
# single
=================================================*/
.single-main {
  font-family: "Noto Sans JP", sans-serif;
}
.single-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #5C4000;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .single-title {
    font-size: 1.8rem;
  }
}
.single-top-published {
  font-size: 14px;
  font-weight: bold;
  color: #5C4000;
  letter-spacing: 0.05em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.single-img {
  text-align: center;
  width: 100%;
  height: 70%;
  margin-bottom: 5rem;
  margin-top: 4.9rem;
}
@media screen and (max-width: 767px) {
  .single-img {
    margin-bottom: 3.5rem;
    margin-top: 3.5rem;
  }
}
.single-img img {
  width: 100%;
  height: 100%;
}
.single-content h1 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  color: #9A751D;
  padding: 13px 16px;
  background: #ECF4FA;
  border-top: solid #9A751D 2px;
  margin-bottom: 35px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single-content h1 {
    font-size: 20px;
    margin: 20px 0;
  }
}
.single-content h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  color: #9A751D;
  padding: 13px 16px;
  background: #ECF4FA;
  border-top: solid #9A751D 2px;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .single-content h2 {
    margin: 20px 0;
    font-size: 19px;
  }
}
.single-content h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #9A751D;
  padding: 13px 16px;
  background: #ECF4FA;
  border-top: solid #9A751D 2px;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .single-content h3 {
    margin: 20px 0;
    font-size: 18px;
  }
}
.single-content h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #333;
  border-left: solid 4px #4099D2;
  padding-left: 16px;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .single-content h4 {
    margin: 20px 0;
    font-size: 17px;
  }
}
.single-content h5 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #9A751D;
  margin-bottom: 35px;
  margin-top: 35px;
  font-weight: bold;
  padding-left: 36px;
  position: relative;
}
.single-content h5::before {
  position: absolute;
  content: "";
  background: url(../images/post/check.png) no-repeat;
  background-size: 100%;
  left: 0;
  width: 21px;
  height: 15px;
  top: 8px;
}
@media screen and (max-width: 767px) {
  .single-content h5 {
    margin: 20px 0;
    font-size: 16px;
  }
}
.single-content h6 {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: #5C4000;
  margin-bottom: 21px;
  margin-top: 21px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .single-content h6 {
    margin: 20px 0;
    font-size: 15px;
  }
}
.single-content p {
  line-height: 1.87;
  padding-bottom: 35px;
  font-size: 16px;
  color: #5C4000;
}
@media screen and (max-width: 767px) {
  .single-content p {
    padding-bottom: 20px;
    font-size: 14px;
  }
}
.single-content table {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .single-content table {
    margin-top: 40px;
  }
}
.single-content table td {
  vertical-align: middle;
}
.single-content table td:nth-child(2) {
  padding-left: 59px;
}
@media screen and (max-width: 767px) {
  .single-content table td:nth-child(2) {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .single-content table td {
    width: 100% !important;
    display: block;
  }
}
.single-content .box {
  border: solid #D3AB44 2px;
  border-radius: 10px;
  padding: 30px 23px;
  margin-top: 35px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .single-content .box {
    padding: 18px 15px;
    margin: 20px 0;
  }
}
.single-btn {
  background: #ECF4FA;
  margin: 100px auto 0;
}

/*===============================================
# 404
=================================================*/
#content > .inner {
  display: block;
}

.entry-404 {
  padding-bottom: 240px;
  padding-top: 180px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry-404 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.entry-404-head {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .entry-404-head {
    font-size: 40px;
  }
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #5C4000;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .entry-404-lead {
    font-size: 20px;
  }
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #5C4000;
  line-height: 2.1;
}

.entry-404-btn {
  margin-top: 58px;
  margin-left: auto;
  margin-right: auto;
}

.entry-404-btn .btn {
  color: #5C4000;
}/*# sourceMappingURL=style.css.map */