@charset "UTF-8";

/*********************

* global

*********************/
body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
  font-family: "ヒラギノ明朝 Pro", "HiraMinPro", serif;
  font-weight: 300;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.body_overray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: url(../img/body_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
  filter: brightness(1);
  transition: 1.2s ease;
}

.body_overray.dark {
  filter: brightness(0.3);
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

a {
  transition: 0.8s;
}

/*********************

* header

*********************/
.header {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: rgba(0, 0, 0, 0.42);
  z-index: 10;
}

.header_flex_box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-start;
}

.main_logo {
  display: inline-block;
  margin-left: 1.5%;
  margin-right: 16px;
  margin-top: 23px;
}

.main_logo img {
  height: 41px;
}

.header_site_ttl {
  display: inline-block;
  margin-right: auto;
  margin-top: 28px;
}

.header_site_ttl a {
  font-size: 11px;
  font-weight: 300;
  color: #fff;
}

/*--- g_nav ---*/
.g_nav {
  margin-right: 0;
  margin-top: 0;
  margin-left: auto;
}

.g_nav ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: flex-start;
}

.g_nav ul li {
  position: relative;
  background-color: transparent;
  overflow: hidden;
}

.g_nav ul li.current a {
  cursor: default;
}

.g_nav ul li a {
  position: relative;
  padding: 0 29px;
  height: 70px;
  line-height: 73px;
  color: #fff;
  font-size: 13px;
  display: block;
  z-index: 1;
  overflow: hidden;
}

.g_nav ul li a:before,
.g_nav ul li a:after,
.g_nav ul li a span:before,
.g_nav ul li a span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.93);
  transition: 0.4s cubic-bezier(0, 0.4, 0.26, 0.91);
  z-index: -1;
  transform: scaleX(0);
}

.g_nav ul li a:after,
.g_nav ul li a span:before {
  left: auto;
  right: 0;
}

.g_nav ul li a span:before,
.g_nav ul li a span:after {
  transition-delay: 0.4s;
}

.g_nav ul li:hover a,
.g_nav ul li.current a {
  color: #000000;
}

.top .g_nav ul li.current {
  cursor: default;
}

.top .g_nav ul li.current a {
  color: #fff !important;
  cursor: default;
}

.g_nav ul li:hover a:after,
.g_nav ul li:hover a span:before,
.g_nav ul li:hover a span:after,
.g_nav ul li.current a::before,
.g_nav ul li.current a::after {
  transform: scaleX(1)
}

.top .g_nav ul li.current:hover a span:before,
.top .g_nav ul li.current:hover a span:after,
.top .g_nav ul li.current a::before,
.top .g_nav ul li.current a::after {
  transform: scaleX(0) !important;
}

.g_nav ul li a:active {
  background-color: #000000;
}

.g_nav ul li:last-child {
  margin-left: 10px;
}

.g_nav ul li:last-child a {
  padding: 0 51px;
}

.g_nav ul li:last-child {
  background-color: #000;
}

.g_nav ul li.news {
  display: none;
}

/*********************

* footer

*********************/
.footer {
  color: #fff;
}

.copyright {
  background-color: #000;
  text-align: center;
  font-size: 11px;
  padding-left: 1.7%;
  padding: 16px 0 14px;
}

/*********************

* header-toggle

*********************/
.hamburger_menu {
  display: none;
}

label .menu {
  position: fixed;
  right: -70px;
  top: -70px;
  z-index: 100;
  width: 140px;
  height: 140px;
  background: #2c2020;
  border-radius: 50% 50% 50% 50%;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #2c2020, 0 0 0 0 #2c2020;
  cursor: pointer;
}

label .hamburger {
  position: absolute;
  top: 95px;
  left: 31px;
  width: 30px;
  height: 2px;
  background: #fff;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: .5s ease-in-out;
}

label .hamburger:after,
label .hamburger:before {
  transition: .5s ease-in-out;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

label .hamburger:before {
  top: -10px;
}

label .hamburger:after {
  bottom: -10px;
}

label input {
  display: none;
}

label input:checked+.menu {
  box-shadow: 0 0 0 100vw #2c2020, 0 0 0 100vh #2c2020;
  border-radius: 0;
}

label input:checked+.menu .hamburger {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

label input:checked+.menu .hamburger:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;
}

label input:checked+.menu .hamburger:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.modal-nav-ul.check {
  opacity: 1;
  z-index: 200;
}

label input:checked+.menu+ul li.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*********************

* header-modal

*********************/
.header-modal-wrap {
  position: fixed;
  top: 0;
  right: -200vw;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 1);
  z-index: 3;
  transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.modal-open {
  right: 0;
  z-index: 3;
  transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.modal-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-65%);
}

.modal-nav-ul {
  z-index: -1;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -24%);
  opacity: 0;
  transition: .55s 0s ease-in-out;
  width: 100%;
  height: 100vh;
}

.modal-nav-ul .menu_item {
  width: 85%;
  margin: 0 auto;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.modal-nav-ul .menu_item a {
  position: relative;
  display: block;
  font-size: 21px;
  letter-spacing: 3px;
  transition: 0.8s;
  color: #fff;
  font-weight: 600;
  opacity: .4;
  padding: 13px 0 13px 20px;
}

.modal-nav-ul .menu_item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  width: 5px;
  height: 0%;
  transition: .5s cubic-bezier(0.22, 0.61, 0.36, 1);
  background-color: #fff;
}

.modal-nav-ul .current.menu_item a::before {
  height: 70%;
}

.modal-nav-ul .current.menu_item a {
  opacity: 1;
  cursor: default;
}

.modal-nav-ul .menu_item a img {
  vertical-align: middle;
  width: 40px;
  margin-right: 10px;
}

.modal-nav-ul .menu_item.service a img {
  margin-left: -5px;
  margin-right: 15px;
}

.modal-nav-ul .menu_item a:hover {
  opacity: 1;
}

.modal-nav-ul .menu_item a:hover::before {
  height: 70%;
}

.modal-nav-ul .sub-menu .menu_item {
  padding: 3px 0;
}

.header-modal label img {
  height: 30px;
  vertical-align: middle;
}

/*********************

* bread crumb

*********************/
.breadcrumb {
  margin-bottom: 40px;
  margin-top: 20px;
}

.breadcrumb,
.breadcrumb a {
  font-size: 12px;
  color: #fff;
}

.breadcrumb i {
  display: none;
}

.breadcrumb li {
  display: inline-block;
  font-weight: 500;
}

/*********************

* post_page

*********************/
.post_page {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 92px 5% 171px;
}

.page_ttl_logo {
  text-align: center;
}

.page_ttl_logo img {
  height: 59px;
}

.page_ttl {
  font-size: 15px;
  color: #2c2020;
  text-align: center;
  padding: 10px 0 0;
}

.post_page .book_01 {
  max-height: 140px;
  height: 4.3vw;
  left: -7%;
  top: 50%;
  animation-delay: 0s;
}

.post_page .book_02 {
  max-height: 112px;
  height: 4.8vw;
  right: -6%;
  top: 3%;
  animation-delay: .5s;
}

.post_page .book_05 {
  max-height: 113px;
  height: 4.8vw;
  top: 82%;
  right: -3vw;
  animation-delay: .1s;
}

.post_page .book_06 {
  height: 3.0vw;
  bottom: -6vw;
  left: 49.4%;
  max-height: 58px;
  animation-delay: .3s;
}

/*********************

* archive.php

*********************/
.single_archive_container .wrap {
  margin-top: 78px;
  position: relative;
}

.archive_loop_flex {
  margin: 60px auto 0;
  width: 100%;
}

.archive_item {
  width: 31%;
  padding: 0 26px 0;
  transition: .8s ease;
}

.archive_item:hover {
  filter: brightness(1.2);
}

.archive_item .cat_item_img {
  width: 100%;
  height: 163px;
  object-fit: cover;
  overflow: hidden;
}

.archive_item .cat_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .8s ease;
}

.archive_item:hover .cat_item_img img {
  transform: scale(1.1);
}

.archive_item:nth-child(3n) {
  margin-right: 0;
}

.archive_item_ttl a {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  color: #2c2020;
  display: block;
  line-height: 1.5;
  margin-top: 14px;
}

.archive_item_txt a {
  font-size: 13px;
  letter-spacing: 0;
  display: block;
  line-height: 1.5;
  color: #000;
  margin-top: 10px;
  font-weight: 500;
}

.archive_item_date {
  text-align: right;
}

.archive_item_date a {
  font-size: 13px;
  text-align: right;
  display: block;
  color: #2c2020;
  letter-spacing: 0;
  margin-top: 12px;
}

/*********************

* single.php

*********************/
.single_container .page_ttl_logo img {
  height: 55px;
  margin-bottom: 1px;
}

.blog_wrap {
  margin-top: 60px;
  color: #2c2020;
}

.single_ttl {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}

.post_date {
  text-align: right;
  display: block;
  font-size: 13px;
  color: #2c2020;
  margin-top: 10px;
}

.single_wrap .single_thumb {
  width: 100%;
  height: auto;
  margin: 40px auto 25px;
}

.blog_wrap img {
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

.single_wrap .img_100 {
  width: 100%;
  height: auto;
  margin: 20px auto;
}

.single_wrap .img_80 {
  display: block;
  width: 80%;
  height: auto;
  margin: 20px auto;
}

.single_wrap .img_60 {
  display: block;
  width: 60%;
  height: auto;
  margin: 20px auto;
}

.single_wrap h2 {
  margin: 60px 0 40px;
  padding: 8px 2%;
  font-size: 22px;
  color: #fff;
  background: #65141b;
}

.single_wrap h3 {
  border-bottom: 2px solid #000;
  margin: 60px 0 30px;
  font-size: 22px;
  padding-left: 5px;
  padding-right: 5px;
}

.blog_wrap p {
  font-weight: 500;
  margin: 20px 0;
}

.single_wrap a {
  color: #0c87a4;
}

.single_wrap a:hover {
  text-decoration: underline;
}

.single_table_1 {
  width: 90%;
  margin: 40px auto;
  border: 1px solid #e0e0e0;
}

.single_table_1 tbody {
  width: 100%;
  height: 100%;
}

.single_table_1 tr {
  border-bottom: 1px solid #e0e0e0;
}

.single_table_1 tr:last-child {
  border: none;
}

.single_table_1 th {
  width: 30%;
  border-right: 1px solid #e0e0e0;
  text-align: left;
  background-color: #f1eee8;
}

.single_table_1 td {
  background-color: #f7f7f7;
}

.single_table_1 th,
.single_table_1 td {
  padding: 15px 20px;
}

.text_bold {
  font-weight: bold;
}

.anchor_btn {
  display: block;
  width: 466px;
  margin: 50px auto;
  height: 77px;
  line-height: 77px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  position: relative;
}

.anchor_btn:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 0;
}

.anchor_btn:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

/*********************

* post-navi

*********************/
.single_wrap .post-navi {
  margin-top: 65px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid #dbdbdb;
}

.post-navi span {
  width: 45%;
  display: block;
}

.post-navi .next {
  text-align: right;
}

.post-navi span a {
  display: block;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  color: rgba(152, 40, 28, 0.75);
}

.post-navi span:hover a {
  text-decoration: underline;
  color: rgba(152, 40, 28, 1);
}

/*********************

* 関連記事

*********************/
.recommend {
  background-color: rgba(255, 255, 255, 0.68);
  margin-top: 92px;
  padding: 60px 5% 80px;
}

.single_container .recommend .page_ttl_logo img {
  height: 61px;
  margin-bottom: -6px;
}

.recommend_flex {
  display: flex;
  flex-wrap: wrap;
  margin: 60px auto 65px;
}

/*********************

* ページネーション

*********************/
.wp-pagenavi {
  margin-top: 80px;
  text-align: center;
  margin-bottom: 142px;
}

.wp-pagenavi .current {
  margin: 0.2%;
  padding: 4px 10px;
  background: #000;
  color: #fff;
}

.larger,
.nextpostslink,
.previouspostslink,
.smaller {
  margin: 0.2%;
  padding: 4px 10px;
  background: #ededed;
  color: #000;
}

/*********************

* レスポンシブ

*********************/
@media screen and (max-width: 1100px) {
  .g_nav ul li:last-child a {
    padding: 0 20px;
    margin-left: 0;
  }

  .g_nav ul li a {
    padding: 0 20px;
  }

  /* max-width:1100px */
}

@media screen and (max-width: 900px) {
  .main_logo {
    position: absolute;
    margin: 0;
    left: 3%;
    top: 25px;
  }

  .main_logo img {
    height: 38px;
  }

  .header_site_ttl {
    margin-top: 3px;
    margin-left: 3%;
  }

  .header_site_ttl a {
    font-size: 10px;
  }

  /* max-width:900px */
}

@media screen and (max-width: 700px) {
  .g_nav {
    display: none;
  }

  .hamburger_menu {
    display: block;
  }

  /* max-width:700px */
}

@media screen and (max-width: 480px) {
  .header {
    height: 50px;
  }

  .main_logo {
    top: 15px;
  }

  .main_logo img {
    height: 32px;
  }

  .header_site_ttl {
    margin-top: -3px;
    transform-origin: left;
    transform: scale(0.85);
  }

  .header-toggle {
    top: 4px;
  }

  .copyright {
    font-size: 10px;
  }

  label .menu {
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
  }

  label .hamburger {
    top: 70px;
    left: 20px;
    width: 24px;
  }

  label .hamburger:before {
    top: -8px;
  }

  label .hamburger:after {
    bottom: -8px;
  }

  /* max-width:480px */
}

/* 2024.10.28 */
.post_page {
  padding: 92px 5% 85px;
}