@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@300;400;500;700&display=swap");


:root {
  --font-n: "Noto Sans JP", sans-serif;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
}
input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border: none;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
}


/* -----------------------------------------------------------------------------*/

html {
  overflow-y: scroll;
  font-size: calc(10 / 1366 * 100vw);
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(10 / 750 * 100vw);
  }
}

body {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media screen and (max-width: 1366px) {
  body {
    font-size: 1.4rem;
  }
}



a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}
img {
  width: 100%;
}
a img {
  transition: opacity 0.3s ease-in-out;
}
a:hover img {
  opacity: 0.8;
}
img.nofade {
  opacity: 1 !important;
}


/* #wrap {
  overflow: hidden;
} */

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
  #wrap {
    min-width: 0;
  }
}




/*===========================================================================
 #header
===========================================================================*/
#header {
  padding: 20px 0 20px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

#header .hdInr {
  max-width: 126.6rem;
  margin: 0 auto;
}
#header .hdInr .hdNavWrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font-n);
  padding: 20px 0;
  box-sizing: border-box;
  position: absolute;
  top: 22px;
  right: 20px;
}
#header .hdInr .hdNavWrap .hdNav {
  padding-right: 4rem;
}
#header .hdInr .hdNavWrap .hdNav a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
}
#header .hdInr .hdNavWrap .hdNavContact a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 5rem;
  width: 18rem;
  border-radius: 9.9rem;
  background-color: #b97a27;
  display: block;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
#header .hdInr .hdNavWrap .hdNavContact a:hover {
  opacity: 0.8;
}
#header h1 {
  text-align: center;
}
#header h1 img {
  width: 160px;
  height: auto;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  #header {
    /* position: absolute; */
    top: 0;
    right: 0;
    width: 100%;
  }
  #header .hdInr {
    max-width: 100%;
    padding: 0 3rem;
  }
  #header .hdInr .hdNavWrap {
    /* padding: 3rem 0; */
    padding: 12px 0;
    box-sizing: border-box;
    position: relative;
  }
  #header .hdInr .hdNavWrap .hdNav {
    padding-right: 4rem;
  }
  #header .hdInr .hdNavWrap .hdNav a {
    font-size: 16px;
  }
  #header .hdInr .hdNavWrap .hdNavContact a {
    font-size: 16px;
    line-height: 32px;
    width: 120px;
    border-radius: 9.9rem;
  }
  #header .hdInr .hdNavWrap .hdNavContact a:hover {
    opacity: 0.8;
  }
  #header .hdInr .hdNavWrap {
    justify-content: center;
    right: 42px;
  }
}


/*===========================================================================
 #footer
===========================================================================*/
/* #footer {
  padding: 8rem 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  background-color: #e3e3e3;
} */

footer {
  border-top: #ececec 4px solid;
  padding: 6rem 0;
  font-size: 1.2rem;
  line-height: 1.8;
  background-color: #2b2b2b;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .logo img {
  width: 160px;
  height: auto;
}

footer small {
  font-family: futura, serif;
  display: block;
  font-size: 0.9375rem;
  text-align: right;
}

.ftr-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ftr-inner > *:first-of-type {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.ftr-inner > *:last-child {
  margin-right: 2rem;
}

.ftr-inner .logo {
  width: 18rem;
  margin-right: 4rem;
  text-align: center;
  margin-bottom: 30px;
}

.footerfont {
  font-family: futura, serif;
  font-size: 1.0625rem;
}

footer address {
  font-style: normal;
  margin: 1.5rem 0;
}

.ftr-inner ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4rem;
}

footer .btn {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.15em;
  width: 200px;
  position: relative;
}

footer .btn::after {
  content: "";
  background: url("../images/ico_window1.png");
  background-size: 15px 10px;
  width: 15px;
  height: 10px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 14px;
  transition: all 0.3s;
}

.ftr-inner ul li {
  width: 2.5rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.policy {
  text-align: right;
  font-size: 0.625rem;
}

.policy a:first-child {
  padding-right: 1rem;
}

footer .btn {
    text-align: center;
    line-height: 1;
    display: block;
    width: 180px;
    padding: 10px;
    margin: 0 auto;
    background: #F7931E;
    color: #fff;
    border: none !important;
}

@media screen and (max-width: 767px) {
  .ftr-inner {
    width: 90%;
    display: block;
  }

  .ftr-inner > div:first-of-type {
    text-align: center;
    margin-bottom: 3rem;
    display: block;
  }

  .ftr-inner .logo { 
    width: auto;
    margin-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .ftr-inner ul {
    display: flex;
    justify-content: center;
  }

  footer .btn {
    width: 40vw;
    margin: 0 auto 12px auto!important;
  }
  .ftr-inner ul li {
    width: 5.5rem;
  }
  footer small {
    text-align: center;
  }

  .policy {
    margin-top: 12px;
    text-align: center;
  }
}

@media screen and (max-width: 480px){
  .ftr-inner > *:first-child {
    margin-left: 0rem;
  }

  .ftr-inner > *:last-child {
    margin-right: 0rem;
  }
}


/*===========================================================================
 #main
===========================================================================*/
#mainWrap {
}



/*===========================================================================
 Common use （cm-）　parts （pt-） 　パターン別（st-）　個別での上書き（ow-）
===========================================================================*/

/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
  .cm-spOnly {
    display: none !important;
  }
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
  .cm-pcOnly {
    display: none !important;
  }
}


.cm-ctsWid {
  max-width: 1240px;
  margin: 0 auto;
}
.cm-ctsIdt {
  padding: 0 20px;
  box-sizing: border-box;
}

/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .cm-ctsWid {
    max-width: 100%;
  }
  .cm-ctsIdt {
    padding: 0 calc(30 / 750 * 100vw);
  }
}

/*===========================================================================
 Common hamburger
===========================================================================*/
nav.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -50%;
  width: 50%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
}
nav.gnav-sp .inner h2 {
  font-size: 16px;
  margin-bottom: 10px;
}
.gnav-sp-maker {
  margin-bottom: 60px !important;
}
.open nav.gnav-sp {
  top: 0;
  right: 0;
  opacity: 1;
  z-index: 99999;
}
nav.gnav-sp .inner {
  padding: 70px 25px;
}
nav.gnav-sp .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.gnav-sp .inner ul.layer1 > li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #000;
}
nav.gnav-sp .inner ul li:last-child {
  border-bottom: none;
}
nav.gnav-sp .inner ul li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav.gnav-sp .inner ul.layer2 {
  padding: 10px 0;
}
nav.gnav-sp .inner ul.layer2 > li {
  font-size: 13px;
  padding: 5px 0;
  font-weight: bold;
  margin-left: 10px;
}
nav.gnav-sp .inner ul.layer2 > li > ul {
  border-left: 1px solid #000;
  margin-left: 5px;
  padding-left: 10px;
  line-height: 1.8;
}
nav.gnav-sp .inner ul.layer3 {
  border-left: 1px solid #000;
  margin-top: 5px;
}
nav.gnav-sp .inner ul.layer3 li {
  font-weight: normal;
}
nav.gnav-sp .inner ul.layer3 li a {
  padding: 0.2em;
  text-decoration: none;
}
nav.gnav-sp .inner ul.layer2 li > a {
  padding: 0.1em;
  text-decoration: none;
}

nav.gnav-sp .accordion-menu-splitter {
  display: block;
  font-weight: bold;
  font-size: 2em;
  margin: 25px 0 5px -5px;
}

.ticket-humburger div {
  margin: 1em;
}

@media screen and (max-width: 767px) {
  nav.gnav-sp {
    right: -75%;
    width: 75%;
  }
}

/* toggle_btn */
.toggle_btn {
  display: block;
  position: fixed;
  top: 20px;
  left: 50px;
  width: 60px;
  height: 60px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100000;
}
.toggle_btn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 19px;
  left: 14px;
}
.toggle_btn span:nth-child(2) {
  top: 29px;
  left: 14px;
}
.toggle_btn span:nth-child(3) {
  top: 39px;
  left: 14px;
}
.toggle_btn i {
  font-size: 10px;
  font-style: normal;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.open .toggle_btn i {
  color: #fff;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

/* mask */
#mask {
  display: none;
  transition: all 0.5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  opacity: 0.6;
  z-index: 2;
  cursor: pointer;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .toggle_btn {
    width: 60px;
    height: 60px;
    top: 0;
    left: 10px;
  }
  .toggle_btn i {
    white-space: nowrap;
  }
}

.item-title-1 {
  position: relative;
  display: block;
  background: #fafafa;
  transition: all 0.3s;
  font-weight: bold;
  padding: 13px 15px;
  line-height: 1;
}



.item-title-1,
.item-title-2,
.item-title-3 {
  position: relative;
  display: block;
  font-size: 1.6rem;
}
.item-title-1:hover,
.item-title-2:hover,
.item-title-3:hover {
  cursor: pointer;
  opacity: 0.5;
}
.item-title-1::before,
.item-title-2::before,
.item-title-3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  transform: rotate(90deg);
  background: #333;
  transition: all 0.3s ease-in-out;
}
.item-title-1::after,
.item-title-2::after,
.item-title-3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #333;
  transition: all 0.2s ease-in-out;
}
.item-title-1.open::before,
.item-title-2.open::before,
.item-title-3.open::before {
  transform: rotate(180deg);
}
.item-title-1.open::after,
.item-title-2.open::after,
.item-title-3.open::after {
  opacity: 0;
}

nav.gnav-sp form {
  margin: 40px auto;
}
.search_container {
  position: relative;
  border: 1px solid #ccc;
  display: block;
  padding: 3px 10px;
  border-radius: 6px;
  height: 30px;
  width: 320px;
  margin: 0 auto;
  background: url(../img/ico_search2.png) no-repeat center left 12px;
  background-size: 12px auto;
}
.search_container input[type="text"] {
  border: none;
  position: relative;
  height: 2em;
  background: none;
  width: 75%;
  margin-left: 7%;
  transform: translateY(-20%);
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"] {
  cursor: pointer;
  border: none;
  border-radius: 0 6px 6px 0;
  background-image: -moz-linear-gradient(
    180deg,
    rgb(84, 108, 197) 0%,
    rgb(111, 164, 198) 100%
  );
  background-image: -webkit-linear-gradient(
    180deg,
    rgb(84, 108, 197) 0%,
    rgb(111, 164, 198) 100%
  );
  background-image: -ms-linear-gradient(
    180deg,
    rgb(84, 108, 197) 0%,
    rgb(111, 164, 198) 100%
  );
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  outline: none;
  width: 60px;
  height: 30px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.search_container input[type="submit"]:hover {
  opacity: 0.7;
}

#searchArea .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}
.search-btn img, .login img {
    width: 24px;
    height: auto;
}

@media screen and (max-width: 767px) {
  .search_container {
    width: 100%;
  }
  .search_container input[type="text"] {
    margin-left: 5%;
    font-size: 14px;
  }
}

/*===========================================================================
 Common search
===========================================================================*/
.search-btn {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 36px;
  width: 24px;
}
.search-btn:hover {
  cursor: pointer;
}
.login {
  width: 22px;
  position: absolute;
  right: 24.5vw;
  top: 50px;
}
.search-btn img,
.login img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .search-btn {
    right: 15px;
    top: 22px;
  }
  .login {
    width: 22px;
    right: 22px;
    top: 22px;
  }
}

#searchArea > div {
  display: block;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -99999;
  transition: all 0.3s;
  height: 160px;
  width: 100%;
}
.openArea > div {
  z-index: 999999999 !important;
  opacity: 1 !important;
}
#searchArea .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
#searchArea .inner input[type="text"] {
  width: 400px;
  padding: 10px;
  font-size: 16px;
  color: #666;
  border: 1px solid;
  vertical-align: top;
}
#searchArea .inner input[type="submit"] {
  background: url(../images/ico_search.png) no-repeat;
  background-size: 40px;
  width: 40px;
  height: 40px;
  border: none;
  margin-right: 10px;
  text-indent: -9999;
}
#searchArea .inner input[type="submit"]:hover {
  cursor: pointer;
}
.closeArea {
  position: absolute;
  right: 30px;
  top: 60px;
  width: 40px;
  height: 40px;
  background: #fff;
}
.closeArea > div {
  position: relative;
}
.closeArea:hover {
  cursor: pointer;
}
.closeArea span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.closeArea span:first-of-type {
  width: 40px;
  height: 1px;
  background: #333;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  display: block;
  margin-top: 20px;
}
.closeArea span:last-of-type {
  width: 40px;
  height: 1px;
  background: #333;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #searchArea > div {
    height: 140px;
  }
  #searchArea .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 140px;
    padding: 1.6rem 0 0 3rem;
  }
  .closeArea {
    right: 10px;
    top: 50px;
  }
  #searchArea form {
    margin-top: -20px;
  }
  #searchArea .inner input[type="text"] {
    width: 200px;
  }
  #searchArea .inner input[type="submit"] {
    background-size: 30px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 480px) {
  .closeArea {
    right: 20px;
    top: 50px;
  }
}