@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

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

body {
  min-height: 100vh;
}

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

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

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

:root {
  scroll-behavior: smooth;
  scroll-padding-top: 0px; /* ヘッダーの高さぶん */
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
}

body {
  margin: auto;
  width: 100%;
  max-width: 1440px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /*Chrome,Safari*/
  -ms-text-size-adjust: 100%; /*EgdeMobile*/
  -moz-text-size-adjust: 100%; /*firefox*/
  font-feature-setting: "palt"; /* カーニング（文字詰め） */
  font-size: 1.25rem;
}

section {
  max-width: 1440px;
  margin: 50px auto;
}

img {
  max-width: 100%; /* アスペクト比を維持して流動的にサイズ変更を可能に */
  height: auto; /* 上と同じ */
  vertical-align: middle; /* 画像下の余白除去 */
  font-style: italic; /* altテキストを斜体に */
  background-repeat: no-repeat; /* LQIP用 */
  background-size: cover; /* LQIP用 */
  shape-margin: 0.75rem; /* 回り込みシェイプ用 */
}

/* 共通 */
.flex {
  display: flex;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.sp-only {
  display: none;
}

.lg-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .lg-only {
    display: block;
  }
}
@media (max-width: 480px) {
  .sp-only {
    display: block;
  }
  .lg-only {
    display: none;
  }
}
/* フッター */
.footer {
  background-color: #333;
  color: #fff;
  padding: 1.5rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-top .company-info {
  flex: 1;
}
.footer-top .footer-menu,
.footer-top .footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

r .footer-bottom {
  margin-block-start: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-top .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-block: 30px;
  }
}
/* ヘッダー */
.header {
  display: block grid;
  grid-template-columns: minmax(200px, 1fr) auto max-content;
  justify-self: stretch;
  background: color-mix(in srgb, #000 80%, transparent);
  color: color-mix(in srgb, #fff, transparent);
}
.header > .contact-button {
  justify-self: end;
}
.header .logo {
  font-size: 1.5rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header .logo {
    inline-size: 40%;
  }
}
.header .logo img {
  display: block;
  margin-inline: 20px;
  margin-block: 10px;
  inline-size: min(180px, 75%);
  block-size: auto;
}
.header .nav ul {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-block: revert;
}
@media (min-width: 1025px) {
  .header .nav ul {
    justify-content: end;
    margin-block: 0;
    height: 100% !important;
  }
}
.header .nav ul a {
  color: #fff;
  text-decoration: none;
  padding-inline: 2rem;
}
.header .nav ul a:hover {
  color: #f7f7f7;
  text-decoration: underline;
}
.header .contact-button {
  background-color: #1b5e00;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.menu-icon {
  display: none;
}

/* メディアクエリ（レスポンシブ対応） */
@media (max-width: 767px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav ul {
    display: none;
    flex-direction: column;
    gap: 0 !important;
    background-color: #333;
    inline-size: 100%;
    position: absolute;
    inset-block-start: 0;
    right: -100%;
    transition: right 0.3s;
    z-index: 10;
    padding-inline: 30px;
    height: 100svh;
  }
  .nav ul.activemenu {
    right: 0;
    margin: 0 !important;
    padding-block-start: 100px !important;
  }
  .nav ul a {
    display: block;
    inline-size: 100%;
    padding: 1rem 0;
  }
  /* ハンバーガーメニューボタン */
  .menu-icon {
    display: block;
    cursor: pointer;
    margin-inline-end: 0;
    z-index: 100;
  }
}
.pic-container {
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  background-color: #fefefe;
}

.menu-line {
  position: relative;
  width: 50px;
  height: 42px;
  cursor: pointer;
}

.menu-line span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.menu-line,
.menu-line span {
  display: block;
  transition: all 0.5s;
}

.menu-line span:nth-of-type(1) {
  top: 0;
}

.menu-line span:nth-of-type(2) {
  top: 20px;
}

.menu-line span:nth-of-type(3) {
  bottom: 0;
}

.menu-icon.activemenu .menu-line::before {
  position: absolute;
  top: -19px;
  left: -15px;
  background-color: #eee;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  content: "";
}

.menu-icon.activemenu .menu-line span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
  background-color: #353535;
}

.menu-icon.activemenu .menu-line span:nth-of-type(2) {
  opacity: 0;
}

.menu-icon.activemenu .menu-line span:nth-of-type(3) {
  transform: translateY(-20px) rotate(45deg);
  background-color: #353535;
}

/* ファーストビュー */
.first-view,
.contact {
  position: relative;
  text-align: center;
  color: #fff;
}
.first-view img,
.contact img {
  inline-size: 100%;
  block-size: 400px;
  filter: brightness(0.3);
  object-fit: cover;
}
.first-view .overlay,
.contact .overlay {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  translate: -50% -50%;
  inline-size: min(1000px, 100%);
}
.first-view .overlay h1,
.contact .overlay h1 {
  font-size: clamp(1.6rem, -0.4rem + 4.167vw, 4.6rem);
  animation: 2s fadeintitle 0.9s forwards;
  opacity: 0;
}
.first-view .overlay h1 span,
.contact .overlay h1 span {
  display: block;
  font-size: 1.3rem;
}
.first-view .overlay p,
.contact .overlay p {
  animation: 2s fadeintitle 1.9s forwards;
  opacity: 0;
  font-size: clamp(0.9rem, 0.3rem + 1.25vw, 1.8rem);
  margin-block-start: 30px;
}

.first-view .overlay {
  text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.8);
}

@keyframes fadeintitle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* セクション */
.section:not(.contact),
main {
  padding: 2rem;
}
@media (min-width: 1025px) {
  .section:not(.contact),
  main {
    padding-inline: 5rem;
  }
}
.section:not(.contact):nth-child(even),
main:nth-child(even) {
  background-color: #f7f7f7;
}
.section:not(.contact) .details,
main .details {
  inline-size: fit-content;
  margin-inline: auto;
}
.section:not(.contact) .details a,
main .details a {
  padding-inline: 4em;
}

/* 事業内容 */
.business .grid {
  background-color: color-mix(in srgb, #f7f7f7 80%, transparent);
}
@media (min-width: 1025px) {
  .business .grid {
    padding: 40px;
  }
}
.business ul {
  list-style-type: disc;
  margin-block-start: 1rem;
  margin-inline-start: 2em;
}

/* 事業所概要 */
.content {
  display: block grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  margin-inline: auto;
}
@media (min-width: 1025px) {
  .content {
    gap: 5rem;
  }
}
.content img {
  inline-size: min(300px, 100%);
  block-size: auto;
}
@media (min-width: 1025px) {
  .content .text {
    padding-inline: 2rem;
  }
}
.content p {
  margin-block-end: 2rem;
}
.content ul {
  list-style-type: disc;
  margin-inline-start: 1em;
}
.content ul li {
  margin-block-start: 0rem;
}

@media (max-width: 767px) {
  /* セクションの縦並び表示 */
  .grid {
    grid-template-columns: 1fr;
  }
  .content {
    /* セクションの縦並び表示 */
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .content img {
    order: -1;
  }
}
/* 
事業所概要ページ
*/
.profile,
.overview {
  background-color: #f7f7f7;
}
.profile ul,
.overview ul {
  list-style-type: disc;
  margin-inline-start: 1em;
}
.profile ul li,
.overview ul li {
  margin-block-start: 0rem;
}

/* 代表者コメントセクション */
.profile .content {
  gap: 3rem;
}
.profile .content ol {
  list-style-type: decimal;
  margin-inline-start: 1em;
  margin-block-end: 1em;
}
.profile .content ol li {
  margin-block-start: 0rem;
}
.profile img {
  inline-size: min(350px, 100%);
  block-size: auto;
}

/* 事務所概要セクション */
.table-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1025px) {
  .table-container {
    padding-inline: 2rem;
  }
}

.row {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
}

.cell {
  padding-inline: 1rem;
  padding-block: 0.4rem;
}
.cell.title {
  font-weight: bold;
  inline-size: 20%;
}
.cell.content {
  inline-size: 80%;
}

/* メディアクエリ（レスポンシブ対応） */
@media (max-width: 767px) {
  .profile .container {
    align-items: center;
  }
  .profile img {
    max-width: 100%;
  }
  .table-container .row {
    flex-direction: column;
  }
  .cell.title, .cell.content {
    inline-size: 100%;
  }
}
/*  
事業内容ページ
*/
/* 事業カテゴリセクション */
.category-section {
  margin-block-start: 2rem;
  padding: 2rem 1rem;
  /* メディアクエリ（レスポンシブ対応） */
}
.category-section .category-header {
  text-align: center;
  margin-block-end: 3rem;
  padding: 2rem 1rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
}
.category-section h3 {
  font-size: clamp(1.6rem, 0.667rem + 1.944vw, 3rem);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.category-section dl {
  padding-inline: 10px;
}
.category-section dt {
  font-weight: bold;
  margin-block-start: 3rem;
  font-size: 1.5rem;
}
.category-section dd {
  margin-inline-start: 1rem;
  margin-block-start: 0.5rem;
}
@media (max-width: 767px) {
  .category-section category-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .category-section category-nav a {
    inline-size: calc(50% - 1rem);
    text-align: center;
  }
  .category-section .category-header {
    padding: 1.5rem 1rem;
  }
  .category-section dl {
    margin: 0.5rem 0;
  }
  .category-section dt {
    margin-block-start: 0.5rem;
  }
}

/* 記事一覧 */
.blog .card {
  position: relative;
}
.blog .card span {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  color: #fff;
  background-color: #1b5e00;
  display: inline-block;
  padding-inline: 0.5em;
  z-index: 2;
}
.blog .card p.date {
  margin-block: 10px;
  font-size: 0.9rem;
}
.blog .card a div {
  overflow: hidden;
}
.blog .card a div img {
  transition: 0.5s all;
}
.blog .card a:hover img {
  transition: 0.5s all linear;
  transform: scale(1.2, 1.2);
}

.article {
  overflow: hidden;
}
.article article {
  inline-size: min(1000px, 100%);
  padding-inline: 2rem;
  margin-inline: auto;
}
.article article img {
  inline-size: fit-content;
  margin-inline: auto;
  margin-block: 10px 20px;
}
.article article p {
	margin-block: 20px;
}
.article .category-list {
  display: block flex;
  justify-content: center;
  align-items: center;
	
	& > li {
		font-weight: bold;
	}
}
.article article h3,
.article article h4 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.article article h3 {
  font-size: clamp(1.6rem, 0.667rem + 1.944vw, 3rem);
}
.article article h4 {
  font-size: clamp(1.4rem, 0.733rem + 1.389vw, 2.4rem);
}

/* お問い合わせ */
/* メインコンテナ */
.contact-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-container p {
  margin-block: 10px;
}
.contact-container .required-notice {
  margin-block: 10px;
  font-size: 0.9rem;
}

/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: bold;
  margin-block-end: 0.5rem;
}
.form-group label.required::after {
  content: "*";
  color: red;
  margin-inline-start: 4px;
}
.form-group input,
.form-group textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1b5e00;
  box-shadow: 0 0 4px rgba(0, 128, 0, 0.5);
}

/* ボタン */
.submit-button {
  padding: 0.75rem;
  font-size: 1.1rem;
  background-color: #1b5e00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}
.submit-button:hover {
  background-color: #005000;
}

/* メディアクエリ（レスポンシブ対応） */
@media (max-width: 767px) {
  .contact-container {
    padding: 1rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }
  .submit-button {
    font-size: 1rem;
  }
}
.contact {
  color: #000;
  font-size: clamp(1.6rem, 1.2rem + 0.833vw, 2.2rem);
}
.contact img {
  filter: brightness(0.7) blur(2px);
}
.contact .overlay a {
  display: inline-block;
  padding-inline: 2rem;
  padding-block: 1rem;
  background: color-mix(in srgb, var(--_bg-color, #fff) var(--_opacity, 80%), transparent);
  color: var(--_text-color, #1b5e00);
  border: 1px solid #1b5e00;
  text-wrap: nowrap;
}
.contact .overlay a:hover {
  --_bg-color: #1b5e00;
  --_opacity: 100%;
  --_text-color: #fff;
}
@media (max-width: 767px) {
  .contact .overlay a {
    font-size: 1rem;
  }
}

/* 資産運用 */
@media (min-width: 1025px) {
  .assets section {
    margin-inline: 20px;
  }
}
@media (min-width: 1025px) {
  .assets .schedule {
    margin-block-end: 100px;
  }
}
.assets .schedule__flow {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1025px) {
  .assets .schedule__flow {
    margin-block-start: 20px;
  }
}
.assets .schedule__flow__list {
  padding-left: 0;
  margin-block-start: 20px;
}
.assets .schedule__flow__list > li {
  list-style-type: none;
  display: flex;
}
.assets .schedule__flow__list > li:not(:last-child) {
  margin: 0 0 80px;
}
.assets .schedule__flow__list > li .schedule__flow__list__icon {
  width: 80px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #1b5e00;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}
.assets .schedule__flow__list > li .schedule__flow__list__icon::after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 20px solid #1b5e00;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.assets .schedule__flow__list > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 90px);
}
.assets .schedule__flow__list > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #cccccc;
  position: relative;
}
.assets .schedule__flow__list > li dl dt::after {
  content: "";
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #1b5e00;
}
.assets .schedule__flow__list > li dl dd {
  margin: 0;
}
.assets .schedule__flow__list > li dl dd p {
  margin-block-end: 1em;
}

img {
  background-color: #ccc;
}

.btn {
  box-sizing: border-box;
  border: 1px solid #1b5e00;
  display: inline-flex;
  inline-size: fit-content;
  justify-content: center;
  align-items: center;
  background-color: #1b5e00;
  color: #fff;
  padding: 0.5rem;
  text-decoration: none;
  margin-block-start: 50px;
  box-shadow: 5px 5px 0px #6ca109;
  transition: 0.2s ease-in-out;
}
.btn:hover {
  background-color: #fff;
  border: 1px solid #1b5e00;
  color: #1b5e00;
  box-shadow: 5px 5px 0px #1b5e00;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

/* グリッドレイアウト */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: 1rem;
  justify-items: center;
}
.blog > .grid {
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
}

.card {
  background-color: #fff;
  padding: 1rem;
  border: 1px solid #5e5e5e;
  inline-size: 100%;
}
.card img {
  margin-inline: auto;
  inline-size: 100%;
  block-size: auto;
}
.card h3 {
  margin-block-start: 10px;
}

img.clip {
  --radius: 16px;
  clip-path: polygon(var(--radius) 0, calc(100% - var(--radius)) 0, 100% var(--radius), 100% calc(100% - var(--radius)), calc(100% - var(--radius)) 100%, calc(var(--radius)) 100%, 0 calc(100% - var(--radius)), 0 var(--radius));
}

.tr {
  text-align: right;
}

.tc {
  text-align: center;
}

.bold {
  font-weight: bold;
}

h2 {
  margin-block: 3rem;
  margin-inline: auto;
  inline-size: min(600px, 90%);
  text-align: center;
  font-size: clamp(1.6rem, 0.267rem + 2.778vw, 3.6rem);
  color: #fff;
  background-color: #1b5e00;
  padding: 0.5rem;
  position: relative;
}
@media (max-width: 767px) {
  h2 {
    margin-block-end: 1em;
  }
}
h2::before, h2::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: -30px;
  inset-block-end: 0;
  inset-inline-end: 0;
  inline-size: 50px;
  block-size: 100%;
  background-color: #1b5e00;
  transform: skewX(-15deg);
}
h2::after {
  inset-inline-start: auto;
  inset-inline-end: -30px;
  transform: skewX(-15deg);
}

.business h3,
.company h3,
.assets h3,
.privacy h3,
.article h3 {
  display: block;
  margin-block: 30px;
  padding: 0.5em 10%;
  border: 3px solid #6ca109;
  border-left: none;
  border-right: none;
  background-color: color-mix(in srgb, #6ca109 20%, #fff);
  position: relative;
  z-index: 10;
}
.business .business h3:nth-of-type(2n),
.business .company h3:nth-of-type(2n),
.business .assets h3:nth-of-type(2n),
.business .privacy h3:nth-of-type(2n),
.company .business h3:nth-of-type(2n),
.company .company h3:nth-of-type(2n),
.company .assets h3:nth-of-type(2n),
.company .privacy h3:nth-of-type(2n),
.assets .business h3:nth-of-type(2n),
.assets .company h3:nth-of-type(2n),
.assets .assets h3:nth-of-type(2n),
.assets .privacy h3:nth-of-type(2n),
.privacy .business h3:nth-of-type(2n),
.privacy .company h3:nth-of-type(2n),
.privacy .assets h3:nth-of-type(2n),
.privacy .privacy h3:nth-of-type(2n),
.article .business h3:nth-of-type(2n),
.article .company h3:nth-of-type(2n),
.article .assets h3:nth-of-type(2n),
.article .privacy h3:nth-of-type(2n) {
  text-align: right;
}

.business h3 {
  background-color: color-mix(in srgb, #1b5e00 70%, transparent);
}

.assets h4 {
  border-left: 5px solid #6ca109;
  padding-inline: 10px;
  padding-block: 10px;
  margin-block-start: 30px;
}
.assets .link {
  text-decoration: underline;
  color: #1b5e00;
}
.assets .link:hover {
  text-decoration: none;
  color: #6ca109;
}
.assets section:not(.contact):not(.schedule) div,
.assets section:not(.contact):not(.schedule) p {
  margin-block: 10px;
}
@media (min-width: 1025px) {
  .assets section:not(.contact):not(.schedule) div,
  .assets section:not(.contact):not(.schedule) p {
    margin-inline: 40px;
  }
}
.assets section:not(.contact):not(.schedule):not(.schedule) ul {
  display: block flex;
  margin-inline-start: 40px;
  gap: 10px;
  flex-wrap: wrap;
}
.assets section:not(.contact):not(.schedule):not(.schedule) ul li {
  border: 1px solid #6ca109;
  padding: 0.5em 1em;
  background-color: color-mix(in srgb, #6ca109 20%, #fff);
}
.assets section:not(.contact):not(.schedule) .tax_advisor {
  display: inline-block;
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 60%, color-mix(in srgb, #6ca109, transparent) 60%);
  margin-block-end: 5px;
}
.marker + p {
  font-size: 1rem;
}

.flex__wrapper {
  display: flex;
}
@media (min-width: 1025px) {
  .flex__wrapper {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .flex__wrapper {
    flex-direction: column;
  }
}
.flex__wrapper div {
  flex: min(500px, 100%);
}
.flex__wrapper div.grid {
  flex: calc(100% - 100px);
  position: relative;
}
@media (max-width: 767px) {
  .flex__wrapper div.grid {
    inset-block-start: -100px;
  }
}
.flex__wrapper div.grid::before {
  position: absolute;
  content: "";
  inline-size: 200px;
  block-size: 100%;
  inset-inline-start: -100px;
  background-color: inherit;
  z-index: -1;
}
@media (max-width: 767px) {
  .flex__wrapper div.grid::before {
    inline-size: 100%;
    height: 50px;
    inset-block-start: -50px;
    inset-inline-start: 0;
  }
}
@media (min-width: 1025px) {
  .flex__wrapper div.grid .card {
    position: relative;
    inset-inline-start: -25px;
  }
}
@media (min-width: 1025px) {
  .flex__wrapper:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.flex__wrapper:nth-of-type(2n) div.grid::before {
  inset-inline-start: unset;
  inset-inline-end: -100px;
}
@media (max-width: 767px) {
  .flex__wrapper:nth-of-type(2n) div.grid::before {
    inset-inline-end: 0;
  }
}
@media (min-width: 1025px) {
  .flex__wrapper:nth-of-type(2n) div.grid .card {
    position: relative;
    inset-inline-start: 25px;
  }
}

ul.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-block: 30px;
}
ul.category-list a li {
  color: #000;
  padding-block: 0.3rem;
  padding-inline: 1rem;
  background-color: #6ca109;
  border: 1px solid #6ca109;
  clip-path: inset(0 0 round 50px);
}
ul.category-list a li:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #6ca109;
  border-radius: 50px;
}

.business .price {
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1b5e00;
  border-bottom: 1px solid #1b5e00;
  margin-block-start: 50px;
  padding-block: 10px;
  padding-inline: 1em;
}
.business .price div {
  margin-block: 10px;
}
@media (max-width: 767px) {
  .business .price {
    flex-direction: column;
  }
}

.contact h2 {
  color: #fff;
}

.red {
  color: red;
}

.mbs-2 {
  margin-block-start: 2rem;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.js-scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.js-scroll_up.active {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
.js-scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.js-scroll_left.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
.js-scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.js-scroll_right.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}/*# sourceMappingURL=style.css.map */