@charset "UTF-8";
/*=====================================
【common/リセット】
======================================*/
/*=============================================
【リセットCSS__A Modern CSS Reset】
==============================================*/
*****,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-size: 1em;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*=============================================
【リセットCSS__ここから追記部分】
==============================================*/
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

button {
  all: unset;
}

input {
  margin: 0;
}

/* Button要素のリセットCSS */
button, input[type=button], input[type=submit], input[type=reset] {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  outline: none; /* フォーカス時のアウトラインを削除（アクセシビリティに注意） */
}

/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【common/ベース】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【共通_base】
======================================*/
body {
  font-family: "Noto Sans JP", sans-serif, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
  transition: opacity 0.4s;
}

* {
  box-sizing: border-box;
}

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

/*=====================================
【components/ブロックパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【ヘッダー】
======================================*/
.header__inner {
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: #fff;
  display: flex;
  flex-grow: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影をつけて浮き上がらせる */
  z-index: 1000; /* 他の要素よりも上に表示されるようにする */
}
.header__logo {
  width: 200px;
  height: 60px;
  margin-left: 20px;
}
@media screen and (min-width: 940px) {
  .header__logo {
    width: 260px;
  }
}
.header__logo__link {
  display: flex;
  align-items: center;
  height: 100%;
  vertical-align: middle;
  justify-content: center;
}
@media screen and (min-width: 940px) {
  .header__logo__link {
    display: flex;
    align-items: center;
    height: 100%;
    vertical-align: middle;
  }
}
.header__logo__link:hover {
  opacity: 0.5;
  cursor: pointer;
}

.hamburger {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 940px) {
  .hamburger {
    display: none;
  }
}
.hamburger .line {
  display: block;
  width: 50%;
  height: 3px;
  background: #0c7e45;
  transform-origin: 0% 50%;
  position: absolute;
  top: 12px;
  left: 25%;
  transition: 0.3s;
}
.hamburger .line:nth-of-type(1) {
  top: 20px;
}
.hamburger .line:nth-of-type(2) {
  top: 29px;
}
.hamburger .line:nth-of-type(3) {
  top: 38px;
}
.hamburger.close {
  background-color: #0c7e45;
}
.hamburger.close .line:nth-of-type(1) {
  background-color: #fff;
  transform: rotate(45deg);
  top: 20px;
  left: 30%;
  width: 60%;
}
.hamburger.close .line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.close .line:nth-of-type(3) {
  background-color: #fff;
  top: 45px;
  left: 30%;
  transform: rotate(-45deg);
  width: 60%;
}

/*=====================================
【ナビ】
======================================*/
.nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  /* ナビゲーション */
}
@media screen and (min-width: 940px) {
  .nav {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 80px 0;
  gap: 5px;
}
@media screen and (min-width: 940px) {
  .nav__list {
    flex-direction: row;
    gap: 14px 5px;
    justify-content: flex-end;
    padding: 0;
  }
}
.nav__list-item {
  line-height: 1.286;
  font-size: 18px;
  font-weight: bold;
  font-feature-settings: "palt";
  margin: auto;
  width: 90%;
}
@media screen and (min-width: 940px) {
  .nav__list-item {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 5px 0 0;
  }
}
.nav__list-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  padding: 18px 18px 4px 18px;
  transition: color 0.3s;
  background-color: #fff;
  color: #0c7e45;
}
.nav__list-link:hover {
  color: #707070;
}
.nav__list-link.on_page {
  background-color: #0c7e45;
  color: #fff;
}
.nav__list-link-text {
  position: relative;
  display: inline-block;
}
.nav__list-link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #0c7e45;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__list-link:hover .nav__list-link-text::after {
  transform: scaleX(1);
}
.nav-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60.38px;
  background-color: #0c7e45;
  border: 2px solid #0c7e45;
  color: #fff;
  width: 180px;
}
.nav-contact-txt {
  color: inherit;
  font-size: 18px;
  font-weight: bold;
}
.nav-contact:hover {
  color: #0c7e45;
  background-color: #fff;
  stroke: #0c7e45;
  transition: 0.5s;
  cursor: pointer;
}

.nav-sp {
  position: fixed;
  background: #0c7e45;
  width: 100%;
  top: -100%;
  left: 0;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px 0;
  z-index: 1;
  transition: top 0.5s ease;
  overflow-y: auto;
}
.nav-sp__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
.nav-sp__list-item {
  line-height: 1.286;
  font-feature-settings: "palt";
  margin: auto;
  letter-spacing: 0.16em;
  font-size: 18px;
  font-weight: bold;
}
.nav-sp__list-link {
  display: block;
  align-items: center;
  height: 100%;
  background-color: #0c7e45;
  color: #fff;
  line-height: 1.4;
  padding: 8px;
  border-bottom: 2px solid #0c7e45;
  text-align: center;
}
.nav-sp__list-link:hover {
  color: #0c7e45;
  background-color: #fff;
  padding: 8px;
}

.nav-sp.active {
  top: 60px;
  z-index: 101;
}

/*=====================================
【フッター】
======================================*/
.footer {
  background-color: #0c7e45;
  padding: 30px 20px;
  position: sticky;
}
@media screen and (min-width: 940px) {
  .footer {
    top: 100vh;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (min-width: 940px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1020px;
  }
}

.office {
  display: flex;
  flex-direction: column;
  line-height: 1.563;
}
.office__name {
  font-size: 18px;
}
@media screen and (min-width: 940px) {
  .office__name {
    font-size: 24px;
  }
}
.office__desc {
  margin-top: 10px;
}
.office__address {
  font-style: normal;
}
.office__link {
  font-size: 16px;
}
@media screen and (min-width: 940px) {
  .office__link {
    font-size: 18px;
  }
}
.office__link:hover {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.office__link:hover:hover {
  color: #cfcccc;
}

.tel-link {
  color: #fff;
  line-height: 1.2;
  pointer-events: auto;
}
@media screen and (min-width: 940px) {
  .tel-link {
    pointer-events: none;
  }
}

.nav-footer {
  display: flex;
  flex-direction: column;
  /* ナビゲーション */
}
@media screen and (min-width: 940px) {
  .nav-footer {
    align-items: flex-end;
  }
}
.nav-footer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 940px) {
  .nav-footer__list {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 1rem;
  }
}
.nav-footer__list-item {
  line-height: 1.286;
  font-weight: bold;
  font-feature-settings: "palt";
}
@media screen and (min-width: 940px) {
  .nav-footer__list-item {
    line-height: 1.688;
  }
}
.nav-footer__list-link {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  height: 100%;
  vertical-align: middle;
  color: #fff;
  padding: 4px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s;
}
.nav-footer__list-link:hover {
  border-bottom: 2px solid #fff;
}
.nav-footer__privacy {
  display: inline-block;
  margin-top: 16px;
}
.nav-footer__privacy-link {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 4px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s;
}
.nav-footer__privacy-link:hover {
  border-bottom: 2px solid #fff;
}

.copy {
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 940px) {
  .copy {
    text-align: right;
  }
}

/*=====================================
【メインビジュアル】
======================================*/
.mv {
  position: relative;
  width: 94%;
  z-index: 1;
  left: 100%;
  transform: translateX(-100%);
}
@media screen and (min-width: 940px) {
  .mv {
    width: 100%;
    padding-top: 650px;
  }
}

.mv-slideshow {
  width: 100%;
  height: 60vh;
  position: relative;
}
@media screen and (min-width: 940px) {
  .mv-slideshow {
    width: 50%;
    height: 650px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
}
.mv-slideshow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.mv-slideshow-img-active {
  opacity: 1;
  z-index: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
  margin-top: 60px;
}

.slide-image.active {
  opacity: 1;
  z-index: 1;
}

/*=====================================
【コンテンツ 共通】
======================================*/
.main {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
@media screen and (min-width: 940px) {
  .main {
    justify-content: space-around;
  }
}
@media screen and (min-width: 940px) {
  .main {
    padding: 0;
  }
}

@media screen and (min-width: 940px) {
  .container-no-strech {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 940px) {
  .container {
    align-items: stretch;
  }
}

.content {
  width: 100%;
  background-color: #fff;
  padding: 60px 30px 65px;
}
.content__block {
  margin-top: 30px;
}
.content__block:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 940px) {
  .content__block {
    max-width: 960px;
    margin: auto;
  }
}

/*=====================================
【googleMAP】
======================================*/
.g-map {
  width: 100%;
  position: relative;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  margin-top: 30px;
}
@media screen and (min-width: 940px) {
  .g-map {
    padding-top: 28%;
  }
}

.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=====================================
【トップページ：各コンテンツ】
======================================*/
.intro {
  background-image: url("./img/about/bg_asunaro.jpg");
  background-size: 80% auto;
  background-position-x: right;
  background-position-y: bottom;
  background-repeat: no-repeat;
  margin-top: 60px;
}
@media screen and (min-width: 940px) {
  .intro {
    background-size: 45% auto;
  }
}

.intro-txt {
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 940px) {
  .intro-txt {
    margin-top: 30px;
    text-align: center;
  }
}

.content-g {
  background-color: #EDF8F2;
  padding: 60px 30px 65px;
}

.service-top__img {
  margin: 30px auto;
}
@media screen and (min-width: 940px) {
  .service-top__img {
    width: 860px;
    margin: 30px auto;
  }
}

/* 親要素（円を配置する場所） */
.circle-wrapper {
  position: relative;
  aspect-ratio: 1/1; /* 高さと幅が同じ比率になるように、正円を維持 */
  margin: 60px auto; /* 中央寄せ */
  justify-content: center; /* 中央に配置 */
  align-items: center; /* 中央に配置 */
  max-width: 1060px;
  background-image: url(./img/common/top-s-00.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 72%;
}
@supports (width: clamp(1px, 1vw, 100px)) {
  .circle-wrapper { /* clampサポートを確認 */
    width: clamp(330px, 70vw, 900px); /* clampで可変サイズ */
    height: clamp(360px, 72vw, 550px); /* clampで可変サイズ */
  }
}
@media screen and (min-width: 940px) {
  .circle-wrapper {
    height: 1000px;
    margin: 0 auto;
  }
  @supports (width: clamp(1px, 1vw, 100px)) {
    .circle-wrapper { /* clampサポートを確認 */
      width: clamp(330px, 80vw, 1060px); /* clampで可変サイズ */
    }
  }
}

/* 丸を表す部分 */
.circle-dot {
  position: absolute;
  aspect-ratio: 1/1; /* 正円を保つ */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(calc(72deg * var(--i))) translateY(-100%) rotate(calc(-72deg * var(--i))); /* 文字を回転戻し（水平） */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c7e45;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px auto;
  width: 28vw;
  height: 28vw;
  aspect-ratio: 1/1;
}
@supports (width: clamp(1px, 1vw, 1px)) {
  .circle-dot {
    width: clamp(90px, 33vw, 200px);
    height: clamp(90px, 33vw, 200px);
  }
}
@media screen and (min-width: 940px) {
  .circle-dot {
    top: 38%;
    left: 34%;
    transform: rotate(calc(72deg * var(--i))) translateY(-105%) rotate(calc(-72deg * var(--i))); /* 文字を回転戻し（水平） */
    padding: 10px;
    width: 28vw;
    height: 28vw;
    aspect-ratio: 1/1;
  }
  @supports (width: clamp(1px, 1vw, 1px)) {
    .circle-dot {
      width: clamp(200px, 28vw, 320px);
      height: clamp(200px, 28vw, 320px);
    }
  }
}
.circle-dot-img01 {
  width: 46px;
}
@media screen and (min-width: 940px) {
  .circle-dot-img01 {
    width: 80px;
  }
}
@supports (width: clamp(1px, 1vw, 100px)) {
  .circle-dot-img01 { /* clampサポートを確認 */
    width: clamp(30px, 8vw, 80px); /* clampで可変サイズ */
  }
}
.circle-dot-img02 {
  width: 46px;
  margin-left: 7px;
}
@media screen and (min-width: 940px) {
  .circle-dot-img02 {
    width: 100px;
    margin-left: 15px;
  }
}
@supports (width: clamp(1px, 1vw, 100px)) {
  .circle-dot-img02 { /* clampサポートを確認 */
    width: clamp(30px, 6.2vw, 77px); /* clampで可変サイズ */
  }
}
.circle-dot-img03 {
  width: 46px;
}
@media screen and (min-width: 940px) {
  .circle-dot-img03 {
    width: 120px;
  }
}
@supports (width: clamp(1px, 1vw, 100px)) {
  .circle-dot-img03 { /* clampサポートを確認 */
    width: clamp(30px, 9vw, 120px); /* clampで可変サイズ */
  }
}
.circle-dot-link {
  display: flex;
  flex-direction: column;
  max-width: 280px;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* デフォルトのリンクの下線を削除 */
  border-radius: 50%; /* リンク全体を丸くする */
  transition: background-color 0.3s ease; /* ホバー時の色変化にスムーズさを追加 */
}
.circle-dot-link:hover {
  opacity: 0.5;
  transition: 0.5s;
  cursor: pointer;
}
.circle-dot .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #0c7e45;
  background-color: #fff;
  border-radius: 50%;
  margin: 5px 0 0;
}
@media screen and (min-width: 940px) {
  .circle-dot .arrow {
    width: 40px;
    height: 40px;
    margin: 10px 0 0;
  }
}
.circle-dot .arrow-path {
  stroke: #0c7e45;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}
@media screen and (min-width: 940px) {
  .circle-dot .arrow-path {
    stroke-width: 4;
  }
}

.circle-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin: 5px 10px;
}
@media screen and (min-width: 940px) {
  .circle-ttl {
    font-size: 24px;
  }
}
@supports (font-size: clamp(1px, 1vw, 1px)) {
  .circle-ttl {
    font-size: clamp(16px, 3vw, 32px);
  }
}

.circle-ttl-2l {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin: 5px 10px;
}
@media screen and (min-width: 940px) {
  .circle-ttl-2l {
    font-size: 24px;
  }
}
@supports (font-size: clamp(1px, 1vw, 1px)) {
  .circle-ttl-2l {
    font-size: clamp(16px, 3.2vw, 32px);
  }
}

.circle-desc {
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.column {
  width: 100%;
  background-color: #fff;
  padding: 60px 30px 65px;
  max-width: 1080px;
  margin: auto;
}

.card-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(146px, 1fr));
  gap: 30px 20px;
  align-items: stretch;
  margin: 30px 0 40px;
}
@media screen and (min-width: 940px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.card-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-body {
  padding: 20px 15px;
}

.card-date {
  color: #008000; /* 緑色 */
  font-weight: bold;
  margin-bottom: 4px;
}
@media screen and (min-width: 940px) {
  .card-date {
    font-size: 16px;
  }
}

.card-title {
  line-height: 1.4;
  font-weight: normal;
}
@media screen and (min-width: 940px) {
  .card-title {
    font-size: 18px;
  }
}

.card-wrapper {
  margin-top: 30px;
}
@media screen and (min-width: 940px) {
  .card-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1060px;
    margin: 30px auto 0;
  }
}

.card-link {
  display: block;
  text-decoration: none;
  color: #333;
  width: 100%;
}
.card-link:hover .card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.news-bg {
  background-color: #fff;
  padding: 20px;
}
@media screen and (min-width: 940px) {
  .news-bg {
    display: flex;
    max-width: 1020px;
    margin: auto;
    padding: 45px;
  }
}
@media screen and (min-width: 940px) {
  .news-bg-wrapper {
    padding: 45px;
  }
}

.news-date {
  font-weight: bold;
  color: #0c7e45;
  margin-right: 16px;
}
@media screen and (min-width: 940px) {
  .news-date {
    font-size: 18px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 940px) {
  .news-title {
    font-size: 18px;
  }
}

.access-bg {
  display: block;
}
@media screen and (min-width: 940px) {
  .access-bg {
    display: block;
    max-width: 1020px;
    margin: auto;
  }
}

.access-photo {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.access-photo__item {
  width: 160px;
  height: 213px;
}
@media screen and (min-width: 940px) {
  .access-photo__item {
    width: 237px;
    height: 326px;
  }
}

@media screen and (min-width: 940px) {
  .access-wrapper-02 {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
}

.contact {
  background-image: url("./img/contact/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact__bg01 {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}
@media screen and (min-width: 940px) {
  .contact__bg01 {
    padding: 50px;
    max-width: 1060px;
    margin: 50px auto;
  }
}
.contact__bg02 {
  padding: 20px 0;
  text-align: center;
  margin: 20px auto;
  border: 2px solid #0c7e45;
  border-left: none;
  border-right: none;
}
@media screen and (min-width: 940px) {
  .contact__bg02 {
    max-width: 578px;
  }
}

.contact-wrapper {
  display: block;
  padding: 30px 30px 35px;
}

.contact-message01 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 940px) {
  .contact-message01 {
    font-size: 24px;
  }
}

.contact-message02 {
  font-weight: bold;
}
@media screen and (min-width: 940px) {
  .contact-message02 {
    font-size: 18px;
  }
}

.contact-txt {
  text-align: left;
}
@media screen and (min-width: 940px) {
  .contact-txt {
    text-align: center;
  }
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

/*=====================================
【事務所紹介】
======================================*/
.about {
  width: 100%;
  margin-top: 60px;
}
.about__block {
  margin: 70px 30px 0;
}
@media screen and (min-width: 940px) {
  .about__block {
    max-width: 1020px;
    padding: 0 30px;
    margin: 100px auto 0;
  }
}
.about__block-02 {
  margin: 60px 0 0;
  background-color: #f7f7f7;
  padding: 60px 20px;
}
@media screen and (min-width: 940px) {
  .about__block-02 {
    padding: 80px 0;
    margin: 100px 0 0;
  }
}
.about__message {
  max-width: 1060px;
  margin: auto;
}
@media screen and (min-width: 940px) {
  .about__lawyer {
    display: flex;
    gap: 40px;
  }
}
.about__lawyer-wrapper {
  margin: 30px 0;
}
@media screen and (min-width: 940px) {
  .about__lawyer-wrapper {
    width: 100%;
    margin: 0;
  }
}
.about__img01 {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 1060px;
  margin: auto;
}
.about__img02 {
  width: 275px;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.about__img02-wrapper {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 940px) {
  .about__img02-wrapper {
    width: 40%;
  }
}
.about__partnership {
  background-color: #FFFBF1;
  padding: 20px;
  margin-top: 30px;
}
.about__office {
  padding: 10px 0;
  margin: 30px auto 30px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 940px) {
  .about__office {
    padding-top: 80px;
    max-width: 1020px;
    margin: 30px auto;
    padding: 10px;
    align-items: center;
  }
}
.about__office-ttl {
  padding: 20px 20px 0;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 940px) {
  .about__office-ttl {
    padding: 10px 20px;
    width: 20%;
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.about__office-txt {
  padding: 0 20px 20px;
  width: 100%;
  word-break: break-word;
  background-color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (min-width: 940px) {
  .about__office-txt {
    padding: 10px;
    width: 80%;
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.signature {
  width: 110px;
  margin: 0 5px 0 15px;
}
@media screen and (min-width: 940px) {
  .signature {
    width: 180px;
    margin: 10px 5px 0 20px;
  }
}
.signature-wrapper {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}
.signature__item {
  margin-bottom: 10px;
}
@media screen and (min-width: 940px) {
  .signature__item {
    margin-bottom: 20px;
  }
}

/*=====================================
【取扱業務】
======================================*/
.service {
  width: 100%;
  margin-top: 60px;
}
.service__block {
  margin: 0 30px;
  padding: 70px 0 0;
}
@media screen and (min-width: 940px) {
  .service__block {
    display: flex;
    max-width: 1060px;
    margin: 30px auto 0;
    gap: 40px;
    padding: 70px 30px 0;
  }
}
.service__block-re {
  margin: 0 30px;
  gap: 40px;
  padding: 70px 0 0;
}
@media screen and (min-width: 940px) {
  .service__block-re {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1060px;
    margin: 30px auto 0;
    gap: 40px;
    padding: 70px 30px 0;
  }
}
@media screen and (min-width: 940px) {
  .service__desc {
    width: 100%;
    margin: auto;
  }
}
.service__img {
  margin: 20px auto 0;
  width: 500px;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 940px) {
  .service__img {
    margin: 0;
    width: 420px;
    height: 280px;
  }
}
.service__title {
  display: flex;
  gap: 12px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0c7e45;
}
@media screen and (min-width: 940px) {
  .service__title {
    gap: 20px;
  }
}
.service__title-icon {
  width: 60px;
  height: 100%;
}
@media screen and (min-width: 940px) {
  .service__title-icon {
    width: 78px;
  }
}

/*=====================================
【コラム】
======================================*/
.column02 {
  width: 100%;
  margin-top: 60px;
}
.column02-section {
  max-width: 1060px;
  margin: 70px auto 0;
  padding: 0 30px;
}
@media screen and (min-width: 940px) {
  .column02-section {
    margin: 40px auto 0;
    padding: 40px 30px;
  }
}

.card02 {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card02-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(146px, 1fr));
  gap: 30px 20px;
  align-items: stretch;
  margin: 30px 0;
}
@media screen and (min-width: 940px) {
  .card02-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 60px 0 30px;
  }
}
.card02-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.card02-date {
  font-size: 16px;
  font-weight: bold;
  color: #00793a;
  margin: 20px 18px 0;
}
@media screen and (min-width: 940px) {
  .card02-date {
    font-size: 18px;
  }
}
.card02-ttl {
  font-size: 16px;
  font-weight: bold;
  margin: 2px 15px 24px;
}
@media screen and (min-width: 940px) {
  .card02-ttl {
    font-size: 18px;
  }
}
.card02-link {
  display: block;
  text-decoration: none;
  color: #333;
  width: 100%;
}
.card02-link:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.pagination {
  text-align: center;
  margin-top: 60px;
}

.page-num {
  display: inline-block;
  margin: 0 8px 80px;
  padding: 0.5rem 1rem;
  border: 2px solid #00793a;
  color: #00793a;
  text-decoration: none;
}

.page-num.active {
  background-color: #00793a;
  color: #fff;
}

.column02-wrapper {
  max-width: 1060px;
  margin: 60px auto 0;
  padding: 0 30px 30px;
}
.column02-img {
  max-width: 760px;
  margin: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.column02-block {
  max-width: 760px;
  margin: 40px auto 0;
}
.column02-txt {
  font-size: 16px;
  margin-top: 1rem;
}
.column02-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  margin: 30px auto;
  justify-content: center;
  gap: 60px;
}
@media screen and (min-width: 940px) {
  .column02-links {
    margin: 60px auto;
  }
}
.column02-links__prev {
  min-width: 100px;
  min-height: 1.6em;
  display: flex;
  align-items: center;
}
.column02-links__prev-link {
  color: #0c7e45;
  font-weight: bold;
  line-height: 1.6;
}
.column02-links__prev-link::before {
  content: "<";
  font-size: 28px;
  font-weight: normal;
  margin-right: 6px;
  position: relative;
  top: 5px;
}
.column02-links__center {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 940px) {
  .column02-links__center {
    width: 220px;
  }
}
.column02-links__next {
  min-width: 100px;
  min-height: 1.6em;
  display: flex;
  align-items: center;
}
.column02-links__next-link {
  color: #0c7e45;
  font-weight: bold;
  line-height: 1.6;
}
.column02-links__next-link::after {
  content: ">";
  font-size: 28px;
  font-weight: normal;
  margin-left: 6px;
  position: relative;
  top: 5px;
}
.column02-links__next-link:hover {
  opacity: 0.5;
}
.column02-content p {
  margin: 10px 0 0;
}
.column02-content a {
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
  overflow-wrap: break-word;
}

.column-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 枠に合わせてトリミング、歪まない */
  display: block;
}

/*=====================================
【お問い合わせ】
======================================*/
.contact02 {
  width: 100%;
  margin-top: 60px;
}
.contact02-desc {
  max-width: 960px;
  padding: 0 30px;
  margin: 70px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 940px) {
  .contact02-desc {
    display: block;
    max-width: 1060px;
  }
}
.contact02-desc-area {
  text-align: left;
  width: 100%;
}
.contact02-form {
  max-width: 960px;
  padding: 0 30px;
  margin: 30px auto 0;
}
@media screen and (min-width: 940px) {
  .contact02-form {
    max-width: 1060px;
    margin: 60px auto 0;
  }
}

.form-group {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 940px) {
  .form-group {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}
.form-group label, .form-group legend {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 940px) {
  .form-group label, .form-group legend {
    width: 340px;
  }
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  background-color: #f6f6f6;
}
.form-group .form-ttl {
  color: #0c7e45;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 940px) {
  .form-group .form-ttl {
    font-size: 18px;
    width: 170px;
  }
}
.form-group .required {
  background-color: #D53F3A;
  color: #fff;
  font-size: 14px;
  padding: 2px 8px;
  margin-left: 0.5rem;
}
@media screen and (min-width: 940px) {
  .form-group .required {
    font-size: 16px;
  }
}
.form-group fieldset {
  border: none;
  padding: 0;
  display: contents;
}
.form-group fieldset label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: normal;
}
.form-group .form-kinds {
  display: block;
  width: 100%;
  margin: 0;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
}

.wpcf7-list-item {
  color: #333;
  font-weight: normal;
}

.form-group fieldset label {
  color: #333;
}

.contact-privacy {
  margin: 0 auto 24px;
  max-width: 1020px;
}
.contact-privacy-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.contact-privacy-link {
  border-bottom: 1.5px solid #707070;
  transition: border-bottom 0.1s;
}
.contact-privacy-link:hover {
  opacity: 0.5;
  border-bottom: 1px solid transparent;
}

.form-submit {
  text-align: center;
  margin: 60px 0 100px;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #0c7e45;
}

/*=====================================
【個人情報保護方針】
======================================*/
.privacy {
  width: 100%;
  margin-top: 60px;
}
.privacy-wrapper {
  max-width: 1020px;
  margin: auto;
  padding: 60px 30px;
}
.privacy-block {
  margin-top: 20px;
}

/*=====================================
【404エラーページ】
======================================*/
.error {
  width: 100%;
  margin-top: 60px;
}
.error-wrapper {
  max-width: 1020px;
  margin: auto;
  padding: 60px 30px;
}

/*=====================================
【components/見出しパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【メインビジュアル　見出し】
======================================*/
.mainText {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 940px) {
  .mainText {
    font-size: 40px;
    margin: 10px 0 10px;
  }
}
.mainText__welcome {
  font-family: "Noto Serif JP", serif;
  color: #0c7e45;
  font-size: 16px;
  font-weight: 900;
}
@media screen and (min-width: 940px) {
  .mainText__welcome {
    font-size: 24px;
    padding-left: 5px;
  }
}
.mainText__sub {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 940px) {
  .mainText__sub {
    font-size: 28px;
    padding-left: 4px;
  }
}
.mainText__bg {
  background-image: url("./img/common/mv-clover.jpg");
  background-size: cover;
  background-position-x: left;
  background-position-y: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  top: 45vh;
  left: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 940px) {
  .mainText__bg {
    background-position: center;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1; /* 背景だがテキストと重ならないように調整 */
    height: 650px;
  }
}
.mainText__area {
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: #333;
  text-align: left;
  padding: 8px 10px;
}
@media screen and (min-width: 940px) {
  .mainText__area {
    width: 500px;
    max-width: 100%;
    margin: auto;
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 5px 0 15px;
    height: 650px;
  }
}

/*=====================================
【コンテンツ　見出し】
======================================*/
.ttl-01 {
  font-family: "Noto Serif JP", serif;
  color: #333;
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  text-align: center;
  position: relative;
  line-height: 1.4;
}
.ttl-01::after {
  content: "";
  display: block;
  width: 4em; /* 約4文字分の長さ */
  height: 4px;
  background-color: #0c7e45;
  margin: 6px auto 3px;
}
@media screen and (min-width: 940px) {
  .ttl-01 {
    font-size: 40px;
  }
}
.ttl-01_en {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 900;
  color: #0c7e45;
  text-align: center;
}
@media screen and (min-width: 940px) {
  .ttl-01_en {
    font-size: 18px;
  }
}

.ttl-02 {
  font-family: "Noto Serif JP", serif;
  color: #0c7e45;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 940px) {
  .ttl-02 {
    font-size: 40px;
  }
}
.ttl-02 .slashes {
  position: relative;
  width: 36px;
  margin: 0 12px;
}
.ttl-02 .slashes::before, .ttl-02 .slashes::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 3px;
  background-color: #0c7e45;
}
.ttl-02 .slashes__left::before {
  transform: rotate(-66deg);
  left: 0;
  top: 0;
}
.ttl-02 .slashes__left::after {
  transform: rotate(-66deg);
  left: 9px;
  top: 0;
}
.ttl-02 .slashes__right::before {
  transform: rotate(-66deg);
  right: 0;
  top: 0;
}
.ttl-02 .slashes__right::after {
  transform: rotate(-66deg);
  right: 9px;
  top: 0;
}

.ttl-03 {
  font-size: 20px;
  font-weight: bold;
  color: #0c7e45;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ttl-03::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background-color: #0c7e45;
}
@media screen and (min-width: 940px) {
  .ttl-03 {
    font-size: 28px;
  }
}

.ttl-04 {
  font-size: 16px;
  font-weight: bold;
  color: #0c7e45;
}
@media screen and (min-width: 940px) {
  .ttl-04 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.about-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 940px) {
  .about-ttl {
    font-size: 24px;
  }
}

.service-ttl {
  font-family: "Noto Serif JP", serif;
  color: #0c7e45;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 940px) {
  .service-ttl {
    font-size: 32px;
  }
}
.service-ttl__sub {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  line-height: 1.4;
}
@media screen and (min-width: 940px) {
  .service-ttl__sub {
    font-size: 18px;
  }
}

/*=====================================
【その他】
======================================*/
.ttl-message {
  font-family: "Noto Serif JP", serif;
  color: #0c7e45;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 940px) {
  .ttl-message {
    font-size: 40px;
    text-align: center;
  }
}

.ttl-service {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 940px) {
  .ttl-service {
    font-size: 40px;
  }
}
.ttl-service-en {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 900;
  color: #0c7e45;
  text-align: center;
}
@media screen and (min-width: 940px) {
  .ttl-service-en {
    font-size: 18px;
  }
}

.ttl-contact {
  font-family: "Noto Serif JP", serif;
  color: #0c7e45;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 940px) {
  .ttl-contact {
    font-size: 40px;
  }
}

.name {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (min-width: 940px) {
  .name {
    font-size: 24px;
  }
}
.name__belong {
  font-size: 14px;
}
@media screen and (min-width: 940px) {
  .name__belong {
    font-size: 18px;
  }
}

/*=====================================
【メインタイトル】
======================================*/
.mainTitle {
  text-align: center;
  vertical-align: middle;
  background-image: url("./img/common/maintitle-sp.jpg");
  background-size: cover;
  background-position-x: left;
  background-position-y: center;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  height: 180px;
  padding: 64px 30px 0;
}
@media screen and (min-width: 940px) {
  .mainTitle {
    background-image: url("./img/common/maintitle-pc.jpg");
    background-size: cover;
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    height: 280px;
    padding: 100px 94px 0;
  }
}

/*=====================================
【コラム記事】
======================================*/
.column-ttl-01 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin: 10px 0 0;
}
@media screen and (min-width: 940px) {
  .column-ttl-01 {
    font-size: 24px;
  }
}

.column-date {
  color: #0c7e45;
  font-size: 18px;
  font-weight: bold;
}

.column-border {
  border-bottom: 2px solid #0c7e45;
  margin: 30px 0 35px;
}

.column-ttl-02 {
  color: #0c7e45;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin: 20px 0 0;
}

.column02-block h2.wp-block-heading {
  color: #0c7e45;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin: 20px 0 0;
}

.column02-block h3.wp-block-heading {
  color: #0c7e45;
  font-size: 16px;
  line-height: 1.6;
  margin: 20px 0 0;
}

/*=====================================
【components/フォントパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【フォントスタイル】
======================================*/
.txt {
  margin-top: 0.8rem;
}

.small {
  margin-top: 0.8rem;
  font-size: 14px;
}
@media screen and (min-width: 940px) {
  .small {
    font-size: 16px;
  }
}

.txt-align-r {
  text-align: right;
}

.txt-align-c {
  text-align: center;
}

.fw-bold {
  font-weight: bold;
}

.fw-normal {
  font-weight: normal;
}

.txt-inde01 {
  text-indent: -1rem;
  padding-left: 1rem;
}

.f12 {
  font-size: 12px;
}

.f14 {
  font-size: 14px;
}

.f16 {
  font-size: 16px;
}

.f18 {
  font-size: 18px;
}

.txt-delate {
  text-decoration: line-through;
}

.green {
  color: #0c7e45;
}

/*=====================================
【テキストリンク】
======================================*/
.txt-link {
  border-bottom: 1.5px solid #707070;
  transition: border-bottom 0.1s;
}
.txt-link:hover {
  opacity: 0.5;
  border-bottom: 1px solid transparent;
}

/*=====================================
【components/リストパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【コンテンツ リスト】
======================================*/
/*=====================================
【お知らせ リスト】
======================================*/
.list-news {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
@media screen and (min-width: 940px) {
  .list-news {
    margin-left: 45px;
  }
}
.list-news__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}

/*=====================================
【リスト ⚫︎】
======================================*/
.list-circle {
  margin-top: 1rem;
}
.list-circle__item {
  text-indent: -1.25rem;
  padding-left: 1.25rem;
}
.list-circle__item::before {
  content: "⚫︎";
  color: #0c7e45;
  font-size: small;
  margin-right: 0.5rem;
}

/*=====================================
【リスト 経歴】
======================================*/
.career-list {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1020px;
  margin: 10px auto;
  gap: 10px 0;
}
@media screen and (min-width: 940px) {
  .career-list {
    margin: 15px auto 30px;
  }
}

.career__ttl, .career__txt {
  width: 100%;
  margin: 0;
  border-bottom: none;
}
@media screen and (min-width: 940px) {
  .career__ttl, .career__txt {
    border-bottom: 1px solid #ccc;
  }
}

.career__ttl {
  font-weight: bold;
}
@media screen and (min-width: 940px) {
  .career__ttl {
    font-weight: normal;
    width: 20%;
  }
}

.career__txt {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
@media screen and (min-width: 940px) {
  .career__txt {
    width: 80%;
  }
}
.career__txt-first {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  width: 100%;
}

/*=====================================
【リスト 主要著作】
======================================*/
.works-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 60px;
}
.works-list__item {
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
}

/*=====================================
【リスト コラム記事内】
======================================*/
.column02-block ul.wp-block-list {
  margin: 10px 0 0;
}

.column02-block ul.wp-block-list li {
  text-indent: -1.25rem;
  padding-left: 1.25rem;
}
.column02-block ul.wp-block-list li::before {
  content: "⚫︎";
  color: #0c7e45;
  font-size: small;
  margin-right: 0.5rem;
}

/*=====================================
【components/ボタンパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【ボタン_コンポーネント_01】
======================================*/
.btn-01 {
  display: block;
  text-align: center;
  border: 2px solid #0c7e45;
  padding: 20px;
  color: #0c7e45;
  font-weight: bold;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* 背景用の疑似要素 */
}
.btn-01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-color: #0c7e45;
  transition: 0.3s;
  z-index: -1;
}
.btn-01:hover::before {
  transform: translateX(0);
}
.btn-01:hover {
  color: #fff;
}
.btn-01__icon {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  flex-shrink: 0;
}

/*=====================================
【ボタン_コンポーネント_02】
======================================*/
.btn-02 {
  display: block;
  background-color: #0c7e45;
  border: 2px solid #0c7e45;
  padding: 20px 0;
  color: #fff;
  margin: 20px auto 0;
  max-width: 360px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: 0.5s;
}
.btn-02:hover {
  color: #0c7e45;
  background: #fff;
}
@media screen and (min-width: 940px) {
  .btn-02 {
    margin: 30px auto 0;
  }
}
.btn-02__item {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: inherit;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 940px) {
  .btn-02__item {
    font-size: 24px;
  }
}

/*=====================================
【ボタン_03 お問い合わせ送信ボタン】
======================================*/
.wpcf7 input.button-submit {
  display: block;
  box-sizing: border-box;
  background-color: #D53F3A;
  color: #fff;
  border: 2px solid #D53F3A;
  padding: 0.8rem 2rem;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2rem;
  cursor: pointer;
  transition-duration: 0.5s;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  line-height: 1.8;
  border-radius: 0;
}
@media screen and (min-width: 940px) {
  .wpcf7 input.button-submit {
    width: 280px;
    font-size: 18px;
    padding: 1rem 3rem;
    margin: auto;
  }
}
.wpcf7 input.button-submit:hover {
  background-color: #fff;
  color: #D53F3A;
  transform: scale(1.1);
}

/*=====================================
【ボタン_04 コラム記事内ボタン】
======================================*/
.column-btn {
  display: block;
  text-align: center;
  border: 2px solid #0c7e45;
  padding: 20px;
  color: #0c7e45;
  font-weight: bold;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* 背景用の疑似要素 */
}
.column-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-color: #0c7e45;
  transition: 0.3s;
  z-index: -1;
}
.column-btn:hover::before {
  transform: translateX(0);
}
.column-btn:hover {
  color: #fff;
}

/*=====================================
【components/ボタンパーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【テーブル_コンポーネント_01】【2列】
======================================*/
.table-01 {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
}
.table-01-num {
  width: 34px;
  text-align: center;
  border: 1px solid #ddd;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  background-color: #D9D9D9;
}
.table-01-txt {
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  padding: 4px;
}

/*=====================================
【テーブル_コンポーネント_02】【4列】
======================================*/
.table-02 {
  font-size: 14px;
  width: 100%;
  border-collapse: collapse;
}
.table-02-num {
  width: 34px;
  text-align: center;
  width: 34px;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  background-color: #D9D9D9;
}
.table-02-txt {
  width: 260px;
  padding: 4px;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
}

/*=====================================
【テーブル_アクセス】【2列】
======================================*/
.table-access {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 940px) {
  .table-access {
    width: 50%;
  }
}
.table-access-ttl {
  width: 120px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  padding: 10px;
}
@media screen and (min-width: 940px) {
  .table-access-ttl {
    font-size: 16px;
  }
}
.table-access-txt {
  font-size: 14px;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  padding: 20px 10px;
}
@media screen and (min-width: 940px) {
  .table-access-txt {
    font-size: 16px;
  }
}

/*=====================================
【components/その他_追加パーツ】
======================================*/
/*=====================================
【common/変数】
======================================*/
/*=====================================
【common/関数
======================================*/
/*=====================================
【その他】
======================================*/
.w-200 {
  width: 200px;
}

.w-240 {
  width: 240px;
}

.w-280 {
  width: 280px;
}

.w-320 {
  width: 320px;
}

.mx-auto {
  margin: 0 auto;
}

.letterspace-01 {
  letter-spacing: 0.01em;
  margin: 0;
}
@media screen and (min-width: 940px) {
  .letterspace-01 {
    margin: 0 6px;
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.fade-in.visible {
  opacity: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*=====================================
【modify.scss__margin】
======================================*/
.mgT0 {
  margin-top: 0px;
}

.mgT5 {
  margin-top: 5px;
}

.mgT10 {
  margin-top: 10px;
}

.mgT15 {
  margin-top: 15px;
}

.mgT20 {
  margin-top: 20px;
}

.mgT25 {
  margin-top: 25px;
}

.mgT30 {
  margin-top: 30px;
}

.mgT35 {
  margin-top: 35px;
}

.mgT40 {
  margin-top: 40px;
}

.mgT45 {
  margin-top: 45px;
}

.mgT50 {
  margin-top: 50px;
}

.mgT60 {
  margin-top: 60px;
}

.mgT80 {
  margin-top: 80px;
}

.mgR0 {
  margin-right: 0px;
}

.mgR5 {
  margin-right: 5px;
}

.mgR10 {
  margin-right: 10px;
}

.mgR15 {
  margin-right: 15px;
}

.mgR20 {
  margin-right: 20px;
}

.mgR25 {
  margin-right: 25px;
}

.mgR30 {
  margin-right: 30px;
}

.mgR35 {
  margin-right: 35px;
}

.mgR40 {
  margin-right: 40px;
}

.mgR45 {
  margin-right: 45px;
}

.mgR50 {
  margin-right: 50px;
}

.mgB0 {
  margin-bottom: 0px;
}

.mgB5 {
  margin-bottom: 5px;
}

.mgB10 {
  margin-bottom: 10px;
}

.mgB15 {
  margin-bottom: 15px;
}

.mgB20 {
  margin-bottom: 20px;
}

.mgB25 {
  margin-bottom: 25px;
}

.mgB30 {
  margin-bottom: 30px;
}

.mgB35 {
  margin-bottom: 35px;
}

.mgB40 {
  margin-bottom: 40px;
}

.mgB45 {
  margin-bottom: 45px;
}

.mgB50 {
  margin-bottom: 50px;
}

.mgB60 {
  margin-bottom: 60px;
}

.mgB100 {
  margin-bottom: 100px;
}

.mgL0 {
  margin-left: 0px;
}

.mgL5 {
  margin-left: 5px;
}

.mgL10 {
  margin-left: 10px;
}

.mgL15 {
  margin-left: 15px;
}

.mgL20 {
  margin-left: 20px;
}

.mgL25 {
  margin-left: 25px;
}

.mgL30 {
  margin-left: 30px;
}

.mgL35 {
  margin-left: 35px;
}

.mgL40 {
  margin-left: 40px;
}

.mgL45 {
  margin-left: 45px;
}

.mgL50 {
  margin-left: 50px;
}

.mgL55 {
  margin-left: 55px;
}

.mgL60 {
  margin-left: 60px;
}

.mgL65 {
  margin-left: 65px;
}

.mgL70 {
  margin-left: 70px;
}

.mgL75 {
  margin-left: 75px;
}

.mgL80 {
  margin-left: 80px;
}

.mgL85 {
  margin-left: 85px;
}

.mgL90 {
  margin-left: 90px;
}

.mgL95 {
  margin-left: 95px;
}

.mgL100 {
  margin-left: 100px;
}

.mgL105 {
  margin-left: 105px;
}

.mgL110 {
  margin-left: 110px;
}

.mgL115 {
  margin-left: 115px;
}

.mgL120 {
  margin-left: 120px;
}

/*=====================================
【modify.scss__padding】
======================================*/
.pdT0 {
  padding-top: 0px;
}

.pdT5 {
  padding-top: 5px;
}

.pdT10 {
  padding-top: 10px;
}

.pdT15 {
  padding-top: 15px;
}

.pdT20 {
  padding-top: 20px;
}

.pdT25 {
  padding-top: 25px;
}

.pdT30 {
  padding-top: 30px;
}

.pdT35 {
  padding-top: 35px;
}

.pdT40 {
  padding-top: 40px;
}

.pdT45 {
  padding-top: 45px;
}

.pdT50 {
  padding-top: 50px;
}

.pdR0 {
  padding-right: 0px;
}

.pdR5 {
  padding-right: 5px;
}

.pdR10 {
  padding-right: 10px;
}

.pdR15 {
  padding-right: 15px;
}

.pdR20 {
  padding-right: 20px;
}

.pdR25 {
  padding-right: 25px;
}

.pdR30 {
  padding-right: 30px;
}

.pdR35 {
  padding-right: 35px;
}

.pdR40 {
  padding-right: 40px;
}

.pdR45 {
  padding-right: 45px;
}

.pdR50 {
  padding-right: 50px;
}

.pdB0 {
  padding-bottom: 0px;
}

.pdB5 {
  padding-bottom: 5px;
}

.pdB10 {
  padding-bottom: 10px;
}

.pdB15 {
  padding-bottom: 15px;
}

.pdB20 {
  padding-bottom: 20px;
}

.pdB25 {
  padding-bottom: 25px;
}

.pdB30 {
  padding-bottom: 30px;
}

.pdB35 {
  padding-bottom: 35px;
}

.pdB40 {
  padding-bottom: 40px;
}

.pdB45 {
  padding-bottom: 45px;
}

.pdB50 {
  padding-bottom: 50px;
}

.pdL0 {
  padding-left: 0px;
}

.pdL5 {
  padding-left: 5px;
}

.pdL10 {
  padding-left: 10px;
}

.pdL15 {
  padding-left: 15px;
}

.pdL20 {
  padding-left: 20px;
}

.pdL25 {
  padding-left: 25px;
}

.pdL30 {
  padding-left: 30px;
}

.pdL35 {
  padding-left: 35px;
}

.pdL40 {
  padding-left: 40px;
}

.pdL45 {
  padding-left: 45px;
}

.pdL50 {
  padding-left: 50px;
}

/*=====================================
【modify.scss__responsive__sp,tab】
======================================*/
.r-sp {
  display: block;
}

.r-pc {
  display: none;
}

/*=====================================
【modify.scss__responsive__pc】
======================================*/
@media screen and (min-width: 940px) {
  .r-pc {
    display: block;
  }
  .r-sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */