@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #333333;
  --color-white: #ffffff;
  --color-primary: #7ab533;
  --color-txt-gold: #9a7d53;
  --color-brown: #594a2a;
  --color-bgBeige: #f6f5f2;
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.wide_wrap {
  width: 86.38%;
  min-width: 769px;
  margin: 0 auto;
  padding: 0 10px;
}

.wrap {
  width: 74.67%;
  min-width: 769px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

a {
  text-decoration: none;
  transition: all 0.4s;
}

a:hover {
  opacity: 1;
  color: var(--color-txt-gold);
}

p {
  margin: 0 0 1em 0;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */
h2 {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 50px !important;
  z-index: 1;
  position: relative;
}

h2>span {
  font-family: "Arsenal", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: var(--color-primary);
  position: relative;
  padding-right: 50px;
}

h2>span::before {
  position: absolute;
  content: "";
  background-image: url(../images/img_ttl.png);
  width: 35px;
  height: 5.77px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  right: 0;
  bottom: 5px;
}

h2>div>span {
  display: inline-block;
}

h2 span>span {
  display: inline-block;
}

h2>small {
  font-size: 0.5em;
}

h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

h3 span {
  font-family: "Arsenal", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: bold;
}

.brw {
  color: var(--color-brown);
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }

  .wide_wrap,
  .wrap {
    width: 100%;
    min-width: unset;
    padding: 0 15px;
    box-sizing: border-box;
  }

  h2 {
    font-size: 2.3rem;
    margin-bottom: 30px !important;
  }

  h3 {
    font-size: 1.6rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header#mainnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s;
  padding: 35px 0 15px 1.83vw;
}

/* nav__left */
header .nav__left {
  width: clamp(180px, 15.3vw, 210px);
  margin-right: auto;
}

header .nav__left img.mv_logo {
  display: block;
}

header .nav__left img.fix_logo {
  display: none;
}

/* nav__center */
nav.gnav ul.nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav.gnav ul li,
.nav__right {
  position: relative;
  margin: 0 1.098vw;
  line-height: 1;
}

nav.gnav ul li a,
.nav__right a {
  color: var(--color-white);
  display: block;
  font-size: clamp(1.2rem, 1.024vw, 2rem);
  font-weight: bold;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
}

nav.gnav ul li a:hover,
.nav__right a:hover {
  opacity: 0.7;
}

nav.gnav ul li a>span,
.nav__right a>span {
  font-family: "Arsenal", sans-serif;
  display: block;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.17em;
  line-height: 2;
  margin-left: 1px;
  font-weight: bold;
}

/* sp */
nav.gnav .sp__nav {
  display: none;
}

/* nav__right */
.nav__right a {
  padding-left: 2.196vw;
}

.nav__right a span {
  line-height: 1.75;
}

.nav__right a::before {
  position: absolute;
  content: "";
  background-image: url(../images/hd_calendar.png);
  width: 1.83vw;
  height: 2.091vw;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
}

/* changeNav */
header#mainnav.changeNav {
  background: var(--color-white);
  padding: 15px 0 10px 1.46vw;
}

/* nav__left */
header#mainnav.changeNav .nav__left {
  width: clamp(180px, 15.3vw, 210px);
}

header#mainnav.changeNav .nav__left img.mv_logo {
  display: none;
}

header#mainnav.changeNav .nav__left img.fix_logo {
  display: block;
}

/* nav__center */
header#mainnav.changeNav nav.gnav ul li {
  margin: 0 0.915vw;
}

header#mainnav.changeNav nav.gnav ul li a {
  color: var(--color-brown);
  font-size: clamp(1.2rem, 0.951vw, 1.8rem);
  font-weight: 500;
  padding-bottom: 0;
}

header#mainnav.changeNav nav.gnav ul li a span {
  font-size: 1rem;
}

header#mainnav.changeNav nav.gnav ul li a:hover {
  color: var(--color-txt-gold);
}

/* nav__right */
header#mainnav.changeNav .nav__right a {
  color: var(--color-brown);
  font-weight: 500;
}

header#mainnav.changeNav .nav__right a:hover {
  color: var(--color-txt-gold);
}

header#mainnav.changeNav .nav__right a::before {
  background-image: url(../images/hd_calendar_br.png);
}

header#mainnav.changeNav nav.gnav ul li a::after,
header#mainnav.changeNav .nav__right a::after {
  content: none;
}

/* 下層 */
header.under__nav .nav__left img.mv_logo {
  display: none;
}

header.under__nav .nav__left img.fix_logo {
  display: block;
}

.under__nav nav.gnav ul li a,
.under__nav .nav__right a {
  color: var(--color-brown);
  font-weight: 500;
}

header#mainnav.under__nav .nav__right a::before {
  background-image: url(../images/hd_calendar_br.png);
}

@media screen and (max-width: 1100px) {
  nav.gnav ul li {
    margin: 0 0.8vw;
  }
}

@media screen and (max-width: 1024px) {

  header#mainnav,
  header#mainnav.changeNav {
    padding: 10px 0 10px 10px;
  }

  /* nav__left */
  header .nav__left {
    width: clamp(180px, 19.53vw, 200px);
  }

  header#mainnav.changeNav .nav__left {
    width: clamp(150px, 12.53vw, 200px);
  }

  .nav__right {
    padding-right: 50px;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100vh;
    background: var(--color-white);
    transition: all 0.2s ease-out;
    z-index: 200;
    overflow-y: auto;
    padding: 40px 20px;
  }

  .nav__right a {
    padding-left: 30px;
    font-size: 1.6rem;
  }

  .nav__right a::before {
    width: 25px;
    height: 25.6px;
  }

  nav.gnav ul.nav__menu {
    display: block;
  }

  nav.gnav ul li,
  header#mainnav.changeNav nav.gnav ul li {
    margin: 0;
  }

  nav.gnav.global__nav ul.nav__menu li a,
  header#mainnav.changeNav nav.gnav ul li a,
  nav.gnav ul.sp__nav li a {
    margin: 0 0 18px 0;
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 500;
  }

  nav.gnav.global__nav ul.nav__menu li a span,
  header#mainnav.changeNav nav.gnav ul li a span,
  nav.gnav ul.sp__nav li span {
    font-size: 1rem;
  }

  nav.gnav .sp__nav {
    display: block;
    color: var(--color-brown);
  }

  nav.gnav .sp__nav li:first-child,
  header#mainnav.changeNav nav.gnav .sp__nav li:first-child {
    max-width: 300px;
    margin: 0 auto;
  }

  nav.gnav .sp__nav li:first-child a,
  header#mainnav.changeNav nav.gnav .sp__nav li:first-child a {
    padding: 5px 0 10px;
    background: var(--color-txt-gold);
    color: var(--color-white);
  }

  nav.gnav .sp__nav li .img-logo {
    display: block;
    max-width: 210px;
    margin: 30px auto 0;
  }

  nav.gnav .sp__nav li.nav_social,
  header#mainnav.changeNav nav.gnav ul li.nav_social {
    margin-top: 40px;
    text-align: center;
  }

  nav.gnav .sp__nav li.nav_social a,
  header#mainnav.changeNav nav.gnav ul li.nav_social a {
    display: inline-block;
    max-width: 15px;
    margin: 0 15px 0 0 !important;
  }

  nav.gnav .sp__nav li.nav_social a:last-of-type,
  header#mainnav.changeNav nav.gnav ul li.nav_social a:last-of-type {
    margin: 0 !important;
  }

  nav.gnav .sp__nav li.nav_social a img {
    margin: 0;
  }

  .hamburger {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 300;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    right: 20px;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.2s ease-out;
  }

  header#mainnav.changeNav .hamburger__line {
    background-color: var(--color-brown);
  }

  .hamburger__line--1 {
    top: 24px;
  }

  .hamburger__line--2 {
    top: 30px;
  }

  .hamburger__line--3 {
    top: 36px;
  }

  /* back__bg */
  .back__bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  body.nav-open {
    overflow: hidden;
  }

  .nav-open .global__nav {
    right: 0;
    background: var(--color-bgBeige);
  }

  .nav-open nav.gnav ul li a,
  .nav-open .nav__right a {
    color: var(--color-brown);
  }

  .nav-open .hamburger__line {
    background-color: var(--color-brown);
  }

  .nav-open .back__bg {
    opacity: 0.7;
    visibility: visible;
  }

  /* line close */
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 26px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    right: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 26px;
  }

  header#mainnav.under__nav .hamburger__line {
    background: var(--color-brown);
  }
}

@media screen and (max-width: 520px) {
  .nav__right {
    display: none;
  }

  nav.global__nav {
    width: 100%;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  padding-bottom: 80px;
  position: relative;
}

.section {
  padding-top: 80px;
}

/* btn */
.btnArea a,
.btnArea span {
  font-size: 2rem;
  position: relative;
  padding-right: 45px;
  z-index: 1;
}

.btnArea a::before,
.btnArea span::before {
  position: absolute;
  content: "";
  background-image: url(../images/btn_arrow.png);
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.btnArea a:hover {
  opacity: 1;
  color: var(--color-black);
}

.btnArea a:hover::before {
  right: -10px;
}

@media screen and (max-width: 768px) {
  section {
    padding-bottom: 50px;
  }

  .section {
    padding-top: 50px;
  }

  .btnArea {
    margin-top: 30px;
  }

  .btnArea a {
    font-size: 1.8rem;
  }

  .btnArea a::before {
    width: 30px;
    height: 30px;
  }
}

/*================================================
* commonAccess
================================================*/
#commonAccess {
  padding-bottom: 110px;
}

#commonAccess iframe {
  width: 100%;
  height: 31.11vw;
}

#commonAccess ul.flex {
  flex-wrap: nowrap;
  max-width: 1020px;
  margin-top: -80px;
}

#commonAccess ul li:first-child {
  padding-bottom: 0 10px 15px 0;
}

#commonAccess ul li:first-child h2 {
  margin-bottom: 25px;
}

#commonAccess ul li:first-child p {
  position: relative;
  padding-left: 25px;
}

#commonAccess ul li:first-child p:first-of-type::before,
#commonAccess ul li:first-child p:nth-of-type(2)::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#commonAccess ul li:first-child p:first-of-type::before {
  background-image: url(../images/icon_access01.png);
  width: 15px;
  height: 20px;
}

#commonAccess ul li:first-child p:nth-of-type(2)::before {
  background-image: url(../images/icon_access02.png);
  width: 21px;
  height: 10px;
}

#commonAccess ul li:first-child p a {
  border-bottom: 1px solid;
}

#commonAccess ul li:nth-child(3) {
  background: var(--color-bgBeige);
  padding: 65px 5.856vw 30px 5.856vw;
}

#commonAccess ul li:nth-child(3) p:first-of-type {
  width: 18.3vw;
  margin: 0 auto 40px;
}

#commonAccess ul li:nth-child(3) p {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #commonAccess {
    padding-top: 50px;
    padding-bottom: 0;
  }

  #commonAccess ul.flex {
    flex-wrap: wrap;
    margin-top: 0;
    padding: 0;
  }

  #commonAccess ul li {
    width: 100%;
  }

  #commonAccess ul li:first-child {
    padding: 0 15px;
    max-width: 700px;
    margin: 0 auto 20px;
  }

  #commonAccess iframe {
    height: clamp(200px, 53.33vw, 300px);
  }

  #commonAccess ul li:nth-child(3) p:first-of-type {
    width: clamp(200px, 53.33vw, 300px);
  }

  #commonAccess ul li:nth-child(3) {
    padding: 50px 15px;
  }

  #commonAccess ul li:nth-child(3) p {
    max-width: 700px;
    margin: 0 auto 15px;
  }
}

/*================================================
* commonReserve
================================================*/
/* commonReserve__outer */
.commonReserve__outer {
  display: block;
  width: 100%;
  height: 100%;
}

.commonReserve__outer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 60%);
  transition: all 0.4s;
  z-index: 1;
}

.commonReserve__outer:hover::before {
  background: rgb(255 255 255 / 80%);
}

.commonReserve__outer:hover .btnArea span::before {
  right: -10px;
}

/* commonReserve */
#commonReserve {
  padding-top: 70px;
  padding-bottom: 90px;
  background: url(../images/bg_reserve.jpg) no-repeat center top/cover;
  height: 100%;
  color: var(--color-brown);
}

/* ill */

#commonReserve::before,
#commonReserve::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  z-index: 1;
}

#commonReserve::before {
  background-image: url(../images/ill_reserve01.png);
  width: clamp(220px, 18.3vw, 400px);
  height: clamp(56px, 4.64vw, 102px);
  top: -30px;
  left: 0;
}

#commonReserve::after {
  background-image: url(../images/ill_reserve02.png);
  width: clamp(120px, 10.24vw, 300px);
  height: clamp(84px, 7.17vw, 211px);
  top: -65px;
  right: 7.5%;
}

#commonReserve p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}

#commonReserve .btnArea a:hover {
  opacity: 1;
  color: var(--color-brown);
}

@media screen and (max-width: 768px) {
  #commonReserve {
    padding-bottom: 70px;
  }

  #commonReserve::before {
    width: 190px;
    height: 48px;
    left: -10px;
    top: -20px;
  }

  #commonReserve::after {
    width: 100px;
    height: 70px;
    top: auto;
    bottom: -20px;
    right: 10px;
  }

  #commonReserve h2 {
    font-size: clamp(1.9rem, 5.88vw, 2.3rem);
  }

  #commonReserve p {
    font-size: 1.4rem;
    width: calc(100% - 20px);
    margin: 0 auto 20px;
  }
}

/*================================================
 *  footer / フッター
 ================================================*/
footer {
  padding: 70px 0 0;
  position: relative;
  background: var(--color-bgBeige);
  overflow: hidden;
}

/* ill */
footer::before,
footer::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

footer::before {
  background-image: url(../images/ft_ill01.png);
  width: 126px;
  height: 64px;
  top: 150px;
  right: 20.71vw;
}

footer::after {
  background-image: url(../images/ft_ill02.png);
  width: 73.2vw;
  height: 13.25vw;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 769px;
  min-height: 139px;
}

footer .wrap {
  padding: 0 10px 20px;
  z-index: 1;
}

/* ft__company */
.ft__company {
  margin-right: 8.27vw;
}

.ft__company h1 {
  width: 200px;
}

.ft__company p {
  font-family: "Arsenal", sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: var(--color-primary);
  margin: 50px 0 5px;
}

.ft__company ul li {
  display: inline-block;
  width: 25px;
  margin-right: 25px;
}

.ft__company ul li a {
  width: 100%;
  height: 100%;
  display: block;
}

/* ft__menu */
.ft__menu {
  padding: 30px 0 90px;
  line-height: 1;
}

.ft__menu ul:first-of-type {
  margin-right: 50px;
}

.ft__menu ul li:not(:last-child) {
  margin-bottom: 20px;
}

.copy {
  width: 100%;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
  text-align: center;
  z-index: 1;
}

.copy span {
  background: var(--color-bgBeige);
}

@media screen and (max-width: 768px) {
  footer::before {
    width: 100px;
    height: 95px;
    top: auto;
    bottom: 30vw;
    right: 12vw;
  }

  /* ill */
  footer::after {
    background-image: url(../images/ft_ill02-sp.png);
    width: 100vw;
    height: 32vw;
    min-width: unset;
    min-height: unset;
    bottom: 0;
  }

  footer .wrap {
    max-width: 600px;
    padding: 0 15px 20px;
  }

  .ft__company {
    width: 100%;
    margin: 0 0 50px;
  }

  .ft__company p {
    margin: 40px 0 5px;
  }

  .ft__menu {
    width: 100%;
    padding: 0 0 40px;
  }

  .ft__menu ul {
    width: 100%;
  }

  .ft__menu ul li {
    margin-bottom: 15px;
  }
}

/*================================================
 *  pagetop
 ================================================*/
#pagetop {
  position: fixed;
  right: 30px;
  bottom: 10px;
  cursor: pointer;
  z-index: 98;
}

#pagetop .arrow-up {
  font-family: "Arsenal", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
}

#pagetop .arrow-up::before {
  position: absolute;
  content: "";
  background-image: url(../images/pagetop.png);
  width: 12.66px;
  height: 13.6px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  #pagetop {
    right: 15px;
  }
}

/*================================================
* fade
================================================*/
#topAbout h2::before,
#topNews .social::before,
#topFaq .wide_wrap::after,
#topReserve::before,
#topReserve::after,
footer::before {
  transition: 0.4s;
  opacity: 0;
  z-index: 1;
}

#topAbout h2.started::before,
#topNews .social.started::before,
#topFaq .wide_wrap.started::after,
#topReserve.started::before,
#topReserve.started::after,
footer.started::before {
  opacity: 1;
}

#topReserve.started::after,
footer.started::before {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/*= * fade ===================*/
.fadeUp,
.fadeUp01,
.fadeUp02,
.fadeUp03,
.fadeUp04 {
  position: relative;
  opacity: 0;
  bottom: -10px;
}

.fadeUp.started,
.fadeUp01.started,
.fadeUp02.started,
.fadeUp03.started,
.fadeUp04.started,
.fadeUp.ended,
.fadeUp01.ended,
.fadeUp02.ended,
.fadeUp03.ended,
.fadeUp04.ended {
  opacity: 1;
  transition: 0.4s;
  bottom: 0px;
}

.fadeUp01.started,
.fadeUp01.ended {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.fadeUp02.started,
.fadeUp02.ended {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.fadeUp03.started,
.fadeUp03.ended {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fadeUp04.started,
.fadeUp04.ended {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

/*================================================
 *  下層共通パーツ
================================================*/
/*================================================
 *  sub__main
================================================*/
#sub__main {
  height: 60vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

#sub__main::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(246 245 242 / 70%);
}

#sub__main .wrap {
  position: relative;
  height: 100%;
}

#sub__main .wrap .sub__ttl {
  position: absolute;
  top: 50%;
  left: 0;
}

@media screen and (max-width: 768px) {
  #sub__main {
    height: 40vh;
  }

  #sub__main .wrap .sub__ttl {
    left: 20px;
  }
}

/*================================================
 *  sub__main あしらい
================================================*/
#sub__main::after,
#sub__main .wrap::before,
#sub__main .wrap::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

/* class="ill_pattern01" */
#sub__main.ill_pattern01 .wrap::before {
  background-image: url(../images/parts/sub_ill01-1.png);
  width: 10.98vw;
  height: 5.49vw;
  bottom: -10%;
  right: 2%;
  transform: rotate(10deg);
}

#sub__main.ill_pattern01 .wrap::after {
  background-image: url(../images/parts/sub_ill01-2.png);
  width: 24.96vw;
  height: 1.09vw;
  bottom: -5px;
  left: 0%;
}

/* class="ill_pattern02" */
#sub__main.ill_pattern02::after {
  background-image: url(../images/parts/sub_ill02.png);
  width: clamp(550px, 49.78vw, 1500px);
  height: clamp(80px, 7.24vw, 218px);
  bottom: 0;
  right: 10px;
}

@media screen and (max-width: 768px) {

  /* pattern01 */
  #sub__main.ill_pattern01 .wrap::before {
    width: clamp(100px, 26.04vw, 120px);
    height: clamp(50px, 13.02vw, 60px);
    right: 2%;
  }

  #sub__main.ill_pattern01 .wrap::after {
    width: clamp(130px, 26.04vw, 200px);
    height: clamp(6px, 1.17vw, 9px);
    bottom: -3px;
  }

  /* pattern02 */
  #sub__main.ill_pattern02::after {
    background-image: url(../images/parts/sub_ill02-sp.png);
    width: clamp(300px, 78.125vw, 450px);
    height: clamp(66px, 17.18vw, 99px);
  }
}

/*================================================
 *  タイトル あしらい / テキスト
================================================*/
h2.leaf span::after,
h2.bird span::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  z-index: -1;
}

/* h2 leaf */
h2.leaf span::after {
  background-image: url(../images/parts/ttl_leaf.png);
  width: 55px;
  height: 42px;
  top: -30px;
  right: -150px;
}

h2.leaf.ac span::after {
  left: -150px;
  right: auto;
}

/* h2 bird */
h2.bird span::after {
  background-image: url(../images/parts/ttl_bird.png);
  width: 45px;
  height: 43px;
  top: -40px;
  right: -150px;
  transform: rotate(10deg);
}

h2.bird.ac span::after {
  right: auto;
  left: -50px;
}

/* h3 */
h3.dotted {
  border-bottom: 3px solid #deedce;
  padding-bottom: 5px;
  margin: 10px 0 20px;
}

h3.dotted span {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-right: 10px;
}

/* h3 bg */
h3.bg {
  background: #e5ded3;
  padding: 5px 0 5px 10px;
  margin: 10px 0 20px;
}

h3.bg span {
  color: var(--color-brown);
  font-size: 1.2rem;
  margin-right: 10px;
}

/* h4 */
h4.sub__h4 {
  font-size: 1.6refm;
  margin-bottom: 20px;
  padding-left: 1em;
  position: relative;
}

h4.sub__h4::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-primary);
}

/* 下線 */
.sub__border {
  background: linear-gradient(transparent 70%, #deedce 70%);
}

/* リンク */
.sub__link {
  border-bottom: 1px solid;
  color: var(--color-primary);
  font-weight: 600;
}

.sub__link__borderless {
  color: var(--color-primary);
  font-weight: 600;
}

@media screen and (max-width: 768px) {

  /* あしらいタイトル */
  /* h2 leaf */
  h2.leaf span::after {
    width: 45px;
    height: 35px;
    top: -35px;
    right: 0;
  }

  h2.leaf.ac span::after {
    left: -50px;
    right: auto;
  }

  /* h2 bird */
  h2.bird span::after {
    width: 35px;
    height: 33px;
    top: -35px;
    right: 0;
  }

  h2.bird.ac span::after {
    left: -50px;
  }
}

/*================================================
 *  テーブル リスト
================================================*/
/* 表 */
.sub__table table {
  margin: 0 auto 30px;
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
}

.sub__table th,
.sub__table td {
  text-align: center;
  padding: 10px 0;
}

.sub__table .bg {
  background: var(--color-txt-gold);
  color: var(--color-white);
  font-size: 1.6rem;
}

.sub__table th {
  width: 20%;
  background: #e5ded3;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-brown);
}

.sub__table td {
  background: #f6f5f2;
  font-size: 1.6rem;
}

.sub__table p.sp {
  display: none;
}

/* sub__list */
.sub__list li {
  padding-left: 1em;
  margin-bottom: 0.5em;
  position: relative;
}

.sub__list li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {

  /* 表 768pxから横スクロール */
  .sub__table {
    overflow: scroll;
    margin-bottom: 20px;
  }

  .sub__table table {
    width: 680px;
    margin-bottom: 0;
  }

  /* .sub__table th.bg, */
  .sub__table th {
    width: 20%;
    font-size: 1.4rem;
  }

  .sub__table td.bg,
  .sub__table td {
    font-size: 1.4rem;
    width: 20%;
  }

  .sub__table p.sp {
    display: block;
    margin: 10px 0;
  }

  .sub__table p.sp img {
    width: 1em;
    vertical-align: top;
    margin-right: 10px;
  }
}

/*================================================
 *  ボタン
================================================*/
.sub__btn {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .sub__btn {
    margin-top: 30px;
  }
}

/*================================================
 *  背景
================================================*/
/*================================================
* bg__dot
================================================*/
#bg__dot {
  background: url(../images/bg_dotted.png) no-repeat center top/cover;
  height: 100%;
}

#bg__circle {
  background: var(--color-bgBeige);
  position: relative;
}

#bg__circle::before,
#bg__circle::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

#bg__circle::before {
  background-image: url(../images/parts/bg_circle01.png);
  width: 21.96vw;
  height: 2.196vw;
  top: -2.196vw;
  left: 0;
}

#bg__circle::after {
  background-image: url(../images/parts/bg_circle02.png);
  width: 21.96vw;
  height: 3.66vw;
  bottom: -3.66vw;
  right: 0;
}

@media screen and (max-width: 768px) {
  #bg__circle::before {
    width: 200px;
    height: 20px;
    top: -20px;
  }

  #bg__circle::after {
    width: 200px;
    height: 33px;
    bottom: -33px;
  }
}

/* section */
.secstion {
  display: block;
}

/* col-md-12 */
/* .col-md-12 {
  position: relative;
  min-height: 1px;
  padding-left: 20px;
  padding-right: 20px;
  float: left;
} */

@media screen and (min-width: 992px) {
  .col-md-12 {
    width: 100%;
  }
}

/* l-vision__wrapper */
.l-vision__wrapper {
  width: 100%;
  background-color: #fafafa;
  padding-bottom: 50px;
}

.l-vision__wrapper .container {
  max-width: 100%;
  margin: 0px auto;
  padding-bottom: 20px;
}

.l-vision__wrapper .content {
  width: 100%;
  height: 100%;
}

.l-vision__wrapper .content-item {
  width: 100%;
  height: 100%;
}

.l-vision__wrapper .text {
  padding: 50px;
}

.l-vision__wrapper .text .heading {
  margin: 0px 0px 40px 0px;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .l-vision__wrapper .container .content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .l-vision__wrapper .content-item {
    width: 50%;
    height: 100%;
  }
}

/* l-service__wrapper */
.l-service__wrapper {
  width: 100%;
  background-color: #fafafa;
  padding-bottom: 50px;
}

.l-service__wrapper .container {
  max-width: 100%;
  margin: 0px auto;
  padding-bottom: 20px;
}

.l-service__wrapper .content-item {
  width: 100%;
}

.l-service__wrapper .text {
  padding: 50px;
}

.l-service__wrapper .text .heading {
  margin: 0px 0px 40px 0px;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .l-service__wrapper .container .content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .l-service__wrapper .content {
    flex-direction: row-reverse;
  }
}

/* jisyu__list */
.jisyu__list {
  margin-top: 50px;
  padding: 20px;
  border: 1px dashed #ccc;
}

.jisyu__list__text {
  line-height: 34px;
}

.jisyu__list__text+.jisyu__list__text {
  margin: 20px 0 0;
}

.jisyu__list__border {
  background: linear-gradient(transparent 70%, #fff9c4 0%);
  font-weight: 700;
}

/* event_detail */
.event_detail {
  padding-top: 30px;
}

.event_section {
  padding-top: 30px;
}

/* fh5co-align-right */
.fh5co-align-right-qr {
  width: 90px;
  height: auto;
  float: right;
  position: absolute;
  right: 0;
  bottom: 120;
}

@media screen and (min-width: 768px) {
  .fh5co-align-right-qr {
    width: 120px;
  }
}

@media screen and (min-width: 992px) {
  .fh5co-align-right-qr {
    width: 180px;
  }
}

/* t12  */
.t12 {
  margin: 20px 0 0;
  display: flex;
  gap: 20px;
}

.t12__text {
  position: relative;
  flex: 1;
  padding: 20px 20px 30px;
  background-color: rgb(238, 250, 255);
}

.t12__text--dif {
  background-color: #ffeed5;
}

.t12__image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cccccc;
}

/* fh5co-spacer */
.fh5co-spacer {
  clear: both;
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
}

/* fh5co-spacer-lg */
.fh5co-spacer-lg {
  height: 100px;
}

/* row */
.row {
  margin-left: -20px;
  margin-right: -20px;
}

/* container */
.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
}

.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

@media (min-width: 768px) {
  .container {
    width: 760px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 980px;
  }
}

/* col-md-12 */
@media screen and (min-width: 992px) {
  .col-md-12 {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .col-md-1 {
    float: left;
  }
}

/* t09 */
.t09 {
  width: 40%;
  max-width: 300px;
  margin: 40px auto 0;
  margin-bottom: 80px;
  padding: 20px 0;
  background-color: #45cc45;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 0 #339933;
  transition: 0.2s;
}

.t09:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 #45cc45;
}

.t09__text {
  color: #fff;
}

.t09__icon {
  fill: #fff;
}

.t09__icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.wide_section {
  max-width: 1000px;
}

/* fujiclass */
.fujiclass {
  max-width: 700px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.fujiclass_title {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.fujiclass_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  text-align: center;
  background-image: -webkit-linear-gradient(left,
      transparent,
      #9a7d53 25%,
      #9a7d53 75%,
      transparent);
  background-image: linear-gradient(to right,
      transparent,
      #9a7d53 25%,
      #9a7d53 75%,
      transparent);
  background-position: center;
  background-repeat: no-repeat;
}

.fujiclass_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  text-align: center;
  background-image: -webkit-linear-gradient(left,
      transparent,
      #9a7d53 25%,
      #9a7d53 75%,
      transparent);
  background-image: linear-gradient(to right,
      transparent,
      #9a7d53 25%,
      #9a7d53 75%,
      transparent);
  background-position: center;
  background-repeat: no-repeat;
}

.fujiclass_title_img {
  width: 300px;
  min-width: 200px;
  margin: 0 0 1em 0;
}

.fujiclass_title_text {
  width: 500px;
  min-width: 200px;
  margin: 30px;
  font-size: 12px;
  padding-bottom: 0px;
}

.fujiclass_subtitle {
  text-align: center;
  margin: 1em 0 1em 0;
  font-size: 18px;
  color: #9a7d53;
}

.fujiclass_subtitle2 {
  text-align: center;
  margin: 1em 0 1em 0;
  font-size: 18px;
  color: #ffffff;
  background-color: #339933;
}

.fujiclass_content {
  display: flex;
  margin: auto;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.fujiclass_content_img {
  width: 400px;
  min-width: 200px;
  margin: 0 0 1em 0;
}

.fujiclass_content_text {
  width: 300px;
  min-width: 200px;
  margin: 20px;
  font-size: 12px;
  padding-bottom: 0px;
  text-align: center;
}

.fujiclass_content_text1 {
  font-size: 14px;
}

.fujiclass_content_text2 {
  font-size: 30px;
  color: blue;
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.fujiclass_content_text3 {
  font-size: 14px;
  font-weight: bold;
}

.fujiclass_content_text4 {
  font-size: 14px;
}

.fujiclass_footer {
  display: flex;
  flex-direction: row;
  background: rgba(240, 223, 255, 0.4);
  margin: 1em 0 1em 0;
  padding: 15px 15px 15px 15px;
}

.fujiclass_footer_block1 {
  width: 550px;
}

.fujiclass_footer_title {
  font-size: 20px;
  font-weight: bold;
  color: blue;
}

.fujiclass_footer_text {
  font-size: 13px;
}

.fujiclass_footer_block2 {
  width: 150px;
  text-align: center;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  margin: auto;
}

.fujiclass_footer_ticket {
  font-size: 15px;
  font-weight: bold;
  color: blue;
}

.fujiclass_footer_text2 {
  font-size: 12px;
  color: blue;
}

@media screen and (max-width: 480px) {
  .fujiclass {
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }

  .fujiclass_title {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .fujiclass_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    text-align: center;
    background-image: -webkit-linear-gradient(left,
        transparent,
        #e99f9f 25%,
        #e99f9f 75%,
        transparent);
    background-image: linear-gradient(to right,
        transparent,
        #e99f9f 25%,
        #e99f9f 75%,
        transparent);
    background-position: center;
    background-repeat: no-repeat;
  }

  .fujiclass_title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    text-align: center;
    background-image: -webkit-linear-gradient(left,
        transparent,
        #e99f9f 25%,
        #e99f9f 75%,
        transparent);
    background-image: linear-gradient(to right,
        transparent,
        #e99f9f 25%,
        #e99f9f 75%,
        transparent);
    background-position: center;
    background-repeat: no-repeat;
  }

  .fujiclass_title_img {
    width: 100px;
    min-width: 100px;
    margin: 0 0 1em 0;
  }

  .fujiclass_title_text {
    width: 100px;
    min-width: 150px;
    margin: 10px;
    font-size: 8px;
    padding-bottom: 0px;
  }

  .fujiclass_subtitle {
    text-align: center;
    margin: 1em 0 1em 0;
    font-size: 12px;
    color: #339933;
  }

  .fujiclass_subtitle2 {
    text-align: center;
    margin: 1em 0 1em 0;
    font-size: 12px;
    color: #ffffff;
    background-color: #339933;
  }

  .fujiclass_content {
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .fujiclass_content_img {
    min-width: 100px;
    margin: 0 0 1em 0;
  }

  .fujiclass_content_text {
    min-width: 150px;
    margin: 5px;
    padding-bottom: 0px;
    text-align: center;
  }

  .fujiclass_content_text1 {
    font-size: 8px;
  }

  .fujiclass_content_text2 {
    font-size: 12px;
    color: blue;
    background: linear-gradient(transparent 60%, #ff6 60%);
  }

  .fujiclass_content_text3 {
    font-size: 9px;
    font-weight: bold;
  }

  .fujiclass_content_text4 {
    font-size: 9px;
  }

  .fujiclass_footer {
    display: flex;
    flex-direction: row;
    background: rgba(240, 223, 255, 0.4);
    margin: 1em 0 1em 0;
    padding: 5px;
  }

  .fujiclass_footer_block1 {
    width: 250px;
    line-height: 14px;
  }

  .fujiclass_footer_title {
    font-size: 12px;
    font-weight: bold;
    color: blue;
  }

  .fujiclass_footer_text {
    font-size: 9px;
  }

  .fujiclass_footer_block2 {
    width: 100px;
    text-align: center;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    margin: auto;
    line-height: 15px;
  }

  .fujiclass_footer_ticket {
    font-size: 10px;
    font-weight: bold;
    color: blue;
  }

  .fujiclass_footer_text2 {
    font-size: 8px;
    color: blue;
  }
}