/* 共通項目 =======================================================*/
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

figure {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none !important;
}

a:focus {
  text-decoration: none;
}

button:focus {
  outline: none;
}

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

img {
  max-width: 100%;
}

/*フォーカス時の枠線を消す*/
*:focus {
  outline: none;
}

button {
  outline: none;
}

.ws_invisible {
  display: none!important;
}

/* フォント設定 =======================================================*/
body,
button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

/* 追加共通項目 =======================================================*/
.ws_sp_only {
  display: none !important;
}

/* コンテンツ幅 */
.ws_inner {
  width: 79%;
  margin: 0 auto;
}

/* アニメーション =======================================*/
/* 初期状態 */
.js-hidden {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.4s cubic-bezier(0.3, 0, 0.6, 1);
  transition-delay: var(--delay, 0s);
}

/* 表示状態 */
.js-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー
 ======================================================*/
.ws_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* 下スクロール時に上へ隠す */
.js-disappear {
  transform: translateY(-100%);
}

/* 上スクロール時に再表示 */
.js-appear {
  transform: translateY(0);
}

.ws_header_higher {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--wp--preset--color--white);
}

.ws_header_logo {
  width: clamp(320px, 16.7vw, 365px);
  height: auto;
  margin: 0;
  transition: opacity 0.3s;
}

.ws_header_logo:hover {
  opacity: 0.7;
}

.ws_header_text {
  font-size: clamp(0.5rem, 0.404rem + 0.39vw, 0.875rem);
}

/* ヘッダーボタン */
.ws_header_btn_container {
  height: 100%;
}

.ws_header_btn {
  height: 100%;
}

.ws_header_btn > a {
  width: 10.4vw;
  min-width: 200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.6em;
  transition: all 0.3s;
  border-bottom: solid 1px var(--wp--preset--color--blue-light);
  color: var(--wp--preset--color--white);
  position: relative;
}

.ws_header_btn-recruit {
  background-color: var(--wp--preset--color--main);
}

.ws_header_btn-contact {
  background-color: var(--wp--preset--color--accent);
}

.ws_header_btn a:before {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.ws_header_btn-recruit a:before {
  background-image: url(../images/img-recruit.webp);
  left: 1.6em;
}

.ws_header_btn-contact a:before {
  background-image: url(../images/img-mail.webp);
  left: 1em;
}

.ws_header_btn a:hover:before {
  scale: calc(1.5);
}

/* ナビゲーション */
.ws_header_nav {
  height: 60px;
  margin-top: 0 !important;
  border-top: 1px solid var(--wp--preset--color--main);
  border-bottom: 1px solid var(--wp--preset--color--main);
}

.ws_header_nav a {
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-self: center;
  transition: all 0.3s;
}

.ws_header_nav a span {
  position: relative;
  display: inline-block;
}

.ws_header_nav a span:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--wp--preset--color--white);
  bottom: -0.2em;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.ws_header_nav a:hover span:after {
  transform: scale(1, 1);
  transform-origin: left top;
}

/* ヘッダーナビゲーション設定 ================================*/
/* デフォルトのナビゲーションスタイルを上書きするためのCSS */
/* ホバー時の下線を削除 */
.nav-item-inner:hover {
  text-decoration: none !important;
}

/* トグルボタン */
.wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle {
  width: 1em;
  height: 1em;
}

.js_arrow_icon {
  display: none;
}

/*=============================================
パターン タイトル
===============================================*/

/* ページセクションタイトル（後ろ斜め線入りタイトル）
==============================================*/
.ws_page_section_title_wrapper {
  display: inline-block;
  position: relative;
}

.ws_page_section_title_wrapper::after {
  content: "";
  position: absolute;
  width: clamp(0.375rem, 0.279rem + 0.39vw, 0.75rem);
  height: clamp(2.5rem, 1.863rem + 2.61vw, 4rem);
  transform: rotate(45deg);
  right: 0;
  bottom: calc(-1 * clamp(0.875rem, calc(0.779rem + 0.39vw), 1.25rem));
  background-color: var(--wp--preset--color--accent);
}

.ws_page_section_title_en {
  font-size: clamp(2rem, 1.235rem + 3.14vw, 5rem);
  font-weight: 700;
  color: var(--wp--preset--color--white);
  line-height: 1.2;
}

.ws_page_section_title {
  font-size: clamp(0.875rem, 0.779rem + 0.39vw, 1.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--white);
}

/* 個別ページのヘッダー下タイトル部分
==============================================*/
.ws_page_title_section {
  margin-top: 140px !important; /* ヘッダー高さ */
  height: 300px;
  width: 100%;
  background-position: center;
}

.ws_page_title_wrapper {
  display: inline-block;
  position: relative;
  padding: 0 1.5em 0.5em 0.5em;
  background-color: rgb(255, 255, 255, 0.45);
  top: 50%;
  transform: translateY(-50%);
  left: 5vw;
}

.ws_page_title_wrapper::after {
  content: "";
  position: absolute;
  width: clamp(0.375rem, 0.279rem + 0.39vw, 0.75rem);
  height: clamp(2.5rem, 1.863rem + 2.61vw, 4rem);
  transform: rotate(45deg);
  right: 1em;
  bottom: 0;
  background-color: var(--wp--preset--color--accent);
}

.ws_page_title_en {
  font-size: clamp(2rem, 1.235rem + 3.14vw, 5rem);
  font-weight: 700;
  color: var(--wp--preset--color--main);
  line-height: 1.2;
}

.ws_page_title {
  font-size: clamp(0.875rem, 0.779rem + 0.39vw, 1.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--black);
}

/* セクションのタイトル（前斜め線タイトル）
==============================================*/
.ws_section_title {
  font-size: var(--wp--preset--font-size--fsz-32);
  color: var(--wp--preset--color--accent);
  position: relative;
  padding-left: 0.6em;
  font-weight: 700;
}

.ws_section_title::before {
  content: "";
  position: absolute;
  width: clamp(0.313rem, 0.233rem + 0.33vw, 0.625rem);
  height: clamp(2.5rem, 2.245rem + 1.05vw, 3.5rem);
  left: 0;
  top: -0.5em;
  transform: rotate(35deg);
  background-color: var(--wp--preset--color--main);
}

/*==============================================
パターン ボタン
================================================*/

/* 「お問い合わせはこちら」ボタン
==============================================*/
.ws_cta_btn {
  position: fixed;
  right: 1vw;
  bottom: 2vw;
  width: 12.4vw;
  cursor: pointer;
  max-width: 238px;
  z-index: 100;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.ws_cta_btn.is-show {
  opacity: 1;
  visibility: visible;
}

.ws_cta_btn:hover {
  scale: 1.1;
}

/* →矢印ボタン
==============================================*/
.wp-block-button.is-style-arrow-button > a,
.wp-block-button.is-style-arrow-blue-button > a {
  color: var(--wp--preset--color--accent);
  font-size: var(--wp--preset--font-size--fsz-20);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 1em 3.5em 1em 1.5em;
  border: solid 3px var(--wp--preset--color--accent);
  background-color: var(--wp--preset--color--white);
  position: relative;
}

.wp-block-button.is-style-arrow-blue-button > a {
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--main);
  border: solid 3px var(--wp--preset--color--main);
}

.wp-block-button.is-style-arrow-button > a::after,
.wp-block-button.is-style-arrow-blue-button > a::after {
  content: "";
  position: absolute;
  width: 1.8em;
  height: 1.8em;
  background-image: url(../images/img-btn-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-button.is-style-arrow-blue-button > a::after {
  background-image: url(../images/img-arrow-white-btn-blue.webp);
}

.wp-block-button.is-style-arrow-button > a:hover {
  background-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--white);
}

.wp-block-button.is-style-arrow-blue-button > a:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--main);
}

.wp-block-button.is-style-arrow-button > a:hover::after {
  background-image: url(../images/img-btn-arrow-red.webp);
}

.wp-block-button.is-style-arrow-blue-button > a:hover::after {
  background-image: url(../images/img-btn-arrow-blue.webp);
}

/* >矢印ボタン
==============================================*/
.wp-block-button.is-style-simple-blue-arrow-button > a,
.wp-block-button.is-style-simple-red-arrow-button > a {
  width: clamp(365px, 21vw, 400px);
  height: clamp(84px, 5.2vw, 100px);
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s;
  border-radius: 0 !important;
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--fsz-24);
  font-weight: 700;
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-top: 0;
  padding-bottom: 0;
}

.wp-block-button.is-style-simple-blue-arrow-button > a {
  background-color: var(--wp--preset--color--main);
  border: solid 3px var(--wp--preset--color--main);
}
.wp-block-button.is-style-simple-red-arrow-button > a {
  background-color: var(--wp--preset--color--accent);
  border: solid 3px var(--wp--preset--color--accent);
}

/* 矢印背景 */
.wp-block-button.is-style-simple-blue-arrow-button > a:before,
.wp-block-button.is-style-simple-red-arrow-button > a:before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background-color: var(--wp--preset--color--white);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}

.wp-block-button.is-style-simple-blue-arrow-button > a:before {
  border: 2px solid var(--wp--preset--color--main);
}

.wp-block-button.is-style-simple-red-arrow-button > a:before {
  border: 2px solid var(--wp--preset--color--accent);
}

/* 矢印部分 */
.wp-block-button.is-style-simple-blue-arrow-button > a:after,
.wp-block-button.is-style-simple-red-arrow-button > a:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 0;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1.6em;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}

.wp-block-button.is-style-simple-blue-arrow-button > a:after {
  border-top: solid 2px var(--wp--preset--color--main);
  border-right: solid 2px var(--wp--preset--color--main);
}

.wp-block-button.is-style-simple-red-arrow-button > a:after {
  border-top: solid 2px var(--wp--preset--color--accent);
  border-right: solid 2px var(--wp--preset--color--accent);
}

.wp-block-button.is-style-simple-blue-arrow-button > a:hover {
  color: var(--wp--preset--color--main);
  background-color: var(--wp--preset--color--white);
}

.wp-block-button.is-style-simple-blue-arrow-button > a:hover::before {
  border-color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--main);
}

.wp-block-button.is-style-simple-red-arrow-button > a:hover {
  color: var(--wp--preset--color--accent);
  background-color: var(--wp--preset--color--white);
}

.wp-block-button.is-style-simple-red-arrow-button > a:hover::before {
  border-color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--accent);
}
.wp-block-button.is-style-simple-blue-arrow-button > a:hover::after,
.wp-block-button.is-style-simple-red-arrow-button > a:hover::after {
  border-top: solid 2px var(--wp--preset--color--white);
  border-right: solid 2px var(--wp--preset--color--white);
}

/* 青四角ボタン
==============================================*/
.wp-block-button.is-style-square-button > a {
  background-color: var(--wp--preset--color--main);
  color: var(--wp--preset--color--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 0 !important;
  padding: 1em 3.9em 1em 1.4em;
  transition: all 0.3s;
}

.wp-block-button.is-style-square-button > a:before {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--wp--preset--color--accent);
  z-index: 0;
}

.wp-block-button.is-style-square-button > a:after {
  content: "";
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  background-image: url(../images/img-move.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 1.4em;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-button.is-style-square-button > a:hover {
  background-color: var(--wp--preset--color--accent);
}

/* パンくずリスト
==============================================*/
.ws_bread {
  font-size: var(--wp--preset--font-size--fsz-20);
  margin-top: var(--wp--preset--spacing--space-24) !important;
  margin-bottom: var(--wp--preset--spacing--space-24) !important;
}

/* ページ間のCTA
==============================================*/
.ws_cta_middle {
  background-position: center;
  position: relative;
}

.ws_cta_middle_title {
  position: inherit;
  z-index: 1;
}

.ws_cta_middle::before,
.ws_cta_middle::after {
  content: "";
  position: absolute;
  width: 24%;
  height: 100%;
  background-color: var(--wp--preset--color--main);
  z-index: 0;
}

.ws_cta_middle::before {
  top: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.ws_cta_middle::after {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* フッター前のCTA
==============================================*/
.ws_cta {
  background-color: var(--wp--preset--color--main);
  padding: var(--wp--preset--spacing--space-80);
  text-align: center;
}

.ws_cta_title {
  color: var(--wp--preset--color--white);
  font-size: clamp(1.5rem, 1.118rem + 1.57vw, 3rem);
  font-weight: 700;
  line-height: 1.8;
}

.ws_cta_title_accent {
  font-size: var(--wp--preset--font-size--fsz-48);
  position: relative;
}

.ws_cta_title_accent::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--yellow);
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.ws_cta_item_wrapper {
  width: 79vw;
  margin: var(--wp--preset--spacing--space-32) auto 0;
  padding: var(--wp--preset--spacing--space-56);
  background-color: var(--wp--preset--color--white);
  border-radius: 60px;
}

.ws_cta_item_container {
  margin-top: var(--wp--preset--spacing--space-48);
}

.ws_cta_item_title {
  font-size: var(--wp--preset--font-size--fsz-32);
  margin-bottom: var(--wp--preset--spacing--space-24);
}

.ws_cta_img_mail,
.ws_cta_img_tel {
  transition: opacity 0.3s;
}

.ws_cta_img_mail:hover,
.ws_cta_img_tel:hover {
  opacity: 0.7;
}

.ws_cta_img_mail {
  width: 10.4vw;
  text-align: center;
}

.ws_cta_img_tel {
  width: 5.2vw;
  margin-bottom: var(--wp--preset--spacing--space-24);
  text-align: center;
}

.ws_cta_tel_num {
  font-size: clamp(1.5rem, 0.926rem + 2.35vw, 3.75rem);
  color: var(--wp--preset--color--main);
  font-weight: 700;
  transition: color 00.3s;
}

.ws_cta_tel_num:hover {
  color: var(--wp--preset--color--accent);
}

.ws_cta_tel-time {
  font-size: var(--wp--preset--font-size--fsz-18);
  font-weight: 700;
}

.ws_cta_item {
  position: relative;
}

.ws_cta_item:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 80%;
  background-color: var(--wp--preset--color--blue-light);
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

/* フッター 
==============================================*/
footer {
  margin-top: 0;
}

.ws_footer_wrapper {
  display: flex;
}

.ws_footer_logo img {
  width: 21vw;
}

.ws_footer_logo {
  transition: opacity 0.3s;
}

.ws_footer_logo:hover {
  opacity: 0.7;
}

.ws_footer_left {
  width: 40%;
}

.ws_footer_left_text {
  white-space: nowrap;
}

.ws_footer_right {
  width: 60%;
  display: flex;
  gap: 8vw;
}

.ws_footer_right a {
   transition: color 0.3s;
}

.ws_footer_right a:hover {
   color: var(--wp--preset--color--accent)!important;
}


.ws_footer_btn_field {
  width: 15vw;
  min-width: 200px;
  transition: scale 0.3s;
  cursor: pointer;
}

.ws_footer_btn_field:hover {
  scale: 1.1;
}

/* トップアイコン
==================================================*/
.ws_top_icon {
  position: fixed;
  right: 0;
  top: 50vh;
  background: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--white);
  padding: 2.5em 0.5em 0.5em;
  border: 2px solid var(--wp--preset--color--white);
  border-right: none;
  z-index: 100;
  border-radius: 1em 0 0 1em;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.ws_top_icon.is-show {
  opacity: 1;
  visibility: visible;
}

.ws_top_icon:hover {
  opacity: 0.7;
}

.ws_top_icon:before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 2em;
  background: center / contain no-repeat url(../images/img-to-top.webp);
  top: 0.5em;
  left: 50%;
  transform: translateX(-50%);
}

/*=================================================
 お知らせ、フィールドのイベント情報 共通パーツ
==================================================*/

/* 投稿ページ カテゴリー一覧
==================================================*/
.category_list_link_all {
  margin: 0;
  flex: 0 0 auto;
}

.ws_category_list_link_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 1 auto;
  justify-content: space-between;
  gap: var(--wp--preset--spacing--space-24);
}

.ws_field-event_list .ws_category_list_link_wrapper,
.ws_field-event .ws_category_list_link_wrapper {
  justify-content: flex-start;
  gap: 2.8vw;
}

.category-list .category-item,
.category-list .category-items {
  margin: 0;
  padding: 0;
}

.category_list_link_all > a,
.ws_category_list_link_wrapper .cat-item > a {
  display: inline-block;
  width: 13.5vw;
  min-width: 230px;
  border: solid 4px var(--wp--preset--color--accent);
  color: var(--wp--preset--color--accent);
  padding: 0.5em 1em;
  border-radius: 16px;
  transition: all 0.3s;
  text-align: center;
  font-size: var(--wp--preset--font-size--fsz-24);
  font-weight: 700;
  box-sizing: border-box;
}

/* 「すべて」の背景色 */
.ws_news .category_list_link_all > a,
.ws_field-event .custom_category_list_link_all > a {
  background-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--accent);
}

/* 現在カテゴリー背景色 */
.ws_category_list_link_wrapper .cat-item.current-cat > a {
  background-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--white);
}

.category_list_link_all > a:hover,
.custom_category_list_link_all > a:hover,
.ws_category_list_link_wrapper .cat-item > a:hover {
  background-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--white);
}

/* 投稿ページ一覧
==================================================*/
.ws_blog_item_wrapper {
  margin-top: var(--wp--preset--spacing--space-64);
}

.ws_blog_item_wrapper li {
  margin-top: 0;
}

/* 投稿ページの日時とカテゴリー
==================================================*/
.ws_blog_item {
  border-bottom: solid 4px var(--wp--preset--color--main);
  padding: 1.8em 1.2em;
  background-color: var(--wp--preset--color--white);
}

.ws_blog_item_time {
  margin-top: 0;
  font-size: var(--wp--preset--font-size--fsz-16);
}

.ws_blog_item_cat > a,
.ws_custom_cat > a {
  font-size: var(--wp--preset--font-size--fsz-16);
  font-weight: 700;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--accent);
  border: 2px solid var(--wp--preset--color--accent);
  padding: 0.3em 0.6em;
  border-radius: 12px;
  transition: all 0.3s;
}

.ws_blog_item_cat > a:hover,
.ws_custom_cat > a:hover {
  color: var(--wp--preset--color--accent);
  background-color: var(--wp--preset--color--white);
}

.ws_blog_item_title {
  font-size: var(--wp--preset--font-size--fsz-20);
  font-weight: 700;
  margin-top: var(--wp--preset--spacing--space-24);
}

.ws_blog_item_title > a {
  transition: color 0.3s;
  position: relative;
}

.ws_blog_item_title > a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--wp--preset--color--accent);
  bottom: -0.2em;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.ws_blog_item_title > a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.ws_blog_item_title > a:hover {
  color: var(--wp--preset--color--accent);
}

.ws_blog_page-num {
  margin-top: var(--wp--preset--spacing--space-100);
}

/* ページネーション
==================================================*/
.wp-block-query-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 1em;
}

.page-numbers {
  width: 2em;
  height: 2em;
  border: solid 1px var(--wp--preset--color--accent);
  color: var(--wp--preset--color--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-numbers.current {
  background-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--white);
  font-weight: 700;
}

.wp-block-query-pagination-next-arrow,
.wp-block-query-pagination-previous-arrow {
  font-size: 1.5em;
}

.wpcf7-turnstile {
  margin-top: var(--wp--preset--spacing--space-24);
  text-align: right;
}

/*==============================================
 レスポンシブ 
==============================================*/
@media screen and (max-width: 781.5px) {
  .ws_inner {
    width: 85%;
  }

  .ws_pc_only {
    display: none!important;
  }

  .ws_sp_only {
    display: block !important;
  }
  /* ヘッダー */
  .ws_header_higher {
    height: 60px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  }

  .ws_header_logo img {
    width: 51vw;
    max-width: 200px;
  }

  .ws_header_btn {
    display: none;
  }

  .ws_header_nav {
    height: auto;
    border: none;
  }

  /* ハンバーガーアイコンの位置 */
  .bp_header_nav_wrapper button {
    position: absolute;
    top: -43px;
    right: 0;
  }

  /* ハンバーガーアイコンデフォルト */
  .wp-block-navigation__responsive-container-open,
  .wp-block-navigation__responsive-container-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    position: absolute;
    top: -38px;
    right: 4%;
  }

  /* デフォルトを非表示 */
  .wp-block-navigation__responsive-container-open > svg,
  .wp-block-navigation__responsive-container-close > svg {
    display: none;
  }

  /* ハンバーガーアイコンを追加 */
  .js_hamburger_icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 30px;
    height: 16px;
  }

  .js_hamburger_icon span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--wp--preset--color--black);
    transition: all 0.3s ease;
  }

  /*ハンバーガーメニューの下のラベル*/
  .menu-label {
    width: auto;
    font-size: clamp(0.563rem, -0.259rem + 4.11vw, 0.75rem) !important;
    display: block;
    text-align: center;
    color: var(--wp--preset--color--black);
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01rem;
    position: relative;
    top: 22px;
  }

  .wp-block-navigation__responsive-container.is-menu-open {
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 60px;
  }

  /* 閉じるボタンとナビゲーションのスペース */
  .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation__responsive-container-content {
    padding-top: 20px !important;
  }

  /* アコーディオンのトグルボタンを表示させるため */
  .js_nav_item_inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
  }

  /*ナビゲーションメニューの幅*/
  /* ヘッダーと同じにする */
  .wp-block-navigation__responsive-close {
    padding-top: 60px;
    padding-right: 4%;
    padding-left: 4%;
  }

  .wp-block-navigation__container.is-responsive {
    gap: 0;
    width: 100%;
  }

  /* リンク幅を100%にする */
  .wp-block-navigation__container.is-responsive > li {
    width: 100%;
  }

  header .wp-block-navigation-item li {
    width: 100%;
  }

  header .wp-block-navigation-item a {
    display: block;
    width: 100%;
    padding: 20px 0 !important;
    text-decoration: none;
    color: inherit;
  }

  /* サブメニュー */
  .wp-block-navigation-submenu.is-open.wp-block-navigation__submenu-container,
  .wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    width: 100% !important;
    padding-top: 0 !important;
  }

  .wp-block-navigation__submenu-icon {
    display: none;
  }

  /* メニュー一覧 */
  /* 閉じるボタンの位置 */
  .wp-block-navigation__responsive-container-close {
    margin-top: 12px;
  }

  /* 閉じるボタンの表示 */
  .wp-block-navigation__responsive-container-close span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--wp--preset--color--white);
  }

  .wp-block-navigation__responsive-container-close span:nth-child(2) {
    opacity: 0;
  }

  .wp-block-navigation__responsive-container-close span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--wp--preset--color--white);
  }

  .wp-block-navigation__responsive-container-close .menu-label {
    color: var(--wp--preset--color--white);
  }

  /* アコーディオンのトグルボタン */
  .js_submenu_toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: auto;
    vertical-align: middle;
  }

  .js_arrow_icon {
    width: 2em;
    height: 1.5em;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .wp-block-navigation__responsive-container-open {
    display: inline-flex !important;
  }
  .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }

  /* ヘッダー下タイトル */
  .ws_page_title_section {
    margin-top: 60px !important; /* ヘッダー高さ */
    height: 200px;
  }

  /* ＜矢印ボタン */
  .wp-block-button.is-style-simple-blue-arrow-button > a,
  .wp-block-button.is-style-simple-red-arrow-button > a {
    width: clamp(260px, 77vw, 300px);
    height: clamp(40px, 15.3vw, 60px);
  }

  /* 「お問い合わせはこちら」ボタン */
  .ws_cta_btn {
    display: none;
  }

  /* ページ間のCTA */
  .ws_cta_middle::before,
  .ws_cta_middle::after {
    display: none;
  }

  /* フッター前のCTA */
  .ws_cta {
    padding-left: 0;
    padding-right: 0;
  }

  .ws_cta_title_accent::before {
    width: 8px;
    height: 8px;
    top: -8px;
  }

  .ws_cta_item_wrapper {
    border-radius: 32px;
    padding: var(--wp--preset--spacing--space-32);
  }

  .ws_cta_item:after {
    display: none;
  }

  .ws_cta_text {
    text-align: left;
  }

  .ws_cta_img_mail {
    width: 30vw;
    max-width: 80px;
    text-align: center;
  }

  .ws_cta_img_tel {
    width: 20vw;
    max-width: 60px;
  }

  /* 個別ページのタイトル部分 */
  .ws_page_title_section {
    margin-top: 60px !important; /* ヘッダー高さ */
  }

  /* カテゴリー一覧 */
  .category_list_link_all > a,
  .ws_category_list_link_wrapper .cat-item > a {
    width: inherit;
    min-width: 140px;
    font-size: var(--wp--preset--font-size--fsz-20);
    border-radius: 24px;
    padding: 0.25em 0.5em;
  }

  /* 投稿一覧 */
  .ws_blog_item {
    padding: 1em 0.5em;
  }

  /* spの時表示する下部ボタン */
  .ws_footer_btn_container {
    display: flex !important;
    height: 60px;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
    border-top: solid 1px var(--wp--preset--color--white);
  }

  .ws_footer_btn {
    width: 50%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    background-color: var(--wp--preset--color--main);
    transition: all 0.3s;
  }

  .ws_footer_btn > img {
    width: 2em;
    height: 2em;
  }

  .ws_footer_btn_text {
    color: var(--wp--preset--color--white);
    font-size: var(--wp--preset--font-size--fsz-18);
    font-weight: 700;
  }

  .ws_footer_btn-red {
    background-color: var(--wp--preset--color--accent);
  }

  .ws_footer_btn:hover {
    opacity: 0.6;
  }

  /* フッター */
  .ws_footer_wrapper {
    flex-direction: column;
  }

  .ws_footer_logo img {
    width: clamp(200px, 60vw, 280px);
  }

  .ws_footer_left {
    width: 100%;
  }
  .ws_footer_right {
    width: 100%;
    flex-direction: column;
    gap: var(--wp--preset--spacing--space-16);
  }

  .ws_footer_btn_field {
    width: clamp(180px, 39vw, 240px);
  }

  .ws_footer_copy {
    margin-bottom: 60px;
  }

  /* トップアイコン */
  .ws_top_icon {
    top: 75vh;
    padding: 1.5em 0.5em 0.5em;
  }

  .ws_top_icon:before {
    width: 1em;
    height: 1.5em;
    top: 0.25em;
  }
}

/* 782px以上でハンバーガーメニュー非表示*/
@media (min-width: 782px) {
  .wp-block-navigation__responsive-container {
    display: flex !important;
  }
  .wp-block-navigation__responsive-container-toggle {
    display: none !important;
  }
}
