@charset "utf-8";

/*
 * main.css
 * Bousai REVO Original Theme
 *
 * 目次
 *  0. CSS カスタムプロパティ（変数）/ リセット
 *  1. 共通・レイアウト
 *  2. ヘッダー
 *  3. フッター
 *  4. トップページ
 *     4-1. ヘッダースライダー
 *     4-2. コンテンツビルダー各セクション
 *  5. 下層ページ共通
 *  6. コンポーネント（ユーティリティ・パーツ）
 *  7. inquiry.php　
 * 8. inquiry-form.php　
 * 9. 下層ページ
  * 10. topページ
  * 11. singleページ
  * 12. 下層ページ new
 */

/* ======================================================================
   0. CSS カスタムプロパティ（変数）
   ====================================================================== */

:root {
  /* ブランドカラー */
  --color-primary: #ffe652;
  /* 黄色（メインアクセント） */
  --color-primary-dark: #ffc836;
  /* 黄色（グラデーション下端） */
  --color-secondary: #b69e84;
  /* ブラウン */
  --color-secondary-dark: #92785f;
  /* ブラウン（ホバー） */
  --color-dark: #726101;
  /* ダークイエロー（テキスト用） */

  /* ニュートラル */
  --color-black: #333333;
  --color-gray: #999999;
  --color-light: #f9f9f9;
  --color-white: #ffffff;
  --color-border: #dddddd;

  /* レイアウト */
  --inner-max-width: 1100px;
  --main-col-max-width: 1200px;

  /* ヘッダー高さ */
  --header-height-pc: 70px;
  --header-height-sp: 50px;

  /* ブレークポイント（参考値。メディアクエリ内では直接数値を使う） */
  /* --bp-pc: 1025px; */
  /* --bp-tablet: 768px; */
  /* --bp-sp: 600px; */
}

/* リセット */
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  word-break: normal;
}

body {
  width: 100%;
  min-width: 300px;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

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

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

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

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"],
[type="button"],
[type="reset"],
[type="submit"],
button {
  cursor: pointer;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

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

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

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

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

[aria-controls] {
  cursor: pointer;
}

[aria-disabled="true"] {
  cursor: default;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.6s ease;
}

/* ======================================================================
   1. 共通・レイアウト
   ====================================================================== */

/* .inner 幅 */
.inner {
  max-width: var(--inner-max-width);
  margin: 0 auto;
}

/* #main_col */
#main_col {
  max-width: var(--main-col-max-width);
  margin: 50px auto 150px;
  box-sizing: border-box;
}

/* clearfix */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.wrapper {
  max-width: var(--main-col-max-width);
  margin: 0 auto;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  font-size: 150%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.common-title {
  text-align: center;
  clear: both;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 50px 0;
  padding: 10px 0 0 0;
}

.white_text {
  color: #fff;
  font-size: 0.75em;
  letter-spacing: 0.15em;
  display: inline-block;
  padding-top: 10px;
}

.gray_text {
  color: #9e9a92;
  font-size: 0.75em;
  letter-spacing: 0.15em;
  display: inline-block;
  padding-top: 10px;
}

.bg-yellow {
  background-color: #ffe652;
  padding-bottom: 80px;
}

#main_contents {
  width: 100%;
  background: #f0f0f0;
}

@media only screen and (max-width: 1329px) {

  #main_col,
  .inner {
    width: 90.22556%;
  }
}

@media only screen and (max-width: 1024px) {
  #main_contents {}

  #main_col,
  .inner {
    width: auto;
    padding: 0 20px;
  }

  #main_col {
    margin: 16px 0 33px;
  }
}

@media (max-width: 430px) {
  .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* 表示切替ユーティリティ */
@media (max-width: 960px) {
  .pc {
    display: none;
  }
}

@media (min-width: 961px) {
  .sumaho {
    display: none;
  }
}

/* 本文画像（Gensen 親テーマ上書き） */
.post_content img[class*="align"],
.post_content img[class*="wp-image-"],
.post_content img[class*="attachment-"],
.post_content img.size-full,
.post_content img.size-large,
.post_content .wp-post-image,
.post_content img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.post_content {
  line-height: 1.6;
}

/* アドミンバー（WP管理バー） */
html {
  margin-top: 0 !important;
}

@media only screen and (min-width: 1025px) {
  .fix_top.header_fix.admin-bar #header_top {
    top: 32px;
  }
}

@media only screen and (max-width: 1024px) {
  .mobile_fix_top.header_fix.admin-bar {
    padding-top: 92px;
  }

  .mobile_fix_top.header_fix.admin-bar #header {
    top: 32px;
  }
}

@media only screen and (max-width: 782px) {
  .mobile_fix_top.header_fix.admin-bar {
    padding-top: 106px;
  }

  .mobile_fix_top.header_fix.admin-bar #header {
    top: 46px;
  }
}

@media only screen and (max-width: 600px) {
  .mobile_fix_top.header_fix.admin-bar {
    margin-top: 46px;
    padding-top: 60px;
  }

  .mobile_fix_top.header_fix.admin-bar #header {
    top: 0;
  }
}

/* パンくずリスト */
#breadcrumb {
  width: 100%;
  height: 65px;
  line-height: 65px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}

#breadcrumb ul {
  color: var(--color-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#breadcrumb li {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--color-black);
  vertical-align: middle;
  position: relative;
}

#breadcrumb li::after {
  font-family: "design_plus";
  content: "\e910";
  font-size: 10px;
  display: inline;
  padding: 0 0.3em 0 0.6em;
  position: relative;
  bottom: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#breadcrumb li:last-child::after {
  content: "";
  padding: 0;
  background-image: none;
}

#breadcrumb li.home a span {
  display: none;
}

#breadcrumb li.home a::before {
  content: "\e90c";
  font-family: "design_plus";
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#breadcrumb li.home a:hover::before,
#breadcrumb li a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

#breadcrumb li.last {
  color: var(--color-secondary);
}

/* --- パンくず　icon-house  --- */
#breadcrumb li.home a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("/wp-content/themes/bousairevo/images/icon-home.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- パンくず　icon-arrow  --- */
#breadcrumb li::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/wp-content/themes/bousairevo/images/icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 1024px) {
  #breadcrumb {
    padding: 13px 0;
    height: auto;
    font-size: 10px;
    line-height: 1.7;
  }

  #breadcrumb ul {
    white-space: initial;
  }

  #breadcrumb li {
    font-size: 10px;
  }
}

/* テーブル・ウィジェット共通 */
.tcd-pb-row.row1 {
  margin-bottom: 30px;
  background-color: var(--color-white);
}

.tcd-pb-row.row1 .tcd-pb-col.col1 .tcd-pb-widget.widget1 {
  background-color: #e60000;
  margin-bottom: 30px;
}

/* ======================================================================
   2. ヘッダー
   ====================================================================== */

#header {
  width: 100%;
}

#header_top {
  background: var(--color-primary);
  background-size: cover;
}

/* --- ロゴ --- */
#header_logo,
#header_logo_fix {
  display: flex;
  align-items: center;
  color: var(--color-black);
  float: left;
  position: relative;
  z-index: 21;
}

#header_logo a,
#header_logo_fix a {
  background: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: var(--header-height-pc);
  color: var(--color-white);
  text-decoration: none;
}

#header_logo a:hover,
#header_logo_fix a:hover {
  opacity: 0.9;
}

#header_logo img,
#header_logo_fix img {
  width: 96px;
  display: inline-block;
  vertical-align: middle;
}

#header_logo .desc,
#header_logo_fix .desc {
  padding: 0 0 0 20px;
  font-size: 14px;
  vertical-align: middle;
}

/* --- ヘッダー内共通 --- */
body #header_top .inner {
  height: var(--header-height-pc);
  position: relative;
}

/* --- ハンバーガーメニューボタン --- */
.menu_button {
  position: absolute;
  right: 0;
  z-index: 9;
  display: none;
  /* PC では非表示 */
  width: var(--header-height-sp);
  height: var(--header-height-sp);
  text-decoration: none;
}

/* ハンバーガーアイコン（CSS描画） */
.menu_button span,
.menu_button span::before,
.menu_button span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  background: var(--color-black);
  left: 50%;
  transform: translateX(-50%);
}

.menu_button span {
  top: 50%;
}

.menu_button span::before {
  top: -6px;
}

.menu_button span::after {
  top: 6px;
}

@media only screen and (min-width: 1024px) {

  .menu_button span,
  .menu_button span::before,
  .menu_button span::after {
    width: 26px;
    height: 4px;
  }

  .menu_button span::before {
    top: -8px;
  }

  .menu_button span::after {
    top: 8px;
  }
}

/* 開いた状態（× アイコン） */
.menu_button.active span {
  background: transparent;
}

.menu_button.active span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.menu_button.active span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* --- グローバルナビ --- */
#global_menu {
  position: relative;
  z-index: 20;
  margin: 0 -28px 0 0;
}

#global_menu a {
  color: var(--color-white);
  text-decoration: none;
}

#global_menu>ul {
  font-size: 0;
  position: relative;
  text-align: right;
  margin: 0 auto;
}

#global_menu>ul>li {
  position: relative;
  display: inline-block;
}

#global_menu>ul>li>a {
  font-size: 14px;
  height: var(--header-height-pc);
  line-height: var(--header-height-pc);
  display: block;
  padding: 0 28px;
  box-sizing: border-box;
}

#global_menu ul ul {
  display: none;
}

#header_top {
  width: 100%;
  min-width: auto;
  position: fixed;
  /* top: calc( -1 * var(--header-height-pc) ); */
  top: 0;
  left: 0;
  z-index: 200;
  transform: translate3d(0, 0, 0);
  box-sizing: border-box;
  animation: slideDown 0.5s ease;
  transition: top .3s;
}

#header_top.is-show {
  top: 0;
}

/* PC：ドロップダウン */
@media only screen and (min-width: 1025px) {
  body #header_top .inner {
    display: flex;
    justify-content: space-between;
  }

  #global_menu {
    display: block !important;
  }

  #global_menu .child_menu_button {
    display: none;
  }

  #global_menu>ul>li:hover>a {
    opacity: 0.5;
    transition: opacity 0.3s;
  }

  #global_menu ul ul {
    display: block;
    visibility: hidden;
    width: 200px;
    position: absolute;
    top: var(--header-height-pc);
    left: 30px;
    z-index: 2;
    opacity: 0;
    transition:
      opacity 0.3s ease,
      left 0.3s ease;
  }

  #global_menu ul ul ul {
    left: 230px;
    top: 0;
  }

  #global_menu ul ul li {
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative;
  }

  #global_menu ul ul a {
    display: block;
    margin: 0;
    padding: 9px 28px;
    font-size: 14px;
    line-height: 1.6;
    background: var(--color-secondary);
    text-align: left;
  }

  #global_menu ul ul a:hover {
    background: var(--color-secondary-dark);
  }

  #global_menu ul ul li.menu-item-has-children>a::before {
    content: "\e910";
    font-family: "design_plus";
    font-size: 86%;
    display: block;
    position: absolute;
    right: 10px;
  }

  #global_menu>ul>li:hover>ul {
    visibility: visible;
    left: 0;
    opacity: 1;
    z-index: 3;
  }

  #global_menu>ul>li li:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 200px;
    z-index: 3;
  }

  /* ヘッダー固定（PC） */

  /* .fix_top.header_fix #global_menu a {
    color: var(--color-white);
  }

  .fix_top.header_fix #global_menu > ul > li > a {
    height: var(--header-height-pc);
    line-height: var(--header-height-pc);
  }

  .fix_top.header_fix #global_menu > ul > li:hover > ul {
    top: var(--header-height-pc);
  } */

  /* ロゴ切り替え（固定ヘッダー） */
  /* #logo_image_fixed,
  #logo_text_fixed {
    display: none;
  }

  .fix_top.header_fix #logo_image_fixed,
  .fix_top.header_fix #logo_text_fixed {
    display: block;
  }

  .fix_top.header_fix #logo_image,
  .fix_top.header_fix #logo_text {
    display: none;
  } */
}

/* SP：ドロワーメニュー */
@media only screen and (max-width: 1024px) {
  #header {
    position: relative;
    border-top: 0 !important;
  }

  #header_top {
    overflow: initial;
  }

  body #header_top .inner {
    height: var(--header-height-sp);
    min-height: initial;
    min-width: auto;
    padding-left: 0;
  }

  .menu_button {
    display: block;
    /* SP では表示 */
    height: var(--header-height-sp);
    width: var(--header-height-sp);
  }

  body #global_menu {
    display: none;
    clear: both;
    width: 100%;
    margin: 0;
    top: var(--header-height-sp);
    left: 0;
    position: absolute;
    z-index: 9;
    background: #403d3c;
    max-height: calc(100vh - var(--header-height-sp));
    overflow-y: auto;
  }

  body #global_menu a,
  body #global_menu>ul>li>a {
    color: var(--color-white) !important;
    position: relative;
    display: block;
    margin: 0;
    padding: 9.5px 14px;
    height: auto;
    min-height: 40px;
    line-height: 1.6;
    overflow: hidden;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
  }

  body #global_menu ul {
    margin: 0;
    width: 100%;
    text-align: left;
  }

  #global_menu>ul>li {
    display: block;
    width: 100%;
  }

  #global_menu ul ul {
    display: none;
  }

  #global_menu ul ul a {
    padding-left: 28px;
    background: rgba(255, 255, 255, 0.1);
  }

  #global_menu ul ul ul a {
    padding-left: 42px;
    background: rgba(255, 255, 255, 0.2);
  }

  #global_menu a:hover {
    background: #92785f;
  }

  /* 現在地ハイライト */
  #global_menu .current-menu-item>a {
    background-color: #111111 !important;
  }

  /* 子メニュー展開ボタン */
  #global_menu li.menu-item-has-children {
    position: relative;
  }

  #global_menu .child_menu_button {
    display: block;
    position: absolute;
    text-align: center;
    width: 60px;
    height: 39px;
    right: 0;
    top: 1px;
    z-index: 5;
    cursor: pointer;
  }

  #global_menu .child_menu_button .icon::before {
    content: "\e90e";
    font-family: "design_plus";
    font-size: 13px;
    color: #eee;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    left: 20px;
    top: 10px;
    transition: transform 0.5s ease;
  }

  #global_menu li.menu-item-has-children.open>.child_menu_button .icon::before {
    transform: rotateX(180deg);
  }

  /* ロゴ（SP） */
  #header_logo a,
  #header_logo_fix a {
    font-size: 26px;
    width: 120px;
    height: var(--header-height-sp);
  }

  #header_logo img,
  #header_logo_fix img {
    width: 76px;
  }

  /* ヘッダー固定（SP） */
  .mobile_fix_top.header_fix #header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transform: translateY(0);
    box-sizing: border-box;
    animation: slideDown 0.5s ease;
  }

  .mobile_fix_top.header_fix #header_top {
    background: rgba(0, 0, 0, 1);
  }

  .mobile_fix_top.header_fix #logo_image_fixed,
  .mobile_fix_top.header_fix #logo_text_fixed {
    display: block;
  }

  .mobile_fix_top.header_fix #logo_image,
  .mobile_fix_top.header_fix #logo_text {
    display: none;
  }
}

/* ヘッダー固定アニメーション */
@keyframes slideDown {
  from {
    transform: translate3d(0, -100%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.header_fix {
  padding-top: var(--header-height-pc);
}

/* --- ヘッダー内フィーチャーナビ（PC のみ） --- */
.header-feature-nav a {
  font-weight: 600;
}

@media only screen and (min-width: 1025px) {
  .header-feature-nav {
    margin-left: auto;
    margin-right: 70px;
  }

  .header-feature-nav>ul {
    display: flex;
    height: 100%;
    align-items: center;
  }

  .header-feature-nav>ul>li {
    font-size: 16px;
    padding: 0 10px;
    position: relative;
    height: 100%;
  }

  .header-feature-nav>ul>li>a {
    display: flex;
    align-items: center;
    height: 100%;
  }

  /* ヘッダー上にスライダーがある場合（透過ヘッダー） */
  .has_header_content #header {
    position: absolute;
    z-index: 5;
  }

  .has_header_content #header_top {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border: none;
  }

  .has_header_content #index_header_search {
    margin-top: -100px;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 4;
  }

  /* ドロップダウン（フィーチャーナビ） */
  .feature-child-nav {
    display: none;
    position: absolute;
    z-index: 3;
    right: 0;
    top: var(--header-height-pc);
    width: 300px;
  }

  .feature-child-nav ul {
    background: #111;
    padding: 20px 10px;
  }

  .feature-child-nav ul li a {
    color: var(--color-white);
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    padding: 0.3em 0.4em;
    display: block;
  }

  /* ハンバーガー開いたときのドロップダウン（PC） */
  body #global_menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    display: none;
    clear: both;
    width: 100%;
    margin: 0;
    top: 70px;
    left: 0;
    position: absolute;
    z-index: 9;
    max-height: -webkit-calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
}

@media only screen and (min-width: 1025px) {
  .menu_button.active~#global_menu {
    opacity: 1;
    pointer-events: all;
    background: #000;
    overflow: visible;
    width: auto;
    right: 0;
    left: inherit;
    padding: 20px 10px;
  }
}

body #global_menu>ul>li>a {
  height: auto;
  line-height: 1.4;
  text-align: left;
}

html #header_logo_fix a,
html .fix_top.header_fix #global_menu>ul>li>a,
html #global_menu>ul>li>a {
  color: var(--color-white);
  height: auto;
  line-height: 1.4;
}

body #global_menu>ul>li {
  display: block;
}

body a.menu_button {
  position: absolute;
  display: inline-block;
  right: 0;
  z-index: 9;
  width: var(--header-height-sp);
  height: var(--header-height-pc);
  text-decoration: none;
}

body a.menu_button span {
  text-indent: 100%;
  white-space: nowrap;
  display: block;
}

body a.menu_button::before {
  top: 24px;
  left: 19px;
  font-size: 40px;
}

/* Gnav PC */
@media only screen and (min-width: 1025px) {
  body #global_menu {
    opacity: 0;
    pointer-events: none;
  }

  .menu_button.active~#global_menu {
    opacity: 1;
    pointer-events: all;
    background: #000;
    overflow: visible;
    width: auto;
    right: 0;
    left: inherit;
    padding: 20px 10px;
  }

  body #global_menu>ul>li>a {
    height: auto;
    line-height: 1.4;
    text-align: left;
    padding: 0.3em 0.5em;
  }

  body #global_menu>ul.menu>li:nth-child(2)::after,
  body #global_menu>ul.menu>li:nth-last-child(4)::after {
    content: "";
    display: block;
    height: 1px;
    background: #fff;
    margin: 8px 0;
  }

  html #header_logo_fix a,
  html .fix_top.header_fix #global_menu>ul>li>a,
  html #global_menu>ul>li>a {
    color: #fff;
    height: auto;
    line-height: 1.4;
  }

  .has_header_content #header_top {
    border: none;
  }

  body a.menu_button:before {
    top: 24px;
    left: 19px;
    font-size: 40px;
  }

  body #header_top .inner {
    display: flex;
    justify-content: space-between;
  }

  body #global_menu>ul>li {
    display: block;
  }

  .header-feature-nav {
    margin-left: auto;
    margin-right: 70px;
  }

  .header-feature-nav>ul {
    display: flex;
    height: 100%;
    align-items: center;
  }

  .header-feature-nav>ul>li {
    font-size: 16px;
    padding: 0 10px;
    position: relative;
    height: 100%;
  }

  .header-feature-nav>ul>li>a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    position: relative;
  }

  .header-feature-nav>ul>li>a.nav-about-link {
    /* background: linear-gradient(180deg, #ffe652 0%, #ffc836 100%); */
  }

  .header-feature-nav>ul>li>a:hover {
    background: linear-gradient(180deg, #ffe652 0%, #ffc836 100%);
  }

  @keyframes lineFlow {
    0% {
      left: 0;
      width: 0%;
    }

    45% {
      left: 0;
      width: 100%;
      /* 左側を固定したまま、右へ伸びきる */
    }

    55% {
      left: 0;
      width: 100%;
      /* 一瞬停止 */
    }

    100% {
      left: 100%;
      /* 左端を右へ移動させて */
      width: 0%;
      /* 幅を0にすることで、右側に消えていく */
    }
  }

  .header-feature-nav>ul>li>a:hover::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    animation: lineFlow 2s ease-in-out infinite;
  }

  .feature-child-nav {
    display: none;
    position: absolute;
    z-index: 3;
    right: 0;
    top: 70px;
    width: 280px;
  }

  .feature-child-nav ul {
    background: #111;
    padding: 20px 10px;
  }

  .feature-child-nav ul li {}

  .feature-child-nav ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    padding: 0.3em 0.4em;
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .header-feature-nav {
    display: none;
  }

  body a.menu_button {
    height: 50px;
    right: 0;
    width: 50px;
  }
}

