@charset "UTF-8";
/*********************************************************************
* ブレークポイント
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************ 
 *	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-family: "Yu Gothic", YuGothic, "Helvetica Neue", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", Arial, Meiryo, sans-serif;
  color: #000;
  font-size: 20px;
  line-height: 1.8;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* ************************************************ 
 *	content
 * ************************************************ */
.content_block:not(:last-child) {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 768px) {
  .content_block:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .content_block:not(:last-child) {
    margin-bottom: 130px;
  }
}

.inner {
  max-width: 1120px;
  padding: 0 4%;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}

/* ************************************************ 
 *	a
 * ************************************************ */
a.anchor {
  padding-top: 56px;
  margin-top: -56px;
}
@media print, screen and (min-width: 1024px) {
  a.anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

a.tel_link {
  color: inherit;
}
@media print, screen and (min-width: 1024px) {
  a.tel_link {
    pointer-events: none;
  }
}

@media print, screen and (min-width: 1024px) {
  a:hover,
  .header_nav > ul span:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}

/* ************************************************ 
 *	見出し
 * ************************************************ */
h2.block_ttl {
  text-align: center;
  color: #78aa14;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  h2.block_ttl {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  h2.block_ttl {
    font-size: 54px;
  }
}
h2.block_ttl span {
  display: block;
  color: #000;
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  h2.block_ttl span {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 1024px) {
  h2.block_ttl span {
    font-size: 22px;
  }
}

/* ************************************************ 
 *	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: 1024px) {
  .tab_only {
    display: none;
  }
}

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

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

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .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;
  }
}

/*********************************************************************
* 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: 1024px) {
  .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: 1024px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

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

.link_yes a, a.link_yes {
  color: #0A0B0C !important;
  text-decoration: underline;
}

.link_yes_white a {
  color: #fff !important;
  text-decoration: underline;
}

/* ************************************************ 
 *	ヘッダー
 * ************************************************ */
/* 共通
----------------------------------------------*/
header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 56px;
  z-index: 2;
}
@media print, screen and (min-width: 1024px) {
  header {
    justify-content: unset;
    align-items: flex-start;
    height: 110px;
  }
}
@media print, screen and (min-width: 1400px) {
  header {
    height: 138px;
  }
}
@media print, screen and (min-width: 1600px) {
  header {
    height: 215px;
  }
}
header.top {
  color: #fff;
}
@media print, screen and (min-width: 1024px) {
  header.top {
    background: linear-gradient(to bottom, #1b96df, transparent 100%);
  }
}
header.is-show {
  align-items: center;
  position: fixed;
  height: 56px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
  transition: opacity 1s;
  z-index: 100;
}
@media print, screen and (min-width: 1024px) {
  header.is-show {
    height: 100px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
  }
}

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

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header img {
  display: inline-block;
}

/* ロゴ
----------------------------------------------*/
h1.logo {
  line-height: 1;
}
@media print, screen and (min-width: 1600px) {
  h1.logo {
    margin-left: 4.5%;
  }
}
@media print, screen and (min-width: 1100px) {
  h1.logo a {
    display: flex;
    align-items: center;
  }
}
h1.logo img {
  display: block;
  width: auto;
  height: 56px;
}
@media print, screen and (min-width: 1024px) {
  h1.logo img {
    height: 110px;
  }
}
@media print, screen and (min-width: 1400px) {
  h1.logo img {
    height: 138px;
  }
}
@media print, screen and (min-width: 1600px) {
  h1.logo img {
    width: 233px;
    height: auto;
  }
}

header.is-show h1.logo {
  margin-left: 0;
}
@media print, screen and (min-width: 1024px) {
  header.is-show h1.logo img {
    width: auto;
    height: 100px;
  }
}

/* TEL
----------------------------------------------*/
.header_tel_wrap {
  align-items: center;
  font-weight: bold;
}
@media print, screen and (min-width: 1024px) {
  .header_tel_wrap {
    margin-top: 40px;
    margin-left: auto;
    margin-right: 20px;
  }
}
@media print, screen and (min-width: 1400px) {
  .header_tel_wrap {
    margin-top: 50px;
  }
}

.header_tel {
  position: absolute;
  right: 50px;
  line-height: 1;
}
@media print, screen and (min-width: 1024px) {
  .header_tel {
    position: unset;
    right: unset;
  }
}
.header_tel p.tel_txt {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .header_tel p.tel_txt {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
  }
}
@media print, screen and (min-width: 1400px) {
  .header_tel p.tel_txt {
    font-size: 16px;
  }
}
.header_tel p.tel_btn a {
  background: url(images/icon-tel-black.webp) no-repeat;
  background-position: left center;
  background-size: 30px auto;
  padding-left: 30px;
}
@media print, screen and (min-width: 1024px) {
  .header_tel p.tel_btn a {
    font-size: 30px;
    padding-left: 35px;
  }
}
@media print, screen and (min-width: 1400px) {
  .header_tel p.tel_btn a {
    font-size: 38px;
  }
}
@media print, screen and (min-width: 1024px) {
  .header_tel p.tel_btn.top a {
    background: url(images/icon-tel.webp) no-repeat;
    background-position: left center;
    background-size: 30px auto;
  }
}

.header_reserve_btn {
  margin-right: 95px;
}
@media print, screen and (min-width: 1024px) {
  .header_reserve_btn {
    margin-left: 20px;
    margin-right: 0;
  }
}
.header_reserve_btn a {
  display: block;
  background-color: #f59600;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 10px 15px;
}
@media print, screen and (min-width: 1024px) {
  .header_reserve_btn a {
    font-size: 16px;
    padding: 15px;
  }
}
@media print, screen and (min-width: 1400px) {
  .header_reserve_btn a {
    font-size: 18px;
    padding: 20px;
  }
}
.header_reserve_btn span {
  display: none;
}
@media print, screen and (min-width: 1500px) {
  .header_reserve_btn span {
    display: inline-block;
  }
}

@media print, screen and (min-width: 1024px) {
  header.is-show .header_tel_wrap {
    margin-top: 0;
  }
}
header.is-show p.tel_btn a {
  background: url(images/icon-tel-black.webp) no-repeat;
  background-position: left center;
  background-size: 30px auto;
}
@media print, screen and (min-width: 1024px) {
  header.is-show p.tel_btn a {
    background: url(images/icon-tel.webp) no-repeat;
    background-position: left center;
    background-size: 30px auto;
  }
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 1024px) {
  .g_nav {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1400px) {
  .g_nav {
    margin-top: 50px;
    margin-left: 20px;
  }
}

@media print, screen and (min-width: 1024px) {
  .header_nav {
    text-align: center;
    margin: 0 auto;
  }
}

.header_nav ul {
  padding: 15px;
}
@media print, screen and (min-width: 1024px) {
  .header_nav ul {
    display: flex;
    width: 100%;
    padding: 0;
  }
}
.header_nav li {
  line-height: 1;
}
@media print, screen and (min-width: 1024px) {
  .header_nav li {
    position: relative;
  }
}
@media print, screen and (min-width: 1024px) {
  .header_nav li:not(:last-child) {
    border-right: 2px solid #000;
  }
}
@media print, screen and (min-width: 1024px) {
  .header_nav.top li:not(:last-child) {
    border-right: 2px solid #fff;
  }
}
.header_nav a {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding: 1em 0;
}
@media print, screen and (min-width: 1024px) {
  .header_nav a {
    border-bottom: none;
    padding: 0 0.75em;
  }
}
@media print, screen and (min-width: 1200px) {
  .header_nav a {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 1400px) {
  .header_nav a {
    font-size: 22px;
    padding: 0 1em;
  }
}
@media print, screen and (min-width: 1024px) {
  .header_nav.top a {
    color: #fff;
  }
}
.header_nav span {
  display: block;
  font-size: 10px;
  letter-spacing: 0;
  text-indent: 0;
  margin-top: 8px;
}
@media print, screen and (min-width: 1024px) {
  .header_nav span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .header_nav span {
    bottom: -20px;
    font-size: 12px;
    margin-top: 8px;
  }
}

header.is-show .logo_sub {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  header.is-show .g_nav {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  header.is-show .header_nav ul li:not(:last-child) {
    border-right: 2px solid #fff;
  }
}
header.is-show .header_nav ul a {
  font-size: 16px;
}
@media print, screen and (min-width: 1024px) {
  header.is-show .header_nav ul a {
    color: #fff;
  }
}
@media print, screen and (min-width: 1200px) {
  header.is-show .header_nav ul a {
    font-size: 18px;
  }
}
header.is-show .header_tel p.tel_txt {
  font-size: 13px;
}
header.is-show .header_tel p.tel_btn a {
  font-size: 30px;
}
header.is-show .header_reserve_btn a {
  font-size: 14px;
}

/* ************************************************ 
 *	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: 1024px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: #222;
  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);
}

/* メニュー枠
----------------------------------------*/
nav#sp_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: #fff;
  transition: all 0.7s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  z-index: 12;
}
@media print, screen and (min-width: 1024px) {
  nav#sp_nav {
    position: unset;
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}

nav#sp_nav.open {
  box-shadow: 0 0 2px #ccc;
  opacity: 1;
  visibility: visible;
}

/* ************************************************ 
 *	mv
 * ************************************************ */
.mv {
  position: relative;
}
.mv picture {
  display: block;
}
.mv picture img {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .mv picture img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.mv.content_block {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 1024px) {
  .mv.content_block {
    margin-bottom: 50px;
  }
}

.mv_catch {
  position: absolute;
  top: 50%;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .mv_catch {
    font-size: 32px;
  }
}
@media print, screen and (min-width: 1024px) {
  .mv_catch {
    font-size: 38px;
  }
}
.mv_catch img {
  display: block;
  width: 160px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .mv_catch img {
    width: 210px;
  }
}
@media print, screen and (min-width: 1024px) {
  .mv_catch img {
    width: 280px;
  }
}

/* ************************************************ 
 *	404
 * ************************************************ */
.notfound_wrap {
  padding: 180px 0 70px;
}
@media print, screen and (min-width: 768px) {
  .notfound_wrap {
    padding: 300px 0 50px;
  }
}

h2.notfound {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  h2.notfound {
    font-size: 26px;
  }
}

.notfound_txt {
  text-align: center;
  padding: 30px 0 40px;
}

/* ************************************************ 
 *	フッター
 * ************************************************ */
/* 共通
----------------------------------------*/
footer {
  background-color: #78aa14;
  color: #fff;
  padding: 30px 0 20px;
}
@media print, screen and (min-width: 1024px) {
  footer {
    padding: 50px 0 20px;
  }
}

.footer_top {
  padding-bottom: 30px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .footer_top {
    gap: 0 30px;
    padding-bottom: 20px;
  }
}

/* ロゴ
----------------------------------------*/
h2.footer_logo {
  width: 120px;
  margin: 0 auto 15px;
}
@media print, screen and (min-width: 768px) {
  h2.footer_logo {
    width: 21.5%;
    margin: 0;
  }
}
h2.footer_logo img {
  display: block;
}

/* 住所・TEL
----------------------------------------*/
.footer_info {
  font-weight: bold;
  line-height: 1.5;
}

.footer_name {
  font-size: 22px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footer_name {
    font-size: 24px;
    text-align: left;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer_name {
    font-size: 32px;
  }
}

.footer_address {
  font-size: 16px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .footer_address {
    font-size: 18px;
    text-align: left;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer_address {
    font-size: 20px;
  }
}

.footer_parking {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .footer_parking {
    text-align: left;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer_parking {
    font-size: 21px;
  }
}
.footer_parking span {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .footer_parking span {
    display: inline-block;
  }
}

.footer_access {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .footer_access {
    text-align: left;
    margin-top: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .footer_access {
    font-size: 21px;
  }
}

.footer_tel_reserve {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .footer_tel_reserve {
    align-items: center;
  }
}

a.footer_tel_btn {
  display: block;
  width: 264px;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  a.footer_tel_btn {
    width: auto;
    font-size: 34px;
    text-align: left;
    border: none;
    padding: 0;
    margin: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  a.footer_tel_btn {
    font-size: 46px;
  }
}
a.footer_tel_btn img {
  display: inline-block;
  width: 24px;
}
@media print, screen and (min-width: 1024px) {
  a.footer_tel_btn img {
    width: 30px;
  }
}

a.footer_reserve_btn {
  display: block;
  width: 264px;
  background-color: #f59600;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 16px 0;
  margin: 15px auto 0;
}
@media print, screen and (min-width: 768px) {
  a.footer_reserve_btn {
    width: auto;
    padding: 12px 10px;
    margin: 0 0 0 15px;
  }
}
@media print, screen and (min-width: 1024px) {
  a.footer_reserve_btn {
    font-size: 24px;
    padding: 15px 15px;
  }
}

/* フッターナビ
----------------------------------------*/
ul.footer_nav {
  display: none;
}
@media print, screen and (min-width: 768px) {
  ul.footer_nav {
    display: flex;
    justify-content: center;
    border-top: 1px solid #fff;
    padding: 20px 0 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  ul.footer_nav {
    padding: 20px 0 60px;
  }
}
ul.footer_nav li {
  line-height: 1;
  position: relative;
}
ul.footer_nav li:not(:last-child) {
  border-right: 2px solid #fff;
}
ul.footer_nav a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  text-align: center;
  padding: 0 1em;
}
@media print, screen and (min-width: 1024px) {
  ul.footer_nav a {
    font-size: 22px;
  }
}
ul.footer_nav span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  font-size: 12px;
  letter-spacing: 0;
  text-indent: 0;
  margin: auto;
}

.header_nav ul {
  padding: 15px;
}
@media print, screen and (min-width: 1024px) {
  .header_nav ul {
    display: flex;
    width: 100%;
    padding: 0;
  }
}

/* コピーライト
----------------------------------------*/
.copyright {
  display: block;
  font-size: 13px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */