@charset "UTF-8";
.c-zen {
  font-family: "Zen Old Mincho", serif !important;
}

.c-zen-kaku {
  font-family: "Zen Kaku Gothic Antique", serif !important;
}

.c-font-small {
  font-size: 0.75rem !important;
}

.c-font-medium {
  font-size: 0.875rem !important;
}

.c-white {
  color: #F8F5EF !important;
}

.c-gold {
  color: #BB9B5E;
}

.c-bg-gold {
  background-color: #F8F5EF !important;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.85;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  color: #495947;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  body {
    padding-top: 70px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

.is-block {
  display: block;
}

.is-block--sp {
  display: inline;
}

.is-show--pc {
  display: block;
}

.is-show--sp {
  display: none !important;
}

.is-show--tab {
  display: none !important;
}

@media (max-width: 600px) {
  .is-block--sp {
    display: block;
  }
  .is-show--pc {
    display: none;
  }
  .is-show--sp {
    display: block !important;
  }
}
@media (max-width: 600px) {
  #main section {
    padding: 60px 16px;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .is-show--pc {
    display: none;
  }
  #main section:first-of-type {
    padding: 100px 40px;
  }
  #main section:not(:first-of-type) {
    padding: 0 40px 60px;
  }
}
@media (max-width: 1024px) {
  .is-show--tab {
    display: block !important;
  }
}
/*==============================================================
/ アニメーション
/==============================================================*/
/* ロードアニメーション */
.body-wrap {
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  opacity: 0;
  visibility: visible;
  transition: all 1s;
}

/* 各アニメーションの初期状態 */
.fadeIn {
  transform: translateY(0);
}

.fadeInUp {
  transform: translateY(40px);
}

.mv .frame-box {
  opacity: 0;
  transform: translateX(100px);
}

.frame-box-copy {
  opacity: 0;
}

.footer {
  background-color: #EBE1CF;
  padding: 40px 20px 35px;
  font-size: 14px;
  color: #444;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1140px;
  margin: 0 auto 65px;
  flex-wrap: wrap;
}
.footer__info {
  flex: 1;
  min-width: 300px;
}
.footer__logo img {
  max-width: 180px;
  margin-bottom: 19px;
}
.footer__address {
  font-style: normal;
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .footer__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
  }
}
.footer__phone {
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
}
.footer__phone-icon svg .footer__phone-icon-path {
  fill: #EE7201;
  margin-right: 5px;
}
.footer__nav-list {
  display: flex;
  gap: 40px;
}
@media (max-width: 600px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 0;
  }
}
.footer__nav-item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
}
@media (max-width: 600px) {
  .footer__nav-item {
    margin-bottom: 10px;
  }
}
.footer__nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background-color: #EE7201;
  transform: translateY(-50%);
}
.footer__nav-item a {
  text-decoration: none;
  transition: color 0.3s;
}
.footer__nav-item a:hover {
  color: #EE7201;
}
.footer__bottom {
  border-top: 1px solid #C9CDC8;
  padding-top: 30px;
  text-align: center;
}
.footer__bottom__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  margin-inline: auto;
}
@media (max-width: 600px) {
  .footer__bottom__inner {
    flex-direction: column;
  }
}
.footer__links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer__links li a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s;
}
.footer__links li a:hover {
  color: #EE7201;
}
.footer__copyright {
  font-size: 12px;
  line-height: 1;
  color: #777;
}
@media (max-width: 600px) {
  .footer__copyright {
    margin-top: 20px;
  }
}

/*==============================================================
/ ボトムナビ
/==============================================================*/
#bottomNav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 8;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform: translateY(100%);
  opacity: 0;
}
#bottomNav.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100%;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .bottom-nav {
    display: none;
  }
}
.bottom-nav > div {
  flex-grow: 1;
}
.bottom-nav .nav__contact-info-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}
.bottom-nav .nav__contact-info {
  flex-direction: column;
  align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.bottom-nav .nav__contact-info .nav__phone-number {
  font-size: 22px;
}
.bottom-nav .nav__contact-info .nav__phone-number::before {
  display: none;
}
.bottom-nav .nav__contact-info .nav__business-hours {
  font-size: 10px;
}
.bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 9px;
  font-weight: bold;
  background-color: #EE7201;
  color: #fff;
  line-height: 1;
  font-size: 9px;
  width: 100px;
}

/*==============================================================
/ ヘッダー
/==============================================================*/
.header {
  padding: 25px 40px;
  background: #fff;
  height: 120px;
  position: relative;
}
@media (max-width: 1024px) {
  .header {
    padding: 10px 15px;
    height: 70px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.header__logo {
  flex-grow: 1;
  text-align: left;
}
.header__logo img {
  width: auto;
  height: 70px;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .header__logo img {
    height: 50px;
  }
}
@media (max-width: 600px) {
  .header__logo img {
    height: 50px;
  }
}
.header__nav-wrapper .header__info-wrapper {
  display: flex;
  gap: 1.8055555556vw;
  align-items: center;
}

.nav__contact-info {
  display: flex;
  align-items: center;
  color: #495947;
}
.nav__contact-info .nav__phone-number {
  font-size: clamp(20px, 1.8055555556vw, 28px);
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #495947;
  line-height: 1;
}
.nav__contact-info .nav__phone-number::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  width: 23.41px;
  height: 26.41px;
  margin-right: 0.4166666667vw;
  background: url(../images/common/icon/ico-phone.svg) no-repeat center center;
}
.nav__contact-info .nav__business-hours {
  margin-left: 1.1111111111vw;
  font-size: clamp(12px, 0.9722222222vw, 16px);
  line-height: 1;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .nav__contact-info .nav__business-hours {
    margin-left: 5px;
  }
}
.nav__contact-info .nav__business-hours .s-number {
  font-family: "Inter", serif;
  font-weight: 500;
  line-height: 1;
}

.header__nav {
  width: 100%;
  max-width: 83.3333333333vw;
  padding: 16px 0 0;
  z-index: 10;
}

/*==============================================================
/ ヘッダーナビ
/==============================================================*/
.nav__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.nav__item {
  font-size: 16px;
  line-height: 1;
  color: #495947;
}
.nav__item a {
  text-decoration: none;
  color: inherit;
}
.nav__item a:hover {
  opacity: 0.8;
}
.nav__item:hover a {
  border-bottom: 4px solid #EE7201;
  padding-bottom: 15px;
}
.nav__item--dropdown:hover .nav__submenu {
  display: flex;
}
.nav__item--dropdown:hover .nav__submenu,
.nav__item--dropdown .nav__submenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*ドロップダウンメニュー*/
.nav__submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #ECECEC;
  width: 100vw;
  z-index: 10;
  padding: 44px 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.nav__submenu-title {
  display: flex;
  justify-content: space-between;
  gap: 4.1666666667vw;
  margin-inline: auto;
}
.nav__submenu li {
  padding: 0.5555555556vw 0.8333333333vw;
  white-space: nowrap;
  position: relative;
}
.nav__submenu li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #EE7201;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.nav__submenu a {
  color: #495947;
  font-size: 1rem;
  border: none !important;
  padding-left: 1.1111111111vw;
}

/*==============================================================
/ モバイルナビ
/==============================================================*/
@media (max-width: 1024px) {
  .header {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
  }
  .header__hamburger-inner {
    background: #EE7201;
    border: none;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
  }
  .header__hamburger-inner span {
    display: block;
    width: 27px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
  }
  .header__hamburger-inner .header__hamburger-text {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
  }
  .header__hamburger-inner.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header__hamburger-inner.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger-inner.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@media (max-width: 1024px) {
  .header__mobile-nav-wrapper .m-button {
    max-width: 136px;
    max-height: 40px;
    margin: 25px auto 25px 40px;
  }
  .header__mobile-nav-wrapper .header__mobile-nav {
    position: fixed;
    z-index: -1;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  .header__mobile-nav-wrapper .header__mobile-nav.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
  }
  .header__mobile-nav-wrapper .mobile-nav__list {
    list-style: none;
    margin: 0;
  }
  .header__mobile-nav-wrapper .mobile-nav__item {
    font-size: 16px;
    border-bottom: 1px solid #C9CDC8;
  }
  .header__mobile-nav-wrapper .mobile-nav__item a {
    text-decoration: none;
    color: #495947;
    transition: color 0.3s;
    display: block;
    line-height: 4;
    margin-left: 40px;
  }
  .header__mobile-nav-wrapper .mobile-nav__item a span {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    min-width: 178px;
    text-align: left;
  }
  .header__mobile-nav-wrapper .mobile-nav__item a span::before {
    content: "";
    width: 12px;
    height: 2px;
    background-color: #EE7201;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__mobile-nav-wrapper .mobile-nav__item a:hover {
    color: #d47233;
  }
  .mobile-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 9;
  }
  .mobile-nav__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}
/*submenu*/
@media (max-width: 1024px) {
  .mobile-nav__item--dropdown {
    position: relative;
  }
  .mobile-nav__item--dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
    cursor: pointer;
  }
  .mobile-nav__item--dropdown::after {
    content: "▼";
    font-size: 12px;
    color: #EE7201;
    position: absolute;
    right: 43px;
    top: 22px;
    transition: transform 0.3s ease-in-out;
  }
  .mobile-nav__item--dropdown.is-active::after {
    transform: rotate(180deg);
  }
  .mobile-nav__submenu {
    background-color: #ECECEC;
    list-style: none;
    padding-left: 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  .mobile-nav__submenu .mobile-submenu__item > a {
    line-height: 2;
  }
  .mobile-nav__submenu .mobile-submenu__item > a span {
    position: relative;
    display: inline-block;
  }
  .mobile-nav__submenu .mobile-submenu__item > a span::before {
    content: "";
    width: 6px;
    height: 2px;
    background-color: #BB9B5E;
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-nav__submenu.is-active {
    max-height: 500px;
    padding: 26px 0;
  }
}
/*==============================================================
/ MVセクション
/==============================================================*/
.mv {
  position: relative;
  width: 100%;
  height: 760px;
}
@media (max-width: 600px) {
  .mv {
    margin-bottom: 70px;
    height: 580px;
  }
}
.mv__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv__slide {
  position: absolute;
  width: 100%;
  max-width: 87.5vw;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 600px) {
  .mv__slide {
    max-width: 92vw;
  }
}
.mv__slide:nth-child(2) {
  position: absolute;
  width: 100%;
  max-width: 87.5vw;
  height: 100%;
  background-size: cover;
  background-position: 45% 30%;
}
@media (max-width: 600px) {
  .mv__slide:nth-child(2) {
    max-width: 92vw;
  }
}
.mv .frame-box {
  position: absolute;
  bottom: 4.8611111111vw;
  right: 9.0277777778vw;
}
@media (max-width: 600px) {
  .mv .frame-box {
    max-width: 92vw;
    width: 100%;
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
  }
}
.mv .frame-box-inner {
  padding: 48px 62px;
}
@media (max-width: 600px) {
  .mv .frame-box-inner {
    padding: 19px 32px;
  }
}
.mv .frame-box .mv__title {
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.25rem;
  font-size: clamp(24px, 3.2vw, 46px);
  font-weight: 700;
  color: #495947;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .mv .frame-box .mv__title {
    letter-spacing: 0.1em;
  }
}
.mv .frame-box .mv__title .highlight {
  color: #BB9B5E;
}
.mv .frame-box .mv__subtitle {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  color: #495947;
  margin-top: 2.0833333333vw;
}
.mv .frame-box img.mv__name {
  margin-top: 1.1111111111vw;
}
@media (max-width: 600px) {
  .mv .frame-box img.mv__name {
    width: clamp(100px, 44.8vw, 268px);
  }
}
.mv__indicator {
  position: absolute;
  right: 2.7777777778vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 600px) {
  .mv__indicator {
    gap: 5px;
  }
}
.mv__indicator .mv__dot {
  width: 10px;
  height: 10px;
  background: #ECECEC;
  border-radius: 50%;
  transition: background 0.3s;
}
.mv__indicator .mv__dot.active {
  background: #B98532;
}
@media (max-width: 600px) {
  .mv__indicator .mv__dot {
    width: 5px;
    height: 5px;
  }
}

.mv::after {
  content: "";
  width: 29.1666666667vw;
  height: 1200px;
  display: block;
  background: #F8F5EF;
  position: absolute;
  top: 12.5vw;
  right: 0;
  z-index: -1;
}
@media (max-width: 600px) {
  .mv::after {
    height: 1240px;
    top: 0;
  }
}

.l-main__wrap {
  margin-bottom: 7.5rem;
}
@media (max-width: 600px) {
  .l-main__wrap {
    margin-bottom: 4rem;
  }
}
.l-main__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .l-main__inner {
    padding: 0 15px;
  }
}

.sitemap__title {
  font-size: clamp(1.125rem, 1rem + 0.36vw, 1.625rem);
  padding: 0 0.5em;
  margin: 0.5em 0;
  border-left: solid 5px rgba(238, 114, 1, 0.5);
}
.sitemap__wrap {
  display: grid;
}
.sitemap__link {
  padding: 10px 30px;
  display: inline-block;
  cursor: pointer;
}
.sitemap__link:hover {
  opacity: 0.5;
}
.sitemap__link a {
  position: relative;
}
.sitemap__link a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(238, 114, 1, 0.5);
  width: 10px;
  height: 2px;
  top: 50%;
  left: -15px;
}

#roudo-roudosha,
#roudo-kigyou,
#koutsu,
#kigyou-houmu,
#jiken,
#hasan,
#rikon,
#price,
#price-list,
#price-flow {
  margin-top: -60px;
  padding-top: 60px;
}
@media (max-width: 1024px) {
  #roudo-roudosha,
  #roudo-kigyou,
  #koutsu,
  #kigyou-houmu,
  #jiken,
  #hasan,
  #rikon,
  #price,
  #price-list,
  #price-flow {
    margin-top: -90px;
    padding-top: 90px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.breadcrumbs {
  padding: 1.25rem 0 5.25rem;
}
@media (max-width: 600px) {
  .breadcrumbs {
    padding: 1.25rem 0 4rem;
  }
}
.breadcrumbs__wrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.breadcrumbs__arrow {
  position: relative;
}
.breadcrumbs__arrow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background: url("../images/common/icon/bread-arrow.svg") no-repeat;
  background-size: contain;
  width: 4.71px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: -3px;
}
.breadcrumbs span.post.post-post.current-item {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.m-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  font-weight: 500;
  border: 2px solid #EE7201;
  color: #EE7201;
  white-space: nowrap;
  height: 60px;
  width: 260px;
  transition: 0.3s ease;
}

.m-button--orange {
  background-color: #EE7201;
  color: #fff;
}
.m-button--orange:hover {
  background-color: #F8F5EF;
  color: #EE7201;
}

.header__buttons {
  display: flex;
  gap: 0.6944444444vw;
}
.header__buttons a {
  max-height: 40px;
  max-width: 184px;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .header__buttons a {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.header__buttons .header__blog-btn {
  max-width: 136px;
}
.header__buttons .header__blog-btn:hover {
  background-color: #495947;
  border-color: #495947;
  color: #fff;
}

.m-button--arrow {
  position: relative;
}
.m-button--arrow span {
  position: relative;
}
.m-button--arrow span::before {
  content: "";
  display: inline-block;
  width: 9.24px;
  height: 8px;
  background-color: #fff;
  mask-image: url("../images/common/icon/arrow-right.svg");
  -webkit-mask-image: url("../images/common/icon/arrow-right.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}
.m-button--arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.3s ease, right 0.3s ease;
}
.m-button--arrow:hover > span::before {
  background-color: #EE7201;
}
.m-button--arrow:hover::after {
  background-color: #EE7201;
  width: 40px;
  right: -20px;
}

.m-button--arrow-service {
  position: relative;
}
.m-button--arrow-service span {
  position: relative;
}
.m-button--arrow-service span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  mask-image: url("../images/service/icon-service-03.svg");
  -webkit-mask-image: url("../images/service/icon-service-03.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}
.m-button--arrow-service::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.3s ease, right 0.3s ease;
}
.m-button--arrow-service:hover > span::before {
  background-color: #EE7201;
}
.m-button--arrow-service:hover::after {
  background-color: #EE7201;
  width: 40px;
  right: -20px;
}

.title-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 0.3472222222vw;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .title-underline {
    text-align: center;
  }
}
.title-underline::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #EE7201;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 600px) {
  .title-underline::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.title-underline--center {
  text-align: center;
  width: 100%;
}
.title-underline--center::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #EE7201;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.title-underline--center-white {
  text-align: center;
  width: 100%;
}
.title-underline--center-white::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.h2-en {
  font-size: 16px;
  color: #EE7201;
  font-weight: bold;
  font-family: "Shippori Mincho";
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}

.h2-en-big {
  font-size: 26px;
  color: #EE7201;
  font-weight: bold;
  font-family: "Shippori Mincho";
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 30px;
}

.h2-ja {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 900;
  font-size: 26px;
  line-height: 100%;
  color: #495947;
  margin-bottom: 30px;
}

.frame-box {
  background: #fff;
  padding: 30px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.frame-box-inner {
  position: relative;
  width: calc(100% + 80px);
  height: calc(100% + 60px);
  margin: -30px -40px;
  padding: 30px 40px;
}
.frame-box-inner::before, .frame-box-inner::after {
  position: absolute;
  width: 30px;
  height: 30px;
  content: "";
}
.frame-box-inner::before {
  border-left: solid 5.5px #EE7201;
  border-top: solid 5.5px #EE7201;
  top: 0;
  left: 0;
}
.frame-box-inner::after {
  border-right: solid 5.5px #EE7201;
  border-bottom: solid 5.5px #EE7201;
  bottom: 0;
  right: 0;
}

h2.wp-block-heading {
  font-size: 22px;
  padding: 0.25em 0.5em;
  margin: 0.5em 0;
  border-bottom: 1px solid rgba(73, 89, 71, 0.3);
  border-left: solid 5px rgba(238, 114, 1, 0.5);
}

h3.wp-block-heading {
  font-size: 18px;
  padding: 0 0.5em;
  margin: 0.5em 0;
  border-left: solid 5px rgba(238, 114, 1, 0.5);
}

h4.wp-block-heading, h5.wp-block-heading {
  font-size: 1rem;
  padding: 0 0.5em;
  margin: 0.5em 0;
  border-left: solid 5px rgba(238, 114, 1, 0.5);
}

.wp-block-columns {
  margin: 0.5em 0;
}

ol.wp-block-list {
  list-style: auto;
  margin-left: 1rem;
}

ul.wp-block-list {
  list-style: disc;
  margin-left: 1rem;
}

.page-error h3 {
  font-size: clamp(1.625rem, 1.444rem + 0.56vw, 2.5rem);
}
.page-error p {
  font-size: clamp(1.125rem, 1rem + 0.36vw, 1.625rem);
}

.p-blog__pagenavi {
  padding: 50px 0;
}

nav.navigation.pagination {
  display: flex;
  justify-content: center;
  font-family: "Zen Old Mincho", serif !important;
}

.current {
  background-color: #EE7201;
  padding: 12px 20px;
  color: #fff;
  border-radius: 50%;
}

a.page-numbers {
  background-color: #fff;
  border: 1px solid #EE7201;
  padding: 12px 20px;
  color: #EE7201;
  border-radius: 50%;
}

a.next {
  background-color: unset;
  border: none;
  vertical-align: bottom;
}
a.next img {
  transform: scale(-1, 1);
}

.prev {
  background-color: unset;
  border: unset !important;
  vertical-align: bottom;
}
.prev img {
  transform: unset;
}

/*==============================================================
/ バナーナビゲーション
/==============================================================*/
.nav-banners-section {
  padding: clamp(5px, 10vw, 100px) 0 clamp(64px, 10vw, 100px);
  max-width: 822px;
  margin-inline: auto;
}
@media (max-width: 600px) {
  .nav-banners-section {
    padding-top: 0 !important;
  }
}

.nav-banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
  /* 2列レイアウト（レスポンシブ） */
}
@media (max-width: 1024px) {
  .nav-banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nav-banners__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 258/100;
  isolation: isolate;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  /* 画像を全面フィット */
  /* 黒オーバレイ（通常25% / hover 75%） */
  /* テキストラベル（中央） */
}
.nav-banners__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.nav-banners__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background-color 0.25s ease;
  z-index: 1;
}
.nav-banners__item:hover::before, .nav-banners__item:focus-visible::before {
  background: rgba(0, 0, 0, 0.75);
}
.nav-banners__item .nav-banners__label {
  position: absolute;
  inset: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-family: "Zen kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  padding: 0 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.nav-banners__item .nav-banners__label::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: url("../images/common/ui/ex-link.svg") no-repeat center/contain;
}
.nav-banners__item:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/*==============================================================
/ ご挨拶セクション
/==============================================================*/
.greeting-section {
  max-width: 1140px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: clamp(10px, 5.55vw, 42px) 4.1666666667vw clamp(60px, 8.3333333333vw, 120px);
  flex-wrap: wrap;
}
@media screen and (min-width: 1600px) {
  .greeting-section {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media (max-width: 600px) {
  .greeting-section {
    padding-block: 0 !important;
  }
}
.greeting-section .greeting-text {
  flex: 1;
  flex-grow: 1;
}
@media (max-width: 600px) {
  .greeting-section .greeting-text {
    max-width: 100%;
    text-align: center;
  }
  .greeting-section .greeting-text a.m-button {
    margin-inline: auto;
  }
}
.greeting-section .greeting-text p {
  font-size: clamp(20px, 1.8055555556vw, 26px);
  line-height: 1.5;
  margin-bottom: clamp(30px, 2.9861111111vw, 46px);
}
.greeting-section .greeting-image {
  max-width: 37.5vw;
}
@media (max-width: 600px) {
  .greeting-section .greeting-image {
    max-width: 270px;
    margin-inline: auto;
  }
}
.greeting-section .greeting-image img {
  width: 100%;
}

/*==============================================================
/ お約束セクション
/==============================================================*/
.promise-section {
  max-width: 1140px;
  margin-inline: auto;
  padding: 0 0 clamp(60px, 8.3333333333vw, 120px);
  box-sizing: border-box;
}
.promise-section h2 {
  text-align: center;
}
.promise-section p {
  text-align: center;
  margin-bottom: 40px;
}
.promise-section .promise-items {
  display: flex;
  justify-content: center;
  gap: 2.0833333333vw;
  margin-top: 70px;
}
@media (max-width: 600px) {
  .promise-section .promise-items {
    flex-direction: column;
    gap: 50px;
  }
}
.promise-section .promise-items .promise-item {
  flex: 1;
  max-width: 340px;
  background: #F8F5EF;
  padding: 76px 0 0;
  text-align: center;
  position: relative;
}
@media (max-width: 600px) {
  .promise-section .promise-items .promise-item {
    max-width: 100%;
    width: 100%;
  }
}
.promise-section .promise-items .promise-item .number {
  font-size: 26px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: #EE7201;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0.6944444444vw;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.promise-section .promise-items .promise-item .number::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #EE7201;
  position: absolute;
  right: 50%;
  top: 70px;
  transform: translateX(-50%);
}
.promise-section .promise-items .promise-item h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .promise-section .promise-items .promise-item h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (min-width: 600px) {
  .promise-section .promise-items .promise-item h3 {
    font-size: 16px !important;
  }
}
.promise-section .promise-items .promise-item .eng {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 30px;
  font-style: normal;
  line-height: 1;
  color: rgba(238, 114, 1, 0.5);
}

/*==============================================================
/ 取扱業務セクション
/==============================================================*/
.txt-logo--wrapper {
  overflow-x: hidden;
}

img.txt-logo {
  width: 80vw;
}
@media (min-width: 601px) and (max-width: 1024px) {
  img.txt-logo {
    width: 100vw;
  }
}
@media (max-width: 600px) {
  img.txt-logo {
    margin: 0 auto;
    display: block;
    width: 90vw;
  }
}

.service-section {
  background-image: url(../images/common/ui/service-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 73px 0;
  margin-bottom: 120px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .service-section {
    margin-bottom: 80px;
    padding: 60px 40px !important;
  }
}
.service-section::before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-image: url(../images/common/ui/corner.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .service-section::before {
    bottom: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
}
.service-section__container {
  max-width: 880px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 70px;
}
@media (max-width: 600px) {
  .service-section__container {
    padding: 40px 30px;
  }
}
.service-section .title-underline {
  margin-bottom: 30px;
}
.service-section__list {
  background-color: #F8F5EF;
  padding: 42px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 50px;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .service-section__list {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
}
@media (max-width: 1024px) {
  .service-section__list {
    padding: 30px 47.5px;
    margin-bottom: 40px;
  }
}
.service-section__item {
  font-size: 20px;
  white-space: nowrap;
  display: block;
  text-align: left;
}
@media (min-width: 601px) and (max-width: 1024px) {
  .service-section__item {
    text-align: center;
  }
}
.service-section__item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon/ico-check.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.service-section__small-text {
  display: block;
  font-size: 15px;
}
.service-section .m-button {
  margin-inline: auto;
}

/*==============================================================
/  契約までの流れセクション
/==============================================================*/
.contract-flow {
  padding: 80px;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .contract-flow::after {
    content: "";
    width: 29.1666666667vw;
    height: 780px;
    display: block;
    background: #F8F5EF;
    position: absolute;
    right: 0;
    z-index: -1;
  }
}
@media (max-width: 600px) {
  .contract-flow::after {
    top: -150px;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .contract-flow::after {
    top: -240px;
  }
}
.contract-flow__container {
  max-width: 1200px;
  width: 100%;
}
.contract-flow .frame-box {
  max-width: 510px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .contract-flow .frame-box {
    margin: 0 auto;
  }
}
.contract-flow .frame-box-inner {
  padding: 80px 55px;
}
@media (max-width: 1024px) {
  .contract-flow .frame-box-inner {
    padding: 40px 29px;
  }
}
.contract-flow .frame-box-inner p {
  line-height: 1.5;
}
.contract-flow .title-underline {
  margin-bottom: 30px;
}
.contract-flow__image {
  text-align: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .contract-flow__image {
    display: none;
  }
}
.contract-flow__image img {
  max-width: 100%;
  margin-left: 180px;
  max-height: 480px;
}
.contract-flow__image .m-button {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

/*max768*/
@media screen and (max-width: 1024px) {
  .contract-flow {
    background-image: url(../images/common/ui/contract-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    padding: 80px 23px !important;
    margin-bottom: 80px;
  }
  .contract-flow .contract-flow__image {
    display: none;
  }
  .contract-flow .is-show--sp {
    display: block !important;
  }
  .contract-flow .m-button {
    margin-inline: auto;
    margin-top: 40px;
  }
}

/*==============================================================
/ ブログセクション
/==============================================================*/
.blog-section {
  display: flex;
  padding: 40px;
  max-width: 1140px;
  margin-inline: auto;
  margin-bottom: 120px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .blog-section {
    margin-bottom: 40px;
  }
}
.blog-section .blog-header {
  width: 30%;
  padding-right: 20px;
}
@media screen and (max-width: 820px) {
  .blog-section .blog-header {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }
}
.blog-section .blog-header .title-underline {
  margin-bottom: 30px;
}
.blog-section .blog-header .blog-link {
  font-size: 16px;
  display: inline-block;
  color: #EE7201;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  margin-bottom: 4px;
  transition: 0.3s ease;
}
.blog-section .blog-header .blog-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #EE7201;
  transition: width 0.3s ease, left 0.3s ease;
}
.blog-section .blog-header .blog-link:hover::after {
  width: 100%;
  left: 0;
}
.blog-section .blog-header .blog-link:hover {
  background-color: #F8F5EF;
}
.blog-section .blog-list {
  flex-grow: 1;
}
.blog-section .blog-list .blog-item {
  border-top: 1px solid #C9CDC8;
  padding: 30px 0;
}
.blog-section .blog-list .blog-item:last-child {
  border-bottom: 1px solid #C9CDC8;
}
.blog-section .blog-list .blog-item .blog-date {
  font-family: "Inter", serif;
  font-weight: 400;
  font-size: 15px;
  color: #6E7A6C;
  margin-right: 10px;
}
.blog-section .blog-list .blog-item .blog-category {
  font-size: 15px;
  background-color: #BB9B5E;
  color: #FFF;
  padding: 4px 8px 6px;
  line-height: 1;
  max-height: 25px;
  display: inline-block;
}
.blog-section .blog-list .blog-item a.blog-title {
  font-size: 16px;
  margin-top: 5px;
  display: block;
}
.blog-section .blog-list .blog-item a.blog-title:hover {
  opacity: 0.8;
}

main {
  position: relative;
}

main::after {
  content: "";
  width: 29.1666666667vw;
  height: 1500px;
  display: block;
  background: #F8F5EF;
  position: absolute;
  bottom: -120px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  main::after {
    display: none;
  }
}

.c-en {
  color: #EE7201;
  font-weight: bold;
  font-family: "Shippori Mincho";
  font-weight: 700;
  line-height: 100%;
}

.c-ja {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  color: #495947;
}

.p-headding {
  padding-top: 6.875rem;
  padding-bottom: 6.875rem;
  background-image: url("../images/common/ui/ttl-headding-01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .p-headding {
    background-position: center;
  }
}
@media (max-width: 600px) {
  .p-headding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-headding__wrap {
  border-bottom: 1px solid #C9CDC8;
  padding-bottom: clamp(26px, 1.8055555556vw, 40px);
}
.p-headding h1 {
  font-size: clamp(1.625rem, 1.444rem + 0.56vw, 2.5rem);
  align-items: center;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
}

.about-greeting {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 220px;
}
.about-greeting::after {
  content: "";
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60vw;
  background-image: url("../images/about/img-about-01.jpg");
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 600px) {
  .about-greeting::after {
    width: 100vw;
    background-position: center;
  }
}
.about-greeting__wrap {
  padding: 5rem;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .about-greeting__wrap {
    padding: 2.5rem 1.25rem;
  }
}
.about-greeting__wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/icon-about-01.svg");
  width: 60px;
  height: 60px;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .about-greeting__wrap::before {
    width: 30px;
    height: 30px;
  }
}
.about-greeting__wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/icon-about-02.svg");
  width: 60px;
  height: 60px;
  bottom: 0;
  right: 0;
}
@media (max-width: 600px) {
  .about-greeting__wrap::after {
    width: 30px;
    height: 30px;
  }
}
.about-greeting__wrap .title-underline {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .about-greeting__wrap .title-underline {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about-greeting__sub {
  font-size: clamp(1.125rem, 1rem + 0.36vw, 1.625rem);
  color: #BB9B5E;
  padding-bottom: 30px;
  line-height: 1.5;
}
.about-greeting__txt p {
  padding-bottom: 30px;
}
.about-greeting__txt p:last-child {
  padding-bottom: 60px;
}
.about-greeting__name img {
  width: clamp(200px, 20vw, 294px);
}

.about-promise {
  position: relative;
  z-index: -3;
  background-color: #F8F5EF;
  padding-bottom: 120px;
}
@media (max-width: 600px) {
  .about-promise {
    padding-bottom: 0;
  }
}
.about-promise__wrap {
  position: relative;
  top: -100px;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.about-promise__wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 54vh;
  background: rgba(73, 89, 71, 0.8);
}
@media (max-width: 1024px) {
  .about-promise__wrap:before {
    height: 70vh;
  }
}
.about-promise__wrap:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-about-02.jpg");
  width: 100%;
  height: 54vh;
  top: 0;
  left: 0;
  z-index: -2;
}
@media (max-width: 1024px) {
  .about-promise__wrap:after {
    height: 70vh;
    background-position: center;
  }
}
.about-promise__title {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .about-promise__title {
    margin-bottom: 5rem;
  }
}
.about-promise__title p {
  padding-top: 2.5rem;
  font-size: 1rem;
}
.about-promise__content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 1024px) {
  .about-promise__content {
    gap: 5rem;
  }
}
@media (max-width: 600px) {
  .about-promise__content {
    width: 100%;
  }
}
.about-promise__box {
  position: relative;
  display: flex;
  background-color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-right: 1.875rem;
  padding-left: 5rem;
}
@media (max-width: 1024px) {
  .about-promise__box {
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 2.5rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .about-promise__box {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.about-promise__numb {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EE7201;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.625rem;
}
@media (max-width: 1024px) {
  .about-promise__numb {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-promise__numb::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  width: 20px;
  height: 1px;
  background-color: #EE7201;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .about-promise__numb::after {
    width: 1px;
    height: 20px;
    background-color: #EE7201;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-promise__txt {
  font-size: 1.625rem;
}
.about-promise__txt span {
  opacity: 0.5;
  font-size: 1.125rem;
  padding-left: 20px;
}
@media (max-width: 600px) {
  .about-promise__txt {
    text-align: center;
    font-size: 1.375rem;
  }
  .about-promise__txt span {
    font-size: 0.8rem;
    padding-left: unset;
  }
}
.about-promise__txt-en {
  margin-left: auto;
  font-size: 1.875rem;
  color: #EE7201;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .about-promise__txt-en {
    margin-left: unset;
  }
}

.lawyer-greeting {
  position: relative;
}
.lawyer-greeting::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #BB9B5E;
  opacity: 0.1;
  z-index: -1;
  width: 30vw;
  top: 0;
  left: 0;
}
@media (max-width: 600px) {
  .lawyer-greeting::before {
    left: unset;
    right: 0;
  }
}
.lawyer-greeting__wrap {
  padding: 7.5rem 0;
}
.lawyer-greeting__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .lawyer-greeting__content {
    gap: unset;
    justify-content: space-evenly;
  }
}
@media (max-width: 600px) {
  .lawyer-greeting__content {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.lawyer-greeting__box01 img {
  max-width: 540px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .lawyer-greeting__box01 img {
    max-width: 340px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (max-width: 600px) {
  .lawyer-greeting__box01 img {
    padding: 0 1.25rem;
  }
}
.lawyer-greeting__box02 {
  position: relative;
  padding: 0 1.25rem;
}
.lawyer-greeting__box02::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/lawyer/icon-lawyer-01.svg");
  background-size: contain;
  top: -50px;
  left: 0;
}
.lawyer-greeting__name {
  font-size: 1.75rem;
  line-height: 1.3;
  padding-bottom: 2.5rem;
}
.lawyer-greeting__name span {
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .lawyer-greeting__name {
    padding-bottom: 1.25rem;
  }
}
.lawyer-greeting__born {
  padding-bottom: 1.25rem;
}
.lawyer-greeting__ex {
  background-color: #ECECEC;
  padding: 1.875rem 2.1875rem;
}
.lawyer-greeting__ex-row {
  display: flex;
}
@media (max-width: 600px) {
  .lawyer-greeting__ex-row {
    flex-direction: column;
    padding-bottom: 0.75rem;
  }
}
.lawyer-greeting__year {
  width: 100%;
  max-width: 120px;
}

.lawyer-personality {
  background-color: #ECECEC;
  z-index: -1;
  position: relative;
}
.lawyer-personality__headding {
  display: flex;
  position: relative;
  z-index: -1;
  margin-bottom: -3.75rem;
  width: 100%;
  height: 100%;
  padding: 6.875rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/lawyer/lawyer-personality.svg");
}
.lawyer-personality__wrap {
  padding-bottom: 7.5rem;
}
.lawyer-personality__content {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
}
@media (max-width: 1024px) {
  .lawyer-personality__content {
    max-width: unset;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .lawyer-personality__content {
    width: 100%;
  }
}
.lawyer-personality__box {
  background-color: #fff;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 10fr;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .lawyer-personality__box {
    gap: 20px;
  }
}
.lawyer-personality__icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background-color: #EE7201;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.lawyer-personality__icon::after {
  content: "";
  border: 1px solid;
  width: 20px;
  position: absolute;
  right: -38px;
  color: #EE7201;
}
@media (max-width: 1024px) {
  .lawyer-personality__icon::after {
    content: unset;
  }
}
.lawyer-personality__txt h4 {
  font-size: 20px;
  padding-bottom: 0.75rem;
}

.service-nav {
  padding-bottom: 5.25rem;
}
.service-nav .service-nav__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
}
.service-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .service-nav ul {
    gap: 10px;
  }
}
.service-nav li {
  display: inline-block;
  position: relative;
  max-width: 260px;
  width: 100%;
  border-radius: 50px;
  border: 1px solid rgba(73, 89, 71, 0.3);
  text-align: center;
  cursor: pointer;
  padding: 19px 0;
}
@media (max-width: 600px) {
  .service-nav li {
    max-width: unset;
  }
}
.service-nav li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 9px;
  height: 8px;
  background-image: url("../images/service/service-polygon.svg");
}
.service-nav li:hover {
  opacity: 0.5;
}
.service-nav a {
  display: inline;
  font-size: 1.125rem;
  text-decoration: none;
  color: inherit;
}
.service-nav__txt {
  text-align: center;
  font-size: 1rem;
}

.service-page__container {
  position: relative;
  padding-bottom: 7.5rem;
}
@media (max-width: 1024px) {
  .service-page__container {
    padding: 7.5rem 0;
  }
}
@media (max-width: 600px) {
  .service-page__container {
    padding: 4rem 0;
  }
}
.service-page__container::after {
  background: rgba(187, 155, 94, 0.1);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .service-page__container::after {
    top: 0;
  }
}
.service-page__container:nth-child(2n) {
  position: relative;
  padding: 7.5rem 0;
}
@media (max-width: 600px) {
  .service-page__container:nth-child(2n) {
    padding: 4rem 0;
  }
}
.service-page__container:nth-child(2n)::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 600px) {
  .service-page__container:nth-child(2n) .service-page__content {
    flex-direction: column-reverse;
  }
}
.service-page__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 30px;
  padding-bottom: 60px;
}
@media (max-width: 600px) {
  .service-page__content {
    flex-direction: column;
    align-items: center;
    display: flex;
  }
}
.service-page__box01 .title-underline {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .service-page__box01 .title-underline {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .service-page__box01 .title-underline span {
    font-size: 0.8rem;
  }
}
.service-page__box02 {
  position: relative;
}
.service-page__box02::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/service/icon-service-01.svg");
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}
.service-page__box02::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/service/icon-service-02.svg");
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
}
.service-page__point {
  display: flex;
  gap: 60px;
  background-color: #fff;
  padding: 3.75rem;
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .service-page__point {
    flex-direction: column;
    gap: 30px;
    padding: 2rem;
  }
}
.service-page__point-left {
  font-size: 26px;
  color: rgba(73, 89, 71, 0.5);
  position: relative;
}
.service-page__point-left::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  width: 1px;
  height: 100%;
  background: rgba(73, 89, 71, 0.5);
  right: -30px;
  top: 0;
}
@media (max-width: 600px) {
  .service-page__point-left::after {
    width: 100%;
    height: 1px;
    right: unset;
    left: 50%;
    top: unset;
    transform: translateX(-50%);
    bottom: -10px;
  }
}
.service-page__point-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-page__point-right li {
  display: flex;
  align-items: baseline;
  font-size: 20px;
  gap: 20px;
}
@media (max-width: 600px) {
  .service-page__point-right li {
    font-size: 1rem;
  }
}
.service-page__point-right .p-service-numb {
  display: flex;
  background-color: #EE7201;
  border-radius: 50%;
  color: #fff;
}
.service-page__point-right .p-service-numb span {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .service-page__point-right .p-service-numb span {
    line-height: inherit;
  }
}
.service-page__btnFlex {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-page__btn a {
  display: flex;
  margin: 0 auto;
}
.service-page__btn a span {
  position: relative;
  padding-left: 10px;
}

.contact-access {
  margin-bottom: 7.5rem;
}
@media (max-width: 600px) {
  .contact-access {
    margin-bottom: 4rem;
  }
}
.contact-access__headding {
  display: flex;
  width: 100%;
  height: 100%;
  padding-bottom: 3.125rem;
}
.contact-access__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact-access__container {
    gap: 1.25rem;
  }
}
@media (max-width: 600px) {
  .contact-access__container {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.contact-access__map {
  width: 100%;
  height: 50vh;
}
.contact-access__address dl {
  display: grid;
  grid-template-columns: 1fr 5fr;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .contact-access__address dl {
    grid-template-columns: 1fr;
  }
}
.contact-access__address dt {
  font-weight: bold;
}
.contact-access__address-box {
  padding: 0 5px;
}
@media (max-width: 600px) {
  .contact-access__address-box {
    padding: 0 15px 10px;
  }
}

.contact-page {
  margin-bottom: 7.5rem;
}
@media (max-width: 600px) {
  .contact-page {
    margin-bottom: 4rem;
  }
}
.contact-page__headding {
  display: grid;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  height: 100%;
  padding-bottom: 3.125rem;
}
.contact-page__txt {
  text-align: center;
}
@media (max-width: 600px) {
  .contact-page__txt {
    text-align: left;
  }
}
.contact-page__flex {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 1.625rem 0;
  border-bottom: 1px solid #ECECEC;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .contact-page__flex {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.contact-page__form, .contact-page__flex:first-child {
  border-top: 1px solid #ECECEC;
}
.contact-page__flex-start {
  align-items: start;
}
.contact-page__box01 {
  display: flex;
  align-items: center;
}
.contact-page__required {
  margin-left: auto;
  background-color: #BB9B5E;
  display: inline-block;
  padding: 2px 8px;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  line-height: 1.2;
  color: #fff;
  margin-right: 1.25rem;
}
.contact-page__required > p {
  font-size: 0.875rem !important;
}
.contact-page__submit {
  margin-top: 3.75rem;
  display: flex;
  justify-content: center;
}

/* --- お問い合わせフォーム --- */
/* デザインカスタマイズ */
div.wpcf7 p {
  margin: 0;
  font-size: 1rem;
}

div.wpcf7 input, .wpcf7 textarea {
  background-color: #ECECEC;
  padding: 18px 10px;
  font-size: 0.8rem;
  width: 100%;
  border: none;
}

div.wpcf7 input.wpcf7-submit {
  cursor: pointer;
  position: relative;
  background-color: #EE7201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  font-weight: 500;
  border: 2px solid #EE7201;
  color: #EE7201;
  white-space: nowrap;
  height: 60px;
  width: 260px;
  transition: 0.3s ease;
  background-color: #EE7201;
  color: #fff;
}
div.wpcf7 input.wpcf7-submit:hover {
  background-color: #F8F5EF;
  color: #EE7201;
}
div.wpcf7 input.wpcf7-submit::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.wpcf7 input:focus, .wpcf7 textarea:focus {
  border: 1px solid #009de1;
}

.wpcf7-captchac {
  border: 1px solid #ccc;
}

/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid {
  background: #ffb6c1;
}

.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}

.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}

/* 必須赤色表示 */
.wpcf7 .required {
  color: #f00;
}

/* 任意緑色表示 */
.wpcf7 .any {
  color: #080;
}

.price-page {
  margin-bottom: 7.5rem;
}
@media (max-width: 600px) {
  .price-page {
    margin-bottom: 4rem;
  }
}
.price-page__headding {
  display: flex;
  width: 100%;
  height: 100%;
  padding-bottom: 3.125rem;
}
.price-page__container {
  background-color: #495947;
  padding-bottom: 5rem;
}
.price-page__title {
  padding: 5rem 0 3.75rem;
  text-align: center;
  font-size: 1.375rem;
  color: #fff;
}
.price-page__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 600px) {
  .price-page__content {
    grid-template-columns: 1fr;
  }
}
.price-page__box {
  background-color: #fff;
  padding: 1.875rem;
  border-radius: 5px;
}
.price-page__box-title {
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.9375rem;
  margin-bottom: 0.9375rem;
}
.price-page__box-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  width: 2.5rem;
  height: 2px;
  background: #BB9B5E;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.price-list {
  margin-bottom: 7.5rem;
}
@media (max-width: 600px) {
  .price-list {
    margin-bottom: 4rem;
  }
}
.price-list__headding {
  display: flex;
  width: 100%;
  height: 100%;
  padding-bottom: 3.125rem;
}
.price-list__title {
  font-size: 1.5rem;
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.price-list__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: rgba(238, 114, 1, 0.5);
}
.price-list__title:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -0.625rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(73, 89, 71, 0.3);
}
.price-list__container {
  margin-bottom: 5rem;
}
.price-list__contain {
  margin-bottom: 2.5rem;
}
.price-list__contain h4 {
  font-size: 1.125rem;
  padding-bottom: 1.25rem;
}
.price-list__contain p {
  padding: 0.625rem;
}
.price-list__table {
  display: grid;
}
.price-list__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.875rem;
  border-right: 1px solid rgba(73, 89, 71, 0.3);
  border-bottom: 1px solid rgba(73, 89, 71, 0.3);
}
@media (max-width: 600px) {
  .price-list__cell {
    padding: 0.9375rem 0.625rem;
  }
}
.price-list__cell:nth-child(2n) {
  display: block;
  padding: 1.875rem;
  border-right: 1px solid rgba(73, 89, 71, 0.3);
  border-bottom: 1px solid rgba(73, 89, 71, 0.3);
}
@media (max-width: 600px) {
  .price-list__cell:nth-child(2n) {
    padding: 0.9375rem 0.625rem;
  }
}
.price-list__flex {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .price-list__flex {
    grid-template-columns: 1fr;
  }
}

.p-price-border {
  border-top: 1px solid rgba(73, 89, 71, 0.3);
  border-left: 1px solid rgba(73, 89, 71, 0.3);
}

.p-price--cell {
  text-align: center;
  background-color: #FDF1E6;
}
@media (max-width: 600px) {
  .p-price--cell {
    text-align: left;
  }
}

.p-price--half {
  grid-template-columns: 1fr 2fr;
}

.p-price--quarter {
  grid-template-columns: 1fr 2fr;
}

li.p-price-circle {
  position: relative;
  padding-left: 1.25rem;
}
li.p-price-circle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  width: 16px;
  height: 16px;
  background-color: rgba(238, 114, 1, 0.5);
  border-radius: 50%;
  top: 8px;
  left: 0;
}

.price-flow {
  margin-bottom: 7.5rem;
}
@media (max-width: 600px) {
  .price-flow {
    margin-bottom: 4rem;
  }
}
.price-flow__headding {
  display: flex;
  width: 100%;
  height: 100%;
  padding-bottom: 3.125rem;
}
.price-flow__wrap {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.price-flow__container {
  display: flex;
  gap: 1.25rem;
  padding: 1.875rem;
  border: 1px solid rgba(73, 89, 71, 0.3);
  border-radius: 5px;
  align-items: center;
}
@media (max-width: 600px) {
  .price-flow__container {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .price-flow__container img {
    width: 20vw;
  }
}
.price-flow__box h3 {
  font-size: 1.375rem;
}
.price-flow__box h3 span {
  color: #EE7201;
  padding-right: 0.625rem;
}
.price-flow__box p {
  padding-top: 12px;
}
.price-flow__next {
  text-align: center;
  display: block;
  margin: 0 auto;
  padding: 1rem 0;
  width: 12px;
}

.p-blog {
  margin-bottom: 7.5rem;
}
@media (max-width: 600px) {
  .p-blog {
    margin-bottom: 4rem;
  }
}
.p-blog__headding {
  font-size: 26px;
  display: flex;
  width: 100%;
  padding-bottom: 1.875rem;
  position: relative;
  margin-bottom: 64px;
}
@media (max-width: 600px) {
  .p-blog__headding {
    font-size: 22px;
    padding-bottom: 1.25rem;
  }
}
.p-blog__headding::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: #EE7201;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-blog__side-head {
  padding-left: 30px;
  margin-bottom: 30px;
  position: relative;
}
.p-blog__side-head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  width: 18px;
  height: 3px;
  background-color: #EE7201;
  left: 10px;
  top: 50%;
  transform: translateX(-50%);
}
.p-blog__wrap {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 60px;
}
@media (max-width: 600px) {
  .p-blog__wrap {
    grid-template-columns: 1fr;
  }
}
.p-blog__article-arc {
  display: grid;
  gap: 30px;
}
.p-blog__article-news {
  display: grid;
  gap: 20px;
}
@media (max-width: 600px) {
  .p-blog__article-news {
    grid-template-columns: 1fr 1fr;
  }
}
.p-blog__article-relation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.p-blog__link-arc {
  display: grid;
  align-items: center;
  grid-template-columns: 130px 1fr;
  gap: 20px;
}
.p-blog__link-arc:hover {
  opacity: 0.5;
}
.p-blog__link-news {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr;
  gap: 10px;
}
.p-blog__link-news:hover {
  opacity: 0.5;
}
.p-blog__link-relation {
  display: grid;
  align-items: center;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .p-blog__link-relation {
    grid-template-columns: 60px 1fr;
  }
}
.p-blog__link-relation:hover {
  opacity: 0.5;
}
.p-blog__thumb {
  width: 100%;
  height: inherit;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-blog__meta h3 {
  font-size: 18px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 600px) {
  .p-blog__meta h3 {
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
.p-blog__sub {
  color: rgba(73, 89, 71, 0.3);
  font-size: 14px;
}

.post__wrap .p-blog__headding {
  margin-bottom: 30px;
}
.post__thumb {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  height: inherit;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
}
.post__contain {
  margin-bottom: 60px;
}
.post__relation {
  padding-top: 60px;
  border-top: 1px solid rgba(73, 89, 71, 0.3);
}

.blog-cat__wrap {
  margin-bottom: 60px;
}
.blog-cat__list li {
  border-bottom: 1px solid rgba(73, 89, 71, 0.3);
  padding: 20px 0;
}
.blog-cat__list li:first-child {
  border-top: 1px solid rgba(73, 89, 71, 0.3);
}
.blog-cat__list a {
  position: relative;
  padding-left: 10px;
}
.blog-cat__list a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/common/icon/icon-blog-polygon.svg");
  width: 7px;
  height: 6.062px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
}
.blog-cat__list a:hover {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */