@charset "UTF-8";
/*
Theme Name: TrustyWoodWorksmoja
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 {
  scroll-padding-top: 56px;
  scroll-behavior: smooth;
}
@media print, screen and (min-width: 960px) {
  html {
    scroll-padding-top: 80px;
  }
}

html,
html *,
body,
header,
footer {
  margin: 0;
  padding: 0;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  position: relative;
  font-family: "Zen Maru Gothic", "Yu Gothic", YuGothic, "Helvetica Neue", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", Arial, Meiryo, sans-serif;
  font-family: sans-serif;
  font-size: 14px;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.8;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  color: #000;
  background-color: var(--base_bg_color_setting);
  font-family: var(--base_font_family_setting);
}

body * {
  color: var(--base_text_color_setting);
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
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;
  }
}

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

/* ************************************************
 *	content-wrap ヘッダー下のメインコンテンツ枠
 * *************************************************/
#content-wrap {
  overflow: hidden;
  animation: fadein 1s;
}
.inner {
  max-width: 1460px;
  margin: 0 auto;
}

/*********************************************************************
* ページトップ
**********************************************************************/
.pagetop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  visibility: hidden;
}
@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: #f6f3ee;
  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: -2px;
  left: 15px;
  border: 0px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .pagetop a .arrow::before {
    top: 2px;
    left: 19px;
  }
}
@media print, screen and (min-width: 960px) {
  .pagetop a .arrow::before {
    width: 15px;
    height: 15px;
    top: 1px;
    left: 17px;
  }
}
.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;
}
.pagetop .pagetop_text {
  text-align: center;
  font-size: 0.75em;
}

/*********************************************************************
* googlemap
**********************************************************************/
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 56%;
  }
}
@media print, screen and (min-width: 960px) {
  .gmap {
    padding-bottom: 35.2%;
  }
}
.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;
  }
}

.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;
  }
}

/* ************************************************
 *	共通パーツ
 * ************************************************ */
.section_wrapper {
  padding: 40px 20px;
}
@media print, screen and (min-width: 428px) {
  .section_wrapper {
    padding: 60px 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .section_wrapper {
    padding: 80px 40px;
  }
}
@media print, screen and (min-width: 1280px) {
  .section_wrapper {
    padding: 80px;
  }
}

.inner_short {
  max-width: 1080px;
  margin: 0 auto;
}

.inner_middle {
  max-width: 1200px;
  margin: 0 auto;
}

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

h2.section_ttl {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
}
@media print, screen and (min-width: 428px) {
  h2.section_ttl {
    margin-bottom: 40px;
  }
}
h2.section_ttl .en_ttl {
  font-size: 22px;
  color: #2e5c37;
  text-align: center;
  display: block;
  line-height: 1;
  font-family: "Arsenal";
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl .en_ttl {
    font-size: 32px;
  }
}
h2.section_ttl .ja_ttl {
  font-size: 16px;
  text-align: center;
  color: #00008c;
  display: block;
  line-height: 1;
  margin-top: 10px;
}

/* ************************************************
 *	共通ボタン
 * ************************************************ */
.btn {
  text-align: center;
  bottom: 0;
}
@media print, screen and (min-width: 960px) {
  .btn {
    text-align: start;
  }
}
.btn a {
  padding: 10px 80px 10px 30px;
  background-color: #2e5c37;
  display: inline-block;
  transition: all ease 0.5s;
  position: relative;
  color: #fff;
  border: 1px solid #2e5c37;
}
@media print, screen and (min-width: 960px) {
  .btn a {
    padding: 10px 120px 10px 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .btn a:hover {
    color: #2e5c37;
    background-color: #fff;
  }
  .btn a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .btn a:hover::after {
    right: 1.5em;
    filter: invert(28%) sepia(29%) saturate(694%) hue-rotate(80deg) brightness(50%) contrast(93%);
  }
}
.btn a::after {
  position: absolute;
  display: block;
  content: url("images/arrow-icon.svg");
  width: 20px;
  height: auto;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}

/* ************************************************
 *	ヘッダー
 * ************************************************ */
/* 共通
----------------------------------------------*/
header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  transition: 0.8s;
}
@media print, screen and (min-width: 960px) {
  header {
    height: 100px;
    background-color: transparent;
  }
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
@media print, screen and (min-width: 960px) {
  header .header_inner {
    align-items: flex-start;
  }
}
header .header_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 0;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

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

/* fixed
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  header.is-show {
    height: 80px;
  }
  header.is-show .header_inner {
    align-items: center;
    background-color: #fff;
    padding: 10px 0 10px 30px;
    height: 80px;
    transition: 0.5s;
    border-bottom: 1px solid #333;
  }
  header.is-show .header_inner::after {
    height: 100%;
    transition: 0.5s;
  }
  header.is-show .header_nav {
    height: 80px;
  }
  header.is-show .nav_wrapper {
    flex-direction: column-reverse;
    position: static;
    justify-content: center;
    transform: translate(0, 0);
  }
  header.is-show .content_nav {
    display: flex;
    justify-content: flex-end;
  }
  header.is-show .content_nav a {
    color: unset !important;
    padding: 5px 15px;
  }
  header.is-show .content_nav.mr20 {
    margin-right: 220px;
  }
  header.is-show #sub_nav {
    justify-content: flex-end;
    margin-right: 220px;
  }
  header.is-show #sub_nav li a {
    font-size: 12px;
  }
  header.is-show .header_contact_btn {
    transition: 0.5s;
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
    font-size: 14px;
    padding: 15px 40px;
  }
  header.is-show .header_contact_btn img {
    width: 22px;
  }
  header.is-show .logo {
    width: 9.5vw;
    position: static;
    filter: invert(0);
    transform: translate(0, 0);
  }
  header.is-show .g_nav {
    background-color: unset;
    margin-top: 0;
  }
  header.is-show .drop_menu {
    left: 0;
    background-color: #fff;
  }
  header.is-show .drop_menu li {
    border-bottom: 1px solid #ddd;
    padding: 0;
  }
  header.is-show .drop_menu li a {
    color: #333;
    padding: 15px;
    display: block;
    transition: all ease 0.5s;
  }
  header.is-show .drop_menu li a:hover {
    color: #2e5c37;
  }
  header.is-show ul.sub_nav {
    display: none;
  }
}

/* ロゴ
----------------------------------------------*/
.logo {
  width: 120px;
  margin-left: 20px;
}
@media print, screen and (min-width: 960px) {
  .logo {
    width: 16vw;
    filter: invert(1) brightness(1000%);
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    z-index: 100;
  }
}
@media print, screen and (min-width: 960px) {
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo img {
  width: 100%;
  transition: 0.5s;
}
.logo .main_logo {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .logo .main_logo {
    display: block;
    height: 100px;
    line-height: 100px;
  }
}
.logo .main_logo img {
  vertical-align: bottom;
}

/* グローバルナビ
----------------------------------------------*/
.nav_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 0 10px;
}
@media print, screen and (min-width: 960px) {
  .nav_wrapper {
    position: absolute;
    top: 120px;
    left: 5%;
    flex-direction: row;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
  }
}

@media print, screen and (min-width: 960px) {
  .header_nav .content_nav {
    margin-top: 0;
    padding: 0;
  }
}
.header_nav .content_nav li {
  display: flex;
  flex-direction: column;
  text-align: start;
  border-bottom: 1px solid #ddd;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav li {
    border-bottom: none;
  }
}
.header_nav .content_nav a:not(.header_tel) {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  padding: 20px 10px;
  white-space: nowrap;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a:not(.header_tel) {
    display: block;
    position: relative;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.5s;
    color: #fff;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a:not(.header_tel):hover:not(.current) {
    color: #2e5c37 !important;
  }
}
.header_nav .content_nav a:not(.header_tel).current {
  color: #2e5c37;
}
.header_nav .content_nav.mr20 {
  margin-right: 0;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav.mr20 {
    margin-right: 20px;
  }
}
.header_nav .burger_instagram {
  margin-top: 30px;
}
.header_nav .burger_instagram a {
  padding: 0 20px;
  display: inline-block;
}
.header_nav .burger_instagram_img {
  width: 40px;
}
.header_nav .header_contact_btn {
  position: absolute;
  top: -50px;
  right: 5%;
  background-color: #2e5c37;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  padding: 20px 50px;
  height: 80px;
  font-size: 14px;
  margin-left: auto;
  transition: all ease 0.5s;
  margin-bottom: 0;
}
@media print, screen and (max-width: 960px) {
  .header_nav .header_contact_btn {
    display: flex;
    width: 250px;
    padding: 20px 50px 20px 30px;
    align-items: center;
    justify-content: center;
    height: auto;
    font-size: 16px;
    margin: 10px auto 30px;
    position: static;
  }
}
.header_nav .header_contact_btn:hover {
  opacity: 0.7;
}
.header_nav .header_contact_btn img {
  width: 20px;
  margin-right: 10px;
}
@media print, screen and (max-width: 960px) {
  .header_nav .header_contact_btn img {
    margin: 0 10px 0 6px;
  }
}
.header_nav .header_contact_btn span {
  color: #fff;
  display: inline-block;
}

.has-submenu {
  position: relative;
}
.has-submenu:hover .drop_menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.has-submenu .toggle_submenu {
  position: relative;
  padding-right: 30px;
}
.has-submenu .toggle_submenu::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  transition: transform 0.3s ease;
}
@media print, screen and (min-width: 960px) {
  .has-submenu .toggle_submenu::after {
    display: none;
  }
}
.has-submenu.open .toggle_submenu::after {
  transform: translateY(-50%) rotate(-135deg);
}

