@charset "UTF-8";
/*
Theme Name: EDEN
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html, html *, body, header, footer {
  margin: 0;
  padding: 0;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  position: relative;
  color: var(--base_text_color_setting);
  font-size: 14px;
  line-height: 2;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--base_bg_color_setting);
  font-family: var(--base_font_family_setting);
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 16px;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  color: #2D2E2D;
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
}

.anchor {
  display: block;
  padding-top: 56px;
  margin-top: -56px;
}
@media print, screen and (min-width: 960px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

input[type=text].regular-text {
  width: 80% !important;
  padding: 0;
}

/* ************************************************
 *	content-wrap ヘッダー下のメインコンテンツ枠
 * *************************************************/
#content-wrap {
  padding-top: 56px;
  overflow: hidden;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    padding-top: 100px;
  }
}
#content-wrap.front {
  padding-top: 0;
}

#content {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media print, screen and (min-width: 768px) {
  #content {
    gap: 80px 0;
  }
}
@media print, screen and (min-width: 960px) {
  #content {
    gap: 120px 0;
  }
}

.content_block.bg_beige {
  background-color: #F1F0EB;
  padding: 50px 0;
}
@media print, screen and (min-width: 960px) {
  .content_block.bg_beige {
    padding: 100px 0;
  }
}
.content_block.bg_black {
  background-color: #2D2E2D;
  padding: 50px 0;
}
@media print, screen and (min-width: 960px) {
  .content_block.bg_black {
    padding: 100px 0;
  }
}

.inner {
  max-width: 1160px;
  padding: 0 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .inner {
    padding: 0 30px;
  }
}
.inner.short {
  max-width: 1060px;
}
.inner.large {
  max-width: 1460px;
}

/*********************************************************************
* フェードインアニメーション
**********************************************************************/
.slidein_y {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}
@media print, screen and (min-width: 960px) {
  .slidein_y {
    transform: translateY(40px);
  }
}
.slidein_y.is_animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.slidein_y.sp_first {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media print, screen and (min-width: 960px) {
  .slidein_y.sp_first {
    opacity: 0;
    transform: translateY(40px);
  }
  .slidein_y.sp_first.is_animated {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/*********************************************************************
* ページトップ
**********************************************************************/
.pagetop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}
@media print, screen and (min-width: 768px) {
  .pagetop {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--base_pagetop_bg_color_setting);
  opacity: 1;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .pagetop a {
    width: 50px;
    height: 50px;
  }
}
.pagetop a .arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.pagetop a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -8px;
  left: 11px;
  border: 0px;
  border-top: 3px solid var(--base_pagetop_border_color_setting);
  border-right: 3px solid var(--base_pagetop_border_color_setting);
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 960px) {
  .pagetop a .arrow::before {
    width: 15px;
    height: 15px;
    top: -3px;
    left: 13px;
  }
}
.pagetop a .img_pagetop {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--base_pagetop_img_setting) top left/cover no-repeat;
}
.pagetop a.no_img {
  border-radius: 25px;
  border: 3px solid var(--base_pagetop_border_color_setting);
}
.pagetop .pagetop_text {
  text-align: center;
  font-size: 0.75em;
  font-weight: bold;
}

/*********************************************************************
* googlemap
**********************************************************************/
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 52%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*********************************************************************
* flexbox外枠
**********************************************************************/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/* ************************************************
 *	PC／SP切り替え
 * ************************************************ */
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.tab_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only_ib {
    display: inline-block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only_ib {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* ************************************************
 *	ヘッダー
 * ************************************************ */
header {
  position: fixed;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 56px;
  z-index: 100;
  transition: background-color 0.6s;
}
@media print, screen and (min-width: 960px) {
  header {
    height: 100px;
  }
}
header.open {
  background-color: #F1F0EB;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media print, screen and (min-width: 960px) {
  header .header_inner {
    width: 100%;
    padding: 0 calc(19vw + 30px) 0 30px;
  }
}
@media print, screen and (min-width: 1500px) {
  header .header_inner {
    padding: 0 300px 0 30px;
  }
}
header.front {
  background-color: transparent;
}
header.front.is-show {
  background-color: rgba(255, 255, 255, 0.3);
}
header.front.open {
  background-color: #F1F0EB;
}

body.fixed header, body.fixed header.is-show {
  background-color: #fff;
  transition: all 0.6s;
}

/* ロゴ
----------------------------------------------*/
.logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 70px;
  line-height: 1;
  z-index: 11;
}
@media print, screen and (min-width: 960px) {
  .logo {
    top: 5px;
    left: 15px;
    width: 11vw;
    max-width: 162px;
  }
}
@media print, screen and (min-width: 1500px) {
  .logo {
    left: 30px;
  }
}
.logo.front {
  opacity: 0;
  transition: opacity 0.3s;
}
.logo.front a {
  pointer-events: none;
}
@media print, screen and (min-width: 960px) {
  .logo a {
    transition: opacity 0.3s;
  }
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo img {
  width: 100%;
}

header.is-show .logo.front,
header.open .logo.front {
  opacity: 1;
}
header.is-show .logo.front a,
header.open .logo.front a {
  pointer-events: auto;
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    width: 100%;
    transition: 0.5s;
  }
}

.header_nav ul.content_nav {
  padding: 0 5%;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav {
    order: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5em;
    padding: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .header_nav ul.content_nav {
    gap: 3.5vw;
  }
}
@media print, screen and (min-width: 1500px) {
  .header_nav ul.content_nav {
    gap: 3.5em;
  }
}
.header_nav ul.content_nav li {
  border-bottom: 1px solid rgba(50, 50, 50, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li {
    border-bottom: none;
  }
}
.header_nav ul.content_nav a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 15px 0;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav a {
    letter-spacing: 0;
    text-indent: 0;
    text-align: left;
    padding: 0;
    transition: opacity 0.3s;
  }
  .header_nav ul.content_nav a:hover {
    opacity: 0.6;
  }
}
@media print, screen and (min-width: 1200px) {
  .header_nav ul.content_nav a {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav.front ul.content_nav a {
    transition: color 0.3s;
    color: #fff;
  }
}

@media print, screen and (min-width: 960px) {
  header.is-show .header_nav.front ul.content_nav a {
    color: #2D2E2D;
  }
}

a.header_contact_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2D2E2D;
  font-size: 16px;
  color: #F1F0EB;
  text-align: center;
  padding: 10px 0;
  margin: 25px 5%;
}
@media print, screen and (min-width: 960px) {
  a.header_contact_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 19vw;
    max-width: 250px;
    height: 100%;
    padding: 0;
    margin: 0;
    transition: 0.3s;
  }
}
a.header_contact_btn span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0 5px 50px;
}
a.header_contact_btn span::before {
  position: absolute;
  left: 0;
  content: "";
  width: 34px;
  height: 32px;
  background: url(images/icon-contact-beige.svg) no-repeat;
  background-position: center;
  background-size: contain;
}
a.header_contact_btn span::after {
  position: absolute;
  left: 0;
  content: "";
  width: 34px;
  height: 32px;
  background: url(images/icon-contact-black.svg) no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
@media print, screen and (min-width: 960px) {
  a.header_contact_btn:hover {
    background-color: #F1F0EB;
    color: #2D2E2D;
  }
  a.header_contact_btn:hover span::after {
    opacity: 1;
  }
}

/* ************************************************
 *	SP　ハンバーガーメニュー
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 45px;
  height: 56px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  transform: translateX(0);
}
@media print, screen and (min-width: 960px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 10px;
  width: 25px;
  height: 1px;
  background-color: #2D2E2D;
  border-radius: 1px;
  transition: all 0.5s;
}

.menu-trigger span:nth-of-type(1) {
  top: 18px;
}

.menu-trigger span:nth-of-type(2) {
  top: 27px;
}

.menu-trigger span:nth-of-type(3) {
  top: 36px;
}

.menu-trigger.active {
  transform: translateX(0);
  position: fixed;
  width: 45px;
  height: 59px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/* メニュー枠
----------------------------------------*/
.header_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: #F1F0EB;
  transition: all 0.6s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  z-index: 10;
}
@media print, screen and (min-width: 960px) {
  .header_nav {
    position: unset;
    display: flex;
    justify-content: flex-end;
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}

.header_nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ************************************************
 *	見出し
 * ************************************************ */
.top_section_ttl,
.footer_section_ttl {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  z-index: 0;
}
@media print, screen and (min-width: 960px) {
  .top_section_ttl,
  .footer_section_ttl {
    font-size: 40px;
  }
}
.top_section_ttl .main,
.footer_section_ttl .main {
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.top_section_ttl .main.white,
.footer_section_ttl .main.white {
  color: #fff;
}
.top_section_ttl .sub,
.footer_section_ttl .sub {
  position: absolute;
  z-index: -1;
}

.page_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  background-color: #F1F0EB;
  font-weight: 500;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .page_ttl {
    height: 180px;
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_ttl {
    height: 270px;
    margin-bottom: 70px;
  }
}
.page_ttl h1 {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.page_ttl .main {
  display: block;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media print, screen and (min-width: 768px) {
  .page_ttl .main {
    font-size: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_ttl .main {
    font-size: 40px;
  }
}
.page_ttl .sub {
  display: block;
  color: #B5B09D;
  font-size: 12px;
}
@media print, screen and (min-width: 960px) {
  .page_ttl .sub {
    font-size: 14px;
  }
}

.page_section_ttl {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .page_section_ttl {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_section_ttl {
    margin-bottom: 40px;
  }
}
.page_section_ttl .main {
  display: block;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media print, screen and (min-width: 768px) {
  .page_section_ttl .main {
    font-size: 28px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_section_ttl .main {
    font-size: 40px;
  }
}
.page_section_ttl .sub {
  display: block;
  color: #DDD8BF;
  font-size: 12px;
}
@media print, screen and (min-width: 960px) {
  .page_section_ttl .sub {
    font-size: 14px;
  }
}

/* ************************************************
*	リンクボタン
* ************************************************ */
.link_btn {
  display: inline-block;
  background-color: #DDD8BF;
  line-height: 1;
  text-align: center;
  border-radius: 9999px;
  padding: 16px 25px;
  transition: background-color 0.3s;
}
@media print, screen and (min-width: 960px) {
  .link_btn {
    padding: 20px 40px;
  }
}
.link_btn span {
  position: relative;
  display: block;
  padding-right: 30px;
}
.link_btn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "→";
  transform: translateY(-50%);
  transition: right 0.3s;
}
.link_btn.contact {
  font-size: 18px;
  padding: 16px 40px;
}
@media print, screen and (min-width: 960px) {
  .link_btn.contact {
    font-size: 20px;
    padding: 20px 50px;
  }
}
.link_btn.contact span {
  background: url(images/icon-contact-black.svg) no-repeat;
  background-position: left center;
  background-size: 33px auto;
  padding: 5px 0 5px 60px;
}
.link_btn.contact span::after {
  content: none;
}
.link_btn.fullwidth {
  width: 100%;
  font-size: 16px;
  padding: 20px 25px;
}
@media print, screen and (min-width: 768px) {
  .link_btn.fullwidth {
    font-size: 22px;
    padding: 25px 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .link_btn.fullwidth {
    font-size: 32px;
    padding: 30px 40px;
  }
}
.link_btn.fullwidth span {
  padding-right: 0;
}
@media print, screen and (min-width: 960px) {
  .link_btn:hover {
    background-color: #F1F0EB;
  }
  .link_btn:hover span::after {
    right: -10px;
  }
}

/* ************************************************
 *	404
 * ************************************************ */
.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 56px;
  z-index: 0;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    justify-content: flex-end;
    padding-top: 18vw;
  }
}
.notfound_wrap img {
  width: 220px;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap img {
    width: 293px;
  }
}

h2.notfound {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  h2.notfound {
    font-size: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  h2.notfound {
    font-size: 46px;
  }
}

.notfound_txt {
  font-weight: 500;
  text-align: center;
  padding-bottom: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 32px;
  }
}

/* ************************************************
 *	reCAPTCHA
 * ************************************************ */
.grecaptcha-badge {
  visibility: hidden;
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* 共通
----------------------------------------*/
footer {
  background-color: #F1F0EB;
}

.trade_fixed_btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2D2E2D;
  border-radius: 10px;
  padding: 12px;
  z-index: 1;
}
@media print, screen and (min-width: 960px) {
  .trade_fixed_btn {
    right: 20px;
    bottom: 20px;
    padding: 20px 20px 20px 165px;
  }
}
.trade_fixed_btn img {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .trade_fixed_btn img {
    position: absolute;
    left: -30px;
    bottom: 0;
    display: block;
    width: 187px;
  }
}
.trade_fixed_btn .trade_fixed_btn_text p {
  color: #F1F0EB;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .trade_fixed_btn .trade_fixed_btn_text p {
    font-size: 20px;
  }
}
.trade_fixed_btn .trade_fixed_btn_text p span {
  display: block;
  background-color: #F1F0EB;
  color: #2D2E2D;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  border-radius: 9999px;
  padding: 10px 0;
  margin-top: 12px;
}
@media print, screen and (min-width: 960px) {
  .trade_fixed_btn .trade_fixed_btn_text p span {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* パンくず
----------------------------------------*/
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  max-width: 1460px;
  padding: 60px 5% 20px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper {
    padding: 80px 5% 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding: 120px 30px 20px;
  }
}
.breadcrumbs_wrapper span:not(.bre) {
  display: inline-block;
  font-size: 10px;
  padding: 0 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span:not(.bre) {
    font-size: 12px;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 10px;
  padding-right: 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 12px;
  }
}

/* お問い合わせ・アクセス
----------------------------------------*/
@media print, screen and (min-width: 768px) {
  .footer_info_block {
    width: 50%;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_info_block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
  }
}
.footer_info_block.contact {
  background: url(images/footer-bg-contact.webp) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 0;
}
@media print, screen and (min-width: 960px) {
  .footer_info_block.contact {
    padding: 0;
  }
}
.footer_info_block.access {
  padding: 30px 0;
}
@media print, screen and (min-width: 960px) {
  .footer_info_block.access {
    padding: 0;
  }
}

.footer_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
}
.footer_text.contact {
  color: #fff;
  padding-top: 30px;
}
.footer_text.contact .footer_contact_text {
  text-align: center;
  margin: 30px 0 15px;
}
@media print, screen and (min-width: 960px) {
  .footer_text.contact .footer_contact_text {
    margin: 50px 0 20px;
  }
}
@media print, screen and (min-width: 1100px) {
  .footer_text.contact .footer_contact_text br {
    display: none;
  }
}
.footer_text.contact .footer_tel {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 960px) {
  .footer_text.contact .footer_tel {
    font-size: 40px;
  }
}
.footer_text.access {
  padding-top: 30px;
}
@media print, screen and (min-width: 960px) {
  .footer_text.access {
    width: 80%;
    max-width: 660px;
    padding: 60px 0 0;
  }
}
.footer_text.access .gmap {
  margin: 25px 0 15px;
}
.footer_text.access .footer_map_link {
  text-decoration: underline;
}
.footer_text .footer_sub_ttl {
  bottom: 0;
  width: auto;
  height: 70px;
}
@media print, screen and (min-width: 960px) {
  .footer_text .footer_sub_ttl {
    height: 130px;
  }
}

/* フッターリンク・コピーライト
----------------------------------------*/
.footer_link_area {
  max-width: 1560px;
  padding: 30px 5% 20px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area {
    align-items: flex-end;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area {
    padding: 70px 30px 40px;
  }
}

.footer_address_block {
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block {
    text-align: left;
    margin-bottom: 0;
  }
}
.footer_address_block .footer_logo {
  display: block;
  width: 160px;
  margin: 0 auto 20px;
}
@media print, screen and (min-width: 768px) {
  .footer_address_block .footer_logo {
    width: 180px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_address_block .footer_logo {
    margin: 0 0 20px;
  }
}
.footer_address_block .footer_address {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1100px) {
  .footer_address_block .footer_address {
    font-size: 16px;
  }
}
.footer_address_block .footer_sns {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block .footer_sns {
    justify-content: flex-start;
    gap: 0 15px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_address_block .footer_sns a {
    transition: opacity 0.3s;
  }
  .footer_address_block .footer_sns a:hover {
    opacity: 0.6;
  }
}

@media print, screen and (min-width: 768px) {
  .footer_link_block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_block {
    align-items: flex-end;
  }
}
.footer_link_block .footer_nav {
  display: flex;
  justify-content: center;
  gap: 0 40px;
}
@media print, screen and (min-width: 768px) {
  .footer_link_block .footer_nav {
    flex-direction: column;
    gap: 25px 0;
  }
}
.footer_link_block .footer_nav .footer_menu {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
@media print, screen and (min-width: 768px) {
  .footer_link_block .footer_nav .footer_menu {
    flex-direction: row;
    gap: 0 1.5em;
    justify-content: center;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_block .footer_nav .footer_menu {
    justify-content: flex-end;
  }
}
.footer_link_block .footer_nav .footer_menu li {
  font-size: 14px;
  line-height: 1;
}
@media print, screen and (min-width: 1100px) {
  .footer_link_block .footer_nav .footer_menu li {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_block .footer_nav .footer_menu a {
    transition: opacity 0.3s;
  }
  .footer_link_block .footer_nav .footer_menu a:hover {
    opacity: 0.6;
  }
}
.footer_link_block .logo_jgap {
  width: 140px;
  margin: 40px auto 30px;
}
@media print, screen and (min-width: 768px) {
  .footer_link_block .logo_jgap {
    margin: 40px 0 20px;
  }
}
.footer_link_block .footer_copyright {
  display: block;
  font-size: 11px;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .footer_link_block .footer_copyright {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */