@charset "utf-8";

/* Define
--------------------------------------*/
:root {
  --maincolor: #ff8d0f;
  --subcolor: #f2a73b;
  --hovercolor: #f2a73b;
  --marker: #fffe26;
  --swiper-theme-color: #fff !important;
}

/* Reset
--------------------------------------*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%;
}

legend {
  color: #000;
}

#yui3-css-stamp.cssreset {
  display: none;
}

/* ----------------------------------------------------------------------------
  COMMON
----------------------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
  scroll-padding-top: 58px;
  position: relative;
}

body {
  font-family: "Noto Sans JP", "Avenir", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  position: relative;
  background: #000;
  word-break: break-all;
}

body.active {
  overflow-y: hidden;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 20px;
  word-break: break-all;
}

/* Font */

.lighter {
  font-weight: lighter;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.exbold {
  font-weight: 900;
}

.inner {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.onlySp {
  display: none !important;
}

.none {
  display: none;
}

.fade_up {
  transform: translateY(30px);
  opacity: 0;
  transition: all ease 0.4s;
}

.fade_up.scrolled {
  opacity: 1;
  transform: translateY(0px);
}

.mt40 {
  margin-top: 40px;
}

.speed01 {
  transition-delay: 0.1s;
}

.speed02 {
  transition-delay: 0.2s;
}

.speed03 {
  transition-delay: 0.3s;
}

.speed04 {
  transition-delay: 0.4s;
}

.speed05 {
  transition-delay: 0.5s;
}

.speed07 {
  transition-delay: 0.7s;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), color-stop(40%, var(--marker)));
  background: linear-gradient(rgba(255, 255, 255, 0) 40%, var(--marker) 60%);
  padding-bottom: 8px;
  font-weight: 900;
}

.centering {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video2 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}

.video2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fluffy {
  animation: fluffy1 3s ease infinite;
}

@keyframes fluffy1 {
  0% {
    transform: translateX(0);
  }

  5% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-15px);
  }

  25% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(-15px);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(0);
  }
}

.frog {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0%,
  100% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }
}

figure {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

figure {
  position: relative;
}

figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

figure:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* navigation */
#header #pcNav {
  height: 100%;
  align-items: center;
}

#header #pcNav li {
  text-align: center;
}

#header #pcNav li a {
  color: #fff;
  display: block;
  padding: 4px 8px;
  box-sizing: border-box;
  transition: all ease 0.4s;
  position: relative;
}

#header #pcNav li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all ease 0.4s;
}

#header #pcNav li a:hover::after {
  width: 100%;
}

#header #pcNav li a:hover {
  opacity: 0.8;
}

#header #spNav {
  position: fixed;
  z-index: 1000;
  right: 14px;
  top: 14px;
  transition: all ease 0.4s;
  cursor: pointer;
}

#header #spNav .toggle {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
}

#header #spNav .toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all ease 0.4s;
}

#header.show #spNav .toggle i {
  background-color: #fff;
}

#header #spNav .toggle i:nth-child(1) {
  top: 0;
}

#header #spNav .toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

#header #spNav .toggle i:nth-child(3) {
  bottom: 0;
}

#header.show .toggle i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}

#header.show .toggle i:nth-child(2) {
  opacity: 0;
}

#header.show .toggle i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}

#header #spMenu {
  position: fixed;
  z-index: -100;
  display: block;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
  background: -moz-linear-gradient(-45deg, #000000, #4a4a4a 50%, #000000);
  background: -webkit-linear-gradient(-45deg, #000000, #4a4a4a 50%, #000000);
  background:
    /*url(../img/icon1.png) no-repeat, */ linear-gradient(-45deg, #000000, #4a4a4a 50%, #000000);
  background-size: contain, auto;
  background-position: center center;
}

#header.show #spMenu {
  opacity: 1;
  visibility: visible;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: var(--maincolor); */
}

#header #spMenu ul {
  display: none;
}

#header.show #spMenu ul {
  display: block;
  padding: 12% 8%;
  box-sizing: border-box;
}

#header #spMenu a {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.6% 0;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.4%;
  transition: all ease 0.4s;
}

#header #spMenu a:hover {
  color: #ffa400;
}

#header #spMenu a span {
  font-size: 1rem;
  margin-left: 8px;
}

#header.show #spMenu ul#snsNavSp {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

#snsNavSp li {
  width: 8%;
  padding-right: 20px;
}

#header .logo img {
  transition: all ease 0.4s;
}

#header .logo img:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

/* topBtn */
#footer #topBtn.show {
  opacity: 1;
  transform: translateY(0px);
}

#footer #topBtn {
  opacity: 0;
  transform: translateY(20px);
  position: fixed;
  z-index: 100;
  right: 1.5%;
  bottom: 20px;
  padding: 2px;
  transition: all ease 0.4s;
}

#footer #topBtn a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../img/arrow/arrow01w.png) no-repeat, #000;
  background-size: 20px;
  background-position: center;
  box-sizing: border-box;
  transform: rotate(-90deg);
  transition: all ease 0.4s;
  border: 2px solid #fff;
}

#footer #topBtn a:hover {
  background: url(../img/arrow/arrow01w.png) no-repeat, var(--maincolor);
  background-size: 20px;
  background-position: center;
  box-shadow: 1px 1px 20px #fff;
}

/* popup */
.lum-lightbox-image-wrapper img {
  width: 70% !important;
  max-height: 70vh !important;
  object-fit: contain;
  margin: 0 auto;
}

.lum-gallery-button {
  display: none !important;
}

/* ----------------------------------------------------------------------------
  ORIGINAL
----------------------------------------------------------------------------*/

/* Delete Later */
html {
  min-height: 2000px;
}

/* HEADER
--------------------------------------*/

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all ease 0.4s;
  background: #000;
}

#header .box {
  width: 90%;
  margin: 0 auto;
  padding: 2px 0;
  transition: all ease 0.4s;
}

#header .flex01 {
  width: 46%;
  max-width: 300px;
  transition: all ease 0.4s;
}

#header .flex02 {
  display: none !important;
  width: 60%;
  max-width: 620px;
  transition: all ease 0.4s;
}