/* --- ヘッダー検索バー --- */
#header_search,
#index_header_search {
  display: block;
  padding: 25px 0;
  background: transparent !important;
}

@media only screen and (min-width: 1025px) {
  #header_search {
    display: block !important;
  }
}

#header_search form,
#index_header_search form {
  display: flex;
  justify-content: flex-end;
}

.header_search_inputs {
  width: 176px;
  height: 46px;
  margin-right: 1.66%;
}

.header_search_button {
  margin-right: 0;
}

form.columns-5 .header_search_inputs {
  width: 20%;
}

form.columns-5 .header_search_button {
  width: 14.36%;
}

.header_search_inputs input,
.header_search_inputs select {
  width: 100%;
  height: 46px;
  padding: 18px 16px;
  font-size: 14px;
  line-height: 1;
  color: var(--color-black);
  background: var(--color-white);
  border: none;
  border-radius: 3px;
}

.header_search_inputs select {
  padding: 15px 16px;
  opacity: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#header_search_submit {
  padding: 0;
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 5px;
  cursor: pointer;
}

#header_search_submit:hover {
  background-color: var(--color-secondary-dark);
}

/* Chosen.js カスタマイズ */
.chosen-container {
  border: 1px solid var(--color-gray);
  border-radius: 5px;
  font-size: 14px;
}

.chosen-container-single .chosen-single {
  height: 46px;
}

.chosen-container-single .chosen-single span {
  margin-right: 0;
  line-height: 46px;
}

.chosen-container-single .chosen-single div b::before {
  display: none;
}

.header_search_inputs .chosen-with-drop .chosen-single span {
  color: var(--color-secondary-dark);
}

/* SP：検索バー */
@media only screen and (max-width: 1024px) {
  #header_top a.search_button {
    position: absolute;
    right: 45px;
    z-index: 99;
    text-align: center;
    display: inline-block;
    color: var(--color-white);
    width: 60px;
    height: var(--header-height-sp);
    line-height: var(--header-height-sp);
    text-decoration: none;
  }

  #header_top a.search_button span {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
  }

  #header_top a.search_button::before {
    content: "\e915";
    font-family: "design_plus";
    color: var(--color-white);
    display: block;
    position: absolute;
    top: 17px;
    left: 19px;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  #header_search {
    display: none;
    position: absolute;
    top: var(--header-height-sp);
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 25px 0;
  }

  #index_header_search {
    width: 100%;
    padding: 25px 0;
  }

  #header_search form,
  #index_header_search form {
    display: block;
  }

  .header_search_inputs,
  form.columns-5 .header_search_inputs {
    width: 100%;
    margin: 0 0 12px;
  }

  .header_search_button,
  form.columns-5 .header_search_button {
    width: 100%;
    margin: 25px 0 0;
    text-align: center;
  }

  .header_search_inputs input {
    height: 40px;
    padding: 14px 16px;
    font-size: 12px;
  }

  .header_search_inputs select {
    height: 40px;
    padding: 0 16px;
    font-size: 12px;
    background: white url(../fonts/angle-down.svg) no-repeat right 16px center / 12px;
  }

  .header_search_button input {
    height: 45px;
    font-size: 14px;
  }

  #header_search_submit {
    width: 220px;
    background: var(--color-black);
  }
}

/* --- ヘッダーSNSリンク --- */
#header_social_link {
  display: flex;
  justify-content: center;
  padding: 10px;
}

#header_social_link li {
  width: 24px;
  height: 24px;
  position: relative;
  margin-right: 10px;
}

#header_social_link li a {
  display: block;
  text-indent: -200px;
  overflow: hidden;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
}

#header_social_link li a:hover {
  background-color: transparent !important;
}

#header_social_link li::before,
#footer_social_link li::before {
  font-size: 24px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* SNSアイコン（画像） */
#footer_social_link li.facebook::before,
#header_social_link li.facebook::before {
  content: "";
  background: url(../../../uploads/2024/06/icon-facebook.png) no-repeat center / 100%;
}

#footer_social_link li.twitter::before,
#header_social_link li.twitter::before {
  content: "";
  background: url(../../../uploads/2024/06/icon-x.png) no-repeat center / 100%;
}

#footer_social_link li.insta::before,
#header_social_link li.insta::before {
  content: "";
  background: url(../../../uploads/2024/06/icon-instagram.png) no-repeat center / 100%;
}

#footer_social_link li.youtube::before,
#header_social_link li.youtube::before {
  content: "";
  background: url(../../../uploads/2024/06/icon-youtube.png) no-repeat center / 100%;
  transform: scale(1.25);
}

/* ======================================================================
   3. フッター
   ====================================================================== */

#footer_contents {
  background: #222;
  background-image: url(../../../uploads/2024/06/footer-bg-sp.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom center !important;
  color: var(--color-white);
  text-align: center;
  margin: 0 0 73px;
  padding-top: 60px;
}

#footer_contents a {
  color: var(--color-white);
}

#footer_contents a:hover {
  color: var(--color-secondary-dark);
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  #footer_contents {
    background-image: url(../../../uploads/2024/06/footer-bg-pc.jpg) !important;
    margin: 0 0 77px;
  }
}

/* フッター情報エリア */
#footer_info {
  padding: 43px 30% 44px;
  position: relative;
}

/* フッターロゴ */
#footer_logo {
  margin: 0;
}

#footer_logo .logo {
  display: inline-block;
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
}

#footer .footer_logo {
  font-size: 30px;
  font-weight: 400;
  margin: 30px 0;
}

#footer .footer_logo a:hover {
  color: var(--color-gray) !important;
}

/* フッターナビ */
#footer .footer_nav li a {
  font-size: 12px;
  display: inline-block;
  padding: 0.6em 0;
}

#footer .footer_nav li a:hover {
  color: var(--color-gray) !important;
}

@media only screen and (min-width: 768px) {
  #footer .footer_nav {
    display: flex;
    justify-content: center;
    text-align: left;
  }

  #footer .footer_nav>div {
    margin: 0 36px;
  }

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

/* フッターボトムメニュー */
#footer_bottom_menu {
  display: inline-block;
  margin: 12px 0 0;
}

#footer_bottom_menu ul {
  display: inline;
  font-size: 0;
}

#footer_bottom_menu li {
  display: inline-block;
  font-size: 12px;
  line-height: 2;
}

#footer_bottom_menu li::after {
  content: "|";
  display: inline-block;
  padding: 0 0.5em;
}

#footer_bottom_menu li:last-child::after {
  content: "";
}

/* SNS（フッター） */
#footer_social_link {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

#footer_social_link li {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  display: inline-block;
}

#footer_social_link li:not(:last-child) {
  margin: 0 38px 0 0;
}

#footer_social_link li a {
  display: block;
  text-indent: -200px;
  overflow: hidden;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
}

#footer_social_link li:hover {
  opacity: 0.4;
  transition-duration: 0.2s;
}

@media only screen and (min-width: 768px) {

  #footer_social_link li,
  #header_social_link li {
    width: 34px;
    height: 34px;
  }

  #footer_social_link li a {
    width: 34px;
    height: 34px;
  }

  #footer_social_link li:not(:last-child) {
    margin: 0 38px 0 0;
  }

  #footer_social_link li::before,
  #header_social_link li::before {
    font-size: 34px;
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}

/* コピーライト */
#copyright {
  width: auto;
  position: static;
  transform: none;
  font-size: 10px;
  line-height: 1.6;
  margin: 60px 0 0;
  background: #000;
  padding: 17px 20px;
}

@media only screen and (min-width: 768px) {
  #copyright {
    margin: 120px 0 0;
    text-align: center;
    padding: 0 0 40px;
    background: transparent;
    font-size: 12px;
  }
}

/* PAGE TOP ボタン */
#return_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 990;
}

#return_top.is-visible {
  display: block;
}

#return_top a {
  display: block;
  width: 55px;
  height: 55px;
  text-decoration: none;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.8;
  position: relative;
}

#return_top a::before {
  content: "\e911";
  font-family: "design_plus";
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#return_top a:hover {
  opacity: 1;
}

#return_top a span {
  display: none;
}

/* フッターウィジェット */
#footer_widget {
  padding: 50px 0 12px;
  text-align: center;
  border-bottom: 1px solid #444;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_widget {
  display: inline-block;
  font-size: 12px;
  line-height: 2.2;
  text-align: left;
  width: 300px;
  overflow: hidden;
  margin: 0 0 30px;
  padding: 0;
  vertical-align: top;
  position: relative;
}

.footer_widget.widget_nav_menu {
  width: 200px;
}

.footer_headline {
  margin: 0 0 14px;
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 1.4;
}

.footer_widget ul {
  margin: 0;
}

.footer_widget li {
  margin: 0 0 10px;
  padding: 0;
  line-height: 2.4;
}

.footer_widget li:last-child {
  margin-bottom: 0;
}

.footer_widget li ul {
  margin: 10px 0 0 10px;
}

.footer_widget a {
  color: var(--color-white);
  text-decoration: none;
}

.footer_widget a:hover {
  color: var(--color-secondary);
}

.footer_widget img {
  height: auto;
  max-width: 100%;
}

/* フッターエリア・カテゴリーナビ */
#footer_nav {
  padding: 50px 0 40px;
  background: #f7f7f7;
}

#footer_nav .footer_nav_cols .footer_nav_1 {
  width: 49%;
  float: left;
}

#footer_nav .footer_nav_cols .footer_nav_2 {
  width: 49%;
  float: right;
}

#footer_nav .headline {
  display: inline-block;
  margin: 0 0 15px;
  padding: 0 18px;
  min-width: 54px;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 13px;
}

#footer_nav a {
  text-decoration: none;
}

#footer_nav a:hover {
  color: var(--color-secondary-dark);
  text-decoration: none;
}

#footer_nav ul {
  margin: 0;
  padding: 0;
}

#footer_nav li {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 2.4;
}

#footer_nav li ul {
  display: inline;
}

#footer_nav li li {
  display: inline-block;
}

#footer_nav li li::before {
  content: "|";
  padding: 0 0.5em;
}

#footer_nav .footer_nav_type1 li {
  display: inline-block;
  float: left;
  padding-right: 1.5em;
  min-width: 12.5%;
  box-sizing: border-box;
}

#footer_nav .footer_nav_cols .footer_nav_type1 li {
  min-width: 25%;
}

#footer_nav .footer_nav_type2>ul>li>a {
  font-weight: 700;
}

/* ======================================================================
   4. トップページ
   ====================================================================== */

.home-default #main_col {
  margin-top: 80px;
  padding: 0;
  width: 100%;
  max-width: inherit;
}

/* ----------------------------------------------------------------------
   4-1. メインビジュアル
   ---------------------------------------------------------------------- */
body.home .mv {
  position: relative;
}

.mv_contact {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  padding: 16px 0;
  width: 100%;
  bottom: -100px;
  z-index: 40;
  transition: bottom 0.3s;
  /* アニメーション */
}

.mv_contact.is-show {
  bottom: 0;
}

.mv_contact a {
  background: linear-gradient(180deg, #ffe652 0%, #ffc836 100%);
  padding: 1em;
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mv_contact a img {
  margin: 0 3px;
}

body.home .mv_cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  position: absolute;
  bottom: 180px;
  width: 100%;
}

@media screen and (min-width: 835px) {
  body.home .mv_cta {
    bottom: min(220px, 15vw);
  }
}

body.home .mv_cta a {
  background: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1em;
  min-width: 150px;
  font-size: 14px;
  line-height: 1;
}

body.home .mv_cta a::before,
body.home .mv_cta a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 0;
}

body.home .mv_cta a::before {
  background: url(../images/mv_cta_r_t.png) no-repeat center center/cover;
  top: -4px;
  left: -4px;
}

body.home .mv_cta a::after {
  background: url(../images/mv_cta_r_b.png) no-repeat center center/cover;
  position: absolute;
  bottom: -4px;
  right: -4px;
}

body.home .mv_bottom_lead_count {
  line-height: 1;
}

body.home .mv_bottom_lead {
  background: rgba(255, 230, 82, 0.8);
  padding: 20px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 30px;
}

@media screen and (min-width: 835px) {
  body.home .mv_bottom_lead {
    bottom: 60px;
  }
}

body.home .mv_bottom_lead .mv_bottom_lead_1 {
  font-size: 16px;
  display: block;
  line-height: 1.36;
  margin-bottom: .5em;
}

@media screen and (min-width: 835px) {
  body.home .mv_bottom_lead .mv_bottom_lead_1 {
    font-size: 24px;
  }
}

body.home .mv_bottom_lead .mv_bottom_lead_2 {
  font-size: 22px;
}

@media screen and (min-width: 835px) {
  body.home .mv_bottom_lead .mv_bottom_lead_2 {
    font-size: 30px;
  }
}

body.home .mv_bottom_lead .mv_bottom_lead_3 {
  font-size: 28px;
}

@media screen and (min-width: 835px) {
  body.home .mv_bottom_lead .mv_bottom_lead_3 {
    font-size: 36px;
  }
}

body.home .mv_bottom_lead .mv_bottom_lead_4 {
  font-size: 40px;
  color: #dc0000;
}

@media screen and (min-width: 835px) {
  body.home .mv_bottom_lead .mv_bottom_lead_4 {
    font-size: 50px;
  }
}

body.home .mv_bottom_lead .mv_bottom_lead_5 {
  font-size: 30px;
}

@media screen and (min-width: 835px) {
  body.home .mv_bottom_lead .mv_bottom_lead_5 {
    font-size: 36px;
  }
}


/* ----------------------------------------------------------------------
   4-1. TOPICS
   ---------------------------------------------------------------------- */
body.home .top-topics {
  background: rgba(255, 247, 212, 0.8);
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 16px;
  border-radius: 20px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

@media screen and (min-width: 835px) {
  body.home .top-topics {
    margin-top: -40px;
  }
}

body.home .top-topics h2 {
  text-align: center;
  margin: 0 0 20px;
}

body.home .top-topics h2 img {
  width: 237px;
}

@media screen and (min-width: 835px) {
  body.home .top-topics h2 img {
    width: auto;
  }
}


body.home .top-topics .topics_list_item {
  flex-basis: 204px;
  margin: 0 20px;
}

body.home .top-topics .topics_list_item img {
  margin: 0 0 10px;
}

body.home .top-topics .topics_list_item h3 {
  font-size: 12px;
  line-height: 1.57;
}

@media screen and (min-width: 768px) {
  body.home .top-topics .topics_list_ul {
    display: flex;
    gap: 30px;
    justify-content: center;
  }

  body.home .top-topics .topics_list_item {
    margin: 0 0 20px;
  }
}

/* 右矢印 */
body.home .top-topics .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-indent: -9999px;
  width: 20px;
  height: 40px;
  background: none no-repeat center center;
}

body.home .top-topics .slick-prev {
  left: 9vw;
  background-image: url(../images/topics_arrow.svg);
}

body.home .top-topics .slick-next {
  right: 9vw;
  background-image: url(../images/topics_arrow.svg);
  transform: translateY(-50%) rotate(180deg);
}



body.home .top-topics .btn-wrapper {
  text-align: center;
}

body.home .top-topics .top-topics-btn {
  color: #fff;
  background: #ffbe2a;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em 1.5em;
  border-radius: 200px;
}

/* VOICE */
body.home .s-voice {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1600px) {
  body.home .s-voice::after {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/bg_voice_side.png) no-repeat top center/100%;
    width: 300px;
    z-index: 1;
    right: 0;
    top: 270px;
    aspect-ratio: 253/1477;
  }
}

body.home .s-voice .title-wrap {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgb(255, 255, 255) 50%,
      rgba(255, 255, 255, 0) 100%);
  padding: 24px 0;
  text-align: center;
  margin: 0 auto 30px;
  max-width: 324px;
}

body.home .s-voice .title-wrap .img {
  margin-bottom: 20px;
}

body.home .s-voice .title-wrap h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
}

body.home .s-voice .title-wrap h2 span {
  display: block;
}

body.home .s-voice .voice-body .voice-cards .card {
  position: relative;
  margin-bottom: 90px;
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}

body.home .s-voice .voice-body .voice-cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -39px;
  width: 432px;
  height: 100%;
  background-image: url("../images/bg.png");
  background-size: contain;
  background-repeat: repeat;
  clip-path: polygon(0 0, 100% 0, 26% 100%, 0 100%);
  z-index: 0;
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card::before {
    left: 0px;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 26% 100%);
  }
}

@media screen and (min-width: 1600px) {
  body.home .s-voice .voice-body .voice-cards .card::before {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 26% 100%);
  }
}

body.home .s-voice .voice-body .voice-cards .card.__second {
  position: relative;
}

body.home .s-voice .voice-body .voice-cards .card.__second::before {
  content: "";
  position: absolute;
  top: 0;
  left: -39px;
  width: 432px;
  height: 100%;
  background-image: url("../images/bg.png");
  background-size: contain;
  background-repeat: repeat;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 52% 100%);
  z-index: 0;
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card.__second::before {
    left: 0px;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
  }
}

@media screen and (min-width: 1600px) {
  body.home .s-voice .voice-body .voice-cards .card.__second::before {
    clip-path: polygon(0 0, 90% 0, 74% 100%, 0 100%);
  }
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    padding-top: 40px;
    gap: 40px;
  }
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap.__second {
    flex-direction: row-reverse;
  }
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .img-l {
  transform: translateX(-116px);
  padding-top: 20px;
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .img-l.__second {
  transform: translateX(-68px);
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap .img-l.__second {
    transform: translateX(0px);
  }
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .img-l img {
  max-width: 400px;
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap .img-l {
    transform: translateX(0px);
  }
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r {
  padding-bottom: 20px;
  position: relative;
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 16px;
  padding: 24px 0 60px;
  gap: 16px;
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .tabs {
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 10;
    padding: 0;
  }
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .tabs.__second {
    justify-content: flex-end;
    top: -20px;
    right: 20px;
    left: 0;
  }
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .tabs .tab {
  padding: 12px 24px;
  position: relative;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .tabs .tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(12% 1%, 100% 0%, 88% 100%, 0% 100%);
  z-index: -1;
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .tabs .tab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffbe2a;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
  z-index: -2;
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description {
  text-align: center;
  padding: 46px 18px;
  border: 2px solid #666666;
  border-radius: 10px;
  position: relative;
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description {
    text-align: left;
  }
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/triangle.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description::before {
    transform: translateY(-50%) rotate(-90deg);
    top: 50%;
    left: -24px;
  }
}

@media screen and (min-width: 835px) {
  body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description.__second::before {
    transform: translateY(-50%) rotate(90deg);
    top: 50%;
    right: -24px;
    left: auto;
  }
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description h3 {
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.4;
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description h3.__second {
  text-align: right;
}

body.home .s-voice .voice-body .voice-cards .card .flex-wrap .text-r .description p {
  line-height: 2;
  text-align: left;
}

/* 防災REVOとは */

.s-top-about {
  background: #FFF;
  padding: 0px 0 60px;
}

.s-top-about .lead {
  font-size: 16px;
  line-height: 2;
  max-width: 750px;
  margin-inline: auto;
}

@media only screen and (min-width: 768px) {
  .s-top-about .lead {
    font-size: 20px;
  }

}

.s-top-news {
  padding: 40px 0;
  background: #fff;
}

@media screen and (min-width: 835px) {
  .s-top-news {
    padding: 100px 0;
  }
}

.s-top-news .btn-wrap,
.s-top-about .btn-wrap {
  text-align: center;
  margin: 40px 0 0;
}

.s-top-news .btn-wrap a,
.s-top-about .btn-wrap a {
  background: linear-gradient(180deg, #ffe652 0%, #ffc836 100%);
  padding: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

body.home .s-top-feature {
  background: url(../images/bg_s-top-feature-sp.png) no-repeat bottom center/100%;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-bottom: 150px;
  overflow: hidden;
}

@media screen and (min-width: 835px) {
  body.home .s-top-feature {
    background-image: url(../images/bg_s-top-feature.png);
    padding-top: 60px;
    padding-bottom: 200px;
  }
}

body.home .s-top-feature .feature__wrap {
  display: flex;
  justify-content: center;
}

body.home .s-top-feature .feature_l {
  max-width: 392px;
  width: 10px;
}

body.home .s-top-feature .feature_l img {
  width: 56vw;
  max-width: inherit;
  transform: translateX(-50%);
}

body.home .s-top-feature .feature_s {
  max-width: 352px;
  margin-top: 157px;
}

@media screen and (min-width: 835px) {
  body.home .s-top-feature .feature_l {
    max-width: 392px;
    width: auto;
    margin-top: 60px;
  }

  body.home .s-top-feature .feature_l img {
    width: auto;
    max-width: 100%;
    transform: translateX(0);
  }

  body.home .s-top-feature .feature_s {
    margin-top: 0;
  }
}

body.home .triangle-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  /* 左辺を透明に */
  border-right: 10px solid transparent;
  /* 右辺を透明に */
  border-top: 10px solid #666666;
  /* 上辺に色を付ける（下向きの三角形になる） */
}

body.home .triangle-down.white {
  border-top: 10px solid #fff;
}

/* TOPのおすすめコンテンツのみ 上部コンテンツとの重なりを調整 */
body.home .s-top-recommend {
  margin-top: -160px;
  padding-top: 200px;
}

@media screen and (min-width: 835px) {
  body.home .s-top-recommend {
    margin-top: -20vw;
    padding-top: 20vw;
  }
}

/* ----------------------------------------------------------------------
   4-2. コンテンツビルダー 各セクション
   ---------------------------------------------------------------------- */



/* --- #cb_0 KV --- */
#cb_0 {
  background: url(../../../uploads/2024/06/top-mv-bg-pc.jpg) no-repeat center / cover;
  margin: 0;
}

#cb_0 .inner {
  padding: 66px 20px 69px;
  position: relative;
}

#cb_0 .kv-point {
  line-height: 1;
  background: var(--color-primary);
  width: fit-content;
  border-radius: 22px;
  padding: 11px 30px;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0.4em;
}

#cb_0 .kv-copy {
  font-size: 50.54px;
  color: var(--color-white);
  line-height: 1.30589632;
  margin-bottom: 32px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

#cb_0 .kv-copy .fz85 {
  font-size: 0.857em;
}

#cb_0 .kv-desc {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.875;
}

#cb_0 .kv-desc .kv-mark {
  color: var(--color-primary);
}

#cb_0 .link-container {
  display: flex;
}

#cb_0 .link-container a {
  color: var(--color-black);
  font-size: 14px;
  text-align: center;
  display: block;
  width: 182px;
  height: 48px;
  border-radius: 5px;
  line-height: 48px;
}

#cb_0 .link-container a.to-dl {
  background: var(--color-white);
  margin-right: 23px;
}

#cb_0 .link-container a.to-contact {
  background: var(--color-primary);
  font-weight: 700;
}

#cb_0 .txt-container {
  position: relative;
  z-index: 2;
}

#cb_0 .badge-container {
  width: min(432px, 37vw);
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  z-index: 0;
}

@media (max-width: 769px) {
  #cb_0 {
    background-image: url(../../../uploads/2024/06/top-mv-bg-sp.jpg);
  }

  #cb_0 .inner {
    padding: 40px 10px 27px;
  }

  #cb_0 .kv-point {
    border-radius: 13px;
    padding: 7px 18px;
    font-size: 14px;
    margin: 0 auto;
  }

  #cb_0 .kv-copy {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }

  #cb_0 .kv-desc {
    font-size: 12px;
    margin-bottom: 35px;
  }

  #cb_0 .kv-desc br {
    display: none;
  }

  #cb_0 .link-container {
    margin-bottom: 40px;
    justify-content: center;
  }

  #cb_0 .link-container a {
    font-size: 12px;
    width: 43.5vw;
    height: 42px;
    line-height: 42px;
    border-radius: 3px;
  }

  #cb_0 .link-container a.to-dl {
    margin-right: 20px;
  }

  #cb_0 .badge-container {
    width: 100%;
    position: static;
    transform: unset;
  }
}

/* --- #cb_2 防災アトラクションとは --- */
#cb_2 .revo-explain {
  margin-bottom: 50px;
}

#cb_2 .su-youtube {
  border: 10px solid var(--color-white);
  border-radius: 10px;
}

@media (max-width: 760px) {
  #cb_2 .revo-explain {
    padding: 30px 20px;
  }
}

/* --- #cb_4 --- */
#cb_4 {
  background: var(--color-light);
}

/* --- #cb_5 導入事例の紹介 --- */
#cb_5 .su-row {
  margin-bottom: 0;
}

#cb_5 h2 {
  font-size: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

#cb_5 h2:nth-of-type(2),
#cb_5 h2:nth-of-type(3) {
  margin-bottom: 38px;
}

#cb_5 h2 img {
  padding-right: 20px;
}

#cb_5 .case-title {
  display: flex;
  align-items: center;
}

#cb_5 .case-item:first-child {
  width: 31%;
}

#cb_5 .case-item:last-child {
  width: calc(100% - (31% + 37px));
  margin-left: 37px;
}

#cb_5 .case-item:last-child p {
  line-height: 1.5;
  font-size: 20px;
  margin-bottom: 0;
}

#cb_5 .case-image {
  display: flex;
  flex-wrap: wrap;
}

#cb_5 .case-image .su-column {
  width: calc((100% - 54px) / 3);
  margin: 0 27px 27px 0;
}

#cb_5 .case-image .su-column:nth-child(3n) {
  margin-right: 0;
}

#cb_5 .imp-item,
#cb_5 .comment {
  padding: 25px 30px;
  background: #fff9ed;
  border: 2px solid #fff19c;
  box-shadow: 0 2px 0 0 var(--color-primary);
  border-radius: 5px;
  position: relative;
}

#cb_5 .imp-item {
  width: calc((100% - 34px) / 2);
  margin: 0 34px 38px 0;
}

#cb_5 .imp-item:nth-child(2n) {
  margin-right: 0;
}

/* 吹き出し三角 */
#cb_5 .imp-item::before,
#cb_5 .imp-item::after,
#cb_5 .comment::before,
#cb_5 .comment::after {
  content: "";
  display: block;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
}

#cb_5 .imp-item::before,
#cb_5 .comment::before {
  width: 19px;
  height: 13px;
  background: #fff9ed;
  top: -13px;
  left: 16.5%;
  z-index: 3;
}

#cb_5 .imp-item::after,
#cb_5 .comment::after {
  width: 23px;
  height: 15px;
  background: #fff19c;
  top: -16px;
  left: 16%;
}

#cb_5 .comment::before {
  left: 7.72%;
}

#cb_5 .comment::after {
  left: 7.5%;
}

#cb_5 .imp-item p,
#cb_5 .comment p {
  line-height: 1.75;
  margin-bottom: 0;
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  #cb_5 .case-image {
    justify-content: space-between;
  }

  #cb_5 .case-image .su-column {
    width: 48%;
    margin: 0;
  }

  #cb_5 .imp-item {
    width: 100%;
  }

  #cb_5 .case-title {
    display: block;
  }

  #cb_5 .case-item:first-child,
  #cb_5 .case-item:last-child {
    width: 100%;
    margin: 0;
  }

  #cb_5 .case-item:last-child p {
    font-size: 14px;
  }
}

/* --- #cb_7 防災REVOが選ばれる理由 --- */
#cb_7 {
  padding: 80px 0 0;
  margin-bottom: 0;
  background-color: var(--color-light);
}

#cb_7 .reason-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
}

#cb_7 .reason-item {
  text-align: center;
  flex-basis: calc(33.33% - 34px);
  margin: 0 0 60px;
}

#cb_7 .reason-item p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

#cb_7 .reason-item p:first-of-type {
  margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  #cb_7 .reason-list {
    gap: 17px;
  }

  #cb_7 .reason-item {
    flex-basis: calc(50% - 17px);
    margin: 0 0 20px;
  }

  #cb_7 .reason-item p {
    font-size: 10px;
  }
}

/* --- #cb_8 直近の防災イベント --- */
.s-top-recently-event {
  padding: 80px 0;
  background: var(--color-light);
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .s-top-recently-event {
    padding: 0 0 20px;
  }
}

.su-posts-news-loop {
  max-width: 750px;
  margin: 0 auto;
}

.su-posts-news-loop .su-post {
  border-bottom: solid 1px #ccc;
  position: relative;
}

.su-posts-news-loop .su-post::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 100%;
  font-family: monospace;
  font-weight: bold;
}

.su-post-meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 0 0;
}

.su-posts-news-loop .su-post a {
  color: var(--color-black);
  padding: 0 2em 0 0;
  display: block;
}

.su-posts-news-loop .su-post-title {
  font-size: 18px;
  padding: 5px 0 7px;
  line-height: 1.4;
}

/* --- #cb_10 よくあるご質問 --- */
#cb_10 {
  background: var(--color-primary);
  padding: 100px 0;
}

#cb_10 .su-accordion .su-spoiler {
  background: var(--color-white);
  border-radius: 10px;
  padding: 50px 40px;
}

#cb_10 .su-accordion .su-spoiler-title {
  font-size: 20px;
  padding: 0 27px 0 0;
  line-height: 20px
}

#cb_10 .su-spoiler-title:focus {
  outline: none;
}

#cb_10 .su-accordion .su-spoiler-title span.su-spoiler-icon {
  background: var(--color-black);
  border-radius: 3px;
  width: 30px;
  height: 30px;
  left: 97%;
  top: 50%;
  transform: translateY(-50%);
}

#cb_10 .su-accordion .su-spoiler-title span.su-spoiler-icon::before {
  content: "＋";
  font-size: 17px;
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  line-height: 1;
}

#cb_10 .su-spoiler-icon-plus.su-spoiler-closed .su-spoiler-icon::before {
  content: "-";
}

#cb_10 .su-accordion .su-spoiler-title i {
  font-style: normal;
  font-size: 35px;
  padding-right: 25px;
}

#cb_10 .su-accordion .su-spoiler-content p {
  font-size: 14px;
  line-height: 1.71;
  margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
  #cb_10 {
    padding: 60px 0;
  }

  #cb_10 .su-accordion .su-spoiler {
    padding: 20px 25px;
  }

  #cb_10 .su-accordion .su-spoiler-title i {
    font-size: 21px;
  }

  #cb_10 .su-accordion .su-spoiler-title span:not(.su-spoiler-icon) {
    display: block;
    margin: 0.4em 0 0;
    font-size: 18px;
    line-height: 1.6em;
  }

  #cb_10 .su-accordion .su-spoiler-title span.su-spoiler-icon {
    left: 93%;
  }

  #cb_10 .su-spoiler-style-default>.su-spoiler-content {
    padding: 1em 0;
  }
}

/* --- CTA（共通） --- */
.s-top-common-cta,
.common-cta-wrap {
  background: var(--color-black);
  padding: 40px 0;
  margin-bottom: 0;
}

.common-cta p {
  font-size: 18px;
  color: var(--color-white);
  line-height: 1.44;
  margin-bottom: 36px;
}

.common-cta .su-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 1.5em;
}

/* .common-cta .su-row .su-column-size-1-2 {
  width: 48%;
} */

/* .common-cta .su-row .su-column {
  margin: 0;
}
.su-row .su-column {
  display: block;
  float: left;
  box-sizing: border-box;
  margin: 0 0 0 4%;
} */

/* .common-cta .su-row .su-column:first-child {
  margin-left: 0;
} */

.common-cta .su-column a#dl {
  padding: 0;
}

.common-cta .su-column:last-child a#dl {
  background: var(--color-primary) !important;
  padding: 0;
  text-align: center;
}

.common-cta .su-column a#dl span {
  font-size: 18px !important;
  width: 242px;
  height: 72px;
  line-height: 72px !important;
  display: block;
  padding: 0px 16px;
  box-sizing: content-box !important;
}

.common-cta .yellow {
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .common-cta .su-row {
    display: block;
    text-align: center;
  }
}

/* --- スクロールCTAボタン（固定） --- */
.scroll-btn-area {
  display: none;
  width: fit-content;
  padding: 24px 25px 18px;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 6px 0 0 0;
  box-shadow: -3px 3px 6px 0 rgba(250, 230, 82, 1);
  position: fixed;
  bottom: 0;
  left: 100%;
  transform: translate(-100%, 0);
  z-index: 9999;
  transition: all 0.5s ease;
}

.scroll-btn-area.show {
  display: block;
}

.scroll-btn-area .induction {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 14px;
}

.scroll-btn-area .arrow-list {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.scroll-btn-area .arrow-item {
  margin-right: 22px;
}

.scroll-btn-area .arrow-item:last-child {
  margin-right: 0;
}

.scroll-btn-area .btn-list a {
  font-size: 14px;
  display: block;
  width: 272px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border: 2px solid var(--color-black);
  border-radius: 6px;
}

.scroll-btn-area .btn-list a.to-dl {
  background: var(--color-white);
  margin-bottom: 14px;
}

.scroll-btn-area .btn-list a.to-contact {
  background: var(--color-primary);
}

@media (max-width: 1024px) {
  .scroll-btn-area.show {
    display: none;
  }
}

/* ======================================================================
   5. 下層ページ共通
   ====================================================================== */

/* ヘッダー画像 */
#header_image {
  text-align: center;
}

#header_image img {
  /* max-width: 1200px; */
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  body #header_image::before {
    padding-top: 38%;
  }
}

/* 旧下層ページ用 */
#left_col {
  float: none;
  margin-inline: auto;
  margin-bottom: 80px;
  max-width: 860px;
}

#article {
  margin-bottom: 40px;
}

body.page-template-tmpl-new-page #article {
  margin-bottom: 0;
}

#article_header {
  margin: 0 0 40px;
}

/* イベント一覧 */
.event-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.event-list .event-item {
  width: calc((100% - 54px) / 3);
  margin-right: 27px;
  margin-bottom: 30px;
}

.event-list .event-item:nth-child(3n) {
  margin-right: 0;
}

.event-list .event-item .su-post-thumbnail img {
  max-width: 100%;
  height: auto;
}

.event-list .event-item .su-post-title,
.event-list .event-item .su-post-meta,
.event-list .event-item .su-post-excerpt {
  display: none;
}

.event-list .to-list {
  margin-bottom: 60px;
}

.event-list .to-list span {
  border-radius: 3px !important;
  border: none !important;
  line-height: 14px !important;
  padding: 17px 28px !important;
  font-size: 14px !important;
}

@media only screen and (max-width: 600px) {
  .event-list {
    justify-content: space-between;
  }

  .event-list .event-item {
    width: 48%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

/* 検索タイトル */
h2.event-search-title {
  font-size: 22px;
  text-align: center;
  margin-top: 60px;
}

#index_header_search {
  padding: 23px 0 0;
}

#index_header_search form {
  justify-content: center;
}

/* ======================================================================
   6. コンポーネント（ユーティリティ・パーツ）
   ====================================================================== */

/* --- 共通タイトル --- */
#main_col .top_section_ttl {
  clear: both;
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 40px;
  padding: 10px 0 0;
  text-align: center;
}

.post_content .common-title {
  text-align: center;
  padding-top: 1.6em;
  font-size: 26px;
}

.post_content .common-l2-title {
  text-align: center;
  line-height: 1.6;
  margin: 0 0 1.4em;
  font-weight: 500;
  font-size: 27px;
}

.sub-title {
  font-size: 20px;
  margin-bottom: 7px;
  display: inline-block;
}

/* --- 装飾ライン --- */
.dashed_line::after {
  content: "";
  display: block;
  width: 38%;
  height: 0;
  border-bottom: 4px dashed rgba(51, 51, 51, 0.15);
  margin: 0 auto;
  padding-top: 10px;
  transform: skewX(-45deg);
}

.separator {
  display: block;
  width: 100%;
  border-bottom: 4px dashed rgba(51, 51, 51, 0.15);
  margin: 30px auto 53px;
  transform: skewX(-45deg);
}

/* --- マーカー・ボックス --- */
.marker {
  background: linear-gradient(transparent 70%, var(--color-primary) 70%);
  font-weight: 600;
}

.bg-white {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 50px 45px;
}

.yellow {
  color: #fff000;
}

@media only screen and (max-width: 600px) {
  .bg-white {
    padding: 30px 20px;
  }

  .post_content .common-title {
    font-size: 26px;
  }

  .post_content .common-l2-title {
    font-size: 23px;
  }
}

/* --- 防災コンテンツ一覧 --- */
.bosai-contents {
  padding: 60px 0 80px;
}

.bosai-contents h1.fit {
  width: fit-content;
  margin: 0 auto 30px;
}

.bosai-contents h1.fit .dashed_line::after {
  width: 100%;
}

.bosai-contents p:not(.content-desc) {
  display: none;
}

.bosai-contents p:has(.more-view) {
  display: block;
}

.bosai-contents .content-list {
  list-style: none;
}

.bosai-contents .content-item {
  line-height: 1;
  background: var(--color-white);
  padding: 20px;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
}

.bosai-contents .content-item:last-child {
  margin-bottom: 120px;
}

.bosai-contents .content-item .img-container {
  width: 32%;
  margin-right: 30px;
  max-width: 320px;
  padding: 20px 0 0;
}

.bosai-contents .content-item .img-container img {
  border-radius: 4px;
}

.bosai-contents .content-item .txt-container {
  width: calc(100% - (32% + 30px));
}

.bosai-contents .content-item .content-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.bosai-contents .content-item .content-desc {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.bosai-contents .content-item .feature-list {
  font-size: 14px;
  margin-left: 0;
  padding: 23px 26px;
  background: #fff7d4;
  border-radius: 5px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.bosai-contents .content-item .feature-item {
  line-height: 1.5;
  color: var(--color-dark);
  margin-right: 16px;
}

.bosai-contents .more-view {
  font-size: 14px;
  text-align: right;
  display: block;
  color: var(--color-black);
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
  .bosai-contents {
    padding: 60px 0 40px;
  }

  .bosai-contents .content-list {
    margin-left: 0;
  }

  .bosai-contents .content-item {
    display: block;
  }

  .bosai-contents .content-item .img-container {
    width: 100%;
    margin-right: 0;
    max-width: inherit;
    padding: 0;
    margin-bottom: 24px;
  }

  .bosai-contents .content-item .img-container img {
    width: 100%;
  }

  .bosai-contents .content-item .txt-container {
    width: 100%;
  }

  .bosai-contents .content-item:last-child {
    margin-bottom: 40px;
  }
}

/* --- タイル型リスト --- */
#main_contents .tile-list {
  display: flex;
  justify-content: center;
  margin-left: 0;
  list-style: none;
}

#main_contents .tile-list .tile-item {
  width: calc((100% - 46px) / 3);
  background: var(--color-white);
  padding: 15px;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-right: 23px;
  margin-bottom: 36px;
  box-sizing: border-box;
  line-height: 1;
}

#main_contents .tile-list .tile-item:last-child {
  margin-right: 0;
}

#main_contents .tile-item a {
  color: var(--color-black);
  text-decoration: none;
}

#main_contents .tile-item img {
  margin-bottom: 20px;
}

#main_contents .tile-item-title {
  font-size: 22px;
  text-align: center;
  padding-top: 0;
  margin: 0 0 1em;
}

@media only screen and (max-width: 600px) {
  #main_contents .tile-list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #main_contents .tile-list .tile-item {
    margin-inline: 0;
    width: 49%;
    padding: 6px;
    margin-bottom: 16px;
  }

  #main_contents .tile-item-title {
    font-size: 14px;
  }
}

/* --- ABOUT セクション --- */
.about-item {
  margin-bottom: 63px;
}

.about-item h2 {
  font-size: 30px;
  line-height: 1.43;
  margin-bottom: 25px;
}

.about-item p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-item img {
  width: 100%;
  height: auto;
}

.about-item.reverse>div:first-child {
  float: right;
}

.about-item.reverse>div:last-child {
  margin: 0;
}

@media (max-width: 760px) {
  .about-item {
    margin-bottom: 20px;
  }

  .about-item::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 4px dashed rgba(51, 51, 51, 0.15);
    padding-top: 25px;
    transform: skewX(-45deg);
    margin-left: 10px;
  }

  .about-item:last-child {
    margin-bottom: 0;
  }

  .about-item:last-child::after {
    content: none;
  }

  .about-item h2 {
    font-size: 19.5px;
    margin-bottom: 28.5px;
    text-align: center;
  }

  .about-item p {
    font-size: 14px;
  }
}

/* --- 体感型アトラクション --- */
.su-row .su-column.customize-item {
  margin-left: 6px;
}

@media (min-width: 769px) {
  .su-row .su-column.customize-item {
    width: 24%;
  }
}

.at_theme_block {
  background: #fff;
  padding: 15px;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-bottom: 36px;
  box-sizing: border-box;
}

.at_theme_block table {
  margin: 0;
}

.at_theme_block td img {
  vertical-align: middle;
}

@media (max-width: 834px) {
  .at_theme_block {
    overflow-x: scroll;
  }

  .at_theme_block table {
    min-width: 1100px;
  }
}

/* --- リモートアトラクション --- */
.post_content .darkyellow-border-box {
  border: solid 3px var(--color-dark);
  padding: 1.2em 2em;
}

.post_content .darkyellow-border-box p {
  margin-bottom: 0;
  font-weight: 600;
}

.lightyellow-bg-box {
  color: var(--color-dark);
  background: #fff7d4;
  border-radius: 6px;
  padding: 1.2em 2em;
}

.spec_dl_block {
  background: var(--color-white);
  padding: 15px;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-bottom: 36px;
  box-sizing: border-box;
  line-height: 1;
}

.spec_dl_block dl {
  display: flex;
  flex-wrap: wrap;
}

.spec_dl_block dt {
  flex-basis: 6em;
  margin: 0;
}

.spec_dl_block dd {
  flex-basis: calc(100% - 6em);
  margin: 0;
}

.mb_60 {
  margin-bottom: 60px;
}

/* --- インパーソン型アトラクション --- */
.post_content p {
  line-height: 2.4;
  margin: 0 0 2.4em 0;
}

.post_content p.inperson-scene-cat {
  color: var(--color-dark);
  width: 240px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 24px;
  border: 3px solid var(--color-dark);
  border-radius: 5px;
  margin: 0 auto 30px;
}

.post_content ul.inperson-scene-list {
  margin: 0 0 80px;
}

.post_content p.inperson-scene-title {
  color: var(--color-white);
  font-size: 22px;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  text-align: center;
}

.red_font {
  color: #db0707;
}

.bousai-at-customize .su-column img {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .post_content ul.inperson-scene-list {
    flex-direction: column;
  }

  .inperson-scene-item,
  .inperson-scene-item:nth-child(2n),
  .inperson-scene-item:nth-child(3) {
    width: 100%;
    margin: 0 0 14px;
  }

  .post_content .su-row .su-column+.su-column {
    margin: 14px 0 0;
  }

  .post_content .su-row {
    margin-bottom: 14px;
  }

  .su-row.inperson-scene-list {
    margin-bottom: 80px;
  }
}

/* --- 様々なテーマに対応 --- */
.post_content th {
  background: #ddd;
  font-weight: normal;
}

.post_content td,
.post_content th {
  border: 1px solid #bbb;
  padding: 10px 15px;
  line-height: 2.2;
}

/* --- iframeラッパー --- */
.iframe-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  aspect-ratio: 560 / 315;
  max-width: 520px;
}

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


/* --- イベント単体ページ --- */
body.single-event h2#post_title,
body.single-event .em-event-bookings>h2 {
  display: none;
}

/* --- #main_col_new --- */
#main_col_new {
  padding-bottom: 80px;
  background: var(--color-light);
}

/* --- トップページ topics --- */
@media only screen and (max-width: 767px) {
  body.home .top-topics .top-topics-btn {
    padding: 0.6em 1.8em;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1024px) {
  body {
    font-size: 12px;
  }
}

/* --- テンプレートパーツ　recently-event --- */
.su-button-center {
  text-align: center;
}

.su-button-center a {
  line-height: 1;
  display: inline-block;
}

/* ======================================================================
   7. inquiry.php
   ====================================================================== */
.tcd-pb-row.row3 .tcd-pb-col.col1,
.tcd-pb-row.row3 .tcd-pb-col.col2 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.tcd-pb-col {
  float: left;
}

.box10 {
  padding-top: 1.5em;
  padding-bottom: 2em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  margin: 2em 0;
  font-weight: normal;
  color: #333333;
  background: #f8f8f8f8;
  border: solid 0.5px #cccccc;
  border-radius: 0px;
}

.post_content .q_button {
  min-width: 200px;
  max-width: 90%;
  background-color: #535353;
  display: inline-block;
  vertical-align: middle;
  padding: 0.6em 1.3em 0.5em;
  font-weight: 400;
  font-size: 100%;
  color: #fff !important;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.post_content .bt_red {
  background: #e60000;
}

.tcd-pb-row.row1 .tcd-pb-col.col1 {
  width: 100%;
}

@media only screen and (max-width: 767px) {

  .tcd-pb-row.row3 .tcd-pb-col.col1,
  .tcd-pb-row.row3 .tcd-pb-col.col2 {
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }
}

/* ======================================================================
   8. inquiry-form.php
   ====================================================================== */
.form-mail {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hissu {
  background: red;
  margin-left: 0.5em;
  padding: 0 3px 1px;
  font-size: 0.7em;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
}

.form-mail input,
.form-mail textarea {
  max-width: 100%;
  padding: 0.5em;
  margin-bottom: 0.5em;
  border: solid 1px #ddd;
  border-radius: 5px;
}

.post_content a {
  color: #e60000;
}

.okuri {
  text-align: center;
}

/* ======================================================================
 * 9. 下層ページ
   ====================================================================== */
.card-grid_add {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

.card-grid_add-column04 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-grid_add-column03 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-grid_add .img img {
  width: 100%;
  height: auto;
  display: block;
}

.card-flex_add,
.card-flex_add_reverse {
  display: flex;
  align-items: center;
  gap: 40px;
}

.card-flex_add {
  flex-direction: row;
  margin-top: 28px;
}

.card-flex_add_reverse {
  flex-direction: row-reverse;
}

.card-flex_add .su-column,
.card-flex_add_reverse .su-column {
  width: 50%;
}

.spec_dl_block {
  line-height: 1;
  background: #fff;
  padding: 15px;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-bottom: 36px;
  box-sizing: border-box;
}

.spec_dl_block dl {
  display: flex;
  flex-wrap: wrap;
}

.spec_dl_block dt {
  flex-basis: 6em;
  margin: 0;
  line-height: 2;
  font-weight: bold;
}

.spec_dl_block dd {
  flex-basis: calc(100% - 6em);
  margin: 0;
  line-height: 2;
  font-weight: bold;
}

.inperson-scene-list {
  margin-bottom: 20px;
}

.inperson-scene-item {
  position: relative;
}

/* スマホ 600px以下 */
@media screen and (max-width: 600px) {

  .card-grid_add,
  .card-grid_add-column04,
  .card-grid_add-column03 {
    grid-template-columns: 1fr;
  }

  .card-flex_add,
  .card-flex_add_reverse {
    flex-direction: column;
    gap: 24px;
  }

  .card-flex_add .su-column,
  .card-flex_add_reverse .su-column {
    width: 100%;
  }
}

.else_content_wrap {
  padding: 50px 0 30px;
}

.gallery-item {
  position: relative;
}

.gallery-item span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #ffe652;
  color: #fff;
  font-size: 14px;
  padding: 0 10px;
  color: #000;
  font-weight: bold;
}

.gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.glry-item span {
  display: block;
  display: block;
  padding: 0 9%;
  line-height: 1.7;
  font-size: 16px;
}

.training {
  background: #fff7d4;
  padding: 23px 26px;
  border-radius: 5px;
  margin-bottom: 2.4em;
  text-align: center;
}

.training p.training-item-ttl,
.training .nn {
  font-size: 12px;
  text-align: right;
}

.flow-item {
  list-style: none;
  background: #fff7d4;
  padding: 10px 16px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  line-height: 2;
}

.flow-item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #000;
  border-bottom: 0;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.post_content ul {
  margin-left: 1.3em;
}

.q-list {
  color: #e60000;
  font-weight: bold;
}

.post_content ul,
.post_content ol,
.post_content dl {
  margin-bottom: 24px;
  line-height: 2;
}

.cv-container p {
  text-align: center;
  margin: 10px;
}

.post_content p {
  line-height: 2;
  margin: 0 0 40px 0;
  font-size: 18px;
}

a.to-contact {
  color: #000;
  background: #ffe652;
  font-size: 14px;
  display: block;
  padding: 0 16px;
  width: 272px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border: 2px solid #333;
  border-radius: 6px;
  margin: 0 auto;
}

.post_content .style4a {
  margin: 2.5em 2px 1.2em;
  padding: 0.3em 0 0.3em 0.8em;
  font-size: 18px;
  font-weight: 400;
  border-bottom: none;
  border-left: 2px solid #222;
}

.su-spoiler-style-fancy>.su-spoiler-title {
  border-radius: 10px;
  background: #f0f0f0;
  font-size: 0.9em;
  position: relative;
  cursor: pointer;
  min-height: 20px;
  line-height: 20px;
  padding: 7px 7px 7px 34px;
  font-weight: 700;
}

.su-spoiler-icon {
  position: absolute;
  left: 7px;
  top: 7px;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 21px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

.su-spoiler-icon-plus-circle.su-spoiler-closed .su-spoiler-icon:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icons_plus.png") no-repeat center center;
  background-size: contain;
}

.q-block {
  margin-bottom: 10px;
}

.su-spoiler-title {
  position: relative;
  cursor: pointer;
}

.su-spoiler-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icons_plus.png") no-repeat center center;
  background-size: contain;
}

.su-spoiler.is-open .su-spoiler-icon::before {
  background-image: url("../images/icon_minus.png");
}

.su-spoiler-content {
  display: none;
  padding: 14px;
}
.su-spoiler.is-open>.su-spoiler-content {
    height: auto !important;
    opacity: 1 !important;
    padding-top: 16px !important;
}
/* ======================================================================
 * 10. topページ
   ====================================================================== */
.top_section_ttl {
  clear: both;
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 40px 0;
  padding: 10px 0 0 0;
  text-align: center;
}

.su-accordion .su-spoiler {
  margin-bottom: 0.5em;
}

/* ======================================================================
 * 11. singleページ
   ====================================================================== */
#article_header {
  margin: 0 0 40px;
  padding: 30px 39px 25px;
  background: #f7f7f7;
  border: 1px solid #ddd;
}

#post_meta_top {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

ul.meta li {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 0;
  font-size: 12px;
}

ul.meta li.cat a,
ul.meta li.cat span {
  display: inline-block;
  margin: 0 6px 4px 0;
  padding: 0 13px;
  min-width: 50px;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  border-radius: 13px;
  color: #fff;
  background: #000;
}

.cat-category {
  background-color: #999999 !important;
}

#post_title {
  font-size: 30px;
}

#post_date {
  margin: 9px 0 4px 0;
  font-size: 12px;
  color: #999;
  line-height: 1;
}

.post_content {
  font-size: 18px;
  line-height: 2;
}

.post_content a {
  color: #e60000;
}

#related_post .headline {
  margin: 0 0 14px 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}

#related_post ol {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 0;
  border-left: 1px solid #ddd;
}

#related_post li {
  display: inline-block;
  width: 33.3333%;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

#related_post li:nth-child(-n + 3) {
  border-top: 1px solid #ddd;
}

#related_post li a {
  display: block;
  padding: 20px 8% 14px;
  text-decoration: none;
}

#related_post li .title {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  height: 3.4em;
  overflow: hidden;
}

.archive_header {
  padding: 19px 0;
  border-bottom: 1px solid #ddd;
}

.archive_header .headline {
  margin: 0;
  padding: 0 30px 0 0;
  font-size: 42px;
  line-height: 1.2;
}

.archive_sort {
  margin: 0 0 50px 0;
}

.archive_sort dt {
  color: #fff;
  background: #000;
  line-height: 52px;
}

.archive_sort dt,
.archive_sort dd {
  float: left;
  width: 25%;
  text-align: center;
}

.archive_sort dd a {
  display: block;
  line-height: 50px;
  color: #000;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left: none;
}

#post_list2 {
  margin: 25px 0;
}

#post_list2 .article:first-child {
  border-top: 1px solid #ddd;
}

#post_list2 .article {
  border: 1px solid #ddd;
  border-top: none;
}

#post_list2 .article a {
  display: block;
  padding: 30px;
  text-decoration: none;
}

#post_list2 .article .image {
  float: left;
  width: 35.087%;
  overflow: hidden;
  position: relative;
}

#post_list2 .article .info {
  float: right;
  width: 61.15%;
  color: #000;
}

#post_list2 .article .meta {
  margin: 0 0 16px 0;
  padding: 0;
}

ul.meta li {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 0;
  font-size: 12px;
}

ul.meta li.cat a,
ul.meta li.cat span {
  display: inline-block;
  margin: 0 6px 4px 0;
  padding: 0 13px;
  min-width: 50px;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  border-radius: 13px;
  color: #fff;
  background: #000;
}

#post_list2 .article .title {
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .archive_sort dt {
    float: none;
    width: 100%;
    margin: 0 0 9px 0;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    background: transparent !important;
    color: #000;
  }
}

@media only screen and (max-width: 1024px) {
  .archive_sort dd {
    width: 33.3333%;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article a {
    display: block;
    padding: 17px 20px;
    text-decoration: none;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article .image {
    float: left;
    width: 45.625%;
    overflow: hidden;
    position: relative;
    padding-bottom: 29%;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article .info {
    float: right;
    width: 48.125%;
    color: #000;
  }
}

.archive_sort dd a.active,
.archive_sort dd a:hover {
  background: #f7f7f7;
}

@media only screen and (max-width: 1024px) {
  .archive_sort dd:first-of-type a {
    border-left: 1px solid #ddd;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article .title {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article .excerpt {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article .image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article .image img {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media only screen and (max-width: 1024px) {

  ul.meta li.cat a,
  ul.meta li.cat span {
    margin: 0 4px 4px 0;
    padding: 0 8px;
    min-width: 44px;
    line-height: 21px;
    border-radius: 10.5px;
  }
}

@media only screen and (max-width: 1024px) {
  ul.meta li {
    margin: 0 3px 0 0;
    font-size: 10px;
  }
}

@media only screen and (max-width: 1024px) {
  #post_list2 .article .meta {
    margin: 0 0 4px 0;
  }
}

/* ======================================================================
 * 12. 下層ページ　new
   ====================================================================== */
/* ==============================
   s-company セクション
============================== */

.s-company {
  padding: 80px 0;
}

.s-company .logo_image {
  text-align: center;
  margin-bottom: 32px;
}

.s-company .logo_image img {
  max-width: 200px;
  height: auto;
}

.s-company .intro {
  text-align: center;
  font-size: 36px;
  line-height: 2;
  margin-bottom: 120px;
}

/* タイトルブロック */
.s-ttl_block {
  text-align: center;
  margin-bottom: 40px;
}

.s-ttl_block .image {
  margin-bottom: 20px;
}

.s-ttl_block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.company-table-wrap {
  margin-bottom: 80px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
  line-height: 1.8;
}

.company-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.company-table tr:first-child {
  border-top: 1px solid #e0e0e0;
}

.company-table th {
  width: 160px;
  padding: 20px 16px;
  vertical-align: top;
  text-align: center;
  font-weight: 600;
  color: #444;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.company-table td {
  padding: 20px 24px;
  vertical-align: top;
  color: #333;
}

/* ==============================
    s-company セクションSP（767px以下）
============================== */

@media only screen and (max-width: 767px) {
  .s-company {
    padding: 48px 16px;
  }

  .s-company .logo_image img {
    max-width: 160px;
  }

  .s-company .intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .s-ttl_block h2 {
    font-size: 22px;
  }

  /* SPではth/tdを縦並びに */
  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table tr {
    border-bottom: none;
    margin-bottom: 0;
  }

  .company-table tr:first-child {
    border-top: none;
  }

  .company-table th {
    padding: 12px 16px 6px;
    text-align: left;
    white-space: normal;
    border-top: 1px solid #e0e0e0;
    background-color: #f7f7f7;
    font-size: 13px;
    color: #555;
  }

  .company-table td {
    padding: 6px 16px 16px;
    font-size: 14px;
    border-bottom: none;
  }

  .company-table tr:last-child td {
    border-bottom: 1px solid #e0e0e0;
  }
}

.company-map {
  width: 100%;
}

.company-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

@media screen and (max-width: 600px) {
  .company-map iframe {
    height: 300px;
  }
}

/* ==============================
  共通　グリーン　.s-modules_youtube 
============================== */
.s-modules_youtube {
  padding: 60px 0 120px;
  position: relative;
  z-index: 1;
}

.s-modules_youtube::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 535px;
  background: url("../images/m_youtube_bousai-rt02.png") no-repeat center bottom;
  background-size: cover;
  z-index: -1;
}

.modules_youtube_text {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}

.modules_youtube_text .img {
  margin: 40px 0;
}

@media screen and (max-width: 600px) {
  .s-bousai-rt_about::after {
    content: none;
  }
}

.su-post-comments-link {
	display: none !important;
}

.su-posts-default-loop.event-list .su-post-thumbnail {
	float: none;
	width: auto;
	height: auto;
	margin-right: 0;
}

.su-posts-default-loop.event-list .su-post-thumbnail img {
	    max-height: inherit;
}

.common-cta .su-column-inner {
	text-align: center;
}

/* ======================================================================
 * 北角追加分
   ====================================================================== */
.nazo-bg {
    background: url("../images/bg_y_dot.png") center top repeat-y;
    background-size: 100% auto;
}

.nazo-needs-list{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    max-width:960px;
    margin:40px auto 60px;
    gap:20px;
}

.nazo-needs-item{
    width:220px;
    text-align:center;
    flex-shrink:0;
}

.nazo-needs-item .image{
    height:170px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    margin-bottom:10px;
}

.nazo-needs-item .image img{
    width:150px;
    max-width:100%;
    height:auto;
    display:block;
}

.nazo-needs-item p{
    margin:0;
    font-size:13px;
    line-height:1.5;
    font-weight:700;
    text-align:center;
}

@media (max-width:768px){

.nazo-needs-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px 16px;
    max-width:100%;
    padding:0 16px;
}

.nazo-needs-item{
    width:auto;
}

.nazo-needs-item .image{
    height:140px;
}

.nazo-needs-item .image img{
    width:120px;
}

.nazo-needs-item p{
    font-size:12px;
}

}

/* ===========================
   防災謎解きページ 施工写真
   PC：3枚を横並び
   スマホ：縦3枚をまとめた画像
=========================== */

.nazo-gallery-lead {
  margin: 60px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

/* PC用の3枚 */
.nazo-gallery-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: min(100% - 32px, 760px);
  margin: 40px auto 60px;
}

.nazo-gallery-item {
  width: calc((100% - 20px) / 3);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.nazo-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スマホ用の1枚画像はPCでは非表示 */
.nazo-gallery-sp {
  display: none;
}

/* スマホ */
@media screen and (max-width: 767px) {

  /* PC用3枚を消す */
  .nazo-gallery-list {
    display: none;
  }

  /* スマホ用1枚画像を表示 */
  .nazo-gallery-sp {
    display: block;
    width: calc(100% - 32px);
    max-width: 420px;
    margin: 30px auto 50px;
  }

  .nazo-gallery-sp img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/* 防災謎解きページ下部のグレー余白を消す */
.nazo-bg {
  display: flow-root;
}

.nazo-bg .s-seminar_needs .img-ttl {
  margin-bottom: 0;
  padding-bottom: 40px;
}

/* 防災謎解きページだけ背景画像を変更 */
.bousai-nazo-page .s-bousai_recommend {
    background-image: url("../images/bg-m_nazo.png") !important;
}

/* ===========================
   防災謎解きラリー 利用の流れ
=========================== */

.nazo-flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 50px;
  width: 100%;
}

.nazo-flow-item {
  min-width: 0;
  text-align: center;
}

.nazo-flow-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 260px;
  margin-bottom: 18px;
}

.nazo-flow-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 260px;
  height: auto;
  object-fit: contain;
}

.nazo-flow-item p {
  min-height: 3.4em;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .nazo-flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }

  .nazo-flow-image {
    height: 160px;
    margin-bottom: 12px;
  }

  .nazo-flow-image img {
    max-height: 160px;
  }

  .nazo-flow-item p {
    min-height: 0;
    font-size: 12px;
  }
}

/* ===========================
   防災謎解き 問題パネル
=========================== */

.nazo-panel-block {
  width: 100%;
}

.nazo-panel-lead {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.nazo-panel-image {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.nazo-panel-image picture,
.nazo-panel-image img {
  display: block;
  width: 100%;
}

.nazo-panel-image img {
  height: auto;
}

@media screen and (max-width: 767px) {
  .nazo-panel-lead {
    margin: 0 16px 30px;
    font-size: 13px;
    line-height: 1.8;
  }

  .nazo-panel-lead br {
    display: none;
  }

  .nazo-panel-image {
    padding: 0 16px;
  }
}

/* ===========================
   防災謎解き 解答冊子
=========================== */

.nazo-kit-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  max-width: 980px;
  margin: 50px auto 0;
}

.nazo-kit-image {
  text-align: center;
}

.nazo-kit-image img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
}

.nazo-kit-text h3 {
  margin: 0 0 28px;
  color: #ff8a24;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 700;
}

.nazo-kit-text p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.nazo-kit-note {
  margin-top: 28px !important;
  color: #f04444;
  font-weight: 700 !important;
}

/* タブレット */
@media screen and (max-width: 900px) {
  .nazo-kit-block {
    gap: 40px;
  }

  .nazo-kit-text h3 {
    font-size: 24px;
  }

  .nazo-kit-text p {
    font-size: 14px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .nazo-kit-block {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
    padding: 0 16px;
  }

  .nazo-kit-image img {
    max-width: 320px;
  }

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

  .nazo-kit-text h3 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.5;
  }

  .nazo-kit-text p {
    font-size: 13px;
    line-height: 1.8;
  }

  .nazo-kit-text p br {
    display: none;
  }

  .nazo-kit-note {
    margin-top: 20px !important;
  }
}

body.page-id-398 #main_contents{
  background: #fff;
}