@charset "UTF-8";

/*
 * menu-standalone.css
 * components.css を使わずにメニュー・検索ポップアップを同じ見た目で表示するためのCSS
 */

/* ========== ベース（components.css の必要分） ========== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

a {
  text-decoration: none;
  color: #333;
}

/* clearfix */
.w-clearfix::before,
.w-clearfix::after {
  content: " ";
  display: table;
}
.w-clearfix::after {
  clear: both;
}

/* list unstyled */
.w-list-unstyled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* container */
.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.w-layout-blockcontainer-_search {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-container,
  .w-layout-blockcontainer-_search {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-container,
  .w-layout-blockcontainer-_search {
    max-width: none;
  }
}

/* ========== 変数（header-footer と同様） ========== */
:root {
  --menu-max-width: 940px;
  --menu-bg-label: #969696;
  --menu-bg-white: #fff;
  --menu-border: #e2e1e1;
  --menu-bg-detail: white;
}

/* ========== ナビゲーション・メニューコンテナ ========== */
.container_general-_menu {
  max-width: var(--menu-max-width);
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: static;
}

@media screen and (max-width: 767px) {
  .container_general-_nosp {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding: 15px 0;
  position: relative;
}

.navbar-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333;
}

.nav-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu-two {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

/* ナビリンク */
.nav-link {
  color: #1a1b1f;
  letter-spacing: 0.25px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 20px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  color: rgba(26, 27, 31, 0.75);
}

.nav-link:focus-visible {
  outline: 2px solid #0050bd;
  outline-offset: 0;
  color: #0050bd;
  border-radius: 4px;
}

/* ドロップダウン */
.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222;
  padding: 20px 22px 20px 12px;
  text-align: left;
  white-space: nowrap;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.25px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background: transparent;
  border: none;
}

.nav-dropdown-toggle:hover {
  color: rgba(26, 27, 31, 0.75);
}

.nav-dropdown-toggle:focus {
  outline: 0;
}

.nav-dropdown-toggle:focus-visible {
  outline: 2px solid #0050bd;
  outline-offset: 0;
  color: #0050bd;
  border-radius: 5px;
}

/* ドロップダウン矢印（V字シェブロン） */
.nav-dropdown-icon,
.w-icon-dropdown-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 8px;
  height: 8px;
  border: none;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.nav-dropdown-icon {
  margin-right: 3px;
}

.nav-doprdown-toptext {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* ドロップダウンリスト（トランジション付き） */
.nav-dropdown-list,
.w-dropdown-list {
  position: absolute;
  background-color: #fff;
  min-width: 100%;
  left: 0;
  top: 100%;
  box-shadow: 0 4px 24px rgba(150, 163, 181, 0.08);
  border: 1px solid var(--menu-bg-label);
  /* border-top: none; */
  border-radius: 0 0 4px 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.nav-dropdown-list.w--open,
.w-dropdown-list.w--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-link,
.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-link:hover,
.w-dropdown-link:hover {
  color: #0050bd;
}

.nav-dropdown-link:focus-visible,
.w-dropdown-link:focus-visible {
  outline: 2px solid #0050bd;
  outline-offset: 0;
  color: #0050bd;
  border-radius: 5px;
}

/* メニューボタン（ハンバーガー・アイコンフォントの代わりにCSSで描画） */
.menu-button,
.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  color: inherit;
}

.w-nav-button:focus {
  outline: 0;
}

/* ハンバーガーアイコン（3本線をCSSで描画） */
.w-icon-nav-menu {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
  background: linear-gradient(
    to bottom,
    currentColor 0,
    currentColor 2px,
    transparent 2px,
    transparent 8px,
    currentColor 8px,
    currentColor 10px,
    transparent 10px,
    transparent 16px,
    currentColor 16px,
    currentColor 18px
  );
  background-size: 24px 18px;
  background-repeat: no-repeat;
}

/* 検索アイコン */
.icon_search {
  width: 36px;
  height: 36px;
}

.icon_search2 {
  width: 30px;
  height: 30px;
}

.cursor_pointer {
  cursor: pointer;
}

/* ========== モバイル：メニュー折りたたみ ========== */
@media screen and (max-width: 991px) {
  .nav-menu-wrapper {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    text-align: center;
    min-width: 200px;
    flex-direction: column;
    padding: 0 10px;
    border-radius: 0 0 10px 10px;
    z-index: 1000;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border: 1px solid transparent;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease, border-color 0.3s ease;
  }

  .nav-menu-wrapper.mobile-open {
    max-height: 600px;
    opacity: 1;
    padding: 10px;
    overflow: visible;
    border-color: var(--_koda---line_title);
  }

  .menu-button,
  .w-nav-button {
    display: block;
  }

  .navbar-brand {
    padding-left: 10px;
  }
}

[data-nav-menu-open] .nav-menu-two {
  flex-direction: column;
  align-items: stretch;
}

[data-nav-menu-open] .nav-menu-two > li {
  text-align: center;
}

[data-nav-menu-open] .nav-link {
  padding: 10px 12px;
  display: block;
  text-align: center;
}

[data-nav-menu-open] .nav-dropdown,
[data-nav-menu-open] .w-dropdown {
  margin: 0;
  display: block;
  text-align: center;
}

/* ドロップダウン項目：文字のみ中央揃え（下矢印は幅の計算に含めない） */
[data-nav-menu-open] .nav-dropdown-toggle {
  display: inline-block;
  position: relative;
  width: auto;
  padding: 10px 0;
  text-align: center;
}

[data-nav-menu-open] .nav-doprdown-toptext {
  display: block;
  text-align: center;
}

[data-nav-menu-open] .nav-dropdown-icon,
[data-nav-menu-open] .w-icon-dropdown-toggle {
  position: absolute;
  right: -20px;
  left: auto;
  margin: 0;
  top: 50%;
  margin-top: -3px;
}

[data-nav-menu-open] .nav-dropdown-list,
[data-nav-menu-open] .w-dropdown-list {
  position: static;
  box-shadow: none;
  border: none;
  border-radius: 4px;
  background: #f5f5f5;
  text-align: center;
  pointer-events: auto;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(-6px);
  transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, margin 0.3s ease, padding 0.3s ease;
}

[data-nav-menu-open] .nav-dropdown-list.w--open,
[data-nav-menu-open] .w-dropdown-list.w--open {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
}

[data-nav-menu-open] .nav-dropdown-link,
[data-nav-menu-open] .w-dropdown-link {
  text-align: center;
  white-space: normal;
}

.w-nav-button.w--open {
  background-color: #fff;
  color: #333;
}

/* ==========================================================
   検索ポップアップ — 統一デザイン
   ----------------------------------------------------------
   デザイントークン（検索画面内で共通）
     文字色   : #333
     罫線色   : #ccc
     罫線太さ : 1px
     背景     : #fff（入力欄も白）
     入力高さ : 36px
     font     : "Noto Sans JP", sans-serif / 14px / 400
     行間     : 1.6
   ========================================================== */

.modal-search-popup {
  z-index: 2000;
  position: fixed;
  inset: 0;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

.modal-search-popup.is-open {
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 1;
  visibility: visible;
}

.modal-search {
  width: 92%;
  max-width: 780px;
  margin: 60px auto;
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-search-popup.is-open .modal-search {
  transform: translateY(0);
  opacity: 1;
}

.modal_content_fit_search {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  overflow: visible;
}

.wrapper_item-_menu {
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
}

.wrapper_popup_search {
  padding: 28px 32px;
  overflow: visible;
}

/* 検索画面内の文字を一括統一 */
.wrapper_popup_search,
.wrapper_popup_search *,
.wrapper_popup_search input,
.wrapper_popup_search button,
.wrapper_popup_search select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

/* --- フォーム --- */
.search-panel {
  margin: 0;
}

/* 上段：絞り込み + キーワード */
.search-row-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* 絞り込みドロップダウン */
.filter-dropdown {
  position: relative;
  z-index: 1001;
  flex: 0 0 200px;
}

.filter-toggle {
  width: 100%;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  color: #333;
  padding: 0 32px 0 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}

.filter-toggle-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-dropdown .w-icon-dropdown-toggle {
  right: 10px;
  width: 8px;
  height: 8px;
  border: none;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translateY(-60%) rotate(45deg);
}

.filter-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 2px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  padding: 4px 0;
  max-height: 280px;
  overflow: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
  border: none;
  margin: 0;
  min-height: auto;
}

.filter-option:hover {
  background: #f0f4f8;
}

.filter-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #3898ec;
}

/* キーワード欄 */
.keyword-wrap {
  flex: 1;
  display: flex;
  min-width: 0;
}

.keyword-input {
  flex: 1;
  height: 36px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 3px 0 0 3px;
  background: #fff;
  color: #333;
  padding: 0 10px;
  margin: 0;
  min-width: 0;
}

.keyword-input:focus {
  border-color: #3898ec;
  outline: 0;
}

.keyword-submit {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 3px 3px 0;
  background: #f5f5f5;
  color: #333;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
}

.keyword-submit:hover {
  background: #e8e8e8;
}

/* --- 開催期間 --- */
.period-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 212px;
}

.period-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.period-row-label {
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: 42px;
  margin-right: 12px;
}

.period-input {
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  color: #333;
  padding: 0 8px;
  margin: 0;
  text-align: center;
}

.period-input:focus {
  border-color: #3898ec;
  outline: 0;
}

.period-year {
  width: 72px;
}

.period-month,
.period-day {
  width: 52px;
}

.period-unit {
  flex: 0 0 auto;
  margin-left: 2px;
  margin-right: 10px;
}

.period-unit:last-child {
  margin-right: 0;
}

.period-date-hidden {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.period-cal-btn {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin-left: 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  transition: background 0.15s;
}

.period-cal-btn:hover {
  background: #f0f4f8;
}

/* --- close リンク --- */
.close-link {
  display: inline-block;
  /*margin-top: 16px;*/
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
  cursor: pointer;
}

.close-link:hover {
  color: #333;
  border-bottom-color: #333;
}

.area_btn_close_search {
  text-align:right;
  margin-bottom:10px;
  text-decoration: none;
}


.btn_close_search::after {
  content:"×";
  font-size: 18px;
}

/* ==========================================================
   レスポンシブ
   ========================================================== */

/* タブレット以下 (<=767px) */
@media screen and (max-width: 767px) {
  .modal-search {
    width: 96%;
    margin: 24px auto;
  }

  .wrapper_popup_search {
    padding: 20px 16px;
  }

  .search-row-top {
    flex-direction: column;
    gap: 10px;
  }

  .filter-dropdown {
    flex: none;
    width: 100%;
  }

  .keyword-wrap {
    width: 100%;
  }

  .period-rows {
    margin-left: 0;
  }

  .period-row {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* スマホ (<=479px) */
@media screen and (max-width: 479px) {
  .wrapper_popup_search {
    padding: 16px 12px;
  }
}

/*********************************************************/

@charset "UTF-8";

/*
 * header-footer.css
 * hf/header-footer2.html用に抽出・統合されたCSS
 * 元ファイル: normalize.css, components.css, koda-mock-up.css, style.css
 */

/* footer */
.footer-light {
  background-color: #7c7c7c;
  border-bottom: 1px solid #e4ebf3;
  width: 100%;
  padding: 30px 30px 16px;
  position: relative;
}

@media screen and (min-width: 1440px) {
  .footer-light {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.div-block-footer {
  background-color: #0000;
  width: 100%;
}

.footer-subscribe {
  border-bottom: 0 solid #e4ebf3;
  padding: 30px 30px 20px;
  position: relative;
}

/* .footer */
.container-footer {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .container-footer {
    max-width: 728px;
  }
}

@media screen and (max-width: 479px) {
  .container-footer {
    max-width: none;
  }
}

.footer-wrapper-three {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: var(--elements-webflow-library--neutral--100);
  margin-left: 20px;
  margin-right: 20px;
  font-family: Noto Sans JP, sans-serif;
  text-decoration: none;
}

.footer-link-three:hover {
  color: #1a1b1fbf;
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}


/* modal / popup search */


/* body 
.koda_body {
  background-color: var(--_koda---bg_pale);
  cursor: auto;
  font-family: Noto Serif JP, serif;
  font-weight: 400;
}
*/

/* ===================================
   style.css から抽出
   =================================== */
a {
  text-decoration: none;
  color: #333;
}

/* ===================================
   メディアクエリ
   =================================== */
@media screen and (max-width: 991px) {
  .footer-wrapper-three {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-block-three {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .footer-social-block-three {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-wrapper-three {
    flex-direction: column;
  }

  .footer-block-three {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }

  .footer-link-three {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-left: 0;
  }

  .footer-social-link-three {
    margin-left: 0;
    margin-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .wrapper_popup_search {
    padding: 20px;
  }
}

/* ===================================
   koda-mock-up.css から footer 抽出（追加分）
   =================================== */
.footer-wrapper-two {
  color: #fff;
  background-color: #0000;
  justify-content: space-between;
  align-items: flex-start;
  font-family: Noto Sans JP, sans-serif;
  display: flex;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.footer-link-two {
  color: #fff;
  margin-top: 20px;
  text-decoration: none;
}

.footer-link-two:hover {
  color: #1a1b1fbf;
}

.footer-form {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover, .footer-form-field:focus {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: #1a1b1fcc;
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #1a1b1f;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 48px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-dark {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link-2 {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer-subscribe {
  border-bottom: 0 solid #e4ebf3;
  padding: 50px 30px 40px;
  position: relative;
}

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

.footer-form-container-two {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: #1a1b1fcc;
}

.footer-wrapper-three {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: var(--_koda---bg_white);
  margin-left: 20px;
  margin-right: 20px;
  font-family: Noto Sans JP, sans-serif;
  text-decoration: none;
}

.footer-link-three:hover {
  color: #1a1b1fbf;
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: var(--_koda---bg_white);
  font-family: Noto Sans JP, sans-serif;
}

.footer-legal-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-legal-link {
  color: #3a4554;
  margin-left: 24px;
}

.footer-legal-link:hover {
  color: #3a4554;
}

@media screen and (min-width: 1440px) {
  .footer-wrapper-three {
    color: var(--_koda---bg_white);
  }

  .footer-link-three, .footer-copyright {
    color: var(--_koda---bg_white);
  }
}

@media screen and (max-width: 991px) {
  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .footer-form {
    width: 100%;
    margin-top: 40px;
  }

  .footer-form-container {
    max-width: 350px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social-block-three {
    margin-top: 40px;
  }
}

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

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link-2 {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 479px) {
  .footer-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-block-two {
    margin-top: 40px;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.footer-copyright_c {
font-size: 18px;
position: relative;
top:2px;
}
