@charset "UTF-8";
/*
Theme Name: 伊織TOKYO LP
Author: Yucco.I
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* 
========================================
リセット＆ベーススタイル 
========================================
*/
:root {
  /* カラー */
  --primary: #1E2D75;
  --secondary: #2a3fa5;
  --accent: #00bd39;
  --light: #e9f5ff;
  --dark: #121517;
  --white: #ffffff;
  --black: #000000;
  --red: #D30000;
  --orange: #FF9D00;
  --yellow: #FFEA04;
  --green: #8CD21D;
  --blue: #2991DB;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --body-color: var(--gray-800);
  --body-bg: var(--white);
  --link-color: var(--primary);
  --link-hover-color: #2a3fa5;
  /* タイポグラフィ */
  --font-family-sans-serif: "Noto Sans JP", "Noto Sans", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Yu Gothic", "游ゴシック", "Meiryo", Arial, sans-serif;
  --font-family-serif: "Noto Serif JP", "Noto Serif", "Times New Roman", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "游明朝", "Yu Mincho", "MS PMincho", serif;
  --font-family-base: var(--font-family-sans-serif);
  --icon-material: "Material Symbols Outlined";
  --icon-awesome: "Font Awesome 5 Free";
  --font-size-base: 1rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: var(--font-size-base);
  --font-size-md: 1.25rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 1.75rem;
  --font-size-xxl: 2rem;
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: var(--font-size-lg);
  --font-size-h4: var(--font-size-md);
  --font-size-h5: var(--font-size-base);
  --font-size-h6: 0.875rem;
  --line-height-base: 1.6;
  --line-height-sm: 1.4;
  --line-height-lg: 1.3;
  /* トランジション */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  /* スペーシング */
  --container-max: 1000px;
  --container-gutter: 30px;
  --container-padding-x: calc(var(--container-gutter) / 2);
  --container-padding: 0 var(--container-padding-x);
  --section-padding-y: 5rem;
  --section-padding: var(--section-padding-y) 0;
}
@media (max-width: 767px) {
  :root {
    --section-padding-y: 2.5rem;
  }
}
:root {
  /* ボックスシャドウ */
  --box-shadow-sm: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.05);
  --box-shadow-md: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 0.625rem 0.9375rem rgba(0, 0, 0, 0.2);
}

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

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 1rem;
}

body {
  font-family: var(--font-family-base);
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: var(--line-height-base);
  min-width: 320px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: inherit;
  margin-bottom: 1rem;
  line-height: var(--line-height-sm);
}

h1,
.h1 {
  font-size: var(--font-size-h1);
}

h2,
.h2 {
  font-size: var(--font-size-h2);
}

h3,
.h3 {
  font-size: var(--font-size-h3);
}

h4,
.h4 {
  font-size: var(--font-size-h4);
}

h5,
.h5 {
  font-size: var(--font-size-h5);
}

h6,
.h6 {
  font-size: var(--font-size-h6);
}

a {
  text-decoration: none;
  color: var(--link-color);
  transition: var(--transition-base);
}

small,
.small {
  font-size: 80%;
}

em,
strong,
.strong {
  font-weight: bolder;
}

a {
  color: var(--link-color);
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: var(--link-hover-color);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}
p + p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
p:last-child {
  margin-bottom: 1rem;
}

img {
  display: block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}
/********追加*************/
.img-center img{
	margin:0 auto;
}

figure {
  display: block;
  margin-block: 0;
  margin-inline: 0;
  padding: 0;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
}

ul,
ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  font-weight: 600;
}
dl dd {
  margin-left: 1rem;
}

table {
  border-collapse: collapse;
  margin-bottom: 1rem;
  color: inherit;
}
table th, table td {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 0;
  border-top: 1px solid var(--gray-300);
}

blockquote {
  position: relative;
  padding: 1rem 1rem 1rem 3.75rem;
  color: var(--body-color);
  background: var(--gray-200);
  border: 1px solid var(--gray-400);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  width: 100%;
}
blockquote::before {
  position: absolute;
  display: inline-block;
  content: "format_quote";
  top: 0px;
  left: 15px;
  font-family: var(--icon-material);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-600);
  transform: scaleX(-1);
}
blockquote p:last-child {
  margin-bottom: 0;
}

cite {
  display: inline-block;
  font-style: italic;
  font-size: var(--font-size-sm);
  text-align: right;
}
cite::before {
  content: "－ ";
}

pre {
  padding: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--gray-900);
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  overflow-x: auto;
}

kbd {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: var(--font-size-xs);
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  background: var(--gray-900);
  border-radius: 3px;
}

address {
  font-style: normal;
}

mark {
  color: inherit;
  background: linear-gradient(transparent 50%, #ffe680 50%);
  padding: 0 2px;
}

textarea {
  line-height: var(--line-height-base);
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
input[type=search],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime-local],
input[type=color],
textarea,
select {
  padding: 0.5rem;
  max-width: 100%;
  font-size: var(--font-size-base);
  color: var(--body-color);
  background-color: var(--white);
  border: 1px solid var(--gray-400);
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=url]:hover,
input[type=url]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=date]:hover,
input[type=date]:focus,
input[type=month]:hover,
input[type=month]:focus,
input[type=week]:hover,
input[type=week]:focus,
input[type=time]:hover,
input[type=time]:focus,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
input[type=color]:hover,
input[type=color]:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 10px -5px var(--primary);
}
input[type=text]:disabled,
input[type=text] .disabled,
input[type=email]:disabled,
input[type=email] .disabled,
input[type=password]:disabled,
input[type=password] .disabled,
input[type=number]:disabled,
input[type=number] .disabled,
input[type=tel]:disabled,
input[type=tel] .disabled,
input[type=url]:disabled,
input[type=url] .disabled,
input[type=search]:disabled,
input[type=search] .disabled,
input[type=date]:disabled,
input[type=date] .disabled,
input[type=month]:disabled,
input[type=month] .disabled,
input[type=week]:disabled,
input[type=week] .disabled,
input[type=time]:disabled,
input[type=time] .disabled,
input[type=datetime-local]:disabled,
input[type=datetime-local] .disabled,
input[type=color]:disabled,
input[type=color] .disabled,
textarea:disabled,
textarea .disabled,
select:disabled,
select .disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
input[type=text]::placeholder, input[type=text]::-webkit-input-placeholder, input[type=text]::-moz-placeholder, input[type=text]::-ms-input-placeholder,
input[type=email]::placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=email]::-moz-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=password]::placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=password]::-moz-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=number]::placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=number]::-moz-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=tel]::placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=tel]::-moz-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=url]::placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=url]::-moz-placeholder,
input[type=url]::-ms-input-placeholder,
input[type=search]::placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=search]::-moz-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=date]::placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=date]::-moz-placeholder,
input[type=date]::-ms-input-placeholder,
input[type=month]::placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=month]::-moz-placeholder,
input[type=month]::-ms-input-placeholder,
input[type=week]::placeholder,
input[type=week]::-webkit-input-placeholder,
input[type=week]::-moz-placeholder,
input[type=week]::-ms-input-placeholder,
input[type=time]::placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=time]::-moz-placeholder,
input[type=time]::-ms-input-placeholder,
input[type=datetime-local]::placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=datetime-local]::-ms-input-placeholder,
input[type=color]::placeholder,
input[type=color]::-webkit-input-placeholder,
input[type=color]::-moz-placeholder,
input[type=color]::-ms-input-placeholder,
textarea::placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea::-ms-input-placeholder,
select::placeholder,
select::-webkit-input-placeholder,
select::-moz-placeholder,
select::-ms-input-placeholder {
  color: var(--gray-600);
}