#header .flex03 {
  width: 14%;
  max-width: 120px;
  transition: all ease 0.4s;
}

#header .flex03 #snsNav {
  align-items: center;
  height: 100%;
}

#header .flex03 #snsNav li {
  max-width: 30px;
}

/* SEC01
--------------------------------------*/

#sec01 {
  margin-top: 50px;
  position: relative;
}

#sec01 img {
  width: 100%;
  display: block;
}

#sec01 .sec01-btn {
  position: absolute;
  z-index: 1;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 20%;
}

#sec01 .sec01-btn img {
  transition: all ease 0.4s;
}

#sec01 .sec01-btn img:hover {
  transform: scale(1.1);
}

#sec01 .pop-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5%;
  width: 200px;
}

/* SEC02
--------------------------------------*/

#sec02 {
  padding: 2% 0;
  background: #000;
  border-top: 1px solid var(--maincolor);
  border-bottom: 1px solid var(--maincolor);
}

#sec02 .box {
  width: 60%;
  margin: 0 auto;
}

#sec02 .flex01 {
  width: 28%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sec02 .flex02 {
  width: 72%;
  padding: 1% 0;
  box-sizing: border-box;
}

#sec02 .ttl {
  color: var(--maincolor);
  font-weight: lighter;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

#sec02 .flex02 li {
  margin-bottom: 1%;
}

#sec02 .flex02 a {
  color: #fff;
  font-weight: lighter;
  letter-spacing: 0.05em;
  transition: all ease 0.4s;
  padding: 2.5px 0;
}

#sec02 .flex02 a span {
  display: inline-block;
  min-width: 26%;
}

#sec02 .flex02 a:hover {
  color: var(--maincolor);
}

#sec02 .newsArea {
  max-height: 100px;
  overflow: scroll;
  border: 1px solid #fff;
  padding: 10px 20px;
  box-sizing: border-box;
}

#sec02 .newsArea dt {
  width: 20%;
}

#sec02 .newsArea dd {
  width: 80%;
  padding-left: 4px;
  box-sizing: border-box;
}

#sec02 .newsArea dl a {
  color: #fff;
  font-weight: lighter;
  letter-spacing: 0.05em;
  transition: all ease 0.4s;
}

#sec02 .newsArea dl a:hover {
  color: var(--maincolor);
}

/* SEC03
--------------------------------------*/

#sec03 {
  padding: 2% 0 4%;
  background: url(../img/sec03-bg02.png) no-repeat -10% 110%, url(../img/sec03-bg03.png) no-repeat 110% 110%, #000;
  background-size: 30% auto, 30% auto;
}

#sec03 .txt01 {
  width: 56%;
  margin: 0 auto;
}

#sec03 .img01 {
  width: 100%;
}

#sec03 .img01 img {
  display: block;
  width: 100%;
}

/* SEC04
--------------------------------------*/

#sec04 {
  padding: 4% 0 6%;
  background: url(../img/sec04-bg01.png), #000;
  background-size: cover;
}

#sec04 .txt01 {
  width: 30%;
  margin: 0 auto 4%;
}

#sec04 .box {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

#sec04 .box2 {
  width: 80%;
  max-width: 1000px;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  box-sizing: border-box;
  margin: 20px auto 40px;
  box-shadow: 1px 1px 4px #000;
  border: 2px solid #baa988;
}

#sec04 .box2 .phone {
  width: 20%;
  margin: 0 auto 2px;
}

#sec04 .box2 .desc {
  color: #fff;
  font-weight: lighter;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-size: 0.9rem;
  width: 90%;
  margin: 0 auto;
}

#sec04 .box2 .desc span {
  font-weight: bold;
  color: red;
}

#sec04 .flex01 {
  width: 48%;
}

#sec04 .flex02 {
  width: 42%;
}

#sec04 .catch {
  font-size: 1.5rem;
  color: #f2a73b;
  font-family: serif;
  margin-bottom: 20px;
}

#sec04 ul {
  margin: 4% 0 8%;
}

#sec04 ul li {
  color: #fff;
  font-family: serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 2%;
  padding-left: 30px;
  position: relative;
}

#sec04 ul li::after {
  content: "◇";
  color: #f9d29d;
  display: inline-block;
  width: 20px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 1.5rem;
}

#sec04 .start {
  font-family: serif;
  font-size: 1.2rem;
  border: 1px solid #c2a65c;
  color: #c2a65c;
  background: #000;
  text-align: center;
  display: inline-block;
  width: 70%;
}

#sec04 .text1 {
  color: #fff;
  font-weight: lighter;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

#sec04 .bgBlack {
  font-family: serif;
  padding: 4px 20px;
  box-sizing: border-box;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  display: inline-block;
  color: #c2a65c;
  background: #000;
  margin-bottom: 8px;
}

/* SEC05
--------------------------------------*/

#sec05 .img01 {
  width: 100%;
  display: block;
  font-size: 0;
  margin-bottom: 0;
}

#sec05 .img01 img {
  display: block;
  width: 100%;
}

/* SEC06
--------------------------------------*/

#sec06 {
  padding: 600px 0 100px;
  position: relative;
  background: url(../img/sec06-bg01.png) no-repeat, #000;
  background-size: contain;
  background-position: 220px -60px;
}

#sec06 .img01 {
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
}

#sec06 .img01 img {
  display: block;
  width: 100%;
}

#sec06 p {
  color: #fff;
  text-align: center;
}

#sec06 .box {
  width: 100%;
  margin: 0 auto;
}

#sec06 .ttl {
  color: var(--subcolor);
  font-family: serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

#sec06 .desc {
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 4%;
}

#sec06 .btn {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  background: #000;
  padding: 12px;
  box-sizing: border-box;
  transition: all ease 0.4s;
}

#sec06 .btn:hover {
  cursor: pointer;
  box-shadow: 1px 1px 10px #ccc;
}

#sec06 .covid {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease 0.4s;
  overflow: hidden;
  padding: 0 4%;
  width: 70%;
  margin: 0 auto;
}

#sec06 .covid.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #ff8d0f;
  margin-top: 4%;
  box-shadow: 1px 1px 10px #ff8d0f;
}

#sec06 .covid .sub {
  border: 1px solid var(--subcolor);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--subcolor);
  line-height: 2;
}

#sec06 .covid .info {
  text-align: left;
  font-size: 0.9rem;
  font-weight: lighter;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 4%;
}

#sec06 .covid .info a {
  color: #fff;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#sec06 .covid .info a:hover {
  opacity: 0.7;
}

/* SEC07
--------------------------------------*/

#sec07 {
  padding: 400px 0 200px;
  position: relative;
  background: url(../img/sec07-bg01.png) no-repeat, url(../img/sec07-bg02.png) no-repeat, #000;
  background-size: 100% auto, 100% auto;
  background-position: center top, center 100%;
}

#sec07 .story {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  padding: 4%;
  box-sizing: border-box;
}

#sec07 .txt01 {
  width: 24%;
  margin: 0 auto 4%;
}

#sec07 .desc {
  color: #fff;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: lighter;
}

/* SEC07a
--------------------------------------*/

#sec07a {
  padding: 100px 0;
  background: #000;
}

#sec07a .btn01 {
  width: 50%;
  margin: 0 auto 40px;
}

#sec07a .btn01 img {
  transition: all ease 0.4s;
}

#sec07a .btn01 img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#sec07a .godzillaImg {
  width: 50%;
  margin: 0 auto 40px;
}

#sec07a .godzillaImg .btn {
  text-align: center;
  margin: 0 auto;
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  background: #000;
  padding: 12px;
  box-sizing: border-box;
  transition: all ease 0.4s;
  cursor: pointer;
}

#sec07a .godzillaImg .btn:hover {
  box-shadow: 1px 1px 10px #fff;
}

#sec07a .godzillaImg .accordion {
  color: #fff;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease 0.4s;
}

#sec07a .godzillaImg .accordion.open {
  color: #fff;
  opacity: 1;
  visibility: visible;
  height: auto;
}

#sec07a .gozImage {
  width: 70%;
  margin: 20px auto;
}

.gozDesc {
  text-align: center;
  font-family: serif;
  color: #f2a73a;
}

/* SEC08
--------------------------------------*/

#sec08 {
  background: #000;
}

#sec08 p.img01 {
  margin-bottom: 0;
}

#sec08 p.img01 img {
  display: block;
  width: 100%;
}

/* SEC09
--------------------------------------*/

#sec09 {
  padding: 2% 0 6%;
  background: url(../img/sec09-bg02.png) no-repeat, #000;
  background-size: 100% auto;
  background-position: bottom;
}

#sec09 .txt01 {
  width: 18%;
  margin: 0 auto 2%;
}

#sec09 .btn01 {
  width: 45%;
  margin: 0 auto 20px;
}

#sec09 .btn01 img {
  transition: all ease 0.4s;
}

#sec09 .btn01 img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#sec09 .box {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  margin-top: 50px;
}

#sec09 li {
  width: 50%;
  border: 1px solid #fff;
  box-sizing: border-box;
  color: #fff;
  padding: 1.5%;
  box-sizing: border-box;
  text-align: center;
  transition: all ease 0.4s;
}

#sec09 li:hover {
  cursor: pointer;
  color: var(--maincolor);
}

#sec09 li.active {
  background: var(--maincolor);
  color: #fff;
}

#sec09 .desc {
  padding: 6% 6% 2%;
  box-sizing: border-box;
  border: 1px solid #fff;
  box-sizing: border-box;
  background: url(../img/sec09-bg01.png) repeat-y;
  background-size: 100% auto;
}

#sec09 .single {
  margin-bottom: 8%;
}

#sec09 .catch {
  color: var(--subcolor);
  font-family: serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px;
}

#sec09 .subttl {
  font-size: 1.3rem;
  font-family: serif;
  color: #fff;
  text-align: center;
  border-top: 1px solid #c2a65c;
  border-bottom: 1px solid #c2a65c;
  padding: 1% 0;
  box-sizing: border-box;
  margin-bottom: 4%;
}

#sec09 .subttl .tax {
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 8px;
}

#sec09 .single .flex01 {
  width: 30%;
}

#sec09 .single .flex01 img {
  width: 100%;
  height: auto;
  max-width: 280px;
  max-height: 150px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

#sec09 .single .flex01 .comment {
  text-align: center;
  margin-top: 4%;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: lighter;
}

#sec09 .single .flex02 {
  width: 46%;
  margin-bottom: 4%;
  text-align: center;
}

#sec09 .single .flex02.special {
  margin: 0 auto 4%;
}

#sec09 .single .flex02 img {
  width: 70%;
  margin: 0 auto;
  height: auto;
  max-width: 280px;
  max-height: 140px;
  object-fit: contain;
}

#sec09 .single .flex02 .comment {
  text-align: left;
  padding-left: 50px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: lighter;
  margin-top: 10px;
  min-height: 50px;
}

#sec09 .single .flex02:nth-child(1) .comment {
  background: url(../img/sec09-txt02.png) no-repeat;
  background-size: 10% auto;
  background-position: left top;
}

#sec09 .single .flex02:nth-child(2) .comment {
  background: url(../img/sec09-txt03.png) no-repeat;
  background-size: 10% auto;
  background-position: left top;
}

#sec09 .single .flex02:nth-child(2) .comment a {
  color: #efd89c;
  text-decoration: underline;
  transition: all ease 0.4s;
  font-weight: lighter;
}

#sec09 .single .flex02:nth-child(2) .comment a:hover {
  opacity: 0.7;
}

#sec09 .single .flex02:nth-child(3) .comment {
  background: url(../img/sec09-txt04.png) no-repeat;
  background-size: 10% auto;
  background-position: left top;
}

#sec09 .single .flex02:nth-child(4) .comment {
  background: url(../img/sec09-txt05.png) no-repeat;
  background-size: 10% auto;
  background-position: left top;
}

#sec09 .tabArea {
  display: none;
}

#sec09 .tabArea.active {
  display: block;
}

#sec09 .moreInfo a {
  display: block;
  color: #fff;
  background: #ffac50;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 40px;
  transition: all ease 0.4s;
}

#sec09 .moreInfo a:hover {
  background: #ff8d0f;
}

/* SEC10
--------------------------------------*/

#sec10 {
  padding: 4% 0 6%;
  background: url(../img/sec10-bg01.png) no-repeat, #000;
  background-size: cover;
}

#sec10 .txt01 {
  width: 16%;
  margin: 0 auto 20px;
}

#sec10 .box {
  width: 80%;
  margin: 40px auto;
}

#sec10 .box::after {
  content: "";
  width: 48%;
  display: inline-block;
}

#sec10 .box .flex01 {
  width: 48%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

#sec10 .box .flex01 a {
  display: block;
  overflow: hidden;
}

#sec10 .box .flex01 a img {
  transition: all ease 0.4s;
}

#sec10 .box .name {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
}

#sec10 .goods {
  font-size: 1.4rem;
  color: #fff;
  margin: 2px 0;
  padding: 0 10px;
  font-family: serif;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 1px 1px 4px #000;
}

#sec10 .goods .price {
  margin-left: 20px;
}

#sec10 .desc {
  color: #fff;
  font-weight: lighter;
  letter-spacing: -0.03em;
  padding: 0 10px;
  font-family: serif;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 0;
}

#sec10 .btn {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  background: #000;
  border: 1px solid #897441;
  box-sizing: border-box;
}

#sec10 .btn a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  padding: 22px;
  box-sizing: border-box;
  transition: all ease 0.4s;
}

#sec10 .btn a:hover {
  background: #897441;
}

#sec10 .goodsnote {
  box-sizing: border-box;
  width: 80%;
  background: #333;
  font-size: 1rem;
  color: #fff;
  margin: 40px auto;
  padding: 20px 10px;
  font-family: serif;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 1px 1px 4px #000;
}

/* POPUP
--------------------------------------*/

.popupContents {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  transform: scale(0.2);
  color: #fff;
  padding: 7%;
  box-sizing: border-box;
  overflow: scroll;
}

.popupContents.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1000;
}

.popupContents i.fa-times-circle {
  color: #fff;
  font-size: 3rem;
  position: absolute;
  top: 3%;
  right: 3%;
  cursor: pointer;
  transition: all ease 0.4s;
}

.popupContents i.fa-times-circle:hover {
  transform: scale(1.1);
}

.popupContents i.fa-external-link-alt {
  margin-left: 1%;
}

.popupContents h3 {
  font-family: serif;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3%;
}

.popupContents h3:first-letter {
  color: var(--subcolor);
}

.popupContents h3 span {
  color: var(--pointcolor);
  font-size: 3.5rem;
  letter-spacing: 0.1em;
}

.popupContents .box {
  max-width: 1000px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.popupContents .desc {
  height: 100%;
  overflow-y: scroll;
}

.popupContents p {
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: 1.1rem;
  margin-bottom: 4%;
}

.popupContents .youtube {
  position: relative;
  width: 40%;
  margin: 0 auto;
  padding-top: 25%;
}

.popupContents .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.popupContents .link {
  margin-top: 2%;
}

.popupContents .link a {
  color: #78ffda;
  text-decoration: underline;
}

.popupContents .popcm .youtube {
  width: 80%;
  padding-top: 45%;
}

.popupContents .popcm h3 {
  color: #fff;
  letter-spacing: 0.4em;
}

.popupContents .popcm h3:first-letter {
  color: var(--pointcolor);
}

/* FOOTER
--------------------------------------*/

#footer .ttl {
  color: var(--subcolor);
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 4%;
}

#footer .single {
  width: 70%;
  margin: 0 auto 1%;
}

#footer .single a {
  color: #fff;
  transition: all ease 0.4s;
}

#footer .single a:hover {
  opacity: 0.7;
}

#footer .single dd.accordion a {
  color: #ff8d0f;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#footer .single dd.accordion a:hover {
  opacity: 0.7;
}

#footer .singleList {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--maincolor);
  border: 2px solid var(--maincolor);
  background: #000;
  padding: 1.4%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all ease 0.4s;
  user-select: none;
}

#footer .singleList:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 10px #05d4fe;
}

#footer .singleDesc {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease 0.4s;
  overflow: hidden;
  padding: 0 4%;
}

#footer .singleDesc.accordion {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  border: 3px solid #000;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}

#footer .singleDescBox {
  margin-bottom: 4%;
}

#footer .singleDescBox .subTtl {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 2%;
  border-bottom: 2px solid #000;
  padding-bottom: 1%;
}

#footer .singleDescBox .subDesc {
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  margin-bottom: 2%;
  line-height: 1.6;
}

#footer .singleDescBox .subDesc a {
  color: #22889d;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#footer .singleDescBox .subDesc a:hover {
  opacity: 0.7;
}

#footer .tweet {
  width: 70%;
  text-align: center;
  margin: 6% auto;
}

#footer .tweet a {
  display: block;
}

#footer .tweet img {
  display: block;
  margin: 0 auto;
  transition: all ease 0.4s;
}

#footer .tweet img:hover {
  transform: scale(1.1);
}

#footer .f_bnr {
  width: 48%;
}

#footer .f_bnr img {
  transition: all ease 0.4s;
}

#footer .f_bnr img:hover {
  opacity: 0.7;
  cursor: pointer;
}

#footer {
  padding: 6% 0;
  background: #000;
}

#footer .box {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

#footer .bnr {
  width: 80%;
  display: block;
  text-align: center;
  margin: 0 auto 3%;
}

#footer .bnr img {
  transition: all ease 0.4s;
}

#footer .bnr img:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

#footer .fLogo {
  width: 30%;
  display: block;
  text-align: center;
  margin: 4% auto 6%;
}

#footer .fLogo img {
  transition: all ease 0.4s;
}

#footer .fLogo img:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

#footer .desc {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
}

#footer .contact {
  color: #fff;
  text-align: center;
  margin-bottom: 8%;
}

#footer .ttlh3 {
  font-size: 2rem;
  display: inline-block;
  width: 40%;
  padding: 2% 0;
  color: var(--subcolor);
  border-top: 1px solid var(--subcolor);
  border-bottom: 1px solid var(--subcolor);
  margin-bottom: 6%;
}

