@charset "UTF-8";
/*
Theme Name: 虻瀬犬
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
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
* お知らせ／ライヴ一覧カード（posts.scss の .post__list、front.scss の
* .top__post-list で共通利用）
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *  base
 * ************************************************ */
html,
html *,
body,
header,
footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  /*サイト全体の基準となるフォントサイズ*/
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: #000000;
  font-family: var(--base_font_family_setting);
  font-size: 1.4rem;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 2;
  padding: 0;
  margin: 0;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

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

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ************************************************
 *  共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  padding-top: 64px;
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    padding-top: 112px;
  }
}

.inner {
  container-type: inline-size;
  max-width: 1136px;
  padding: 0 5vw;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .inner {
    padding: 0 32px;
  }
}
.inner.short {
  max-width: 944px;
}
.inner.medium {
  max-width: 1296px;
}

/* アンカーずれ補正
---------------------------------------------------*/
.anchor {
  display: block;
  padding-top: 64px;
  margin-top: -64px;
}
@media print, screen and (min-width: 960px) {
  .anchor {
    padding-top: 112px;
    margin-top: -112px;
  }
}

/* flexクラス
---------------------------------------------------*/
.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-ttl {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 768px) {
  .section-ttl {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
@media print, screen and (min-width: 960px) {
  .section-ttl {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}

.page__ttl-wrapper {
  padding: 24px 0 32px;
}
@media print, screen and (min-width: 768px) {
  .page__ttl-wrapper {
    padding: 48px 0 64px;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl-wrapper {
    padding: 64px 0 96px;
  }
}

.page__ttl {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page__ttl {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl {
    font-size: 3.6rem;
    line-height: 1.4;
  }
}

/* ぶら下げインデント
---------------------------------------------------*/
.hanging-indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* ************************************************
 *  ヘッダー
 * *************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.8);
  transition: transform 0.5s ease, background-color 0.5s ease;
  z-index: 1000;
}
@media print, screen and (min-width: 960px) {
  header {
    height: 112px;
  }
}
header.hidden {
  transform: translateY(-64px);
}
@media print, screen and (min-width: 960px) {
  header.hidden {
    transform: translateY(-112px);
  }
}
header.open {
  background-color: #ffffff;
}
@media print, screen and (min-width: 960px) {
  header.open {
    background-color: transparent;
  }
}
header.open.hidden {
  transform: unset;
}
header.open a {
  color: #000000;
}
header .header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}
@media print, screen and (min-width: 960px) {
  header .header__inner {
    padding: 0 min(3vw, 40px);
  }
}

/* ロゴ
----------------------------------------------*/
.logo {
  width: 72px;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .logo {
    width: 128px;
  }
}
@media print, screen and (min-width: 960px) {
  .logo a {
    transition: opacity 0.4s;
  }
  .logo a:hover {
    opacity: 0.6;
  }
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.header__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 64px);
  transition: all 0.5s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
}
@media print, screen and (min-width: 960px) {
  .header__nav {
    position: unset;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0 min(4vw, 2em);
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
  background-color: #ffffff;
  z-index: 1001;
}

@media print, screen and (min-width: 960px) {
  .header__nav-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    height: 100%;
  }
}

.header__content-nav {
  line-height: 1;
  padding: 0 5%;
  margin-top: 8px;
}
@media print, screen and (min-width: 960px) {
  .header__content-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    order: 2;
    gap: 0 4em;
    margin-top: 0;
    padding: 0;
  }
}
.header__content-nav li {
  border-bottom: 1px solid rgba(35, 24, 21, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header__content-nav li {
    border-bottom: none;
  }
}
.header__content-nav a {
  display: block;
  font-size: 1.6rem;
  text-align: center;
  padding: 20px 0;
}
@media print, screen and (min-width: 960px) {
  .header__content-nav a {
    position: relative;
    padding: 0;
    transition: opacity 0.4s ease, color 0.4s ease;
  }
  .header__content-nav a::after {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.4s ease;
  }
  .header__content-nav a:hover::after {
    width: 100%;
  }
}

.header__sub-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
  line-height: 1;
  padding: 0 5%;
  margin-top: 32px;
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav {
    justify-content: flex-end;
    padding: 0 200px 0 0;
    margin-top: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav.no-pr {
    padding-right: 0;
  }
}
.header__sub-nav a {
  display: block;
  font-size: 1.6rem;
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  .header__sub-nav a {
    font-size: min(1.1vw, 1.5rem);
    transition: opacity 0.3s ease;
  }
  .header__sub-nav a:hover {
    opacity: 0.6;
  }
}
.header__sub-nav img {
  width: auto;
  height: 24px;
}

/* 言語スイッチャー
----------------------------------------------*/
.gtranslate_wrapper {
  position: fixed;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  height: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  z-index: 999;
}
@media print, screen and (min-width: 960px) {
  .gtranslate_wrapper {
    top: 20px;
    right: min(3vw, 40px);
    bottom: unset;
    height: auto;
    background: none;
    border: none;
    z-index: 1001;
  }
}
.gtranslate_wrapper select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1;
  border: none;
  border-radius: 0;
  padding: 2px 12px;
}
@media print, screen and (min-width: 960px) {
  .gtranslate_wrapper select {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
  }
}

/* ************************************************
 *  ハンバーガーメニュー関連
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 64px;
  height: 100%;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  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;
  height: 1px;
  background-color: #000000;
  transition: all 0.5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 28px;
  right: 12px;
  width: 40px;
}
.menu-trigger span:nth-of-type(2) {
  top: 36px;
  right: 12px;
  width: 28px;
}
.menu-trigger.active span:nth-of-type(1) {
  top: 26px;
  background-color: #000000;
  transform: translateY(6px) rotate(-20deg);
}
.menu-trigger.active span:nth-of-type(2) {
  top: 32px;
  width: 40px;
  background-color: #000000;
  transform: rotate(20deg);
}

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

/* ************************************************
 * Movie
 * ************************************************ */
.movie-container {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
}
.movie-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************************************************
 * 404
 * ************************************************ */
.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 68px;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    margin-top: 104px;
  }
}

.notfound_txt {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 2.4rem;
  }
}

.top-back {
  margin-top: 56px;
  padding-bottom: 12px;
}

/* ************************************************
 *  パンくずリスト
 * ************************************************ */
.breadcrumbs_wrapper {
  position: relative;
  width: 100%;
  background: #ffffff;
  font-size: 0.8rem;
  line-height: 1;
  text-align: left;
  padding-top: 56px;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding-top: 104px;
  }
}
.breadcrumbs_wrapper .bre {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  max-width: 1136px;
  padding: 16px 5vw;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper .bre {
    padding: 16px 32px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    font-size: 1.2rem;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 1.2rem;
  }
}

/* ************************************************
 *  フッター
 * ************************************************ */
footer {
  padding-top: 40px;
}
@media print, screen and (min-width: 768px) {
  footer {
    padding-top: 48px;
  }
}
@media print, screen and (min-width: 960px) {
  footer {
    padding-top: 56px;
  }
}

.footer__menu-container {
  line-height: 1;
}

.footer__menu01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.5em;
}
@media print, screen and (min-width: 768px) {
  .footer__menu01 {
    display: flex;
    justify-content: center;
    gap: 0 3em;
  }
}
.footer__menu01 li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
@media print, screen and (min-width: 768px) {
  .footer__menu01 li {
    border-bottom: none;
  }
}
.footer__menu01 a {
  display: block;
  font-size: 1.2rem;
  padding: 1.25em 0;
}
@media print, screen and (min-width: 768px) {
  .footer__menu01 a {
    font-size: 1.4rem;
    padding: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__menu01 a {
    position: relative;
    font-size: 1.6rem;
    transition: opacity 0.3s ease;
  }
  .footer__menu01 a::after {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.4s ease;
  }
  .footer__menu01 a:hover::after {
    width: 100%;
  }
}

/* コピーライト
----------------------------------------*/
.copyright {
  display: block;
  width: 100%;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  padding: 40px 0 72px;
}
@media print, screen and (min-width: 768px) {
  .copyright {
    padding: 48px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .copyright {
    font-size: 1.2rem;
    padding: 56px 0;
  }
}/*# sourceMappingURL=style.css.map */