.drop_menu {
  list-style: none;
  margin: 0;
  /* アニメーション初期状態 */
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  transition: all 0.5s ease;
  /* デスクトップでのアニメーション */
  /* 表示状態 */
}
@media print, screen and (max-width: 960px) {
  .drop_menu {
    position: relative;
    z-index: 10;
    max-height: 0; /* 初期状態で高さ0 */
    opacity: 0;
    overflow: hidden; /* 高さ0のとき内容を隠す */
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
}
@media print, screen and (min-width: 960px) {
  .drop_menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}
@media print, screen and (max-width: 960px) {
  .drop_menu.show {
    max-height: 300px; /* 十分な高さを確保（内容に応じて調整） */
    opacity: 1;
    pointer-events: auto;
  }
}
@media print, screen and (min-width: 960px) {
  .drop_menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.drop_menu li {
  line-height: 1;
  border-bottom: 1px solid #ddd;
}
.drop_menu li:first-child {
  border-top: 1px solid #ddd;
}
.drop_menu li:last-child {
  border: none;
}
@media print, screen and (min-width: 960px) {
  .drop_menu li {
    border: none !important;
  }
}
.drop_menu li a {
  transition: all ease 0.3s;
  color: #333;
}
@media print, screen and (min-width: 960px) {
  .drop_menu li a {
    color: #fff;
  }
}
.drop_menu li a:hover {
  color: #2e5c37;
}

/* ************************************************
 *	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: 0;
  width: 25px;
  height: 1px;
  background-color: #333;
  border-radius: 1px;
  transition: all 0.5s;
}

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

.menu-trigger span:nth-of-type(2) {
  top: 31px;
  width: 15px;
  left: unset;
  right: 20px;
}

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

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

.menu-trigger.active span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
  width: 25px;
}

/* メニュー枠
----------------------------------------*/
.header_nav {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  height: calc(100% - 56px);
  background-color: #fff;
  transition: all 0.6s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateX(300px);
  z-index: 100;
}
@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);
}

/* ************************************************
 *	FV
 * ************************************************ */
/* ************************************************
 *	404
 * ************************************************ */
.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5vw;
  z-index: 0;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    justify-content: flex-end;
  }
}
.notfound_wrap .btn {
  margin-top: 40px;
}

h2.notfound {
  font-size: 24px;
  font-weight: 400;
  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: 400;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 32px;
  }
}

/* ************************************************
 *	サンクス
 * ************************************************ */
.thanks_block {
  line-height: 2;
  padding: 30px 0 80px;
}
@media print, screen and (min-width: 960px) {
  .thanks_block {
    font-size: 16px;
    text-align: center;
    padding: 50px 0;
  }
}

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

/* パンくず
----------------------------------------*/
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 8px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  max-width: 1460px;
  padding: 25px 5% 25px;
  margin: 0 auto;
}
@media print, screen and (min-width: 428px) {
  .breadcrumbs_wrapper {
    padding: 45px 5%;
  }
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding: 30px 20px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 10px;
  padding: 0 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    padding: 0 0;
    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;
  }
}

/* ************************************************
 *	フッター
 * ************************************************ */
/*	Contact
 * ************************************************ */
.footer_contact {
  background: url("images/footer-contact.webp") center/cover no-repeat;
  padding-bottom: 40px !important;
}
@media print, screen and (min-width: 428px) {
  .footer_contact {
    padding-bottom: 60px !important;
  }
}

@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper {
    align-items: center;
  }
}
.footer_contact_wrapper .section_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .section_ttl {
    margin-top: 0;
    flex-direction: row;
    align-items: flex-end;
  }
}
.footer_contact_wrapper .section_ttl .en_ttl {
  text-align: start !important;
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .section_ttl .en_ttl {
    font-size: 40px;
    margin-right: 20px;
  }
}
.footer_contact_wrapper .section_ttl .ja_ttl {
  text-align: start !important;
  color: #fff !important;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 5px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .section_ttl .ja_ttl {
    font-size: 20px;
    margin-top: 0;
  }
}
.footer_contact_wrapper p,
.footer_contact_wrapper a {
  color: #fff;
}
.footer_contact_wrapper .footer_contact_text {
  margin-top: 20px;
  font-size: 14px;
}
@media print, screen and (min-width: 768px) {
  .footer_contact_wrapper .footer_contact_text {
    font-size: 16px;
  }
}
.footer_contact_wrapper .footer_contact_tel {
  line-height: 1;
}
.footer_contact_wrapper .footer_contact_tel .tell {
  font-size: 22px;
  margin-top: 20px;
  padding-left: 25px;
  display: block;
  position: relative;
  font-weight: 400;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel .tell {
    font-size: 26px;
  }
}
.footer_contact_wrapper .footer_contact_tel .tell::before {
  display: block;
  content: url("images/phone.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5em;
  height: 0.5em;
}
.footer_contact_wrapper .footer_contact_tel .phone {
  font-size: 14px;
  margin-top: 10px;
  display: block;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel .phone {
    font-size: 18px;
  }
}
.footer_contact_wrapper .footer_contact_tel span {
  font-family: "Shippori Mincho", "Noto Sans JP", serif;
  color: #fff;
  font-size: 16px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel span {
    font-size: 18px;
  }
}
.footer_contact_wrapper .caution {
  margin-top: 20px;
  font-size: 14px;
}
.footer_contact_wrapper .btn {
  max-width: 230px;
  margin: 40px auto 0;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .btn {
    margin-top: 0;
    text-align: start;
    margin-top: 40px;
  }
}
.footer_contact_wrapper .btn a {
  display: flex;
  align-items: center;
  transition: all ease 0.5s;
}
.footer_contact_wrapper .btn a:hover span {
  color: #2e5c37;
}
.footer_contact_wrapper .btn a:hover img {
  filter: invert(28%) sepia(29%) saturate(694%) hue-rotate(80deg) brightness(50%) contrast(93%);
}
.footer_contact_wrapper .btn a img {
  width: 20px;
  margin-right: 10px;
}
.footer_contact_wrapper .btn a span {
  color: #fff;
}

.footer_nav {
  background-color: #333;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 960px) {
  .footer_nav {
    padding: 60px 30px 30px 30px;
  }
}

.footer_nav li {
  width: 50%;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .footer_nav li {
    width: auto;
  }
}
.footer_nav li:nth-child(4) .footer_nav_panel {
  overflow: initial !important;
  height: auto !important;
  opacity: 1 !important;
}

.footer_nav li a {
  color: #fff;
  font-size: 16px;
  display: inline-block;
}

.footer_nav_panel li {
  color: #fff;
  border: none !important;
}

/*	Access
 * ************************************************ */
.footer_access.section_wrapper {
  padding: 40px 20px !important;
}
@media print, screen and (min-width: 428px) {
  .footer_access.section_wrapper {
    padding: 60px 20px !important;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_access.section_wrapper {
    padding: 80px 40px !important;
  }
}
@media print, screen and (min-width: 1280px) {
  .footer_access.section_wrapper {
    padding: 80px !important;
  }
}

.footer_access_left {
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footer_access_left {
    width: 30%;
    text-align: start;
  }
}
.footer_access_left p {
  margin-top: 20px;
}

.footer_access_map {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .footer_access_map {
    width: 100%;
  }
}

.footer_access_logo {
  width: 50%;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 768px) {
  .footer_access_logo {
    width: 50%;
    margin: 30px 0 0 0;
  }
}

.access_btn {
  margin-top: 30px;
}
.access_btn a {
  width: 30%;
  margin-top: 20px;
  border-radius: 50px;
  border: 1px solid #000;
  padding: 10px 30px;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 768px) {
  .access_btn a {
    width: 50%;
  }
}
.access_btn a:hover {
  opacity: 0.7;
}

.footer_access_right {
  width: 100%;
  margin-top: 30px;
  position: relative;
  padding-top: 33.3333333333%;
  aspect-ratio: 3/2;
}
@media print, screen and (min-width: 768px) {
  .footer_access_right {
    width: 65%;
    margin-top: 0;
  }
}
.footer_access_right iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* フッターリンク・コピーライト
----------------------------------------*/
.footer_link_area {
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area {
    padding: 45px 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area {
    padding: 45px 40px 45px 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_inner {
    align-items: flex-start;
    flex-wrap: nowrap !important;
  }
}
.footer_link_area .footer_info {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_info {
    width: 35%;
    margin-right: 40px;
  }
}
.footer_link_area .footer_info .footer_logo {
  width: 60%;
}
@media print, screen and (min-width: 428px) {
  .footer_link_area .footer_info .footer_logo {
    width: 40%;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_info .footer_logo {
    width: 65%;
  }
}
.footer_link_area .footer_info p {
  color: #fff;
  line-height: 1;
}
.footer_link_area .btn {
  max-width: 230px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .btn {
    margin: 15px 40px 0 0;
    text-align: start;
  }
}
.footer_link_area .btn a {
  display: flex;
  align-items: center;
  transition: all ease 0.5s;
  background-color: #000 !important;
  border: 1px solid #fff !important;
}
.footer_link_area .btn a:hover {
  border: 1px solid #2e5c37 !important;
}
.footer_link_area .btn a:hover span {
  color: #2e5c37;
}
.footer_link_area .btn a:hover img {
  filter: invert(28%) sepia(29%) saturate(694%) hue-rotate(80deg) brightness(25%) contrast(93%);
}
.footer_link_area .btn a img {
  width: 20px;
  margin-right: 10px;
}
.footer_link_area .btn a span {
  color: #fff;
}
.footer_link_area .footer_link_wrapper {
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_wrapper {
    width: 60%;
  }
}
.footer_link_area .footer_link {
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 20px;
  justify-content: flex-start !important;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link {
    justify-content: flex-end !important;
    margin-top: 0;
  }
}
.footer_link_area .footer_link a {
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  padding: 15px;
  line-height: 1;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link a {
    font-size: 16px;
  }
  .footer_link_area .footer_link a:hover {
    color: #2e5c37;
  }
}
.footer_link_area .footer_link_contact {
  display: flex;
  font-size: 14px;
  border-bottom: 1px solid #fff;
  justify-content: flex-end;
  max-width: 80px;
  margin: 20px auto;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link_contact {
    margin: 15px 15px 15px auto;
  }
}
.footer_link_area .footer_link_contact:hover {
  border-bottom: 1px solid #2e5c37;
}
.footer_link_area .footer_link_contact:hover img {
  filter: invert(28%) sepia(29%) saturate(694%) hue-rotate(80deg) brightness(25%) contrast(93%);
}
.footer_link_area .footer_link_contact:hover a {
  color: #2e5c37;
}
.footer_link_area .footer_link_contact img {
  width: 20px;
  margin-right: 10px;
  transition: all ease 0.1s;
}
.footer_link_area .footer_link_contact a {
  color: #fff;
  transition: all ease 0.3s;
}
.footer_link_area .footer_copyright {
  display: block;
  font-size: 11px;
  margin-top: 10px;
  text-align: center;
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_copyright {
    font-size: 12px;
  }
}

.mt25 {
  margin-top: 25px;
}

.mt15 {
  margin-top: 15px;
}/*# sourceMappingURL=style.css.map */