@charset "UTF-8";

/* -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

リセット追加

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

img {
  vertical-align: bottom;
  border: 0;
  height: auto;
  max-width: 100%;
}

a,
a:focus {
  outline: none;
  color: var(--black_color);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
sup {
  font-size: 10rem;
  vertical-align: super;
}

input,
button {
  outline: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-weight: normal;
  font-style: normal;
}

em,
strong {
  font-weight: bold;
  font-style: normal;
}

/* -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

ベースレイアウト

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*- */

html {
  font-size: 62.5%;
}

body {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  font-size: 1.8rem;
  color: var(--black_color);
  overflow-wrap: break-word;
  /* .footer_fixed */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.modal_open {
  overflow: hidden;
}

#wrap_contents:has(#sidebar) {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

#wrap_contents:has(#sidebar) main {
  flex: 1;
  min-width: 0;
}

main > section + section,
main > article > section + section {
  padding: 110px 0;
}

.contents_inner,
.ua_pc .contents_inner_ua_pc,
.ua_sp_tab .contents_inner_ua_sp_tab {
  max-width: var(--contents_width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--side_padding);
  padding-right: var(--side_padding);
}

.contents_inner.narrow,
.ua_pc .contents_inner.narrow_ua_pc,
.ua_sp_tab .contents_inner.narrow_ua_sp_tab {
  max-width: var(--contents_width_narrow);
}

.contents_inner.wide,
.ua_pc .contents_inner.wide_ua_pc,
.ua_sp_tab .contents_inner.wide_ua_sp_tab {
  max-width: var(--contents_width_wide);
  padding-left: var(--side_padding_wide);
  padding-right: var(--side_padding_wide);
}

#content_wrapper {
  margin-top: 30px;
  flex-grow: 1;
}

@media (max-width: 1000px) {
  main > section + section,
  main > article > section + section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  main > section + section,
  main > article > section + section {
    padding: 50px 0;
  }
}

/* -----------------------------------------------------
ヘッダー
----------------------------------------------------- */

.site_header {
  position: fixed;
  top: var(--header_header_y_offset);
  left: var(--side_padding);
  width: calc(100% - var(--side_padding) * 2);
  z-index: 1500;
}
.site_header .header_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  height: var(--header_height);
  border-radius: 50px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  padding: 0 50px;
}
.site_header .header_left img {
  height: 38px;
  display: block;
}
.site_header .header_right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* グロナビ */
.header_gnavi {
  text-align: center;
}
.header_gnavi ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 30px;
}

.header_gnavi li {
  display: block;
}

.header_gnavi a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
}
.header_gnavi a:hover {
  text-decoration: underline;
}

/* ハンバーガーメニュー */
.hamburger_menu {
  position: relative;
  width: 50px !important;
  height: 50px;
  padding: 6px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 11px;
  margin-left: 10px;
  max-width: none;
  background-color: transparent;
  color: initial;
  border-radius: 0;
  letter-spacing: normal;
  border: none;
  cursor: pointer;
}
.hamburger_menu span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--black_color);
}

.hamburger_menu span:nth-of-type(1) {
  top: 0;
}
.hamburger_menu span:nth-of-type(2) {
  top: 20px;
}
.hamburger_menu span:nth-of-type(3) {
  bottom: 0;
}

#site_header_navigation {
  padding: 0;
  background-color: var(--black_color);
}
#site_header_navigation.modal_common .wrap_modal_contents {
  max-width: var(--contents_width);
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: static;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: var(--side_padding);
  padding-right: var(--side_padding);
}
#site_header_navigation nav.navigation,
#site_header_navigation nav.navigation a,
#site_header_navigation nav.navigation .open_modal_text_link {
  color: #fff;
}
#site_header_navigation .navigation {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 90px;
}
#site_header_navigation .navigation h2 {
  font-size: 2.1rem;
  margin-bottom: 0.7em;
}
.google_font_noto_sans_sans #site_header_navigation .navigation h2,
.google_font_noto_sans_serif #site_header_navigation .navigation h2 {
  font-weight: 600;
}
#site_header_navigation .navigation ul {
  gap: 4px;
}
#site_header_navigation nav.navigation a,
#site_header_navigation nav.navigation .open_modal_text_link {
  font-size: 1.5rem;
}
#site_header_navigation.modal_common .wrap_close_button {
  width: calc(100% - 14px);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
}
#site_header_navigation.modal_common .wrap_close_button .inner {
  width: 100%;
  max-width: var(--contents_width);
  position: relative;
}
#site_header_navigation.modal_common .modal_common_close {
  top: 12px;
  right: var(--side_padding);
}
#site_header_navigation i.close_icon {
  width: 50px;
  height: 50px;
}
#site_header_navigation i.close_icon::before,
#site_header_navigation i.close_icon::after {
  background-color: #fff;
  height: 40px;
}

#site_header_navigation .contact_download {
  display: flex;
  justify-content: center;
  gap: 4%;
  margin-top: 20px;
  width: 100%;
}
#site_header_navigation .contact_download > p {
  width: 47%;
  max-width: 220px;
}
#site_header_navigation .contact_download a {
  padding: 0.7em 0.4em;
  gap: 9px;
  font-size: 1.3rem;
  width: 100%;
  justify-content: center;
}
#site_header_navigation .contact_download .icon svg {
  vertical-align: top;
}
#site_header_navigation .contact_download .contact_bt .icon {
  height: 15px;
}
#site_header_navigation .contact_download .contact_bt .icon,
#site_header_navigation .contact_download .contact_bt .icon svg {
  width: 21px;
}
#site_header_navigation .contact_download .download_bt .icon {
  height: 18px;
}
#site_header_navigation .contact_download .download_bt .icon,
#site_header_navigation .contact_download .download_bt .icon svg {
  width: 23px;
}

.site_header .header_right .tel_open {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.site_header .header_right .header_tel,
.site_header .header_right .header_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.site_header .header_right .header_tel a {
  text-decoration: none;
}
.site_header .header_right .header_tel .icon {
  font-size: 21px;
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.site_header .header_right .header_tel .number {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
.site_header .header_right .header_tel a .number {
  text-decoration: underline;
}
.site_header .header_right .header_open {
  font-size: 1.1rem;
  margin-top: 2px;
  margin-left: 26px;
}
.site_header .header_right .header_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 9px;
  width: 140px;
  height: calc(var(--header_height) + 20px);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.site_header .header_right .header_contact a {
  background-color: #fff;
}
.site_header .header_right .header_download a {
  background-color: var(--main_color);
  color: #fff;
}
.site_header .header_right .header_button.header_contact a .icon,
.site_header .header_right .header_button.header_contact a .icon svg {
  width: 31px;
}
.site_header .header_right .header_button.header_contact a .icon {
  transform: translateY(2px);
}

.site_header .header_right .header_button a .icon {
  height: 26px;
}
.site_header .header_right .header_button.header_contact a .icon,
.site_header .header_right .header_button.header_contact a .icon svg {
  width: 31px;
}
.site_header .header_right .header_button.header_download a .icon,
.site_header .header_right .header_button.header_download a .icon svg {
  width: 33px;
}
.site_header .header_right .header_button a .icon svg {
  height: auto;
  display: block;
}
.site_header .header_right .header_button.header_contact a .icon svg {
  fill: var(--black_color);
}
.site_header .header_right .header_button.header_download a .icon svg {
  fill: #fff;
}
.site_header .header_right .header_button a .text.seikyu,
.site_header .header_right .header_button a .text.short {
  display: none;
}
.site_header .header_right .header_button a .text {
  font-size: 1.3rem;
  line-height: 1;
}
@media (min-width: 901px) {
  #site_header_navigation .contact_download {
    margin-top: 36px;
    max-width: 620px;
    border-top: 1px solid var(--gray_color);
    padding-top: 36px;
  }
  #site_header_navigation .contact_download a {
    padding: 0.8em 0.4em;
    font-size: 1.4rem;
  }
}

@media (max-width: 1370px) {
  .site_header .header_right .tel_open {
    display: none;
  }
  .site_header .header_right .header_button a {
    width: 130px;
  }
  .header_gnavi {
    padding-right: 10px;
  }
}
@media (max-width: 1180px) {
  .site_header .header_contents {
    padding: 0 34px;
  }
  .site_header .header_left img {
    height: 34px;
  }

  .site_header .header_right .header_button a {
    width: 116px;
    height: calc(var(--header_height) + 14px);
  }
  .site_header .header_right .header_button a .text.dl {
    display: none;
  }
  .site_header .header_right .header_button a .text.seikyu {
    display: inline;
  }
  .header_gnavi {
    padding-right: 6px;
  }
  .header_gnavi ul {
    gap: 8px 26px;
  }
}
@media (max-width: 1060px) {
  .site_header .header_right .header_button a {
    width: 110px;
  }
  .header_gnavi {
    padding-right: 2px;
  }
  .header_gnavi ul {
    gap: 8px 20px;
  }
  .header_gnavi a {
    font-size: 1.4rem;
  }
}
@media (max-width: 990px) {
  .site_header .header_contents {
    padding: 0 30px;
  }
  .site_header .header_left img {
    height: 30px;
  }

  .site_header .header_right .header_button a {
    width: 80px;
    height: calc(var(--header_height) + 10px);
    gap: 8px;
  }
  .site_header .header_right .header_button a .icon {
    height: 24px;
  }
  .site_header .header_right .header_button.header_contact a .icon,
  .site_header .header_right .header_button.header_contact a .icon svg {
    width: 28px;
  }
  .site_header .header_right .header_button.header_download a .icon,
  .site_header .header_right .header_button.header_download a .icon svg {
    width: 30px;
  }
  .site_header .header_right .header_button a .text {
    font-size: 1.1rem;
  }
  .site_header .header_right .header_button a .text.long {
    display: none;
  }
  .site_header .header_right .header_button a .text.short {
    display: inline;
  }
}
@media (max-width: 900px) {
  .site_header {
    left: 10px;
    width: calc(100% - 10px * 2);
  }

  .site_header .header_left img {
    height: 26px;
  }
  .site_header .header_right .header_button a {
    width: 50px;
    background-color: transparent;
    color: var(--black_color);
    height: var(--header_height);
    box-shadow: none;
    border-radius: 0;
    gap: 5px;
  }
  .site_header .header_right .header_button.header_contact a .text {
    color: var(--black_color);
  }
  .site_header .header_right .header_button a .text.seikyu {
    color: var(--main_color);
  }
  .site_header .header_right .header_button.header_contact a:hover .icon svg {
    fill: var(--black_color);
  }
  .site_header .header_right .header_button.header_download a .icon svg {
    fill: var(--main_color);
  }
  .site_header .header_right .header_button a .icon {
    height: 21px;
  }
  .site_header .header_right .header_button.header_contact a .icon,
  .site_header .header_right .header_button.header_contact a .icon svg {
    width: 24px;
  }
  .site_header .header_right .header_button.header_download a .icon,
  .site_header .header_right .header_button.header_download a .icon svg {
    width: 26px;
  }

  .header_gnavi {
    display: none;
  }

  .hamburger_menu {
    width: 50px !important;
    padding: 10px 12px !important;
    gap: 6px;
    margin-left: 0;
  }

  #site_header_navigation.modal_common {
    display: block;
    align-items: normal;
  }
  #site_header_navigation.modal_common .wrap_modal_contents {
    display: block;
    padding-top: 56px;
    padding-bottom: 30px;
  }
  #site_header_navigation.modal_common .wrap_close_button {
    width: 100%;
    height: 50px;
    background-color: var(--black_color);
  }
  #site_header_navigation.modal_common .modal_common_close {
    top: 0;
    right: 0;
  }
  #site_header_navigation i.close_icon::before,
  #site_header_navigation i.close_icon::after {
    height: 30px;
  }
  #site_header_navigation nav.navigation {
    gap: normal;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%;
  }
  #site_header_navigation .navigation ul {
    gap: normal;
  }
  #site_header_navigation .navigation > div:last-child {
    border-bottom: var(--gray_color) 1px solid;
  }
  #site_header_navigation .navigation a {
    font-size: 1.3rem !important;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 0.8em;
    display: block;
    position: relative;
    padding-right: 0.8em;
    border-top: var(--gray_color) 1px solid;
  }
  #site_header_navigation .navigation ul ul a {
    display: flex;
  }
  #site_header_navigation .navigation ul {
    display: flex;
  }
  #site_header_navigation .navigation .sp_accordion ul {
    padding-left: 2em;
    margin-bottom: 1em;
  }
  #site_header_navigation .navigation li ul {
    margin-bottom: 12px;
  }
  #site_header_navigation .navigation li li a {
    border-top: none;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
  }

  /* ヘッダー要素より下にスクロールしたら常にFixedにする（Fixed用のヘッダーを表示） */
  /* ヘッダー要素より下にスクロールした状態で、上にスクロールした場合のみFixedにする（Fixed用のヘッダーを表示） */
  .site_header.scroll_fixed_sp:has(+ .site_header_fixed.is-show),
  .site_header.up_scroll_fixed_sp:has(+ .site_header_fixed.is-show) {
    visibility: hidden;
  }
  .site_.site_header_fixed.scroll_fixed_sp,
  .site_.site_header_fixed.up_scroll_fixed_sp {
    visibility: hidden;
    transition: top 0.4s ease-in-out;
    /* アニメーションがカクつく場合のみ下記を記述 */
    /* will-change: top; */
  }
  .site_.site_header_fixed.scroll_fixed_sp.is-show,
  .site_.site_header_fixed.up_scroll_fixed_sp.is-show {
    top: 0;
  }
  .site_.site_header_fixed.scroll_fixed_sp.is-initialized,
  .site_.site_header_fixed.up_scroll_fixed_sp.is-initialized {
    visibility: visible;
  }
  .site_.site_header_fixed.scroll_fixed_sp .header_member,
  .site_.site_header_fixed.up_scroll_fixed_sp .header_member {
    display: none;
  }
  .site_.site_header_fixed.scroll_fixed_sp .header_gnavi,
  .site_.site_header_fixed.up_scroll_fixed_sp .header_gnavi {
    display: none;
  }

  .site_.site_header_fixed.always_fixed_sp {
    display: none;
  }

  /* Fixedにしない */
  .site_.site_header_fixed.no_fixed_sp {
    display: none;
  }
}