#footer .single {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

#footer .single .ttlh4 {
  font-size: 1.2rem;
  color: var(--subcolor);
  font-weight: bold;
  margin-bottom: 2%;
  letter-spacing: 0.1em;
}

#footer .caution {
  color: #fff;
}

#footer .accordion {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease 0.4s;
  overflow: hidden;
  padding: 0 4%;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

#footer .accordion.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid #ff8d0f;
  margin-top: 4%;
  box-shadow: 1px 1px 10px #ff8d0f;
  width: 100%;
}

#footer dt.acBtn {
  position: relative;
  background: #efb54e;
  border-bottom: 3px solid #fff;
  font-size: 1rem;
  color: #000;
  padding: 10px 14px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  transition: all ease 0.4s;
}

#footer dt.acBtn .material-icons {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto;
  color: #000;
  transition: all ease 0.4s;
}

#footer dt.acBtn:hover {
  background: #dc9820;
}

#footer dd.accordion {
  padding: 12px;
  box-sizing: border-box;
}

#footer dd.accordion.open {
  border: none;
  box-shadow: none;
  padding: 0;
  background: #fff;
  color: #000;
  margin: 0px 0 20px;
  padding: 20px 12px;
  box-sizing: border-box;
}

#footer .accordion .ttl3 {
  font-size: 1.4rem;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--maincolor);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

#footer .accordion .ttl3:first-letter {
  color: var(--maincolor);
}

#footer .accordion .ttl4 {
  display: inline-block;
  font-size: 1rem;
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 6px 20px;
  box-sizing: border-box;
  margin-bottom: 16px;
  border-radius: 8px;
}

#footer .accordion .info {
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  font-weight: lighter;
}

#footer .accordion .info a {
  color: #fff;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#footer .accordion .info a:hover {
  opacity: 0.7;
}

#footer .accordion .contents {
  margin-bottom: 60px;
}

#footer.moreInfoFooter .accordion .contents {
  margin-bottom: 40px;
}

#footer .accordion .info span {
  color: var(--maincolor);
}

#footer.moreInfoFooter {
  padding: 4px 0 400px;
  background: #000;
}

/* SEC01 More
--------------------------------------*/

#sec01_more {
  margin-top: 52px;
}

#sec01_more img {
  width: 100%;
  display: block;
}

/* SEC02 More
--------------------------------------*/

#sec02_more .ttl {
  font-size: 2rem;
  font-family: serif;
  text-align: center;
  color: #c2a65c;
  padding: 18px 0;
  background: url(../img/sec09-bg01.png) repeat-y;
}

#sec02_more .box {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
}

#sec02_more .subttl {
  font-size: 1.6rem;
  font-family: serif;
  color: #fff;
  text-align: center;
  border-top: 1px solid #c2a65c;
  border-bottom: 1px solid #c2a65c;
  padding: 1% 0;
  box-sizing: border-box;
  margin-bottom: 4%;
}

#sec02_more .subttl .tax {
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 8px;
}

#sec02_more .single {
  margin-bottom: 40px;
}

#sec02_more .bgGray {
  background: #333;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

#sec02_more .bgGray2 {
  background: #333;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

#sec02_more .ttl4 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-family: serif;
  color: #c2a65c;
  text-align: center;
}

#sec02_more .material-icons {
  margin-top: 8px;
}

#sec02_more .bgGray2 .ttl4 {
  font-size: 1.3rem;
}

#sec02_more .add1 {
  width: 80%;
  line-height: 2;
  margin: 20px auto;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: lighter;
}

#sec02_more .text1 {
  color: #fff;
  font-weight: lighter;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

#sec02_more .text2 {
  color: #c2a65c;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

#sec02_more .text2 span {
  color: red;
  display: block;
}

#sec02_more .btn a {
  font-family: serif;
  display: block;
  font-size: 1.3rem;
  color: #c2a65c;
  border: 1px solid #c2a65c;
  border-radius: 30px;
  box-sizing: border-box;
  text-align: center;
  width: 50%;
  margin: 0 auto 60px;
  padding: 10px;
  transition: all ease 0.4s;
}

#sec02_more .btn a:hover {
  background: #c2a65c;
  color: #fff;
}

#sec02_more .btn2 a {
  font-family: serif;
  display: block;
  font-size: 1.3rem;
  color: #000;
  background: #c2a65c;
  border: 1px solid #c2a65c;
  border-radius: 30px;
  box-sizing: border-box;
  text-align: center;
  width: 50%;
  margin: 0 auto 40px;
  padding: 10px;
  transition: all ease 0.4s;
}

#sec02_more .btn2 a:hover {
  background: #55451b;
  border: 1px solid #c2a65c;
  color: #fff;
}

#sec02_more .bnr {
  text-align: center;
  width: 60%;
  margin: 40px auto 80px;
}

#sec02_more .sans {
  font-family: sans-serif;
}

#sec02_more .list {
  margin-bottom: 20px;
}

#sec02_more .list dt {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-family: serif;
  color: #c2a65c;
  text-align: center;
}

#sec02_more .list dd {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-family: serif;
  color: #fff;
  text-align: center;
}

#sec02_more .block {
  margin-bottom: 60px;
}

#sec02_more .tabBtn {
  width: 49%;
  color: #c2a65c;
  background: #333;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
}

#sec02_more .tabBtn.active {
  background: #26324a;
}

#sec02_more .tabArea {
  color: #fff;
  display: none;
  padding: 40px;
  box-sizing: border-box;
}

#sec02_more .tabArea.active {
  display: block;
}

#sec02_more .tabArea .fx01 {
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
}

#sec02_more .tabArea .fx01 img {
  width: 100%;
  display: block;
}

#sec02_more .tabArea .fx02 {
  width: 66%;
  padding: 40px 0;
  box-sizing: border-box;
  position: relative;
}

#sec02_more .tabArea .fx03 {
  width: 10%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

#sec02_more .tabArea .fx03 .num {
  font-size: 4rem;
  margin-right: 20px;
  color: #c2a65c;
  font-family: serif;
}

/*#sec02_more .tabArea .fx02::before {
  content: '1';
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 0;
  margin: auto;
  font-size: 4rem;
  margin-right: 20px;
  color: #c2a65c;
  font-family: serif;
}
*/
#sec02_more .tabArea .point {
  font-size: 1.5rem;
  font-weight: lighter;
  letter-spacing: 0.1em;
  font-family: sans-serif;
  color: #fff;
}

#sec02_more .tabArea .small {
  font-size: 0.9rem;
  font-weight: lighter;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #fff;
}

#sec02_more .tabArea .small a {
  color: #fff;
  text-decoration: underline;
}

#sec02_more .tabArea .acBtn {
  width: 100%;
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  background: #000;
  padding: 0.5%;
  box-sizing: border-box;
  transition: all ease 0.4s;
  text-align: center;
  cursor: pointer;
}

#sec02_more .tabArea .acBtn:hover {
  color: #fff;
  background: var(--maincolor);
}

#sec02_more .tabArea .accordion {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}

#sec02_more .tabArea .accordion.open {
  opacity: 1;
  font-size: 0.9rem;
  font-weight: lighter;
  height: auto;
  visibility: visible;
  background: #fff;
  color: #000;
  padding: 20px;
  box-sizing: border-box;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

#sec02_more .tabArea .point .num {
  font-size: 4rem;
  margin-right: 20px;
  color: #c2a65c;
  font-family: serif;
}

#sec02_more .tabArea .point .red {
  color: #cb0000;
}

#sec02_more .tabArea .point a {
  color: #c2a65c;
  text-decoration: underline;
}

#sec02_more .tabArea dl {
  margin-bottom: 10px;
}

#sec02_more .add1 a {
  color: #fff;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#sec02_more .add1 a:hover {
  opacity: 0.7;
}

#sec02_more .text1 {
  color: #fff;
  font-weight: lighter;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

#sec02_more .fuua {
  display: block;
  width: 20%;
  margin: 30px auto 10px;
}

#sec02_more .fuua img {
  display: block;
  transition: all ease 0.4s;
}

#sec02_more .fuua img:hover {
  transform: scale(1.1);
}

#footer.moreInfoFooter .single {
  width: 90%;
}

#footer.moreInfoFooter .singleList {
  font-weight: lighter;
}

#sec09 .subttl {
  font-size: 1.6rem;
  font-family: serif;
  color: #fff;
  text-align: center;
  border-top: 1px solid #c2a65c;
  border-bottom: 1px solid #c2a65c;
  padding: 1% 0;
  box-sizing: border-box;
  margin-bottom: 4%;
}

#sec09 .bgGray {
  background: #333;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

#sec09 .bgGray2 {
  background: #333;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

#sec09 .ttl4 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-family: serif;
  color: #c2a65c;
  text-align: center;
}

#sec09 .bgGray2 .ttl4 {
  font-size: 1.3rem;
}

#sec09 .add1 {
  width: 80%;
  margin: 20px auto;
  color: #fff;
  text-align: center;
  font-weight: lighter;
}

#sec09 .add1 a {
  color: #fff;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#sec09 .add1 a:hover {
  opacity: 0.7;
}

#sec09 .text1 {
  color: #fff;
  font-weight: lighter;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

#sec09 .fuua {
  display: block;
  width: 20%;
  margin: 30px auto 10px;
}

#sec09 .fuua img {
  display: block;
  transition: all ease 0.4s;
}

#sec09 .fuua img:hover {
  transform: scale(1.1);
}

#sec09 .text1 a {
  color: #fff;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#sec09 .text1 a:hover {
  opacity: 0.7;
}

#sec09 .text2 {
  color: #c2a65c;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

#sec09 .text2 span {
  color: red;
  display: block;
}

#sec09 .btn a {
  font-family: serif;
  display: block;
  font-size: 1.3rem;
  color: #c2a65c;
  border: 1px solid #c2a65c;
  border-radius: 30px;
  box-sizing: border-box;
  text-align: center;
  width: 50%;
  margin: 0 auto 60px;
  padding: 10px;
  transition: all ease 0.4s;
  background: #000;
}

#sec09 .btn a:hover {
  background: #c1a65c;
  color: #000;
}

#sec09 .btn2 a {
  font-family: serif;
  display: block;
  font-size: 1.3rem;
  color: #000;
  background: #c2a65c;
  border: 1px solid #c2a65c;
  border-radius: 30px;
  box-sizing: border-box;
  text-align: center;
  width: 50%;
  margin: 0 auto 40px;
  padding: 10px;
  transition: all ease 0.4s;
}

#sec09 .btn2 a:hover {
  background: #000;
  border: 1px solid #c2a65c;
  color: #c2a65c;
}

#sec09 .btn3 {
  font-family: serif;
  display: block;
  font-size: 1.3rem;
  color: #ff8d0f;
  background: #000;
  border: 1px solid #ff8d0f;
  margin-top: 4%;
  box-shadow: 1px 1px 10px #ff8d0f;
  box-sizing: border-box;
  text-align: center;
  width: 50%;
  margin: 0 auto 40px;
  padding: 10px;
  transition: all ease 0.4s;
  cursor: pointer;
}

#sec09 .btn3:hover {
  box-shadow: 1px 1px 20px #ff8d0f;
}

.btn3Box.accordion {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease 0.4s;
  overflow: hidden;
  padding: 0 4%;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

.btn3Box.accordion.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto 40px;
  border: 1px solid #ff8d0f;
  margin-top: 4%;
  box-shadow: 1px 1px 10px #ff8d0f;
  width: 100%;
  background: #000;
}

#sec09 .list {
  margin-bottom: 20px;
}

#sec09 .list dt {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-family: serif;
  color: #c2a65c;
  text-align: center;
}

#sec09 .list dd {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-family: serif;
  color: #fff;
  text-align: center;
}

.marker2 {
  color: #ffff99;
  font-weight: bold;
}

#course .singleList {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--maincolor);
  border: 2px solid var(--maincolor);
  background: #000;
  padding: 1.4%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all ease 0.4s;
  user-select: none;
  font-weight: lighter;
}

#course .singleList:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 10px #05d4fe;
}

#course .singleList a {
  color: var(--maincolor);
}

#stayInfo .singleList {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--maincolor);
  border: 2px solid var(--maincolor);
  background: #000;
  padding: 1.4%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all ease 0.4s;
  user-select: none;
  font-weight: lighter;
}

#stayInfo .singleList:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 10px #05d4fe;
}

#stayInfo .singleList a {
  color: var(--maincolor);
}

#stayInfo .caution {
  color: #fff;
}

#stayInfo .accordion {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease 0.4s;
  overflow: hidden;
  padding: 0 4%;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

#stayInfo .accordion.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto 40px;
  border: 1px solid #ff8d0f;
  margin-top: 4%;
  box-shadow: 1px 1px 10px #ff8d0f;
  width: 100%;
  background: #000;
}

#stayInfo dt.acBtn {
  position: relative;
  background: #efb54e;
  border-bottom: 3px solid #fff;
  font-size: 1rem;
  color: #000;
  padding: 10px 14px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  transition: all ease 0.4s;
}

#stayInfo dt.acBtn .material-icons {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto;
  color: #000;
  transition: all ease 0.4s;
}

#stayInfo dt.acBtn:hover {
  background: #dc9820;
}

#stayInfo dd.accordion {
  padding: 12px;
  box-sizing: border-box;
}

#stayInfo dd.accordion.open {
  border: none;
  box-shadow: none;
  padding: 0;
  background: #fff;
  color: #000;
  margin: 0px 0 20px;
  padding: 20px 12px;
  box-sizing: border-box;
}

#stayInfo .accordion .ttl3 {
  font-size: 1.4rem;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--maincolor);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

#stayInfo .accordion .ttl3:first-letter {
  color: var(--maincolor);
}

#stayInfo .accordion .ttl4 {
  display: inline-block;
  font-size: 1rem;
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 6px 20px;
  box-sizing: border-box;
  margin-bottom: 16px;
  border-radius: 8px;
}

#stayInfo .accordion .info {
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  font-weight: lighter;
}

#stayInfo .accordion .info a {
  color: #efd89c;
  font-weight: lighter;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#stayInfo .accordion .info a:hover {
  opacity: 0.7;
}

#stayInfo .accordion .contents {
  margin-bottom: 60px;
}

#stayInfo .accordion .contents {
  margin-bottom: 40px;
}

#stayInfo .accordion .info span {
  color: var(--maincolor);
}

#stayInfo .single {
  margin-bottom: 40px;
}

#stayInfo .single:last-child {
  margin-bottom: 60px;
}

#cm {
  padding: 20px 0 80px;
  background: #000;
}

#cm .box {
  width: 58%;
  margin: 0 auto;
}

#cm .ttl {
  width: 20%;
  max-width: 180px;
  display: block;
  text-align: center;
  margin: 0 auto;
}

#stayInfo2 .singleList {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--maincolor);
  border: 2px solid var(--maincolor);
  background: #000;
  padding: 1.4%;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all ease 0.4s;
  user-select: none;
  font-weight: lighter;
}

#stayInfo2 .singleList:hover {
  opacity: 0.8;
  box-shadow: 1px 1px 10px #05d4fe;
}

#stayInfo2 .singleList a {
  color: var(--maincolor);
}

#stayInfo2 .singleList.buy {
  background: #c3a65d;
  border: 2px solid #6a4c25;
}

#stayInfo2 .singleList.buy a {
  color: #000;
}

#stayInfo2 .caution {
  color: #fff;
}

#stayInfo2 .accordion {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease 0.4s;
  overflow: hidden;
  padding: 0 4%;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

#stayInfo2 .accordion.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto 40px;
  border: 1px solid #ff8d0f;
  margin-top: 4%;
  box-shadow: 1px 1px 10px #ff8d0f;
  width: 100%;
  background: #000;
}

#stayInfo2 dt.acBtn {
  position: relative;
  background: #efb54e;
  border-bottom: 3px solid #fff;
  font-size: 1rem;
  color: #000;
  padding: 10px 14px;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  transition: all ease 0.4s;
}

#stayInfo2 dt.acBtn .material-icons {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto;
  color: #000;
  transition: all ease 0.4s;
}

#stayInfo2 dt.acBtn:hover {
  background: #dc9820;
}

#stayInfo2 dd.accordion {
  padding: 12px;
  box-sizing: border-box;
}

#stayInfo2 dd.accordion.open {
  border: none;
  box-shadow: none;
  padding: 0;
  background: #fff;
  color: #000;
  margin: 0px 0 20px;
  padding: 20px 12px;
  box-sizing: border-box;
}

#stayInfo2 .accordion .ttl3 {
  font-size: 1.4rem;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--maincolor);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

#stayInfo2 .accordion .ttl3:first-letter {
  color: var(--maincolor);
}

#stayInfo2 .accordion .ttl4 {
  display: inline-block;
  font-size: 1rem;
  color: var(--maincolor);
  border: 1px solid var(--maincolor);
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 6px 20px;
  box-sizing: border-box;
  margin-bottom: 16px;
  border-radius: 8px;
}

#stayInfo2 .accordion .info {
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  font-weight: lighter;
}

#stayInfo2 .accordion .info a {
  color: #efd89c;
  font-weight: lighter;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#stayInfo2 .accordion .info a:hover {
  opacity: 0.7;
}

#stayInfo2 .accordion .contents {
  margin-bottom: 60px;
}

#stayInfo2 .accordion .contents {
  margin-bottom: 40px;
}

#stayInfo2 .accordion .info span {
  color: var(--maincolor);
}

#stayInfo2 .single {
  margin-bottom: 40px;
}

#stayInfo2 .single:last-child {
  margin-bottom: 60px;
}

.tabArea2 dl {
  margin-bottom: 10px;
}

.tabArea2 .fx01 {
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
}

.tabArea2 .fx01 img {
  width: 100%;
  display: block;
}

.tabArea2 .fx03 {
  width: 10%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.tabArea2 .fx02 {
  width: 66%;
  padding: 40px 0;
  box-sizing: border-box;
  position: relative;
}

.tabArea2 .point a {
  color: #c2a65c;
  text-decoration: underline;
}

.tabBtn2.active {
  width: 100% !important;
  color: #c2a65c !important;
  text-align: center !important;
  padding: 14px !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  background: #26324a !important;
  margin-bottom: 40px;
}

.btn3Box.special.accordion.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  word-break: break-all;
  padding: 4%;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto 40px;
  border: 1px solid #c1a65c;
  margin-top: 4%;
  box-shadow: none;
  width: 100%;
  background: #000;
}

.tabArea2 .fx03 .num {
  font-size: 4rem;
  margin-right: 20px;
  color: #c2a65c;
  font-family: serif;
}

.tabArea2 .point {
  font-size: 1.5rem;
  font-weight: lighter;
  letter-spacing: 0.1em;
  font-family: sans-serif;
  color: #fff;
}

.tabArea2 .small {
  font-size: 0.9rem;
  font-weight: lighter;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #fff;
}

.tabArea2 .small a {
  color: #c1a65c;
  text-decoration: underline;
  transition: all ease 0.4s;
}

.tabArea2 .small a:hover {
  opacity: 0.7;
}

/* Plan
--------------------------------------*/

#plan {
  padding-top: 120px;
  padding-bottom: 40px;
  color: #fff;
}

#plan img {
  display: block;
}

#plan .ttl {
  font-size: 1.2rem;
  font-family: serif;
  text-align: center;
  color: #fe8513;
  padding: 18px 0;
}

#plan .ttl span {
  display: block;
  font-size: 2.4rem;
  color: #fff;
}

#plan .box {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
}

#plan .subttl {
  color: #65c8e4;
  font-size: 1.6rem;
  font-family: sans-serif;
  text-align: center;
  border-top: 1px solid #65c8e4;
  border-bottom: 1px solid #65c8e4;
  padding: 16px 0;
  box-sizing: border-box;
  margin-bottom: 4%;
  position: relative;
}

#plan .subttl::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/plan02.png) no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 30px;
}

#plan .subttl::after {
  content: "";
  width: 60px;
  height: 40px;
  background: url(../img/plan01.png) no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#plan .single {
  box-sizing: border-box;
  padding-bottom: 60px;
  margin-bottom: 20px;
  position: relative;
}

#plan .single::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/arrow.png) no-repeat;
  background-size: contain;
  background-position: center center;
}

#plan .single:last-child::after {
  background: none;
}

#plan .single .time {
  background: #c2a65c;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 14px 0;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
}

#plan .time1100::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1100.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time1230::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1230.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time1400::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1400.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time1500::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1500.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time1530::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1530.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time1600::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1600.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time1630::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1630.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time1900::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time1900.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .time2200::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background: url(../img/time2200.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .single .spot {
  background: #c2a65c;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 14px 0;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
}

#plan .spot::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 23px;
  background: url(../img/plan08.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right: 5px;
  line-height: 30px;
}

#plan .content01 {
  color: #333333;
  padding: 30px 60px;
  box-sizing: border-box;
  background: #f6f2e7;
}

#plan .content01 .h4 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  color: #c2a65c;
}

#plan .content01 .desc {
  text-align: center;
  font-weight: lighter;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

#plan .content01 .desc a {
  color: #f49d24;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#plan .content01 .desc a:hover {
  opacity: 0.7;
}

#plan .content02 {
  color: #333333;
  box-sizing: border-box;
  background: #fff;
}

#plan .content02 .pad {
  padding: 20px 60px;
  box-sizing: border-box;
}

#plan .content02 .list {
  width: 90%;
  margin: 0 auto 20px;
}

#plan .content02 .list li {
  text-align: left;
  font-weight: lighter;
  line-height: 1.6;
  letter-spacing: 0.1em;
  list-style-type: disc;
}

#plan .content03 {
  color: #333333;
  padding: 30px 60px;
  box-sizing: border-box;
  background: #f6f2e7;
}

#plan .content03 .point {
  width: 20%;
  margin-bottom: 20px;
}

#plan .content03 .desc {
  color: #c2a65c;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

#plan .content03 .desc a {
  color: #f49d24;
  text-decoration: underline;
  transition: all ease 0.4s;
}

#plan .content03 .desc a:hover {
  opacity: 0.7;
}

#plan .plan04 {
  margin-bottom: 0px;
}

#plan .plan04 img {
  display: block;
  width: 100%;
}

#plan .content04 {
  color: #333333;
  padding: 30px 60px;
  box-sizing: border-box;
  background: #f6f2e7;
}

#plan .content04 .desc {
  font-weight: lighter;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

#plan .content04 .spotList {
  width: 94%;
  margin: 0 auto 40px;
}

#plan .content04 .fx01 {
  width: 20%;
  padding: 4px;
  box-sizing: border-box;
}

#plan .content04 .fx01 img {
  width: 70%;
  margin: 0 auto;
}

#plan .content04 .fx02 {
  width: 76%;
  box-sizing: border-box;
  padding-top: 15px;
}

#plan .spotName {
  font-size: 1.3rem;
  font-weight: bold;
  color: #c2a65c;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

#plan .spotDesc {
  font-weight: lighter;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

#plan .spotList dl {
  margin-bottom: 10px;
}

#plan .tabArea {
  display: none;
}

#plan .tabArea.active {
  display: block;
}

#plan .single a img {
  transition: all ease 0.4s;
}

#plan .single a img:hover {
  opacity: 0.7;
}

#plan .tabBox .tabBtn {
  width: 50%;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  box-sizing: border-box;
  font-size: 1.3rem;
  padding: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all ease 0.4s;
}

#plan .tabBox .tabBtn.active {
  background: var(--maincolor);
}

#plan .singleList {
  width: 80%;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: var(--maincolor);
  border: 2px solid var(--maincolor);
  background: #000;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all ease 0.4s;
  user-select: none;
  font-weight: lighter;
}

#plan .singleList a {
  display: block;
  color: var(--maincolor);
  padding: 1.4%;
}

#plan .singleList.buy {
  background: #c3a65d;
  border: 2px solid #6a4c25;
}

#plan .singleList.buy a {
  color: #fff;
}

#plan .singleList:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

#higaeri {
  width: 80%;
  margin: 0 auto;
}

#higaeri .subttl {
  margin-top: 40px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
