@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* メニューが開いているときは背面のスクロールを禁止 */
body.is-open {
  overflow: hidden;
}

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

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

a:hover {
  opacity: 0.7;
}

a[href^="tel:"] {
  color: inherit; /* 親要素と同じ文字色にする */
  text-decoration: none; /* 下線を消す */
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1, h2, h3 {
  font-weight: 400;
}

/* ヘッダー */
/* ==========================================================================
   PC向けレイアウト（初期値：横幅768px以上）
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 161px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
  border-bottom: 2px solid #F0F0F0;
  z-index: 100;
}
.l-header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ==========================================================================
   スマホ・タブレット向け調整（画面幅767px以下：ランドスケープ含む）
   ========================================================================== */
@media screen and (max-width: 767px) {
  .l-header {
    height: 90px;
  }
  .l-header__inner {
    margin-top: 12px;
  }
}
/* フッター */
.l-footer {
  width: 100%;
  padding: 110px 10px 10px 10px;
  border-top: 1px solid #A7A7A7;
  /*   background-color: #DFDFDF; */
}

/* ==========================================================================
   スマホ・タブレット向け調整（画面幅767px以下：ランドスケープ含む）
   ========================================================================== */
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 20px 10px 20px;
  }
}
/* メイン */
/* 【追記】メインコンテンツの上部にヘッダー分の余白を作る */
main {
  margin-top: 161px;
  padding-top: 130px;
  /* ヘッダーの高さ（実測値）に合わせて数値を調整してください */
  width: 100%;
  background-color: #FFFFFF;
}

.l-section-1400 {
  max-width: 1400px;
  margin: 0 auto;
}

/* ==========================================================================
   スマホ・タブレット向け調整（画面幅767px以下：ランドスケープ含む）
   ========================================================================== */
@media screen and (max-width: 767px) {
  main {
    margin-top: 90px;
    padding-top: 0;
  }
}
.c-header__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header__upper__site-description {
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.c-header__upper__header-logo {
  margin: 0;
}
.c-header__upper__header-logo .logo-link {
  display: block;
  height: auto;
  font-size: 2rem;
}
.c-header__upper__utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280px;
  height: 40px;
  background-color: #F8F8F8;
  border-radius: 20px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.c-header__upper__utility__txt {
  margin: 0;
  padding: 0;
  display: table-cell;
  height: 40px;
  vertical-align: middle;
  font-weight: normal;
}

.c-header__lower {
  text-align: right;
}
.c-header__lower__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 0;
  margin-top: 40px;
}

.ico-mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 文字とアイコンの縦方向の中心を揃える */
  text-decoration: none;
  font-weight: 500;
}

.ico-mail:hover {
  opacity: 0.8;
}

.ico-mail::after {
  content: "";
  /* 必須設定 */
  display: inline-block;
  width: 24px;
  /* アイコンの横幅 */
  height: 22px;
  /* アイコンの縦幅 */
  margin-left: 6px;
  /* 文字「Contact」との間の隙間 */
  /* メールの画像（SVGやPNGなど）を背景として読み込む */
  background-image: url("../img/ico-mail.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.ico-window {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 文字とアイコンの縦方向の中心を揃える */
  text-decoration: none;
  font-weight: 500;
}

.ico-window:hover {
  opacity: 0.8;
}

.ico-window::after {
  content: "";
  /* 必須設定 */
  display: inline-block;
  width: 24px;
  /* アイコンの横幅 */
  height: 22px;
  /* アイコンの縦幅 */
  margin-left: 6px;
  /* 文字「Contact」との間の隙間 */
  /* メールの画像（SVGやPNGなど）を背景として読み込む */
  background-image: url("../img/ico-window.svg");
  background-size: 140% 140%;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.nav-item {
  width: 130px;
  margin: 0 4px;
  text-align: center;
}

.nav-item a {
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/*
.nav-item a:hover {
    color: #007bff;
}
    */
/* PCではメニューボタンを隠し、ナビを常に表示 */
.menu-btn {
  display: none;
}

.header-nav {
  display: block !important;
  /* PCではJSの状態に関わらず表示 */
}

/* ==========================================================================
   スマホ・タブレット向けレイアウト（画面幅767px以下 / ランドスケープ含む）
   ========================================================================== */
@media screen and (max-width: 767px) {
  .c-header__upper {
    margin: 0;
  }
  .c-header__upper__site-description {
    margin: 0;
    font-size: 10px;
  }
  .c-header__upper__header-logo {
    margin: 5px 0 0 0;
  }
  .c-header__upper__header-logo .logo-link {
    display: block;
    height: auto;
    font-size: 1rem;
  }
  .c-header__upper__header-logo img {
    width: 200px;
  }
  .c-header__upper__utility {
    display: none;
  }
  .c-header__lower__nav {
    margin-top: 0;
  }
  /* 【修正】ナビゲーションの初期状態：transition から opacity と transform を外す */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    padding-top: 100px;
    z-index: 105;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /* 初期状態：余計な transition は一切書かない（チラつき防止） */
    opacity: 0;
    visibility: hidden;
    /* 動きのスタート地点（20px下）はここに置いておきます */
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  .header-nav {
    display: block !important;
  }
  /* ハンバーガーアイコンの配置とデザイン */
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 110;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  /* 中央の線 */
  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  /* 上下の線 */
  .menu-btn span::before {
    top: -8px;
  }
  .menu-btn span::after {
    top: 8px;
  }
  /* ナビゲーションを画面全体に広げる（ドロワーメニュー化） */
  .l-header-container.is-open .header-nav {
    display: block !important;
    /* クラスがついたら表示 */
  }
  .nav-list {
    display: block;
    /*  background-color: blueviolet; */
  }
  .nav-item {
    width: 100%;
    display: block;
    /*     background-color: aqua; */
  }
  .nav-item a {
    font-size: 16px;
    display: inline-block;
    padding: 10px;
  }
  /* ----------------------------------------
   開閉動作（.is-open クラス連動）
   ---------------------------------------- */
  /* 【変更】ボタンにクラスがついたらメニューをフェードイン＋浮き上がらせる */
  .c-header.is-open .header-nav {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 開くときだけ、0.4秒かけてふわっと動かす */
    -webkit-transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  }
  /* ボタンにクラスがついたらアイコンを「×」に変形 */
  .c-header.is-open .menu-btn span {
    background-color: transparent;
    /* 中央の線を透明に */
  }
  .c-header.is-open .menu-btn span::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 0;
  }
  .c-header.is-open .menu-btn span::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 0;
  }
}
.c-footer__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* background-color: aquamarine; */
}
.c-footer__inner__logo {
  text-align: center;
}
.c-footer__inner__logo__img {
  display: block;
  width: 100%;
  max-width: 540px;
  margin: 0 auto 80px auto;
}
.c-footer__inner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*     background-color: aqua; */
}
.c-footer__inner__content__item-l {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-footer__inner__content__item-l__menu {
  min-width: 240px;
}
.c-footer__inner__content__item-l__menu__ul li {
  margin-bottom: 25px;
}
.c-footer__inner__content__item-l__menu__ext {
  /*        background-color: aqua; */
  margin-top: 76px;
}
.c-footer__inner__content__item-r {
  width: 50%;
  /*    background-color: aquamarine; */
}
.c-footer__inner__content__item-r__wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /*        background-color: aqua; */
  margin: 0 auto;
}
.c-footer__inner__content__item-r__title {
  margin: 0 0 30px 0;
  font-size: 25px;
}
.c-footer__inner__content__item-r__detail {
  margin: 0 0 20px 0;
  display: inline-block;
}
.c-footer__inner__content__item-r__sns {
  display: block;
  margin-top: 40px;
}
.c-footer__inner__content__item-r__sns__link {
  display: inline-block;
}
.c-footer__inner__copy-txt {
  margin-top: 80px;
  text-align: center;
  font-size: 12px;
}

.foote-post {
  margin-right: 10px;
}

.footer-tel {
  display: block;
}

.footer-hour {
  display: block;
  font-size: 14px;
}

/* ==========================================================================
   スマホ・タブレット向け調整（画面幅767px以下：ランドスケープ含む）
   ========================================================================== */
@media screen and (max-width: 767px) {
  .c-footer__inner__logo__img {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 45px auto;
  }
  .c-footer__inner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer__inner__content__item-l {
    /*    width: 100%; */
    gap: 25px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 280px;
    gap: 25px;
    margin: 0 auto;
  }
  .c-footer__inner__content__item-l__menu {
    min-width: unset;
    width: 50%;
  }
  .c-footer__inner__content__item-l__menu__ul li {
    font-size: 14px;
  }
  .c-footer__inner__content__item-r {
    width: 100%;
  }
  .c-footer__inner__content__item-r__wrapper {
    width: 300px;
  }
  .c-footer__inner__content__item-r__title {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 25px 0;
  }
  .c-footer__inner__content__item-r__detail {
    font-size: 12px;
    margin: 0 0 10px 0;
    display: block;
  }
  .c-footer__inner__content__item-r__sns {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 25px auto 0 auto;
    font-size: 14px;
  }
  .c-footer__inner__content__item-r__ext {
    font-size: 14px;
    width: 280px;
    margin: 0 auto 80px auto;
  }
  .c-footer__inner__copy-txt {
    margin: 30px 0 0 0;
  }
}
.c-btn-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  width: 250px;
  height: 60px;
  border: 1px solid #000000;
  border-radius: 30px;
  background-color: #FFFFFF;
  font-size: 18px;
  color: #000000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.ico-arrow::after {
  content: "";
  /* 必須設定 */
  display: inline-block;
  width: 20px;
  /* アイコンの横幅 */
  height: 14px;
  /* アイコンの縦幅 */
  margin-left: 6px;
  /* 文字「Contact」との間の隙間 */
  /* メールの画像（SVGやPNGなど）を背景として読み込む */
  background-image: url("../img/ico-arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  left: 40px;
}

.c-btn-1:hover {
  background-color: #F0F0F0;
}

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

.c-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

.c-btn-2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  width: 360px;
  height: 60px;
  border-radius: 30px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 32px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-btn-2:hover {
  background-color: #505050;
}

.c-hero {
  display: block;
}

.c-msg {
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  margin: 120px auto 200px auto;
  line-height: 52px;
  letter-spacing: 1px;
}

.service-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 200px;
  gap: 10px;
}

.service-container div {
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
  /*  background-color: #E0E0E0; */
}

.service-container h2 {
  margin: 0;
  padding: 0;
  height: 80px;
  border-bottom: 1px solid #707070;
  display: inline-block;
  width: 100%;
  /* 任意の高さを指定 */
  line-height: normal;
  position: relative;
  font-size: 32px;
}

.service-container h2 span {
  position: absolute;
  bottom: 10px;
  /* 下端に配置 */
}

.service-container .detail {
  margin: 10px 0 0 0;
  padding: 0;
  height: 120px;
  line-height: 28px;
}

.c-service-en-title {
  font-size: 26px;
  font-weight: 200;
  color: #606060;
}

.c-service-en-detail {
  font-size: 20px;
  font-weight: 200;
  color: #606060;
}

.c-how-to-order {
  background: #F8F8F8;
}
.c-how-to-order__inner {
  width: 100%;
  max-width: 1400px;
  margin: 60px auto;
}
.c-how-to-order__inner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-contact-wrapper {
  padding: 0 10px;
}

.c-contact {
  width: 100%;
  max-width: 900px;
  margin: 150px auto;
  border: 2px solid #000000;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}
.c-contact__tel {
  font-size: 38px;
  color: #A7A7A7;
  font-weight: bold;
}
.c-contact__tel a {
  color: #A7A7A7;
}
.c-contact__detail {
  font-size: 18px;
}

.c-news-wrapper {
  padding: 0 10px;
  margin-bottom: 160px;
}

.c-news-wrapper h2 {
  font-weight: unset;
  font-size: 30px;
}

.c-news {
  margin-bottom: 80px;
}
.c-news__itemlink {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-news ul li {
  border-top: 1px solid #B5B5B5;
  padding: 20px 10px;
}

.c-news ul li:last-child {
  border-bottom: 1px solid #B5B5B5;
}

.c-how-to-order__inner {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 80px 0;
}

.order-info {
  padding-right: 100px;
  -ms-flex-negative: 6;
      flex-shrink: 6;
}
.order-info__title {
  padding-bottom: 20px;
  border-bottom: 1px solid #B5B5B5;
  font-weight: unset;
}
.order-info__detail {
  margin-bottom: 35px;
  line-height: 28px;
}

.order-img img {
  display: block;
  width: 100%;
  max-width: 480px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* ==========================================================================
   Google Map 埋め込み設定（PC向け：初期値）
   ========================================================================== */
.map-container {
  position: relative;
  /* ボタンの配置基準にする */
  width: 100%;
  /* 画面幅100% */
  height: 672px;
  /* 高さ672px固定 */
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  cursor: pointer;
  /* クリックできることが伝わるようにポインターにする */
  /* 【修正】親要素の pointer-events: none; は削除します */
}

/* 【修正】初期状態は、中の「iframe（地図本体）」へのマウスイベントをすべて無視する */
.map-container iframe {
  width: 100%;
  height: 972px;
  vertical-align: middle;
  margin-top: -150px;
  /* ここに指定を移動することで、Ctrlの警告を防ぎつつページスクロールを可能にします */
  pointer-events: none;
}

/* 自作ボタンのスタイリング（地図の左上に浮かせる） */
.map-link-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 120;
  /* pointer-events: noneの影響を受けないよう、一番上に配置 */
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.map-link-btn:hover {
  background-color: #eee;
}

/* ----------------------------------------
   開閉・操作動作（.is-active クラス連動）
   ---------------------------------------- */
/* 【修正】クリックされて親に「is-active」がついたら、中の「iframe」を操作可能にする */
.map-container.is-active iframe {
  pointer-events: auto;
}

/* ==========================================================================
   スマホ・タブレット向け調整（画面幅767px以下：ランドスケープ含む）
   ========================================================================== */
@media screen and (max-width: 767px) {
  .c-btn-1 {
    width: 200px;
    height: 40px;
    font-size: 14px;
    padding: unset;
  }
  .c-btn-2 {
    width: 240px;
    height: 46px;
    font-size: 18px;
  }
  * .btn-container {
    text-align: center;
  }
  * .c-hero {
    padding: 30px;
  }
  * .c-msg {
    font-size: 13px;
    line-height: 32px;
    letter-spacing: normal;
    margin: 30px;
  }
  * .service-container {
    display: block;
    margin: 60px 30px;
  }
  * .service-container h2,
  * .c-news-wrapper h2,
  * .order-info__title {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    height: auto;
    position: unset;
    padding-bottom: 15px;
  }
  * .service-container h2 span {
    position: unset;
    height: auto;
  }
  * .service-container .detail {
    height: auto;
    margin: 30px 0;
    font-size: 12px;
    line-height: 24px;
  }
  * .c-service-en-title {
    margin: 30px 0 15px 0;
    font-size: 18px;
  }
  * .c-service-en-detail {
    font-size: 14px;
    margin-bottom: 105px;
  }
  * .c-service-en-detail li {
    margin-bottom: 10px;
  }
  * .c-news-wrapper {
    margin-bottom: 80px;
  }
  * .c-news {
    font-size: 14px;
    margin-bottom: 45px;
  }
  * .c-news ul li {
    padding: 20px;
  }
  * .c-how-to-order__inner {
    margin: 0;
    padding: 40px 40px 60px 40px;
  }
  * .c-how-to-order__inner__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  * .order-info {
    padding-right: unset;
    -ms-flex-negative: unset;
        flex-shrink: unset;
    margin-top: 35px;
  }
  * .order-info__title {
    font-size: 18px;
  }
  * .order-info__detail {
    margin-bottom: 40px;
    font-size: 14px;
  }
  * .c-contact-wrapper {
    padding: 80px 20px;
  }
  * .c-contact {
    padding: 10px;
    margin: 0;
    width: 100%;
  }
  * .c-contact__tel {
    font-size: 20px !important;
  }
  * .c-contact__detail {
    font-size: 14px;
  }
  * .c-contact h2 {
    font-size: 18px;
  }
  * .map-container {
    /* スマホで高さ672pxは縦長すぎるため、450pxなどに自動調整 */
    height: 250px;
  }
  * .map-container iframe {
    margin-top: -340px;
  }
  /* ==========================================================================
  スマホ・縦向き向け調整（画面幅479px以下）
  ========================================================================== */
}
@media screen and (max-width: 767px) and (max-width: 479px) {
  .map-container {
    /* スマホ縦向き画面に合わせて、さらに高さをコンパクトに（縦スクロールの邪魔にならないように） */
    height: 350px;
  }
  .map-container iframe {
    margin-top: -280px;
  }
}
/* ==========================================================================
手書き追加（サーバーバックアップ20260831から取得）
========================================================================== */
.s_and_p .wp-block-column {
  border: 1px solid #000000;
  border-radius: 12px;
  padding: 20px 20px 60px 20px;
  position: relative;
}

.s_and_p .wp-block-column h2 {
  font-weight: bold;
  margin: 0;
  border-bottom: 2px dotted #C0C0C0;
  padding: 0 0 10px 0;
}

.s_and_p .wp-block-column .ico-window {
  margin-top: 20px;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.h_to_o .step_one {
  border-top: 2px dotted #C0C0C0;
}

.h_to_o .wp-block-columns {
  margin: 0;
  border-bottom: 2px dotted #C0C0C0;
  padding: 20px 0 20px 0;
  background-color: #F6F6F6;
  padding: 20px;
}

.h_to_o .wp-block-columns .wp-block-column:nth-child(2) {
  border-left: 1px solid #C0C0C0;
  padding-left: 20px;
}

.h_to_o .wp-block-columns .wp-block-column:nth-child(2) .wp-block-column {
  border: none;
}

.h_to_o .wp-block-columns .wp-block-columns {
  border-bottom: unset;
}

.h_to_o .bank_info {
  border: 1px solid #000000;
  padding: 20px;
}

.qa_top .wp-block-columns {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.qa_top p a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: center;	
  -ms-flex-pack: center;	
  justify-content: center; */
  margin: 0;
  padding: 20px;
  width: 100%;
  min-width: 350px;
  /* height: 60px; */
  min-height: 120px;
  border: 1px solid #A7A7A7;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-size: 18px;
  color: #000000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.a_us .map {
  position: relative;
  width: 100%;
  padding-top: 50%;
  /* 16:9のアスペクト比 */
  height: 0;
}

.a_us .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.a_us .co_table figure {
  width: 65%;
  margin: 0 auto;
}

.c-footer__inner__content__item-l__menu__ext {
  margin-top: 10px !important;
}

.u-fs-8 {
  font-size: 8px;
}

.u-fs-10 {
  font-size: 10px;
}

.u-fs-12 {
  font-size: 12px;
}

.u-fs-14 {
  font-size: 14px;
}

.u-fs-15 {
  font-size: 15px;
}

.u-fs-16 {
  font-size: 16px;
}

.u-fs-18 {
  font-size: 18px;
}

.u-fs-20 {
  font-size: 20px;
}

.u-fs-24 {
  font-size: 24px;
}

.u-fs-25 {
  font-size: 25px;
}

.u-fs-26 {
  font-size: 26px;
}

.u-fs-28 {
  font-size: 28px;
}

.u-fs-30 {
  font-size: 30px;
}

.u-fs-32 {
  font-size: 32px;
}

.u-fw-un {
  font-weight: unset;
}

.u-fw-bo {
  font-weight: bold;
}

.u-m-0 {
  margin: 0;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mr-50 {
  margin-right: 50px;
}

.u-mr-60 {
  margin-right: 60px;
}

.u-mr-80 {
  margin-right: 80px;
}

.u-mr-100 {
  margin-right: 100px;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-5 {
  margin-bottom: 5px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

.u-co-gray1 {
  color: #F0F0F0;
}

.u-co-gray2 {
  color: #707070;
}

.u-ff-serif {
  font-family: "游明朝体", "Yu Mincho", "游明朝", "YuMincho", serif;
}

@media screen and (min-width: 768px) {
  .u-hide-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hide-sp {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .u-hide-sp-port {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */