@charset "UTF-8";
/*カラー*/
/*Webフォント*/
@font-face {
  font-family: "Bronova Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Bronova Regular"), url("Bronova Regular.woff") format("woff");
}
@font-face {
  font-family: "Bronova Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Bronova Bold"), url("Bronova Bold.woff") format("woff");
}
/*サイト全体のフォント指定*/
html {
  font-size: 10px;
}

body {
  font-family: dnp-shuei-gothic-kin-std, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}

/*@mixin*/
/*ヘッダー*/
header .header_wrap {
  position: relative;
  display: flex;
  background: #fff;
  justify-content: center;
  height: 105px;
  z-index: 1;
  /*　ハンバーガーボタン　*/
  /*　グローバルナビゲーション　*/
}
@media screen and (max-width: 1100px) {
  header .header_wrap {
    height: 65px;
  }
}
header .header_wrap h1 {
  position: absolute;
  z-index: 10;
  margin: 0;
  display: block;
  top: 15px;
  left: 120px;
}
@media screen and (max-width: 1100px) {
  header .header_wrap h1 {
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
  }
}
header .header_wrap h1 .pc_h1 {
  display: block;
}
@media screen and (max-width: 1100px) {
  header .header_wrap h1 .pc_h1 {
    display: none;
  }
}
header .header_wrap h1 .pc_h1 img {
  max-width: 168px;
  width: 100%;
  vertical-align: bottom;
  display: block;
  vertical-align: top;
}
header .header_wrap h1 .sp_h1 {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .header_wrap h1 .sp_h1 {
    display: block;
  }
}
header .header_wrap h1 .sp_h1 img {
  max-width: 155px;
  width: 100%;
  display: block;
  vertical-align: top;
}
header .header_wrap .hamburger {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 65px;
    height: 65px;
    cursor: pointer;
    z-index: 13;
    background-color: #9E8447;
    /* ナビ開いてる時のボタン */
  }
  header .header_wrap .hamburger span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    left: 20px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  header .header_wrap .hamburger span:nth-child(1) {
    top: 20px;
  }
  header .header_wrap .hamburger span:nth-child(2) {
    top: 30px;
  }
  header .header_wrap .hamburger span:nth-child(3) {
    top: 40px;
  }
  header .header_wrap .hamburger.active span:nth-child(1) {
    top: 30px;
    left: 20px;
    transform: rotate(-45deg);
  }
  header .header_wrap .hamburger.active span:nth-child(2) {
    top: 30px;
    transform: rotate(45deg);
  }
  header .header_wrap .hamburger.active span:nth-child(3) {
    top: 30px;
    transform: rotate(45deg);
  }
}
header .header_wrap .g_nav {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav {
    display: block;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #1A1311;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
  }
  header .header_wrap .g_nav.active {
    transform: translateY(0%);
  }
}
header .header_wrap .g_nav .main_menu {
  margin: 0;
  display: flex;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu {
    display: block;
    background: #fff;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    border-top: none;
  }
}
header .header_wrap .g_nav .main_menu > li {
  list-style: none;
  margin: 0 30px 0 0;
  padding: 10px 0;
}
header .header_wrap .g_nav .main_menu > li:last-child {
  margin: 0 40px 0 0;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu > li {
    margin: 0;
    padding: 0;
  }
  header .header_wrap .g_nav .main_menu > li:last-child {
    margin: 0;
  }
  header .header_wrap .g_nav .main_menu > li:first-child {
    margin: 65px 0 0 0;
  }
}
header .header_wrap .g_nav .main_menu > li.menu-item-has-children {
  position: relative;
}
@media screen and (min-width: 1101px) {
  header .header_wrap .g_nav .main_menu > li.menu-item-has-children:hover > a:before {
    border-top: none;
    border-bottom: 5px solid #9E8447;
  }
  header .header_wrap .g_nav .main_menu > li.menu-item-has-children:hover ul {
    opacity: 1;
    height: auto;
    padding: 27px 38px;
  }
  header .header_wrap .g_nav .main_menu > li.menu-item-has-children:hover ul li {
    display: block;
  }
  header .header_wrap .g_nav .main_menu > li.menu-item-has-children > a {
    pointer-events: none;
  }
  header .header_wrap .g_nav .main_menu > li.menu-item-has-children > a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -11px;
    transform: translate(0, -50%);
    border-top: 5px solid #9E8447;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
  }
  header .header_wrap .g_nav .main_menu > li.menu-item-has-children > a:after {
    display: none;
  }
}
header .header_wrap .g_nav .main_menu > li.menu-item-has-children ul {
  opacity: 0;
  transition: 0.3s;
  margin: 0;
  padding: 0;
  background-color: #1A1311;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  box-sizing: border-box;
}
header .header_wrap .g_nav .main_menu > li.menu-item-has-children ul:before {
  content: "";
  display: block;
  border-bottom: 7px solid #1A1311;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translate(-50%, 0);
}
header .header_wrap .g_nav .main_menu > li.menu-item-has-children ul li {
  display: none;
  text-align: center;
}
header .header_wrap .g_nav .main_menu > li.menu-item-has-children ul li a {
  color: #fff;
  line-height: 1.5rem;
  text-decoration: none;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: 0.3s;
}
header .header_wrap .g_nav .main_menu > li.menu-item-has-children ul li a:hover {
  color: #9E8447;
}
header .header_wrap .g_nav .main_menu > li.menu-item-has-children ul li + li {
  margin-top: 24px;
}
header .header_wrap .g_nav .main_menu > li > a {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #1A1311;
  position: relative;
  display: inline-block;
}
header .header_wrap .g_nav .main_menu > li > a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu > li > a::after {
    position: static;
  }
}
header .header_wrap .g_nav .main_menu > li > a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu > li > a {
    position: static;
    padding: 20px 0;
    border-left: none;
    position: static;
    display: block;
    border-top: solid 1px #E6E6E6;
  }
}
header .header_wrap .g_nav .contact_btn {
  margin: 0;
  padding: 0;
}
header .header_wrap .g_nav .contact_btn li {
  list-style: none;
}
header .header_wrap .g_nav .contact_btn li a {
  font-size: 1.4rem;
  font-family: "Bronova Bold";
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  background: #9E8447;
  padding: 25px 35px 22px 35px;
  box-sizing: border-box;
  border: #9E8447 solid 2px;
  display: inline-block;
  transition: 0.3s;
}
header .header_wrap .g_nav .contact_btn li a:hover {
  color: #9E8447;
  background: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .contact_btn li a {
    width: 100%;
    border-radius: 0;
    border: none;
    transition: none;
    padding: 20px 0 15px 0;
    font-size: 1.6rem;
  }
  header .header_wrap .g_nav .contact_btn li a:hover {
    color: #fff;
    background: #9E8447;
    transition: none;
  }
}

header.m_fixed {
  z-index: 99;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
header.m_fixed .header_wrap h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
}
@media screen and (max-width: 1100px) {
  header.m_fixed .header_wrap h1 {
    left: 20px;
  }
}
header.m_fixed .header_wrap h1 .pc_h1 {
  display: none;
}
header.m_fixed .header_wrap h1 .sp_h1 {
  display: block;
}
header.m_fixed .header_wrap h1 .sp_h1 img {
  max-width: 155px;
  width: 100%;
  vertical-align: bottom;
}

/*ローディング画面*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.loading .load_img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
}
.loading .load_img img {
  display: block;
  max-width: 400px;
  width: 100%;
}

/*メインビジュアル*/
.keyvisual_img {
  position: relative;
  padding: 290px 0 0 0;
}
@media screen and (max-width: 540px) {
  .keyvisual_img {
    padding: 110px 0 0 0;
  }
}
.keyvisual_img .catch_copy {
  position: absolute;
  top: 150px;
  left: 140px;
  font-size: 7.2rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
@media screen and (max-width: 540px) {
  .keyvisual_img .catch_copy {
    font-size: 4.2rem;
    top: 30px;
    left: 30px;
  }
}
.keyvisual_img .catch_copy .color_w {
  color: #fff;
}
.keyvisual_img .catch_copy.is-animated {
  clip-path: inset(0);
}
.keyvisual_img .key_img_bg {
  width: auto;
  height: 576px;
  margin: 0 0 0 80px;
  background: url(../../images/key.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 540px) {
  .keyvisual_img .key_img_bg {
    height: 420px;
    background: url(../../images/sp_key.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 0;
  }
}
.keyvisual_img .scroll {
  position: absolute;
  top: 75px;
  right: 40px;
  animation: fuwafuwa 2s infinite ease-in-out 0.8s alternate;
  transition: 1s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 540px) {
  .keyvisual_img .scroll {
    position: static;
  }
}
.keyvisual_img .scroll p {
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 1.3rem;
  font-family: "Bronova Bold";
  letter-spacing: 1px;
  color: #1A1311;
}
@media screen and (max-width: 540px) {
  .keyvisual_img .scroll p {
    margin: 30px auto 0 auto;
  }
}
.keyvisual_img .scroll p::after {
  margin: 10px 0 0 0;
  display: inline-block;
  content: "";
  width: 1px;
  height: 70px;
  background: #1A1311;
}
@media screen and (max-width: 540px) {
  .keyvisual_img .scroll p::after {
    height: 40px;
  }
}

.box_bg {
  position: relative;
  overflow: hidden;
  /*導入テキスト*/
  /*Youtubeリンク*/
  /*About Feed*/
  /*Recruit*/
}
.box_bg .text_contents .contents_width {
  margin: 90px 80px 140px 0;
  padding: 170px 40px 170px 140px;
  width: auto;
  background: url(../../images/top_image01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  opacity: 0;
}
.box_bg .text_contents .contents_width.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@keyframes fadeup {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 540px) {
  .box_bg .text_contents .contents_width {
    margin: 30px 0 90px 0;
    padding: 90px 30px;
    background: url(../../images/sp_top_image01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.box_bg .text_contents .contents_width p {
  margin: 0 0 60px 0;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
.box_bg .text_contents .contents_width p:last-child {
  margin: 0;
}
.box_bg .front_youtube iframe {
  display: block;
  margin: 100px auto;
  max-width: 1080px;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 540px) {
  .box_bg .front_youtube iframe {
    margin: 90px auto;
    height: 310px;
  }
}
.box_bg .about_feed_contents {
  margin: 0 0 120px 0;
}
@media screen and (max-width: 540px) {
  .box_bg .about_feed_contents {
    margin: 0 0 90px 0;
  }
}
.box_bg .about_feed_contents .contents_flex {
  display: flex;
  width: auto;
  max-width: 1080px;
  padding: 0 30px;
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .box_bg .about_feed_contents .contents_flex {
    flex-wrap: wrap;
  }
}
.box_bg .about_feed_contents .contents_flex .img_area {
  position: relative;
  overflow: hidden;
  margin: 0 120px 0 0;
  opacity: 0;
}
@media screen and (max-width: 540px) {
  .box_bg .about_feed_contents .contents_flex .img_area {
    margin: 60px 0 0 0;
    order: 2;
  }
}
.box_bg .about_feed_contents .contents_flex .img_area a {
  display: block;
}
.box_bg .about_feed_contents .contents_flex .img_area a img {
  max-width: 604px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 540px) {
  .box_bg .about_feed_contents .contents_flex .img_area a img {
    max-width: auto;
  }
}
.box_bg .about_feed_contents .contents_flex .img_area a img:nth-child(2) {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .box_bg .about_feed_contents .contents_flex .img_area a img:nth-child(2) {
    opacity: 0;
    transition: 0.3s;
  }
}
.box_bg .about_feed_contents .contents_flex .img_area a:hover img:nth-child(2) {
  opacity: 0;
  transition: 0.3s;
}
.box_bg .about_feed_contents .contents_flex .img_area.is-animated {
  animation: fadeupY 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@keyframes fadeupY {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.box_bg .about_feed_contents .contents_flex .img_area_feed {
  position: relative;
  overflow: hidden;
  margin: 0;
  opacity: 0;
}
.box_bg .about_feed_contents .contents_flex .img_area_feed a {
  display: block;
}
.box_bg .about_feed_contents .contents_flex .img_area_feed a img {
  max-width: 604px;
  width: 100%;
  display: block;
}
.box_bg .about_feed_contents .contents_flex .img_area_feed a img:nth-child(2) {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .box_bg .about_feed_contents .contents_flex .img_area_feed a img:nth-child(2) {
    opacity: 0;
    transition: 0.3s;
  }
}
.box_bg .about_feed_contents .contents_flex .img_area_feed a:hover img:nth-child(2) {
  opacity: 0;
  transition: 0.3s;
}
.box_bg .about_feed_contents .contents_flex .img_area_feed.is-animated {
  animation: fadeupY 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
.box_bg .about_feed_contents .contents_flex .text_area {
  max-width: 365px;
  width: 100%;
  opacity: 0;
}
@media screen and (max-width: 540px) {
  .box_bg .about_feed_contents .contents_flex .text_area {
    order: 1;
  }
}
.box_bg .about_feed_contents .contents_flex .text_area .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.box_bg .about_feed_contents .contents_flex .text_area .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.box_bg .about_feed_contents .contents_flex .text_area .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.box_bg .about_feed_contents .contents_flex .text_area .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.box_bg .about_feed_contents .contents_flex .text_area .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.box_bg .about_feed_contents .contents_flex .text_area .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.box_bg .about_feed_contents .contents_flex .text_area .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.box_bg .about_feed_contents .contents_flex .text_area p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 40px 0 60px 0;
  letter-spacing: 0.1em;
}
.box_bg .about_feed_contents .contents_flex .text_area .wp-block-buttons .wp-block-button a {
  display: block;
  text-decoration: none;
  color: #9E8447;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
.box_bg .about_feed_contents .contents_flex .text_area .wp-block-buttons .wp-block-button a::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 50px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
.box_bg .about_feed_contents .contents_flex .text_area .wp-block-buttons .wp-block-button a:hover::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 70px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .box_bg .about_feed_contents .contents_flex .text_area .wp-block-buttons .wp-block-button a:hover::before {
    margin: 0 10px 5px 0;
    display: inline-block;
    content: "";
    width: 50px;
    height: 2px;
    background: #9E8447;
    transition: 0.3s;
  }
}
.box_bg .about_feed_contents .contents_flex .text_area.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed {
  max-width: 365px;
  width: 100%;
  margin: 0 120px 0 0;
  opacity: 0;
}
@media screen and (max-width: 540px) {
  .box_bg .about_feed_contents .contents_flex .text_area_feed {
    margin: 0 0 60px 0;
  }
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 40px 0 60px 0;
  letter-spacing: 0.1em;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .wp-block-buttons .wp-block-button a {
  display: block;
  text-decoration: none;
  color: #9E8447;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 1px;
  font-size: 1.6rem;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .wp-block-buttons .wp-block-button a::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 50px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
.box_bg .about_feed_contents .contents_flex .text_area_feed .wp-block-buttons .wp-block-button a:hover::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 70px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .box_bg .about_feed_contents .contents_flex .text_area_feed .wp-block-buttons .wp-block-button a:hover::before {
    margin: 0 10px 5px 0;
    display: inline-block;
    content: "";
    width: 50px;
    height: 2px;
    background: #9E8447;
    transition: 0.3s;
  }
}
.box_bg .about_feed_contents .contents_flex .text_area_feed.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
.box_bg .recruit_contents {
  width: 100%;
  padding: 0 0 217px 0;
  overflow: hidden;
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 540px) {
  .box_bg .recruit_contents {
    padding: 0 0 100px 0;
  }
}
.box_bg .recruit_contents .contents_width a {
  margin: 0 auto;
  padding: 225px 30px;
  width: auto;
  max-width: 1200px;
  background: url(../../images/top_image04.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  transition: 0.3s;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 1100px) {
  .box_bg .recruit_contents .contents_width a {
    background: url(../../images/top_image04_hover.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 540px) {
  .box_bg .recruit_contents .contents_width a {
    padding: 90px 30px 120px 30px;
    background: url(../../images/sp_top_image04.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.box_bg .recruit_contents .contents_width a .heading h1 {
  text-align: center;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #fff;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.box_bg .recruit_contents .contents_width a .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
  justify-content: center;
}
.box_bg .recruit_contents .contents_width a .heading .circle_flex .wp-block-group__inner-container p {
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.box_bg .recruit_contents .contents_width a .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.box_bg .recruit_contents .contents_width a .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.box_bg .recruit_contents .contents_width a p {
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  margin: 40px 0 0 0;
  color: #fff;
}
.box_bg .recruit_contents .en_text p {
  font-size: 20rem;
  font-family: "Bronova Bold";
  -webkit-text-stroke: 2px #9E8447;
  color: transparent;
  position: absolute;
  bottom: 100px;
  margin: 0;
  transform: translateX(0);
  transition: transform 0.8s;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .box_bg .recruit_contents .en_text p {
    font-size: 15rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 130px;
  }
}
@media screen and (max-width: 540px) {
  .box_bg .recruit_contents .en_text p {
    font-size: 9.3rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 45px;
  }
}
.box_bg .recruit_contents.is-animated {
  animation: fadeupY 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
.box_bg .recruit_contents:hover .contents_width a {
  background: url(../../images/top_image04_hover.jpg);
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-sizing: border-box;
  opacity: 1;
}
@media screen and (max-width: 540px) {
  .box_bg .recruit_contents:hover .contents_width a {
    background: url(../../images/sp_top_image04.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.box_bg .recruit_contents:hover .en_text p {
  transform: translateX(120px);
}
@media screen and (max-width: 1100px) {
  .box_bg .recruit_contents:hover .en_text p {
    transform: translateX(-50%);
  }
}
.box_bg .gray_bg {
  background: #F6F6F6;
  width: 100%;
  height: 2194px;
  z-index: -1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 384px;
}
@media screen and (max-width: 540px) {
  .box_bg .gray_bg {
    left: 90px;
  }
}

/*three_contents*/
.three_contents {
  margin: 0 0 140px 0;
}
@media screen and (max-width: 540px) {
  .three_contents {
    margin: 0 0 90px 0;
  }
}
.three_contents .contents_flex {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  width: auto;
  padding: 0 30px;
}
@media screen and (max-width: 800px) {
  .three_contents .contents_flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.three_contents .contents_flex .voice_bg {
  max-width: 373px;
  width: 100%;
  margin: 0 40px 0 0;
}
@media screen and (max-width: 800px) {
  .three_contents .contents_flex .voice_bg {
    margin: 0 0 30px 0;
  }
}
.three_contents .contents_flex .voice_bg a {
  display: block;
  width: auto;
  padding: 110px 30px;
  background: url(../../images/top_image05.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.3s;
  opacity: 0;
}
.three_contents .contents_flex .voice_bg a.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
.three_contents .contents_flex .voice_bg a:hover {
  background: url(../../images/top_image05_hover.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .three_contents .contents_flex .voice_bg a {
    background: url(../../images/top_image05_hover.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.three_contents .contents_flex .blog_bg {
  max-width: 373px;
  width: 100%;
  margin: 0 40px 0 0;
}
@media screen and (max-width: 800px) {
  .three_contents .contents_flex .blog_bg {
    margin: 0 0 30px 0;
  }
}
.three_contents .contents_flex .blog_bg a {
  display: block;
  width: auto;
  padding: 110px 30px;
  background: url(../../images/top_image06.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.3s;
  opacity: 0;
}
.three_contents .contents_flex .blog_bg a.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
.three_contents .contents_flex .blog_bg a:hover {
  background: url(../../images/top_image06_hover.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .three_contents .contents_flex .blog_bg a {
    background: url(../../images/top_image06_hover.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.three_contents .contents_flex .contact_bg {
  max-width: 373px;
  width: 100%;
  margin: 0;
}
.three_contents .contents_flex .contact_bg a {
  display: block;
  width: auto;
  padding: 110px 30px;
  background: url(../../images/top_image07.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0;
  transition: 0.3s;
  opacity: 0;
}
.three_contents .contents_flex .contact_bg a.is-animated {
  animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
.three_contents .contents_flex .contact_bg a:hover {
  background: url(../../images/top_image07_hover.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .three_contents .contents_flex .contact_bg a {
    background: url(../../images/top_image07_hover.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.three_contents .contents_flex div a {
  text-decoration: none;
}
.three_contents .contents_flex div a .heading {
  text-align: center;
  color: #fff;
}
.three_contents .contents_flex div a .heading p {
  font-size: 1.6rem;
  font-family: "Bronova Bold";
  margin: 0 0 20px 0;
}
.three_contents .contents_flex div a .heading h1 {
  font-size: 2.4rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}

/*下層ページ*/
/*about*/
.page_about {
  /*上田畜産のこれまで*/
  /*沿革*/
  /*畜産経営に対する考え方*/
  /*上田畜産のこれから*/
  /*マップ*/
}
.page_about .h1_lower {
  position: relative;
  padding: 180px 0 120px 0;
}
@media screen and (max-width: 1100px) {
  .page_about .h1_lower {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 800px) {
  .page_about .h1_lower {
    padding: 60px 0 90px 0;
  }
}
.page_about .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  padding: 0 30px 70px 30px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .page_about .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 30px 30px 30px;
  }
}
.page_about .h1_lower .flex_h1 p {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_about .h1_lower .flex_h1 p {
    font-size: 2rem;
    position: static;
    margin-bottom: 12px;
  }
}
.page_about .h1_lower .flex_h1 h1 {
  white-space: nowrap;
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_about .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_about .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_about .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_about .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_about .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_about .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_about .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_about .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_about .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_about .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_about .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  bottom: 72px;
  margin: 0;
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
.page_about .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_about .h1_lower .en_text {
    bottom: 42px;
  }
}
@media screen and (max-width: 540px) {
  .page_about .h1_lower .en_text {
    font-size: 8rem;
    bottom: 59px;
  }
}
.page_about .h1_lower .h1_img {
  width: auto;
  height: 493px;
  background: url(../../images/about_image01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_about .h1_lower .h1_img.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_about .h1_lower .h1_img {
    height: 300px;
  }
}
@media screen and (max-width: 540px) {
  .page_about .h1_lower .h1_img {
    background: url(../../images/sp_about_image01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.page_about .contents_flex01 {
  display: flex;
  width: auto;
  max-width: 1080px;
  padding: 0 30px;
  margin: 0 auto 100px auto;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex01 {
    flex-wrap: wrap;
    margin: 0 0 90px 0;
  }
}
.page_about .contents_flex01 .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_about .contents_flex01 .text_area {
  max-width: 540px;
  width: 100%;
  margin: 0 100px 0 0;
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex01 .text_area {
    margin: 0 0 60px 0;
  }
}
.page_about .contents_flex01 .text_area .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_about .contents_flex01 .text_area .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_about .contents_flex01 .text_area .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_about .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.page_about .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_about .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_about .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_about .contents_flex01 .text_area p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 40px 0;
  letter-spacing: 0.1em;
}
.page_about .contents_flex01 .text_area .name {
  font-size: 1.8rem;
  margin: 0;
}
.page_about .contents_flex01 .img_area {
  max-width: 435px;
}
.page_about .contents_flex01 .img_area .wp-block-image {
  margin: 0;
}
.page_about .contents_flex01 .img_area .wp-block-image img {
  display: block;
  height: auto;
}
@media screen and (max-width: 800px) {
  .page_about .contents_flex01 .img_area .wp-block-image img {
    width: 100%;
  }
}
.page_about .contents_table {
  width: auto;
  background: #F6F6F6;
  margin: 0 0 140px 140px;
  box-sizing: border-box;
  padding: 100px 140px 50px 80px;
}
@media screen and (max-width: 800px) {
  .page_about .contents_table {
    margin: 0 0 90px 0;
    padding: 90px 30px;
  }
}
.page_about .contents_table .flex_table {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .page_about .contents_table .flex_table {
    display: block;
  }
}
.page_about .contents_table .flex_table .wp-block-column {
  margin-left: 0;
  flex-basis: auto;
  flex-grow: 0;
}
.page_about .contents_table .flex_table .wp-block-column:nth-of-type(2) {
  margin: 0 0 0 auto;
}
.page_about .contents_table .flex_table h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 100px 60px 0;
}
.page_about .contents_table .flex_table h2::before {
  margin: 0 18px 10px 0;
  display: inline-block;
  content: "";
  height: 1px;
  width: 60px;
  background: #1A1311;
}
.page_about .contents_table .flex_table .wp-block-table {
  margin: 0;
}
.page_about .contents_table .flex_table .wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}
.page_about .contents_table .flex_table .wp-block-table table tbody tr {
  border-bottom: solid 1px #E6E6E6;
}
.page_about .contents_table .flex_table .wp-block-table table tbody tr:nth-of-type(1) td {
  padding: 0 0 20px 0;
}
.page_about .contents_table .flex_table .wp-block-table table tbody tr:nth-of-type(1) td:nth-of-type(2) {
  padding: 0 0 20px 80px;
}
@media screen and (max-width: 540px) {
  .page_about .contents_table .flex_table .wp-block-table table tbody tr:nth-of-type(1) td {
    padding: 0;
  }
  .page_about .contents_table .flex_table .wp-block-table table tbody tr:nth-of-type(1) td:nth-of-type(2) {
    padding: 12px 0 30px 0;
  }
}
.page_about .contents_table .flex_table .wp-block-table table tbody tr td {
  padding: 20px 0 20px 0;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.page_about .contents_table .flex_table .wp-block-table table tbody tr td:nth-of-type(2) {
  padding: 20px 0 20px 80px;
}
@media screen and (max-width: 540px) {
  .page_about .contents_table .flex_table .wp-block-table table tbody tr td {
    display: block;
    padding: 30px 0 0 0;
  }
  .page_about .contents_table .flex_table .wp-block-table table tbody tr td:nth-of-type(2) {
    padding: 12px 0 30px 0;
  }
}
.page_about .contents_flex02 {
  display: flex;
  width: auto;
  margin: 0 0 140px 0;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex02 {
    flex-wrap: wrap;
    margin: 0 0 90px 0;
    padding: 0 30px;
  }
}
.page_about .contents_flex02 .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_about .contents_flex02 .text_area {
  width: 100%;
  padding: 0 140px 0 100px;
}
@media screen and (max-width: 1100px) {
  .page_about .contents_flex02 .text_area {
    padding: 0 100px;
  }
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex02 .text_area {
    order: 1;
    padding: 0;
  }
}
.page_about .contents_flex02 .text_area .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_about .contents_flex02 .text_area .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_about .contents_flex02 .text_area .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_about .contents_flex02 .text_area .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.page_about .contents_flex02 .text_area .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_about .contents_flex02 .text_area .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_about .contents_flex02 .text_area .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_about .contents_flex02 .text_area p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 40px 0;
  letter-spacing: 0.1em;
}
.page_about .contents_flex02 .text_area p:last-child {
  margin: 40px 0 0 0;
}
.page_about .contents_flex02 .text_area .name {
  font-size: 1.8rem;
  margin: 0;
}
.page_about .contents_flex02 .img_area {
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .page_about .contents_flex02 .img_area {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex02 .img_area {
    order: 2;
  }
}
.page_about .contents_flex02 .img_area .wp-block-image {
  margin: 0;
  width: 578px;
}
@media screen and (max-width: 1200px) {
  .page_about .contents_flex02 .img_area .wp-block-image {
    width: auto;
  }
}
.page_about .contents_flex02 .img_area .wp-block-image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex02 .img_area .wp-block-image img {
    margin: 60px 0 0 0;
  }
}
.page_about .contents_flex03 {
  display: flex;
  width: auto;
  margin: 0;
  align-items: center;
  margin: 0 0 140px 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex03 {
    flex-wrap: wrap;
    margin: 0 0 90px 0;
    padding: 0 30px;
  }
}
.page_about .contents_flex03 .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_about .contents_flex03 .text_area {
  width: 100%;
  padding: 0 100px 0 140px;
}
@media screen and (max-width: 1100px) {
  .page_about .contents_flex03 .text_area {
    padding: 0 100px;
  }
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex03 .text_area {
    padding: 0;
  }
}
.page_about .contents_flex03 .text_area .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_about .contents_flex03 .text_area .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_about .contents_flex03 .text_area .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_about .contents_flex03 .text_area .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.page_about .contents_flex03 .text_area .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_about .contents_flex03 .text_area .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_about .contents_flex03 .text_area .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_about .contents_flex03 .text_area p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 40px 0;
  letter-spacing: 0.1em;
}
.page_about .contents_flex03 .text_area p:last-child {
  margin: 40px 0 0 0;
}
.page_about .contents_flex03 .img_area {
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .page_about .contents_flex03 .img_area {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex03 .img_area {
    order: 2;
  }
}
.page_about .contents_flex03 .img_area .wp-block-image {
  margin: 0;
  width: 578px;
}
@media screen and (max-width: 1200px) {
  .page_about .contents_flex03 .img_area .wp-block-image {
    width: auto;
  }
}
.page_about .contents_flex03 .img_area .wp-block-image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .page_about .contents_flex03 .img_area .wp-block-image img {
    margin: 60px 0 0 0;
  }
}
.page_about .contents_map {
  background: #F6F6F6;
}
.page_about .contents_map .contents_centeer {
  max-width: 1080px;
  width: auto;
  padding: 140px 30px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .page_about .contents_map .contents_centeer {
    padding: 90px 40px;
  }
}
.page_about .contents_map .contents_centeer .heading p {
  text-align: center;
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_about .contents_map .contents_centeer .heading h2 {
  text-align: center;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
}
.page_about .contents_map .contents_centeer .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
  justify-content: center;
}
.page_about .contents_map .contents_centeer .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_about .contents_map .contents_centeer .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_about .contents_map .contents_centeer .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_about .contents_map .contents_centeer .wp-block-image {
  margin: 60px 0 0 0;
}
.page_about .contents_map .contents_centeer .wp-block-image img {
  width: 100%;
  display: block;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_about .contents_map .contents_centeer .wp-block-image {
    overflow: scroll;
    white-space: nowrap;
  }
  .page_about .contents_map .contents_centeer .wp-block-image img {
    width: 500px;
    max-width: 500px;
  }
}

/*feed*/
.page_feed {
  /*上田畜産における肉牛肥育の考え方*/
  /*肥育の基本方針*/
  /*牛の写真*/
  /*生産基準*/
}
.page_feed .h1_lower {
  position: relative;
  padding: 180px 0 120px 0;
}
@media screen and (max-width: 1100px) {
  .page_feed .h1_lower {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 800px) {
  .page_feed .h1_lower {
    padding: 60px 0 90px 0;
  }
}
.page_feed .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  padding: 0 30px 70px 30px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .page_feed .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 30px 30px 30px;
  }
}
.page_feed .h1_lower .flex_h1 p {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_feed .h1_lower .flex_h1 p {
    font-size: 2rem;
    position: static;
    margin-bottom: 12px;
  }
}
.page_feed .h1_lower .flex_h1 h1 {
  white-space: nowrap;
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_feed .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_feed .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_feed .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_feed .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_feed .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_feed .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_feed .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_feed .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_feed .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_feed .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_feed .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  bottom: 72px;
  margin: 0;
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
.page_feed .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_feed .h1_lower .en_text {
    bottom: 42px;
  }
}
@media screen and (max-width: 540px) {
  .page_feed .h1_lower .en_text {
    font-size: 8rem;
    bottom: 59px;
  }
}
.page_feed .h1_lower .h1_img {
  width: auto;
  height: 493px;
  background: url(../../images/feed_image01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_feed .h1_lower .h1_img.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_feed .h1_lower .h1_img {
    height: 300px;
  }
}
@media screen and (max-width: 540px) {
  .page_feed .h1_lower .h1_img {
    background: url(../../images/sp_feed_image01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.page_feed .contents_flex01 {
  display: flex;
  width: auto;
  margin: 0;
  align-items: center;
  margin: 0 0 140px 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
@media screen and (max-width: 540px) {
  .page_feed .contents_flex01 {
    flex-wrap: wrap;
    margin: 0 0 90px 0;
    padding: 0 30px;
  }
}
.page_feed .contents_flex01 .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_feed .contents_flex01 .text_area {
  width: 100%;
  padding: 0 140px 0 100px;
}
@media screen and (max-width: 1100px) {
  .page_feed .contents_flex01 .text_area {
    padding: 0 100px;
  }
}
@media screen and (max-width: 540px) {
  .page_feed .contents_flex01 .text_area {
    padding: 0;
  }
}
.page_feed .contents_flex01 .text_area .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_feed .contents_flex01 .text_area .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_feed .contents_flex01 .text_area .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_feed .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.page_feed .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_feed .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_feed .contents_flex01 .text_area .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_feed .contents_flex01 .text_area p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 40px 0;
  letter-spacing: 0.1em;
}
.page_feed .contents_flex01 .text_area p:last-child {
  margin: 40px 0 0 0;
}
.page_feed .contents_flex01 .text_area .name {
  font-size: 1.8rem;
  margin: 0;
}
.page_feed .contents_flex01 .img_area {
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .page_feed .contents_flex01 .img_area {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 540px) {
  .page_feed .contents_flex01 .img_area {
    order: 2;
  }
}
.page_feed .contents_flex01 .img_area .wp-block-image {
  margin: 0;
  width: 578px;
}
@media screen and (max-width: 1200px) {
  .page_feed .contents_flex01 .img_area .wp-block-image {
    width: auto;
  }
}
.page_feed .contents_flex01 .img_area .wp-block-image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .page_feed .contents_flex01 .img_area .wp-block-image img {
    margin: 60px 0 0 0;
  }
}
.page_feed .contents_list01 {
  background: #F6F6F6;
  width: auto;
  padding: 140px 30px 100px 30px;
}
@media screen and (max-width: 540px) {
  .page_feed .contents_list01 {
    padding: 90px 30px;
  }
}
.page_feed .contents_list01 .flex_list {
  max-width: 1080px;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
}
.page_feed .contents_list01 .flex_list .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
@media screen and (max-width: 800px) {
  .page_feed .contents_list01 .flex_list .wp-block-column {
    flex-basis: auto !important;
  }
}
.page_feed .contents_list01 .flex_list .column_01 .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_feed .contents_list01 .flex_list .column_01 .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_feed .contents_list01 .flex_list .column_01 .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_feed .contents_list01 .flex_list .column_01 .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.page_feed .contents_list01 .flex_list .column_01 .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_feed .contents_list01 .flex_list .column_01 .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_feed .contents_list01 .flex_list .column_01 .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_feed .contents_list01 .flex_list .column_02 {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_feed .contents_list01 .flex_list .column_02 {
    margin: 60px 0 0 0;
    width: 100%;
  }
}
.page_feed .contents_list01 .flex_list .column_02 ol {
  margin: 0;
  padding: 0;
  counter-reset: num;
  list-style: none;
}
.page_feed .contents_list01 .flex_list .column_02 ol li {
  font-size: 1.8rem;
  color: #1A1311;
  background: #fff;
  padding: 25px 25px 25px 60px;
  margin: 0 0 10px 0;
  line-height: 1.75;
  position: relative;
}
.page_feed .contents_list01 .flex_list .column_02 ol li::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 0 0 0;
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  background: #fff;
  color: #9E8447;
  font-size: 1.4rem;
  font-family: "Bronova Bold";
  border-radius: 50%;
  border: solid 2px #9E8447;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  text-align: center;
}
.page_feed .cow_img {
  background: url(../../images/feed_image03.jpg);
  width: auto;
  height: 520px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  .page_feed .cow_img {
    height: 350px;
  }
}
@media screen and (max-width: 540px) {
  .page_feed .cow_img {
    background: url(../../images/sp_feed_image03.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.page_feed .contents_list02 {
  padding: 140px 30px;
}
@media screen and (max-width: 540px) {
  .page_feed .contents_list02 {
    padding: 90px 30px;
  }
}
.page_feed .contents_list02 .flex_list {
  max-width: 1080px;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.page_feed .contents_list02 .flex_list .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
@media screen and (max-width: 800px) {
  .page_feed .contents_list02 .flex_list .wp-block-column {
    flex-basis: auto !important;
  }
}
.page_feed .contents_list02 .flex_list .heading p {
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_feed .contents_list02 .flex_list .heading h1 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_feed .contents_list02 .flex_list .heading h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
  line-height: 1.38;
}
.page_feed .contents_list02 .flex_list .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
}
.page_feed .contents_list02 .flex_list .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_feed .contents_list02 .flex_list .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_feed .contents_list02 .flex_list .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_feed .contents_list02 .flex_list .ol_contents {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_feed .contents_list02 .flex_list .ol_contents {
    margin: 60px 0 0 0;
    width: 100%;
  }
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list {
  border-bottom: solid 1px #E6E6E6;
  padding: 40px 0;
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list:first-child {
  padding: 0 0 40px 0;
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list h3 {
  font-size: 2.6rem;
  color: #1A1311;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0 0 30px 0;
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list h3 span {
  vertical-align: middle;
  text-align: center;
  width: 34px;
  height: 34px;
  padding: 8px 0 0 0;
  box-sizing: border-box;
  background: #9E8447;
  border-radius: 50%;
  display: inline-block;
  font-family: "Bronova Bold";
  font-size: 2rem;
  color: #fff;
  margin: 0 10px 0 0;
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list ol {
  padding: 0;
  margin: 0;
  counter-reset: li;
  list-style: none;
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list ol li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.6rem;
  color: #1A1311;
  margin: 0 0 20px 0;
  line-height: 1.75;
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list ol li::before {
  counter-increment: li;
  content: counter(li) ". ";
  color: #9E8447;
  font-family: "Bronova Bold";
}
.page_feed .contents_list02 .flex_list .ol_contents .ol_list ol li:last-child {
  margin: 0;
}

/*voice*/
.page_voice {
  padding: 0 0 36px 0;
}
@media screen and (max-width: 800px) {
  .page_voice {
    padding: 0;
  }
}
.page_voice .h1_lower {
  position: relative;
  padding: 180px 0 120px 0;
}
@media screen and (max-width: 1100px) {
  .page_voice .h1_lower {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 800px) {
  .page_voice .h1_lower {
    padding: 60px 0 90px 0;
  }
}
.page_voice .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  padding: 0 30px 70px 30px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .page_voice .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 30px 30px 30px;
  }
}
.page_voice .h1_lower .flex_h1 p {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_voice .h1_lower .flex_h1 p {
    font-size: 2rem;
    position: static;
    margin-bottom: 12px;
  }
}
.page_voice .h1_lower .flex_h1 h1 {
  white-space: nowrap;
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_voice .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_voice .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_voice .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_voice .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_voice .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_voice .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_voice .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_voice .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_voice .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_voice .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_voice .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  bottom: 72px;
  margin: 0;
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
.page_voice .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_voice .h1_lower .en_text {
    bottom: 42px;
  }
}
@media screen and (max-width: 540px) {
  .page_voice .h1_lower .en_text {
    font-size: 8rem;
    bottom: 59px;
  }
}
.page_voice .h1_lower .h1_img {
  width: auto;
  height: 493px;
  background: url(../../images/voice_image01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_voice .h1_lower .h1_img.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_voice .h1_lower .h1_img {
    height: 300px;
  }
}
@media screen and (max-width: 540px) {
  .page_voice .h1_lower .h1_img {
    background: url(../../images/sp_voice_image01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.page_voice .contents_width {
  max-width: 1200px;
  width: auto;
  margin: 0 auto;
}
.page_voice .contents_width .balloon_contents_l {
  position: relative;
  display: flex;
  background: #F6F6F6;
  padding: 80px 60px 80px 70px;
  margin: 0 auto 134px 0;
  max-width: 960px;
  box-sizing: border-box;
  width: auto;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_l {
    display: block;
    padding: 90px 30px;
    margin: 0 auto 110px 0;
  }
}
.page_voice .contents_width .balloon_contents_l::after {
  background: url(../../images/triangle_l.png);
  position: absolute;
  bottom: -48px;
  left: 60px;
  content: "";
  display: inline-block;
  background-size: cover;
  width: 52px;
  height: 48px;
}
.page_voice .contents_width .balloon_contents_l .en_text {
  position: absolute;
  top: -16px;
  right: 110px;
  margin: 0;
  color: #9E8447;
  font-size: 4rem;
  letter-spacing: 0.1em;
  font-family: "Bronova Bold";
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_l .en_text {
    right: 50%;
    transform: translateX(50%);
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_l .h2_center {
    text-align: center;
    display: block;
  }
}
.page_voice .contents_width .balloon_contents_l .h2_center h2 {
  text-indent: -1.3em;
  padding: 0 0 0 1.5em;
  font-size: 2.6rem;
  line-height: 1.2;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_l .h2_center h2 {
    padding: 0 0 40px 1em;
    text-align: left;
    display: inline-block;
  }
}
.page_voice .contents_width .balloon_contents_l .h2_center h2::before {
  content: "";
  background-image: url(../../images/quote.png);
  display: inline-block;
  background-size: cover;
  width: 23px;
  height: 20px;
  margin: 0 10px 0 0;
}
.page_voice .contents_width .balloon_contents_l .voice_text {
  margin: 0 0 0 auto;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_l .voice_text {
    max-width: 100%;
    margin: 0;
  }
}
.page_voice .contents_width .balloon_contents_l .voice_text p {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #1A1311;
  margin: 0;
}
.page_voice .contents_width .balloon_contents_l .voice_text .name {
  font-size: 1.8rem;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_l .voice_text .name {
    margin: 40px 0 0 0;
  }
}
.page_voice .contents_width .balloon_contents_r {
  position: relative;
  display: flex;
  background: #F6F6F6;
  padding: 80px 60px 80px 70px;
  margin: 0 0 134px auto;
  max-width: 960px;
  box-sizing: border-box;
  width: auto;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_r {
    display: block;
    padding: 90px 30px;
    margin: 0 auto 110px 0;
  }
}
.page_voice .contents_width .balloon_contents_r::after {
  background: url(../../images/triangle_r.png);
  position: absolute;
  bottom: -48px;
  right: 60px;
  content: "";
  display: inline-block;
  background-size: cover;
  width: 52px;
  height: 48px;
}
.page_voice .contents_width .balloon_contents_r .en_text {
  position: absolute;
  top: -16px;
  right: 110px;
  margin: 0;
  color: #9E8447;
  font-size: 4rem;
  letter-spacing: 0.1em;
  font-family: "Bronova Bold";
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_r .en_text {
    right: 50%;
    transform: translateX(50%);
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_r .h2_center {
    text-align: center;
    display: block;
  }
}
.page_voice .contents_width .balloon_contents_r .h2_center h2 {
  text-indent: -1.3em;
  padding: 0 0 0 1.5em;
  font-size: 2.6rem;
  line-height: 1.2;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_r .h2_center h2 {
    padding: 0 0 40px 1em;
    text-align: left;
    display: inline-block;
  }
}
.page_voice .contents_width .balloon_contents_r .h2_center h2::before {
  content: "";
  background-image: url(../../images/quote.png);
  display: inline-block;
  background-size: cover;
  width: 23px;
  height: 20px;
  margin: 0 10px 0 0;
}
.page_voice .contents_width .balloon_contents_r .voice_text {
  margin: 0 0 0 auto;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_r .voice_text {
    max-width: 100%;
    margin: 0;
  }
}
.page_voice .contents_width .balloon_contents_r .voice_text p {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #1A1311;
  margin: 0;
}
.page_voice .contents_width .balloon_contents_r .voice_text .name {
  font-size: 1.8rem;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 800px) {
  .page_voice .contents_width .balloon_contents_r .voice_text .name {
    margin: 40px 0 0 0;
  }
}

/*Privacy policy*/
.page_policy {
  margin: 0 0 120px 0;
}
@media screen and (max-width: 540px) {
  .page_policy {
    margin: 0 0 90px 0;
  }
}
.page_policy .h1_lower {
  position: relative;
  padding: 180px 30px 80px 30px;
}
@media screen and (max-width: 1100px) {
  .page_policy .h1_lower {
    padding: 90px 30px;
  }
}
@media screen and (max-width: 800px) {
  .page_policy .h1_lower {
    padding: 60px 30px 90px 30px;
  }
}
.page_policy .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 30px 0;
  border-bottom: solid 1px #E6E6E6;
}
@media screen and (max-width: 1100px) {
  .page_policy .h1_lower .flex_h1 {
    display: block;
    text-align: center;
  }
}
.page_policy .h1_lower .flex_h1 h1 {
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_policy .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_policy .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_policy .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_policy .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_policy .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_policy .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_policy .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_policy .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_policy .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_policy .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_policy .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  top: 40px;
  margin: 0;
  color: #F6F6F6;
  opacity: 0;
  text-transform: capitalize;
}
.page_policy .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_policy .h1_lower .en_text {
    position: static;
    text-align: center;
    padding: 30px 0 0 0;
    font-size: 4.2rem;
  }
}
.page_policy .contents_center {
  max-width: 1080px;
  width: auto;
  margin: 0 auto 120px auto;
  padding: 0 30px;
}
.page_policy .contents_center p {
  margin: 0 0 80px 0;
  font-size: 1.6rem;
  color: #1A1311;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 540px) {
  .page_policy .contents_center p {
    margin: 0 0 60px 0;
  }
}
.page_policy .contents_center .wp-block-columns {
  margin-bottom: 0;
  display: flex;
  padding: 80px 0;
  border-top: solid 1px #E2E2E2;
}
.page_policy .contents_center .wp-block-columns:last-child {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 1100px) {
  .page_policy .contents_center .wp-block-columns {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .page_policy .contents_center .wp-block-columns {
    padding: 60px 0;
  }
  .page_policy .contents_center .wp-block-columns:last-child {
    padding: 60px 0 0 0;
  }
}
.page_policy .contents_center .wp-block-columns .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
}
.page_policy .contents_center .wp-block-columns .wp-block-column h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 50px 0 0;
  text-indent: -3em;
  padding-left: 3em;
  line-height: 1.65;
}
@media screen and (max-width: 1100px) {
  .page_policy .contents_center .wp-block-columns .wp-block-column h2 {
    margin: 0;
  }
}
.page_policy .contents_center .wp-block-columns .wp-block-column h2::before {
  margin: 0 18px 10px 0;
  display: inline-block;
  content: "";
  height: 1px;
  width: 60px;
  background: #1A1311;
}
.page_policy .contents_center .wp-block-columns .policy_text {
  max-width: 650px;
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_policy .contents_center .wp-block-columns .policy_text {
    margin: 40px 0 0 0;
    max-width: 100%;
  }
}
.page_policy .contents_center .wp-block-columns .policy_text p {
  margin: 0;
}
.page_policy .contents_center .wp-block-columns .policy_text ol {
  margin: 0;
  padding: 0;
}
.page_policy .contents_center .wp-block-columns .policy_text ol li {
  margin: 40px 0 0 0;
  font-size: 1.6rem;
  color: #1A1311;
  line-height: 1.75;
  letter-spacing: 0.1em;
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  text-indent: -2em;
  padding-left: 2em;
}
@media screen and (max-width: 540px) {
  .page_policy .contents_center .wp-block-columns .policy_text ol li {
    margin: 20px 0 0 0;
  }
}
.page_policy .contents_center .wp-block-columns .policy_text ol li::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}

/*contact*/
.page_contact {
  margin: 0 0 140px 0;
}
@media screen and (max-width: 540px) {
  .page_contact {
    margin: 0 0 90px 0;
  }
}
.page_contact .h1_lower {
  position: relative;
  padding: 180px 30px 40px 30px;
}
@media screen and (max-width: 1100px) {
  .page_contact .h1_lower {
    padding: 90px 30px 40px 30px;
  }
}
@media screen and (max-width: 800px) {
  .page_contact .h1_lower {
    padding: 60px 30px 60px 30px;
  }
}
.page_contact .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  .page_contact .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 0 30px 0;
    border-bottom: solid 1px #E6E6E6;
  }
}
.page_contact .h1_lower .flex_h1 h1 {
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_contact .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_contact .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_contact .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_contact .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_contact .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_contact .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_contact .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_contact .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_contact .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_contact .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_contact .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  top: 60px;
  margin: 0;
  color: #F6F6F6;
  opacity: 0;
  text-transform: capitalize;
}
.page_contact .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_contact .h1_lower .en_text {
    position: static;
    text-align: center;
    padding: 30px 0 0 0;
    font-size: 7.2rem;
  }
}
.page_contact .contents_center .contents_flex .wp-block-columns {
  display: flex;
  background: #F6F6F6;
  padding: 50px 50px 50px 50px;
  margin: 0 0 100px 140px;
  width: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .contents_flex .wp-block-columns {
    display: block;
    margin: 0 15px 90px 15px;
    padding: 60px 30px;
  }
}
.page_contact .contents_center .contents_flex .wp-block-columns .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_contact .contents_center .contents_flex .wp-block-columns .wp-block-column:nth-child(2n) {
  margin-left: 0;
}
.page_contact .contents_center .contents_flex .wp-block-columns h2 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 70px 0 0;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .contents_flex .wp-block-columns h2 {
    margin: 0 0 60px 0;
  }
}
.page_contact .contents_center .contents_flex .wp-block-columns .call {
  padding: 0 30px 0 0;
  border-right: solid 1px #E6E6E6;
  margin: 0 30px 0 0;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .contents_flex .wp-block-columns .call {
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
    border-right: none;
    border-bottom: solid 1px #E6E6E6;
  }
}
.page_contact .contents_center .contents_flex .wp-block-columns .call .contact_text {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 0 5px 0;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
.page_contact .contents_center .contents_flex .wp-block-columns .call .number_text {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 0 15px 0;
  font-family: "Bronova Bold";
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .contents_flex .wp-block-columns .call .number_text {
    font-size: 2.8rem;
  }
}
.page_contact .contents_center .contents_flex .wp-block-columns .call p {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #707070;
  margin: 0;
}
.page_contact .contents_center .contents_flex .wp-block-columns .fax .contact_text {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 0 10px 0;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
.page_contact .contents_center .contents_flex .wp-block-columns .fax .number_text {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 0 15px 0;
  font-family: "Bronova Bold";
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .contents_flex .wp-block-columns .fax .number_text {
    margin: 0;
  }
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .contents_flex .wp-block-columns .fax .number_text {
    font-size: 2.8rem;
  }
}
.page_contact .contents_center .page_transition {
  margin: 0 0 40px 0;
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .page_transition {
    margin: 0 0 60px 0;
  }
}
.page_contact .contents_center .page_transition h2 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1A1311;
  margin: 0 0 60px 0;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
.page_contact .contents_center .page_transition .wp-block-columns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.page_contact .contents_center .page_transition .wp-block-columns .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_contact .contents_center .page_transition .wp-block-columns .wp-block-column:nth-child(2n) {
  margin-left: 0;
}
.page_contact .contents_center .page_transition .wp-block-columns .wp-block-column:nth-of-type(2) {
  margin: 0 120px;
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .page_transition .wp-block-columns .wp-block-column:nth-of-type(2) {
    margin: 0 30px;
  }
}
.page_contact .contents_center .page_transition .wp-block-columns .wp-block-column .under {
  text-align: center;
  color: #CCCCCC;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: bold;
}
.page_contact .contents_center .page_transition .wp-block-columns .wp-block-column .under.current {
  color: #9E8447;
}
.page_contact .contents_center .page_transition .wp-block-columns .wp-block-column .number {
  text-align: center;
  width: 42px;
  height: 42px;
  padding: 12px 0 0 0;
  box-sizing: border-box;
  background: #CCCCCC;
  border-radius: 50%;
  display: block;
  font-family: "Bronova Bold";
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 20px auto;
}
.page_contact .contents_center .page_transition .wp-block-columns .wp-block-column .number.current {
  background: #9E8447;
}
.page_contact .contents_center .page_transition .border {
  background: #cccccc;
  height: 4px;
  max-width: 440px;
  width: 100%;
  position: absolute;
  bottom: 60px;
  z-index: -2;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .page_contact .contents_center .page_transition .border {
    max-width: 540px;
    bottom: 60px;
  }
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .page_transition .border {
    max-width: 220px;
    bottom: 80px;
  }
}
.page_contact .contents_center .mw_wp_form_confirm .form_adress .ajaxzip3 {
  display: none;
}
.page_contact .contents_center .mw_wp_form_confirm .privacypolicy {
  display: none;
}
.page_contact .contents_center .mw_wp_form.mw_wp_form_send_error {
  max-width: 1080px;
  width: 100%;
  font-size: 1.8rem;
  color: red;
  font: bold;
  margin: 0 auto 40px auto;
  padding: 0 30px;
  box-sizing: border-box;
}
.page_contact .contents_center .mw_wp_form.mw_wp_form_complete {
  max-width: 1080px;
  width: 100%;
  font-size: 1.6rem;
  color: #1A1311;
  margin: 60px auto 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}
.page_contact .contents_center .mw_wp_form.mw_wp_form_complete h2 {
  margin: 0 0 60px 0;
  font-size: 2.8rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.7;
  padding: 40px 0 0 0;
  position: relative;
  border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .mw_wp_form.mw_wp_form_complete h2 {
    font-size: 2.5rem;
  }
}
.page_contact .contents_center .mw_wp_form.mw_wp_form_complete h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 168px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.page_contact .contents_center .form {
  max-width: 1080px;
  width: auto;
  padding: 0 30px;
  margin: 0 auto;
}
.page_contact .contents_center .form p {
  font-size: 1.4rem;
  line-height: 2;
  padding: 0 0 20px 0;
  border-bottom: solid 1px #E6E6E6;
  margin: 0;
  font-weight: 400;
}
.page_contact .contents_center .form label {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 270px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page_contact .contents_center .form label {
    margin: 0 0 20px 0;
  }
}
.page_contact .contents_center .form label span {
  display: inline-block;
  color: #9E8447;
  font-size: 1.2rem;
  padding: 0 0 0 8px;
}
.page_contact .contents_center .form .form_row {
  display: flex;
  padding: 30px 0 30px 20px;
  border-bottom: solid 1px #E6E6E6;
}
@media screen and (max-width: 800px) {
  .page_contact .contents_center .form .form_row {
    display: block;
    padding: 30px 0;
  }
}
.page_contact .contents_center .form .form_row .form_radio {
  width: 100%;
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .page_contact .contents_center .form .form_row .form_radio {
    display: block;
  }
}
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field {
  margin-left: 0;
}
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label input[type=radio] {
  display: none;
}
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label .mwform-radio-field-text {
  color: #1A1311;
  font-weight: normal;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0 40px 0 30px;
  position: relative;
  width: auto;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label .mwform-radio-field-text:last-child {
    margin: 0;
  }
}
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label .mwform-radio-field-text::before {
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  content: "";
  display: block;
  height: 18px;
  left: 5px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 18px;
}
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label .mwform-radio-field-text::after {
  background: #9E8447;
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  left: 9px;
  margin-top: -6px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 12px;
}
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label input[type=radio],
.page_contact .contents_center .form .form_row .form_radio .mwform-radio-field label input[type=checkbox] {
  position: relative;
  top: 2px;
}
.page_contact .contents_center .form .form_row .form_content {
  max-width: 510px;
  width: 100%;
  font-size: 1.6rem;
}
.page_contact .contents_center .form .form_row .form_content input {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: solid 1px #CCCCCC;
  padding: 10px;
  font-size: 1.6rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
}
.page_contact .contents_center .form .form_row .form_adress {
  max-width: 510px;
  width: 100%;
  display: flex;
  font-size: 1.6rem;
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .form .form_row .form_adress {
    display: block;
  }
}
.page_contact .contents_center .form .form_row .form_adress input {
  max-width: 248px;
  width: 100%;
  display: block;
  border-radius: 5px;
  border: solid 1px #CCCCCC;
  padding: 10px;
  margin: 0 10px 0 0;
  font-size: 1.6rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
}
.page_contact .contents_center .form .form_row .form_adress button {
  background: #1A1311;
  font-size: 1.4rem;
  color: #fff;
  padding: 0 14px;
  border-radius: 0;
  border: solid 2px #1A1311;
  box-sizing: border-box;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .page_contact .contents_center .form .form_row .form_adress button {
    margin: 20px 0 0 0;
    padding: 15px;
  }
}
.page_contact .contents_center .form .form_row .form_adress button:hover {
  background: #fff;
  color: #1A1311;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .form .form_row .form_adress button:hover {
    background: #1A1311;
    color: #fff;
    transition: 0.3s;
  }
}
.page_contact .contents_center .form .form_row .form_tel {
  max-width: 510px;
  width: 100%;
  font-size: 1.6rem;
}
.page_contact .contents_center .form .form_row .form_tel .mwform-tel-field {
  display: flex;
  align-items: center;
}
.page_contact .contents_center .form .form_row .form_tel .mwform-tel-field input {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: solid 1px #CCCCCC;
  padding: 10px;
  font-size: 1.6rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  margin: 0 10px 0 10px;
  outline: none;
}
.page_contact .contents_center .form .form_row .form_tel .mwform-tel-field input:first-child {
  margin: 0 10px 0 0;
}
.page_contact .contents_center .form .form_row .form_tel .mwform-tel-field input:last-child {
  margin: 0 0 0 10px;
}
.page_contact .contents_center .form .form_row .form_textarea {
  max-width: 740px;
  width: 100%;
  font-size: 1.6rem;
}
.page_contact .contents_center .form .form_row .form_textarea textarea {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: solid 1px #CCCCCC;
  padding: 10px;
  font-size: 1.6rem;
  box-sizing: border-box;
  height: 220px;
  -webkit-appearance: none;
  outline: none;
}
.page_contact .contents_center .form .privacypolicy {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  border: none;
  padding: 0;
  margin: 60px auto 0 auto;
  text-align: center;
}
.page_contact .contents_center .form .privacypolicy a {
  color: #9E8447;
  text-align: center;
}
.page_contact .contents_center .form .form_check {
  margin: 40px auto 40px auto;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .form .form_check {
    margin: 40px 0;
  }
}
.page_contact .contents_center .form .form_check .mwform-checkbox-field label {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.page_contact .contents_center .form .form_check .mwform-checkbox-field label input {
  outline: none;
  border: solid 1px #CCCCCC;
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
  border-radius: 0;
  color: #fff;
  background-color: #fff;
}
.page_contact .contents_center .form .form_check .mwform-checkbox-field label .mwform-checkbox-field-text {
  font-size: 1.4rem;
  color: #1A1311;
  font-weight: normal;
}
.page_contact .contents_center .form .form_btn br {
  display: none;
}
.page_contact .contents_center .form .form_btn .btn_back {
  display: block;
  margin: 20px auto 0 auto;
  text-align: center;
  max-width: 375px;
  width: 100%;
  background: #848484;
  font-size: 1.8rem;
  color: #fff;
  padding: 20px 0;
  border-radius: 0;
  border: solid 2px #848484;
  box-sizing: border-box;
  transition: 0.3s;
}
.page_contact .contents_center .form .form_btn .btn_back:hover {
  background: #fff;
  color: #848484;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .form .form_btn .btn_back:hover {
    background: #848484;
    color: #fff;
    transition: 0.3s;
  }
}
.page_contact .contents_center .form .form_btn input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}
.page_contact .contents_center .form .form_btn .btn_send {
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 375px;
  width: 100%;
  background: #1A1311;
  font-size: 1.8rem;
  color: #fff;
  padding: 20px 0;
  border-radius: 0;
  border: solid 2px #1A1311;
  box-sizing: border-box;
  transition: 0.3s;
}
.page_contact .contents_center .form .form_btn .btn_send:hover {
  background: #fff;
  color: #1A1311;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_contact .contents_center .form .form_btn .btn_send:hover {
    background: #1A1311;
    color: #fff;
    transition: 0.3s;
  }
}

/*recruit*/
.page_recruit {
  overflow: hidden;
  /*牛を育てる、食を支える*/
  /*チームで働く、幸せな働き方*/
  /*畜産を通じて、得られる成長*/
  /*schedule link*/
  /*crosstalk*/
  /*interview*/
  /*募集要項*/
}
.page_recruit .h1_lower {
  position: relative;
  padding: 180px 0 120px 0;
}
@media screen and (max-width: 1100px) {
  .page_recruit .h1_lower {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 800px) {
  .page_recruit .h1_lower {
    padding: 60px 0 90px 0;
  }
}
.page_recruit .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  padding: 0 30px 70px 30px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .page_recruit .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 30px 30px 30px;
  }
}
.page_recruit .h1_lower .flex_h1 p {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .h1_lower .flex_h1 p {
    font-size: 2rem;
    position: static;
    margin-bottom: 12px;
  }
}
.page_recruit .h1_lower .flex_h1 h1 {
  white-space: nowrap;
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_recruit .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_recruit .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_recruit .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_recruit .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_recruit .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_recruit .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_recruit .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_recruit .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_recruit .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_recruit .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_recruit .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  bottom: 72px;
  margin: 0;
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
.page_recruit .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_recruit .h1_lower .en_text {
    bottom: 42px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .h1_lower .en_text {
    font-size: 8rem;
    bottom: 59px;
  }
}
.page_recruit .h1_lower .h1_img {
  width: auto;
  height: 493px;
  background: url(../../images/recruit_image01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_recruit .h1_lower .h1_img.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_recruit .h1_lower .h1_img {
    height: 300px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .h1_lower .h1_img {
    background: url(../../images/sp_recruit_image01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.page_recruit .contents_center {
  margin: 0 auto 140px auto;
  max-width: 930px;
  width: auto;
  padding: 70px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .page_recruit .contents_center {
    padding: 90px 0;
  }
}
@media screen and (max-width: 930px) {
  .page_recruit .contents_center {
    margin: 0 30px 90px 30px;
  }
}
.page_recruit .contents_center::after {
  background: url(../../images/bg_item_r.png);
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  display: inline-block;
  background-size: cover;
  width: 50px;
  height: 50px;
}
.page_recruit .contents_center::before {
  background: url(../../images/bg_item_l.png);
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  background-size: cover;
  width: 50px;
  height: 50px;
}
.page_recruit .contents_center h2 {
  font-size: 5.6rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  text-align: center;
  color: #1A1311;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0 0 60px 0;
}
.page_recruit .contents_center h2 br {
  display: none;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_center h2 {
    font-size: 3.2rem;
    margin: 0 0 40px 0;
  }
  .page_recruit .contents_center h2 br {
    display: block;
  }
}
.page_recruit .contents_center p {
  margin: 0;
  font-size: 1.8rem;
  text-align: center;
  color: #1A1311;
  line-height: 2;
  letter-spacing: 0.1em;
}
.page_recruit .contents_flex01 {
  display: flex;
  width: auto;
  margin: 0;
  align-items: center;
  margin: 0 0 140px 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex01 {
    flex-wrap: wrap;
    margin: 0 0 90px 0;
    padding: 0 30px;
  }
}
.page_recruit .contents_flex01 .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_recruit .contents_flex01 .img_area {
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .page_recruit .contents_flex01 .img_area {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex01 .img_area {
    order: 2;
  }
}
.page_recruit .contents_flex01 .img_area .wp-block-image {
  margin: 0;
  width: 636px;
}
@media screen and (max-width: 1200px) {
  .page_recruit .contents_flex01 .img_area .wp-block-image {
    width: auto;
  }
}
.page_recruit .contents_flex01 .img_area .wp-block-image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex01 .img_area .wp-block-image img {
    margin: 60px 0 0 0;
  }
}
.page_recruit .contents_flex01 .text_area {
  width: 100%;
  padding: 0 140px 0 70px;
}
@media screen and (max-width: 1100px) {
  .page_recruit .contents_flex01 .text_area {
    padding: 0 100px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex01 .text_area {
    padding: 0;
    order: 1;
  }
}
.page_recruit .contents_flex01 .text_area h2 {
  font-size: 5.6rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .contents_flex01 .text_area h2 {
    font-size: 3.2rem;
    margin: 0 0 40px 0;
  }
}
.page_recruit .contents_flex01 .text_area p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: 0.1em;
}
.page_recruit .contents_flex02 {
  display: flex;
  width: auto;
  margin: 0;
  align-items: center;
  margin: 0 0 140px 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex02 {
    flex-wrap: wrap;
    margin: 0 0 90px 0;
    padding: 0 30px;
  }
}
.page_recruit .contents_flex02 .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
.page_recruit .contents_flex02 .img_area {
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .page_recruit .contents_flex02 .img_area {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex02 .img_area {
    order: 2;
  }
}
.page_recruit .contents_flex02 .img_area .wp-block-image {
  margin: 0;
  width: 636px;
}
@media screen and (max-width: 1200px) {
  .page_recruit .contents_flex02 .img_area .wp-block-image {
    width: auto;
  }
}
.page_recruit .contents_flex02 .img_area .wp-block-image img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex02 .img_area .wp-block-image img {
    margin: 60px 0 0 0;
  }
}
.page_recruit .contents_flex02 .text_area {
  width: 100%;
  padding: 0 70px 0 140px;
}
@media screen and (max-width: 1100px) {
  .page_recruit .contents_flex02 .text_area {
    padding: 0 100px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_flex02 .text_area {
    padding: 0;
  }
}
.page_recruit .contents_flex02 .text_area h2 {
  font-size: 5.6rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .contents_flex02 .text_area h2 {
    font-size: 3.2rem;
    margin: 0 0 40px 0;
  }
}
.page_recruit .contents_flex02 .text_area p {
  color: #1A1311;
  line-height: 1.75;
  font-size: 1.6rem;
  margin: 0;
  letter-spacing: 0.1em;
}
.page_recruit .schedule_link {
  position: relative;
  margin-inline: 83px;
  margin-top: 220px;
}
@media screen and (max-width: 540px) {
  .page_recruit .schedule_link {
    margin-inline: 0;
    margin-top: 0;
  }
}
.page_recruit .schedule_link .pc_img {
  width: 100%;
  display: block;
  margin: 0;
}
.page_recruit .schedule_link .pc_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_recruit .schedule_link .pc_img {
    display: none;
  }
}
.page_recruit .schedule_link .sp_img {
  width: 100%;
  display: none;
  margin: 0;
}
.page_recruit .schedule_link .sp_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_recruit .schedule_link .sp_img {
    display: block;
  }
}
.page_recruit .schedule_link img {
  width: 100%;
}
.page_recruit .schedule_link figure a {
  display: block;
  width: 100%;
  height: 100%;
}
.page_recruit .schedule_link figure + .wp-block-group {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
}
.page_recruit .schedule_link .en_text {
  position: absolute;
  top: 0;
  right: -83px;
  font-size: 18rem;
  font-family: "Bronova Bold";
  -webkit-text-stroke: 4px #9E8447;
  color: transparent;
  z-index: 1;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .schedule_link .en_text {
    font-size: 1.2rem;
    top: 40px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .schedule_link .en_text {
    top: 0;
    right: 0;
    font-size: 6.4rem;
    -webkit-text-stroke: 2px #9E8447;
  }
}
.page_recruit .schedule_link h2 {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 3.2rem;
  user-select: none;
}
.page_recruit .schedule_link p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  user-select: none;
}
.page_recruit .schedule_link .circle_flex .wp-block-group__inner-container p {
  background: #FFFFFF;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_recruit .schedule_link .circle_flex .wp-block-group__inner-container p.color_y {
  background: #9E8447;
}
.page_recruit .schedule_link .wp-block-group.circle_flex > div {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 28px;
}
.page_recruit .schedule_link .link_more {
  position: absolute;
  bottom: 60px;
  right: 60px;
  color: #FFFFFF;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 1.6rem;
}
.page_recruit .schedule_link .link_more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80%;
  display: block;
  width: 50px;
  height: 2px;
  background-color: #FFFFFF;
  translate: 0 -50%;
}
@media screen and (max-width: 540px) {
  .page_recruit .schedule_link .link_more {
    bottom: 20px;
    right: 30px;
  }
}
.page_recruit .crosstalk_contents {
  position: relative;
  padding: 126px 0 144px 0;
}
@media screen and (max-width: 540px) {
  .page_recruit .crosstalk_contents {
    font-size: 6.4rem;
    padding: 50px 0 90px 0;
  }
}
.page_recruit .crosstalk_contents .en_text {
  font-size: 18rem;
  font-family: "Bronova Bold";
  -webkit-text-stroke: 4px #E6E6E6;
  color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .en_text {
    font-size: 12rem;
    top: 40px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .crosstalk_contents .en_text {
    top: 0;
    font-size: 6.4rem;
    -webkit-text-stroke: 2px #E6E6E6;
  }
}
.page_recruit .crosstalk_contents .crosstalk {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  height: 420px;
  padding: 0 30px;
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .crosstalk {
    height: auto;
  }
}
.page_recruit .crosstalk_contents .crosstalk > .wp-block-group__inner-container {
  height: 100%;
  position: relative;
}
.page_recruit .crosstalk_contents .crosstalk .main_img {
  position: absolute;
  top: 0;
  left: -143px;
  width: calc(100% - 192px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  background-image: url(../../images/recruit_image13.jpg);
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .crosstalk .main_img {
    left: 0;
    width: calc(100% + 60px);
    margin: 0 -30px;
    background-position: center top;
    position: relative;
  }
  .page_recruit .crosstalk_contents .crosstalk .main_img:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 49.7630331754%;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .crosstalk_contents .crosstalk .main_img {
    background-image: url(../../images/sp_recruit_image13.jpg);
  }
  .page_recruit .crosstalk_contents .crosstalk .main_img:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 69.3333333333%;
  }
}
.page_recruit .crosstalk_contents .crosstalk .text_block {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 252px;
  height: calc(100% - 13px);
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .crosstalk .text_block {
    position: static;
    width: 100%;
    height: auto;
    margin: 40px 0 0;
  }
}
.page_recruit .crosstalk_contents .crosstalk .text_block > .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.page_recruit .crosstalk_contents .crosstalk .text_block .h3_text {
  width: 352px;
  height: 76px;
  background-color: #1A1311;
  color: #fff;
  font-size: 5.6rem;
  letter-spacing: 0.1em;
  line-height: 76px;
  margin: 0 -136px 0 0;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: normal;
  padding-left: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .crosstalk .text_block .h3_text {
    width: 298px;
    height: 52px;
    font-size: 3.2rem;
    line-height: 52px;
  }
}
.page_recruit .crosstalk_contents .crosstalk .text_block .description_text {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 60px 0 0 0;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .crosstalk .text_block .description_text {
    margin: 40px 0 0 0;
  }
}
.page_recruit .crosstalk_contents .crosstalk .text_block .link_text {
  display: flex;
  justify-content: flex-end;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .crosstalk .text_block .link_text {
    margin: 30px 0 0 0;
  }
}
.page_recruit .crosstalk_contents .crosstalk .text_block .link_text a {
  font-size: 1.6rem;
  text-align: right;
  color: #9E8447;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  position: relative;
  padding-left: 60px;
}
@media screen and (max-width: 800px) {
  .page_recruit .crosstalk_contents .crosstalk .text_block .link_text a {
    font-size: 1.4rem;
  }
}
.page_recruit .crosstalk_contents .crosstalk .text_block .link_text a:hover {
  opacity: 0.7;
}
.page_recruit .crosstalk_contents .crosstalk .text_block .link_text a:before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  border-top: 2px solid #9E8447;
  top: calc(50% - 1px);
  left: 0;
}
.page_recruit .interview_contents.contents01 .h2_interview .main_img {
  background-image: url(../../images/recruit_image10.jpg);
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents.contents01 .h2_interview .main_img {
    background-image: url(../../images/sp_recruit_image10.jpg);
  }
}
.page_recruit .interview_contents.contents02 .h2_interview .main_img {
  background-image: url(../../images/recruit_image07.jpg);
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents.contents02 .h2_interview .main_img {
    background-image: url(../../images/sp_recruit_image07.jpg);
  }
}
.page_recruit .interview_contents .h2_interview {
  position: relative;
  padding: 130px 0 100px 0;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .h2_interview {
    font-size: 6.4rem;
    padding: 50px 0 60px 0;
  }
}
.page_recruit .interview_contents .h2_interview .en_text {
  font-size: 18rem;
  font-family: "Bronova Bold";
  -webkit-text-stroke: 4px #9E8447;
  color: transparent;
  position: absolute;
  top: 94px;
  left: 0;
  z-index: -1;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .interview_contents .h2_interview .en_text {
    font-size: 12rem;
    top: 40px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .h2_interview .en_text {
    font-size: 6.4rem;
    top: 0;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-text-stroke: 2px #9E8447;
  }
}
.page_recruit .interview_contents .h2_interview .main_img {
  width: auto;
  height: 520px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  .page_recruit .interview_contents .h2_interview .main_img {
    height: 400px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .h2_interview .main_img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.page_recruit .interview_contents .h2_interview .h2_text {
  position: absolute;
  left: 140px;
  bottom: 72px;
  display: block;
  width: auto;
  width: 100%;
  max-width: 88%;
  padding-left: 10px;
}
@media screen and (max-width: 800px) {
  .page_recruit .interview_contents .h2_interview .h2_text {
    left: 30px;
  }
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .h2_interview .h2_text {
    bottom: 88px;
  }
}
.page_recruit .interview_contents .h2_interview .h2_text .copy_text_group .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
}
.page_recruit .interview_contents .h2_interview .h2_text .copy_text {
  background: #fff;
  padding: 0 10px;
  font-size: 5.6rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 0 15px 0;
  display: block;
  width: auto;
  box-sizing: border-box;
  display: block;
  width: fit-content;
  margin-left: -10px;
  margin-right: -10px;
}
@media screen and (max-width: 800px) {
  .page_recruit .interview_contents .h2_interview .h2_text .copy_text {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
.page_recruit .interview_contents .h2_interview .h2_text .name {
  font-size: 2rem;
  background: #1A1311;
  padding: 15px 20px;
  color: #fff;
  margin: 0;
  text-align: center;
  display: block;
  width: fit-content;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .page_recruit .interview_contents .h2_interview .h2_text .name {
    font-size: 1.4rem;
  }
}
.page_recruit .interview_contents .contents_width {
  max-width: 1080px;
  width: auto;
  padding: 0 30px;
  margin: 0 auto 140px auto;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .contents_width {
    margin: 0 auto 90px auto;
  }
}
.page_recruit .interview_contents .contents_width .flex_item {
  display: flex;
  padding: 60px 0;
  border-bottom: solid 3px #1A1311;
  margin: 0;
}
.page_recruit .interview_contents .contents_width .flex_item .wp-block-column {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 0;
}
@media screen and (min-width: 801px) {
  .page_recruit .interview_contents .contents_width .flex_item .wp-block-column {
    flex: 1;
  }
}
.page_recruit .interview_contents .contents_width .flex_item .wp-block-column:last-child {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 801px) {
  .page_recruit .interview_contents .contents_width .flex_item .wp-block-column:last-child {
    max-width: 755px;
    flex: 3;
  }
}
.page_recruit .interview_contents .contents_width .flex_item .wp-block-column:last-child p {
  font-size: 1.8rem;
  color: #1A1311;
  line-height: 2;
  letter-spacing: 0.1em;
  width: 100%;
  margin: 0;
}
.page_recruit .interview_contents .contents_width .flex_item:nth-of-type(1) {
  padding: 0 0 60px 0;
}
.page_recruit .interview_contents .contents_width .flex_item:nth-of-type(2) {
  border-bottom: none;
  padding: 60px 0 0 0;
}
.page_recruit .interview_contents .contents_width .flex_item:nth-of-type(4) {
  padding: 0 0 60px 0;
}
.page_recruit .interview_contents .contents_width .flex_item:nth-of-type(5) {
  border-bottom: none;
  padding: 60px 0 0 0;
}
.page_recruit .interview_contents .contents_width .flex_item:nth-of-type(7) {
  padding: 0 0 60px 0;
}
.page_recruit .interview_contents .contents_width .flex_item:nth-of-type(8) {
  border-bottom: none;
  padding: 60px 0 0 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .interview_contents .contents_width .flex_item {
    display: block;
  }
}
.page_recruit .interview_contents .contents_width .flex_item h3 {
  font-size: 2.8rem;
  color: #1A1311;
  line-height: 1.28;
  margin: 0 40px 0 0;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media screen and (max-width: 800px) {
  .page_recruit .interview_contents .contents_width .flex_item h3 {
    margin: 0 0 40px 0;
  }
}
.page_recruit .interview_contents .contents_width .img_right {
  padding: 80px 0;
  vertical-align: bottom;
  margin: 0;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .contents_width .img_right {
    padding: 60px 0;
  }
}
.page_recruit .interview_contents .contents_width .img_right .pc_img {
  max-width: 898px;
  width: 100%;
  display: block;
  margin: 0 0 0 auto;
}
.page_recruit .interview_contents .contents_width .img_right .pc_img img {
  vertical-align: bottom;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .contents_width .img_right .pc_img {
    display: none;
  }
}
.page_recruit .interview_contents .contents_width .img_right .sp_img {
  display: none;
  margin: 0;
}
.page_recruit .interview_contents .contents_width .img_right .sp_img img {
  vertical-align: bottom;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .contents_width .img_right .sp_img {
    display: block;
    width: 100%;
  }
}
.page_recruit .interview_contents .contents_width .img_left {
  padding: 80px 0;
  vertical-align: bottom;
  margin: 0;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .contents_width .img_left {
    padding: 60px 0;
  }
}
.page_recruit .interview_contents .contents_width .img_left .pc_img {
  max-width: 898px;
  width: 100%;
  display: block;
  margin: 0 auto 0 0;
}
.page_recruit .interview_contents .contents_width .img_left .pc_img img {
  vertical-align: bottom;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .contents_width .img_left .pc_img {
    display: none;
  }
}
.page_recruit .interview_contents .contents_width .img_left .sp_img {
  display: none;
  margin: 0;
}
.page_recruit .interview_contents .contents_width .img_left .sp_img img {
  vertical-align: bottom;
}
@media screen and (max-width: 540px) {
  .page_recruit .interview_contents .contents_width .img_left .sp_img {
    display: block;
    width: 100%;
  }
}
.page_recruit .contents_recruitment {
  background: #F6F6F6;
}
.page_recruit .contents_recruitment .contents_width {
  max-width: 1080px;
  width: auto;
  padding: 140px 30px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_recruitment .contents_width {
    padding: 90px 15px;
  }
}
.page_recruit .contents_recruitment .contents_width .heading p {
  text-align: center;
  font-family: "Bronova Bold";
  color: #9E8447;
  font-size: 1.6rem;
  margin: 0 0 40px 0;
}
.page_recruit .contents_recruitment .contents_width .heading h2 {
  text-align: center;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  font-size: 3.2rem;
  margin: 0 0 40px 0;
}
.page_recruit .contents_recruitment .contents_width .heading .circle_flex .wp-block-group__inner-container {
  display: flex;
  justify-content: center;
}
.page_recruit .contents_recruitment .contents_width .heading .circle_flex .wp-block-group__inner-container p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_recruit .contents_recruitment .contents_width .heading .circle_flex .wp-block-group__inner-container p:last-child {
  margin: 0;
}
.page_recruit .contents_recruitment .contents_width .heading .circle_flex .wp-block-group__inner-container .color_y {
  background: #9E8447;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment {
  margin: 60px 0 0 0;
  background: #fff;
  width: 100%;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width {
  margin: 0 auto;
  max-width: 760px;
  width: auto;
  padding: 60px 30px;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center {
  text-align: center;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center {
    margin: 0 0 60px 0;
  }
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center .tab {
  font-size: 2.2rem;
  background: #fff;
  color: #9E8447;
  transition: 0.3s;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  padding: 20px;
  width: 240px;
  box-sizing: border-box;
  display: inline-block;
  margin: 0 20px 0 0;
  text-align: center;
  border: solid 2px #9E8447;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center .tab {
    margin: 0 0 20px 0;
  }
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center .tab:nth-of-type(2) {
  margin: 0;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center .tab:hover {
  background: #9E8447;
  font-size: 2.2rem;
  color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center .tab:hover {
    background: #fff;
    color: #9E8447;
    transition: 0.3s;
  }
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center .tab.active {
  background: #9E8447;
  font-size: 2.2rem;
  color: #fff;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_center .tab.active::after {
  background: url(../../images/recruitment_triangle.png);
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  background-size: cover;
  width: 15px;
  height: 11px;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content {
  display: none;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content.show {
  margin-top: 50px;
  display: block;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table {
  margin: 0;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 0 auto;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table tbody tr {
  border-bottom: solid 1px #E6E6E6;
  border-top: solid 1px #E6E6E6;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table tbody tr td {
  vertical-align: top;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  padding: 20px 0;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table tbody tr td a {
  color: #9E8447;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table tbody tr td {
    display: block;
    padding: 30px 0 20px 0;
  }
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table tbody tr td:first-child {
  white-space: nowrap;
  font-weight: bold;
}
.page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table tbody tr td:nth-of-type(2) {
  padding: 20px 0 20px 60px;
}
@media screen and (max-width: 540px) {
  .page_recruit .contents_recruitment .contents_width .tabs_recruitment .tabs_width .tab_content .wp-block-table table tbody tr td:nth-of-type(2) {
    padding: 0 0 30px 0;
  }
}

/*crosstalk*/
.page_crosstalk {
  overflow: hidden;
}
.page_crosstalk .h1_lower {
  position: relative;
  padding: 180px 0 120px 0;
}
@media screen and (max-width: 1100px) {
  .page_crosstalk .h1_lower {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 800px) {
  .page_crosstalk .h1_lower {
    padding: 60px 0 90px 0;
  }
}
.page_crosstalk .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  padding: 0 30px 70px 30px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .page_crosstalk .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 30px 30px 30px;
  }
}
.page_crosstalk .h1_lower .flex_h1 p {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .h1_lower .flex_h1 p {
    font-size: 2rem;
    position: static;
    margin-bottom: 12px;
  }
}
.page_crosstalk .h1_lower .flex_h1 h1 {
  white-space: nowrap;
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_crosstalk .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_crosstalk .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_crosstalk .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_crosstalk .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_crosstalk .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_crosstalk .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_crosstalk .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_crosstalk .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_crosstalk .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_crosstalk .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_crosstalk .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  bottom: 72px;
  margin: 0;
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
.page_crosstalk .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_crosstalk .h1_lower .en_text {
    bottom: 42px;
  }
}
@media screen and (max-width: 540px) {
  .page_crosstalk .h1_lower .en_text {
    font-size: 8rem;
    bottom: 59px;
  }
}
.page_crosstalk .h1_lower .h1_img {
  width: auto;
  height: 493px;
  background: url(../../images/crosstalk_mv.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_crosstalk .h1_lower .h1_img.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_crosstalk .h1_lower .h1_img {
    height: 300px;
  }
}
@media screen and (max-width: 540px) {
  .page_crosstalk .h1_lower .h1_img {
    background: url(../../images/sp_crosstalk_mv.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.page_crosstalk .member_section {
  width: 100%;
  height: 360px;
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 30px 20px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .member_section {
    height: auto;
    padding-bottom: 30px;
  }
}
.page_crosstalk .member_section h2 {
  font-family: "Bronova Bold";
  font-size: 3.2rem;
  padding-left: 75px;
  line-height: 3.2rem;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .member_section h2 {
    top: -16px;
    left: 30px;
  }
}
.page_crosstalk .member_section h2:before {
  content: "";
  display: block;
  width: 55px;
  border-top: 3px solid #9E8447;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
.page_crosstalk .member_section .member_list {
  width: 100%;
  max-width: 896px;
  padding: 50px 0;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .member_section .member_list {
    width: 100%;
    padding: 40px 0;
    position: relative;
  }
}
.page_crosstalk .member_section .member_list:before {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  background-color: #F6F6F6;
  width: 2000px;
  z-index: -1;
  display: block;
  position: absolute;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .member_section .member_list:before {
    left: 15px;
  }
}
.page_crosstalk .member_section .member_list > .wp-block-group__inner-container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .member_section .member_list > .wp-block-group__inner-container {
    flex-direction: column;
    align-items: center;
  }
}
.page_crosstalk .member_section .member_list .member_item {
  margin: 0;
}
.page_crosstalk .member_section .member_list .member_item + .member_item {
  margin-left: 40px;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .member_section .member_list .member_item + .member_item {
    margin-left: 0;
    margin-top: 30px;
  }
}
.page_crosstalk .member_section .member_list .member_item .image {
  width: 200px;
  height: 200px;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .member_section .member_list .member_item .image {
    width: 120px;
    height: 120px;
  }
}
.page_crosstalk .member_section .member_list .member_item .image img {
  width: 100%;
  height: auto;
}
.page_crosstalk .member_section .member_list .member_item .name {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 15px 0 0;
  text-align: center;
  color: #9E8447;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .member_section .member_list .member_item .name {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
.page_crosstalk .member_section .member_list .member_item .position {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 10px 0 0;
  text-align: center;
  color: #1A1311;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .member_section .member_list .member_item .position {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
.page_crosstalk .talk_sections {
  counter-reset: section_no;
}
.page_crosstalk .talk_sections .talk_section {
  counter-increment: section_no;
  margin: 100px 0 0;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section {
    margin: 60px 0 0;
  }
}
.page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .h2_block > .wp-block-group__inner-container {
  justify-content: flex-end;
}
@media screen and (min-width: 801px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .h2_block > .wp-block-group__inner-container h2:last-child {
    padding-right: 120px;
  }
}
@media screen and (max-width: 800px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .h2_block > .wp-block-group__inner-container {
    align-items: flex-end;
  }
  .page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .h2_block > .wp-block-group__inner-container h2 {
    padding-right: 80px;
  }
  .page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .h2_block > .wp-block-group__inner-container h2:nth-child(n+2) {
    padding-left: 40px;
  }
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .h2_block > .wp-block-group__inner-container h2 {
    padding-right: 30px;
  }
  .page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .h2_block > .wp-block-group__inner-container h2:nth-child(n+2) {
    padding-left: 20px;
  }
}
.page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .image_block {
  padding-right: 80px;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n+1) .image_block {
    padding-right: 30px;
  }
}
.page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container {
  justify-content: flex-start;
}
@media screen and (min-width: 801px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container h2:first-child {
    padding-left: 160px;
  }
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container h2:first-child:before {
    top: 0;
    left: 120px;
  }
}
@media screen and (max-width: 800px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container {
    align-items: flex-start;
  }
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container h2 {
    padding-left: 120px;
  }
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container h2:before {
    top: 0;
    left: 80px;
  }
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container h2 {
    padding-left: 60px;
  }
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .h2_block > .wp-block-group__inner-container h2:before {
    left: 30px;
  }
}
.page_crosstalk .talk_sections .talk_section:nth-child(2n) .image_block {
  padding-left: 80px;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section:nth-child(2n) .image_block {
    padding-left: 30px;
  }
}
.page_crosstalk .talk_sections .talk_section .h2_block {
  position: relative;
}
.page_crosstalk .talk_sections .talk_section .h2_block > .wp-block-group__inner-container {
  position: relative;
  display: flex;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .page_crosstalk .talk_sections .talk_section .h2_block > .wp-block-group__inner-container {
    flex-direction: column;
  }
}
.page_crosstalk .talk_sections .talk_section .h2_block h2 {
  color: #fff;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 90px;
  background-color: #1A1311;
  padding: 0 40px 0 80px;
  width: fit-content;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .h2_block h2 {
    font-size: 2.8rem;
    line-height: 48px;
    height: 48px;
    padding: 0 20px 0 45px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 801px) {
  .page_crosstalk .talk_sections .talk_section .h2_block h2:nth-child(n+2) {
    padding-left: 0;
    margin-left: -40px;
  }
}
.page_crosstalk .talk_sections .talk_section .h2_block h2:first-child:before {
  content: "0" counter(section_no);
  color: #9E8447;
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  left: 40px;
  font-family: "Bronova Bold";
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .h2_block h2:first-child:before {
    left: 15px;
    font-size: 1.4rem;
  }
}
.page_crosstalk .talk_sections .talk_section .image_block {
  margin-top: -45px;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .image_block {
    margin-top: -24px;
  }
}
.page_crosstalk .talk_sections .talk_section .image_block .pc_img {
  width: 100%;
  display: block;
  margin: 0;
}
.page_crosstalk .talk_sections .talk_section .image_block .pc_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .image_block .pc_img {
    display: none;
  }
}
.page_crosstalk .talk_sections .talk_section .image_block .sp_img {
  width: 100%;
  display: none;
  margin: 0;
}
.page_crosstalk .talk_sections .talk_section .image_block .sp_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .image_block .sp_img {
    display: block;
  }
}
.page_crosstalk .talk_sections .talk_section .talk_list {
  width: 100%;
  max-width: 1080px;
  padding: 0 30px;
  margin: 60px auto 0;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .talk_list {
    padding: 0 15px;
    margin-top: 40px;
  }
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item {
  width: 100%;
  margin: 20px 0 0;
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item > .wp-block-group__inner-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item:nth-child(2n+1) {
  padding-left: 15px;
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item:nth-child(2n+1) .talk_text {
  margin-left: 10px;
  padding-right: 80px;
  border-bottom-right-radius: 100px;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .talk_list .talk_item:nth-child(2n+1) .talk_text {
    padding-right: 30px;
    border-bottom-right-radius: 80px;
  }
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item:nth-child(2n) {
  padding-right: 15px;
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item:nth-child(2n) > .wp-block-group__inner-container {
  flex-direction: row-reverse;
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item:nth-child(2n) .talk_text {
  margin-right: 10px;
  padding-left: 80px;
  border-bottom-left-radius: 100px;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .talk_list .talk_item:nth-child(2n) .talk_text {
    padding-left: 30px;
    border-bottom-left-radius: 80px;
  }
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item .speaker {
  width: 80px;
  text-align: center;
  padding-top: 90px;
  box-sizing: border-box;
  color: #9E8447;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  margin: 0;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .talk_list .talk_item .speaker {
    width: 50px;
    padding-top: 55px;
    font-size: 1.1rem;
  }
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item .speaker.ueda {
  background-image: url(../../images/crosstalk_member_ueda.png);
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item .speaker.kasei {
  background-image: url(../../images/crosstalk_member_kasei.png);
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item .speaker.numata {
  background-image: url(../../images/crosstalk_member_numata.png);
}
.page_crosstalk .talk_sections .talk_section .talk_list .talk_item .talk_text {
  width: 762px;
  background-color: #F6F6F6;
  padding: 40px;
  box-sizing: border-box;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2.8rem;
  margin: 0;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .talk_sections .talk_section .talk_list .talk_item .talk_text {
    width: calc(100% - 60px);
    padding: 20px 30px 40px;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }
}
.page_crosstalk .footer_section {
  margin-top: 100px;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .footer_section {
    margin-top: 90px;
  }
}
.page_crosstalk .footer_section .pc_img {
  width: 100%;
  display: block;
  margin: 0;
}
.page_crosstalk .footer_section .pc_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .footer_section .pc_img {
    display: none;
  }
}
.page_crosstalk .footer_section .sp_img {
  width: 100%;
  display: none;
  margin: 0;
}
.page_crosstalk .footer_section .sp_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_crosstalk .footer_section .sp_img {
    display: block;
  }
}

/*schedule*/
.page_schedule {
  overflow: hidden;
}
.page_schedule .h1_lower {
  position: relative;
  padding: 180px 0 120px 0;
  padding-bottom: 67px;
}
@media screen and (max-width: 1100px) {
  .page_schedule .h1_lower {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 800px) {
  .page_schedule .h1_lower {
    padding: 60px 0 90px 0;
  }
}
.page_schedule .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  padding: 0 30px 70px 30px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .page_schedule .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 30px 30px 30px;
  }
}
.page_schedule .h1_lower .flex_h1 p {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .page_schedule .h1_lower .flex_h1 p {
    font-size: 2rem;
    position: static;
    margin-bottom: 12px;
  }
}
.page_schedule .h1_lower .flex_h1 h1 {
  white-space: nowrap;
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.page_schedule .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .page_schedule .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.page_schedule .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .page_schedule .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.page_schedule .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.page_schedule .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.page_schedule .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_schedule .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.page_schedule .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.page_schedule .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.page_schedule .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  bottom: 72px;
  margin: 0;
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
.page_schedule .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .page_schedule .h1_lower .en_text {
    bottom: 42px;
  }
}
@media screen and (max-width: 540px) {
  .page_schedule .h1_lower .en_text {
    font-size: 8rem;
    bottom: 59px;
  }
}
.page_schedule .movie_link {
  margin: 0 auto;
  max-width: 1080px;
  width: auto;
  position: relative;
}
.page_schedule .movie_link iframe {
  max-width: 1080px;
  width: 100%;
  height: 608px;
  margin-inline: auto;
}
@media screen and (max-width: 540px) {
  .page_schedule .movie_link iframe {
    height: 250px;
  }
}
.page_schedule .movie_link .has-text-align-center {
  margin-block: 140px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 2.4rem;
  line-height: 3.6rem;
}
@media screen and (max-width: 540px) {
  .page_schedule .movie_link .has-text-align-center {
    margin-block: 40px 85px;
    padding-inline: 30px;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
@media screen and (max-width: 800px) {
  .page_schedule .movie_link {
    height: auto;
    padding-bottom: 30px;
  }
}
.page_schedule .movie_link h2 {
  font-family: "Bronova Bold";
  font-size: 3.2rem;
  padding-left: 75px;
  line-height: 3.2rem;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
  margin: 0;
}
.page_schedule .movie_link h2:before {
  content: "";
  display: block;
  width: 55px;
  border-top: 3px solid #9E8447;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
.page_schedule .timeline {
  margin: 0 auto;
  padding-left: 64px;
  max-width: 1080px;
  width: auto;
  position: relative;
}
.page_schedule .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #9E8447;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline::before {
    left: 40px;
  }
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .wp-block-group.timline_block {
    margin-right: 30px;
  }
}
.page_schedule .timeline .timline_block > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 110px 1fr;
  grid-template-areas: "title title" "contents contents" ". image";
  column-gap: 70px;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .timline_block > .wp-block-group__inner-container {
    display: block;
  }
}
.page_schedule .timeline .timline_block > .wp-block-group__inner-container > .wp-block-group {
  grid-area: contents;
}
.page_schedule .timeline .timline_block > .wp-block-group__inner-container .timeline_flex > div {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .timline_block > .wp-block-group__inner-container .timeline_flex > div {
    flex-direction: column;
    gap: 10px;
  }
}
.page_schedule .timeline .timline_block > .wp-block-group__inner-container .timeline_flex + .timeline_flex p {
  margin-top: 44px;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .timline_block > .wp-block-group__inner-container .timeline_flex + .timeline_flex p {
    margin-top: 0;
  }
}
.page_schedule .timeline .wp-block-group__inner-container h2 {
  grid-area: title;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 5.2rem;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .wp-block-group__inner-container h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
}
.page_schedule .timeline .wp-block-group__inner-container p {
  flex: 1;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .wp-block-group__inner-container p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
.page_schedule .timeline .wp-block-group__inner-container figure {
  grid-area: image;
  margin-block: 60px 120px;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .wp-block-group__inner-container figure {
    margin-block: 0 60px;
  }
}
.page_schedule .timeline .wp-block-group__inner-container img {
  width: 100%;
}
.page_schedule .timeline .wp-block-group__inner-container .en_text {
  flex: initial;
  position: relative;
  width: 110px;
  color: #9E8447;
  font-size: 3rem;
  font-family: "Bronova Bold";
}
.page_schedule .timeline .wp-block-group__inner-container .en_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -64px;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background-color: #9E8447;
}
@media screen and (max-width: 540px) {
  .page_schedule .timeline .wp-block-group__inner-container .en_text {
    margin-block: 0;
    font-size: 2rem;
  }
  .page_schedule .timeline .wp-block-group__inner-container .en_text::before {
    left: -32px;
    width: 20px;
    height: 20px;
  }
}
.page_schedule .footer_section {
  margin-top: 120px;
  padding-block: 120px;
  background-color: #F6F6F6;
}
@media screen and (max-width: 540px) {
  .page_schedule .footer_section {
    margin-top: 90px;
    padding-block: 60px;
  }
}
.page_schedule .footer_section .pc_img {
  width: 100%;
  display: block;
  margin: 0;
}
.page_schedule .footer_section .pc_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_schedule .footer_section .pc_img {
    display: none;
  }
}
.page_schedule .footer_section .sp_img {
  width: 100%;
  display: none;
  margin: 0;
}
.page_schedule .footer_section .sp_img img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .page_schedule .footer_section .sp_img {
    display: block;
  }
}
.page_schedule .footer_section .content_flex > div {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
.page_schedule .footer_section .content_flex > div figure {
  position: relative;
  width: 100%;
}
.page_schedule .footer_section .content_flex > div figure img {
  width: 100%;
}
@media screen and (max-width: 540px) {
  .page_schedule .footer_section .content_flex > div {
    flex-direction: column;
    margin-bottom: 0;
  }
  .page_schedule .footer_section .content_flex > div figure {
    margin-top: 60px;
  }
}
.page_schedule .footer_section .content_grid {
  margin-inline: min(210px, 15%) 105px;
}
.page_schedule .footer_section .content_grid h2 {
  font-size: 3.6rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  line-height: 5rem;
}
@media screen and (max-width: 540px) {
  .page_schedule .footer_section .content_grid h2 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
.page_schedule .footer_section .content_grid .circle_flex {
  margin-block: 20px 40px;
}
.page_schedule .footer_section .content_grid .circle_flex > div {
  display: flex;
}
.page_schedule .footer_section .content_grid .circle_flex p {
  background: #1A1311;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
.page_schedule .footer_section .content_grid .circle_flex p.color_y {
  background: #9E8447;
}
.page_schedule .footer_section .content_grid p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 540px) {
  .page_schedule .footer_section .content_grid {
    margin-inline: 30px;
  }
}
.page_schedule .footer_section .recruit_link {
  position: relative;
  width: auto;
  max-width: 1080px;
  margin-inline: auto;
}
.page_schedule .footer_section .recruit_link img {
  width: 100%;
}
.page_schedule .footer_section .recruit_link p {
  position: absolute;
  top: 100px;
  left: 50%;
  margin-block: 0;
  color: #FFFFFF;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 3.2rem;
  translate: -50% 0;
}
@media screen and (max-width: 540px) {
  .page_schedule .footer_section .recruit_link p {
    top: 50%;
    font-size: 2.2rem;
    translate: -50% -50%;
  }
}

/*BLOGページ*/
/*blog*/
.blog_index {
  margin: 0 0 120px 0;
}
@media screen and (max-width: 540px) {
  .blog_index {
    margin: 0 0 90px 0;
  }
}
.blog_index .h1_lower {
  position: relative;
  padding: 180px 0 120px 0;
}
@media screen and (max-width: 1100px) {
  .blog_index .h1_lower {
    padding: 90px 0 90px 0;
  }
}
@media screen and (max-width: 800px) {
  .blog_index .h1_lower {
    padding: 60px 0 90px 0;
  }
}
.blog_index .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  padding: 0 30px 70px 30px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .blog_index .h1_lower .flex_h1 {
    display: block;
    text-align: center;
    padding: 0 30px 30px 30px;
  }
}
.blog_index .h1_lower .flex_h1 p {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .blog_index .h1_lower .flex_h1 p {
    font-size: 2rem;
    position: static;
    margin-bottom: 12px;
  }
}
.blog_index .h1_lower .flex_h1 h1 {
  white-space: nowrap;
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.blog_index .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .blog_index .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.blog_index .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .blog_index .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.blog_index .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.blog_index .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.blog_index .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.blog_index .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.blog_index .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.blog_index .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  bottom: 72px;
  margin: 0;
  color: #fff;
  opacity: 0;
  text-transform: capitalize;
}
.blog_index .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .blog_index .h1_lower .en_text {
    bottom: 42px;
  }
}
@media screen and (max-width: 540px) {
  .blog_index .h1_lower .en_text {
    font-size: 8rem;
    bottom: 59px;
  }
}
.blog_index .h1_lower .h1_img {
  width: auto;
  height: 493px;
  background: url(../../images/blog_image01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.blog_index .h1_lower .h1_img.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .blog_index .h1_lower .h1_img {
    height: 300px;
  }
}
@media screen and (max-width: 540px) {
  .blog_index .h1_lower .h1_img {
    background: url(../../images/sp_blog_image01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.blog_index .contents_flex {
  display: flex;
  max-width: 1080px;
  width: auto;
  padding: 0 30px;
  margin: 0 auto 90px auto;
}
@media screen and (max-width: 1100px) {
  .blog_index .contents_flex {
    display: block;
  }
}
.blog_index .contents_flex .blog_list {
  margin: 0 60px 0 0;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  .blog_index .contents_flex .blog_list {
    margin: 0 0 90px 0;
  }
}
.blog_index .contents_flex .blog_list li {
  list-style: none;
}
.blog_index .contents_flex .blog_list li:first-child a {
  padding: 0 0 60px 0;
}
.blog_index .contents_flex .blog_list li a {
  display: flex;
  text-decoration: none;
  color: #1A1311;
  padding: 60px 0;
  border-bottom: solid 1px #E2E2E2;
  transition: 0.3s;
}
.blog_index .contents_flex .blog_list li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .contents_flex .blog_list li a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 540px) {
  .blog_index .contents_flex .blog_list li a {
    flex-wrap: wrap;
    align-items: center;
  }
}
.blog_index .contents_flex .blog_list li a .time_text {
  margin: 0;
}
.blog_index .contents_flex .blog_list li a .time_text time {
  font-family: "Bronova Regular";
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #1A1311;
}
.blog_index .contents_flex .blog_list li a ul {
  padding: 0 70px 0 20px;
}
@media screen and (max-width: 540px) {
  .blog_index .contents_flex .blog_list li a ul {
    padding: 0 0 0 20px;
  }
}
.blog_index .contents_flex .blog_list li a ul li {
  color: #9E8447;
  padding: 6px 10px;
  background: #fff;
  border: solid 1px #9E8447;
  font-size: 1.3rem;
  white-space: nowrap;
  width: 154px;
  box-sizing: border-box;
  text-align: center;
}
.blog_index .contents_flex .blog_list li a .blog_text h2 {
  margin: 0 0 30px 0;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-size: 1.9rem;
}
@media screen and (max-width: 540px) {
  .blog_index .contents_flex .blog_list li a .blog_text h2 {
    margin: 30px 0;
  }
}
.blog_index .contents_flex .blog_list li a .blog_text p {
  font-size: 1.4rem;
  color: #707070;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0;
}
.blog_index .contents_flex .sidebar {
  padding: 35px 30px;
  background: #F6F6F6;
  height: 100%;
  max-width: 240px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .blog_index .contents_flex .sidebar {
    max-width: 100%;
  }
}
.blog_index .contents_flex .sidebar .archive_recent h2 {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-size: 1.4rem;
  color: #474645;
  font-family: "Bronova Bold";
  position: relative;
  border-bottom: 1px solid #E6E6E6;
}
.blog_index .contents_flex .sidebar .archive_recent h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_index .contents_flex .sidebar .archive_recent ul {
  padding: 0 0 0 5px;
  margin: 0 0 40px 0;
}
.blog_index .contents_flex .sidebar .archive_recent ul li {
  list-style-type: "-";
  font-size: 1.6rem;
  margin: 0 0 20px 0;
}
.blog_index .contents_flex .sidebar .archive_recent ul li a {
  display: block;
  color: #1A1311;
  text-decoration: none;
  transition: 0.3s;
}
.blog_index .contents_flex .sidebar .archive_recent ul li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .contents_flex .sidebar .archive_recent ul li a:hover {
    opacity: 1;
  }
}
.blog_index .contents_flex .sidebar .archive_recent ul li a h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 10px 0;
  font-weight: normal;
}
.blog_index .contents_flex .sidebar .archive_recent ul li a .flex_item {
  display: flex;
  align-items: center;
}
.blog_index .contents_flex .sidebar .archive_recent ul li a .flex_item .archive_time {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Bronova Regular";
}
.blog_index .contents_flex .sidebar .archive_recent ul li a .flex_item .archive_time::after {
  content: "/";
  margin: 0 5px 0 5px;
}
.blog_index .contents_flex .sidebar .archive_recent ul li a .flex_item ul {
  margin: 0;
  padding: 0;
}
.blog_index .contents_flex .sidebar .archive_recent ul li a .flex_item ul li {
  list-style: none;
  font-size: 1.2rem;
  margin: 0 0 3px 0;
}
.blog_index .contents_flex .sidebar .archive_category h2 {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-size: 1.4rem;
  color: #474645;
  font-family: "Bronova Bold";
  position: relative;
  border-bottom: 1px solid #E6E6E6;
}
.blog_index .contents_flex .sidebar .archive_category h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_index .contents_flex .sidebar .archive_category ul {
  padding: 0 0 0 5px;
  margin: 0 0 40px 0;
}
.blog_index .contents_flex .sidebar .archive_category ul li {
  list-style-type: "-";
  font-size: 1.6rem;
  margin: 0 0 20px 0;
}
.blog_index .contents_flex .sidebar .archive_category ul li a {
  display: block;
  color: #1A1311;
  text-decoration: none;
  transition: 0.3s;
  font-weight: normal;
}
.blog_index .contents_flex .sidebar .archive_category ul li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .contents_flex .sidebar .archive_category ul li a:hover {
    opacity: 1;
  }
}
.blog_index .contents_flex .sidebar .archive_archive h2 {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-size: 1.4rem;
  color: #474645;
  font-family: "Bronova Bold";
  position: relative;
  border-bottom: 1px solid #E6E6E6;
}
.blog_index .contents_flex .sidebar .archive_archive h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list {
  padding: 0 0 0 5px;
  margin: 0;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0;
  font-family: "Bronova Regular";
  text-decoration: none;
  color: #1A1311;
  display: block;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list h3::before {
  content: "-";
  display: inline-block;
  padding: 0 3px 0 0;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list ul {
  padding: 0;
  margin: 15px 0 0 0;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list ul li {
  list-style: none;
  margin: 0 0 15px 0;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list ul li:last-child {
  margin: 0;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list ul li a {
  font-size: 1.6rem;
  display: block;
  font-family: "Bronova Regular";
  padding: 0 0 0 20px;
  text-decoration: none;
  color: #1A1311;
  transition: 0.3s;
}
.blog_index .contents_flex .sidebar .archive_archive .archive_list ul li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .contents_flex .sidebar .archive_archive .archive_list ul li a:hover {
    opacity: 1;
  }
}
.blog_index .m-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.blog_index .m-pagenation .m-pagenation__prev {
  margin: 0 30px 0 0;
}
.blog_index .m-pagenation .m-pagenation__prev a {
  text-decoration: none;
  color: #1A1311;
  display: inline-block;
  font-family: "Bronova Regular";
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}
.blog_index .m-pagenation .m-pagenation__prev a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 10px;
  height: 2px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .m-pagenation .m-pagenation__prev a::after {
    position: static;
  }
}
.blog_index .m-pagenation .m-pagenation__prev a:hover::after {
  transform: scale(1, 1);
}
.blog_index .m-pagenation .m-pagenation__next {
  margin: 0 0 0 30px;
}
.blog_index .m-pagenation .m-pagenation__next a {
  text-decoration: none;
  color: #1A1311;
  display: inline-block;
  font-family: "Bronova Regular";
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}
.blog_index .m-pagenation .m-pagenation__next a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 10px;
  height: 2px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .m-pagenation .m-pagenation__next a::after {
    position: static;
  }
}
.blog_index .m-pagenation .m-pagenation__next a:hover::after {
  transform: scale(1, 1);
}
.blog_index .m-pagenation .m-pagenation__body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog_index .m-pagenation .m-pagenation__body li {
  list-style: none;
  margin: 0 30px 0 0;
}
.blog_index .m-pagenation .m-pagenation__body li:last-child {
  margin: 0;
}
.blog_index .m-pagenation .m-pagenation__body li a {
  text-decoration: none;
  color: #1A1311;
  display: inline-block;
  font-family: "Bronova Regular";
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}
.blog_index .m-pagenation .m-pagenation__body li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 10px;
  height: 2px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_index .m-pagenation .m-pagenation__body li a::after {
    position: static;
  }
}
.blog_index .m-pagenation .m-pagenation__body li a:hover::after {
  transform: scale(1, 1);
}
.blog_index .m-pagenation .m-pagenation__body .current {
  text-decoration: none;
  color: #1A1311;
  display: inline-block;
  font-family: "Bronova Regular";
  font-size: 1.4rem;
  position: relative;
  top: 1px;
}
.blog_index .m-pagenation .m-pagenation__body .current::after {
  position: absolute;
  bottom: -5px;
  left: -1px;
  content: "";
  width: 10px;
  height: 2px;
  background: #9E8447;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

/*bloglower*/
.blog_lower {
  margin: 0 0 120px 0;
}
@media screen and (max-width: 540px) {
  .blog_lower {
    margin: 0 0 90px 0;
  }
}
.blog_lower .h1_lower {
  position: relative;
  padding: 180px 30px 80px 30px;
}
@media screen and (max-width: 1100px) {
  .blog_lower .h1_lower {
    padding: 90px 30px;
  }
}
@media screen and (max-width: 800px) {
  .blog_lower .h1_lower {
    padding: 60px 30px 90px 30px;
  }
}
.blog_lower .h1_lower .flex_h1 {
  max-width: 1080px;
  width: auto;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 30px 0;
  border-bottom: solid 1px #E6E6E6;
}
@media screen and (max-width: 1100px) {
  .blog_lower .h1_lower .flex_h1 {
    display: block;
    text-align: center;
  }
}
.blog_lower .h1_lower .flex_h1 h1 {
  margin: 0;
  font-size: 4.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.blog_lower .h1_lower .flex_h1 h1.is-animated {
  clip-path: inset(0);
}
@media screen and (max-width: 800px) {
  .blog_lower .h1_lower .flex_h1 h1 {
    font-size: 3.4rem;
  }
}
.blog_lower .h1_lower .flex_h1 .breadcrumb {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  .blog_lower .h1_lower .flex_h1 .breadcrumb {
    display: none;
  }
}
.blog_lower .h1_lower .flex_h1 .breadcrumb span {
  font-size: 1.3rem;
}
.blog_lower .h1_lower .flex_h1 .breadcrumb span a {
  text-decoration: none;
  color: #999;
  position: relative;
  display: inline-block;
}
.blog_lower .h1_lower .flex_h1 .breadcrumb span a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #9E8447;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_lower .h1_lower .flex_h1 .breadcrumb span a::after {
    position: static;
  }
}
.blog_lower .h1_lower .flex_h1 .breadcrumb span a:hover::after {
  transform: scale(1, 1);
}
.blog_lower .h1_lower .flex_h1 .breadcrumb span:nth-of-type(2n) {
  display: inline-block;
  padding: 0 10px;
}
.blog_lower .h1_lower .en_text {
  position: absolute;
  font-size: 12rem;
  font-family: "Bronova Bold";
  right: 0;
  top: 60px;
  margin: 0;
  color: #F6F6F6;
  opacity: 0;
}
.blog_lower .h1_lower .en_text.is-animated {
  animation: fadeupY 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .blog_lower .h1_lower .en_text {
    position: static;
    text-align: center;
    padding: 30px 0 0 0;
    font-size: 8rem;
  }
}
.blog_lower .contents_flex {
  display: flex;
  margin: 0 auto;
  max-width: 1080px;
  width: auto;
  padding: 0 30px;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex {
    display: block;
  }
}
.blog_lower .contents_flex .blog_contents {
  margin: 0 60px 0 0;
  max-width: 780px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex .blog_contents {
    margin: 0;
    max-width: 100%;
  }
}
.blog_lower .contents_flex .blog_contents .blog_h1 {
  margin: 0 0 80px 0;
}
.blog_lower .contents_flex .blog_contents .blog_h1 ul {
  padding: 0;
  margin: 0 0 20px 0;
}
.blog_lower .contents_flex .blog_contents .blog_h1 ul li {
  list-style: none;
  font-size: 1.4rem;
  color: #1A1311;
}
.blog_lower .contents_flex .blog_contents .blog_h1 h1 {
  font-size: 3.6rem;
  color: #1A1311;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  margin: 0 0 20px 0;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 540px) {
  .blog_lower .contents_flex .blog_contents .blog_h1 h1 {
    font-size: 3rem;
  }
}
.blog_lower .contents_flex .blog_contents .blog_h1 .time_text {
  margin: 0;
}
.blog_lower .contents_flex .blog_contents .blog_h1 .time_text time {
  font-size: 1.4rem;
  color: #959595;
  letter-spacing: 0.1em;
  font-family: "Bronova Bold";
}
.blog_lower .contents_flex .blog_contents h2 {
  margin: 60px 0;
  font-size: 2.8rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.7;
  padding: 40px 0 0 0;
  position: relative;
  border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex .blog_contents h2 {
    font-size: 2.5rem;
  }
}
.blog_lower .contents_flex .blog_contents h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 168px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_lower .contents_flex .blog_contents h3 {
  margin: 40px 0;
  font-size: 2.2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.7;
  padding: 0 0 25px 0;
  position: relative;
}
.blog_lower .contents_flex .blog_contents h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_lower .contents_flex .blog_contents h4 {
  margin: 30px 0;
  font-size: 2rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.7;
  padding: 0 0 25px 0;
  border-bottom: solid 1px #E6E6E6;
}
.blog_lower .contents_flex .blog_contents h5 {
  margin: 30px 0;
  font-size: 1.8rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.7;
  padding: 0 0 15px 0;
  border-bottom: dotted 1px #E6E6E6;
}
.blog_lower .contents_flex .blog_contents h6 {
  margin: 30px 0;
  font-size: 1.6rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.7;
}
.blog_lower .contents_flex .blog_contents h6::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #E6E6E6;
  position: relative;
  bottom: 1px;
  margin-right: 10px;
}
.blog_lower .contents_flex .blog_contents .wp-block-buttons .wp-block-button {
  margin: 40px 0;
}
.blog_lower .contents_flex .blog_contents .wp-block-buttons .wp-block-button .wp-block-button__link {
  padding: 0;
  background-color: transparent;
  display: block;
  text-decoration: none;
  color: #9E8447;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
.blog_lower .contents_flex .blog_contents .wp-block-buttons .wp-block-button .wp-block-button__link::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 50px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
.blog_lower .contents_flex .blog_contents .wp-block-buttons .wp-block-button .wp-block-button__link:hover::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 70px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex .blog_contents .wp-block-buttons .wp-block-button .wp-block-button__link:hover::before {
    margin: 0 10px 5px 0;
    display: inline-block;
    content: "";
    width: 50px;
    height: 2px;
    background: #9E8447;
    transition: 0.3s;
  }
}
.blog_lower .contents_flex .blog_contents p {
  margin: 40px 0;
  font-size: 1.6rem;
  color: #1A1311;
  line-height: 1.75;
}
.blog_lower .contents_flex .blog_contents ul {
  margin: 40px 0;
  padding: 0 0 0 20px;
}
.blog_lower .contents_flex .blog_contents ul li {
  margin: 20px 0;
  font-size: 1.6rem;
  color: #1A1311;
  line-height: 1.75;
}
.blog_lower .contents_flex .blog_contents ol {
  margin: 40px 0;
  padding: 0;
  counter-reset: num;
  list-style: none;
}
.blog_lower .contents_flex .blog_contents ol li {
  margin: 20px 0;
  font-size: 1.6rem;
  color: #1A1311;
  line-height: 1.75;
  position: relative;
  padding: 0 0 0 40px;
}
.blog_lower .contents_flex .blog_contents ol li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 0 0 0;
  counter-increment: num;
  content: counter(num);
  display: inline-block;
  background: #fff;
  color: #9E8447;
  font-size: 1.4rem;
  font-family: "Bronova Bold";
  border-radius: 50%;
  border: solid 2px #9E8447;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  text-align: center;
}
.blog_lower .contents_flex .blog_contents .main_img img {
  width: 100%;
  display: block;
}
.blog_lower .contents_flex .blog_contents figure {
  margin: 60px 0;
}
.blog_lower .contents_flex .blog_contents figure img {
  width: 100%;
  display: block;
  height: auto;
}
.blog_lower .contents_flex .sidebar {
  padding: 35px 30px;
  background: #F6F6F6;
  height: 100%;
  max-width: 240px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex .sidebar {
    max-width: 100%;
  }
}
.blog_lower .contents_flex .sidebar .archive_recent h2 {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-size: 1.4rem;
  color: #474645;
  font-family: "Bronova Bold";
  position: relative;
  border-bottom: 1px solid #E6E6E6;
}
.blog_lower .contents_flex .sidebar .archive_recent h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_lower .contents_flex .sidebar .archive_recent ul {
  padding: 0 0 0 5px;
  margin: 0 0 40px 0;
}
.blog_lower .contents_flex .sidebar .archive_recent ul li {
  list-style-type: "-";
  font-size: 1.6rem;
  margin: 0 0 20px 0;
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a {
  display: block;
  color: #1A1311;
  text-decoration: none;
  transition: 0.3s;
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex .sidebar .archive_recent ul li a:hover {
    opacity: 1;
  }
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 10px 0;
  font-weight: normal;
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a .flex_item {
  display: flex;
  align-items: center;
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a .flex_item .archive_time {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Bronova Regular";
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a .flex_item .archive_time::after {
  content: "/";
  margin: 0 5px 0 5px;
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a .flex_item ul {
  margin: 0;
  padding: 0;
}
.blog_lower .contents_flex .sidebar .archive_recent ul li a .flex_item ul li {
  list-style: none;
  font-size: 1.2rem;
  margin: 0 0 3px 0;
}
.blog_lower .contents_flex .sidebar .archive_category h2 {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-size: 1.4rem;
  color: #474645;
  font-family: "Bronova Bold";
  position: relative;
  border-bottom: 1px solid #E6E6E6;
}
.blog_lower .contents_flex .sidebar .archive_category h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_lower .contents_flex .sidebar .archive_category ul {
  padding: 0 0 0 5px;
  margin: 0 0 40px 0;
}
.blog_lower .contents_flex .sidebar .archive_category ul li {
  list-style-type: "-";
  font-size: 1.6rem;
  margin: 0 0 20px 0;
}
.blog_lower .contents_flex .sidebar .archive_category ul li a {
  display: block;
  color: #1A1311;
  text-decoration: none;
  transition: 0.3s;
  font-weight: normal;
}
.blog_lower .contents_flex .sidebar .archive_category ul li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex .sidebar .archive_category ul li a:hover {
    opacity: 1;
  }
}
.blog_lower .contents_flex .sidebar .archive_archive h2 {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-size: 1.4rem;
  color: #474645;
  font-family: "Bronova Bold";
  position: relative;
  border-bottom: 1px solid #E6E6E6;
}
.blog_lower .contents_flex .sidebar .archive_archive h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list {
  padding: 0 0 0 5px;
  margin: 0;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0;
  font-family: "Bronova Regular";
  text-decoration: none;
  color: #1A1311;
  display: block;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list h3::before {
  content: "-";
  display: inline-block;
  padding: 0 3px 0 0;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list ul {
  padding: 0;
  margin: 15px 0 0 0;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list ul li {
  list-style: none;
  margin: 0 0 15px 0;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list ul li:last-child {
  margin: 0;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list ul li a {
  font-size: 1.6rem;
  display: block;
  font-family: "Bronova Regular";
  padding: 0 0 0 20px;
  text-decoration: none;
  color: #1A1311;
  transition: 0.3s;
}
.blog_lower .contents_flex .sidebar .archive_archive .archive_list ul li a:hover {
  opacity: 0.4;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .blog_lower .contents_flex .sidebar .archive_archive .archive_list ul li a:hover {
    opacity: 1;
  }
}

/*notfound*/
.page_notfound {
  max-width: 1080px;
  width: auto;
  padding: 120px 30px;
  margin: 0 auto;
}
.page_notfound h2 {
  margin: 60px 0;
  font-size: 2.8rem;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #1A1311;
  line-height: 1.7;
  padding: 40px 0 0 0;
  position: relative;
  border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 1100px) {
  .page_notfound h2 {
    font-size: 2.5rem;
  }
}
.page_notfound h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 168px;
  height: inherit;
  border-bottom: 1px solid #947942;
}
.page_notfound .wp-block-buttons .wp-block-button {
  margin: 40px 0;
}
.page_notfound .wp-block-buttons .wp-block-button a {
  padding: 0;
  background-color: transparent;
  display: block;
  text-decoration: none;
  color: #9E8447;
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
.page_notfound .wp-block-buttons .wp-block-button a::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 50px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
.page_notfound .wp-block-buttons .wp-block-button a:hover::before {
  margin: 0 10px 5px 0;
  display: inline-block;
  content: "";
  width: 70px;
  height: 2px;
  background: #9E8447;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .page_notfound .wp-block-buttons .wp-block-button a:hover::before {
    margin: 0 10px 5px 0;
    display: inline-block;
    content: "";
    width: 50px;
    height: 2px;
    background: #9E8447;
    transition: 0.3s;
  }
}
.page_notfound p {
  margin: 40px 0;
  font-size: 1.6rem;
  color: #1A1311;
  line-height: 1.75;
}

/*footer*/
footer {
  background: #1A1311;
  padding: 100px 30px 80px 30px;
}
@media screen and (max-width: 1100px) {
  footer {
    padding: 60px 30px;
  }
}
footer .footer_flex {
  max-width: 1080px;
  width: 100%;
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex {
    flex-wrap: wrap;
  }
}
footer .footer_flex .left_area {
  margin: 0 30px 0 0;
}
footer .footer_flex .left_area h1 {
  margin: 0;
}
footer .footer_flex .left_area h1 a {
  display: block;
}
footer .footer_flex .left_area h1 a img {
  max-width: 204px;
  width: 100%;
  vertical-align: bottom;
}
footer .footer_flex .left_area p {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .left_area {
    margin: 0 0 60px 0;
  }
}
footer .footer_flex .right_area {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area {
    margin: 0 auto;
  }
}
footer .footer_flex .right_area .g_nav .main_menu {
  margin: 0;
  display: flex;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .main_menu {
    display: block;
    overflow: hidden;
  }
}
footer .footer_flex .right_area .g_nav .main_menu li {
  list-style: none;
  margin: 0 30px 0 0;
  padding: 0;
}
footer .footer_flex .right_area .g_nav .main_menu li:last-child {
  margin: 0;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .main_menu li {
    float: left;
    width: 50%;
    border: 1px solid #fff;
    margin: 0 -1px -1px 0;
    box-sizing: border-box;
    text-align: center;
  }
}
footer .footer_flex .right_area .g_nav .main_menu li a {
  font-family: a-otf-midashi-go-mb31-pr6n, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}
footer .footer_flex .right_area .g_nav .main_menu li a:hover {
  transition: 0.3s;
  color: #9E8447;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .main_menu li a {
    padding: 20px 0;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .main_menu li a:hover {
    color: #fff;
  }
}
footer .footer_flex .right_area .g_nav .contact_btn {
  margin: 30px 0 0 0;
  padding: 0;
  text-align: right;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .contact_btn {
    display: block;
    overflow: hidden;
    margin: 0 0 60px 0;
  }
}
footer .footer_flex .right_area .g_nav .contact_btn li {
  list-style: none;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .contact_btn li {
    float: left;
    width: 99.7%;
    border: 1px solid #fff;
    margin: 0 -1px 0 0;
    box-sizing: border-box;
    text-align: center;
  }
}
footer .footer_flex .right_area .g_nav .contact_btn li a {
  font-size: 1.4rem;
  font-family: "Bronova Bold";
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  background: #1A1311;
  padding: 20px 80px 17px 80px;
  box-sizing: border-box;
  border: #fff solid 2px;
  display: inline-block;
  transition: 0.3s;
}
footer .footer_flex .right_area .g_nav .contact_btn li a:hover {
  color: #9E8447;
  border: #9E8447 solid 2px;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .contact_btn li a {
    padding: 20px 0;
    margin: -1px 0 0 0;
    width: 100%;
    border: none;
  }
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .g_nav .contact_btn li a:hover {
    color: #fff;
    border: #fff solid 2px;
  }
}
footer .footer_flex .right_area .copy_text {
  margin: 35px 0 0 0;
}
footer .footer_flex .right_area .copy_text small {
  font-family: "Bronova Bold";
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-align: right;
  display: block;
  color: #666666;
}
@media screen and (max-width: 1100px) {
  footer .footer_flex .right_area .copy_text small {
    text-align: center;
  }
}