@charset "UTF-8";

/*
Theme Name : design-template-ver1.1

【CSS構造】
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. 基本スタイル
2. ヘッダー・フッター
3. デスクトップスタイル
   - ヒーローセクション
   - お知らせセクション
   - 共通セクションスタイル
   - やよい福祉会について
   - やよい福祉会ならではのこと
   - 事業所の案内
   - よくある質問
   - ご利用の流れ
   - 年間イベントについて
   - お問い合わせ
4. レスポンシブ: 共通（モバイル/タブレット）
5. レスポンシブ: モバイル（767px以下）
6. レスポンシブ: タブレット（768px-999px）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

【メディアクエリ一覧】
- デスクトップ: min-width: 1000px
- デスクトップ大: min-width: 641px（ヒーロー用）
- タブレット: 768px - 999px
- モバイル: max-width: 767px
- モバイル小: max-width: 750px
- モバイル極小: max-width: 640px（ヒーロー用）※最優先

【重要: メディアクエリの優先順位】
max-width: 640px は max-width: 767px より具体的なため、
640px以下の端末では640px用のスタイルが最終的に適用されます。
ヒーローセクション(.main_visual)は640px以下専用のスタイル(L2036)を使用し、
767px以下のメディアクエリでは制御しません。
*/

:root {
  --color_primary: #5DC89F;
  --color_text: #555;
}

* {
  font-family: "Kiwi Maru", serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

img {
  width: 100%;
}

h2,
h3,
h4 {
  margin: 0;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

main {
  padding-top: 100px;
}

.contents_wrapper {
  position: relative;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.content_block {
  width: 100%;
  padding: 0;
  margin-bottom: 7%;
}

.blog_content_block {
  width: 100%;
  padding: 0;
  margin-bottom: 7%;
}

.content_inner {
  max-width: 1200px;
  width: calc(100% - 20px);
  margin: 0 auto;
  position: relative;
}

.content_inner .inner_section_block {
  margin-top: 70px;
}

.visual_title {
  padding: 100px 0;
  margin-top: -100px;
  background-attachment: fixed;
  background-size: cover;
}

.visual_title .visual_title_inner {
  max-width: 980px;
  padding: 0 50px;
  margin: 0 auto;
}

.visual_title .visual_title_inner h2 {
  font-size: 40px;
  margin: 0;
}

.visual_title .visual_title_inner p {
  margin-top: 30px;
  font-weight: bold;
}

.height100_img_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.two_bgcolor_block {
  background: #f7f7f7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.two_bgcolor_block .text_block {
  z-index: 1;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.two_bgcolor_block .text_block .inner_text_item {
  width: 80%;
}

.two_bgcolor_block .height100_img_block {
  width: 50%;
}

.left_bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #e2e2e2;
}

.right_bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #e2e2e2;
}

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

::after,
::before {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  cursor: default;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  scroll-padding-top: 100px;
}

body {
  font-size: 18px;
  line-height: 2;
  margin: 0;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 0;
  }

  body {
    font-size: 16px;
  }
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

hr {
  height: 0;
  overflow: visible;
}

main {
  display: block;
}

nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

iframe {
  border-style: none;
}

img {
  border-style: none;
}

svg:not([fill]) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

button,
input,
select {
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

fieldset {
  border: 1px solid #a0a0a0;
  padding: 0.35em 0.75em 0.625em;
}

input {
  overflow: visible;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

select {
  text-transform: none;
}

textarea {
  margin: 0;
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

details {
  display: block;
}

dialog {
  background-color: #fff;
  border: solid;
  color: #000;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[tabindex],
a,
area,
button,
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[hidden] {
  display: none;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 100px;
}

header .header_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
  height: 100%;
}

header .header_pc .header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

header .header_pc .header_logo .logo_image {
  width: 316px;
  height: 72px;
  flex-shrink: 0;
}

header .header_pc .header_logo .logo_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header .header_pc .header_logo .logo_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .header_pc .header_logo .logo_text .logo_sub {
  font-size: 24px;
  color: var(--color_text)555;
  margin: 0;
  line-height: 1;
  font-weight: 500;
}

header .header_pc .header_logo .logo_text .logo_main {
  font-size: 40px;
  color: var(--color_primary);
  margin: 0;
  margin-top: 4px;
  line-height: 1;
  font-weight: 500;
}

header .header_pc .header_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

header .header_pc .header_item .header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 30px;
}

header .header_pc .header_item .header_nav ul li {
  margin: 0;
}

header .header_pc .header_item .header_nav ul li a {
  color: var(--color_text)555;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s;
}

header .header_pc .header_item .header_nav ul li a:hover {
  opacity: 0.7;
}

header .header_pc .header_item .header_cta {
  width: 200px;
  height: auto;
}

header .header_pc .header_item .header_cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color_primary);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  padding: 19px 10px;
  border-radius: 60px;
  text-decoration: none;
  transition: background 0.3s;
}

header .header_pc .header_item .header_cta a:hover {
  background: #4bb88a;
  opacity: 1;
}

header .header_pc .header_item .header_cta a::before {
  content: none;
}

#drawer {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 11;
  /* :::::: toggle button :::::: */
  /* #navTgl:checked + .open {
  	transform: translateX(-250px);
  } */
  /* :::::: drawer menu :::::: */
}

#drawer label {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

#drawer #navTgl:checked ~ .contents_wrapper {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}

#drawer #navTgl {
  display: none;
}

#drawer .open {
  z-index: 12;
  position: inherit;
  width: 48px;
  height: 48px;
  -webkit-transition: background 0.6s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background 0.6s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#drawer .open::before,
#drawer .open::after {
  content: "";
}

#drawer .open span,
#drawer .open::before,
#drawer .open::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 30%;
  width: 40%;
  border-bottom: 3px solid var(--color_primary);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#drawer .open::before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

#drawer .open::after {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

#drawer .close {
  z-index: 3;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
}

#drawer #navTgl:checked + .open span {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

#drawer #navTgl:checked + .open::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: 3px solid #fff;
}

#drawer #navTgl:checked + .open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: 3px solid #fff;
}

#drawer #navTgl:checked ~ .close {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11;
  position: fixed;
}

#drawer .menu {
  z-index: 11;
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--color_primary);
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#drawer .menu h2,
#drawer .menu a {
  color: #fff;
}

#drawer .menu h2 {
  text-align: center;
}

#drawer .menu ul {
  margin: 0;
  padding: 0;
}

#drawer .menu li {
  font-size: 0.8em;
  line-height: 1.4;
}

#drawer #navTgl:checked ~ .menu {
  -webkit-transform: none;
  transform: none;
}

.drawer_inner_btn ul {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.drawer_inner_btn ul li {
  margin-bottom: 15px;
}

.drawer_inner_btn ul li:last-of-type {
  margin-bottom: 0;
}

.drawer_inner_btn ul li a {
  color: #fff;
  font-weight: bold;
  background: var(--color_text);
  border-radius: 20px;
  display: block;
  text-align: center;
  padding: 5px 0;
  text-decoration: none;
}

.sp_menu .header_nav_block {
  padding: 0 15px;
  margin: 70px 0;
}

.sp_menu .header_nav_block ul {
  list-style: none;
  padding: 0;
}

.sp_menu .header_nav_block ul li {
  margin-bottom: 16px;
}

.sp_menu .header_nav_block ul li a {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  padding: 5px 15px;
}

.sp_menu .header_nav_block ul li a::before {
  font-family: "fontello";
  content: "\e803";
  font-size: 5px;
  margin-right: 10px;
  font-weight: 400;
}

.sp_menu .header_nav_block ul li a:hover {
  background: #424242;
  border-radius: 20px;
}

.sp_menu .header_tel {
  padding: 0 30px;
}

.sp_menu .header_tel p {
  font-size: 20px;
  margin-bottom: 20px;
}

footer {
  background: var(--color_primary);
  position: relative;
  overflow: hidden;
}

footer .footer_pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

footer .footer_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

footer .footer_nav {
  margin: 0;
  padding: 0;
  width: 100%;
}

footer .footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 30px;
}

footer .footer_nav ul li {
  margin: 0;
}

footer .footer_nav ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

footer .footer_nav ul li a:hover {
  opacity: 0.7;
}

footer .footer_copyright {
  text-align: center;
}

footer .footer_copyright p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  line-height: 1.85;
}

footer .copy {
  text-align: center;
  padding: 30px 0;
  background: #f7f7f7;
}

.pagetop_block {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9;
}

.pagetop_block .contact_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80%;
}

.pagetop_block .contact_sp a {
  background: var(--color_primary);
  padding: 10px 30px;
  height: 60px;
  width: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.pagetop_block .contact_sp a::before {
  font-family: "fontello";
  content: "\e801";
  font-size: 16px;
  margin-right: 10px;
  font-weight: 400;
}

.pagetop_block #pagetop {
  width: 60px;
  height: 60px;
  margin-left: auto;
}

.pagetop_block #pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #5EBADF;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.pagetop_block #pagetop a::before {
  font-family: "fontello";
  content: "\e800";
  font-size: 16px;
  line-height: 1;
}

.breadcrumb_block {
  max-width: 1200px;
  width: calc(100% - 20px);
  margin: 0 auto 5%;
}

.breadcrumb_block ul li,
.breadcrumb_block ul a {
  color: var(--color_text);
  font-size: 13px;
}

.breadcrumb_block ul li {
  padding-right: 30px;
  position: relative;
}

.breadcrumb_block ul li::before {
  font-family: "fontello";
  content: "\e800";
  position: absolute;
  right: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.breadcrumb_block ul li:last-of-type::before {
  content: "";
}

#mw_wp_form_mw-wp-form-12 p {
  font-size: 16px;
}

#mw_wp_form_mw-wp-form-12 p:last-of-type {
  margin-bottom: 0;
}

.mw_wp_form_preview form p:nth-of-type(even) {
  border-bottom: 1px dotted #d0d0d0;
  padding-bottom: 20px;
}

.form_item input {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.form_item textarea {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.form_item .red_text {
  font-size: 14px;
}

.form_item_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
}

.form_item_button input {
  border: none;
  background: var(--color_text);
  color: #fff;
  font-size: 16px;
  padding: 10px;
  width: 140px;
  line-height: 1;
  border-radius: 5px;
  cursor: pointer;
}

.form_item_button input:hover {
  opacity: 0.8;
}

.form_item_button input:nth-of-type(2) {
  margin-left: 20px;
}

.home_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
}

.home_button a {
  display: block;
  border: none;
  text-decoration: none;
  background: var(--color_text);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  width: 160px;
  line-height: 1;
  border-radius: 5px;
  cursor: pointer;
}

.home_button a:hover {
  opacity: 0.8;
}

a[href*="tel:"] {
  text-decoration: underline;
}

.card_item figure {
  margin: 0;
}

.card_item figure img {
  height: auto;
  border-radius: 0.25rem 0.25rem 0 0;
}

.card-body {
  padding: 2rem 1rem;
}

.card_title {
  font-size: 16px;
  margin-bottom: 1rem;
}

.card_text {
  margin-bottom: 1rem;
}

.blog_post_date {
  font-size: 13px;
  margin-bottom: 10px;
  display: block;
}

.card_button a {
  width: 80%;
  height: 40px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background: var(--color_text);
}

.bg_gray-light {
  background: #e2e2e2;
}

.bg_gray-lighter {
  background: #f7f7f7;
}

.d_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify_around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.align_items_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn01 {
  margin-top: 40px;
}

.btn01 a,
.wpcf7-submit {
  position: relative;
  display: block;
  border: 0;
  width: 220px;
  max-width: 100%;
  height: auto;
  background: var(--color_primary);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
  transition: 0.3s;
  padding: 0.856em 1em;
  line-height: 1.4;
  margin-inline: auto;
  text-align: center;
}

.wpcf7-spinner {
  display: none;
}

@media (min-width: 768px) {
  .pc-text-center {
      text-align: center !important;
  }
}

.pagination {
  margin-top: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination a {
  color: var(--color_text);
}

.pagination .page-numbers {
  margin: 0 10px;
}

.pagination .current {
  border-bottom: 1px solid var(--color_text);
}

.loading {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.loading div {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 220px;
}

#elevator_nav {
  position: fixed;
  right: 0;
  top: 45%;
  padding: 30px 10px 30px 0;
}

#elevator_nav ul {
  padding: 0;
  list-style: none;
  margin: 0;
  position: relative;
}

#elevator_nav ul::after {
  content: "";
  position: absolute;
  border-left: 1px solid #b8b8b8;
  height: 180px;
  top: 10px;
  left: 11px;
  z-index: 0;
}

#elevator_nav ul li {
  margin-bottom: 25px;
}

#elevator_nav ul li:last-of-type {
  margin-bottom: 0;
  font-size: 13px;
}

#elevator_nav ul li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#elevator_nav ul li a::before {
  font-size: 13px;
  font-family: "fontello";
  content: "\e807";
  color: #b8b8b8;
  width: 24px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}

#elevator_nav ul li a span {
  font-size: 13px;
}

