@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #000;
}

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #000; text-decoration: none; }
a:visited { color: #000; text-decoration: underline; }
a:hover   { color: #000; text-decoration: underline; }
a:active  { color: #000; text-decoration: underline; }

/* font-family: "Barlow", sans-serif; */

/*==========================================
 body
===========================================*/

html {
  background: #F5F5F5;
  overflow: auto;
}
body {
  overflow: hidden;
	/* min-width: 1100px; */
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 85px;
  background-color: #FFF;
}
header #header {
  position: relative;
  width: calc(100% - 40px);
  margin: 0 auto;
}
header #headerLogoArea {
  position: absolute;
  left: 0;
  top: 14px;
}
header #headerLogoArea h1 img {
  width: 250px;
  height: auto;
}
header #headerLanguage {
  position: absolute;
  left: 355px;
  top: 42px;
  width: 80px;
}
header #headerLanguage ul {
  position: relative;
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
header #headerLanguage ul::before {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0 0 0 -6px;
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  content: "/";
}
header #headerLanguage ul li a {
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #3C64FF;
  text-decoration: underline;
  transition: all 0.3s ease;
}
header #headerLanguage ul li.active a {
  color: #000;
  text-decoration: none;
}
header #headerLanguage ul li a:hover {
  opacity: 0.7;
}
header .headerText {
  position: absolute;
  right: 115px;
  top: 16px;
}
header .headerText p {
  font-family: "Barlow", sans-serif;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  header #header {
    width: calc(100% - 30px);
  }
  header #headerLogoArea {
    z-index: 1100;
    top: 7px;
    background-color: #FFF;
  }
  header #headerLogoArea h1 img {
    width: 192px;
    height: auto;
  }
  header #headerLanguage {
    display: none;
  }
  header .headerText {
    right: 47px;
    top: 13px;
  }
  header .headerText p {
    font-size: 1.3rem;
  }
}


header #headerMenu {
  display: block;
  z-index: 700;
  position: absolute;
  right: 30px;
  top: 20px;
  width: 53px;
  height: 46px;
  box-sizing: border-box;
}
header #headerMenu .menu-trigger,
header #headerMenu .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
header #headerMenu .menu-trigger {
  position: relative;
  width: 53px;
  height: 46px;
}
header #headerMenu .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
}
header #headerMenu .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header #headerMenu .menu-trigger span:nth-of-type(2) {
  top: 20px;
}
header #headerMenu .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

header #headerMenu .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(21px) rotate(-45deg);
}
header #headerMenu .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header #headerMenu .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-21px) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  header #headerMenu {
    right: 15px;
    top: 19px;
    width: 30px;
    height: 25px;
  }
  header #headerMenu .menu-trigger {
    width: 30px;
    height: 25px;
  }
  header #headerMenu .menu-trigger span {
    height: 2px;
  }
  header #headerMenu .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }

  header #headerMenu .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  header #headerMenu .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}


header #overay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
header #headerNavi {
  position: absolute;
  right: -500px;
  top: 0;
  display: block;
  width: 480px;
  height: 100vh;
  padding: 100px 40px 0;
  box-sizing: border-box;
  background-color: #FFF;
  overflow-y: scroll;
}
header #headerNavi #headerNavi_Scroll {
  padding: 0 0 50px;
}
header #headerNavi ul {
  width: 100%;
  list-style-type: none;
}
header #headerNavi ul li {
  padding: 0 0 30px;
}
header #headerNavi ul li a {
  font-size: 3.0rem;
  font-weight: 700;
  color: #3C64FF;
  transition: all 0.3s ease;
}
header #headerNavi ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
header #headerNavi ul li.sub {
  padding: 0 0 20px;
}
header #headerNavi ul li.typ01 a {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1C201D;
}
header #headerNavi ul li.sub a {
  padding: 0 0 0 35px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #1C201D;
}

header #headerNavi_footer {
  position: relative;
  width: calc(100% + 80px);
  margin: 0 0 0 -40px;
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header #headerNavi_footer::before {
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 6px;
  background-color: #3C64FF;
  content: "";
}
header #headerNavi_footer .column_R {
  width: 320px;
  height: 95px;
  margin-left: calc(100% - 320px);
  background-color: #3C64FF;
}
header #headerNavi_footer .column_R ul {
  width: 200px;
  margin: 0 auto;
  padding: 25px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
header #headerNavi_footer .column_R ul li {
  width: 45px;
}
header #headerNavi_footer .column_R ul li img {
  width: 45px;
  height: 45px;
}

header #headerNavi_footer .column_L {
  position: relative;
  width: 400px;
  height: 95px;
  margin-right: calc(100% - 400px);
  padding: 35px 0 0 35px;
  box-sizing: border-box;
  background-color: #3C64FF;
}
header #headerNavi_footer .column_L  h3 {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFF;
}
header #headerNavi_footer .column_L  .link01 {
  position: absolute;
  left: 186px;
  top: 26px;
  width: 188px;
}
header #headerNavi_footer .column_L  .link01 a {
  display: block;
  width: 188px;
  height: 50px;
  padding: 10px 0 0;
  border: 2px solid #FFF;
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
header #headerNavi_footer .column_L  .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  header #headerNavi {
    right: -100vw;
    width: 100%;
    height: 100vh;
    padding: 70px 25px 0;
  }
  header #headerNavi ul li {
    padding: 0 0 25px;
  }
  header #headerNavi ul li a {
    font-size: 2.2rem;
  }
  header #headerNavi ul li.typ01 a {
    font-size: 1.8rem;
  }
  header #headerNavi ul li.sub {
    padding: 0 0 20px;
  }
  header #headerNavi ul li.sub a {
    padding: 0 0 0 20px;
    font-size: 1.8rem;
  }

  header #headerNavi_footer {
    width: calc(100% + 50px);
    margin: 0 0 0 -25px;
    padding: 10px 0 0;
  }
  header #headerNavi_footer .column_R {
    width: 250px;
    height: auto;
    margin-left: calc(100% - 250px);
  }
  header #headerNavi_footer .column_R ul {
    width: 160px;
    padding: 15px 0 0;
  }
  header #headerNavi_footer .column_R ul li {
    width: 30px;
  }
  header #headerNavi_footer .column_R ul li img {
    width: 30px;
    height: 30px;
  }

  header #headerNavi_footer .column_L {
    width: 300px;
    height: auto;
    margin-right: calc(100% - 300px);
    padding: 20px 0 20px 15px;
  }
  header #headerNavi_footer .column_L  h3 {
    font-size: 2.0rem;
  }
  header #headerNavi_footer .column_L  .link01 {
    position: absolute;
    left: 135px;
    top: 11px;
    width: 140px;
  }
  header #headerNavi_footer .column_L  .link01 a {
    width: 100%;
    height: 40px;
    padding: 10px 0 0;
    border: 2px solid #FFF;
    font-size: 1.6rem;
  }
}


/*==========================================
 フッターのスタイル
===========================================*/
footer {
  position: relative;
  width: 100%;
  min-height: 542px;
  margin: 50px 0 0;
  background-color: #3C64FF;
}
footer::before {
  position: absolute;
  left: 50%;
  top: -58px;
  width: 407px;
  height: 58px;
  margin: 0 0 0 180px;
  background-image: url("../img/footer_img01.svg");
  background-size: cover;
  content: "";
}

footer #footerNewsletter {
  width: 100%;
}
footer #footerNewsletter .footerNewsletter_inner {
  width: 1030px;
  margin: 0 auto;
  padding: 55px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer #footerNewsletter .column_L {
  position: relative;
  width: 610px;
}
footer #footerNewsletter .column_L h3 {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFF;
}
footer #footerNewsletter .column_L p {
  padding: 30px 0 0 20px;
  font-size: 1.9rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.4;
}
footer #footerNewsletter .column_L .link01 {
  position: absolute;
  right: 0;
  top: 45px;
  width: 188px;
}
footer #footerNewsletter .column_L .link01 a {
  display: block;
  width: 188px;
  height: 50px;
  padding: 10px 0 0;
  border: 2px solid #FFF;
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
footer #footerNewsletter .column_L .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

footer #footerNewsletter .column_R {
  width: 240px;
}
footer #footerNewsletter .column_R h3 {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFF;
}
footer #footerNewsletter .column_R ul {
  width: 100%;
  padding: 20px 0 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
footer #footerNewsletter .column_R ul li {
  width: 45px;
}
footer #footerNewsletter .column_R ul li img {
  width: 45px;
  height: 45px;
}

footer #footerBody {
  position: relative;
  width: 100%;
  padding: 45px 0 35px;
  background-color: #000;
}
footer #footerBody .footerBody_inner {
  width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer #footerBody .column_L {
  width: 680px;
}
footer #footerBody .column_L h4 {
  padding: 0 0 15px;
  font-family: "Barlow", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFF;
}
footer #footerBody .column_L p {
  padding: 0 0 20px 20px;
  font-size: 2.1rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.4;
}
footer #footerBody .column_L p span {
  padding: 0 15px 0 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
}

footer #footerBody .column_R {
  width: 350px;
}
footer #footerBody .column_R ul {
  width: 100%;
  list-style-type: none;
}
footer #footerBody .column_R ul li {
  padding: 0 0 25px;
}
footer #footerBody .column_R ul li a {
  font-family: "Barlow", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .column_R ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
footer #footerBody .column_R .bunka_logo {
  width: 100%;
  padding: 20px 0 0;
}
footer #footerBody .column_R .bunka_logo img {
  width: 132px;
  height: auto;
}
footer #footerBody .column_R .bunka_logo p {
  padding: 15px 0 0;
  font-size: 1.0rem;
  font-weight: 400;
  color: #FFF;
  line-height: 1.6;
}


footer #footerCopyright {
  width: 100%;
  height: 50px;
  padding: 15px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border-top: 8px solid #3C64FF;
  text-align: center;
}
footer #footerCopyright p {
  font-family: "Barlow", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  footer {
    min-height: auto;
    margin: 50px 0 0;
    background-color: #000;
  }
  footer::before {
    left: auto;
    right: 15px;
    top: -21px;
    width: 148px;
    height: 21px;
    margin: 0 0 0 74px;
    background-image: url("../img/footer_img01_sp.svg");
  }

  footer #footerNewsletter {
    width: 100%;
  }
  footer #footerNewsletter .footerNewsletter_inner {
    width: 100%;
    padding: 35px 0 0;
  }
  footer #footerNewsletter .column_L {
    width: 50%;
    height: 150px;
    padding: 20px 0 20px 15px;
    box-sizing: border-box;
    background-color: #3C64FF;
  }
  footer #footerNewsletter .column_L h3 {
    font-size: 2.1rem;
  }
  footer #footerNewsletter .column_L p {
    padding: 10px 0 0 15px;
    font-size: 1.3rem;
  }
  footer #footerNewsletter .column_L .link01 {
    position: static;
    width: 124px;
    margin: 10px 0 0 15px;
  }
  footer #footerNewsletter .column_L .link01 a {
    width: 124px;
    height: 36px;
    padding: 8px 0 0;
    font-size: 1.5rem;
  }

  footer #footerNewsletter .column_R {
    width: 50%;
    height: 150px;
    margin: 10px 0 0;
    padding: 40px 0 0 15px;
    box-sizing: border-box;
    background-color: #3C64FF;
  }
  footer #footerNewsletter .column_R h3 {
    font-size: 1.8rem;
  }
  footer #footerNewsletter .column_R ul {
    width: 140px;
    padding: 15px 0 0 15px;
  }
  footer #footerNewsletter .column_R ul li {
    width: 30px;
  }
  footer #footerNewsletter .column_R ul li img {
    width: 30px;
    height: 30px;
  }

  footer #footerBody {
    padding: 20px 0 0;
  }
  footer #footerBody .footerBody_inner {
    width: calc(100% - 30px);
  }

  footer #footerBody .column_L {
    width: 100%;
  }
  footer #footerBody .column_L h4 {
    padding: 0 0 10px;
    font-size: 1.8rem;
  }
  footer #footerBody .column_L p {
    padding: 0 0 15px 10px;
    font-size: 1.3rem;
  }
  footer #footerBody .column_L p span {
    padding: 0 10px 0 0;
    font-size: 1.8rem;
  }

  footer #footerBody .column_R {
    width: 100%;
    padding: 0 0 30px;
  }
  footer #footerBody .column_R ul {
    display: none;
  }
  footer #footerBody .column_R .bunka_logo p {
    font-size: 0.9rem;
  }

  footer #footerCopyright {
    height: auto;
    padding: 8px 0;
    border-top: 4px solid #3C64FF;
  }
  footer #footerCopyright p {
    font-size: 1.2rem;
  }
}



/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 1000px;
  padding: 85px 0 0 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 500px;
    padding: 60px 0 0 0;
  }
}



/*==========================================
 Top
===========================================*/
#mainContents .top_MvArea {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}
#mainContents .top_MvArea .topMvImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 720px;
}
#mainContents .top_MvArea .topMvImg img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}
#mainContents .top_MvArea h2 {
  position: absolute;
  left: 50px;
  top: 220px;
  font-size: 4.5rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.5);
}
#mainContents .top_MvArea p {
  position: absolute;
  left: 50px;
  top: 440px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.3;
  text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.5);
}
#mainContents .top_MvArea .link01 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  width: 290px;
  display: flex;
  justify-content: space-between;
}
#mainContents .top_MvArea .link01 a {
  display: block;
  width: 138px;
  height: 69px;
  padding: 22px 0 0;
  box-sizing: border-box;
  background-color: #3C64FF;
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFF;
  text-align: center;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
}
#mainContents .top_MvArea .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_MvArea {
    height: 484px;
  }
  #mainContents .top_MvArea .topMvImg {
    height: 484px;
  }
  #mainContents .top_MvArea .topMvImg img {
    height: 484px;
  }
  #mainContents .top_MvArea h2 {
    left: 15px;
    top: 164px;
    font-size: 2.4rem;
  }
  #mainContents .top_MvArea p {
    left: 15px;
    top: 280px;
    font-size: 1.2rem;
  }
  #mainContents .top_MvArea .link01 {
    left: 15px;
    bottom: 20px;
    width: 200px;
  }
  #mainContents .top_MvArea .link01 a {
    width: 94px;
    height: 48px;
    padding: 16px 0 0;
    font-size: 1.6rem;
  }
}


#mainContents .top_News {
  width: calc(100% - 100px);
  margin: 0 auto;
  padding: 45px 0 0;
}
#mainContents .top_News h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}
#mainContents .top_News ul {
  padding: 30px 0 0;
  list-style-type: none;
}
#mainContents .top_News ul li {
  position: relative;
  padding: 0 0 20px;
}
#mainContents .top_News ul li a {
  display: inline-block;
  padding: 0 0 0 90px;
  font-size: 2.2rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}
#mainContents .top_News ul li a:hover {
  text-decoration: none;
  color: #3C64FF;
}
#mainContents .top_News ul li span {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_News {
    width: calc(100% - 30px);
    padding: 40px 0 0;
  }
  #mainContents .top_News h2 {
    font-size: 3.6rem;
  }
  #mainContents .top_News ul {
    padding: 20px 0 0;
  }
  #mainContents .top_News ul li {
    position: relative;
    padding: 0 0 15px;
  }
  #mainContents .top_News ul li a {
    padding: 0 0 0 65px;
    font-size: 1.6rem;
  }
  #mainContents .top_News ul li span {
    top: 4px;
    font-size: 1.2rem;
  }
}


#mainContents .top_Tours {
  position: relative;
  width: calc(100% - 50px);
  margin: 0 0 0 50px;
  padding: 50px 0;
}
#mainContents .top_Tours h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}
#mainContents .top_Tours .link01 {
  position: absolute;
  left: 240px;
  top: 43px;
}
#mainContents .top_Tours .link01 a {
  font-family: "Barlow", sans-serif;
  font-size: 6.6rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
  transition: all 0.3s ease;
}
#mainContents .top_Tours .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .top_Tours .columnBox {
  width: 100%;
  padding: 30px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#mainContents .top_Tours .columnBox.slick-initialized {
  opacity: 1;
}
#mainContents .top_Tours .columnBox .slick-list {
  cursor: grab;
}
#mainContents .top_Tours .columnBox .slick-list:active {
  cursor: grabbing;
}
#mainContents .top_Tours .columnBox .column {
  width: 510px;
  margin: 0 30px 0 0;
}
#mainContents .top_Tours .columnBox .column a {
  transition: opacity 0.3s ease;
}
#mainContents .top_Tours .columnBox .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .top_Tours .columnBox .column img {
  width: 510px;
  height: 340px;
  object-fit: cover;
}
#mainContents .top_Tours .columnBox .column h3 {
  position: relative;
  padding: 15px 0 0 106px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .top_Tours .columnBox .column h3.status02 {
  padding: 15px 0 0 130px;
}
#mainContents .top_Tours .columnBox .column h3::before {
  position: absolute;
  left: 0;
  top: 14px;
  width: 90px;
  height: 43px;
  padding: 9px 0 0 0;
  border: 2px solid #000;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
}
#mainContents .top_Tours .columnBox .column h3.status01::before {
  content: "受付中";
}
#mainContents .top_Tours .columnBox .column h3.status02::before {
  width: 115px;
  border: 2px solid #E7E7E7;
  background: #E7E7E7;
  content: "空き枠なし";
}

#mainContents .top_Tours .columnBox .column p {
  padding: 10px 0 0 0;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.4;
}
#mainContents .top_Tours .like01 {
  width: calc(100% - 100px);
  margin: 30px auto 0;
  text-align: right;
}
#mainContents .top_Tours .like01 a {
  position: relative;
  display: block;
  padding: 0 30px 0 0;
  font-family: "Barlow", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .top_Tours .like01 a::after {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #3C64FF;
  content: "➔";
}
#mainContents .top_Tours .like01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  #mainContents .top_Tours {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 40px 0 0;
  }
  #mainContents .top_Tours h2 {
    font-size: 3.6rem;
  }
  #mainContents .top_Tours .link01 {
    left: auto;
    right: 0;
    top: 31px;
  }
  #mainContents .top_Tours .link01 a {
    font-size: 5.0rem;
  }
  #mainContents .top_Tours .columnBox {
    padding: 20px 0 0;
    opacity: 1;
  }
  #mainContents .top_Tours .columnBox .column {
    width: 100%;
    margin: 0 0 30px 0;
  }
  #mainContents .top_Tours .columnBox .column img {
    width: 100%;
    height: auto;
    aspect-ratio: 510 / 340;
  }
  #mainContents .top_Tours .columnBox .column h3 {
    padding: 15px 0 0 80px;
    font-size: 2.0rem;
  }
  #mainContents .top_Tours .columnBox .column h3.status02 {
    padding: 15px 0 0 105px;
  }
  #mainContents .top_Tours .columnBox .column h3::before {
    top: 14px;
    width: 68px;
    height: 34px;
    padding: 7px 0 0 0;
    font-size: 1.4rem;
  }
  #mainContents .top_Tours .columnBox .column h3.status02::before {
    width: 93px;
  }
  #mainContents .top_Tours .columnBox .column p {
    padding: 10px 0 0 0;
    font-size: 1.6rem;
  }
  #mainContents .top_Tours .like01 {
  width: 100%;
  margin: 20px auto 0;
  }
  #mainContents .top_Tours .like01 a {
    padding: 0 20px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .top_Tours .like01 a::after {
    font-size: 1.6rem;
  }
}


#mainContents .top_Visit {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background: rgba(153, 153, 153, 0.08);
}
#mainContents .top_Visit .top_Visit_inner {
  width: calc(100% - 100px);
  margin: 0 auto;
}
#mainContents .top_Visit h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
}
body#top #mainContents .top_Visit h2 {
  -webkit-text-stroke-color: #3C64FF;
}
#mainContents .top_Visit .link01 {
  position: absolute;
  left: 240px;
  top: 46px;
}
#mainContents .top_Visit .link01 a {
  font-family: "Barlow", sans-serif;
  font-size: 6.0rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
  transition: all 0.3s ease;
}
#mainContents .top_Visit .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .top_Visit .columnBox {
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
#mainContents .top_Visit .columnBox .column {
  width: calc((100% - 60px) / 3);
  margin: 0;
}
#mainContents .top_Visit .columnBox .column a {
  transition: all 0.3s ease;
}
#mainContents .top_Visit .columnBox .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .top_Visit .columnBox .column img {
  width: 100%;
  height: auto;
  aspect-ratio: 428 / 200;
  object-fit: cover;
}
#mainContents .top_Visit .columnBox .column h3 {
  position: relative;
  padding: 15px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .top_Visit .columnBox .column p {
  padding: 10px 0 0 0;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_Visit {
    margin: 40px 0 0;
    padding: 30px 0;
  }
  #mainContents .top_Visit .top_Visit_inner {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  #mainContents .top_Visit h2 {
    font-size: 3.6rem;
  }
  #mainContents .top_Visit .link01 {
    left: auto;
    right: 15px;
    top: 23px;
  }
  #mainContents .top_Visit .link01 a {
    font-size: 5.0rem;
  }
  #mainContents .top_Visit .link01 a {
    -webkit-text-stroke-width: 1.5px;
  }
  #mainContents .top_Visit .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .top_Visit .columnBox .column {
    width: 100%;
    margin: 0;
  }
  #mainContents .top_Visit .columnBox .column img {
    width: 100%;
    height: auto;
    aspect-ratio: 428 / 200;
  }
  #mainContents .top_Visit .columnBox .column h3 {
    padding: 15px 0 0 0;
    font-size: 2.0rem;
  }
  #mainContents .top_Visit .columnBox .column p {
    padding: 10px 0 0 0;
    font-size: 1.6rem;
  }
}


#mainContents .top_Other {
  width: 1086px;
  margin: 0 auto;
  padding: 55px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .top_Other .column_L {
  width: 506px;
}
#mainContents .top_Other .column_R {
  width: 506px;
  padding: 194px 0 0;
}
#mainContents .top_Other .column {
  width: 100%;
  padding: 0 0 30px;
}
#mainContents .top_Other .column a {
  transition: all 0.3s ease;
}
#mainContents .top_Other .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .top_Other h2 {
  position: relative;
  padding: 0 0 15px;
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  line-height: 1.0;
}
#mainContents .top_Other h2.ls_1_8 {
  letter-spacing: 1.8px;
}
#mainContents .top_Other h2.ls_2_8 {
  letter-spacing: 2.8px;
}
#mainContents .top_Other a h2::after {
  position: absolute;
  right: -6px;
  top: -5px;
  font-family: "Barlow", sans-serif;
  font-size: 6.0rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
  content: "➔";
}
#mainContents .top_Other a.blank h2::after {
  position: absolute;
  left: 381px;
  top: 50%;
  width: 35px;
  height: 33px;
  margin: -21px 0 0;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}

body#top #mainContents .top_Other h2 {
  -webkit-text-stroke-color: #3C64FF;
}
#mainContents .top_Other img {
  width: 100%;
  height: auto;
  aspect-ratio: 506 / 257;
  object-fit: cover;
}
#mainContents .top_Other .column_R .column:nth-child(1) img {
  width: 428px;
  height: 585px;
  object-fit: cover;
}
#mainContents .top_Other h3 {
  position: relative;
  padding: 15px 0 0 106px;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .top_Other h3::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 90px;
  height: 40px;
  padding: 9px 0 0 0;
  background-color: #e9e9e9;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
  content: "受付終了";
}
#mainContents .top_Other p {
  padding: 10px 0 0 0;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_Other {
    width: calc(100% - 30px);
    padding: 20px 0 0;
  }
  #mainContents .top_Other .column_L {
    width: 100%;
  }
  #mainContents .top_Other .column_R {
    width: 100%;
    padding: 0;
  }
  #mainContents .top_Other .column {
    width: 100%;
    padding: 0 0 30px;
  }
  #mainContents .top_Other h2 {
    font-size: 3.6rem;
  }
  #mainContents .top_Other a h2::after {
    right: -6px;
    top: -9px;
    font-size: 5.0rem;
    -webkit-text-stroke-width: 1.5px;
  }
  #mainContents .top_Other a.blank h2::after {
    left: 271px;
    width: 28px;
    height: 27px;
    margin: -21px 0 0;
  }
  #mainContents .top_Other .column_R .column:nth-child(1) img {
    width: 100%;
    height: auto;
    aspect-ratio: 428 / 585;
  }
  #mainContents .top_Other h3 {
    padding: 15px 0 0 80px;
    font-size: 1.8rem;
  }
  #mainContents .top_Other h3::before {
    top: 12px;
    width: 68px;
    height: 32px;
    padding: 8px 0 0 0;
    font-size: 1.4rem;
  }
  #mainContents .top_Other p {
    padding: 10px 0 0 0;
    font-size: 1.6rem;
  }
}



/* /////////////////////
TOURS Index
///////////////////// */

#mainContents .tours_List {
  width: 100%;
  padding: 50px 0;
}
#mainContents .tours_List .tours_List_inner {
  width: calc(100% - 100px);
  margin: 0 auto;
}
#mainContents .tours_List h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}
#mainContents .tours_List .columnBox {
  width: 100%;
  padding: 50px 0 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
#mainContents .tours_List .columnBox .column {
  width: calc((100% - 60px) / 3);
  margin: 0 0 50px;
}
#mainContents .tours_List .columnBox .column a {
  text-decoration: none;
  transition: all 0.3s ease;
}
#mainContents .tours_List .columnBox .column a:hover {
  opacity: 0.7;
}
#mainContents .tours_List .columnBox .column img {
  width: 100%;
  height: auto;
  aspect-ratio: 432 / 288;
  object-fit: cover;
}
#mainContents .tours_List .columnBox .column h3 {
  position: relative;
  padding: 15px 0 0 106px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .tours_List .columnBox .column h3.status02 {
  padding: 15px 0 0 130px;
}
#mainContents .tours_List .columnBox .column h3::before {
  position: absolute;
  left: 0;
  top: 14px;
  width: 90px;
  height: 43px;
  padding: 9px 0 0 0;
  border: 2px solid #000;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
}
#mainContents .tours_List .columnBox .column h3.status01::before {
  content: "受付中";
}
#mainContents .tours_List .columnBox .column h3.status02::before {
  width: 115px;
  border: 2px solid #E7E7E7;
  background: #E7E7E7;
  content: "空き枠なし";
}
#mainContents .tours_List .columnBox .column p.location {
  padding: 20px 0 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #666666;
}
#mainContents .tours_List .columnBox .column p.description {
  padding: 10px 0 0 0;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .tours_List .columnBox .column p.price {
  padding: 10px 0 0 0;
  font-size: 2.3rem;
  font-weight: 400;
}
#mainContents .tours_List .columnBox .column .upcoming_dates {
  width: 100%;
  margin: 15px 0 0;
  padding: 15px 15px 13px;
  background-color: #E7E7E7;
  box-sizing: border-box;
}
#mainContents .tours_List .columnBox .column .upcoming_dates p {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .tours_List {
    padding: 30px 0;
  }
  #mainContents .tours_List .tours_List_inner {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  #mainContents .tours_List h2 {
    font-size: 3.6rem;
  }
  #mainContents .tours_List .columnBox {
    padding: 30px 0 0;
  }
  #mainContents .tours_List .columnBox .column {
    width: 100%;
    margin: 0 0 30px;
  }
  #mainContents .tours_List .columnBox .column h3 {
    padding: 15px 0 0 90px;
    font-size: 2.4rem;
  }
  #mainContents .tours_List .columnBox .column h3.status02 {
    padding: 15px 0 0 115px;
  }
  #mainContents .tours_List .columnBox .column h3::before {
    width: 75px;
    height: 38px;
    font-size: 1.4rem;
  }
  #mainContents .tours_List .columnBox .column h3.status02::before {
    width: 100px;
  }
  #mainContents .tours_List .columnBox .column p.location {
    font-size: 1.4rem;
  }
  #mainContents .tours_List .columnBox .column p.description {
    font-size: 2.0rem;
  }
  #mainContents .tours_List .columnBox .column p.price {
    font-size: 2.0rem;
  }
  #mainContents .tours_List .columnBox .column .upcoming_dates p {
    font-size: 1.6rem;
  }
}


/* /////////////////////
TOURS Entry
///////////////////// */
#mainContents .tours_entry {
  width: 100%;
}
#mainContents .tours_entry .tours_entry_inner {
  position: relative;
  width: 1100px;
  padding: 100px 0 80px;
  margin: 0 auto;
}
#mainContents .tours_entry .titleArea h3 {
  position: relative;
  padding: 15px 0 0 0;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .tours_entry .titleArea h3.status02 {
  padding: 15px 0 0 0;
}
#mainContents .tours_entry .titleArea h3::before {
  position: absolute;
  left: 0;
  top: -40px;
  width: 115px;
  height: 43px;
  padding: 9px 0 0 0;
  border: 2px solid #000;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
}
#mainContents .tours_entry .titleArea h3.status01::before {
  content: "受付中";
}
#mainContents .tours_entry .titleArea h3.status02::before {
  border: 2px solid #E7E7E7;
  background: #E7E7E7;
  content: "空き枠なし";
}

#mainContents .tours_entry .titleArea .mailLink {
  position: absolute;
  left: 135px;
  top: 60px;
  width: 350px;
  height: 43px;
}
#mainContents .tours_entry .titleArea .mailLink a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 9px 0 0 40px;
  border: 2px solid #3C64FF;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  color: #3C64FF;
  transition: all 0.3s ease;
}
#mainContents .tours_entry .titleArea .mailLink a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .tours_entry .titleArea .mailLink a::before {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 22px;
  height: 15.5px;
  margin: -8px 0 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .tours_entry .titleArea p.location {
  padding: 20px 0 0 0;
  font-size: 2.0rem;
  font-weight: 400;
  color: #666666;
}
#mainContents .tours_entry .titleArea p.description {
  padding: 10px 0 0 0;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}

#mainContents .tours_entry .imgArea {
  width: 100%;
  padding: 40px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .tours_entry .imgArea .column_L {
  width: 558px;
}
#mainContents .tours_entry .imgArea .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .tours_entry .imgArea .column_L .imgArea_slider {
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#mainContents .tours_entry .imgArea .column_L .imgArea_slider.slick-initialized {
  opacity: 1;
}
#mainContents .tours_entry .imgArea .column_L .imgArea_slider .slick-list {
  cursor: grab;
}
#mainContents .tours_entry .imgArea .column_L .imgArea_slider .slick-list:active {
  cursor: grabbing;
}
#mainContents .tours_entry .imgArea .column_R {
  width: 488px;
}
#mainContents .tours_entry .imgArea .column_R p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 2.0;
}

#mainContents .tours_entry .pageNavi {
  width: 100%;
  padding: 50px 0 0;
}
#mainContents .tours_entry .pageNavi ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
#mainContents .tours_entry .pageNavi ul li {
  width: 358px;
  height: 82px;
}
#mainContents .tours_entry .pageNavi ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 22px 0 0;
  background-color: #333333;
  box-sizing: border-box;
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .tours_entry .pageNavi ul li a::before {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  font-family: "Barlow", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #FFF;
  text-align: center;
  content: "⇣";
}
#mainContents .tours_entry .pageNavi ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  #mainContents .tours_entry .tours_entry_inner {
    position: relative;
    width: calc(100% - 30px);
    padding: 70px 0 50px;
  }
  #mainContents .tours_entry .titleArea h3 {
    padding: 15px 0 0 0;
    font-size: 2.4rem;
  }
  #mainContents .tours_entry .titleArea h3.status02 {
    padding: 15px 0 0 0;
  }
  #mainContents .tours_entry .titleArea h3::before {
    width: 75px;
    height: 38px;
    font-size: 1.4rem;
  }
  #mainContents .tours_entry .titleArea h3.status02::before {
    width: 90px;
  }
  #mainContents .tours_entry .titleArea .mailLink {
    left: 102px;
    top: 30px;
    width: 245px;
    height: 38px;
  }
  #mainContents .tours_entry .titleArea .mailLink a {
    padding: 11px 0 0 35px;
    font-size: 1.2rem;
  }
  #mainContents .tours_entry .titleArea .mailLink a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #mainContents .tours_entry .titleArea .mailLink a::before {
    left: 9px;
    width: 20px;
    height: 13.5px;
    margin: -7px 0 0 0;
  }
  #mainContents .tours_entry .titleArea p.location {
    font-size: 1.4rem;
  }
  #mainContents .tours_entry .titleArea p.description {
    font-size: 2.0rem;
  }

  #mainContents .tours_entry .imgArea {
    padding: 20px 0 0 0;
  }
  #mainContents .tours_entry .imgArea .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .tours_entry .imgArea .column_R {
    width: 100%;
  }
  #mainContents .tours_entry .imgArea .column_R p {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  #mainContents .tours_entry .pageNavi {
    width: calc(100% + 30px);
    margin: 0 0 0 -15px;
    padding: 30px 0 0;
  }
  #mainContents .tours_entry .pageNavi.fixed {
    position: fixed;
    left: 0;
    top: 60px;
    z-index: 900;
    width: 100%;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    background-color: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  #mainContents .tours_entry .pageNavi ul li {
    width: 32.5%;
    height: 60px;
  }
  #mainContents .tours_entry .pageNavi ul li a {
    padding: 14px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .tours_entry .pageNavi ul li a::before {
    top: 36px;
    font-size: 1.4rem;
  }
  #mainContents .tours_entry .pageNavi_dummy {
    display: block;
  }
}


#mainContents .tours_entry .highlightsArea {
  width: 100%;
  padding: 60px 0 0;
}
#mainContents .tours_entry .highlightsArea h3 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}
#mainContents .tours_entry .highlightsArea .highlights_Img {
  width: 100%;
  padding: 40px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L {
  width: 558px;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV {
  width: 100%;
  padding: 0 0 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV.slick-initialized {
  opacity: 1;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV .slick-list {
  cursor: grab;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV .slick-list:active {
  cursor: grabbing;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV img {
  width: 100%;
  height: auto;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV_Navi {
  width: 100%;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV_Navi ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV_Navi ul li {
  width: 24%;
  cursor: pointer;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV_Navi ul li img {
  width: 100%;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_L .imgMV_Navi ul li.current img {
  opacity: 1;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_R {
  width: 488px;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_R ul {
  list-style-type: none;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_R ul li {
  padding: 0 0 10px;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_R ul li a {
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .tours_entry .highlightsArea .highlights_Img .column_R ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .tours_entry .highlightsArea .highlights_Profile {
  width: 100%;
  margin: 35px 0 0;
  padding: 25px 40px;
  background-color: #3C64FF;
  box-sizing: border-box;
}
#mainContents .tours_entry .highlightsArea .highlights_Profile h4 {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #FFF;
}
#mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox {
  width: 100%;
  padding: 25px 0 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_L {
  width: 237px;
}
#mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_L img {
  width: 237px;
  height: auto;
}
#mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_R {
  padding: 0 0 0 40px;
}
#mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_R p {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .tours_entry .highlightsArea {
    padding: 40px 0 0;
  }
  #mainContents .tours_entry .highlightsArea h3 {
    font-size: 3.6rem;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Img {
    padding: 20px 0 0 0;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Img .column_L {
    width: 100%;
    padding: 0 0 30px;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Img .column_R {
    width: 100%;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Img .column_R ul li {
    padding: 0 0 10px;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Img .column_R ul li a {
    font-size: 1.6rem;
  }

  #mainContents .tours_entry .highlightsArea .highlights_Profile {
    margin: 20px 0 0;
    padding: 20px;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Profile h4 {
    font-size: 1.8rem;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_L {
    width: 200px;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_L img {
    width: 200px;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_R {
    padding: 20px 0 0;
  }
  #mainContents .tours_entry .highlightsArea .highlights_Profile .columnBox .column_R p {
    font-size: 1.6rem;
  }
}



#mainContents .tours_entry .highlights_Point {
  width: 100%;
  padding: 70px 0 0;
}
#mainContents .tours_entry .highlights_Point h4 {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .tours_entry .highlights_Point h5 {
  padding: 45px 0 0;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .tours_entry .highlights_Point p {
  padding: 45px 0 0;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .tours_entry .highlights_Point img {
  max-width: 100%;
  height: auto;
  padding: 45px 0 0;
}

#mainContents .tours_entry .highlights_References {
  width: 100%;
  margin: 50px 0 0;
  padding: 20px 30px;
  box-sizing: border-box;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
#mainContents .tours_entry .highlights_References h4 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .tours_entry .highlights_References p {
  padding: 15px 0 0;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .tours_entry .highlights_Point {
    padding: 50px 0 0;
  }
  #mainContents .tours_entry .highlights_Point h4 {
    font-size: 1.8rem;
  }
  #mainContents .tours_entry .highlights_Point h5 {
    padding: 25px 0 0;
    font-size: 1.8rem;
  }
  #mainContents .tours_entry .highlights_Point p {
    padding: 25px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .tours_entry .highlights_Point img {
    padding: 25px 0 0;
  }

  #mainContents .tours_entry .highlights_References {
    margin: 30px 0 0;
    padding: 20px 15px;
  }
  #mainContents .tours_entry .highlights_References h4 {
    font-size: 1.8rem;
  }
  #mainContents .tours_entry .highlights_References p {
    padding: 10px 0 0;
    font-size: 1.6rem;
  }
}

#mainContents .tours_entry .tours_pageUp {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .tours_entry .tours_pageUp {
    display: block;
    position: fixed;
    right: 15px;
    bottom: 100px;
    width: 30px;
    height: 30px;
  }
  #mainContents .tours_entry .tours_pageUp img {
    width: 30px;
    height: 30px;
  }
}


#mainContents .highlightsBottom {
  width: 100%;
  background-color: #FFF;
}
#mainContents .highlightsBottom .highlightsBottom_inner {
  position: relative;
  width: 1100px;
  padding: 80px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#mainContents .highlightsBottom .column_L {
  width: 486px;
  padding: 67px 0 0;
}
#mainContents .highlightsBottom .outlineArea {
  width: 100%;
}
#mainContents .highlightsBottom .outlineArea h3 {
  padding: 0 0 50px;
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #FFF;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}
#mainContents .highlightsBottom .outlineArea h4 {
  padding: 0 0 10px 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .highlightsBottom .outlineArea p {
  padding: 0 0 30px 20px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .highlightsBottom .outlineArea .mapArea {
  width: 100%;
  padding: 15px 20px;
}
#mainContents .highlightsBottom .outlineArea .mapArea iframe {
  width: 100%;
  height: 487px;
}
#mainContents .highlightsBottom .outlineArea .notesArea {
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#mainContents .highlightsBottom .outlineArea .notesArea p {
  padding: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .highlightsBottom .column_R {
  width: 527px;
  padding: 62px 25px 0;
  border: 2px solid #3C64FF;
  box-sizing: border-box;
}
#mainContents .highlightsBottom .ticketArea {
  width: 100%;
}
#mainContents .highlightsBottom .ticketArea h3 {
  padding: 0 0 50px;
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #FFF;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}

#mainContents .highlightsBottom .bokunInclude {
  width: 100%;
  padding: 0 0 50px;
}

#mainContents .highlightsBottom .newsletter {
  width: calc(100% + 50px);
  margin: 0 0 0 -25px;
  padding: 20px 25px;
  background-color: #3C64FF;
  box-sizing: border-box;
}
#mainContents .highlightsBottom .newsletter h4 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFF;
}
#mainContents .highlightsBottom .newsletter .columnBox {
  width: 100%;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .highlightsBottom .newsletter .columnBox .columnSub_L {
  width: 270px;
}
#mainContents .highlightsBottom .newsletter .columnBox .columnSub_L p {
  position: relative;
  padding: 0 0 0 70px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: #FFF;
}
#mainContents .highlightsBottom .newsletter .columnBox .columnSub_L p::before {
  position: absolute;
  left: 12px;
  top: 13px;
  width: 41px;
  height: 27.5px;
  background-image: url("../img/icon02.svg");
  background-size: cover;
  content: "";
}
#mainContents .highlightsBottom .newsletter .columnBox .columnSub_R {
  width: 188px;
}
#mainContents .highlightsBottom .newsletter .columnBox .columnSub_R .link01 {
  width: 188px;
}
#mainContents .highlightsBottom .newsletter .columnBox .columnSub_R .link01 a {
  display: block;
  width: 188px;
  height: 50px;
  padding: 10px 0 0;
  border: 2px solid #FFF;
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .highlightsBottom .newsletter .columnBox .columnSub_R .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .highlightsBottom .highlightsBottom_inner {
    width: calc(100% - 30px);
    padding: 50px 0;
  }
  #mainContents .highlightsBottom .column_L {
    width: 100%;
    padding: 0 0 30px;
  }
  #mainContents .highlightsBottom .outlineArea h3 {
    padding: 0 0 40px;
    font-size: 3.6rem;
  }
  #mainContents .highlightsBottom .outlineArea h4 {
    padding: 0 0 10px 0;
    font-size: 1.8rem;
  }
  #mainContents .highlightsBottom .outlineArea p {
    padding: 0 0 30px 0;
    font-size: 1.6rem;
  }
  #mainContents .highlightsBottom .outlineArea .mapArea {
    padding: 15px 0;
  }
  #mainContents .highlightsBottom .outlineArea .notesArea p {
    font-size: 1.4rem;
  }

  #mainContents .highlightsBottom .column_R {
    width: 100%;
    padding: 50px 15px 0;
  }
  #mainContents .highlightsBottom .ticketArea h3 {
    padding: 0 0 40px;
    font-size: 3.6rem;
  }

  #mainContents .highlightsBottom .newsletter {
    width: calc(100% + 30px);
    margin: 0 0 0 -15px;
    padding: 20px 15px;
  }
  #mainContents .highlightsBottom .newsletter h4 {
    font-size: 2.0rem;
  }
  #mainContents .highlightsBottom .newsletter .columnBox {
    width: 100%;
    padding: 15px 0 0;
  }
  #mainContents .highlightsBottom .newsletter .columnBox .columnSub_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .highlightsBottom .newsletter .columnBox .columnSub_L p {
    padding: 0 0 0 70px;
    font-size: 1.6rem;
  }
  #mainContents .highlightsBottom .newsletter .columnBox .columnSub_L p::before {
    top: 10px;
  }
  #mainContents .highlightsBottom .newsletter .columnBox .columnSub_R {
    width: 100%;
  }
  #mainContents .highlightsBottom .newsletter .columnBox .columnSub_R .link01 {
    width: 140px;
  }
  #mainContents .highlightsBottom .newsletter .columnBox .columnSub_R .link01 a {
    width: 140px;
    height: 40px;
    padding: 8px 0 0;
    font-size: 1.6rem;
  }
}



#mainContents .tours_Recommend {
  width: 100%;
  padding: 100px 0;
  background-color: #FFF;
}
#mainContents .tours_Recommend .tours_Recommend_inner {
  width: calc(100% - 100px);
  margin: 0 auto;
}
#mainContents .tours_Recommend h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #1C201D;
}
#mainContents .tours_Recommend .columnBox {
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
#mainContents .tours_Recommend .columnBox .column {
  width: calc((100% - 60px) / 3);
  margin: 0;
}
#mainContents .tours_Recommend .columnBox .column a {
  text-decoration: none;
  transition: all 0.3s ease;
}
#mainContents .tours_Recommend .columnBox .column a:hover {
  opacity: 0.7;
}
#mainContents .tours_Recommend .columnBox .column img {
  width: 100%;
  height: auto;
  aspect-ratio: 428 / 200;
  object-fit: cover;
}
#mainContents .tours_Recommend .columnBox .column h3 {
  position: relative;
  padding: 15px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .tours_Recommend .columnBox .column p {
  padding: 10px 0 0 0;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .tours_Recommend {
    padding: 30px 0;
  }
  #mainContents .tours_Recommend .tours_Recommend_inner {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  #mainContents .tours_Recommend h2 {
    font-size: 3.6rem;
  }
  #mainContents .tours_Recommend .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .tours_Recommend .columnBox .column {
    width: 100%;
    margin: 0;
  }
  #mainContents .tours_Recommend .columnBox .column img {
    width: 100%;
    height: auto;
    aspect-ratio: 428 / 200;
  }
  #mainContents .tours_Recommend .columnBox .column h3 {
    padding: 15px 0 0 0;
    font-size: 2.0rem;
  }
  #mainContents .tours_Recommend .columnBox .column p {
    padding: 10px 0 0 0;
    font-size: 1.6rem;
  }
}


/* /////////////////////
VISIT
///////////////////// */

#mainContents .visit_Area {
  width: 100%;
  padding: 50px 0 100px;
}
#mainContents .visit_Area .visit_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .visit_Area h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}

#mainContents .visit_Exhibition {
  width: 100%;
  padding: 40px 0 0;
}
#mainContents .visit_Exhibition h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .visit_Exhibition .columnBox {
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .visit_Exhibition .columnBox .column_L {
  width: 480px;
}
#mainContents .visit_Exhibition .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .visit_Exhibition .columnBox .column_R {
  width: 480px;
}
#mainContents .visit_Exhibition .columnBox .column_R h4 {
  padding: 0 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .visit_Exhibition .columnBox .column_R p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .visit_Exhibition .columnBox .column_R .overview {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#mainContents .visit_Exhibition .columnBox .column_R .overview h5 {
  padding: 0 0 15px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .visit_Exhibition .columnBox .column_R .overview p {
  padding: 0;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .visit_Exhibition .columnBox .column_R .like01 {
  width: 100%;
  margin: 20px 0 15px;
  text-align: right;
}
#mainContents .visit_Exhibition .columnBox .column_R .like01 a {
  position: relative;
  display: block;
  padding: 0 30px 0 0;
  font-family: "Barlow", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .visit_Exhibition .columnBox .column_R .like01 a::after {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #3C64FF;
  content: "➔";
}
#mainContents .visit_Exhibition .columnBox .column_R .like01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .visit_Exhibition .columnBox .column_R .like02 {
  width: 100%;
  text-align: right;
}
#mainContents .visit_Exhibition .columnBox .column_R .like02 a {
  position: relative;
  display: block;
  padding: 0 30px 0 0;
  font-family: "Barlow", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .visit_Exhibition .columnBox .column_R .like02 a::after {
  position: absolute;
  right: 0;
  top: 1px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #3C64FF;
  content: "➔";
}
#mainContents .visit_Exhibition .columnBox .column_R .like02 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .visit_Library {
  width: 100%;
  padding: 90px 0 0;
}
#mainContents .visit_Library h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .visit_Library .columnBox {
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .visit_Library .columnBox .column_L {
  width: 480px;
}
#mainContents .visit_Library .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .visit_Library .columnBox .column_R {
  width: 480px;
}
#mainContents .visit_Library .columnBox .column_R p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .visit_Shop {
  width: 100%;
  padding: 90px 0 0;
}
#mainContents .visit_Shop h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .visit_Shop .columnBox {
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .visit_Shop .columnBox .column_L {
  width: 480px;
}
#mainContents .visit_Shop .columnBox .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .visit_Shop .columnBox .column_R {
  width: 480px;
}
#mainContents .visit_Shop .columnBox .column_R p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .visit_Information {
  width: 100%;
  padding: 90px 0 0;
}
#mainContents .visit_Information h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .visit_Information .columnBox {
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .visit_Information .columnBox .column_L {
  width: 480px;
}
#mainContents .visit_Information .columnBox .column_L iframe {
  width: 100%;
  height: 500px;
}
#mainContents .visit_Information .columnBox .column_R {
  width: 480px;
}
#mainContents .visit_Information .columnBox .column_R h4 {
  padding: 0 0 15px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .visit_Information .columnBox .column_R p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .visit_Information .columnBox .column_R p span {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #mainContents .visit_Area {
    width: 100%;
    padding: 30px 0 50px;
  }
  #mainContents .visit_Area .visit_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .visit_Area h2 {
    font-size: 3.6rem;
  }

  #mainContents .visit_Exhibition {
    padding: 30px 0 0;
  }
  #mainContents .visit_Exhibition h3 {
    font-size: 2.0rem;
  }
  #mainContents .visit_Exhibition .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .visit_Exhibition .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .visit_Exhibition .columnBox .column_R {
    width: 100%;
  }
  #mainContents .visit_Exhibition .columnBox .column_R h4 {
    padding: 0 0 15px;
    font-size: 1.8rem;
  }
  #mainContents .visit_Exhibition .columnBox .column_R p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
  #mainContents .visit_Exhibition .columnBox .column_R .overview {
    margin: 20px 0 0;
    padding: 15px;
  }
  #mainContents .visit_Exhibition .columnBox .column_R .overview h5 {
    padding: 0 0 10px;
    font-size: 1.8rem;
  }
  #mainContents .visit_Exhibition .columnBox .column_R .overview p {
    font-size: 1.6rem;
  }
  #mainContents .visit_Exhibition .columnBox .column_R .like01 a {
    padding: 0 20px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .visit_Exhibition .columnBox .column_R .like01 a::after {
    font-size: 1.6rem;
  }
  #mainContents .visit_Exhibition .columnBox .column_R .like02 a {
    padding: 0 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .visit_Exhibition .columnBox .column_R .like02 a::after {
    font-size: 1.6rem;
  }

  #mainContents .visit_Library {
    padding: 50px 0 0;
  }
  #mainContents .visit_Library h3 {
    font-size: 2.0rem;
  }
  #mainContents .visit_Library .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .visit_Library .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .visit_Library .columnBox .column_R {
    width: 100%;
  }
  #mainContents .visit_Library .columnBox .column_R p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }

  #mainContents .visit_Shop {
    padding: 40px 0 0;
  }
  #mainContents .visit_Shop h3 {
    font-size: 2.0rem;
  }
  #mainContents .visit_Shop .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .visit_Shop .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .visit_Shop .columnBox .column_R {
    width: 100%;
  }
  #mainContents .visit_Shop .columnBox .column_R p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }

  #mainContents .visit_Information {
    padding: 40px 0 0;
  }
  #mainContents .visit_Information h3 {
    font-size: 2.0rem;
  }
  #mainContents .visit_Information .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .visit_Information .columnBox .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .visit_Information .columnBox .column_L iframe {
    height: 400px;
  }
  #mainContents .visit_Information .columnBox .column_R {
    width: 100%;
  }
  #mainContents .visit_Information .columnBox .column_R h4 {
    padding: 0 0 5px;
    font-size: 1.8rem;
  }
  #mainContents .visit_Information .columnBox .column_R p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
}

/* /////////////////////
ABOUT
///////////////////// */

#mainContents .about_Area {
  width: 100%;
  padding: 50px 0 100px;
}
#mainContents .about_Area .about_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .about_Area h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}

#mainContents .about_Info {
  width: 100%;
  padding: 60px 0 0;
}
#mainContents .about_Info h4 {
  padding: 0 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
#mainContents .about_Info p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .about_Times {
  width: 100%;
  padding: 60px 0 0;
}
#mainContents .about_Times h3 {
  padding: 0 0 30px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .about_Times img {
  padding: 0 0 30px;
  width: 100%;
  height: auto;
}
#mainContents .about_Times p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .about_Times .about_Times_Profile {
  width: 100%;
  margin: 35px 0 30px;
  padding: 25px 40px;
  background-color: #3C64FF;
  box-sizing: border-box;
}
#mainContents .about_Times .about_Times_Profile h4 {
  font-family: "Barlow", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #FFF;
}
#mainContents .about_Times .about_Times_Profile .columnBox {
  width: 100%;
  padding: 25px 0 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .about_Times .about_Times_Profile .columnBox .column_L {
  width: 237px;
}
#mainContents .about_Times .about_Times_Profile .columnBox .column_L img {
  width: 237px;
  height: auto;
}
#mainContents .about_Times .about_Times_Profile .columnBox .column_R {
  padding: 0 0 0 40px;
}
#mainContents .about_Times .about_Times_Profile .columnBox .column_R p {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.8;
}
#mainContents .about_Times .like01 {
  width: 100%;
  margin: 20px 0 15px;
  text-align: right;
}
#mainContents .about_Times .like01 a {
  position: relative;
  display: block;
  padding: 0 30px 0 0;
  font-family: "Barlow", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .about_Times .like01 a::after {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #3C64FF;
  content: "➔";
}
#mainContents .about_Times .like01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#mainContents .about_Operation {
  width: 100%;
  padding: 130px 0 0;
}
#mainContents .about_Operation h3 {
  padding: 0 0 30px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .about_Operation h4 {
  padding: 0 0 15px;
  font-size: 2.4rem;
  font-weight: 700;
}
#mainContents .about_Operation p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .about_Operation p a {
  position: relative;
  color: #3C64FF;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .about_Operation p a::after {
  position: absolute;
  right: -30px;
  top: 50%;
  width: 22px;
  height: 21px;
  margin: -10px 0 0;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .about_Operation p a:hover {
  opacity: 0.7;
}

#mainContents .about_Crowdfunding {
  width: 100%;
  padding: 130px 0 0;
}
#mainContents .about_Crowdfunding h3 {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #3C64FF;
}

#mainContents .about_Crowdfunding ul {
  width: 100%;
  padding: 0 0 30px;
  list-style-type: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .about_Crowdfunding ul li {
  padding: 0 20px 10px 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .about_Crowdfunding p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .about_Crowdfunding p a {
  position: relative;
  color: #3C64FF;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .about_Crowdfunding p a::after {
  position: absolute;
  right: -30px;
  bottom: 3px;
  width: 22px;
  height: 21px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .about_Crowdfunding p a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  #mainContents .about_Area {
    width: 100%;
    padding: 30px 0 50px;
  }
  #mainContents .about_Area .about_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .about_Area h2 {
    font-size: 3.6rem;
  }

  #mainContents .about_Info {
    padding: 30px 0 0;
  }
  #mainContents .about_Info h4 {
    padding: 0 0 20px;
    font-size: 1.8rem;
  }
  #mainContents .about_Info p {
    font-size: 1.6rem;
  }

  #mainContents .about_Times {
    padding: 30px 0 0;
  }
  #mainContents .about_Times h3 {
    padding: 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .about_Times img {
    padding: 0 0 20px;
  }
  #mainContents .about_Times p {
    font-size: 1.6rem;
  }
  #mainContents .about_Times .about_Times_Profile {
    margin: 20px 0;
    padding: 20px;
  }
  #mainContents .about_Times .about_Times_Profile h4 {
    font-size: 1.8rem;
  }
  #mainContents .about_Times .about_Times_Profile .columnBox {
    padding: 20px 0 0;
  }
  #mainContents .about_Times .about_Times_Profile .columnBox .column_L {
    width: 200px;
  }
  #mainContents .about_Times .about_Times_Profile .columnBox .column_L img {
    width: 200px;
    padding: 0;
  }
  #mainContents .about_Times .about_Times_Profile .columnBox .column_R {
    padding: 20px 0 0;
  }
  #mainContents .about_Times .about_Times_Profile .columnBox .column_R p {
    font-size: 1.6rem;
  }
  #mainContents .about_Times .like01 a {
    padding: 0 20px 0 0;
    font-size: 2.0rem;
  }
  #mainContents .about_Times .like01 a::after {
    font-size: 1.6rem;
  }

  #mainContents .about_Operation {
    padding: 60px 0 0;
  }
  #mainContents .about_Operation h3 {
    padding: 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .about_Operation h4 {
    padding: 0 0 10px;
    font-size: 1.8rem;
  }
  #mainContents .about_Operation p {
    padding: 0 0 30px;
    font-size: 1.6rem;
  }
  #mainContents .about_Operation p a::after {
    right: -25px;
    width: 15.5px;
    height: 15px;
    margin: -7px 0 0;
  }

  #mainContents .about_Crowdfunding {
    padding: 60px 0 0;
  }
  #mainContents .about_Crowdfunding h3 {
    padding: 0 0 20px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #mainContents .about_Crowdfunding ul li {
    padding: 0 15px 5px 0;
    font-size: 1.4rem;
  }
  #mainContents .about_Crowdfunding p {
    padding: 0 0 30px;
    font-size: 1.6rem;
  }
  #mainContents .about_Crowdfunding p a::after {
    right: -25px;
    bottom: 3px;
    width: 15.5px;
    height: 15px;
  }
}

/* /////////////////////
MEMBERSHIP
///////////////////// */

#mainContents .membership_Area {
  width: 100%;
  padding: 50px 0 100px;
}
#mainContents .membership_Area .membership_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .membership_Area h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}

#mainContents .membership_Info {
  width: 100%;
  padding: 60px 0 0;
}
#mainContents .membership_Info h4 {
  padding: 0 0 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
#mainContents .membership_Info p {
  padding: 0 0 50px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .membership_Plan {
  width: 100%;
  padding: 20px 0 0;
}
#mainContents .membership_Plan h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .membership_Plan .columnBox {
  width: 100%;
  padding: 50px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .membership_Plan .columnBox .column {
  position: relative;
  width: 48%;
  padding: 50px 20px 160px;
  border: 3px solid #3C64FF;
  box-sizing: border-box;
}
#mainContents .membership_Plan .columnBox .column h4 {
  padding: 0 0 20px;
  font-size: 3.0rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .membership_Plan .columnBox .column h5 {
  padding: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 700;
}
#mainContents .membership_Plan .columnBox .column p {
  padding: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .membership_Plan .columnBox .column ul {
  width: 100%;
  list-style-type: none;
}
#mainContents .membership_Plan .columnBox .column ul li {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .membership_Plan .columnBox .column ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.2rem;
  font-weight: 500;
  color: #3C64FF;
  content: "●";
}
#mainContents .membership_Plan .columnBox .column .like01 {
  position: absolute;
  left: 50%;
  bottom: 50px;
  width: calc(100% - 40px);
  margin-left: calc(((100% - 40px) / 2) * -1);
  height: 75px;
}
#mainContents .membership_Plan .columnBox .column .like01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 23px 0 0;
  box-sizing: border-box;
  background-color: #3C64FF;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .membership_Plan .columnBox .column .like01 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  #mainContents .membership_Area {
    width: 100%;
    padding: 30px 0 50px;
  }
  #mainContents .membership_Area .membership_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .membership_Area h2 {
    font-size: 3.6rem;
  }

  #mainContents .membership_Info {
    padding: 30px 0 0;
  }
  #mainContents .membership_Info h4 {
    padding: 0 0 20px;
    padding: 0 0 20px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  #mainContents .membership_Info p {
    padding: 0 0 40px;
    font-size: 1.6rem;
  }

  #mainContents .membership_Plan {
    width: 100%;
    padding: 20px 0 0;
  }
  #mainContents .membership_Plan h3 {
    font-size: 2.0rem;
  }
  #mainContents .membership_Plan .columnBox {
    padding: 30px 0 0;
  }
  #mainContents .membership_Plan .columnBox .column {
    width: 100%;
    margin: 0 0 30px;
    padding: 20px 15px 20px;
    border: 2px solid #3C64FF;
  }
  #mainContents .membership_Plan .columnBox .column h4 {
    padding: 0 0 20px;
    font-size: 1.8rem;
  }
  #mainContents .membership_Plan .columnBox .column h5 {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
  #mainContents .membership_Plan .columnBox .column p {
    padding: 0 0 15px;
    font-size: 1.6rem;
  }
  #mainContents .membership_Plan .columnBox .column ul li {
    padding: 0 0 0 20px;
    font-size: 1.6rem;
  }
  #mainContents .membership_Plan .columnBox .column ul li::before {
    font-size: 1.6rem;
  }
  #mainContents .membership_Plan .columnBox .column .like01 {
    position: static;
    width: 100%;
    height: 50px;
    margin: 30px 0 0;
  }
  #mainContents .membership_Plan .columnBox .column .like01 a {
    padding: 14px 0 0;
    font-size: 1.8rem;
  }
}


/* /////////////////////
EXHIBITIONS
///////////////////// */

#mainContents .exhibition_Area {
  position: relative;
  width: 100%;
  padding: 50px 0 100px;
}
#mainContents .exhibition_Area .exhibition_Area_inner {
  width: calc(100% - 100px);
  margin: 0 auto;
}
#mainContents .exhibition_Area h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}

#mainContents .exhibition_Area .mailLink {
  position: absolute;
  left: 520px;
  top: 57px;
  width: 317px;
  height: 43px;
}
#mainContents .exhibition_Area .mailLink a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 9px 0 0 40px;
  border: 2px solid #3C64FF;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  color: #3C64FF;
  transition: all 0.3s ease;
}
#mainContents .exhibition_Area .mailLink a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .exhibition_Area .mailLink a::before {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 22px;
  height: 15.5px;
  margin: -8px 0 0 0;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .exhibition_Area .columnBox {
  width: 100%;
  padding: 60px 0 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
#mainContents .exhibition_Area .columnBox .column {
  width: calc((100% - 60px) / 3);
  margin: 0 0 60px;
}
#mainContents .exhibition_Area .columnBox .column a {
  transition: opacity 0.3s ease;
}
#mainContents .exhibition_Area .columnBox .column a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .exhibition_Area .columnBox .column img {
  width: 100%;
  height: auto;
  aspect-ratio: 428 / 285;
  object-fit: cover;
}
#mainContents .exhibition_Area .columnBox .column h3 {
  position: relative;
  padding: 60px 0 0 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .exhibition_Area .columnBox .column h3::before {
  position: absolute;
  left: 0;
  top: 14px;
  width: auto;
  height: 43px;
  padding: 9px 15px 0;
  border: 2px solid #000;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
}
#mainContents .exhibition_Area .columnBox .column h3.status01::before {
  content: "開催中";
}
#mainContents .exhibition_Area .columnBox .column h3.status02::before {
  content: "予告";
}
#mainContents .exhibition_Area .columnBox .column h3.status03::before {
  border: 2px solid #E7E7E7;
  background: #E7E7E7;
  content: "開催終了";
}
#mainContents .exhibition_Area .columnBox .column p {
  padding: 10px 0 0 0;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  #mainContents .exhibition_Area {
    width: 100%;
    padding: 30px 0 50px;
  }
  #mainContents .exhibition_Area .exhibition_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .exhibition_Area h2 {
    font-size: 3.6rem;
  }
  #mainContents .exhibition_Area .mailLink {
    left: 15px;
    top: 85px;
    width: 226px;
    height: 38px;
  }
  #mainContents .exhibition_Area .mailLink a {
    padding: 11px 0 0 35px;
    font-size: 1.2rem;
  }
  #mainContents .exhibition_Area .mailLink a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #mainContents .exhibition_Area .mailLink a::before {
    left: 9px;
    width: 20px;
    height: 13.5px;
    margin: -7px 0 0 0;
  }
  #mainContents .exhibition_Area .columnBox {
    padding: 95px 0 0;
    opacity: 1;
  }
  #mainContents .exhibition_Area .columnBox .column {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #mainContents .exhibition_Area .columnBox .column img {
    width: 100%;
    height: auto;
  }
  #mainContents .exhibition_Area .columnBox .column h3 {
    padding: 52px 0 0 0;
    font-size: 2.0rem;
  }
  #mainContents .exhibition_Area .columnBox .column h3::before {
    top: 14px;
    height: 34px;
    padding: 7px 15px 0;
    font-size: 1.4rem;
  }
  #mainContents .exhibition_Area .columnBox .column p {
    padding: 10px 0 0 0;
    font-size: 1.6rem;
  }
}


#mainContents .exhibition_entry_Area {
  position: relative;
  width: 100%;
  padding: 100px 0 100px;
}
#mainContents .exhibition_entry_Area .exhibition_entry_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .exhibition_entry_Area .titleArea h3 {
  position: relative;
  padding: 15px 0 0 0;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .exhibition_entry_Area .titleArea h3.status02 {
  padding: 15px 0 0 0;
}
#mainContents .exhibition_entry_Area .titleArea h3::before {
  position: absolute;
  left: 0;
  top: -40px;
  width: 115px;
  height: 43px;
  padding: 9px 0 0 0;
  border: 2px solid #000;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
}
#mainContents .exhibition_entry_Area .titleArea h3.status01::before {
  content: "開催中";
}
#mainContents .exhibition_entry_Area .titleArea h3.status02::before {
  content: "予告";
}
#mainContents .exhibition_entry_Area .titleArea h3.status03::before {
  border: 2px solid #E7E7E7;
  background: #E7E7E7;
  content: "開催終了";
}
#mainContents .exhibition_entry_Area .titleArea p {
  padding: 15px 0 0 0;
  font-size: 2.0rem;
  font-weight: 400;
}

#mainContents .exhibition_entry_Area .imgArea {
  width: 100%;
  padding: 50px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .exhibition_entry_Area .imgArea .column_L {
  width: 480px;
}
#mainContents .exhibition_entry_Area .imgArea .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .exhibition_entry_Area .imgArea .column_R {
  width: 480px;
}
#mainContents .exhibition_entry_Area .imgArea .column_R p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .exhibition_entry_Area .worksArea {
  width: 100%;
  margin-left: calc((100% - 1000px) / 2);
  padding: 50px 0 0 0;
}
#mainContents .exhibition_entry_Area .worksArea h4 {
  font-size: 2.8rem;
  font-weight: 700;
}
#mainContents .exhibition_entry_Area .worksArea .columnBox {
  width: calc(50vw + 500px);
  max-width: 1480px;
  margin: 0;
  padding: 20px 0 0 0;
  overflow: hidden;
}
#mainContents .exhibition_entry_Area .worksArea .columnBox.swiper {
  cursor: grab;
}
#mainContents .exhibition_entry_Area .worksArea .columnBox.swiper:active {
  cursor: grabbing;
}
#mainContents .exhibition_entry_Area .worksArea .columnBox .swiper-wrapper {
  align-items: flex-start;
}
#mainContents .exhibition_entry_Area .worksArea .columnBox .column {
  width: 480px;
  height: auto;
  flex-shrink: 0;
}
#mainContents .exhibition_entry_Area .worksArea .columnBox .column img {
  width: 100%;
  height: auto;
  pointer-events: none;
}
#mainContents .exhibition_entry_Area .worksArea .columnBox .column p {
  padding: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .exhibition_entry_Area .profileArea {
  width: 100%;
  padding: 80px 0 0 0;
}
#mainContents .exhibition_entry_Area .profileArea h4 {
  font-size: 2.8rem;
  font-weight: 700;
}
#mainContents .exhibition_entry_Area .profileArea .columnBox {
  width: 100%;
  padding: 30px 0 0 0;
  display: flex;
  justify-content: space-between;
}
#mainContents .exhibition_entry_Area .profileArea .column_L {
  width: 180px;
}
#mainContents .exhibition_entry_Area .profileArea .column_L img {
  width: 100%;
  height: auto;
}
#mainContents .exhibition_entry_Area .profileArea .column_R {
  width: 780px;
}
#mainContents .exhibition_entry_Area .profileArea .column_R h5 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
}
#mainContents .exhibition_entry_Area .profileArea .column_R p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}

#mainContents .exhibition_entry_Area .textArea {
  width: 100%;
  margin: 80px 0 0;
  padding: 40px 0 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#mainContents .exhibition_entry_Area .textArea h5 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
}
#mainContents .exhibition_entry_Area .textArea p {
  padding: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .exhibition_entry_Area {
    padding: 70px 0;
  }
  #mainContents .exhibition_entry_Area .exhibition_entry_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .exhibition_entry_Area .titleArea h3 {
    padding: 10px 0 0 0;
    font-size: 2.2rem;
  }
  #mainContents .exhibition_entry_Area .titleArea h3::before {
    width: 75px;
    height: 38px;
    font-size: 1.4rem;
  }
  #mainContents .exhibition_entry_Area .titleArea p {
    padding: 10px 0 0 0;
    font-size: 1.6rem;
  }

  #mainContents .exhibition_entry_Area .imgArea {
    padding: 30px 0 0 0;
  }
  #mainContents .exhibition_entry_Area .imgArea .column_L {
    width: 100%;
    padding: 0 0 10px;
  }
  #mainContents .exhibition_entry_Area .imgArea .column_R {
    width: 100%;
  }
  #mainContents .exhibition_entry_Area .imgArea .column_R p {
    font-size: 1.6rem;
  }

  #mainContents .exhibition_entry_Area .worksArea {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 30px 0 0 0;
  }
  #mainContents .exhibition_entry_Area .worksArea h4 {
    font-size: 2.0rem;
  }
  /* SPではSwiperを動作させず、縦積みで表示する */
  #mainContents .exhibition_entry_Area .worksArea .columnBox {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 20px 0 0 0;
    overflow: visible;
    cursor: auto;
  }
  #mainContents .exhibition_entry_Area .worksArea .columnBox .swiper-wrapper {
    display: block;
  }
  #mainContents .exhibition_entry_Area .worksArea .columnBox .column {
    width: 100%;
    height: auto;
  }
  #mainContents .exhibition_entry_Area .worksArea .columnBox .column + .column {
    margin-top: 30px;
  }
  #mainContents .exhibition_entry_Area .worksArea .columnBox .column p {
    font-size: 1.4rem;
  }

  #mainContents .exhibition_entry_Area .profileArea {
    padding: 50px 0 0 0;
  }
  #mainContents .exhibition_entry_Area .profileArea h4 {
    font-size: 2.0rem;
  }
  #mainContents .exhibition_entry_Area .profileArea .columnBox {
    padding: 20px 0 0 0;
    flex-wrap: wrap;
  }
  #mainContents .exhibition_entry_Area .profileArea .column_L {
    width: 100%;
    padding: 0 0 20px;
  }
  #mainContents .exhibition_entry_Area .profileArea .column_L img {
    width: 180px;
    height: auto;
  }
  #mainContents .exhibition_entry_Area .profileArea .column_R {
    width: 100%;
  }
  #mainContents .exhibition_entry_Area .profileArea .column_R h5 {
    font-size: 1.8rem;
  }
  #mainContents .exhibition_entry_Area .profileArea .column_R p {
    font-size: 1.6rem;
  }

  #mainContents .exhibition_entry_Area .textArea {
    margin: 50px 0 0;
    padding: 20px 0 0;
  }
  #mainContents .exhibition_entry_Area .textArea h5 {
    font-size: 1.6rem;
  }
  #mainContents .exhibition_entry_Area .textArea p {
    padding: 0 0 20px;
    font-size: 1.6rem;
  }
}



/* /////////////////////
NEWS
///////////////////// */
#mainContents .news_Area {
  width: 100%;
  padding: 50px 0 100px;
}
#mainContents .news_Area .news_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .news_Area h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}

#mainContents .news_Area .news_Category {
  width: 100%;
  padding: 30px 0;
}
#mainContents .news_Area .news_Category ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
#mainContents .news_Area .news_Category ul li {
  margin: 0 10px 10px 0;
}
#mainContents .news_Area .news_Category ul li a {
  display: block;
  padding: 10px 15px 12px;
  background-color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .news_Area .news_Category ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .news_Area .news_Category ul li.active a {
  background-color: #3C64FF;
}

#mainContents .news_Area .news_Index {
  width: 100%;
  padding: 40px 0 0;
}
#mainContents .news_Area .news_Index ul {
  width: 100%;
  list-style-type: none;
  border-top: 1px solid #000000;
}
#mainContents .news_Area .news_Index ul li {
  position: relative;
  width: 100%;
  padding: 65px 0 25px 0;
  border-bottom: 1px solid #000000;
  box-sizing: border-box;
}
#mainContents .news_Area .news_Index ul li span.news_Date {
  position: absolute;
  left: 0;
  top: 30px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #666666;
}
#mainContents .news_Area .news_Index ul li span.news_Cate {
  position: absolute;
  left: 85px;
  top: 18px;
  padding: 10px 15px 12px;
  background-color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  transition: all 0.3s ease;
}
#mainContents .news_Area .news_Index ul li a {
  position: relative;
  display: inline;
  padding: 0 25px 0 0;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  transition: all 0.3s ease;
}
#mainContents .news_Area .news_Index ul li a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 19px;
  height: 14px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#mainContents .news_Area .news_Index ul li a[target="_blank"]::after {
  position: absolute;
  right: -2px;
  bottom: 5px;
  width: 22px;
  height: 21px;
  background-image: url("../img/icon04.svg");
  background-size: cover;
  content: "";
}
#mainContents .news_Area .news_Index ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .news_Area .news_Index ul li p {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
}
#mainContents .news_Area .news_Index ul li .titleSp {
  display: none;
}

@media only screen and (max-width: 767px) {
  #mainContents .news_Area {
    width: 100%;
    padding: 30px 0 50px;
  }
  #mainContents .news_Area .news_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .news_Area h2 {
    font-size: 3.6rem;
  }

  #mainContents .news_Area .news_Category {
    padding: 30px 0 10px;
  }
  #mainContents .news_Area .news_Category ul li a {
    padding: 7px 12px 9px;
    font-size: 1.6rem;
  }

  #mainContents .news_Area .news_Index {
    padding: 0;
  }
  #mainContents .news_Area .news_Index ul li span.news_Cate {
    top: 22px;
    padding: 7px 12px 9px;
    font-size: 1.6rem;
  }
  #mainContents .news_Area .news_Index ul li a {
    font-size: 1.8rem;
  }
  #mainContents .news_Area .news_Index ul li a::after {
    right: 0;
    bottom: 6px;
    width: 17px;
    height: 12px;
  }
  #mainContents .news_Area .news_Index ul li a[target="_blank"]::after {
    right: -2px;
    bottom: 4px;
    width: 20px;
    height: 19px;
  }
  #mainContents .news_Area .news_Index ul li p {
    font-size: 1.8rem;
  }
  #mainContents .news_Area .news_Index ul li .titlePc {
    display: none;
  }
  #mainContents .news_Area .news_Index ul li .titleSp {
    display: inline;
  }
}


#mainContents .news_Entry_Area {
  width: 100%;
  padding: 50px 0 100px;
}
#mainContents .news_Entry_Area .news_Entry_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .news_Entry_Area p.news_Entry_Cate {
  display: inline;
  padding: 10px 15px 12px;
  background-color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #FFF;
}
#mainContents .news_Entry_Area h2 {
  padding: 30px 0 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .news_Entry_Area p.news_Entry_Date {
  padding: 10px 0 0;
  font-size: 2.0rem;
  font-weight: 400;
  color: #666666;
}
#mainContents .news_Entry_Area .news_Entry {
  width: 100%;
  padding: 45px 0 0;
}
#mainContents .news_Entry_Area .news_Entry h3 {
  padding: 0 0 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .news_Entry_Area .news_Entry h4 {
  padding: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .news_Entry_Area .news_Entry p {
  padding: 0 0 30px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .news_Entry_Area .news_Entry p a {
  position: relative;
  color: #3C64FF;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .news_Entry_Area .news_Entry p a[target="_blank"] {
  padding: 0 40px 0 0;
}
#mainContents .news_Entry_Area .news_Entry p a[target="_blank"]::after {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 22px;
  height: 21px;
  margin: -10px 0 0;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .news_Entry_Area .news_Entry p a:hover {
  opacity: 0.7;
}
#mainContents .news_Entry_Area .news_Entry img {
  max-width: 100%;
  height: auto;
  padding: 0 0 30px;
}
#mainContents .news_Entry_Area .news_Entry .news_Layout01 {
  width: 100%;
  padding: 0 0 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .news_Entry_Area .news_Entry .news_Layout01 .column_L {
  width: 48%;
}
#mainContents .news_Entry_Area .news_Entry .news_Layout01 .column_R {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #mainContents .news_Entry_Area {
    padding: 40px 0 50px;
  }
  #mainContents .news_Entry_Area .news_Entry_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .news_Entry_Area p.news_Entry_Cate {
    padding: 7px 12px 9px;
    font-size: 1.6rem;
  }
  #mainContents .news_Entry_Area h2 {
    padding: 30px 0 0;
    font-size: 2.2rem;
  }
  #mainContents .news_Entry_Area p.news_Entry_Date {
    padding: 10px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .news_Entry_Area .news_Entry {
    padding: 30px 0 0;
  }
  #mainContents .news_Entry_Area .news_Entry h3 {
    padding: 0 0 10px;
    font-size: 2.0rem;
  }
  #mainContents .news_Entry_Area .news_Entry h4 {
    padding: 0 0 10px;
    font-size: 1.8rem;
  }
  #mainContents .news_Entry_Area .news_Entry p {
    padding: 0 0 30px;
    font-size: 1.6rem;
  }
  #mainContents .news_Entry_Area .news_Entry p a[target="_blank"] {
    padding: 0 40px 0 0;
  }
  #mainContents .news_Entry_Area .news_Entry p a[target="_blank"]::after {
    right: 12px;
    width: 20px;
    height: 19px;
    margin: -9px 0 0;
  }
  #mainContents .news_Entry_Area .news_Entry img {
    padding: 0 0 20px;
  }
  #mainContents .news_Entry_Area .news_Entry .news_Layout01 .column_L {
    width: 100%;
  }
  #mainContents .news_Entry_Area .news_Entry .news_Layout01 .column_R {
    width: 100%;
  }
}

/*==========================================
 ページネーションのスタイル
===========================================*/
#mainContents #pagination {
  margin: 100px 0 0;
}
#mainContents #pagination ul {
  text-align: center;
}
#mainContents #pagination ul li {
  width: 33px;
  height: 33px;
  margin: 0 2px;
  vertical-align: middle;
  display: inline-block;
}
#mainContents #pagination ul li a,
#mainContents #pagination ul li span {
  position: relative;
  display: block;
  width: 33px;
  height: 33px;
  padding: 5px 0 0;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
}
#mainContents #pagination ul li span.current {
  background-color: #D9D9D9;
}
#mainContents #pagination ul li a:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li span.dots::before {
  display: none;
}
#mainContents #pagination ul li a.prev,
#mainContents #pagination ul li a.next,
#mainContents #pagination ul li span.dots {
  border: none;
}
#mainContents #pagination ul li a.prev:hover,
#mainContents #pagination ul li a.next:hover {
  opacity: 0.7;
}
#mainContents #pagination ul li a.prev:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 19px;
  height: 14px;
  margin: -7px 0 0;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
  transform: rotate(-180deg);
}
#mainContents #pagination ul li a.next:after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 19px;
  height: 14px;
  margin: -7px 0 0;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
@media only screen and (max-width: 767px) {
  #mainContents #pagination {
    margin: 50px 0 0;
  }
}


/* /////////////////////
FAQ
///////////////////// */
#mainContents .faq_Area {
  width: 100%;
  padding: 50px 0 100px;
  background-color: #FFF;
}
#mainContents .faq_Area .faq_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .faq_Area h2 {
  font-family: "Barlow", sans-serif;
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #F5F5F5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3C64FF;
}

#mainContents .faq_Area .faq_Contents {
  width: 100%;
  padding: 40px 0 0;
}
#mainContents .faq_Area .faq_Contents h3 {
  padding: 0 0 20px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C64FF;
}
#mainContents .faq_Area .faq_Contents_Entry {
  width: 100%;
  margin: 0 0 15px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #F5F5F5;
}
#mainContents .faq_Area .faq_Contents_Entry h4 {
  position: relative;
  padding: 0 40px 0 25px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
#mainContents .faq_Area .faq_Contents_Entry h4::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q";
}
#mainContents .faq_Area .faq_Contents_Entry h4::after {
  position: absolute;
  right: 20px;
  top: 11px;
  width: 22px;
  height: 13px;
  background-image: url("../img/icon06.svg");
  background-size: cover;
  content: "";
}
#mainContents .faq_Area .faq_Contents_Entry.close h4::after {
  transform: rotate(-180deg);
}
#mainContents .faq_Area .faq_Contents_Entry h4 a {
  display: block;
  transition: all 0.3s ease;
}
#mainContents .faq_Area .faq_Contents_Entry h4 a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .faq_Area .faq_Contents_Entry .faq_Answer {
  display: block;
  padding: 10px 0 0 25px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .faq_Area .faq_Contents_Entry .faq_Answer > :first-child {
  margin-top: 0;
}
#mainContents .faq_Area .faq_Contents_Entry .faq_Answer > :last-child {
  margin-bottom: 0;
}
#mainContents .faq_Area .faq_Contents_Entry .faq_Answer a {
  position: relative;
  color: #3C64FF;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#mainContents .faq_Area .faq_Contents_Entry .faq_Answer a[target="_blank"] {
  padding: 0 40px 0 0;
}
#mainContents .faq_Area .faq_Contents_Entry .faq_Answer a[target="_blank"]::after {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 22px;
  height: 21px;
  margin: -10px 0 0;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .faq_Area .faq_Contents_Entry .faq_Answer a:hover {
  opacity: 0.7;
}
#mainContents .faq_Area .faq_Contents_Entry.close .faq_Answer {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .faq_Area {
    padding: 40px 0 50px;
  }
  #mainContents .faq_Area .faq_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .faq_Area h2 {
    font-size: 3.6rem;
  }

  #mainContents .faq_Area .faq_Contents {
    padding: 30px 0 0;
  }
  #mainContents .faq_Area .faq_Contents h3 {
    padding: 0 0 20px;
    font-size: 2.0rem;
  }
  #mainContents .faq_Area .faq_Contents_Entry {
    margin: 0 0 15px;
    padding: 15px;
  }
  #mainContents .faq_Area .faq_Contents_Entry h4 {
    padding: 0 30px 0 20px;
    font-size: 1.8rem;
  }
  #mainContents .faq_Area .faq_Contents_Entry h4::after {
    right: 15px;
    top: 8px;
    width: 19px;
    height: 10px;
  }
  #mainContents .faq_Area .faq_Contents_Entry .faq_Answer {
    padding: 10px 0 0 20px;
    font-size: 1.6rem;
  }
  #mainContents .faq_Area .faq_Contents_Entry .faq_Answer a[target="_blank"] {
    padding: 0 40px 0 0;
  }
  #mainContents .faq_Area .faq_Contents_Entry .faq_Answer a[target="_blank"]::after {
    right: 12px;
    width: 20px;
    height: 19px;
    margin: -9px 0 0;
  }
}


/* /////////////////////
OTHER
///////////////////// */
#mainContents .other_Area {
  width: 100%;
  padding: 50px 0 100px;
}
#mainContents .other_Area .other_Area_inner {
  width: 1000px;
  margin: 0 auto;
}
#mainContents .other_Area h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #3C64FF;
}

#mainContents .other_Info {
  width: 100%;
  padding: 60px 0 0;
}
#mainContents .other_Info h4 {
  padding: 0 0 15px;
  font-size: 2.0rem;
  font-weight: 700;
}
#mainContents .other_Info p {
  padding: 0 0 40px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
#mainContents .other_Info ul {
  padding: 0 0 40px 30px;
}
#mainContents .other_Info ul li {
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #mainContents .other_Area {
    width: 100%;
    padding: 30px 0 50px;
  }
  #mainContents .other_Area .other_Area_inner {
    width: calc(100% - 30px);
  }
  #mainContents .other_Area h2 {
    font-size: 2.4rem;
  }

  #mainContents .other_Info {
    padding: 30px 0 0;
  }
  #mainContents .other_Info h4 {
    padding: 0 0 15px;
    line-height: 1.4;
  }
  #mainContents .other_Info p {
    padding: 0 0 30px;
    font-size: 1.6rem;
  }
}