@charset "UTF-8";
/* CSS Document */
header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
/* main */
#main {
  position: relative;
  padding: 0 40px;
}
#main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/index/bgi-main_01.jpg");
  background-position: center;
  background-size: cover;
}
#main .inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  max-height: 850px;
}
#main #open {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 2;
  background-color: #EF8742;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  box-sizing: border-box;
  padding: 73px 0 0 0;
  text-align: center;
  color: #fff;
}
#main #open img {
  display: block;
  width: 200px;
  margin: 0 auto;
}
#main #open h1 {
  display: block;
  font-size: 21px;
  margin-top: 5px;
}
#main #open p {
  font-size: 40px;
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  margin-top: 6px;
}
#main #open p span {
  font-size: 16px;
  font-weight: bold;
}
#main .note {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  font-size: 55px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  transform: translateY(-46%);
  font-feature-settings: "palt";
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  -ms-transition: opacity 1.2s, transform 1.2s;
  transition: opacity 1.2s, transform 1.2s;
  transition-delay: 1.0s;
}
#main.fade .note {
  opacity: 1;
  transform: translateY(-50%);
}
#main .note span {
  display: inline-block;
  border-bottom: 4px solid #fff;
}
/* fade */
#main::before {
  -webkit-transition: all 1.2s;
  -ms-transition: all 1.2s;
  transition: all 1.2s;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0;
}
#main.fade::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#main #open {
  -ms-transition: opacity 1.2s, margin 1.2s;
  transition: opacity 1.2s, margin 1.2s;
  margin-top: 20px;
  opacity: 0;
}
#main.fade #open {
  opacity: 1;
  margin-top: 0;
  transition-delay: 2.0s;
}
#main .notes {
  position: absolute;
  right: 0;
  bottom: 15px;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.6);
  -ms-transition: opacity 1.2s, margin 1.2s;
  transition: opacity 1.2s, margin 1.2s;
  line-height: 1.4;
}
#main .notes br {
  display: none;
}
#main.fade .notes {
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  #main {
    padding: 0 30px;
  }
  #main .inner {
    max-height: 600px;
  }
  #main #open {
    top: 20px;
    right: -20px;
    width: 250px;
    height: 250px;
    padding-top: 55px;
  }
  #main #open p {
    font-size: 34px;
  }
  #main #open p span {
    font-size: 16px;
  }
  #main #open img {
    width: 150px;
  }
}
@media screen and (max-width: 1024px) {
  #main .note {
    font-size: 40px;
  }
}
@media screen and (max-width: 750px) {
  #main .inner {
    position: static;
    max-height: 350px;
    min-height: 350px;
    display: table;
  }
  #main #open {
    top: auto;
    bottom: -40px;
    right: -10px;
    width: 160px;
    height: 160px;
    padding-top: 35px;
  }
  #main #open h1 {
    font-size: 14px;
    margin-top: 3px;
  }
  #main #open p {
    font-size: 18px;
    margin-top: 3px;
  }
  #main #open p span {
    font-size: 11px;
  }
  #main #open img {
    width: 120px;
  }
  #main .note {
    font-size: 24px;
    line-height: 1.5;
    padding-bottom: 40px;
  }
  #main .note span {
    border-bottom: 3px solid #fff;
  }
  #main .notes {
    right: auto;
    left: 20px;
    bottom: 15px;
    font-size: 12px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 1.0);
  }
  #main .notes br {
    display: block;
  }
}
@media screen and (max-width: 320px) {
  #main .note {
    font-size: 22px;
  }
}
/* section */
section {
  padding: 100px 0;
}
section .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
section .ttl {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 80px;
}
section .ttl::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 4px;
  background-color: #EF8742;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
section .ttl h2 {
  font-size: 42px;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}
/* fade */
section .ttl::before {
  -ms-transition: opacity 0.6s, width 0.6s;
  transition: opacity 0.6s, width 0.6s;
  width: 30px;
  opacity: 0;
}
section .ttl.fade::before {
  width: 110px;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  section {
    padding: 60px 0;
  }
  section .inner {
    padding: 0 20px;
  }
  section .ttl {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  section .ttl h2 {
    font-size: 24px;
  }
  section .ttl::before {
    width: 60px;
    height: 3px;
  }
  /* fade */
  section .ttl::before {
    width: 20px;
  }
  section .ttl.fade::before {
    width: 60px;
  }
}
/* access */
section#access {
  padding: 60px 0 40px;
}
#access .inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
#access .map {
  width: 50%;
  height: 360px;
}
#access .map iframe {
  width: 100%;
  height: 100%;
}
#access .box {
  width: 50%;
  margin: 0 auto;
}
#access table tr:last-child th, #access table tr:last-child td {
  padding-bottom: 0;
}
#access table th, #access table td {
  font-size: 18px;
  padding: 10px 0;
  vertical-align: top;
  line-height: 2;
  text-align: left;
}
#access table th {
  white-space: nowrap;
  padding-right: 20px;
}
#access .box ul {
  margin-top: 30px;
}
#access .box ul li {
  display: inline-block;
  vertical-align: top;
  margin: 5px 5px 0 0;
}
#access .box ul li a {
  position: relative;
  display: block;
  background: #ef8742;
  color: #fff;
  font-size: 14px;
  padding: 15px 20px 15px 20px;
  width: 200px;
  box-sizing: border-box;
}
#access .box ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -7px;
}
@media screen and (max-width: 750px) {
  section#access {
    padding: 30px 0 0;
  }
  #access .inner {
    flex-direction: column;
    padding: 0;
  }
  #access .map {
    width: 100%;
    height: 240px;
  }
  #access .box {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
  }
  #access .box ul li {
    width: 100%;
  }
  #access .box ul li a {
    margin: 0 auto;
  }
  #access table th, #access table td {
    padding: 5px 0;
    font-size: 14px;
  }
  #access table th {
    padding-right: 20px;
  }
}
.naviBtn {
  position: relative;
  max-width: 1280px;
  padding: 30px 0;
  margin: -60px auto 0;
  background: #fff;
}
.naviBtn ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.naviBtn ul li {
  position: relative;
  width: calc(100% / 3);
}
.naviBtn ul li:not(:last-of-type):after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: url(../../img/common/line_navi.svg) repeat-y;
}
.naviBtn ul li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.naviBtn ul li a div {
  width: fit-content;
  padding: 9px 10px 8px 24px;
  margin: 16px auto 0;
  background: #EF8742;
  border-radius: 25px;
  font-size: 16px;
  color: #fff;
}
.naviBtn ul li a div span {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  margin-left: 8px;
  vertical-align: middle;
}
.naviBtn ul li a div span:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-bottom: solid 3px #EF8742;
  border-right: solid 3px #EF8742;
  transform: rotate(45deg);
}
@media screen and (max-width:750px) {
  .naviBtn {
    padding: 30px 0 0;
    margin: 0;
  }
  .naviBtn ul {
    gap: 0;
    flex-direction: column;
  }
  .naviBtn ul li {
    width: 100%;
  }
  .naviBtn ul li:not(:last-of-type):after {
    content: '';
    position: absolute;
    top: unset;
    right: unset;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-repeat: repeat-x;
  }
  .naviBtn ul li a {
    padding: 18px 0;
    font-size: 16px;
  }
  .naviBtn ul li a div {
    margin: 8px auto 0;
    font-size: 14px;
  }
  .naviBtn ul li a span {
    display: block;
    margin: 0 auto;
  }
}
/* navi */
#navi {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  background: #fff;
}
#navi .box {
  font-size: 0;
}
#navi .box .col {
  width: 33.333%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  box-sizing: border-box;
  padding: 0 10px;
}
#navi .box .col h3 {
  font-size: 24px;
  margin-top: 20px;
}
#navi .box .col p {
  font-size: 16px;
  margin-top: 15px;
}
/* fade */
#navi .box .col {
  -ms-transition: opacity 2.4s, top 2.4s;
  transition: opacity 2.4s, top 2.4s;
  position: relative;
  top: 20px;
  opacity: 0;
  margin-top: 60px;
}
#navi .box.fade .col {
  top: 0;
  opacity: 1;
}
#navi .box .col:nth-child(2) {
  transition-delay: 0.2s;
}
#navi .box .col:nth-child(3) {
  transition-delay: 0.4s;
}
#navi .box .col:nth-child(4) {
  transition-delay: 0.6s;
}
#navi .box .col:nth-child(5) {
  transition-delay: 0.8s;
}
#navi .box .col:nth-child(6) {
  transition-delay: 1.0s;
}
@media screen and (max-width: 1200px) {
  #navi .box .col p {
    font-size: 15px;
  }
  #navi .box .col p br {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #navi .box .col h3 {
    font-size: 22px;
  }
  #navi .box .col p {
    font-size: 14px;
  }
  #navi .box .col a {
    font-size: 18px;
    width: 180px;
    padding: 15px 0;
  }
}
@media screen and (max-width: 750px) {
  #navi {
    padding: 100px 0 60px;
  }
  #navi .box .col {
    width: 100%;
    display: block;
    padding: 0;
    margin-top: 60px;
  }
  #navi .box .col:first-child {
    margin-top: 0;
  }
  #navi .box .col h3 {
    font-size: 18px;
    margin-top: 15px;
  }
  #navi .box .col p {
    font-size: 13px;
    margin-top: 5px;
    text-align: left;
  }
}
/* info */
#info {
  margin-top: 60px;
  background: #f1f1f1;
  padding: 60px 0;
}
#info p {
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  #info {
    margin-top: 40px;
    padding: 40px 0;
  }
  #info p {
    font-size: 14px;
  }
}
/* feature */
#feature {
  background: #fff;
  position: relative;
  z-index: 1;
}
#feature .box {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
#feature .box .inner {
  padding: 120px 0 0;
  margin-top: -120px;
}
#feature .box:first-child {
  margin-top: 0;
}
#feature .inner {
  overflow: visible;
}
#feature .ttl + .box {
  margin-top: 0;
}
#feature .box:nth-child(odd)::before, #feature .box:nth-child(odd)::after {
  background-color: #f1f1f1;
  content: "";
  position: absolute;
  top: 40px;
  display: block;
  width: 100vw;
  height: 100%;
  padding-bottom: 60px;
}
#feature .box:nth-child(odd)::before {
  left: 50%;
}
#feature .box:nth-child(odd)::after {
  right: 50%;
}
#feature .box .img {
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 52%;
}
#feature .box .txt {
  width: 48%;
  box-sizing: border-box;
  padding: 40px 60px;
  display: table;
  position: relative;
  z-index: 1;
}
#feature .box:nth-child(odd) .img {
  right: 0;
}
#feature .box:nth-child(even) .img {
  left: 0;
}
#feature .box:nth-child(odd) .txt {
  margin: 0 auto 0 0;
}
#feature .box:nth-child(even) .txt {
  margin: 0 0 0 auto;
}
#feature .box .txt h2 {
  font-size: 18px;
  line-height: 1.5;
}
#feature .box .txt h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 5px;
}
#feature .box .txt p {
  font-size: 16px;
  margin-top: 15px;
}
#feature .box .txt p.note {
  font-size: 13px;
  margin: 15px 0 0 1em;
  text-indent: -1em;
}
#feature .box .txt table {
  margin-top: 15px;
  width: 100%;
}
#feature .box .txt table th, #feature .box .txt table td {
  padding: 10px 5px;
  vertical-align: middle;
  font-size: 14px;
  border-bottom: 1px solid;
  border-top: 1px solid;
  text-align: center;
}
#feature .box .txt table th:nth-child(4) {
  width: 40%;
}
#feature .box .txt table th:first-child, #feature .box .txt table th:nth-child(2), #feature .box .txt table th:nth-child(3) {
  width: 20%;
}
#feature .box .txt table td .price {
  display: block;
  color: #EF8742;
  margin-top: 5px;
}
#feature .box .txt table td .price b {
  font-size: 24px;
}
#feature .box .txt ul {
  margin-top: 20px;
  font-size: 0;
}
#feature .box .txt ul li {
  display: inline-block;
  vertical-align: top;
  margin: 5px 5px 0 0;
}
#feature .box .txt ul li a {
  position: relative;
  display: block;
  background: #ef8742;
  color: #fff;
  font-size: 14px;
  padding: 15px 20px 15px 20px;
  width: 200px;
  box-sizing: border-box;
}
#feature .box .txt ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -7px;
}
#feature .box .txtInner {
  position: relative;
  padding: 40px 0;
  display: table-cell;
  vertical-align: middle;
}
#feature .box .txtInner::before {
  position: relative;
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
}
#feature .box .open {
  border: 1px solid #ef8742;
  padding: 12px;
  font-size: 16px;
  color: #ef8742;
  text-align: center;
  margin-top: 20px;
}
/* note
-----------------------------------------------*/
#feature .box .txt .note {
  text-align: center;
}
#feature .box .txt .note p span {
  display: block;
  color: #d1091e;
  font-size: 18px;
}
#feature .box .txt .note + ul {
  text-align: center;
  margin-top: 0;
}
/* fade */
#feature .box .img::before {
  -webkit-transition: all 1.2s;
  -ms-transition: all 1.2s;
  transition: all 1.2s;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0;
}
#feature .box.fade .img::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  #feature .box .img {
    width: 48%;
  }
  #feature .box .txt {
    width: 52%;
  }
  #feature .box .txt h3 br {
    display: none;
  }
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  #feature .box .inner {
    display: flex;
    flex-direction: column;
  }
  #feature .box .img {
    position: inherit;
    width: 80%;
    margin: 0 auto;
  }
  #feature .box .txt {
    width: 100%;
  }
  #feature .box .txtInner {
    padding: 0 0 40px;
  }
  #feature .box:nth-of-type(2n) .txtInner {
    padding: 0;
  }
  #feature .box .txtInner::before {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  #feature .box {
    position: relative;
    margin-top: 30px;
  }
  #feature .box .inner {
    padding: 100px 0 0;
    margin-top: -100px;
  }
  #feature .box:nth-child(odd)::before, #feature .box:nth-child(odd)::after {
    padding-bottom: 40px;
  }
  #feature .box .img {
    position: relative;
    width: 100%;
  }
  #feature .box .txt {
    width: 100%;
    padding: 0;
    height: auto;
    display: block;
  }
  #feature .box .txtInner {
    display: block;
    padding: 0 10px 20px;
    margin-top: 20px;
  }
  #feature .box .txt h2 {
    font-size: 14px;
  }
  #feature .box .txt h3 {
    font-size: 18px;
  }
  #feature .box .txt p {
    font-size: 13px;
    margin-top: 10px;
  }
  #feature .box .txt p.note {
    font-size: 12px;
    margin: 10px 0 0 1em;
  }
  #feature .box .txt table th, #feature .box .txt table td {
    padding-top: 10px;
    font-size: 13px;
  }
  #feature .box .txt ul {
    margin: 15px auto 0;
    width: 200px;
    text-align: center;
  }
  #feature .box .txt ul li {
    display: block;
    margin: 5px 2px 0 2px;
    text-align: left;
  }
  #feature .box .txt ul li a {
    font-size: 13px;
    padding: 15px 15px 15px 15px;
    width: 100%;
  }
  #feature .box .open {
    padding: 12px;
    font-size: 13px;
    margin-top: 15px;
  }
  #feature .box .txtInner::before {
    right: 50%;
    width: 60px;
    transform: translateX(50%);
    -ms-transform: translateX(50%);
  }
}
/* ryoukin */
#ryoukin {
  margin-bottom: 80px;
  background-color: #666666;
  color: #fff;
}
#ryoukin h2 {
  color: #fff;
}
#ryoukin .ttl::before {
  background-color: #fff;
}
#ryoukin .inner {
  max-width: 980px;
}
#ryoukin .inner > p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}
#ryoukin .over {
  position: relative;
}
#ryoukin .over .right {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  padding-bottom: 10px;
}
#ryoukin table {
  width: 100%;
  border-bottom: solid #fff 1px;
}
#ryoukin table th, #ryoukin table td {
  padding: 20px 0 20px 10px;
  border-top: solid #fff 1px;
  text-align: center;
}
#ryoukin table th {
  background: rgba(255, 255, 255, .1);
}
#ryoukin table th br {
  display: none;
}
#ryoukin table td a {
  display: block;
  padding: 10px 5px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  margin: 0 auto;
  max-width: 200px;
}
#ryoukin table td.solo a {
  margin: 3px 0 10px;
}
#ryoukin table td.solo a:last-child {
  margin-bottom: 0;
}
#ryoukin ul {
  margin-top: 20px;
}
#ryoukin ul li {
  font-size: 14px;
  line-height: 2;
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 750px) {
  #ryoukin {
    padding: 60px 0;
  }
  #ryoukin .inner > p {
    font-size: 14px;
  }
  #ryoukin table th, #ryoukin table td {
    padding: 10px 0 10px 5px;
    font-size: 11px;
  }
  #ryoukin table th br {
    display: block;
  }
  #ryoukin ul {
    margin-top: 20px;
  }
  #ryoukin ul li {
    font-size: 12px;
  }
  #ryoukin table td a {
    padding: 10px 0;
    font-size: 11px;
  }
  #ryoukin table td a span {
    display: none;
  }
}
/* access */
#access #map {
  overflow: hidden;
  position: relative;
  height: 600px;
  background-color: #e4e4e4;
  width: 100%;
}
#access #map iframe {
  position: absolute;
  width: calc(100%);
  height: calc(100%);
}
#access table {
  max-width: 1000px;
  margin: 20px auto 0;
}
#access table tr:last-child th, #access table tr:last-child td {
  padding-bottom: 0;
}
#access table th, #access table td {
  font-size: 16px;
  padding: 10px 0;
  vertical-align: top;
  line-height: 2;
  text-align: left;
}
#access table th {
  white-space: nowrap;
  padding-right: 20px;
}
@media screen and (max-width: 750px) {
  #access #map {
    height: 400px;
  }
  #access table th, #access table td {
    font-size: 13px;
    padding: 10px 0;
  }
  #access table th {
    padding-right: 10px;
  }
}
/* bnr
-----------------------------------------------*/
.bnr {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
@media screen and (max-width: 750px) {
  .bnr {
    padding: 0 20px 40px;
  }
}
/* slider
-----------------------------------------------*/
.slick-slider {
  overflow: hidden;
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.slick-list {
  position: relative;
  display: block;
  margin: 0;
  height: 100%;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
}
.slick-slide:focus {
  outline: none;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.slick-next, .slick-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0);
  padding: 0;
  border: none;
  cursor: pointer;
}
.slick-next {
  right: 0;
}
.slick-prev {
  left: 0;
}
.slick-arrow::before {
  position: relative;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transition: left .2s cubic-bezier(.210, .60, .350, 1);
}
.slick-next::before {
  left: -8%;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.slick-prev::before {
  left: 8%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slick-next:hover::before {
  left: -2%;
}
.slick-prev:hover::before {
  left: 2%;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: background .4s cubic-bezier(.210, .60, .350, 1);
}
.slick-dots li.slick-active button, .slick-dots li button:hover {
  background-color: rgba(255, 255, 255, 1);
}
/* lineup */
#lineup {
  background: #d9d3c7;
  padding: 100px 0;
}
#lineup .ttl {
  text-align: center;
}
#lineup .ttl p {
  font-size: 52px;
  line-height: 1.2em;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
}
#lineup .ttl h2 {
  font-size: 18px;
  margin: 0px;
  line-height: 1.2em;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
#lineup .map {
  max-width: 1280px;
  margin: 80px auto 0;
}
#lineup .inner > p {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 30px;
}
#lineup .map {
  position: relative;
}
#lineup .map ul li {
  position: absolute;
  width: 126px;
  height: 126px;
  transform: translate(-50%, -44%);
  opacity: 0;
  transition: opacity .8s cubic-bezier(.210, .60, .350, 1), transform .8s cubic-bezier(.210, .60, .350, 1);
}
#lineup .map.fade ul li {
  transform: translate(-50%, -50%);
  opacity: 1;
}
#lineup .map ul li.lineup1 {
  left: 42%;
  top: 80%;
}
#lineup .map ul li.lineup2 {
  left: 18%;
  top: 35%;
}
#lineup .map ul li.lineup3 {
  left: 32%;
  top: 31%;
}
#lineup .map ul li.lineup4 {
  left: 72%;
  top: 92%;
}
#lineup .map ul li.noClick {
  pointer-events: none;
}
#lineup .map ul li a {
  position: relative;
  display: table;
  width: 126px;
  height: 126px;
  background: #EF8742;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  box-sizing: border-box;
  padding: 5px 0 0 0;
  border: 6px solid #fff;
  cursor: pointer;
  transform: scale(1);
  transition: background .2s cubic-bezier(.210, .60, .350, 1);
}
#lineup .map ul li a:hover {
  text-decoration: none;
  opacity: 1;
  background: #ffae64;
}
#lineup .map ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translateX(-50%) rotate(-90deg);
  -ms-transform: translateX(-50%) rotate(-90deg);
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: 12px solid transparent;
  border-right: 20px solid #fff;
}
#lineup .map ul li.lineup1 a::before, #lineup .map ul li.lineup4 a::before {
  left: calc(50%);
  bottom: 120px;
  top: auto;
  transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
}
#lineup .map ul li a span {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.2;
}
@-moz-document url-prefix() {
  #lineup .map ul li.lineup1 a::before, #lineup .map ul li.lineup4 a::before {
    bottom: 125px;
  }
  #lineup .map ul li.lineup2 a::before, #lineup .map ul li.lineup3 a::before {
    top: 125px;
  }
}
@media screen and (max-width: 960px) {
  #lineup .map ul li {
    width: 100px;
    height: 100px;
  }
  #lineup .map ul li a {
    width: 100px;
    height: 100px;
    border: 4px solid #fff;
  }
  #lineup .map ul li a span {
    font-size: 14px;
  }
  #lineup .map ul li.lineup2 a::before, #lineup .map ul li.lineup3 a::before {
    top: 98px;
  }
  #lineup .map ul li.lineup1 a::before, #lineup .map ul li.lineup4 a::before {
    bottom: 98px;
  }
}
@media screen and (max-width: 740px) {
  #lineup {
    padding: 60px 0;
  }
  #lineup .ttl p {
    font-size: 32px;
  }
  #lineup .ttl h2 {
    font-size: 16px;
  }
  #lineup .inner > p {
    font-size: 18px;
    margin-top: 20px;
  }
  #lineup .map {
    width: 120vw;
    margin-left: -17vw;
    margin-top: 40px;
  }
  #lineup .map ul li {
    width: 80px;
    height: 80px;
  }
  #lineup .map ul li.lineup1 {
    left: 44%;
    top: 84%;
  }
  #lineup .map ul li.lineup2 {
    left: 20%;
    top: 31%;
  }
  #lineup .map ul li.lineup3 {
    left: 36%;
    top: 26%;
  }
  #lineup .map ul li.lineup4 {
    left: 72%;
    top: 92%;
  }
  #lineup .map ul li a {
    width: 80px;
    height: 80px;
    font-size: 12px;
    padding: 2px 0 0 0;
    border: 3px solid #fff;
  }
  #lineup .map ul li a::before {
    display: none;
    top: 78px;
    width: 6px;
    height: 6px;
    border: 6px solid transparent;
    border-right: 10px solid #fff;
  }
  #lineup .map ul li.lineup a::before {
    top: -15px;
    transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
  }
}
/* bnr
-----------------------------------------------*/
#bnr {
  max-width: 770px;
  padding: 0 40px 100px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  #bnr {
    padding: 0 20px 20px;
  }
}
/* importantNews
-----------------------------------------------*/
#importantNews {
  padding: 36px 40px 20px;
}
.importantBox {
  background: #f0f0f0;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 20px 20px 24px;
  text-align: center;
  margin: 8px auto 0;
}
.importantBox:first-child {
  margin-top: 0;
}
.importantBox h2 {
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.01em;
}
.importantBox p {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
.importantBox .btn {
  width: 180px;
  margin: 10px auto 0;
}
.importantBox .btn a {
  display: block;
  position: relative;
  background: #00afdd;
  border-radius: 4px;
}
.importantBox .btn a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  opacity: 0;
  background: #333;
  transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
.importantBox .btn a:hover::after {
  opacity: 0.2;
}
.importantBox .btn a span {
  font-size: 13px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.importantBox .btn a span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  margin-left: 6px;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  #importantNews {
    padding: 20px 0 9px;
  }
  .importantBox {
    padding: 20px 16px;
  }
  .importantBox h2 {
    font-size: 15px;
    line-height: 1.73;
  }
  .importantBox p {
    font-size: 13px;
    line-height: 1.84;
    margin-top: 0;
  }
  .importantBox .btn a {
    border-radius: 2px;
  }
  .importantBox .btn a::after {
    border-radius: 2px;
  }
}
#faq .inner {
  max-width: 1000px;
}
#faq .slid {
  position: relative;
}
#faq .slid.imgNone {
  padding-left: 0;
}
#faq .slid .ttlSub {
  margin-bottom: 2px;
  position: relative;
  padding: 25px 70px 25px 40px;
  cursor: pointer;
  background-color: #f5f5f5;
  position: relative;
}
#faq .slid .ttlSub::before, #faq .slid .ttlSub::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: #000;
  top: 50%;
}
#faq .slid .ttlSub::before {
  right: 35px;
  width: 4px;
  height: 21px;
  margin-top: -10px;
  opacity: 1;
}
#faq .slid .ttlSub::after {
  right: 26px;
  width: 21px;
  height: 4px;
  margin-top: -2px;
}
#faq .slid .ttlSub.active::after {
  opacity: 0;
}
#faq .slid .ttlSub::before, #faq .slid .ttlSub::after {
  -webkit-transition: transform 0.35s, opacity 0.35s;
  -ms-transition: transform 0.35s, opacity 0.35s;
  transition: transform 0.35s, opacity 0.35s;
}
#faq .slid .ttlSub.active::before, #faq .slid .ttlSub.active::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#faq .slid .ttlSub h3 {
  font-size: 20px;
}
#faq .slid .ttlSub h3 {
  position: relative;
  padding-left: 40px;
}
#faq .slid .ttlSub h3::before {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: #2E3445;
  content: "Q";
  position: absolute;
  top: -6px;
  left: 0;
  line-height: 1;
}
#faq .slid .detail {
  display: none;
  padding: 40px 0 40px 40px;
}
#faq .slid .detail p {
  position: relative;
}
#faq .slid .detail .box {
  position: relative;
  padding-left: 40px;
}
#faq .slid .detail .box::before {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  content: "A";
  position: absolute;
  top: -2px;
  left: 0;
  color: #EF8742;
  line-height: 1;
}
#faq .slid .detail ul {
  margin-top: 50px;
}
#faq .slid .detail ul:first-child {
  margin-top: 0;
}
#faq .slid .detail ul li {
  font-size: 18px;
  line-height: 2;
  font-weight: bold;
  margin-left: 1em;
  text-indent: -1em;
  margin-top: 10px;
}
#faq .slid .detail ul li::before {
  content: "・";
}
#faq .slid .detail ul li:first-child {
  margin-top: 0;
}
#faq .slid .detail p {
  font-size: 16px;
  line-height: 2;
}
#faq .slid .detail p strong {
  display: block;
  font-size: 18px;
  color: #1e4d84;
  margin-top: 20px;
}
#faq .slid .detail p strong.notice {
  color: #910000;
}
#faq .slid .detail p a {
  color: #0071BC;
}
#faq .slid .detail > a {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #0071BC;
  margin-top: 30px;
  border-bottom: 1px solid transparent;
}
#faq .slid .detail > a:hover {
  opacity: 1;
  border-bottom: 1px solid #0071BC;
  -webkit-transition: border 0.1s;
  -ms-transition: border 0.1s;
  transition: border 0.1s;
}
#faq a {
  display: block;
  width: fit-content;
  margin: 24px 0 0 auto;
  font-size: 16px;
  font-weight: bold;
}
#faq a span {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  vertical-align: -4px;
}
#faq a span:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  transform: rotate(45deg);
}
#faq table {
  margin-top: 10px;
}
#faq table tr {
  border-top: solid #515266 1px;
}
#faq table th, #faq table td {
  padding: 12px 10px;
}
#faq tr:last-child {
  border-bottom: solid #515266 1px;
}
@media screen and (max-width: 750px) {
  #faq .slid {
    text-align: left;
  }
  #faq .slid .ttlSub {
    padding: 20px 60px 20px 20px;
  }
  #faq .slid .ttlSub::before {
    right: 25px;
    width: 4px;
    height: 21px;
    margin-top: -10px;
  }
  #faq .slid .ttlSub::after {
    right: 16px;
    width: 21px;
    height: 4px;
    margin-top: -2px;
  }
  #faq .slid .detail {
    display: none;
    padding: 20px 0 20px 20px;
  }
  #faq .slid .detail .box {
    padding-left: 30px;
  }
  #faq .slid .detail .box::before {
    font-size: 28px;
  }
  #faq .slid .ttlSub h3 {
    font-size: 15px;
    padding-left: 30px;
  }
  #faq .slid .ttlSub h3::before {
    font-size: 28px;
  }
  #faq .slid .ttl::before {
    right: 25px;
  }
  #faq .slid .ttl::after {
    right: 16px;
  }
  #faq .slid .detail p {
    font-size: 13px;
    line-height: 1.8;
  }
  #faq table th, #faq table td {
    padding: 8px 10px;
    font-size: 13px;
  }
  #faq .slid .detail .btn a {
    font-size: 13px;
    padding: 10px;
  }
  #faq a {
    margin: 16px 0 0 auto;
    font-size: 14px;
  }
}
#other .inner {
  max-width: 1000px;
}
#other ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 40px;
}
#other ul li h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
#other ul li p {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  #other ul {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
  }
  #other ul li h3 {
    font-size: 16px;
  }
  #other ul li p {
    font-size: 14px;
  }
}
#ex .inner {
  max-width: 960px;
}
#ex .ttl {
  margin-bottom: 40px;
}
#ex p {
  text-align: center;
}
#ex .inner > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 60px;
}
#ex .inner > ul > li {
  max-width: 160px;
  margin: 0 auto;
}
#ex .inner > ul li img {
  display: block;
  width: 150px;
  margin: 0 auto 16px;
}
#ex .inner > ul li ul li {
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  #ex .inner > ul {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px auto 0;
    max-width: 350px;
  }
}