@charset "UTF-8";
/*
Theme Name: Base2024
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;
  font-size: 16px;
  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;
  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 {
  animation: fadein 1s;
  padding-top: 56px;
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    padding-top: 120px;
  }
}

.inner {
  max-width: 1460px;
  margin: 0 auto;
}

/*********************************************************************
* ページトップ
**********************************************************************/
.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);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  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: 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;
  }
}

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

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

/* fixed
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  header.is-show .header_inner {
    align-items: center;
    background-color: transparent;
    border-radius: 9999px;
    box-shadow: 0 0 3px #dfd7cf;
    padding: 10px 0 10px 30px;
  }
  header.is-show .header_inner::after {
    height: 100%;
    transition: 0.5s;
  }
  header.is-show .logo {
    width: 10vw;
  }
  header.is-show .main_logo {
    display: none;
  }
  header.is-show .sub_logo {
    display: block;
  }
  header.is-show .g_nav {
    background-color: unset;
    margin-top: 0;
  }
  header.is-show ul.sub_nav {
    display: none;
  }
}

/* ロゴ
----------------------------------------------*/
.logo {
  width: 110px;
  line-height: 1;
  margin-left: 10px;
}
@media print, screen and (min-width: 960px) {
  .logo {
    width: 11vw;
    max-width: 210px;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo img {
  width: 100%;
  transition: 0.5s;
}
.logo .main_logo {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .logo .main_logo {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .logo .sub_logo {
    display: none;
  }
}

/* グローバルナビ
----------------------------------------------*/
.sp_header_tel {
  margin-right: 50px;
}
.sp_header_tel img {
  display: block;
}

@media print, screen and (min-width: 960px) {
  .g_nav {
    width: 100%;
    background-color: #fff;
    transition: 0.5s;
  }
}

.header_nav ul.content_nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5%;
  margin-top: 10px;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav {
    margin-top: 0;
    padding: 0;
  }
}
.header_nav ul.content_nav li {
  border-bottom: 1px solid rgba(96, 56, 19, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li {
    border-bottom: none;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li:not(:nth-of-type(1)) {
    border-left: 1px solid #603813;
    padding-left: 1.2em;
    margin-left: 1.2em;
    transition: 0.5s;
  }
}
.header_nav ul.content_nav li:last-child {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li:last-child {
    display: block;
    padding-left: 5px;
  }
}
.header_nav ul.content_nav a:not(.header_tel) {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding: 20px 10px;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav a:not(.header_tel) {
    display: block;
    position: relative;
    font-size: 1.22vw;
    padding: 0;
    transition: color 0.5s;
  }
}
.header_nav ul.content_nav a:not(.header_tel)::after {
  position: absolute;
  right: 12px;
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-left: 1px solid #603813;
  border-top: 1px solid #603813;
  transform: rotate(135deg);
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav a:not(.header_tel)::after {
    content: none;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav a:not(.header_tel):hover:not(.current) {
    color: #ec6c00;
  }
}
.header_nav ul.content_nav a:not(.header_tel).current {
  color: #ec6c00;
}
.header_nav ul.content_nav a.header_tel {
  display: block;
  color: #ec6c00;
  font-size: 1.8vw;
  font-weight: 700;
  line-height: 1;
}
.header_nav ul.content_nav a.header_tel img {
  margin-right: 3px;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  48% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  98% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotateY(0);
  }
  48% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  98% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/* ************************************************
 *	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: 2px;
  background-color: #603813;
  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: #fff;
  transition: all 0.6s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  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: 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;
  }
}

/* ************************************************
 *	サンクス
 * ************************************************ */
.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: 500;
  line-height: 1;
  text-align: left;
  max-width: 1460px;
  padding: 70px 5% 25px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper {
    padding: 70px 5% 45px;
  }
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding: 120px 20px 70px;
  }
}
.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;
  }
}

/* フッターリンク・コピーライト
----------------------------------------*/
.footer_link_area {
  background-color: #ec6c00;
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .inner {
    align-items: flex-end;
  }
}
.footer_link_area h2.footer_logo {
  width: 220px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area h2.footer_logo {
    width: 250px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area h2.footer_logo a:hover {
    opacity: 0.6;
  }
}
.footer_link_area h2.footer_logo img {
  display: block;
}
.footer_link_area .footer_link {
  flex-wrap: wrap;
  align-items: flex-end;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link {
    width: 100%;
  }
}
.footer_link_area .footer_link ul {
  width: 47%;
  padding-bottom: 30px;
}
.footer_link_area .footer_link ul li {
  line-height: 1;
}
.footer_link_area .footer_link ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer_link_area .footer_link a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link a {
    font-size: 16px;
  }
  .footer_link_area .footer_link a:hover {
    opacity: 0.6;
  }
}
.footer_link_area ul.footer_btn a {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 150px;
  background-color: #fff;
  color: #ec6c00;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 8px 40px 8px 20px;
}
.footer_link_area ul.footer_btn a::after {
  position: absolute;
  right: 20px;
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid #ec6c00;
  border-right: 0;
  transition: 0.5s;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area ul.footer_btn a:hover {
    background-color: #ec6c00;
    color: #fff;
    opacity: 1;
  }
  .footer_link_area ul.footer_btn a:hover::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #fff;
  }
}
.footer_link_area .footer_copyright {
  display: block;
  font-size: 11px;
  text-align: center;
  padding: 10px 0;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_copyright {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */