@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: 106px;
  background-color: #FFF;
}
header #header {
  position: relative;
  width: calc(100% - 40px);
  margin: 0 auto;
}
header #headerLogoArea {
  position: absolute;
  left: 0;
  top: 20px;
}
header #headerLogoArea h1 img {
  width: 313px;
  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: 0;
  top: 25px;
}
header .headerText p {
  font-family: "Barlow", sans-serif;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  header #header {
    width: calc(100% - 30px);
  }
  header #headerLogoArea {
    top: 7px;
  }
  header #headerLogoArea h1 img {
    width: 192px;
    height: auto;
  }
  header #headerLanguage {
    display: none;
  }
  header .headerText {
    top: 16px;
  }
  header .headerText p {
    font-size: 1.3rem;
  }
}


/*==========================================
 フッターのスタイル
===========================================*/
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;
}
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 #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 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 #footerCopyright {
    height: auto;
    padding: 8px 0;
    border-top: 4px solid #3C64FF;
  }
  footer #footerCopyright p {
    font-size: 1.2rem;
  }
}



/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 1000px;
  padding: 106px 0 0 0;
}
@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 1500px;
    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 {
  width: calc(100% - 50px);
  margin: 0 0 0 50px;
  padding: 50px 0 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 .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::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;
  content: "受付中";
}
#mainContents .top_Tours .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_Tours {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 40px 0 0;
  }
  #mainContents .top_Tours h2 {
    font-size: 3.6rem;
  }
  #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::before {
    top: 14px;
    width: 68px;
    height: 34px;
    padding: 7px 0 0 0;
    font-size: 1.4rem;
  }
  #mainContents .top_Tours .columnBox .column p {
    padding: 10px 0 0 0;
    font-size: 1.6rem;
  }
}


#mainContents .top_Visit {
  width: 100%;
  margin: 50px 0 0;
  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: #3C64FF;
}
#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 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 .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 {
  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: #3C64FF;
  line-height: 1.0;
}
#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 .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;
  }
}