input[type=checkbox],
input[type=radio] {
  margin-right: 0.3125rem;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border: 2px solid var(--gray-300);
  transition: all 0.3s ease;
}

input[type=submit],
input[type=reset],
button[type=button],
button[type=submit],
button[type=reset] {
  padding: 0.5rem 1rem;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
}
input[type=submit]:hover, input[type=submit]:focus,
input[type=reset]:hover,
input[type=reset]:focus,
button[type=button]:hover,
button[type=button]:focus,
button[type=submit]:hover,
button[type=submit]:focus,
button[type=reset]:hover,
button[type=reset]:focus {
  color: var(--white);
  background: rgb(24, 36, 93.6);
  border: 1px solid rgb(24, 36, 93.6);
  cursor: pointer;
}
input[type=submit]:disabled,
input[type=submit] .disabled,
input[type=reset]:disabled,
input[type=reset] .disabled,
button[type=button]:disabled,
button[type=button] .disabled,
button[type=submit]:disabled,
button[type=submit] .disabled,
button[type=reset]:disabled,
button[type=reset] .disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

input[type=range], input[type=range]::-webkit-slider-runnable-track, input[type=range]::-moz-range-track {
  height: 8px;
  background: var(--gray-300);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input[type=range]::-webkit-slider-thumb, input[type=range]::-moz-range-thumb, input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  margin-top: -0.375rem;
  background-color: var(--primary);
  border: none;
  border-radius: 50%;
}

/* 
========================================
共通クラス
========================================
*/
.siteframe {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.container {
  padding: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-max);
}
.container-fluid {
  padding: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}

.fs-base {
  font-size: var(--font-size-base);
}

.fs-xs {
  font-size: var(--font-size-xs);
}

.fs-sm {
  font-size: var(--font-size-sm);
}

.fs-md {
  font-size: var(--font-size-md);
}

.fs-lg {
  font-size: var(--font-size-lg);
}

.fs-xl {
  font-size: var(--font-size-xl);
}

.fs-xxl {
  font-size: var(--font-size-xxl);
}

.fs-h1 {
  font-size: var(--font-size-h1);
}

.fs-h2 {
  font-size: var(--font-size-h2);
}

.fs-h3 {
  font-size: var(--font-size-h3);
}

.fs-h4 {
  font-size: var(--font-size-h4);
}

.fs-h5 {
  font-size: var(--font-size-h5);
}

.fs-h6 {
  font-size: var(--font-size-h6);
}

.text-left {
  text-align: left;
}

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

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

.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.accent {
  color: var(--accent);
}

.light {
  color: var(--light);
}

.dark {
  color: var(--dark);
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

.red {
  color: var(--red);
}

.orange {
  color: var(--orange);
}

.yellow {
  color: var(--yellow);
}

.green {
  color: var(--green);
}

.blue {
  color: var(--blue);
}

.gray-50 {
  color: var(--gray-50);
}

.gray-100 {
  color: var(--gray-100);
}

.gray-200 {
  color: var(--gray-200);
}

.gray-300 {
  color: var(--gray-300);
}

.gray-400 {
  color: var(--gray-400);
}

.gray-500 {
  color: var(--gray-500);
}

.gray-600 {
  color: var(--gray-600);
}

.gray-700 {
  color: var(--gray-700);
}

.gray-800 {
  color: var(--gray-800);
}

.gray-900 {
  color: var(--gray-900);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--dark);
}

.bg-white {
  background-color: var(--white);
}

.bg-black {
  background-color: var(--black);
}

.bg-red {
  background-color: var(--red);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-green {
  background-color: var(--green);
}

.bg-blue {
  background-color: var(--blue);
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.bg-gray-200 {
  background-color: var(--gray-200);
}

.bg-gray-300 {
  background-color: var(--gray-300);
}

.bg-gray-400 {
  background-color: var(--gray-400);
}

.bg-gray-500 {
  background-color: var(--gray-500);
}

.bg-gray-600 {
  background-color: var(--gray-600);
}

.bg-gray-700 {
  background-color: var(--gray-700);
}

.bg-gray-800 {
  background-color: var(--gray-800);
}

.bg-gray-900 {
  background-color: var(--gray-900);
}

.w-0 {
  width: 0;
}

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

.h-0 {
  width: 0;
}

.h-5 {
  width: 5%;
}

.h-10 {
  width: 10%;
}

.h-15 {
  width: 15%;
}

.h-20 {
  width: 20%;
}

.h-25 {
  width: 25%;
}

.h-30 {
  width: 30%;
}

.h-35 {
  width: 35%;
}

.h-40 {
  width: 40%;
}

.h-45 {
  width: 45%;
}

.h-50 {
  width: 50%;
}

.h-55 {
  width: 55%;
}

.h-60 {
  width: 60%;
}

.h-65 {
  width: 65%;
}

.h-70 {
  width: 70%;
}

.h-75 {
  width: 75%;
}

.h-80 {
  width: 80%;
}

.h-85 {
  width: 85%;
}

.h-90 {
  width: 90%;
}

.h-95 {
  width: 95%;
}

.h-100 {
  width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.post-list {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}
.post-list__item {
  margin-top: 2.5rem;
}
.post-list__item:first-child {
  margin-top: 0;
}
@media (max-width: 1023px) {
  .post-list__item {
    margin-top: 1.5rem;
  }
}

.post-card {
  width: 100%;
  padding: 1rem;
  color: inherit;
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-300);
  box-shadow: var(--box-shadow-sm);
}
.post-card__thumb {
  width: 100%;
}
.post-card__thumb a:hover figure, .post-card__thumb a:focus figure {
  opacity: 0.85;
}
.post-card__thumb figure {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.post-card__thumb figure::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.post-card__thumb figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.post-card__content {
  width: 100%;
  margin-top: 1rem;
}
.post-card__post-published {
  font-size: var(--font-size-xs);
}
.post-card__post-title {
  margin-bottom: 1rem;
}
.post-card__post-title a {
  display: flex;
  width: 100%;
  text-decoration: underline;
}
.post-card__readmore {
  margin-top: 1rem;
  text-align: right;
}
.post-card__readmore a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--secondary);
}
.post-card__readmore a::before {
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  content: "";
  width: calc(100% - 0.25rem);
  height: calc(100% - 0.25rem);
  border: 1px solid var(--white);
}
.post-card__readmore a:hover, .post-card__readmore a:focus {
  background: var(--primary);
}

.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--secondary);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(100px);
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .totop {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
.totop:hover, .totop:focus {
  color: var(--white);
  background: rgb(51.2217391304, 76.8326086957, 201.2282608696);
}
.totop.is-show {
  opacity: 1;
  transform: translateY(0);
}
.totop.is-hide {
  opacity: 0;
  transform: translateY(24px);
}
@media (max-width: 767px) {
  .totop {
    right: 10px;
    bottom: 70px;
    transform: translateX(100px);
  }
  .totop.is-show {
    transform: translateX(0);
  }
  .totop.is-hide {
    opacity: 0;
    transform: translateX(100px);
  }
}

.fixed-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 500;
  background: var(--white);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .fixed-contact-bar {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
@media (min-width: 768px) {
  .fixed-contact-bar {
    display: none;
  }
}
.fixed-contact-bar__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
}
.fixed-contact-bar__link i {
  font-size: 1.125rem;
  line-height: 1;
}
.fixed-contact-bar__link--tel {
  color: var(--white);
  background: #00a800;
}
.fixed-contact-bar__link--tel:hover, .fixed-contact-bar__link--tel:focus {
  color: var(--white);
}
.fixed-contact-bar__link--email {
  color: var(--white);
  background: #E00025;
}
.fixed-contact-bar__link--email:hover, .fixed-contact-bar__link--email:focus {
  color: var(--white);
}
.fixed-contact-bar__link:active {
  opacity: 0.85;
}
.fixed-contact-bar__label {
  display: inline-block;
}

.cta-cards {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-500);
  box-shadow: var(--box-shadow-lg);
}
.cta-cards__title {
  display: flex;
  justify-content: center;
}
.cta-cards__title img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.cta-cards__subtitle {
  display: block;
}
.cta-cards__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.cta-cards__link {
  text-decoration: none;
  color: var(--body-color);
}
.cta-cards__link:hover .cta-cards__btn, .cta-cards__link:focus .cta-cards__btn {
  transform: translateY(-2px);
  box-shadow: bar(--box-shadow-md);
}
.cta-cards__link:hover .cta-cards__btn--tel, .cta-cards__link:focus .cta-cards__btn--tel {
  border-top-color: #0686b2;
}
.cta-cards__link:hover .cta-cards__btn--web, .cta-cards__link:focus .cta-cards__btn--web {
  border-top-color: #b02b2b;
}
.cta-cards__link:hover .cta-cards__btn--line, .cta-cards__link:focus .cta-cards__btn--line {
  border-top-color: #007a33;
}
.cta-cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #f2f6fc);
  padding: 1.8rem 1.4rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.cta-cards__item--tel {
  border-color: #05608c;
}
.cta-cards__item--web {
  border-color: #d9534f;
}
.cta-cards__item--line {
  border-color: #00c300;
}
.cta-cards__item-title {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}
.cta-cards__item-text {
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-top: auto;
}
.cta-cards__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.625rem;
  border-radius: 0.6rem;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  min-width: 220px;
}
.cta-cards__btn i {
  margin-right: 0.6rem;
  font-size: 1.625rem;
}
.cta-cards__btn--tel {
  background: #0686b2;
  border: 2px solid #05608c;
}
.cta-cards__btn--web {
  background: #d9534f;
  border: 2px solid #b02b2b;
}
.cta-cards__btn--line {
  background: #00c300;
  border: 2px solid #00a800;
}
@media (max-width: 1024px) {
  .cta-cards__items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 768px) {
  .cta-cards {
    padding: 2rem 0.8rem;
  }
  .cta-cards__items {
    grid-template-columns: 1fr;
  }
}

.content {
  overflow: hidden;
}
.content > * {
  max-width: 100% !important;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  position: relative;
  padding: 0 0.5rem 0.625rem;
  margin-bottom: 1rem;
}
.content h1::before, .content h1::after, .content h2::before, .content h2::after, .content h3::before, .content h3::after, .content h4::before, .content h4::after, .content h5::before, .content h5::after, .content h6::before, .content h6::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  height: 5px;
}
.content h1::before, .content h2::before, .content h3::before, .content h4::before, .content h5::before, .content h6::before {
  width: 20%;
  background: var(--primary);
  z-index: 1;
}
.content h1::after, .content h2::after, .content h3::after, .content h4::after, .content h5::after, .content h6::after {
  width: 100%;
  background: rgb(168.3244897959, 179.4367346939, 232.7755102041);
}

/* 
========================================
ヘッダー
========================================
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140.84px;
  padding: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--body-color);
  background: var(--white);
  z-index: 1000;
  border-bottom: 2px solid var(--secondary);
}
@media (max-width: 1023px) {
  .header {
    height: 80px;
  }
}
.header__container {
  width: 100%;
  max-width: var(--container-max);
  padding: var(--container-padding);
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .header__container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .header__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transition: padding 0.3s ease;
  }
}
.header__logo {
  display: block;
  width: clamp(6.875rem, 68.75vw, 20.625rem);
  margin: 0;
}
.header__logo a {
  transition: all 0.3s ease;
}
.header__logo a:hover, .header__logo a:focus {
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .header__logo {
    width: clamp(5.3125rem, 53.125vw, 15.9375rem);
  }
}
@media (max-width: 1023px) {
  .header__contact {
    display: none !important;
  }
}
.header__contact a img {
  width: 236px;
  height: auto;
}
@media (min-width: 1024px) {
  .header__nav-menu {
    width: 100%;
    margin-top: 1rem;
  }
}

/* 
========================================
フッター
========================================
*/
.footer {
  width: 100%;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  color: var(--white);
  background: var(--dark);
}
.footer a {
  color: var(--white);
  text-decoration: underline;
}
.footer a:hover, .footer a:focus {
  color: rgb(216.75, 216.75, 216.75);
}
.footer__privacy_policy, .footer__copyright, .footer__recaptcha-info {
  text-align: center;
  font-size: var(--font-size-xs);
}
.footer__privacy_policy + .footer__copyright {
  margin-top: 0.5rem;
}

.footer__recaptcha-info {
  margin-top: 0.5rem;
}

@media (max-width: 1023px) {
  .footer {
    padding-bottom: 4.375rem;
  }
}

/* 
========================================
メイン
========================================
*/
.main {
  flex: 1;
  margin-top: 140.84px;
}
@media (max-width: 1023px) {
  .main {
    margin-top: 80px;
  }
}

/* 
========================================
グローバルナビゲーション
========================================
*/
.nav-menu__items {
  margin: 0;
  padding: 0;
}
.nav-menu__item a {
  color: var(--body-color);
  font-weight: 500;
  font-size: var(--font-size-md);
  font-family: var(--font-family-serif);
  transition: var(--transition-base);
}
@media (max-width: 1023px) {
  .nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    transition: transform 0.6s ease;
    transform: translateX(200%);
    background: rgba(0, 0, 0, 0.15);
    z-index: 9999;
  }
  .nav-menu.is-active {
    transform: translateX(0);
  }
  .nav-menu__items {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    padding-bottom: 80px;
    list-style: none;
    background: var(--white);
    overflow: auto;
  }
  .nav-menu__item {
    width: 100%;
    border-bottom: 1px dotted var(--gray-300);
  }
  .nav-menu__item a {
    position: relative;
    display: block;
    padding: 1rem 0.5rem 1rem 1.5rem;
    font-size: var(--font-size-base);
    color: var(--body-color);
    transition: all 0.2s ease;
  }
  .nav-menu__item a::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    content: "arrow_right";
    font-family: var(--icon-material);
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    color: var(--body-color);
  }
  .nav-menu__item a:hover, .nav-menu__item a:focus {
    font-weight: 600;
    background: var(--light);
  }
  .nav-menu__item--contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-bottom: none;
    padding: 1.5rem 1rem;
  }
  .nav-menu__item--contact a {
    padding: 0;
  }
  .nav-menu__item--contact a:hover, .nav-menu__item--contact a:focus {
    background-color: unset;
  }
  .nav-menu__item--contact a::before {
    display: none;
  }
  .nav-menu__item--contact a img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .nav-menu {
    width: 100%;
  }
  .nav-menu__items {
    list-style: none;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .nav-menu__item {
    position: relative;
  }
  .nav-menu__item::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: var(--gray-300);
  }
  .nav-menu__item:nth-last-child(2)::after {
    display: none;
  }
  .nav-menu__item a {
    position: relative;
    padding: 0.75rem 1rem;
  }
  .nav-menu__item a:hover, .nav-menu__item a:focus {
    color: var(--primary);
  }
  .nav-menu__item--contact {
    display: none;
  }
}

.toggle {
  display: none;
  width: clamp(2rem, 12.5vw, 3rem);
  height: clamp(2rem, 12.5vw, 3rem);
  margin-right: 0;
  margin-left: auto;
  background-color: rgb(37.4081632653, 56.112244898, 145.8918367347);
  border: 1px solid var(--white);
  cursor: pointer;
  outline: none;
}
@media (max-width: 1023px) {
  .toggle {
    display: block;
  }
}
.toggle__lines {
  position: relative;
  width: 70%;
  height: 100%;
  margin: 0 auto;
  transition: var(--transition-base);
}
.toggle__lines span:nth-child(1),
.toggle__lines span:nth-child(2),
.toggle__lines span:nth-child(3) {
  position: absolute;
  display: block;
  left: 50%;
  width: 100%;
  height: clamp(0.0625rem, 0.3125vw, 0.09375rem);
  margin: auto;
  background-color: var(--white);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.toggle__lines span:nth-child(1) {
  top: 0.75rem;
}
.toggle__lines span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.toggle__lines span:nth-child(3) {
  bottom: 0.75rem;
}
.toggle.is-active span:nth-child(1),
.toggle.is-active span:nth-child(2),
.toggle.is-active span:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 60%;
  background: var(--white);
  transform-origin: center center;
}
.toggle.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.toggle.is-active span:nth-child(2) {
  transform: translate(-50%, -50%);
  opacity: 0;
}
.toggle.is-active span:nth-child(3) {
  bottom: unset;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 
========================================
パンくず
========================================
*/
.breadcrumb {
  width: 100%;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-300);
}
.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--container-max);
  padding: var(--container-padding);
  margin: 0 auto;
}
.breadcrumb__item {
  position: relative;
  font-size: var(--font-size-xs);
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.breadcrumb__item::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(15deg);
  display: block;
  content: "";
  width: 1px;
  height: 60%;
  background: var(--body-color);
}
.breadcrumb__item:first-child {
  padding-left: 0;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/* 
========================================
ページネーション
========================================
*/
.pagination {
  width: 100%;
  margin-top: 1.875rem;
}
.pagination__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: clamp(0.25rem, 2.5vw, 0.6rem);
  padding: 0;
  margin: 0;
}
.pagination__item {
  font-size: 1rem !important;
}
.pagination__item > a {
  color: var(--body-color);
  background: var(--gray-300);
  padding: 0.25rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.pagination__item.is-current > a {
  color: var(--white);
  background: var(--secondary);
}
.pagination__item.is-current > a:hover {
  pointer-events: none;
}
.pagination__item .material-symbols-outlined {
  font-size: 1rem !important;
}

/* 
========================================
固定ページ
========================================
*/
.page {
  width: 100%;
  margin-bottom: 5rem;
}
.page__header {
  color: var(--white);
  background: var(--secondary);
}
.page__title {
  position: relative;
  width: 100%;
  padding: clamp(2rem, 12.5vw, 5rem) 0.9375rem;
  margin-bottom: clamp(1.25rem, 12.5vw, 3.75rem);
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 10vw, 2.4rem);
}
.page__title span {
  display: inline-block;
  letter-spacing: 0.2em;
  margin-left: -0.2em;
}

/* 
========================================
投稿ページ
========================================
*/
.post {
  margin-top: 1.875rem;
  margin-bottom: 5rem;
  width: 100%;
}
.post .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.875rem;
}
@media (max-width: 1023px) {
  .post .container {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}
.post__article {
  width: 100%;
}
.post__header {
  width: 100%;
  padding: 1rem 0.5rem;
  margin-bottom: 1.5rem;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}
.post__title {
  font-weight: 600;
  font-size: var(--font-size-h2);
}
.post__date {
  display: block;
  font-size: var(--font-size-xs);
  margin-bottom: 0.625rem;
}
.post__content {
  width: 100%;
  margin-bottom: 1.5rem;
}
.post__footer {
  width: 100%;
  padding: 1rem 0.5rem;
  border-top: 1px dotted var(--gray-500);
  border-bottom: 3px solid var(--primary);
}
.post__cat, .post__tag {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
}
.post__cat-title, .post__tag-title {
  font-weight: 600;
  font-size: 0.875rem;
}
.post__cat-title::after, .post__tag-title::after {
  content: ":";
}
.post__cat-list, .post__tag-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0.625rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.post__cat a, .post__tag a {
  padding: 0.125rem 0.375rem;
  font-size: var(--font-size-xs);
  white-space: nowrap;
  line-height: 1;
  border-radius: 9999px;
}
.post__cat a:hover, .post__tag a:hover {
  opacity: 0.85;
}
.post__cat a {
  color: var(--white);
  background: var(--primary);
}
.post__tag a {
  color: var(--white);
  background: var(--accent);
}
.post__cat + .post__tag {
  margin-top: 1rem;
}
.post__navigation {
  width: 100%;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.post__nav-item a {
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--primary);
}

/* 
========================================
アーカイブページ(カテゴリページ共通)
========================================
*/
.post-archive {
  width: 100%;
  margin-bottom: 5rem;
}
.post-archive__title {
  position: relative;
  width: 100%;
  padding: clamp(2rem, 12.5vw, 5rem) 0.9375rem;
  margin-bottom: clamp(1.25rem, 12.5vw, 3.75rem);
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.2rem, 7.5vw, 2.25rem);
  line-height: var(--line-height-sm);
  color: var(--white);
  background: var(--secondary);
}
.post-archive__title span {
  display: block;
}
.post-archive__title span.post-archive__type {
  font-size: clamp(0.6rem, 3.75vw, 1.125rem);
}
.post-archive__container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.875rem;
}
@media (max-width: 1023px) {
  .post-archive__container {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}
.post-archive__result {
  width: 100%;
}
.post-archive__count {
  text-align: right;
  margin-bottom: 1rem;
}
.post-archive__count span {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: var(--font-size-xs);
  line-height: 1;
  white-space: nowrap;
  color: var(--black);
  background: var(--gray-300);
  border-radius: 9999px;
}
.post-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.post-archive__item {
  width: 100%;
}
.post-archive__item + .post-archive__item {
  margin-top: 1.25rem;
}

/* 
========================================
検索結果
========================================
*/
.search {
  width: 100%;
  margin-bottom: 5rem;
}
.search__title {
  position: relative;
  width: 100%;
  padding: clamp(2rem, 12.5vw, 5rem) 0.9375rem;
  margin-bottom: clamp(1.25rem, 12.5vw, 3.75rem);
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 10vw, 2.4rem);
  line-height: var(--line-height-sm);
  color: var(--white);
  background: var(--secondary);
}
.search__title span {
  display: block;
  letter-spacing: 0.2em;
  margin-left: -0.2em;
}
.search__title span:nth-child(1) {
  font-size: clamp(0.9rem, 5.625vw, 1.35rem);
}
.search__container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.875rem;
}
@media (max-width: 1023px) {
  .search__container {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}
.search__count {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1rem;
  color: var(--black);
  background-color: var(--gray-100);
  border-radius: 5px;
}
.search__result {
  width: 100%;
}
.search__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.search__item {
  width: 100%;
}
.search__item + .search__item {
  margin-top: 1.25rem;
}

/* 
========================================
404
========================================
*/
.err404 {
  width: 100%;
}
.err404 .container {
  margin: 40px auto 0;
}
.err404__title, .err404__text {
  text-align: center;
}
.err404__title {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
  background: var(--yellow);
}

/* 
========================================
HOME
========================================
*/
.section {
  position: relative;
  padding: 0 0 180px;
  --section-bg: transparent;
}
.section::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 140px;
  background-color: var(--section-bg);
  transform: skewY(-2.5deg);
  transform-origin: top left;
  z-index: 0;
}
@media (max-width: 767px) {
  .section {
    padding: 0 0 5.625rem;
  }
}
.section.none-before {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.section.none-before::before {
  display: none !important;
}
.section.none-after {
  padding-bottom: 0 !important;
}
.section.bg-primary {
  --section-bg: var(--primary);
}
.section.bg-secondary {
  --section-bg: var(--secondary);
}
.section.bg-accent {
  --section-bg: var(--accent);
}
.section.bg-light {
  --section-bg: var(--light);
}
.section.bg-dark {
  --section-bg: var(--dark);
}
.section.bg-white {
  --section-bg: var(--white);
}
.section.bg-black {
  --section-bg: var(--black);
}
.section.bg-red {
  --section-bg: var(--red);
}
.section.bg-orange {
  --section-bg: var(--orange);
}
.section.bg-yellow {
  --section-bg: var(--yellow);
}
.section.bg-green {
  --section-bg: var(--green);
}
.section.bg-blue {
  --section-bg: var(--blue);
}
.section.bg-gray-50 {
  --section-bg: var(--gray-50);
}
.section.bg-gray-100 {
  --section-bg: var(--gray-100);
}
.section.bg-gray-200 {
  --section-bg: var(--gray-200);
}
.section.bg-gray-300 {
  --section-bg: var(--gray-300);
}
.section.bg-gray-400 {
  --section-bg: var(--gray-400);
}
.section.bg-gray-500 {
  --section-bg: var(--gray-500);
}
.section.bg-gray-600 {
  --section-bg: var(--gray-600);
}
.section.bg-gray-700 {
  --section-bg: var(--gray-700);
}
.section.bg-gray-800 {
  --section-bg: var(--gray-800);
}
.section.bg-gray-900 {
  --section-bg: var(--gray-900);
}
.section__inner {
  position: relative;
  z-index: 1;
}
.section__header {
  width: 100%;
  padding: 48px 0;
}
.section__header-container {
  width: 100%;
  padding: var(--container-padding);
}
.section__header-title {
  position: relative;
  text-align: center;
  font-weight: 900;
  font-size: 2.75rem;
  font-size: clamp(1.625rem, 8.125vw, 2.925rem);
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .section__header-title .highlight-line {
    display: block;
  }
}

.main-heading {
  padding: 1.5rem 3.75rem;
  color: var(--white);
  background: #166e00;
  background: linear-gradient(135deg, #166e00 0%, #20a100 50%, #166e00 100%);
}
.main-heading__title {
  margin: 0;
}
.main-heading__title img {
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .main-heading__title img {
    max-width: 220px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .main-heading__title img {
    max-width: 380px !important;
  }
}
@media (min-width: 1024px) {
  .main-heading__title img {
    max-width: 680px !important;
  }
}

/* メインの動画エリア */
.hero {
	width: 100%;
	background: var(--black);
	position: relative;
	overflow: hidden;
}

.hero__container {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.hero__container::before {
	content: '';
	display: block;
	padding-top: 56.25%; /* 16:9比率 */
}

.hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  -o-object-fit: cover;
	   object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}

/* シミュレーターについて */
.simulator-section {
  width: 100%;
}
.simulator-section__lead {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: var(--font-size-h4);
  padding-bottom: 1.5rem;
  padding-top: 5rem;
}
.simulator-section__lead::before {
  position: absolute;
  content: "";
  display: block;
  width: 20%;
  max-width: 120px;
  height: 4px;
  background: var(--secondary);
  border-radius: 9999px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .simulator-section__lead {
    padding-top: 2rem;
    font-size: var(--font-size-h5);
  }
}

.simulator-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
  margin-bottom: 5rem;
}
.simulator-features-list .simulator-features-item {
  position: relative;
  padding: 1.25rem 1rem 1.25rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  text-shadow: 0 2px 2px rgba(4, 43, 0, 0.6);
  color: white;
  background: #1b8800;
  border-radius: 10px;
  box-shadow: var(--box-shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.simulator-features-list .simulator-features-item:hover {
  transform: translateY(-3px);
}
.simulator-features-list .simulator-features-item p {
  margin: 0;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .simulator-features-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.simulator-feature-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  background: var(--white);
  border: 1px solid var(--gray-300);
  box-shadow: var(--box-shadow-lg);
  padding: 1.25rem;
  gap: 1rem;
  position: relative;
  counter-increment: feature-counter;
}
.simulator-feature-card + .simulator-feature-card {
  margin-top: 2.5rem;
}
.simulator-feature-card::before {
  content: counter(feature-counter, decimal-leading-zero);
  position: absolute;
  top: -20px;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 2px 2px rgba(4, 43, 0, 0.6);
  color: white;
  background: #1b8800;
  font-weight: 900;
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  line-height: 1;
  box-shadow: var(--box-shadow-sm);
  z-index: 1;
}
.simulator-feature-card .simulator-feature-media {
  padding: 0;
  margin: 0;
}
.simulator-feature-card .simulator-feature-media img {
  width: 100%;
  height: auto;
}
.simulator-feature-card .simulator-feature-media video {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--black);
}
.simulator-feature-card .simulator-feature-title {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}
.simulator-feature-card .simulator-feature-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 30%;
  max-width: 120px;
  height: 3px;
  background: #00b900;
  bottom: 0;
  left: 0;
}
.simulator-feature-card .simulator-feature-desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .simulator-feature-card {
    padding: 20px;
    grid-template-columns: 1fr;
  }
  .simulator-feature-card::before {
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    font-size: var(--font-size-lg);
  }
  .simulator-feature-card .simulator-feature-media {
    width: 100%;
  }
  .simulator-feature-card .simulator-feature-info {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .simulator-feature-card {
    padding: 20px;
  }
  .simulator-feature-card::before {
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* 二代目侍伊織について */
.about-iori {
  color: var(--white);
  padding-top: 6.25rem;
}
.about-iori.bg-visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/visual_pc.png);
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-iori.bg-visual::before {
  background-color: var(--white) !important;
}
.about-iori.bg-visual::after {
  background-color: var(--green) !important;
}
.about-iori .container {
  display: flex;
  gap: 1.875rem;
}
.about-iori__image {
  flex: 0 0 50%;
  position: relative;
  perspective: 1000px;
}
.about-iori__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.about-iori__desc {
  flex: 1;
}
.about-iori__desc-title {
  position: relative;
  font-size: var(--font-size-h3);
  margin-bottom: 1.875rem;
  padding-bottom: 1rem;
}
.about-iori__desc-title::before, .about-iori__desc-title::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: 0;
  height: 3px;
}
.about-iori__desc-title::before {
  width: 20%;
  background: var(--yellow);
  z-index: 1;
}
.about-iori__desc-title::after {
  width: 100%;
  background: var(--green);
}
@media (max-width: 767px) {
  .about-iori .container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-iori .section__header {
    padding-top: 2.5rem;
    top: 1.875rem;
  }
  .about-iori__image, .about-iori__desc {
    flex: unset;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .about-iori__image {
    flex: 0 0 40%;
    gap: 1.5rem;
  }
}

/* 性能について */
.performance {
  position: relative;
  width: 100%;
  padding-bottom: 140px;
}
.performance .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.performance .slick-prev,
.performance .slick-next {
  width: 50px;
  height: 50px;
  background: #00b900;
  border-radius: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.performance .slick-prev:hover, .performance .slick-prev:focus, .performance .slick-prev:active,
.performance .slick-next:hover,
.performance .slick-next:focus,
.performance .slick-next:active {
  background: var(--green);
}
.performance .slick-prev:before,
.performance .slick-next:before {
  color: var(--white);
  font-family: var(--icon-material);
  font-size: 1.875rem;
}
.performance .slick-prev {
  left: 0;
}
.performance .slick-prev::before {
  content: "chevron_left";
}
.performance .slick-next {
  right: 0px;
}
.performance .slick-next::before {
  content: "chevron_right";
}
.performance .slick-dots {
  margin-bottom: -40px;
}
.performance .slick-dots li button::before {
  font-size: 10px;
  color: var(--white);
  opacity: 1;
}
.performance .slick-dots li.slick-active button::before {
  color: var(--green);
}
.performance .slick-dotted.slick-slider {
  margin-bottom: 7.5rem;
}
.performance .slick-slide {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.performance .slick-active {
  opacity: 1;
}
.performance__items {
  width: 100%;
}
.performance__item {
  margin: 0 0.3125rem;
}
.performance__media {
  position: relative;
  width: 100%;
  background: var(--black);
  overflow: hidden;
}
.performance__media::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.performance__media img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}
.performance__media video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 16/9;
}
.performance__info {
  margin-top: 1.5rem;
}
.performance__title {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-size: var(--font-size-lg);
  text-align: center;
}
.performance__title::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  max-width: 120px;
  height: 2px;
  background: var(--yellow);
}
.performance__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .performance__title {
    font-size: 1rem;
  }
  .performance__text {
    font-size: 0.875rem;
  }
}

/* 練習モード */
.practice-mode__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.875rem;
}
.practice-mode__images figure {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.practice-mode__images figure img {
  width: 100%;
  height: auto;
  border-radius: 0.3125rem;
  border: 10px solid var(--white);
  box-shadow: var(--box-shadow-md);
}
.practice-mode__images figure figcaption {
  order: -1;
  padding: 1rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  background: var(--secondary);
  border-radius: 0.3125rem;
  box-shadow: var(--box-shadow-md);
}
.practice-mode__info {
  position: relative;
  margin-top: 3.75rem;
  padding: 2.5rem 1.25rem 1.25rem;
  color: var(--body-color);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 0.3125rem;
  box-shadow: var(--box-shadow-lg);
}
.practice-mode__info p:last-child {
  margin-bottom: 0;
}
.practice-mode__info-title {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 0.5rem 1rem;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .practice-mode__images {
    gap: 1rem;
  }
  .practice-mode__info {
    padding-top: 2.1875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

/* ブース詳細 */
.specs {
  width: 100%;
  padding-top: 0 !important;
}
.specs .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: var(--container-padding);
}
.specs__title {
  font-weight: 600;
  font-size: var(--font-size-h2);
  text-align: center;
  line-height: var(--line-height-sm);
  margin-bottom: 1.5rem;
}
.specs__title span {
  display: block;
}
.specs__title span.small {
  font-size: var(--font-size-base);
}
.specs__dimensions, .specs__set-contents {
  display: flex;
  gap: 1.25rem;
  padding: 1.875rem;
  background: var(--white);
  box-shadow: var(--box-shadow-lg);
}
.specs__dimensions-image, .specs__dimensions-info, .specs__set-contents-image, .specs__set-contents-info {
  width: 50%;
}
.specs__dimensions-image img, .specs__dimensions-info img, .specs__set-contents-image img, .specs__set-contents-info img {
  width: 100%;
  height: auto;
}
.specs__dimensions-dl {
  width: 100%;
  margin-bottom: 1.5rem;
}
.specs__dimensions-dl dt {
  font-weight: 600;
}
.specs__dimensions-dl dt::before {
  content: "◆";
}
.specs__dimensions-dl dd:not(:last-child) {
  margin-bottom: 0.5rem;
}
.specs__dimensions-desc {
  margin: 0;
  padding: 0.625rem;
  background: var(--light);
}
.specs__set-contents-list {
  list-style: none;
  counter-reset: list-item-count;
  margin: 0;
}
.specs__set-contents-list li {
  position: relative;
  padding: 1rem 0.5rem 1rem 3.5rem;
  font-weight: 600;
  line-height: 1;
  border-bottom: 1px dotted var(--gray-300);
}
.specs__set-contents-list li:first-child {
  border-top: 1px dotted var(--gray-300);
}
.specs__set-contents-list li:nth-child(odd) {
  background: var(--light);
}
.specs__set-contents-list li::before {
  counter-increment: list-item-count;
  content: counter(list-item-count);
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #00b900;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
}
.specs__set-contents-list li::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background: #00b900;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.specs__images {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem 0.625rem;
}
.specs__images figure {
  display: block;
  margin: 0;
  padding: 0;
}
.specs__images figure img {
  width: 100%;
  height: auto;
}
.specs__images figcaption {
  display: block;
  padding: 0.625rem;
  text-align: center;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--white);
  background: rgba(84, 126, 17.4, 0.8);
}
@media (max-width: 767px) {
  .specs .section__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .specs__dimensions, .specs__set-contents {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.9375rem;
  }
  .specs__dimensions-image, .specs__dimensions-info, .specs__set-contents-image, .specs__set-contents-info {
    width: 100%;
  }
  .specs__dimensions-image, .specs__set-contents-image {
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
  }
  .specs__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3125rem;
  }
  .specs__images figcaption {
    font-size: var(--font-size-xs);
    padding: 0.5rem 0.25rem;
  }
}
@media (max-width: 1023px) {
  .specs .section__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media (max-width: 1279px) {
  .specs .section__inner {
    gap: 1.25rem;
  }
  .specs__dimensions, .specs__set-contents {
    flex-direction: column;
    padding: 1.25rem;
  }
  .specs__dimensions-image, .specs__dimensions-info, .specs__set-contents-image, .specs__set-contents-info {
    width: 100%;
  }
  .specs__dimensions-image, .specs__set-contents-image {
    position: relative;
    width: 100 .specs__dimensions-image, .specs__set-contents-image;
    overflow: hidden;
  }
  .specs__dimensions-image::before, .specs__set-contents-image::before {
    display: block;
    content: "";
    padding-top: 100%;
  }
  .specs__dimensions-image img, .specs__set-contents-image img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
  }
}

/* 設置の流れ */
.setup-flow {
  width: 100%;
}

.setup-process {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: process-counter;
}
.setup-process__item {
  counter-increment: process-counter;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 0.3125rem;
  border: 1px solid var(--gray-300);
  box-shadow: var(--box-shadow-md);
}
.setup-process__item img {
  width: 60%;
  max-width: 100px;
  margin: 0 auto 1rem;
}
.setup-process__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.setup-process__title {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.setup-process__title::before {
  display: block;
  content: "STEP " counter(process-counter, decimal-leading-zero);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
.setup-process__title::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  max-width: 100px;
  min-width: 50px;
  height: 2px;
  border-radius: 9999px;
  background: var(--accent);
}
.setup-process__desc {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
}
.setup-process__time {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  white-space: nowrap;
  font-size: var(--font-size-xs);
  color: var(--black);
  background: rgba(140, 210, 29, 0.5);
  border-radius: 9999px;
}
@media (max-width: 575px) {
  .setup-process {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .setup-process {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .setup-process {
    gap: 0.625rem;
  }
}
@media (max-width: 767px) {
  .setup-process__item img {
    width: 80px;
  }
}

.setup-text {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.setup-text p {
  margin-bottom: 1rem;
}
.setup-text p:first-of-type {
  font-weight: 600;
  text-align: center;
  color: #d9534f;
}
.setup-text p:last-of-type {
  margin-bottom: 0;
}
.setup-text__inner {
  width: 100%;
  background: var(--white);
  border-radius: 0.3125rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.setup-text__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.setup-text__list li {
  position: relative;
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--secondary);
  border-radius: 9999px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .setup-text__inner {
    padding: 1rem;
  }
  .setup-text__list {
    grid-template-columns: 1fr;
  }
}

/* メンテナンス */
.maintenance {
  width: 100%;
}
.maintenance__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}
.maintenance__box-title {
  display: inline-flex;
  margin: 0 auto 1.25rem;
  padding: 0.625rem 1.875rem;
  text-align: center;
  font-weight: 600;
  font-size: var(--font-size-lg);
  color: var(--black);
  background: var(--yellow);
  border-radius: 9999px;
}
/* faq */
.faq {
  width: 100%;
}
.faq__list {
  width: 100%;
}
.faq__item {
  border-bottom: 1px solid var(--gray-500);
  padding: 1rem 0;
}
.faq__item:first-child {
  border-top: 1px solid var(--gray-500);
}
.faq__item summary {
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 1.875rem;
  padding-left: 1rem;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.25rem;
  transition: transform 0.3s;
}
.faq__item[open] summary::after {
  content: "?";
}
.faq__content {
  border-top: 1px solid var(--gray-500);
  padding-top: 0.625rem;
  margin-top: 0.625rem;
  font-size: 1rem;
  animation: faq-fadein 0.6s ease;
}

@keyframes faq-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 導入費用 */
.cost {
  width: 100%;
}
.cost-card {
  margin-bottom: 5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cost-card__header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  padding: 1.25rem 1rem;
}
.cost-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cost-card__subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
}
.cost-card__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  padding: 1rem;
  flex: 1;
}
@media (max-width: 575px) {
  .cost-card__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3125rem;
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 767px) {
  .cost-card__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cost-card__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cost-card__item {
  background: #f9f9f9;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-300);
  padding: 0.75rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cost-card__term {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: #007a33;
}
.cost-card__desc {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-left: 0;
}
.cost-card__desc span {
  font-size: var(--font-size-xs);
  color: #ee7f00;
  display: block;
}
.cost-card__footer {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
}
.cost-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.cost-card__price span {
  font-weight: 400 !important;
}

/* アクセス */
.access {
  width: 100%;
  padding-top: 6.25rem;
}
.access.bg-access {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/facility-visual.png);
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.access.bg-access::before {
  background-color: var(--dark) !important;
}
.access .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  justify-content: center;
}
.access__text {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 1.25rem;
}
.access__text mark {
  background: linear-gradient(transparent 50%, rgba(0, 189, 57, 0.5) 50%);
  padding: 0 2px;
}
.access__map-image img {
  width: 100%;
  height: auto;
}
.access__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.access__info > div {
  width: 100%;
}
.access__info address {
  padding: 0;
  margin: 0;
  font-style: normal;
}
.access__info-title {
  font-size: 1.5rem;
  color: var(--yellow);
}
.access__google-map {
  position: relative;
  width: 100%;
  margin-top: 5rem;
  aspect-ratio: 2/1;
  max-height: 500px !important;
}
.access__google-map iframe {
  display: block;
  border: 0;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 767px) {
  .access {
    padding-top: 8.75rem;
  }
  .access .container {
    grid-template-columns: 1fr;
  }
  .access__info {
    text-align: center;
  }
}

/* 
========================================
サイドバー
========================================
*/
.sidebar {
  width: 100%;
}
.sidebar__box {
  width: 100%;
}
.sidebar__box img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.sidebar__box p:last-child {
  margin-bottom: 0;
}
.sidebar__box + .sidebar__box {
  margin-top: 1.875rem;
}
.sidebar__title {
  color: var(--white);
  background: var(--primary);
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-md);
  font-weight: 600;
  text-align: center;
}
.sidebar__latest-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__latest-post {
  border-bottom: 1px solid var(--gray-200);
}
.sidebar__latest-post a {
  display: block;
  padding: 0.5rem;
  color: var(--body-color);
}
.sidebar__latest-post a:hover {
  background: var(--light);
}
.sidebar__latest-post time {
  font-size: var(--font-size-xs);
}
.sidebar__latest-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__latest-post {
  border-bottom: 1px solid var(--gray-200);
}
.sidebar__latest-post a {
  display: block;
  padding: 0.5rem;
  color: var(--body-color);
}
.sidebar__latest-post a:hover {
  background: var(--light);
}
.sidebar__latest-post time {
  font-size: var(--font-size-xs);
}
.sidebar__category {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar__cat-item {
  border-bottom: 1px solid var(--gray-200);
}
.sidebar__cat-item a {
  position: relative;
  display: block;
  padding: 0.5rem 2.875rem 0.5rem 0.5rem;
  color: var(--body-color);
  font-weight: 600;
}
.sidebar__cat-item a:hover {
  background: var(--light);
}
.sidebar__cat-item a span.post-count {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: var(--font-size-xs);
  font-weight: 400;
  padding: 0.125rem 0.375rem;
  color: var(--white);
  background: var(--gray-700);
  border-radius: 9999px;
}

/* 
========================================
サーチフォーム
========================================
*/
.searchform {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 3px;
  overflow: hidden;
}
.searchform__field {
  width: 100%;
  height: 100%;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.searchform__button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: 0.5rem;
}

/* 
========================================
サンクスページ（テンプレート）
========================================
*/
.thanks {
  width: 100%;
  padding-bottom: 5rem;
}
.thanks .container {
  padding-top: 3.75rem;
}
.thanks__content {
  background-color: var(--white);
  border-radius: 1.25rem;
  padding: 1.875rem 1.25rem;
  box-shadow: var(--box-shadow-lg);
}
.thanks__link-area {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-300);
}
.thanks__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--primary);
  box-shadow: var(--box-shadow-sm);
  transform: translateY(0);
  transition: var(--transition-base);
}
.thanks__link:hover, .thanks__link:focus {
  color: var(--white);
  background: var(--secondary);
  transform: translateY(-3px);
}

/* 
========================================
wordpress
========================================
*/
.wp-block-image,
.aligncenter,
.alignwide {
  max-width: 100%;
  overflow-x: auto;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.wp-block-image img {
  width: 100%;
  height: auto;
}

.alignnone {
  display: block;
  margin-top: clamp(0.8rem, 5vw, 1.2rem) !important;
  margin-bottom: clamp(0.8rem, 5vw, 1.2rem) !important;
}

.alignleft {
  display: block;
  float: left;
  margin-top: clamp(0.8rem, 5vw, 1.2rem) !important;
  margin-right: clamp(0.8rem, 5vw, 1.2rem) !important;
  margin-bottom: clamp(0.8rem, 5vw, 1.2rem) !important;
}

.aligncenter {
  display: block;
  margin-top: clamp(0.8rem, 5vw, 1.2rem) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: clamp(0.8rem, 5vw, 1.2rem) !important;
}

.alignright {
  display: block;
  float: right;
  margin-top: clamp(0.8rem, 5vw, 1.2rem) !important;
  margin-left: clamp(0.8rem, 5vw, 1.2rem) !important;
  margin-bottom: clamp(0.8rem, 5vw, 1.2rem) !important;
}

.wp-caption {
  max-width: 100%;
}
.wp-caption.aligncenter > * {
  margin-left: auto;
  margin-right: auto;
}
.wp-caption.alignleft > * {
  margin-right: auto;
}
.wp-caption.alignright > * {
  margin-left: auto;
}

.wp-caption-text {
  margin-top: 0.5rem;
  font-size: var(--font-size-xs);
  text-align: center;
}

/* 
========================================
コンタクトフォーム7
========================================
*/
.custom-contactform7 {
  width: 100%;
  padding: 1.875rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow-lg);
}
.custom-contactform7__item {
  display: flex;
  margin: 0 !important;
  padding: 1rem 0;
  border-bottom: 1px dotted var(--gray-400);
}
.custom-contactform7__item:first-child {
  border-top: 1px dotted var(--gray-400);
}
.custom-contactform7__item:nth-child(even) {
  background: #f0ffff;
}
.custom-contactform7__item dt,
.custom-contactform7__item dd {
  margin: 0;
  padding: 0 1rem;
}
.custom-contactform7__item dt p,
.custom-contactform7__item dd p {
  margin-bottom: 0;
}
.custom-contactform7__item dt {
  width: 240px;
}
.custom-contactform7__item dd {
  flex: 1;
  margin-left: 0 !important;
}
.custom-contactform7__label {
  font-weight: 600;
  margin-bottom: 0.3125rem;
  color: var(--gray-900);
}
.custom-contactform7__required {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.375rem;
  margin-left: 0.25rem;
  font-weight: normal;
  font-size: var(--font-size-xs);
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
  background: #ce0000;
  border-radius: 0.125rem;
}
.custom-contactform7__note {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: ren(4px);
}
.custom-contactform7 .wpcf7-form-control {
  max-width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--gray-400);
  border-radius: 0.3125rem;
  font-size: var(--font-size-base);
  outline: none;
  transition: all 0.2s ease;
}
.custom-contactform7 .wpcf7-form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(0, 128, 0, 0.15);
}
.custom-contactform7__submit {
  text-align: center;
  margin-top: 1rem;
}
.custom-contactform7__submit input[type=submit] {
  background-color: var(--green);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.3125rem;
  box-shadow: var(--box-shadow-md);
  transform: translateY(0);
  transition: all 0.2s ease;
  outline: none;
}
.custom-contactform7__submit input[type=submit]:hover, .custom-contactform7__submit input[type=submit]:focus {
  color: var(--white);
  background: #007a33;
  transform: translateY(-2px);
}
.custom-contactform7__submit > p {
  margin: 0;
}
@media (max-width: 767px) {
  .custom-contactform7 {
    padding: 0 0 1.25rem;
  }
  .custom-contactform7__item {
    flex-direction: column;
  }
  .custom-contactform7__item:first-child {
    border-top: none;
  }
  .custom-contactform7__item dt,
  .custom-contactform7__item dd {
    width: 100%;
    padding: 0 0.9375rem;
  }
  .custom-contactform7__item dt {
    margin-bottom: 0.25rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}
.wpcf7-not-valid-tip {
  display: block;
  padding: 0.25rem 0.5rem;
  margin-top: 0.25rem;
  color: #dc3232;
  font-size: 0.875rem !important;
  background: #fff1f1;
  border-radius: 0.25rem;
}
.wpcf7-response-output {
  margin: 1.25rem 1rem !important;
  padding: 1rem !important;
  font-size: 0.875rem;
  color: var(--black);
  background: #d6f3ff;
  border-radius: 0.3125rem;
  border: none;
  box-shadow: var(--box-shadow-sm);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: var(--black);
  background: #ffe6ce;
  border: none;
}

/* 追加 ⇀ reCAPTCHAのマークを非表示  */
.grecaptcha-badge { display: none !important;}