.current::before {
  color: #3B7AB8 !important;
  font-size: 16px !important;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt55 {
  padding-top: 55px;
}

.pt60 {
  padding-top: 60px;
}

* {
  color: var(--color_text);
  font-weight: 400;
}

p,
a,
li,
table {
  font-size: 18px;
}

p {
  margin: 0.5em 0 1em;
  line-height: 1.8;;
}

h2 {
  position: relative;
  text-align: center;
  font-weight: bold;
  color: var(--color_text);
  font-size: 36px;
  line-height: 1.4;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
  &::before {
    content: '';
    display: block;
    background: url(/wp-content/themes/design-template-ver1.1/assets/images/common/h2_bg.webp) no-repeat center / contain;
    width: 36px;
    height: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

h3 {
  position: relative;
  font-weight: 500;
  color: var(--color_text);
  font-size: 24px;
  line-height: 1.4;
  padding: 0.342em 0 0.342em 0.6em;
  margin-bottom: 0.8em;
  border-left: 4px solid #FCC08D;
}

h4 {
  position: relative;
  font-weight: normal;
  color: var(--color_text);
  font-size: 18px;
  line-height: 1.4;
  padding-left: 1em;
  margin-bottom: 0.5em;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

.text_link {
  font-weight: bold;
  color: #3B7AB8;
}

.fw {
  font-weight: bold;
}

.red_text {
  color: #E63A05;
}

.yellow_text {
  color: #f3cb2b;
}

.pink_text {
  color: #ef75c4;
}

.under_line {
  font-weight: bold;
  border-bottom: 1px dashed var(--color_text);
}

.note,
.quote {
  margin-top: 10px;
  font-size: 13px;
}

.note a,
.quote a {
  font-size: 13px;
}

.note {
  position: relative;
  padding-left: 16px;
}

.note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.align_c {
  text-align: center;
}

.align_l {
  text-align: left;
}

.align_r {
  text-align: right;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */

@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: 400;
  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.main_visual {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.main_visual .main_visual_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.main_visual .main_visual_inner .slick-slider {
  margin: 0;
  padding: 0;
}

.main_visual .main_visual_inner .slick-slider .slick-slide {
  background-color: rgba(61, 35, 0, 0.1);
}

.main_visual .main_visual_inner .slick-slider .slick-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  mix-blend-mode: multiply;
}

.main_visual .main_visual_inner .slick-slider .slick-prev {
  left: 25px;
  z-index: 9;
  width: auto;
  height: auto;
}

.main_visual .main_visual_inner .slick-slider .slick-prev::before {
  font-size: 40px;
  font-family: "fontello";
  content: "\e804";
  color: #fff;
}

.main_visual .main_visual_inner .slick-slider .slick-next {
  right: 25px;
  z-index: 9;
  width: auto;
  height: auto;
}

.main_visual .main_visual_inner .slick-slider .slick-next::before {
  font-size: 40px;
  font-family: "fontello";
  content: "\e805";
  color: #fff;
}

.main_visual .main_visual_inner .logo_sp_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 15%;
}

.main_visual .main_visual_inner .logo_sp_top img {
  width: 170px;
  /* filter:drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5)); */
}

.main_visual .main_visual_inner .catch_copy {
  position: absolute;
  font-size: 50px;
  font-weight: bold;
  bottom: 300px;
  left: 200px;
  line-height: 1.5;
  color: var(--color_text);
  /* text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5); */
}

/* ====================
   ヒーローセクション
   ==================== */

/* デスクトップスタイル */
.main_visual .main_visual_inner .hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main_visual .main_visual_inner .hero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main_visual .main_visual_inner .main_copy {
  display: none;
}

/* レスポンシブ: デスクトップ（641px以上） */
@media screen and (min-width: 641px) {
  .main_visual {
    aspect-ratio: 1920 / 752;
  }

  .main_visual .main_visual_inner .hero_bg {
    height: 100%;
  }

  .main_visual .main_visual_inner .hero_bg img {
    height: 100%;
  }

  .main_visual .main_visual_inner .main_copy {
    display: block;
    max-width: 45%;
    width: auto;
    height: auto;
    position: absolute;
    left: 8%;
    top: 69%;
    transform: translateY(-50%);
    padding: 0;
    z-index: 2;
    object-fit: contain;
  }
}

/* レスポンシブ: モバイル（640px以下）
   ⚠️ 注意: このメディアクエリは767px以下よりも優先されます
   640px以下の端末では、このスタイルが最終的に適用されます */
@media screen and (max-width: 640px) {
  .main_visual {
    aspect-ratio: 640 / 700;
    height: auto !important;
  }

  .main_visual .main_visual_inner .hero_bg {
    height: 100%;
  }

  .main_visual .main_visual_inner .hero_bg img {
    height: 100%;
  }

  .main_visual .main_visual_inner .main_copy {
    max-width: 80%;
    width: auto;
    left: 5%;
    top: 55%;
    transform: translateY(-50%);
    padding: 0;
  }
}

.news_block {
  width: 100%;
  padding: 110px 0;
}

.news_block .news_block_inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.news_block .news_block_inner .news_heading {
  width: auto;
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.news_block .news_block_inner .news_heading h2 {
  text-align: left;
}

.news_block .news_block_inner .news_content_wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 200px;
}

.news_block .news_block_inner .news_list {
  padding: 0;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.news_block .news_block_inner .news_list .news_item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.news_block .news_block_inner .news_list .news_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.news_block .news_block_inner .news_list .news_item:last-child::after {
  display: none;
}

.news_block .news_block_inner .news_list .news_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  max-width: 50%;
  height: 1px;
  background: #7FD4C1;
}

.news_block .news_block_inner .news_list dl {
  border-bottom: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.news_block .news_block_inner .news_list dl dt {
  color: var(--color_text);
  margin: 0;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  border-bottom: 1px solid var(--color_primary);
  min-width: 120px;
  padding: 16px 10px;
  line-height: 1;
}

.news_block .news_block_inner .news_list dl dt time {
  color: var(--color_text);
  font-weight: 400;
}

.news_block .news_block_inner .news_list dl dd {
  margin: 0;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-bottom: 1px solid #D9D9D9;
  padding: 16px 10px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_block .news_block_inner .news_list dl dd a {
  color: var(--color_text);
  font-weight: 400;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_block .news_block_inner .news_list dl dd a:hover {
  color: var(--color_text);
  opacity: 0.7;
}


.news_block .news_block_inner .news_archive_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  margin-top: 0;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.news_block .news_block_inner .archive_btn_sp {
  display: none;
}

.news_block .news_block_inner .archive_btn {
  display: none;
  display: block;
  text-align: center;
}

/* ====================
   お知らせセクション
   レスポンシブ: L4236 (モバイル)
   ==================== */

/* ====================
   共通セクションスタイル
   レスポンシブ: L3745 (共通)
   ==================== */

.h2_title {
  padding: 0;
}

.h2_title::before {
  content: none;
}

.h3_title {
  border: none;
  padding: 0;
}

/* セクション見出し（複数のセクションで共通） */
.section_heading {
  text-align: center;
  margin-bottom: 30px;
}

.section_heading h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--color_text)555;
  margin: 0 0 10px 0;
}

.section_heading .section_subtitle {
  display: block;
  color: var(--color_primary);
  font-size: 16px;
  margin: 10px 0 0;
}

/* 共通ボタンスタイル */
.btn_block {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color_primary);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 60px;
  padding: 19px 10px;
  min-width: 220px;
  height: auto;
  line-height: 1;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  text-align: center;
}

.btn:hover {
  background: #48a984;
  color: #fff;
}

/* 矢印付きボタン */
.btn.btn_arrow {
  position: relative;
}

.btn.btn_arrow::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}

.btn.btn_arrow:hover::after {
  right: 15px;
}

/* ====================
   各セクション固有のスタイル
   ==================== */

/* ====================
   やよい福祉会についてセクション
   レスポンシブ: L4236 (モバイル), L4911 (タブレット)
   ==================== */
.about_section {
  padding: 0;
  margin-bottom: 0;
}

.about_section .about_hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_section .about_hero .about_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.about_section .about_hero .about_hero_text {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 40px 40px 0 0;
  padding: 60px 60px 40px;
  max-width: 840px;
  width: 65%;
  margin: 0 auto;
}

.about_section .about_hero .about_hero_text h2 {
  color: var(--color_primary);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

/* ====================
   やよい福祉会ならではのことセクション
   レスポンシブ: L4265 (モバイル), L4940 (タブレット)
   ==================== */
.unique_section {
  padding: 120px 0 80px;
  margin-bottom: 0;
  background:
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bg_img002.webp) no-repeat right 18% / min(14.0625vw, 270px),
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bg_img003.webp) no-repeat 78% 65% / min(14.21875vw, 273px),
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bg_img004.webp) no-repeat 87% 58% / min(6.822916666666666vw, 131px),
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bg_img005.webp) no-repeat left 87% / min(9.583333333333334vw, 184px);
}

.unique_section .section_heading h2 {
  font-weight: bold;
}

.unique_section .section_heading .section_subtitle {
  color: #7FD4C1;
  font-size: 18px;
}

.unique_section .section_intro {
  text-align: center;
  margin: 0 auto 40px;
}

/* 3つの特徴カード */
.unique_section .unique_feature_cards {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
	.unique_section .unique_feature_cards {
		row-gap: 24px;
	}
}

.unique_section .unique_feature_card {
  border-radius: 32px;
  background: #FFFCD9;
  padding: 30px;
  height: 100%;
  position: relative;
	display: flex;
    align-items: center;
}


@media (min-width: 768px) {
	.unique_section .unique_feature_card {
		column-gap: 24px;
	}
}

.unique_section .unique_feature_card_01 .unique_feature_number {
  background: #5DC89F;
}

.unique_section .unique_feature_card_02 .unique_feature_number {
  background: #DA7FA0;
}

.unique_section .unique_feature_card_03 .unique_feature_number {
  background: #5EBADF;
}

.unique_section .unique_feature_card_04 .unique_feature_number {
  background: #FCC08D;
}

.unique_section .unique_feature_number {
  display: flex;
	align-items: center;
	justify-content: center;
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: 500;
/*   padding: 8px; */
  border-radius: 50%;
/*   margin-bottom: 24px; */
	aspect-ratio: 1 / 1;
}

.unique_section .unique_feature_card_01 h3 {
  color: #5DC89F;
}

.unique_section .unique_feature_card_02 h3 {
  color: #DA7FA0;
}

.unique_section .unique_feature_card_03 h3 {
  color: #5EBADF;
}

.unique_section .unique_feature_card_04 h3 {
  color: #FCC08D;
}

.unique_section .unique_feature_card h3 {
/*   text-align: center; */
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 画像グリッドとテキスト */
.unique_section .unique_image_grid_section {
  position: relative;
  margin-bottom: 80px;
}

.unique_section .unique_image_grid {
  display: flex;
}

.unique_section .unique_image_grid_item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 962 / 722;
  margin-left: -105px;
  width: 70%;
}

.unique_section .unique_image_grid_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unique_section .unique_image_grid_text {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 40px;
  padding: 56px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 486px;
  width: 100%;
  width: auto;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
}

.unique_section .unique_image_grid_text h3 {
  color: var(--color_primary);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 4つのサービス特徴ブロック */
.unique_section .unique_service_features {
  gap: 24px 0;
  margin-top: 60px;
}

.unique_section .unique_service_feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  padding: 32px;
  border-radius: 40px;
  min-height: 280px;
  height: 100%;
}

.unique_section .unique_service_feature_01 {
  background: var(--color_primary);
}

.unique_section .unique_service_feature_02 {
  background: #DA7FA0;
}

.unique_section .unique_service_feature_03 {
  background: #5EBADF;
}

.unique_section .unique_service_feature_04 {
  background: #FCC08D;
}

.unique_section .unique_service_icon {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique_section .unique_service_icon img {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.unique_section .unique_service_feature h3 {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  line-height: normal;
  text-align: left;
  margin: 0 0 15px 0;
}

.unique_section .unique_service_feature h3 span {
  display: inline-block;
  color: #fff;
  border-bottom: 4px solid #FFFCD9;
}

.unique_section .unique_service_feature p {
  color: #fff;
}

/* ====================
   事業所の案内セクション
   レスポンシブ: L4366 (モバイル), L4981 (タブレット)
   ==================== */
.office_section {
  padding: 120px 0;
  margin-bottom: 0;
  background: url(/wp-content/themes/design-template-ver1.1/assets/images/top/patt01.webp) center;
}

.office_section .office_card {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10) inset;
  padding: 76px 78px;
}

.office_section .office_content {
  display: flex;
  gap: 72px;
}

.office_section .office_info_area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.office_section .office_header {
  display: flex;
  align-items: center;
  gap: 4px;
}

.office_section .office_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.office_section .office_info_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.office_section .office_info_table tbody {
  display: table-row-group;
}

.office_section .office_info_table tr:last-child {
  border-bottom: none;
}

.office_section .office_info_table th {
  text-align: left;
  padding: 10px;
  font-size: 16px;
  color: var(--color_primary);
  font-weight: 400;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 1px solid var(--color_primary);
  min-width: 112px;
  width: 20%;
}

.office_section .office_info_table td {
  padding: 10px;
  font-size: 16px;
  color: var(--color_text);
  font-weight: 400;
  vertical-align: top;
  border-bottom: 1px solid #D9D9D9;
}

.office_section .office_map {
  width: 486px;
  flex-shrink: 0;
}

.office_section .map_placeholder {
  width: 100%;
  padding-top: 288px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.office_section .map_placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office_section .map_placeholder p {
  font-size: 16px;
  color: #000000;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ====================
   よくある質問セクション
   レスポンシブ: L4439 (モバイル), L5030 (タブレット)
   ==================== */
.faq_section {
  padding: 120px 0;
  margin-bottom: 0;
  background: 
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bg_img008.webp) no-repeat left top 10% / min(15.46875vw, 297px),
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bg_img009.webp) no-repeat right bottom 10% / min(14.583333333333334vw, 280px);
}

.faq_section .content_inner {
  max-width: 996px;
  margin: 0 auto;
}

.faq_section .faq_items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq_section .faq_item {
  background: #fcc08d;
  border-radius: 40px;
  overflow: hidden;
}

.faq_section .faq_question {
  padding: 30px 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.faq_section .faq_question h3 {
  font-size: 30px;
  color: #fff;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
}

.faq_section .faq_icon {
  width: 14px;
  height: 8px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq_section .faq_icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform 0.3s ease;
}

.faq_section .faq_item.active .faq_icon::before {
  transform: translate(-50%, -75%) rotate(225deg);
}

.faq_section .faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 50px;
}

.faq_section .faq_item.active .faq_answer {
  max-height: 500px;
  padding: 0 50px 50px;
}

.faq_section .faq_answer > div {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.faq_section .faq_answer p {
  font-size: 16px;
  color: var(--color_text)555;
  margin: 0;
  line-height: 1.6;
}

/* ====================
   ご利用の流れセクション
   レスポンシブ: L4485 (モバイル), L5074 (タブレット)
   ==================== */
.flow_section {
  background: url(/wp-content/themes/design-template-ver1.1/assets/images/top/patt01.webp) center;
  padding: 120px 0;
  margin-bottom: 0;
}

.flow_section .content_inner {
  max-width: 996px;
  margin: 0 auto;
}

.flow_section .flow_steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow_section .flow_step_item {
  width: 100%;
}

.flow_section .flow_step {
  background: var(--color_primary);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.flow_section .flow_step_number {
  background: #fff;
  border-radius: 60px;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flow_section .flow_step_number .step_label {
  color: var(--color_primary);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.flow_section .flow_step_number .step_num {
  color: var(--color_primary);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.flow_section .flow_step_content {
  width: 100%;
  flex: 1;
}

.flow_section .flow_step_content h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #fffcd9;
  padding-bottom: 8px;
  display: inline-block;
}

.flow_section .flow_step_content p {
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 2;
}

.flow_section .flow_arrow {
  background: #FFD191;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 50px;
  height: 20px;
  margin: 16px auto;
}

/* ====================
   年間イベントについてセクション
   レスポンシブ: L4529 (モバイル), L5111 (タブレット)
   ==================== */
.events_section {
  padding: 120px 0;
  margin-bottom: 0;
  background: #FFFCD9;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.events_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bnr_img006.webp) no-repeat left top / min(19.791666666666664vw, 380px),
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bnr_img007.webp) no-repeat 22% 90% / min(13.333333333333334vw, 256px),
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bnr_img008.webp) no-repeat right 21% top / min(16.666666666666664vw, 320px),
    url(/wp-content/themes/design-template-ver1.1/assets/images/top/bnr_img009.webp) no-repeat right bottom / min(19.791666666666664vw, 380px);
}

.events_section .content_inner {
  position: relative;
  z-index: 2;
}

.events_section .section_heading h2 {
  font-weight: bold;
}

.events_section .section_heading .section_subtitle {
  color: #7FD4C1;
  font-size: 18px;
}

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

/* ====================
   お問い合わせセクション
   レスポンシブ: L4406 (モバイル), L5026 (タブレット)
   ==================== */
.contact_section {
  background: url(/wp-content/themes/design-template-ver1.1/assets/images/top/bg_img010.webp) no-repeat center / cover;
  position: relative;
  padding: 120px 0;
  margin-bottom: 0;
}

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

.contact_section .contact_cta {
  text-align: center;
  margin-top: 40px;
}

.carousel_slider .slick-slider {
  cursor: pointer;
}

.carousel_slider .slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.carousel_slider .slick-slider .slick-slide {
  margin-right: 10px;
}

.carousel_slider .slick-slider .slick-slide img {
  border-radius: 0.25rem;
}

.carousel_slider .slick-slider .slick-list {
  margin-right: -10px;
}

.carousel_slider .slick-slider .slick-prev {
  left: 25px;
  top: 47%;
  z-index: 9;
}

.carousel_slider .slick-slider .slick-prev::before {
  font-size: 40px;
  font-family: "fontello";
  content: "\e804";
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}

.carousel_slider .slick-slider .slick-next {
  right: 25px;
  top: 47%;
  z-index: 9;
}

.carousel_slider .slick-slider .slick-next::before {
  font-size: 40px;
  font-family: "fontello";
  content: "\e805";
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}

.galleryList {
  width: 100%;
}

.modalBg {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.modalContent {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 101;
  cursor: pointer;
}

.modalImg {
  position: relative;
  width: 800px;
}

.modalImg .closeBtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 103;
  border: 0;
  background: var(--color_text);
  border-radius: 0;
  padding: 10px;
  cursor: pointer;
  outline: none;
}

.modalImg .closeBtn i {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

#top_content02 .visual_title {
  /* background-image: url(assets/images/top/visual_title_sample1.jpg); */
  background-color: #ccc;
  background-blend-mode: multiply;
}

#top_content02 .visual_title h2 {
  color: #fff;
}

#top_content02 .visual_title p {
  color: #fff;
}

.main_visual_subpage {
  width: 100%;
  height: 120px;
  background: var(--color_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.main_visual_subpage .page_name h1 {
  color: #fff;
  font-weight: bold;
  font-size: 40px;
}

.mv_sample {
  /* background-image: url(assets/images/subpage/main_visual_sample2.jpg); */
}

.under_content {
  width: 100%;
  padding-top: 80px;
}

.under_content .content_inner {
  width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
}

.under_content .content_inner h2 {
  font-size: 28px;
  margin: 0 0 40px;
  padding-bottom: 10px;
  color: #fff;
  border-bottom: 7px double #fff;
  font-weight: bold;
}

.under_content .content_inner h3 {
  margin: 0 0 20px;
  font-size: 23px;
  font-weight: bold;
}

.under_content .content_inner h4 {
  font-size: 21px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding: 0 0 10px 1em;
  margin-bottom: 10px;
  position: relative;
}

.under_content .content_inner h4::before {
  font-size: 13px;
  font-family: "fontello";
  content: "\e807";
  color: #fff;
  margin-right: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

.gallerypage_block {
  background: #3f3f3f;
  border-radius: 20px;
  padding: 70px 30px 60px;
  margin-bottom: 120px;
}

.gallerypage_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallerypage_inner:last-of-type {
  margin: 0;
}

.gallerypage_inner .gallerypage_inner_item {
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc(33.3333333333% - 13.3333333333px);
}

.gallerypage_inner .gallerypage_inner_item:nth-child(3n) {
  margin-right: 0;
}

.gallerypage_inner .gallerypage_inner_item img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.gallerypage_inner .gallerypage_inner_item p {
  font-size: 13px;
}

.password_block {
  margin-bottom: 120px;
}

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

.password_block p {
  margin-bottom: 20px;
}

.password_block input[type=password] {
  color: var(--color_text);
  width: 50%;
  height: 35px;
  display: block;
  margin: 0 auto;
}

.password_block input[type=password]::-webkit-input-placeholder {
  color: #575757;
}

.password_block input[type=password]::-moz-placeholder {
  color: #575757;
}

.password_block input[type=password]:-ms-input-placeholder {
  color: #575757;
}

.password_block input[type=password]::-ms-input-placeholder {
  color: #575757;
}

.password_block input[type=password]::placeholder {
  color: #575757;
}

.password_block input[type=submit] {
  background: #E63A05;
  color: #fff;
  margin: 0 auto;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 30px;
  width: 250px;
  height: 35px;
}

.memberpage_block {
  background: #3f3f3f;
  border-radius: 20px;
  padding: 70px 50px 60px;
  margin-bottom: 120px;
}

.memberpage_block .video_block {
  margin-bottom: 70px;
}

.memberpage_block .video_block:last-of-type {
  margin-bottom: 0;
}

.memberpage_block .video_block h3 {
  font-size: 23px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding: 0 0 10px 1em;
  margin-bottom: 10px;
  position: relative;
}

.memberpage_block .video_block h3::before {
  font-size: 13px;
  font-family: "fontello";
  content: "\e807";
  color: #fff;
  margin-right: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

.memberpage_block .video_block p {
  margin-bottom: 20px;
}

.memberpage_block .video_block p:last-of-type {
  margin-bottom: 0;
}

.memberpage_block .video_block video {
  width: 100%;
  height: auto;
}

.privacy_block {
  background: #3f3f3f;
  border-radius: 20px;
  padding: 70px 50px 60px;
  margin: 20px 0 120px;
}

.privacy_block p {
  margin-bottom: 20px;
}

.privacy_block h4 before {
  content: none;
}

.privacy_block section:last-of-type p:last-of-type {
  margin-bottom: 0;
}

.form_block {
  margin: 0 auto;
  width: 100%;
}

.form_block .form_row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #b8b8b8;
}

.form_block .form_row span {
  font-size: 13px;
}

.form_block .form_row:last-child {
  margin-bottom: 0;
}

.form_block .form_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.form_block .form_btn {
  display: block;
  width: 300px;
  color: #fff;
  padding: 10px 0;
  border: none;
  border-radius: 50px;
  text-align: center;
  background: var(--color_text);
  margin: 50px auto 0;
  text-decoration: none;
  cursor: pointer;
}

.form_block .form_btn:focus,
.form_block .form_btn:hover {
  opacity: 0.8;
}

.form_block .form_btn[value=back] {
  background-color: #fff;
  border: 1px solid var(--color_text);
  color: var(--color_text);
}

.form_block label {
  display: block;
  margin-bottom: 10px;
  position: static;
}

.form_block input[type=text],
.form_block input[type=email],
.form_block select,
.form_block textarea {
  width: 100%;
  border: 1px solid #b8b8b8;
  border-radius: 3px;
  padding: 10px;
}

.form_block select {
  padding-right: 50px;
}

.form_block .mwform-radio-field {
  margin-bottom: 13px;
}

.form_block .required {
  background-color: #ff0000;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  margin-left: 10px;
  padding: 2px 10px;
  vertical-align: middle;
  word-break: keep-all;
}

.form_block .input_long {
  width: 100%;
}

.mw_wp_form_input .input_none {
  display: none;
  speak: none;
}

.mw_wp_form_preview .preview_none {
  display: none;
  speak: none;
}

.mw_wp_form_preview .input_none {
  display: block;
  speak: normal;
}

.mwform-tel-field input[type=text] {
  display: inline-block;
}

/* fieldset {
	margin-bottom: 100px !important;
	.div_text {
		width: 100% !important;
		margin-bottom: 30px !important;
	}
	.button_div {
		width: 100% !important;
		text-align: center !important;
		margin-top: 30px;
		.buttons {
			color: $white;
			width: 200px;
			background: $red;
			border: none;
			height: 40px;
			border-radius: 20px;
			cursor: pointer;
			&:hover {
				opacity: .8;
			}
		}
	}
	.link-text {
		width: 100% !important;
		text-align: center !important;
	}
}
#wpmem_restricted_msg {
	width: 900px;
	margin: 70px auto 0;
	text-align: center;
	display: flex;
	justify-content: center;
	@include mq(sm) {
		width: 80% !important;
	}
}
#wpmem_login_form {
	width: 900px;
	margin: 0 auto !important;
	@include mq(sm) {
		width: 80% !important;
	}
}
#wpmem_login,
#wpmem_reg {
	legend {
		margin-bottom: 30px !important;
		text-align: center;
	}
}
.memberpage_block {
	fieldset {
		margin: 0 !important;
	}
}
.wpmem_msg {
	width: 100% !important;
	margin-bottom: 30px !important;
	border: none !important;
	background: none !important;
	padding: 0 !important;
	p {
		color: $white !important;
	}
} */

article {
  position: relative;
}

.archive article {
  background-color: #f7f7f7;
}

.pg_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.pg_title {
  font-size: 30px;
  margin: 0 0 50px;
  color: var(--color_text);
  text-align: center;
}

.pg_contents {
  margin: 0 auto;
}

.posts_item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.posts_item_list .posts_item {
  margin-right: 20px;
  width: 100%;
}

.posts_item_list .posts_item:nth-of-type(3n) {
  margin-right: 0;
}

.posts_item_list .posts_item a {
  display: block;
}

.posts_item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e2e2;
}

.posts_item:last-of-type {
  margin-bottom: 0;
}

.posts_tmb {
  margin: 0;
}

.posts_tmb img {
  -webkit-box-shadow: 1px 1px 3px #bfbfbf;
  box-shadow: 1px 1px 3px #bfbfbf;
  border-radius: 0.25rem;
  height: 180px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 320px;
}

.posts_date {
  color: var(--color_text);
  display: inline-block;
  margin-bottom: 5px;
  font-size: 13px;
}

.posts_cat span {
  border: 1px solid;
  color: var(--color_text);
  font-size: 12px;
  margin-right: 5px;
  padding: 2px 5px;
}

.no_post {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.no_post h1 {
  font-size: 30px;
  margin: 0 0 50px;
  color: var(--color_text);
  text-align: center;
}

.posts_content {
  margin-top: 30px;
}

.posts_content iframe {
  width: 100%;
  margin-bottom: 30px;
}

.pg-blog .blog_tmb {
  margin: 0 0 15px 0;
}

.pg_single_title {
  margin-bottom: 10px;
  text-align: left;
}

.pg_single_contents > .blog_tmb {
  margin-bottom: 30px;
}

.pg_single_contents > .blog_tmb img {
  height: 56.25%;
  width: 100%;
}

.pg_single_contents .breadcrumb_block {
  margin-bottom: 50px;
}

.pg-news .posts_item {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b8b8b8;
}

.pg-news .posts_title {
  margin: 0;
}

.wp-block-image {
  margin: 0 0 2em 0;
}

.wp-block-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.wp-block-buttons {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wp-block-button__link {
  display: block;
  width: 300px;
  font-size: 14px !important;
  padding: 10px 0;
  border-radius: 50px;
  text-align: center;
  margin: 20px auto;
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  #drawer {
    display: none;
  }

  .pagetop_block .contact_sp {
    display: none !important;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  .lg_none {
    display: none;
  }

  .main_visual .main_visual_inner .logo_sp_top {
    display: none;
  }

  .news_block .news_block_inner .archive_btn_sp {
    display: none;
  }
}

/* ====================
   レスポンシブ: 共通
   ==================== */

/* モバイル・タブレット共通の見出しスタイル */
@media screen and (max-width: 767px) {
  /* 共通セクション見出し - モバイル */
  .section_heading h2 {
    font-size: 28px;
  }

  .section_heading .section_subtitle {
    font-size: 14px;
  }

  /* 共通ボタン - モバイル */
  .btn {
    font-size: 14px;
    padding: 14px 10px;
    min-width: 180px;
  }

  .btn.btn_arrow {
    padding-right: 40px;
  }

  .btn.btn_arrow::after {
    right: 15px;
    width: 7px;
    height: 7px;
  }

  .btn.btn_arrow:hover::after {
    right: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  /* 共通セクション見出し - タブレット */
  .section_heading {
    margin-bottom: 60px;
  }

  .section_heading h2 {
    font-size: 32px;
  }

  .section_heading .section_subtitle {
    font-size: 15px;
  }

  /* 共通ボタン - タブレット */
  .btn {
    font-size: 15px;
    padding: 16px 10px;
    min-width: 200px;
  }

  .btn.btn_arrow {
    padding-right: 45px;
  }

  .btn.btn_arrow::after {
    right: 18px;
  }

  .btn.btn_arrow:hover::after {
    right: 14px;
  }
}

/* ====================
   レスポンシブ: モバイル（767px以下）
   ==================== */

@media screen and (max-width: 767px) {
  html {
    -webkit-overflow-scrolling: touch;
  }

  main {
    padding-top: 70px;
  }

  .contents_wrapper {
    overflow: hidden;
  }

  .blog_content_block {
    width: 100%;
    padding: 50px 0 100px;
  }

  .content_inner {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .visual_title {
    background-attachment: unset;
  }

  .visual_title .visual_title_inner {
    width: 90%;
    padding: 0;
  }

  .visual_title .visual_title_inner h2 {
    font-size: 32px;
  }

  .two_bgcolor_block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .two_bgcolor_block .text_block {
    width: 100%;
    padding: 70px 0;
    background: #e2e2e2;
  }

  .two_bgcolor_block .text_block .inner_text_item {
    width: 90%;
  }

  .two_bgcolor_block .height100_img_block {
    width: 100%;
    height: 250px;
  }

  .left_bg::before {
    position: static;
    background: none;
  }

  .right_bg::before {
    position: static;
    background: none;
  }

  header {
    padding: 0;
    position: fixed;
    height: 70px;
  }

  header .header_pc {
    padding: 0 20px;
  }

  header .header_pc .header_logo .logo_image {
    width: 200px;
    height: auto;
  }

  header .header_pc .header_logo .logo_text .logo_sub {
    font-size: 16px;
  }

  header .header_pc .header_logo .logo_text .logo_main {
    font-size: 26px;
    margin-top: 2px;
  }

  header .header_pc .header_item {
    display: none;
  }

  #drawer {
    top: 14px;
  }

  .sp_menu .header_nav_block ul li a:hover {
    background: none;
  }

  footer .footer_inner {
    padding: 20px 20px 100px;
    gap: 30px;
  }

  footer .footer_nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 10px;
  }

  footer .footer_nav ul li a {
    font-size: 13px;
  }

  footer .footer_copyright p {
    font-size: 12px;
    line-height: 1.7;
  }

  footer .copy {
    padding: 30px 0 90px;
  }

  .pagetop_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .pagetop_block .contact_sp a {
    opacity: 1 !important;
  }

  .pagetop_block #pagetop {
    width: 20%;
    height: 60px;
  }

  .pagetop_block #pagetop a {
    opacity: 1 !important;
  }

  .breadcrumb_block ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .breadcrumb_block ul li {
    white-space: nowrap;
  }

  .form_item_button {
    margin-top: 24px;
  }

  .form_item_button input {
    width: 110px;
  }

  .card_item {
    margin-bottom: 20px;
  }

  .card_item:last-of-type {
    margin-bottom: 0;
  }

  .card_text {
    margin-bottom: 2rem;
  }

  .card_button a {
    width: 200px;
  }

  .sm_order1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .sm_order2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 30px;
  }

  .btn01 a {
    width: 80%;
  }

  .loading div {
    width: 180px;
  }

  #elevator_nav {
    display: none;
  }

  p,
  a,
  li,
  table {
    font-size: 16px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
    margin-bottom: 0.5em;
  }

  h4 {
    font-size: 16px;
  }

  .sm_none {
    display: none;
  }

  /* ヒーローセクションは専用のメディアクエリ（640px以下）で制御 */

  .news_block {
    padding: 100px 0;
  }

  .news_block .news_block_inner {
    width: 90%;
    max-width: 100%;
    display: block;
    position: relative;
  }

  .news_block .news_block_inner .news_heading {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .news_block .news_block_inner .news_heading h3 {
    font-size: 24px;
    text-align: left;
    white-space: normal;
  }

  .news_block .news_block_inner .news_heading .news_subtitle {
    font-size: 14px;
    padding-left: 0;
  }

  .news_block .news_block_inner .news_content_wrapper {
    display: block;
    min-height: auto;
  }

  .news_block .news_block_inner .news_list {
    width: 100%;
    margin: 0 0 25px 0;
    position: relative;
  }

  .news_block .news_block_inner .news_list .news_item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
  }

  .news_block .news_block_inner .news_list .news_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .news_block .news_block_inner .news_list .news_item:last-child::after {
    display: none;
  }

  .news_block .news_block_inner .news_list .news_item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    max-width: 50%;
    height: 1px;
    background: #7FD4C1;
  }

  .news_block .news_block_inner .news_list dl {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
  }

  .news_block .news_block_inner .news_list dl dt {
    width: auto;
    padding: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 102px;
  }

  .news_block .news_block_inner .news_list dl dd {
    padding: 10px;
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }


  .news_block .news_block_inner .news_archive_btn {
    position: static;
    text-align: center;
    margin-top: 20px;
    bottom: auto;
    right: auto;
  }

  .news_block .news_block_inner .news_archive_btn a {
    padding: 10px 20px;
    font-size: 13px;
  }

  .news_block .news_block_inner .news_list dl dd {
    width: 100%;
  }

  .news_block .news_block_inner .archive_btn_sp {
    width: 250px;
    margin: 30px auto 0;
  }

  /* やよい福祉会についてセクション - モバイル */
  .about_section .about_hero .about_hero_text {
    padding: 35px 25px;
    border-radius: 25px 25px 0 0;
    width: 90%;
    max-width: 100%;
  }

  .about_section .about_hero .about_hero_text h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* やよい福祉会ならではのことセクション - モバイル */
  .unique_section {
    padding: 100px 0;
  }

  .unique_section .section_heading h2 {
    font-size: 22px;
  }

  .unique_section .section_heading .section_subtitle {
    font-size: 16px;
  }

  .unique_section .unique_feature_cards {
    margin-bottom: 50px;
  }

  .unique_section .unique_feature_card {
    padding: 25px 20px;
	flex-direction: column;
  }

  .unique_section .unique_feature_number {
    font-size: 30px;
	margin-bottom: 24px;
  }

  .unique_section .unique_feature_card h3 {
    font-size: 22px;
  }

  .unique_section .unique_image_grid_section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
    gap: 20px;
    position: relative;
  }

  .unique_section .unique_image_grid_item {
    width: 100%;
    margin: 0;
  }

  .unique_section .unique_image_grid {
    width: 100%;
    position: relative;
  }

  .unique_section .unique_image_grid_text {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 30px 25px;
    margin-top: 20px;
  }

  .unique_section .unique_image_grid_text h3 {
    font-size: 20px;
  }

  .unique_section .unique_service_features {
    margin-top: 40px;
  }

  .unique_section .unique_service_feature {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
  }

  .unique_section .unique_service_icon img {
    width: 80px;
  }

  .unique_section .unique_service_feature h3 {
    font-size: 20px;
  }

  .unique_section .unique_service_feature h3 span {
    border-bottom-width: 2px;
  }

  .unique_section .unique_service_feature p {
    font-size: 16px;
  }

  /* お問い合わせセクション - モバイル */
  .contact_section {
    padding: 100px 0;
    min-height: 400px;
  }

  .contact_section .contact_content {
    gap: 30px;
  }

  /* 事業所の案内セクション - モバイル */
  .office_section {
    padding: 100px 0;
  }

  .office_section .office_card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .office_section .office_content {
    flex-direction: column;
    gap: 30px;
  }

  .office_section .office_info_area {
    gap: 20px;
  }

  .office_section .office_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .office_section .office_logo {
    max-width: 80%;
  }

  .office_section .office_name_sub {
    font-size: 18px;
  }

  .office_section .office_name_main {
    font-size: 28px;
    margin-top: 2px;
  }

  .office_section .office_info_table th {
    padding: 10px;
    font-size: 14px;
  }

  .office_section .office_info_table td {
    padding: 10px;
    font-size: 14px;
  }

  .office_section .office_map {
    width: 100%;
  }

  .office_section .map_placeholder {
    height: 200px;
  }

  .office_section .map_placeholder p {
    font-size: 14px;
  }

  /* よくある質問セクション - モバイル */
  .faq_section {
    padding: 100px 0;
  }

  .faq_section .faq_item {
    border-radius: 20px;
  }

  .faq_section .faq_question {
    padding: 20px 25px;
  }

  .faq_section .faq_question h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .faq_section .faq_icon {
    width: 10px;
    height: 6px;
    margin-left: 10px;
  }

  .faq_section .faq_icon::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #fff;
  }

  .faq_section .faq_answer {
    padding: 0 25px;
  }

  .faq_section .faq_item.active .faq_answer {
    padding: 0 25px 25px;
  }

  .faq_section .faq_answer > div {
    padding: 16px;
  }

  /* ご利用の流れセクション - モバイル */
  .flow_section {
    padding: 100px 0;
  }

  .flow_section .flow_step {
    flex-direction: column;
    padding: 30px 20px;
    border-radius: 20px;
    gap: 20px;
  }

  .flow_section .flow_step_number {
    width: 80px;
    height: 80px;
  }

  .flow_section .flow_step_number .step_label {
    font-size: 16px;
  }

  .flow_section .flow_step_number .step_num {
    font-size: 36px;
  }

  .flow_section .flow_step_content h3 {
    font-size: 20px;
    text-align: center;
  }

  .flow_section .flow_arrow {
    padding: 8px 0;
  }

  .flow_section .flow_arrow img {
    width: 30px;
    height: 15px;
  }

  /* 年間イベントについてセクション - モバイル */
  .events_section {
    padding: 100px 0;
  }

  .events_section .section_heading h2 {
    font-size: 28px;
  }

  .events_section .section_heading .section_subtitle {
    font-size: 16px;
  }

  .events_section .events_images {
    height: 300px;
    margin-top: 30px;
  }

  .events_section .event_image_left {
    width: 120px;
    height: 120px;
    left: 5%;
  }

  .events_section .event_image_center_top {
    width: 100px;
    height: 100px;
    left: 15%;
    top: 5%;
  }

  .events_section .event_image_right_top {
    width: 110px;
    height: 110px;
    right: 5%;
    top: 5%;
  }

  .events_section .event_image_center_bottom {
    width: 120px;
    height: 120px;
    right: 10%;
    bottom: 10%;
  }

  .carousel_slider .slick-slider .slick-prev::before {
    font-size: 30px;
  }

  .carousel_slider .slick-slider .slick-prev {
    left: 10px;
  }

  .carousel_slider .slick-slider .slick-next::before {
    font-size: 30px;
  }

  .carousel_slider .slick-slider .slick-next {
    right: 10px;
  }

  .main_visual_subpage {
    height: 90px;
    margin-top: 0;
  }

  .main_visual_subpage .page_name h1 {
    font-size: 25px;
  }

  .under_content {
    width: 100%;
  }

  .under_content .content_inner {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .under_content .content_inner h2 {
    font-size: 24px;
  }

  .under_content .content_inner h3 {
    font-size: 20px;
  }

  .under_content .content_inner h4 {
    font-size: 17px;
  }

  .under_content .content_inner h4::before {
    top: 4px;
  }

  .gallerypage_block {
    padding: 40px 20px;
    margin-bottom: 70px;
  }

  .gallerypage_inner .gallerypage_inner_item {
    margin-right: 10px;
    margin-bottom: 10px;
    width: calc(33.3333333333% - 6.6666666667px);
  }

  .gallerypage_inner .gallerypage_inner_item img {
    border-radius: 5px;
  }

  .gallerypage_inner .gallerypage_inner_item p {
    font-size: 16px;
  }

  .password_block {
    margin-bottom: 70px;
  }

  .password_block input[type=password] {
    width: 90%;
    font-size: 16px;
  }

  .memberpage_block {
    padding: 40px 20px;
    margin-bottom: 70px;
  }

  .memberpage_block .video_block {
    margin-bottom: 40px;
  }

  .memberpage_block .video_block h3 {
    font-size: 20px;
  }

  .privacy_block {
    padding: 40px 20px;
    margin: 20px 0 70px;
  }

  .form_block {
    padding: 0 20px;
  }

  .form_block .form_row span {
    font-size: 16px;
  }

  .form_block .form_btn_wrap .form_btn + .form_btn {
    margin-left: 20px;
  }

  .form_block .form_btn {
    font-size: 16px;
    width: 250px;
    margin: 30px auto 0;
  }

  .form_block input[type=text],
  .form_block input[type=email],
  .form_block select,
  .form_block textarea {
    width: 100%;
    font-size: 16px;
  }

  .mwform-tel-field input[type=text] {
    width: 30% !important;
  }

  .pg_wrapper {
    padding: 0 5%;
  }

  .pg_title {
    font-size: 24px;
  }

  .posts_item_list .posts_item {
    margin-bottom: 40px;
  }

  .posts_tmb img {
    /* height: calc(((100vw - 40px) / 160) * 90); */
    width: 100%;
    border-radius: 10px;
  }

  .no_post {
    padding: 50px 20px 20px;
  }

  .home .no_post {
    margin-top: 20px;
    padding: 0 0 30px;
  }

  .no_post h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .pg_single_contents {
    padding-bottom: 0;
    padding-top: 0;
  }

  .wp-block-button__link {
    width: 250px;
    font-size: 16px !important;
  }
}

@media screen and (max-width: 750px) {
  body {
    min-width: initial;
  }
}

/* ====================
   レスポンシブ: タブレット（768px-999px）
   ==================== */

@media screen and (min-width: 768px) and (max-width: 999px) {
  main {
    padding-top: 80px;
  }

  header {
    padding: 0;
    position: fixed;
    height: 80px;
  }

  header .header_pc {
    padding: 0 30px;
  }

  header .header_pc .header_logo .logo_image {
    width: 280px;
    height: auto;
  }

  header .header_pc .header_logo .logo_text .logo_sub {
    font-size: 20px;
  }

  header .header_pc .header_logo .logo_text .logo_main {
    font-size: 32px;
    margin-top: 3px;
  }

  header .header_pc .header_item {
    display: none;
  }

  footer .footer_nav ul {
    gap: 20px;
    row-gap: 12px;
  }

  footer .footer_nav ul li a {
    font-size: 14px;
  }

  footer .footer_copyright p {
    font-size: 13px;
    line-height: 1.75;
  }

  .pagetop_block .contact_sp {
    display: none !important;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  #elevator_nav {
    background: none;
    right: 1%;
  }

  .md_none {
    display: none;
  }

  .main_visual .main_visual_inner .logo_sp_top {
    display: none;
  }

  .news_block {
    padding: 50px 0;
  }

  .news_block .news_block_inner {
    width: 90%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news_block .news_block_inner .news_heading {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .news_block .news_block_inner .news_content_wrapper {
    display: block;
    min-height: auto;
  }

  .news_block .news_block_inner .news_list {
    width: 100%;
    padding-bottom: 50px;
  }


  .news_block .news_block_inner .news_archive_btn {
    position: static;
    text-align: right;
    bottom: auto;
    right: auto;
  }

  .news_block .news_block_inner .news_archive_btn a {
    padding: 10px 18px;
    font-size: 12px;
  }

  .news_block .news_block_inner .archive_btn_sp {
    display: none;
  }

  /* やよい福祉会についてセクション - タブレット */
  .about_section .about_hero {
    min-height: 450px;
  }

  .about_section .about_hero .about_hero_blue_bar {
    width: 60px;
  }

  .about_section .about_hero .about_hero_text {
    padding: 40px 45px;
    width: 70%;
    max-width: 850px;
  }

  .about_section .about_hero .about_hero_text h2 {
    font-size: 30px;
    text-align: center;
    color: #41acb9;
    margin-bottom: 22px;
  }

  .about_section .about_hero .about_hero_text p {
    font-size: 16px;
    line-height: 1.95;
  }

  /* やよい福祉会ならではのことセクション - タブレット */
  .unique_section {
    padding: 100px 0;
  }

  .unique_section .section_heading h2 {
    font-size: 32px;
  }

  .unique_section .section_intro {
    font-size: 16px;
    line-height: 1.95;
  }

  .unique_section .unique_feature_cards {
    margin-bottom: 60px;
  }

  .unique_section .unique_feature_card {
    padding: 20px;
  }

  .unique_section .unique_feature_number {
    font-size: 30px;
  }

  .unique_section .unique_feature_card h3 {
    font-size: 22px;
  }

  .unique_section .unique_feature_card p {
    font-size: 16px;
    line-height: 1.95;
  }

  .unique_section .unique_image_grid_item {
    margin: 0;
  }

  .unique_section .unique_image_grid_text {
    padding: 38px;
  }

  .unique_section .unique_image_grid_text p {
    font-size: 16px;
    line-height: 1.95;
  }

  .unique_section .unique_service_feature {
    padding: 35px 25px;
  }

  .unique_section .unique_service_icon img {
    width: 80px;
  }

  .unique_section .unique_service_feature h3 {
    font-size: 22px;
  }

  /* お問い合わせセクション - タブレット */
  .contact_section {
    padding: 80px 30px;
    min-height: 500px;
  }

  /* 事業所の案内セクション - タブレット */
  .office_section {
    padding: 100px 0;
  }

  .office_section .office_card {
    margin: 0 30px;
    padding: 50px 40px;
    border-radius: 30px;
  }

  .office_section .office_content {
    flex-direction: column;
    gap: 40px;
  }

  .office_section .office_name_sub {
    font-size: 20px;
  }

  .office_section .office_name_main {
    font-size: 32px;
  }

  .office_section .office_info_table th {
    padding: 18px 25px 18px 0;
    font-size: 16px;
  }

  .office_section .office_info_table td {
    padding: 18px 0;
    font-size: 16px;
  }

  .office_section .office_map {
    width: 100%;
  }

  .office_section .map_placeholder {
    height: 240px;
  }

  .office_section .map_placeholder p {
    font-size: 15px;
  }

  /* よくある質問セクション - タブレット */
  .faq_section {
    padding: 100px 0;
  }

  .faq_section .faq_items {
    gap: 16px;
  }

  .faq_section .faq_item {
    border-radius: 30px;
  }

  .faq_section .faq_question {
    padding: 25px 35px;
  }

  .faq_section .faq_question h3 {
    font-size: 24px;
  }

  .faq_section .faq_icon {
    width: 12px;
    height: 7px;
  }

  .faq_section .faq_answer {
    padding: 0 35px;
  }

  .faq_section .faq_item.active .faq_answer {
    padding: 0 35px 35px;
  }

  .faq_section .faq_answer > div {
    padding: 20px;
  }

  /* ご利用の流れセクション - タブレット */
  .flow_section {
    padding: 100px 0;
  }

  .flow_section .flow_step {
    padding: 35px 30px;
    border-radius: 30px;
    gap: 30px;
  }

  .flow_section .flow_step_number {
    width: 90px;
    height: 90px;
  }

  .flow_section .flow_step_number .step_label {
    font-size: 18px;
  }

  .flow_section .flow_step_number .step_num {
    font-size: 42px;
  }

  .flow_section .flow_step_content h3 {
    font-size: 22px;
  }

  .flow_section .flow_step_content p {
    font-size: 15px;
  }

  .flow_section .flow_arrow img {
    width: 40px;
    height: 18px;
  }

  /* 年間イベントについてセクション - タブレット */
  .events_section {
    padding: 100px 0;
  }

  .events_section .section_heading h2 {
    font-size: 32px;
  }

  .events_section .section_description {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .events_section .events_images {
    height: 350px;
  }

  .events_section .event_image_left {
    width: 160px;
    height: 160px;
  }

  .events_section .event_image_center_top {
    width: 130px;
    height: 130px;
  }

  .events_section .event_image_right_top {
    width: 140px;
    height: 140px;
  }

  .events_section .event_image_center_bottom {
    width: 160px;
    height: 160px;
  }

  .main_visual_subpage {
    margin-top: 0;
  }

  .under_content .content_inner {
    width: 100%;
    margin: 0 auto;
  }

  .under_content .content_inner h4 {
    font-size: 17px;
  }

  .under_content .content_inner h4::before {
    top: 4px;
  }

  .gallerypage_inner .gallerypage_inner_item img {
    height: auto;
  }

  .pg_single_contents {
    padding-bottom: 0;
    padding-top: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  .card_item {
    padding: 0 12px;
  }

  .main_visual_subpage .page_name {
    width: 100%;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */
