@charset "UTF-8";
/* --------------------------------------
BASE
-------------------------------------- */
@font-face {
  font-family: "ZenOldMincho-Regular";
  src: url("../fonts/ZenOldMincho-Regular.ttf");
}
@font-face {
  font-family: "ZenOldMincho-Medium";
  src: url("../fonts/ZenOldMincho-Medium.ttf");
}
@font-face {
  font-family: "ZenOldMincho-SemiBold";
  src: url("../fonts/ZenOldMincho-SemiBold.ttf");
}
@font-face {
  font-family: "ZenOldMincho-Bold";
  src: url("../fonts/ZenOldMincho-Bold.ttf");
}
@font-face {
  font-family: "ZenOldMincho-Black";
  src: url("../fonts/ZenOldMincho-Black.ttf");
}
@font-face {
  font-family: "LibreBaskerville-SemiBold";
  src: url("../fonts/LibreBaskerville-SemiBold.ttf");
}
html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
  background: #FCFBF9;
}
@media screen and (min-width: 1281px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  html {
    scroll-padding-top: 74px;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 48px;
  }
}

body {
  font-family: "ZenOldMincho-Regular", serif;
  font-style: normal;
  font-weight: normal;
  color: #333;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  line-height: 2.1875;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

em {
  font-style: normal;
}

dt {
  font-weight: normal;
}

.display_sp, .br_sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .display_sp, .br_sp {
    display: none;
  }
}

.display_pc, .br_pc {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .display_pc, .br_pc {
    display: none;
  }
}

.br_tab {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br_tab {
    display: inline-block;
  }
}

em {
  font-style: normal;
}

.js_fadeup {
  transform: translateY(20px);
  opacity: 0;
}

/* --------------------------------------
HEADER
-------------------------------------- */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(234, 231, 224, 0.9);
}
header .hd_inner {
  border-radius: 30px;
}
header .hd_logo {
  position: relative;
  z-index: 100;
}
header .hd_nav_list li a {
  display: block;
  transition: 0.3s;
  text-align: center;
}
header .hd_nav_list li a span {
  display: block;
  text-align: center;
  color: #B0974B;
  font-size: 10px;
  line-height: 1;
  transition: color 0.3s;
}
header .hd_nav_list li:not(:last-child) a:hover {
  color: #B0974B;
}
header .hd_nav_list li:not(:last-child) a:hover span {
  color: #024023;
}
header .hd_nav_list li:last-child a.hd_cta {
  background: #024023;
  color: #fff !important;
  width: 113px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
}
header .hd_nav_list li:last-child a.hd_cta .hd_cta_inner {
  display: block;
  transition: transform 0.35s ease;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
header .hd_nav_list li:last-child a.hd_cta .hd_cta_txt {
  display: block;
  height: 34px;
  line-height: 34px;
  color: #fff !important;
  font-size: inherit;
}
header .hd_nav_list li:last-child a.hd_cta:hover {
  background: #B0974B;
  opacity: 0.9;
}
header .hd_nav_list li:last-child a.hd_cta:hover .hd_cta_inner {
  transform: translateY(-34px);
}
@media screen and (min-width: 1281px) {
  header {
    padding: 0 20px;
  }
  header .hd_nav_sp {
    display: none;
  }
  header .hd_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  header .hd_logo {
    width: 201px;
    line-height: 0;
  }
  header .hd_nav_list {
    display: flex;
    align-items: center;
  }
  header .hd_nav_list > li {
    position: relative;
  }
  header .hd_nav_list > li > a {
    padding: 0 20px;
    line-height: 1.7;
  }
  header .hd_nav_list > li:last-child {
    margin-left: 30px;
  }
  header .hd_nav_list > li:last-child > a.hd_cta {
    padding: 0;
    line-height: 34px;
  }
  header .hd_nav_sub_wrap.is_open .hd_nav_sub {
    max-height: 300px;
    pointer-events: auto;
    opacity: 1;
  }
  header .hd_nav_sub {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -86px;
    background: transparent;
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.7s ease, opacity 0.4s ease;
    pointer-events: none;
  }
  header .hd_nav_sub a {
    text-align: center;
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
  }
  header #hd_btn_sp {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  header .hd_nav_list > li {
    position: relative;
  }
  header .hd_nav_list > li > a {
    padding: 0 15px;
  }
  header .hd_nav_list > li:last-child {
    margin-left: 20px;
  }
  header .hd_nav_list > li:last-child > a.hd_cta {
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  header {
    padding: 7px 20px;
    height: 74px;
  }
  header .hd_logo {
    width: 180px;
  }
  header .hd_inner {
    height: 60px;
  }
  header #hd_btn_sp {
    top: 17px;
    right: 10px;
  }
}
@media screen and (max-width: 1280px) {
  header .hd_nav_pc {
    display: none !important;
  }
  header .hd_inner {
    display: flex;
    align-items: center;
  }
  header .hd_logo {
    line-height: 0;
  }
  header .hd_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #DCD8D1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  header .hd_nav.js_open {
    opacity: 1;
    visibility: visible;
  }
  header .hd_nav_list {
    width: calc(100% - 20px);
    max-width: 330px;
    margin: 0 auto;
  }
  header .hd_nav_list > li:not(:last-child) {
    border-bottom: 1px solid #B0974B;
  }
  header .hd_nav_list > li > a {
    padding: 10px 20px;
    text-align: center;
  }
  header .hd_nav_list > li > a span {
    display: none;
  }
  header .hd_nav_list > li > a.hd_cta span {
    display: block;
  }
  header .hd_nav_list > li:last-child {
    margin-top: 30px;
    text-align: center;
  }
  header .hd_nav_list > li:last-child a.hd_cta {
    width: 127px;
    height: 32px;
    margin: 0 auto;
    padding: 0;
    line-height: 32px;
  }
  header .hd_nav_list > li:last-child a.hd_cta .hd_cta_txt {
    height: 32px;
    line-height: 32px;
  }
  header .hd_nav_list > li:last-child a.hd_cta:hover .hd_cta_inner {
    transform: translateY(-32px);
  }
  header .hd_nav_sub_wrap {
    position: relative;
  }
  header .hd_nav_sub {
    padding: 0 40px 0 40px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  header .hd_nav_sub li {
    margin-bottom: 5px;
  }
  header .hd_nav_sub a {
    font-size: 14px;
  }
  header .hd_nav_sub a:before {
    content: "・";
    color: #024023;
    margin-right: 3px;
  }
  header #hd_btn_sp {
    position: fixed;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
  }
  header #hd_btn_sp span {
    display: block;
    height: 1px;
    background: #B0974B;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    width: 20px;
  }
  header #hd_btn_sp span:nth-child(1) {
    top: 12px;
    width: 35px;
    right: 2px;
  }
  header #hd_btn_sp span:nth-child(2) {
    top: 20px;
    width: 25px;
    right: 2px;
  }
  header #hd_btn_sp span:nth-child(3) {
    bottom: 12px;
    width: 15px;
    right: 2px;
  }
  header #hd_btn_sp.js_active span {
    background: #024023;
  }
  header #hd_btn_sp.js_active span:nth-child(1) {
    transform: rotate(35deg);
    top: 20px;
  }
  header #hd_btn_sp.js_active span:nth-child(2) {
    opacity: 0;
  }
  header #hd_btn_sp.js_active span:nth-child(3) {
    transform: rotate(-35deg);
    bottom: 20px;
    width: 35px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 0 10px;
    height: 48px;
  }
  header .hd_inner {
    height: 48px;
  }
  header .hd_logo {
    width: 134px;
    height: 15px;
  }
  header #hd_btn_sp {
    top: 4px;
    right: 10px;
  }
}

/* --------------------------------------
FOOTER
-------------------------------------- */
footer {
  color: #fff;
  position: relative;
  z-index: 2;
}
footer .l_inner {
  position: relative;
}
footer .l_flex {
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  footer .l_flex {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  footer .l_flex {
    display: block;
    padding-bottom: 20px;
  }
}
footer .ft_name {
  margin-top: 20px;
}
@media screen and (min-width: 1281px) {
  footer {
    padding: 100px 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  footer {
    padding: 80px 0 30px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    background: url(../img/common/ft_bg_01.webp) no-repeat center center;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  footer {
    background: #01321b;
    font-size: 14px;
    padding: 40px 0 20px;
  }
}

@media screen and (min-width: 768px) {
  .ft_info .ft_address {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .ft_info {
    font-size: 14px;
    text-align: center;
    padding-bottom: 40px;
    position: relative;
  }
  .ft_info .ft_logo {
    width: 188px;
    display: block;
    margin: 0 auto;
  }
  .ft_info .ft_logo img {
    width: 100%;
    height: auto;
  }
  .ft_info .ft_list_sns {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .ft_info .ft_address {
    margin-top: 15px;
  }
}

.ft_nav_wrap {
  display: flex;
  align-items: flex-center;
}
@media screen and (max-width: 767px) {
  .ft_nav_wrap {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .ft_nav_wrap {
    flex-wrap: wrap;
  }
}

.ft_list_nav_wrap p {
  color: #B0974B;
  margin-bottom: 10px;
}
.ft_list_nav_wrap li {
  margin-top: 7px;
  padding-left: 16px;
  position: relative;
}
.ft_list_nav_wrap li:before {
  content: "−";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1281px) {
  .ft_list_nav_wrap + .ft_list_nav_wrap {
    margin-left: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .ft_list_nav_wrap + .ft_list_nav_wrap {
    margin-left: 35px;
  }
}
@media screen and (min-width: 768px) {
  .ft_list_nav_wrap p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .ft_list_nav_wrap p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .ft_list_nav_wrap {
    width: 50%;
  }
  .ft_list_nav_wrap:nth-child(n+3) {
    margin-top: 20px;
  }
}

.ft_list_sns {
  display: flex;
  margin-top: 5px;
}
.ft_list_sns li + li {
  margin-left: 5px;
}
.ft_list_sns a {
  width: 30px;
  height: 30px;
  display: block;
}

.ft_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #B0974B;
  color: #fff;
  width: 130px;
  line-height: 35px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .ft_btn {
    position: relative;
    height: 35px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .ft_bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .ft_bottom {
    font-size: 14px;
    margin-top: 30px;
    padding: 20px 0 0;
  }
  .ft_bottom .copyright {
    margin-top: 5px;
  }
}

.ft_txt_link {
  color: #B0974B;
  font-size: 12px;
}
@media screen and (min-width: 1281px) {
  .ft_txt_link {
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .ft_txt_link {
    right: 20px;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .ft_txt_link {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .ft_txt_link {
    display: block;
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #B0974B;
  }
}

.copyright {
  color: #B0974B;
  text-align: center;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 40px;
  }
}

/* --------------------------------------
LAYOUT
-------------------------------------- */
body {
  background: #fff;
}

.l_page_content {
  position: relative;
}
@media screen and (min-width: 1281px) {
  .l_page_content {
    padding-top: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l_page_content {
    padding-top: 74px;
  }
}
@media screen and (max-width: 767px) {
  .l_page_content {
    padding-top: 48px;
  }
}

.l_flex {
  display: flex;
}

.l_flex_reverse {
  flex-direction: row-reverse;
}

.l_inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner {
    max-width: 1240px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner {
    max-width: 640px;
  }
}

.l_inner_s {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_s {
    max-width: 940px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_s {
    max-width: 640px;
  }
}

.l_inner_ss {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_ss {
    max-width: 840px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_ss {
    max-width: 640px;
  }
}

/* --------------------------------------
TEXT
-------------------------------------- */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.7;
}

.en {
  font-family: "Forum";
}

.txt_flow {
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
  width: 100%;
}
.txt_flow .txt_flow_inner {
  display: flex;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .txt_flow .txt_flow_inner {
    animation: marquee 60s linear infinite;
  }
}
@media screen and (max-width: 767px) {
  .txt_flow .txt_flow_inner {
    animation: marquee 40s linear infinite;
  }
}
.txt_flow span {
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .txt_flow span {
    width: 180vw;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*
 TITLE_PAGE_WRAP
------------------------------ */
.title_page_wrap {
  background: #024023;
  background-size: cover !important;
  color: #fff;
  position: relative;
}
.title_page_wrap .title_page {
  display: block;
  width: 100%;
  font-family: "Outfit-SemiBold";
  text-transform: capitalize;
  line-height: 1.2em;
}
.title_page_wrap .title_page::first-letter {
  color: #B0974B;
}
.title_page_wrap .txt_wrap {
  height: 100%;
  background: url(../img/common/title_bg_01.webp) no-repeat center center;
  background-size: cover;
}
.title_page_wrap .title_page_ja {
  display: block;
  width: 100%;
}
.title_page_wrap .title_page_en {
  color: #dfa800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
}
.title_page_wrap .title_page_en:before {
  content: "";
  background: url(../img/common/title_icon_02.svg) no-repeat left center;
  background-size: contain;
  display: inline-block;
  margin-right: 3px;
}
.title_page_wrap .btn_appraisal {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.title_page_wrap .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1281px) {
  .title_page_wrap .txt_wrap {
    padding-left: calc((100vw - 1200px) / 2);
  }
  .title_page_wrap .title_page {
    font-size: 128px;
  }
  .title_page_wrap .title_page_ja {
    font-size: 40px;
  }
  .title_page_wrap .title_page_en {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_page_wrap .txt_wrap {
    padding-left: 20px;
  }
  .title_page_wrap .title_page {
    font-size: 100px;
  }
  .title_page_wrap .title_page_ja {
    font-size: 30px;
  }
  .title_page_wrap .title_page_en {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .title_page_wrap {
    height: 22.6388888889vw;
    display: flex;
    flex-wrap: wrap;
  }
  .title_page_wrap .txt_wrap {
    width: 40%;
    min-width: 0;
    padding-right: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-self: center;
    align-content: center;
  }
  .title_page_wrap .img {
    width: 60%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
  }
  .title_page_wrap .title_page_ja {
    line-height: 1.35;
  }
  .title_page_wrap .title_page_en:before {
    width: 21px;
    height: 15px;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap {
    align-content: center;
  }
  .title_page_wrap .img {
    aspect-ratio: 2.679 ：1;
  }
  .title_page_wrap .txt_wrap {
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  .title_page_wrap .title_page_ja {
    font-size: 20px;
    text-align: center;
  }
  .title_page_wrap .title_page_en {
    font-size: 14px;
    text-align: center;
  }
  .title_page_wrap .title_page_en:before {
    width: 17px;
    height: 12px;
  }
}

/*
 TITLE_SEC
------------------------------ */
.title_sec_l {
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  color: #024023;
}
@media screen and (min-width: 1281px) {
  .title_sec_l {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .title_sec_l {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .title_sec_l {
    font-size: 20px;
  }
}

/*
 LEAD
------------------------------ */
.lead_sec {
  text-align: center;
  line-height: 2;
  margin-top: 30px;
}

/* --------------------------------------
LINK
-------------------------------------- */
.btn {
  position: relative;
}
.btn .arrow {
  position: relative;
  display: inline-block;
  width: 7.4px;
  height: 13.7px;
  margin-left: 8px;
}
.btn .arrow:before, .btn .arrow:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.btn .arrow:before {
  transform: rotate(45deg);
}
.btn .arrow:after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .btn .arrow .arrow {
    top: 2px;
  }
}

.btn_s.btn_main {
  border: 2px solid #B0974B;
}
.btn_s {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn_s {
    width: 213px;
    line-height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .btn_s {
    width: 200px;
    line-height: 45px;
  }
}

.btn_m.btn_main {
  border: 2px solid #B0974B;
}
.btn_m {
  width: 253px;
  line-height: 56px;
  display: block;
  text-align: center;
}

.btn_l {
  display: block;
  text-align: center;
}
.btn_l.btn_main {
  border: 2px solid #B0974B;
}
@media screen and (min-width: 768px) {
  .btn_l {
    width: 350px;
    line-height: 56px;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .btn_l {
    width: 290px;
    line-height: 45px;
    font-size: 16px;
  }
}

.btn_ll {
  display: block;
  text-align: center;
}
.btn_ll.btn_main {
  border: 2px solid #B0974B;
}
@media screen and (min-width: 1281px) {
  .btn_ll {
    width: 450px;
    line-height: 88px;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .btn_ll {
    width: 350px;
    line-height: 56px;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .btn_ll {
    width: 290px;
    line-height: 45px;
    font-size: 16px;
  }
}

.btn_main {
  background: #024023;
  color: #fff;
  transition: 0.3s;
}
.btn_main:hover {
  background: #B0974B;
  opacity: 0.9;
}

.btn_line {
  border: 1px solid #024023;
  text-align: center;
  width: 230px;
  line-height: 55px;
  border-radius: 28px;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_line {
    line-height: 45px;
  }
}
.btn_line:hover {
  background: #024023;
  color: #fff;
}

.btn_back {
  background: #024023;
  color: #fff;
  width: 276px;
  line-height: 54px;
  border-radius: 27px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_back:before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url(../img/common/btn_icon_01.svg) no-repeat center center;
  background-size: contain;
  margin-right: 7px;
}
@media screen and (min-width: 1281px) {
  .btn_back {
    margin-top: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .btn_back {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .btn_back {
    margin-top: 60px;
  }
}

.btn_round {
  background: #024023;
  color: #fff;
  width: 228px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .btn_round {
    line-height: 55px;
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .btn_round {
    line-height: 44px;
    border-radius: 22px;
  }
}

.btn_cat_list li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.btn_cat_list .btn_cat {
  display: block;
  color: #fff;
  background: #B0974B;
  padding: 0 20px;
}
.btn_cat_list .btn_cat.current {
  background: #024023;
}
@media screen and (min-width: 768px) {
  .btn_cat_list .btn_cat {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .btn_cat_list .btn_cat {
    line-height: 27px;
    font-size: 12px;
    border-radius: 14px;
  }
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 38px;
  margin: 3px 3px 0;
  background: #024023;
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background: #B0974B;
}
@media screen and (min-width: 1281px) {
  .wp-pagenavi {
    margin-top: 70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .wp-pagenavi {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 50px;
  }
}

/* --------------------------------------
LIST
-------------------------------------- */
/*
 LIST_BREADCRUMB
------------------------------ */
.list_breadcrumb {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}
.list_breadcrumb li {
  display: inline-block;
  font-size: 12px;
  color: #024023;
  position: relative;
}
.list_breadcrumb li + li {
  padding-left: 15px;
  margin-left: 2px;
}
.list_breadcrumb li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url(../img/common/link_icon_01.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .list_breadcrumb li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 180px;
  }
}
.list_breadcrumb a {
  color: #024023;
}
@media screen and (min-width: 768px) {
  .list_breadcrumb {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .list_breadcrumb {
    margin-bottom: 40px;
  }
}

/*
 LIST_NEWS
------------------------------ */
.list_news .art_news {
  border-bottom: 1px solid #333;
  position: relative;
}
.list_news .art_news .arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 50%;
}
.list_news .art_news .arrow:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: url(../img/common/btn_arrow_01.svg) no-repeat center center;
  background-size: contain;
  transition: 0.3s;
  z-index: 1;
}
.list_news .art_news .arrow:after {
  content: "";
  border: 2px solid #024023;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  box-sizing: border-box;
  transition: 0.3s;
}
.list_news .art_news a:hover .arrow:before {
  background-image: url(../img/common/btn_arrow_01_white.svg);
}
.list_news .art_news a:hover .arrow:after {
  background: #B0974B;
  border-color: #B0974B;
}
@media screen and (min-width: 768px) {
  .list_news .art_news {
    padding: 20px 0;
  }
  .list_news .art_news a {
    display: flex;
    align-items: center;
  }
  .list_news .art_news .art_info {
    width: 250px;
    justify-content: space-between;
  }
  .list_news .art_news .title {
    width: calc(100% - 220px);
    padding: 0 50px 0 30px;
  }
  .list_news .art_news .arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .list_news .art_news .arrow:after {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list_news .art_news {
    padding: 15px 30px 15px 0;
  }
  .list_news .art_news .title {
    margin-top: 5px;
  }
  .list_news .art_news .arrow {
    width: 24px;
    height: 24px;
  }
  .list_news .art_news .arrow:before {
    width: 12px;
    height: 12px;
  }
  .list_news .art_news .arrow:after {
    width: 24px;
    height: 24px;
    border-radius: 12px;
  }
}

.art_info {
  display: flex;
  align-items: center;
}
.art_info .cat {
  background: #B0974B;
  color: #fff;
  font-size: 14px;
  width: 103px;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 15px;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .art_info .cat {
    font-size: 12px;
    width: 80px;
    line-height: 20px;
    height: 20px;
  }
}

/*
 LIST_BLOG
------------------------------ */
@media screen and (min-width: 768px) {
  .list_blog {
    display: flex;
  }
}

/*
 LIST_GALLERY
------------------------------ */
.list_gallery .art_gallery {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #B0974B;
  overflow: hidden;
}
.list_gallery .art_gallery a {
  padding: 10px 10px 20px;
  display: block;
}
.list_gallery .art_gallery .thumb {
  border-radius: 10px;
  overflow: hidden;
}
.list_gallery .art_gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.list_gallery .art_gallery .thumb.noimage {
  background: #e2decf;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_gallery .art_gallery .thumb.noimage img {
  width: 50%;
  height: auto;
  transition: none;
}
.list_gallery .art_gallery .txt_wrap {
  padding: 20px 10px;
}
.list_gallery .art_gallery .title {
  font-family: "ZenOldMincho-SemiBold";
}
.list_gallery .art_gallery .btn_round {
  margin: auto auto 0;
}
.list_gallery .art_gallery .contents {
  margin-top: 10px;
}
.list_gallery .art_gallery .contents p {
  line-height: 1.6;
}
.list_gallery .art_gallery a:hover .thumb:not(.noimage) img {
  transform: scale(1.08);
}
@media screen and (min-width: 768px) {
  .list_gallery .art_gallery .thumb {
    height: 206px;
  }
}
@media screen and (max-width: 767px) {
  .list_gallery .art_gallery .thumb {
    height: 180px;
  }
}
@media screen and (min-width: 1281px) {
  .list_gallery .art_gallery {
    width: calc((100% - 60px) / 3);
  }
  .list_gallery .art_gallery:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
  .list_gallery .art_gallery:nth-child(n+4) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_gallery .art_gallery {
    width: calc((100% - 20px) / 2);
  }
  .list_gallery .art_gallery:nth-child(even) {
    margin-left: 20px;
  }
  .list_gallery .art_gallery:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .list_gallery {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .list_gallery .art_gallery {
    width: 100%;
  }
  .list_gallery .art_gallery + .art_gallery {
    margin-top: 20px;
  }
}

/*
 LIST_BLOG
------------------------------ */
.list_blog .date {
  color: #333;
}
.list_blog .title {
  color: #333;
}
.list_blog .contents p {
  color: #333;
}
.list_blog .art_blog {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.list_blog .art_blog a {
  padding-bottom: 40px;
  display: block;
}
@media screen and (max-width: 767px) {
  .list_blog .art_blog a {
    padding-bottom: 20px;
  }
}
.list_blog .art_blog .thumb {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.list_blog .art_blog .thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.list_blog .art_blog .thumb.noimage {
  background: #e2decf;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_blog .art_blog .thumb.noimage img {
  width: 50%;
  height: auto;
  transition: none;
}
.list_blog .art_blog .txt_wrap {
  padding: 20px;
  color: #024023;
}
.list_blog .art_blog .contents {
  margin-top: 10px;
}
.list_blog .art_blog .contents p {
  line-height: 1.6;
}
.list_blog .art_blog .title {
  font-family: "ZenOldMincho-SemiBold";
}
.list_blog .art_blog .txt_link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: color 0.3s;
}
.list_blog .art_blog a:hover .thumb:not(.noimage) img {
  transform: scale(1.08);
}
.list_blog .art_blog a:hover .txt_link {
  color: #B0974B;
}
@media screen and (min-width: 768px) {
  .list_blog .art_blog .thumb {
    height: 195px;
  }
  .list_blog .art_blog .date {
    font-size: 15px;
  }
  .list_blog .art_blog .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .list_blog .art_blog .thumb {
    height: 165px;
  }
  .list_blog .art_blog .date {
    font-size: 14px;
  }
  .list_blog .art_blog .title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1281px) {
  .list_blog .art_blog {
    width: calc((100% - 60px) / 3);
  }
  .list_blog .art_blog:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
  .list_blog .art_blog:nth-child(n+4) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .list_blog .art_blog {
    width: calc((100% - 20px) / 2);
  }
  .list_blog .art_blog:nth-child(even) {
    margin-left: 20px;
  }
  .list_blog .art_blog:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .list_blog {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .list_blog .art_blog {
    width: 100%;
  }
  .list_blog .art_blog + .art_blog {
    margin-top: 20px;
  }
}

/*
 LIST_TAXONOMY
------------------------------ */
.list_taxonomy li,
.list_category li {
  font-size: 12px;
  background: #B0974B;
  color: #fff;
  line-height: 23px;
  border-radius: 12px;
  display: inline-block;
  padding: 0 10px;
  margin-left: 10px;
}
.single .list_taxonomy li,
.single .list_category li {
  margin: 0 10px 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .single .list_taxonomy li,
  .single .list_category li {
    font-size: 14px;
    min-width: 141px;
    line-height: 40px;
    border-radius: 20px;
  }
}

/* --------------------------------------
PARTS
-------------------------------------- */
.article .title {
  font-family: "ZenOldMincho-SemiBold";
}
.article .thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  overflow: hidden;
  border-radius: 10px;
  margin: 30px 0;
  object-position: center;
}
.article .thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.article .thumb.noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E2DECF;
}
.article .thumb.noimage img {
  width: 50%;
  height: auto;
}
.article .content > * {
  margin-top: 20px;
}
.article .content h2, .article .content h3, .article .content h4, .article .content h5 {
  margin-top: 30px;
  font-family: "ZenOldMincho-SemiBold";
  line-height: 1.6;
}
.article .content .wp-block-image {
  margin: 30px auto;
  text-align: center;
}
.article .content h2 {
  border-left: 3px solid #B0974B;
  padding: 7px 10px;
  background: #fff;
  padding-left: 10px;
}
.article .content h3 {
  border-bottom: 1px solid #B0974B;
  padding-bottom: 7px;
}
@media screen and (min-width: 1281px) {
  .article .title {
    font-size: 32px;
  }
  .article .content h2 {
    font-size: 24px;
  }
  .article .content h3 {
    font-size: 22px;
  }
  .article .content h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .article .title {
    font-size: 28px;
  }
  .article .content h2 {
    font-size: 22px;
  }
  .article .content h3 {
    font-size: 20px;
  }
  .article .content h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .article .btn_back {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .article .title {
    font-size: 22px;
  }
  .article .content h2 {
    font-size: 18px;
  }
  .article .content h3, .article .content h4 {
    font-size: 16px;
  }
  .article .btn_back {
    margin-top: 50px;
  }
}

.js_fadeup {
  transform: translateY(20px);
  opacity: 0;
}

/* --------------------------------------
PAGE
-------------------------------------- */
/* --------------------------------------
SECTION
-------------------------------------- */
/*--------------------------------------------------------------
# FORM
--------------------------------------------------------------*/
form {
  margin: 0 auto;
}

input[type=submit],
input[type=button],
input[type=reset],
input[type=text],
input[type=email],
input[type=radio],
input[type=checkbox],
input[type=date],
input[type=time],
input[type=tel],
input[type=number],
input[type=password],
input[type=file],
select,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
input[type=reset],
label,
button,
select {
  cursor: pointer;
}

input[type=submit] {
  padding: 0;
}

select::-ms-expand {
  display: none;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=text],
textarea {
  border: 1px solid #024023;
  background: #fff;
  min-height: 52px;
  padding: 10px;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  border: 1px solid #024023;
}
@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    max-width: 100%;
  }
}

textarea {
  width: 100%;
}

::placeholder {
  color: #98A6B5;
}

::-ms-input-placeholder {
  color: #98A6B5;
}

:-ms-input-placeholder {
  color: #98A6B5;
}