@media (max-width: 640px) {
  .site_header .header_site_name {
    flex-shrink: 0;
  }
  .site_header .header_right {
    gap: 0;
  }
  .site_header .header_contents {
    padding-left: 12px;
    padding-right: 2px;
    border-radius: 4px;
  }
  .site_header .header_right .header_button a .icon {
    height: 19px;
  }
  .site_header .header_right .header_button.header_contact a .icon,
  .site_header .header_right .header_button.header_contact a .icon svg {
    width: 22px;
  }
  .site_header .header_right .header_button.header_download a .icon,
  .site_header .header_right .header_button.header_download a .icon svg {
    width: 24px;
  }
  .site_header .header_right .header_button a .text {
    font-size: 1rem;
  }
}

/* -----------------------------------------------------
サイドバー
----------------------------------------------------- */
aside#sidebar {
  width: 270px;
}
aside#sidebar nav.side_menu {
  border: 1px solid var(--black_color);
  padding: 16px;
  margin-bottom: 20px;
}
aside#sidebar nav.side_menu ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
aside#sidebar nav.side_menu a {
  display: block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gray_color_light);
}

@media (max-width: 1000px) {
  aside#sidebar {
    width: 100%;
  }
}

/* -----------------------------------------------------
ページナビゲーション
----------------------------------------------------- */
nav.navigation {
  display: flex;
  gap: 50px;
}
nav.navigation h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
nav.navigation ul {
  display: flex;
  flex-flow: column;
  gap: 2px;
}
nav.navigation li {
  display: block;
}
nav.navigation a,
nav.navigation .open_modal_text_link {
  font-size: 1.3rem;
}
nav.navigation a {
  text-decoration: none;
}
nav.navigation a:hover {
  text-decoration: underline;
}
nav.navigation ul ul {
  margin-left: 6px;
}
nav.navigation ul ul a {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav.navigation ul ul a::before {
  content: '';
  height: 1px;
  width: 7px;
  background-color: var(--gray_color_light);
  display: inline-block;
}

/* -----------------------------------------------------
ページタイトル
----------------------------------------------------- */
#page_title {
  padding-bottom: 100px;
  padding-top: calc(100px + 100px);
  background: linear-gradient(135deg, var(--black_color) 0%, var(--black_color) 75%, var(--gray_color_dark) 75%, var(--gray_color_dark) 100%);
}
#page_title h1,
#page_title .title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  color: #fff;
}

@media (max-width: 1200px) {
  #page_title {
    padding-bottom: 85px;
    padding-top: calc(98px + 85px);
  }
}
@media (max-width: 1180px) {
  #page_title {
    padding-bottom: 80px;
    padding-top: calc(92px + 80px);
  }
}
@media (max-width: 990px) {
  #page_title {
    padding-bottom: 70px;
    padding-top: calc(88px + 70px);
  }
  #page_title h1,
  #page_title .title {
    font-size: 2.8rem;
  }
}
@media (max-width: 900px) {
  #page_title {
    padding-bottom: 60px;
    padding-top: calc(56px + 60px);
  }
}
@media (max-width: 767px) {
  #page_title h1,
  #page_title .title {
    font-size: 2.5rem;
  }
}

/* -----------------------------------------------------
パンくず
----------------------------------------------------- */
#bread_crumb .wrap_bread_crumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
}

#bread_crumb .wrap_bread_crumb div {
  position: relative;
  margin: 5px 22px 0 0;
  font-size: 1.3rem;
  text-align: left;
  line-height: 1;
}

#bread_crumb .wrap_bread_crumb div span {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

#bread_crumb .wrap_bread_crumb div a span:hover {
  border-bottom: 1px solid var(--black_color);
}

#bread_crumb .wrap_bread_crumb div::after {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black_color);
  border-right: 1px solid var(--black_color);
  transform: rotate(45deg);
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  margin-top: -5px;
}

#bread_crumb .wrap_bread_crumb div:last-child {
  margin-right: 0;
}

#bread_crumb .wrap_bread_crumb div:last-child::after {
  content: none;
}

@media (max-width: 767px) {
  #bread_crumb .wrap_bread_crumb {
    margin-top: 8px;
  }
}

/* -----------------------------------------------------
フッター
----------------------------------------------------- */
.site_footer {
  margin-top: 70px;
  padding-bottom: 30px;
  background-color: var(--gray_color_dark);
  color: #fff;
}
.site_footer ul a,
.site_footer .fotter_bottom_left a {
  color: #fff;
}
.site_footer .fotter__contents {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.site_footer .fotter_site_name img {
  height: 44px;
}
.site_footer .tel_open {
  margin-bottom: 20px;
}
.site_footer .tel_open .download_tel,
.site_footer .tel_open .download_tel a {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #fff;
}
.site_footer .tel_open .download_tel a {
  text-decoration: none;
}
.site_footer .tel_open .download_tel a .number {
  text-decoration: underline;
}
.site_footer .tel_open .download_tel {
  margin-bottom: 12px;
}
.site_footer .tel_open .icon {
  font-size: 21px;
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}
.site_footer .tel_open .number {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
.site_footer .fotter_info .business_hours,
.site_footer .fotter_info .text {
  font-size: 1.3rem;
}
.site_footer .fotter_info .business_hours {
  margin-bottom: 0.8em;
}
.site_footer .fotter_info .more_bt {
  margin: 0;
}
.site_footer .fotter_info .more_bt a {
  border: 1px solid var(--gray_color_light);
  background-color: var(--black_color);
  width: fit-content;
  padding: 1.1em 2.5em 1.1em 1.2em;
  font-size: 1.4rem;
}
.site_footer .fotter_info .more_bt a::before {
  width: 16px;
  right: 12px;
}
.site_footer .fotter_info .more_bt a::after {
  width: 8px;
  right: 12px;
}
.site_footer .fotter__contents_right,
.site_footer nav.navigation {
  gap: 44px;
}
.site_footer .fotter__contents_right {
  flex-shrink: 0;
  display: flex;
}
.site_footer .fotter_info {
  margin-top: 24px;
}
.site_footer .fotter_info ul {
  display: flex;
  gap: 16px;
}
.site_footer .fotter_info li,
.site_footer .fotter_info li a {
  display: flex;
  align-items: center;
}
.site_footer .fotter_info img {
  width: 24px;
  max-height: 24px;
  filter: invert(67%) sepia(18%) saturate(10%) hue-rotate(329deg) brightness(87%) contrast(91%);
}
.site_footer .fotter_info a:hover img {
  filter: invert(38%) sepia(7%) saturate(20%) hue-rotate(337deg) brightness(100%) contrast(90%);
}
.site_footer .contact_download {
  display: flex;
  gap: 18px;
  flex-flow: column;
}
.site_footer .contact_download a {
  width: 100%;
  font-size: 1.3rem;
}
.site_footer .contact_download a:hover {
  text-decoration: none;
}
.site_footer .contact_download .contact_bt .icon,
.site_footer .contact_download .contact_bt .icon svg {
  width: 26px;
}
.site_footer .contact_download .download_bt .icon,
.site_footer .contact_download .download_bt .icon svg {
  width: 26px;
}
.site_footer .contact_download .contact_bt .icon {
  height: 19px;
}
.site_footer .contact_download .download_bt .icon {
  height: 21px;
}
.site_footer .fotter_bottom {
  border-top: 1px solid var(--gray_color_light);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
}
.site_footer .fotter_bottom .fotter_bottom_left {
  display: flex;
  gap: 40px;
}
.site_footer .fotter_bottom .fotter_bottom_left a {
  text-decoration: none;
}
.site_footer .fotter_bottom .fotter_bottom_left a:hover {
  text-decoration: underline;
}

.site_footer .fudousan_hanjo_site_link {
  border-top: 1px solid var(--gray_color_light);
  margin-top: 30px;
  padding-top: 14px;
  text-align: right;
}
.site_footer .fotter_bottom .fotter_wns a {
  position: relative;
  padding-right: 20px;
}
.site_footer .fotter_bottom .fotter_wns a::before,
.site_footer .fotter_bottom .fotter_wns a::after {
  position: absolute;
  top: 50%;
  content: '';
}
.site_footer .fotter_bottom .fotter_wns a::before {
  width: 11px;
  height: 9px;
  border: 1px solid var(--gray_color_light);
  right: 3px;
  transform: translateY(-5px);
}
.site_footer .fotter_bottom .fotter_wns a::after {
  width: 10px;
  height: 9px;
  border-right: 1px solid var(--gray_color_light);
  border-bottom: 1px solid var(--gray_color_light);
  right: 0;
  transform: translateY(-2px);
}
.site_footer .fudousan_hanjo_site_link a {
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--gray_color);
}
@media (max-width: 1200px) {
  .site_footer .fotter__contents_right,
  .site_footer nav.navigation {
    gap: 38px;
  }
}
@media (max-width: 1000px) {
  .site_footer .fotter__contents {
    justify-content: flex-start;
    align-items: center;
    flex-flow: column;
    gap: 36px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .site_footer .fotter__contents_right,
  .site_footer nav.navigation {
    gap: 30px;
  }

  .site_footer .fotter__contents_left,
  .site_footer .fotter__contents_right {
    max-width: 700px;
    width: 90%;
  }
  .site_footer .fotter__contents_left {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 30px;
  }
  .site_footer .fotter_info {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .site_footer .tel_open .download_tel {
    margin-bottom: 4px;
  }
  .site_footer .fotter_info .business_hours {
    margin-bottom: 0.1em;
  }
  .site_footer .tel_open {
    margin-bottom: 0;
  }
  .site_footer .fotter__contents_right {
    flex-shrink: 1;
    justify-content: space-between;
  }
  .site_footer nav.navigation {
    justify-content: center;
  }
  .site_footer .fotter_info .more_bt a,
  .site_footer .contact_download a {
    width: 226px;
  }
  .site_footer .contact_download a {
    padding-left: 3.2em;
  }
}
@media (max-width: 767px) {
  .site_footer {
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .site_footer .fotter__contents_left,
  .site_footer .fotter__contents_right {
    width: 100%;
  }
  .site_footer .fotter_info {
    flex-flow: column;
    gap: 20px;
  }
  .site_footer .tel_open {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .site_footer .fotter__contents_right {
    display: none;
  }
  .site_footer .fotter_bottom {
    padding-top: 24px;
    flex-flow: column;
    align-items: center;
    gap: 12px;
  }
  .site_footer .fotter_bottom .fotter_bottom_left {
    gap: 20px;
  }
  .site_footer .fudousan_hanjo_site_link {
    display: none;
  }
}

/* -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

共通

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*- */

@media (min-width: 901px) {
  .sp {
    display: none;
  }
}

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

h1,
.h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1em;
}
h2,
.h2,
legend {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.1em;
}
h2.h2_normal,
.h2.h2_normal,
legend.h2_normal {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2.4em;
  line-height: 1;
}
h2.h2_normal::before,
.h2.h2_normal::before,
legend.h2_normal::before {
  font-size: 9.5rem;
  font-weight: 600;
  margin-right: 0.2em;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
h2.h2_normal.case::before {
  content: 'CASE';
}
h2.h2_normal.reason::before {
  content: 'REASON';
}
h2.h2_normal.works::before {
  content: 'WORKS';
}
h2.h2_normal.price::before {
  content: 'PRICE';
}
h2.h2_normal.column::before {
  content: 'COLUMN';
}
h2.h2_normal.faq::before {
  content: 'Q&A';
}
h2.h2_normal.download_form::before {
  content: 'DOWNLOAD';
}

legend {
  width: 100%;
}
h3,
.h3 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1em;
}
h1.unstyled,
h2.unstyled,
legend.unstyled,
h3.unstyled {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
  border: none;
  padding: 0;
}

@media (max-width: 1200px) {
  h2.h2_normal,
  .h2.h2_normal,
  legend.h2_normal {
    font-size: 2.2rem;
    margin-bottom: 2.4em;
  }
  h2.h2_normal::before,
  .h2.h2_normal::before,
  legend.h2_normal::before {
    font-size: 8.5rem;
    margin-right: 0.2em;
  }
}
@media (max-width: 900px) {
  h2.h2_normal,
  .h2.h2_normal,
  legend.h2_normal {
    font-size: 1.9rem;
    margin-bottom: 2.4em;
  }
  h2.h2_normal::before,
  .h2.h2_normal::before,
  legend.h2_normal::before {
    font-size: 7.2rem;
    margin-right: 0.2em;
  }
}
@media (max-width: 640px) {
  h2.h2_normal,
  .h2.h2_normal,
  legend.h2_normal {
    font-size: 1.9rem;
    margin-bottom: 2em;
    text-align: center;
  }
  h2.h2_normal::before,
  .h2.h2_normal::before,
  legend.h2_normal::before {
    font-size: 5.8rem;
    margin-bottom: 0.06em;
    margin-right: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 3.8rem;
  }
  h2,
  .h2,
  legend {
    font-size: 2.1rem;
    margin-bottom: 0.8em;
  }
  h3,
  .h3 {
    font-size: 1.8rem;
  }
}

.transition {
  transition: all 0.3s;
}

.no_image.svg {
  background-color: var(--gray_color_super_light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.no_image.svg svg.no_image_icon {
  width: 40%;
  height: auto;
}

svg.no_image_icon path,
svg.no_image_icon polygon,
svg.no_image_icon rect {
  fill: #c2c2c2;
}

/* -----------------------------------------------------
アイコン
----------------------------------------------------- */
button.icon_only .text {
  display: none;
}
i.close_icon {
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
}
i.close_icon::before,
i.close_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 27px;
  background-color: var(--black_color);
}
i.close_icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
i.close_icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 767px) {
  i.close_icon {
    width: 32px;
    height: 32px;
  }
  i.close_icon::before,
  i.close_icon::after {
    height: 23px;
  }
}

/* -----------------------------------------------------
アイコンフォント
----------------------------------------------------- */
.google_icon::before,
.google_icon::after {
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  line-height: 1;
}

/* -----------------------------------------------------
汎用モーダル
----------------------------------------------------- */
.modal_common {
  display: flex;
  opacity: 0;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  transition: opacity 0.3s;
  z-index: 99999;
  overflow: auto;
  padding: 40px;
}
.modal_common.show {
  opacity: 1;
  visibility: visible;
}
.modal_common .wrap_modal_contents {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 800px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  border-radius: 6px;
}
.modal_common .modal_common_close {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: transparent;
  max-width: none;
  background-color: transparent;
  color: initial;
  border-radius: 0;
  letter-spacing: normal;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .modal_common {
    padding: 2%;
  }
  .modal_common .wrap_modal_contents {
    padding: 32px 2% 2% 2%;
    border-radius: 4px;
  }
  .modal_common .modal_common_close {
    top: 0;
    right: calc(2% - 6px);
  }
}

/* -----------------------------------------------------
横スクロール
----------------------------------------------------- */
.ua_sp_tab .horizontal_scroll {
  overflow-x: auto;
  overflow-y: hidden;
}

/* -----------------------------------------------------
お問い合わせ
----------------------------------------------------- */
.contact_bt a {
  background-color: #fff;
  text-decoration: none;
  padding: 0.9em 1.5em;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 3px;
}
.contact_bt .icon,
.contact_bt .icon svg {
  width: 35px;
}
.contact_bt .icon {
  height: 25px;
}
.contact_bt .icon svg {
  height: auto;
  fill: var(--black_color);
}

/* -----------------------------------------------------
ダウンロード
----------------------------------------------------- */
.download_bt a {
  background-color: var(--main_color);
  color: #fff;
  text-decoration: none;
  padding: 0.9em 1.5em;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 3px;
}

.download_bt .icon,
.download_bt .icon svg {
  width: 33px;
}
.download_bt .icon {
  height: 26px;
}

.download_bt .icon svg {
  height: auto;
  fill: #fff;
}

a.button {
  position: relative;
  padding: 0.9em 34px;
  display: inline-block;
  border: 1px solid var(--gray_color_light);
  text-align: center;
  text-decoration: none;
  background-color: #fff;
}

.more {
  margin-top: 2em;
  text-align: center;
}
.more > a.button {
  padding: 0.7em 34px 0.7em 34px;
  border: none;
  background-color: var(--main_color);
  color: #fff;
  width: 13em;
  font-size: 1.5rem;
}

a.button:hover {
  border-color: var(--gray_color);
}
.more > a.button:hover {
  background-color: var(--main_color_dark);
}
a.button::after {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--black_color);
  border-right: 1px solid var(--black_color);
  transform: rotate(45deg);
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -3px;
}
.more > a.button::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.more_bt {
  margin: 0 auto;
  width: fit-content;
}
.more_bt a {
  display: block;
  text-decoration: none;
  background-color: var(--gray_color_dark);
  padding: 1.4em 1em;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 20em;
  position: relative;
  text-align: center;
  border-radius: 3px;
}
.more_bt a::before,
.more_bt a::after {
  content: '';
  height: 1px;
  background-color: #fff;
  top: 50%;
  display: block;
  position: absolute;
}
.more_bt a::before {
  width: 22px;
  right: 30px;
}
.more_bt a::after {
  width: 10px;
  right: 30px;
  transform: translateY(-3px) rotate(36deg);
}
.more_bt_arrow a {
  position: relative;
}
.more_bt_arrow a::before,
.more_bt_arrow a::after {
  content: '';
  display: block;
}
.more_bt_arrow a::before {
  border: 2px solid var(--black_color);
  border-radius: 50%;
  width: 78px;
  height: 78px;
}
.more_bt_arrow a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -11px;
  border-top: 2px solid var(--black_color);
  border-right: 2px solid var(--black_color);
  transform: rotate(45deg);
}

@media (max-width: 1200px) {
  .more_bt_arrow a::before {
    width: 72px;
    height: 72px;
  }
  .more_bt_arrow a::after {
    width: 14px;
    height: 14px;
    margin-top: -7px;
    margin-left: -10px;
  }
}
@media (max-width: 900px) {
  .more_bt_arrow a::before,
  .more_bt_arrow a::before {
    border-width: 2px;
  }
  .more_bt_arrow a::before {
    width: 66px;
    height: 66px;
  }
  .more_bt_arrow a::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -9px;
  }
}
@media (max-width: 767px) {
  .more_bt a {
    padding: 1.4em 1em;
    font-size: 1.5rem;
    width: 18em;
  }
  .more_bt_arrow a::before,
  .more_bt_arrow a::before {
    border-width: 2px;
  }
}
@media (max-width: 640px) {
  .more_bt_arrow a::before {
    width: 46px;
    height: 46px;
  }
  .more_bt_arrow a::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -5px;
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide_gyaku {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
