@charset "UTF-8";
:root {
  --primary-color: #009094;
  --primary-color-rgb: 0, 144, 148;
  --primary-light-color: #20A593;
  --secondary-color: #ccc;
  --secondary-color-rgb: 204, 204, 204;
  --common-bg-color: #f6f6f6;
  --common-text-color: #000;
  --common-text-dark-color: #000;
  --common-text-light-color: #ffffff;
  --banner-bg-color: #009094;
  --banner-bg-color-even: #f09daa;
  --banner-text-color: #ffffff;
  --banner-hover-bg-color: #E4D76C;
  --banner-hover-text-color: #000;
  --point-intro-color: #009094;
  --point-intro-mid-color: #20A593;
  --point-intro-text-color: #ffffff;
  --hd-entry-bg-color: #CB5231;
  --entry-bg-color: #009094;
  --entry-text-color: #ffffff;
  --contact-bg-color: #009094;
  --contact-text-color: #ffffff;
  --white: #fff;
  --black: #000;
  --green: #00bab3;
  --red: #db2636;
  --orange: #CB5231;
  --yellow: #fdeb64;

  --color01: #009094;
  --color02: #20A593;
  --color03: #E4D76C;
  --color04: #F39C34;
  --color05: #CB5231;
}

#counterContents {
  --counter-base-color: var(--primary-color) !important;
  --counter-bar-base-accent-color: var(--orange) !important;
}
.counter::after {
  letter-spacing: 0;
}

/* CSS Document */
/* ==========================================================================================
■■■■■■　通常設定　■■■■■■
========================================================================================== */
/* ==========要素関係========== */
body {
  color: var(--common-text-color);
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
  background: var(--common-bg-color);
  position: relative;
}

del {
  background: rgba(0, 0, 0, 0.05);
}

a {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

p {
  text-align: justify;
  word-break: break-all;
  line-height: 1.8;
  letter-spacing: 0.02rem;
}

i {
  margin-right: 0.5rem;
}

h1 {
  font-size: 1.7rem;
}

.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
  border: 5px solid var(--primary-color);
  -webkit-border-image: -webkit-radial-gradient(bottom right, circle, var(--secondary-color) 0px, rgba(255, 255, 255, 0) 200px, rgba(255, 255, 255, 0) 210px, var(--primary-color) 610px) 1;
       -o-border-image: radial-gradient(circle at bottom right, var(--secondary-color) 0px, rgba(255, 255, 255, 0) 200px, rgba(255, 255, 255, 0) 210px, var(--primary-color) 610px) 1;
          border-image: radial-gradient(circle at bottom right, var(--secondary-color) 0px, rgba(255, 255, 255, 0) 200px, rgba(255, 255, 255, 0) 210px, var(--primary-color) 610px) 1;
  display: none;
}
@media print {
  .wrapper {
    display: none;
  }
}

.links {
  margin: 1rem 0;
  color: var(--primary-color);
}
.links:hover {
  color: var(--secondary-color);
}

.links span {
  display: block;
  margin-bottom: 0.5rem;
}

.links span .linkInText {
  padding-left: 0;
}

a.linkObviousBox {
  display: inline-block;
  padding: 0.5rem 1.5rem 0.5rem;
  background: var(--common-text-light-color);
  color: var(--primary-color);
  margin-top: 0.5rem;
  border: 1px solid var(--primary-color);
  min-width: 400px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

a.linkObviousBox:hover {
  background: var(--primary-color);
  color: var(--common-text-light-color);
}

a.tdul {
  text-decoration: underline;
}

.mbShow {
  display: none;
}

.neverShow {
  display: none !important;
}

.textIndent01 {
  text-indent: 1em;
}

.markNotes {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

a.linkInText {
  text-decoration: underline;
}

a.linkInText.markNotes {
  padding-left: 1.5em;
  position: relative;
  display: block;
  text-indent: 0;
}

a.linkInText.markNotes::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: currentColor;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  -webkit-transform: translate(40%, 40%) scale(0.3);
          transform: translate(40%, 40%) scale(0.3);
}

.fw_bld {
  font-weight: bold;
}

.d-inline-block {
  display: inline-block;
}

.border-1 {
  /* border: 1px solid #ccc; */
}

.border-top-1 {
  border-top: 1px solid #ccc;
}

.border-bottom-1 {
  border-bottom: 1px solid #ccc;
}

.border-left-1 {
  border-left: 1px solid #ccc;
}

.border-right-1 {
  border-right: 1px solid #ccc;
}

.p-1 {
  padding: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
  color: var(--black);
}

.m-2 {
  margin: 1rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.p-5 {
  padding: 2.5rem !important;
}

.pt-5 {
  padding-top: 2.5rem !important;
}

.pr-5 {
  padding-right: 2.5rem !important;
}

.pl-5 {
  padding-left: 2.5rem !important;
}

.pb-5 {
  padding-bottom: 2.5rem !important;
}

.m-5 {
  margin: 2.5rem !important;
}

.mt-5 {
  margin-top: 2.5rem !important;
}

.mr-5 {
  margin-right: 2.5rem !important;
}

.ml-5 {
  margin-left: 2.5rem !important;
}

.mb-5 {
  margin-bottom: 2.5rem !important;
}

*[disabled] {
  display: none !important;
}

/* ==========フォント関係========== */
/*-- Noto Sans 強制読み込み --*/
.ff_NS {
  font-family: "Noto Sans JP" !important;
}

.ff_NS300 {
  font-family: "Noto Sans JP" !important;
  font-weight: 300;
}

.fw100 {
  font-weight: 100;
}

.ff_Ow {
  font-family: Oswald;
}

.zenkakuDash {
  letter-spacing: -0.2em;
  width: 2em;
  margin-right: 0.5em;
}

/* ==========レイアウト関係========== */
/*.inner {
    width: 86%;
    margin: 0 auto;
    max-width: 1280px;
}*/
/* ==========header関係========== */
header {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 999;
}

#mb_logo,
.menuBtn {
  display: none;
}

.globalHeader__inner {
  padding: 0 0 0 20px;
}

#globalHeader {
  background-image: -webkit-radial-gradient(-75px top, circle, rgba(181, 11, 11, 0.5) 0px, transparent 150px), -webkit-linear-gradient(130deg, rgba(var(--secondary-color-rgb), 0.95) calc(100% - max(500px, 20vw)), rgba(var(--primary-color-rgb), 0.9) calc(100% - max(100px, 10vw)), rgba(var(--primary-color-rgb), 0.9) 100%);
  background-image: radial-gradient(circle at -75px top, rgba(181, 11, 11, 0.5) 0px, transparent 150px), linear-gradient(320deg, rgba(var(--secondary-color-rgb), 0.95) calc(100% - max(500px, 20vw)), rgba(var(--primary-color-rgb), 0.9) calc(100% - max(100px, 10vw)), rgba(var(--primary-color-rgb), 0.9) 100%);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

#globalHeader__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 1rem 1.25rem;
  position: relative;
}

#globalHeader__logo {
  margin-right: auto;
  color: var(--secondary-color);
  width: 25%;
}

#globalHeader__logo h1 {
  line-height: 0;
}

#globalHeader__logo h1 a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#globalHeader__logo h1 a:hover {
  opacity: 0.8;
}

#globalHeader__logo h1 a img {
  display: block;
  width: auto;
  max-height: 80px;
}

#globalHeader__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding-right: 180px;
  padding-right: min(13vw, 180px);
  font-size: 0.9rem;
}

.globalHeader__Item {
  margin: 0 1.5rem;
  position: relative;
}

.globalHeader__Item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  width: 1px;
  height: 25px;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: skewX(-26deg);
  transform: skewX(-26deg);
  background-color: rgba(0, 0, 0, 0.4);
}

.globalHeader__Item a {
  letter-spacing: 0.1rem;
  font-weight: 500;
  color: var(--white);
}

#globalHeader__specular {
  background: var(--primary-color);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 180px;
  width: min(13vw, 180px);
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  overflow: hidden;
  /*
  &::before {
  	content: "";
  	display: block;
  	width: 100%;
  	height: 100%;
  	position: absolute;
  	top: 0;
  	left: 0;
  	background: rgba(0, 0, 0, 0.1);
  	opacity: 0;
  	z-index: -1;
  	transition: opacity 0.3s ease;
  }*/
}
#globalHeader__specular::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#globalHeader__specular:hover::after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  background: var(--banner-hover-bg-color);
}
#globalHeader__specular:hover::before {
  opacity: 1;
}

#globalHeader__specular a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  color: #fff;
  letter-spacing: 0.1rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

#globalHeader .header_rubby {
  display: block;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.1rem;
  color: var(--primary-color);
  padding-top: 0.2rem;
  font-family: Oswald;
}

#globalHeader__specular .header_rubby {
  color: #fff;
}

/* ========== Slideshow ========== */
.bg_slideshow {
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.vegas-timer-progress {
  background: var(--primary-color) !important;
}

/* ========== mainVisual ========== */
#homeMainVisual {
  position: relative;
  /*z-index: -1;*/
}

#homeMainVisual #pickup {
  position: absolute;
  font-size: 1.1rem;
  bottom: 2rem;
  margin: auto;
  right: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#homeMainVisual #pickup a {
  display: block;
  min-width: 300px;
  max-width: 100%;
  text-align: center;
  padding: 1rem 3rem;
  box-sizing: border-box;
  border-radius: 1.25rem;
  color: var(--primary-color);
  color: #fff;
  border: 1px dashed #fff;
  background: var(--secondary-color);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}
#homeMainVisual #pickup a i:first-of-type, #homeMainVisual #pickup a i:last-of-type {
  color: var(--primary-color);
  margin: 0 0.5rem;
  display: inline-block;
}
#homeMainVisual #pickup a u {
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  padding-bottom: 0.25em;
}
#homeMainVisual #pickup a u::before {
  content: "";
  position: absolute;
  left: -100%;
  right: -100%;
  bottom: 0;
  margin: 0 auto;
  width: 110%;
  height: 3px;
  background-color: rgba(var(--primary-color-rgb), 0.75);
  -webkit-transform: translateY(0.1em) rotate(-0.5deg) skewY(-1deg);
          transform: translateY(0.1em) rotate(-0.5deg) skewY(-1deg);
  z-index: -1;
}
#homeMainVisual #pickup a:hover {
  background: rgba(var(--secondary-color-rgb), 0.5);
}

#homeMainVisual #sloganWrapper {
  position: absolute;
  bottom: 5rem;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

#homeMainVisual #slogan {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
          order: 1;
}

#homeMainVisual #slogan h2 {
  margin-bottom: 0.75rem;
}

#homeMainVisual #slogan .sloganControlled {
  background-color: rgba(255, 255, 255, 0.8);
  padding: min(2vw, 2rem);
}

#homeMainVisual #slogan .sloganControlled img:first-of-type {
  display: block;
  width: 100%;
}

/*#homeMainVisual #slogan h2 {
    color: #FFF;
    font-size: 5rem;
    line-height: 0.7;
    margin-bottom: 1.2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #FFF;
    text-shadow: -3px 5px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1rem;
}
#homeMainVisual #slogan h2 #sloganEnphasis {
    display: block;
    font-size: 10rem;
}*/
#homeMainVisual #slogan p {
  color: var(--secondary-color);
  font-size: 1.2rem;
  padding: 0 4rem;
  font-weight: 500;
}

.infoBanners {
  background: rgba(var(--secondary-color-rgb), 0.1);
}
.infoBanners .infoBannarItem01 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  width: 100%;
  background-color: rgba(var(--secondary-color-rgb), 0.5);
}
.infoBanners .infoBannarItem01 ul::before, .infoBanners .infoBannarItem01 ul::after {
  content: "";
  display: block;
  width: auto;
  height: auto;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: var(--white);
  background: rgba(var(--secondary-color-rgb), 0.9);
  letter-spacing: -0.05em;
  margin: 0 1px 1px 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}
.infoBanners .infoBannarItem01 li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 1px 1px 0;
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  max-width: max(200px, 50%);
}
.infoBanners .infoBannarItem01 li a {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: var(--white);
  background: rgba(var(--secondary-color-rgb), 0.9);
  letter-spacing: -0.05em;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}
.infoBanners .infoBannarItem01 li a > span {
  -webkit-align-self: center;
          align-self: center;
  width: 100%;
  letter-spacing: 1px;
}
.infoBanners .infoBannarItem01 li a .ruby {
  letter-spacing: 0.1rem;
}

.infoBanners li a {
  display: block;
  text-align: center;
  letter-spacing: 0.1rem;
  font-size: 1.2rem;
}

.infoBanners li .ruby {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 0.5rem;
  font-family: Oswald;
}

/* ==========リッチホバー設定========== */
/*基本設定*/
.buttonHover::before,
.buttonHover::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.buttonHover,
.buttonHover::before,
.buttonHover::after {
  box-sizing: border-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

/*追加設定*/
.buttonHover {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.buttonHover:hover {
  color: var(--banner-hover-text-color) !important;
}

.buttonHover:hover .ruby {
  border-color: currentColor !important;
}

.buttonHover::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.buttonHover:hover::after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  background: var(--banner-hover-bg-color);
}

/* ==========section設定========== */
.each__section {
  padding: 5rem 0;
  overflow: hidden;
}

.section__title h2,
.section__title h3,
.section__title h4 {
  font-family: Oswald;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 5rem;
}

.section__title {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  line-height: 1.5;
}

.section__subtitle {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section__subtitle h2,
.section__subtitle h3 {
  font-family: Oswald;
  font-size: 3rem !important;
  letter-spacing: 0.05em;
  margin-bottom: 0 !important;
}

.section__title span:not(.mbDBlock) {
  display: block;
  letter-spacing: 0.2rem;
  color: var(--black);
}

#entryDetail .section__title span:not(.mbDBlock), #secContact .section__title span:not(.mbDBlock) {
  display: block;
  letter-spacing: 0.2rem;
  color: var(--white);
}

.section__subtitle span:not(.mbDBlock) {
  display: block;
  letter-spacing: 0.2rem;
  color: var(--black);
}

#secCocept_detail {
  background: var(--secondary-color);
  width: 100%;
}

.the_inner {
  /*width: 1220px;*/
  max-width: 1180px;
  margin: 0 auto;
}

.section__omote {
  color: var(--secondary-color);
}

.section__ura {
  color: #FFF;
}

.section__ura .contentBox .txt {
  font-weight: 400;
}

.the_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-bottom: 5rem;
}

.the_wrapper .wrap__image {
  width: 50%;
}

.the_wrapper .wrap__image picture,
/* .the_wrapper .wrap__image .slider, */
.the_wrapper .wrap__image .video,
.the_wrapper .wrap__image .block {
  padding-left: 2.5rem;
  display: block;
}

.the_wrapper .wrap_content {
  width: 50%;
}

.contentBox h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contentBox h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contentBox .txt {
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

#secInfo {
  background: rgba(var(--secondary-color-rgb), 0.1);
  padding-bottom: 9rem;
}

#featureWrapper {
  padding: 5rem 0 0;
}

#conceptTheFearture .contentType_special {
  margin-left: -5rem;
  margin-right: -5rem;
  padding: 5rem;
  background: #fff;
}

#featureWrapper .txt {
  font-weight: 400;
}

#featureWrapper .section__title {
  margin-bottom: 5rem;
}

#featureWrapper .lead {
  margin: -2rem 0 4rem;
}

#featureWrapper .lead p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

#secInfo .section__subtitle h4::before,
#featureWrapper .section__subtitle h2::before {
  left: 0;
  -webkit-transform: translateX(-350%) rotate(-5deg);
          transform: translateX(-350%) rotate(-5deg);
}

#secInfo .section__subtitle h4::after,
#featureWrapper .section__subtitle h2::after {
  right: 0;
  -webkit-transform: translateX(200%) rotate(5deg);
          transform: translateX(200%) rotate(5deg);
}

#secInfo .section__subtitle {
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}

#secInfo .section__subtitle h4 {
  text-align: center;
  font-family: Oswald;
  font-size: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
  color: var(--primary-color);
  display: table;
  position: relative;
}

#featureWrapper .wrap__image picture > img {
  width: 550px;
  height: auto;
  display: block;
}

#featureWrapper .wrap__image .video > video {
  width: 550px;
  height: auto;
  display: block;
}
#featureWrapper .wrap__image .video p {
  text-align: center;
  color: #000;
  line-height: 1.5;
  margin: 1rem auto;
}
#featureWrapper .wrap__image .video p b {
  display: table;
  font-size: 1rem;
  position: relative;
  margin: auto;
}
#featureWrapper .wrap__image .video p b::before, #featureWrapper .wrap__image .video p b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  width: 1px;
  height: 25px;
  background-color: currentColor;
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
#featureWrapper .wrap__image .video p b::before {
  left: -30px;
  -webkit-transform: skewX(-26deg);
          transform: skewX(-26deg);
}
#featureWrapper .wrap__image .video p b::after {
  right: -15px;
  -webkit-transform: skewX(-26deg) translateX(0%);
          transform: skewX(-26deg) translateX(0%);
}

#featureWrapper .wrap__image .slider {
  position: relative;
}
#featureWrapper .wrap__image .slider .goToID {
  position: absolute;
  right: 20px;
  bottom: -30px;
  height: 20px;
  line-height: 0.5;
  -webkit-transform: translateY(50%) scale(150%);
          transform: translateY(50%) scale(150%);
}

#featureWrapper .wrap__image .slick {
  background: #fff;
}

#featureWrapper .wrap__image .slick-list {
  border: 1px solid #ccc;
}

#featureWrapper .wrap__image .slick-dots {
  bottom: -40px;
}

#featureWrapper .wrap__image .slick-dotted.slick-slider {
  margin-bottom: 60px;
}

#featureWrapper .contentType_02 .wrap__image picture,
#featureWrapper .contentType_02 .wrap__image .video,
#featureWrapper .contentType_02 .wrap__image .slider,
#featureWrapper .contentType_02 .wrap__image .block {
  padding-right: 2.5rem;
  padding-left: 0;
}

#conceptTheFearture .wrap_content h3 {
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: Oswald;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1.25;
}
#conceptTheFearture .wrap_content h3.orange {
  color: #f47b20;
}
#conceptTheFearture .wrap_content h3 .featuresFigure {
  font-size: 3rem;
  margin-left: 0.5rem;
}

#conceptTheFearture .wrap_content h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  padding: 0.5rem 1rem;
  font-family: Oswald, "Noto Sans JP", sans-serif;
  background: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
  padding-bottom: 1rem;
}
#conceptTheFearture .wrap_content h4 small {
  font-size: 0.9rem;
  font-weight: normal;
  display: block;
  background: var(--orange);
  color: var(--white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -0.5rem 0 0 -1rem;
  padding: 0.25rem 1rem;
}
#conceptTheFearture .wrap_content h4 i {
  font-style: normal;
  font-size: 0.75em;
  font-weight: bold;
}

#conceptTheFearture .wrap_content h5 {
  padding-top: 1rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

#conceptTheFearture p {
  font-size: 0.9rem;
  color: var(--common-text-color);
}

#conceptTheFearture .txt {
  font-size: 1rem;
  color: var(--common-text-color);
  margin-bottom: 1rem;
}

#conceptTheFearture .txt.memo2 {
  background: #efefef;
  border: 1px dotted #999999;
  font-size: 0.9rem;
  padding: 1rem;
  /* margin: 1rem 0; */
}

#conceptTheFearture .contentType_special .txt {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}
#conceptTheFearture .contentType_special .txt.normal {
  font-weight: normal;
}

#conceptTheFearture .txt .point_ttl {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

#conceptTheFearture .txt .point_ttl i.far,
#conceptTheFearture .txt .point_ttl i.fas {
  background: rgba(var(--primary-color-rgb), 0.9);
  color: var(--white);
  border-radius: 3px;
}

#conceptTheFearture .txt .entry_sort {
  font-weight: 600;
}

#conceptTheFearture .txt .entry_sort_desc {
  display: block;
  padding-left: 3.15rem;
}

#conceptTheFearture .txt.notes {
  font-size: 0.9rem;
  line-height: 1.4;
  text-indent: -1rem;
  padding-left: 1rem;
}

#conceptTheFearture .txt.memo {
  border-top: 1px dotted #999999;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-top: 1rem;
  margin-top: 1rem;
}

#conceptTheFearture .txt.memo strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

#conceptTheFearture span.memo {
  font-size: 0.9rem;
  line-height: 1.6;
}

#conceptTheFearture #point01 .contentBox ul li {
  font-size: 0.9rem;
}

#conceptTheFearture #point02 .contentBox a {
  text-decoration: underline;
  transition: color .3s ease;
}
#conceptTheFearture #point02 .contentBox a:hover {
  color: var(--secondary-color);
}

#conceptTheFearture #point03 .contentBox ul {
  font-size: 0.95rem;
}
#conceptTheFearture #point03 .contentBox ul li {
  padding: 6px 0;
  color: var(--primary-color);
}
#conceptTheFearture #point03 .contentBox a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color .3s ease;
}
#conceptTheFearture #point03 .contentBox ul li div.markNotes::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -2px;
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 10px;
}
#conceptTheFearture #point03 .contentBox a:hover {
  color: var(--secondary-color);
}
#conceptTheFearture #point03 .contentBox ul li p {
  font-size: 0.8rem;
  color: var(--black);
  margin: 5px 0 5px 0.95rem;
}

/* 協賛企業バナー */
#secBanners .bannersItems {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 2rem;
}

#secBanners .bannersItems li {
  width: calc(25% - 1rem);
  margin-right: 1rem;
  margin-bottom: 1rem;
}

#secBanners .bannersItems li:nth-child(4n),
#secBanners .bannersItems li:last-child {
  margin-right: 0;
}

#secBanners .bannersItems li img {
  border: 1px solid #CCC;
}
/* 協賛企業バナーここまで */

#conceptMainPhrase {
  margin: 5rem auto;
  padding: 0 5rem;
  background-repeat: no-repeat;
  background-position: center center;
}

#conceptMainPhrase p {
  font-size: 1.05rem;
  line-height: 2;
  letter-spacing: -0.05rem;
  margin-bottom: 1.6rem;
  color: var(--common-text-color);
  text-align: center;
}

#conceptMainPhrase p strong {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 900;
}

#conceptMainPhrase p strong + br {
  display: contents;
}

/*----- ふわっとfadeIn -----*/
.effect-fade.effect-scroll {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translatey(200px);
            transform: translatey(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatey(0);
            transform: translatey(0);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translatey(200px);
            transform: translatey(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatey(0);
            transform: translatey(0);
  }
}
/*----- ３つの特徴 ----- */
#pointIntro h3 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 5rem;
  letter-spacing: 0.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

#pointIntro h3 span.figures {
  display: inline-block;
  font-size: 5rem;
  padding: 0 0.2rem;
}

#pointIntro .wideBgControl:nth-child(1) {
  padding-bottom: 3rem;
  background: var(--point-intro-color);
}

#pointIntro *[id^=point_] {
  color: var(--point-intro-text-color);
}

#pointIntro #point_01 {
  position: relative;
  z-index: 10;
  padding-top: 2.5rem;
}

#pointIntro #point_01 h3 .mbCtrl {
  letter-spacing: 0;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

.eachPointContents h4 {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05rem;
}

.eachPointContents .the_wrapper > .wrap_content {
  padding: 0;
}

.eachPointContents .btn {
  margin: 3rem 0 0;
}

.eachPointContents .btn a {
  display: inline-block;
  background-color: var(--white);
  border: 1px solid var(--white);
  padding: 1rem 2rem;
  width: auto;
  color: var(--primary-color);
  letter-spacing: 0.05rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.eachPointContents .btn a:hover {
  border: 1px solid transparent;
  background-color: var(--white);
  color: var(--primary-color);
}

#pointIntro #point_02 > .eachPointContents {
  position: relative;
  z-index: 10;
}

#pointIntro .wideBgControl:nth-child(2) {
  background: var(--point-intro-mid-color);
}

#pointIntro .wideBgControl:nth-child(even) .wrap_content {
  margin-left: 5rem;
}

#pointIntro .wideBgControl:nth-child(odd) .wrap_content {
  margin-right: 5rem;
}

#pointIntro #point_03 > .eachPointContents {
  position: relative;
  z-index: 10;
  padding-top: 2.5rem;
}

#pointIntro #point_03 {
  background: var(--point-intro-color);
}

#pointIntro .wideBgControl:nth-child(3) {
  background: var(--point-intro-color);
}
/*---　背景ナナメの設定 ---*/
#pointIntro .wideBgControl:nth-child(1) {
  padding-bottom: calc(10vw + 10px);
  padding-top: calc(10vw + 10px);
  position: relative;
  overflow: hidden;
}

#pointIntro .wideBgControl:nth-child(1)::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 10vw solid var(--point-intro-color);
  border-left: 100vw solid var(--common-bg-color);
}

#pointIntro .wideBgControl:nth-child(1)::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid var(--point-intro-mid-color);
  border-right: 100vw solid rgba(255, 255, 255, 0);
}

#pointIntro .wideBgControl:nth-child(2) {
  background: var(--point-intro-mid-color);
  padding-bottom: calc(5vw + 10px);
  position: relative;
  overflow: hidden;
}

#pointIntro .wideBgControl:nth-child(2)::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid var(--point-intro-color);
  border-right: 100vw solid rgba(255, 255, 255, 0);
}

#pointIntro .wideBgControl:nth-child(3) {
  padding-bottom: calc(5vw + 10px);
  position: relative;
  overflow: hidden;
}

#pointIntro .wideBgControl:nth-child(3)::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid var(--common-bg-color);
  border-left: 100vw solid var(--point-intro-color);
}

/*--- ナナメ設定ここまで ---*/
#secOutline {
  padding-top: 0;
  padding-bottom: 10rem;
}

#secOutline #outlineTable {
  background: #FFF;
  padding: 5rem;
  color: var(--common-text-color);
}

#secOutline #outlineTable table {
  width: 100%;
}

#secOutline #outlineTable th,
#secOutline #outlineTable td {
  border-collapse: collapse;
  padding: 2rem 5rem;
  border-bottom: 1px solid #ccc;
  text-align: left;
  letter-spacing: 0.08rem;
}

#secOutline #outlineTable tr:nth-child(1) {
  border-top: 1px solid #ccc;
}

#secOutline #outlineTable tr:nth-of-type(odd) th,
#secOutline #outlineTable tr:nth-of-type(odd) td {
  background: var(--common-bg-color);
}
#secOutline #outlineTable th {
  width: 25%;
  color: var(--primary-color);
  padding-right: 0;
  font-size: 1.1rem;
  vertical-align: top;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

#secOutline #outlineTable tr:nth-child(even) {
  background: #FEFEFE;
}

#secOutline #outlineTable td {
  line-height: 1.8;
}
#secOutline #outlineTable td a {
  color: var(--primary-color);
  border-bottom: 1px solid currentColor;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#secOutline #outlineTable td a:hover {
  color: var(--secondary-color);
}
#secOutline #outlineTable td b {
  font-weight: 500;
  color: var(--primary-color);
}

#secOutline #outlineTable table td > ul > li {
  margin-bottom: 0.8rem;
  word-break: break-all;
}

#secOutline #outlineTable table td > ul > li dt {
  font-weight: 600;
}

#secOutline #outlineTable table td > ul > li dd > ul > li {
  margin-bottom: 0.5rem;
}

#secOutline #outlineTable table td li span.ctrl {
  padding-left: 0.8rem;
}

#secOutline #outlineTable table td li .sizes,
#secOutline #outlineTable table td li .pics {
  width: 80%;
  padding: 0.8rem 0 0 0.8rem;
}

#secOutline #outlineTable table td li .sizes .size,
#secOutline #outlineTable table td li .pics .pic {
  display: block;
}

#secOutline #outlineTable .goodsDetail {
  background: #FFF;
  padding: 0;
}

#secOutline #outlineTable .goodsDetail table {
  width: 100%;
  margin-bottom: 1rem;
}

#secOutline #outlineTable .goodsDetail td {
  border-collapse: collapse;
  padding: 0.5rem;
  border-bottom: none;
  text-align: center;
  vertical-align: middle;
}

#secOutline #outlineTable .goodsDetail td:nth-child(1) {
  padding-left: 0;
}

#secOutline #outlineTable .goodsDetail tr:nth-child(1) {
  border-top: none;
}

#secOutline #outlineTable .goodsDetail tr:nth-child(even) {
  background: none;
}

#secOutline #outlineTable .t-style02 {
  margin-bottom: 1rem;
}
#secOutline #outlineTable tr:nth-child(1) {
  border-top: 1px solid #eee;
}
#secOutline #outlineTable .t-style02 th, 
#secOutline #outlineTable .t-style02 td {
  font-size: 0.8rem;
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}
#secOutline #outlineTable .t-style02 td {
  background: #fff !important;
}
#secOutline #outlineTable .t-style02 th {
  font-weight: 500;
  color: #333;
  width: 180px;
  background: var(--common-bg-color);
}
#secOutline #outlineTable .t-style02 tr:first-of-type th, 
#secOutline #outlineTable .t-style02 tr:first-of-type td {
  font-weight: bold;
  color: var(--common-text-color);
}

#secOutline #outlineTable table td .oldData {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

#secOutline #outlineTable table td .newData {
  font-weight: 600;
  color: red;
}

.giftsNumer .gift {
  display: block;
  position: relative;
  clear: both;
  /* padding-left: 3em; */
}
.giftsNumer .gift > i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-style: normal;
}
.giftsNumer .gift .notes {
  display: block;
  letter-spacing: -0.01em;
  position: relative;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.giftsNumer .gift .notes.clear1 {
  clear: both;
}
.giftsNumer .gift .notes::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid currentColor;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.giftsNumer .gift .notes strong {
  font-size: 0.85rem;
}

#secFlow {
  background: #FFF;
}

.contentBox__header span {
  font-size: 3rem;
  font-family: Oswald;
  font-weight: 500;
}

#flowchart {
  padding: 5rem;
}

.flowchart__items {
  color: var(--common-text-color);
  counter-increment: step;
}

.flowchart__items dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
}

.flowchart__items + .flowchart__items {
  margin-top: 3rem;
}

.flowchart__items dt {
  font-family: Oswald;
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 5rem;
  color: var(--primary-color);
  min-width: 10%;
  white-space: nowrap;
}
.flowchart__items dt::after {
  content: "0" counter(step);
  font-size: 3rem;
  margin-left: 0.5rem;
  white-space: nowrap;
  vertical-align: -0.05em;
}
.flowchart__items:nth-of-type(n+10) dt::after {
  content: counter(step);
}

.flowchart__items dt span {
  font-size: 3rem;
  vertical-align: -0.05em;
}

.flowchart__items dd {
  border-left: 1px solid #CCC;
  padding-left: 5rem;
}

.flowchart__items dd h5 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--primary-color);
  letter-spacing: 0.05rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

.notes {
  font-size: 0.85rem;
}

.notes strong {
  font-size: 1rem;
}

.beer {
  color: goldenrod;
}

#faqLists {
  padding: 5rem;
  background: #FFF;
}

.faq__items {
  color: var(--common-text-color);
}

.faq__items + .faq__items {
  margin-top: 1rem;
}

.faq__items dl {
  position: relative;
  line-height: 1.8;
  padding: 2rem 3rem;
  background: rgba(0, 0, 0, 0.05);
}

.faq__items .question {
  padding-left: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  height: 4rem;
  font-weight: 500;
  color: #454545;
  font-size: 1.2rem;
}

.faq__items .question::before {
  content: "Q.";
  color: var(--primary-color);
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  font-family: Oswald;
}

.faq__items .answer {
  padding-left: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
  height: auto;
  text-align: justify;
}

.faq__items .answer::before {
  content: "A.";
  color: var(--orange);
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  font-family: Oswald;
}

/*----- FAQ アコーディオン部分 -----*/
.faq__items .questionWrapper {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width: 100%;
}

/*アイコンの＋と×*/
.faq__items .questionWrapper::before,
.faq__items .questionWrapper::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.faq__items .questionWrapper::before {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq__items .questionWrapper::after {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.faq__items .questionWrapper.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq__items .questionWrapper.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.faq__items .answerWrapper {
  display: none;
  /*はじめは非表示*/
  margin-bottom: 1rem;
}

/* ENTRY */
#secEntry {
  background: var(--entry-bg-color);
}

#entryDetail .section__title {
  color: #fff;
}

.entryboxWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 80%;
  margin: 2rem auto 0;
}

.entry__title {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
  width: 50%;
  margin: 0 auto 1rem;
  position: relative;
  background: #FFF;
  z-index: 1;
  padding: 1rem 2rem;
  color: var(--entry-bg-color);
  -webkit-clip-path: polygon(32px 0%, 100% 0%, calc(100% - 32px) 100%, 0% 100%);
  clip-path: polygon(32px 0%, 100% 0%, calc(100% - 32px) 100%, 0% 100%);
}

.entry__title h4 {
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  font-family: "Noto Sans JP", sans-serif;
}

.entry__title span {
  letter-spacing: 0.1rem;
  font-weight: 400;
}

.entryPeriod,
.eventPeriod,
.howToEntry {
  /*padding: 2.5rem 5rem;*/
  /*border: 1px solid #FFF;*/
  margin-bottom: 3rem;
  text-align: center;
}

.entryPeriod p,
.eventPeriod p {
  font-size: 1.6rem;
  font-family: Oswald, "Noto Sans JP", sans-serif;
  letter-spacing: 0.25rem;
  text-align: center;
  font-weight: 500;
}
.entryPeriod p > span,
.eventPeriod p > span {
  font-size: 1.6rem;
}

.entryPeriod p.memo,
.eventPeriod p.memo {
  font-size: 0.9rem;
}

.howToEntry .txts {
  margin: 0 auto 3rem;
  width: 70%;
}

.howToEntry .txts p {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  font-weight: 300;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.youbi {
  display: inline-block;
  margin-left: -1rem;
  margin-right: -0.5rem;
}

.outerlink a.linkInText {
  padding: 0 0.5rem;
}

.txt a.linkInText {
  color: var(--primary-color);
}
.txt a.linkInText:hover {
  color: var(--secondary-color);
}
.txt b:not(.normal) {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
  background: -webkit-linear-gradient(bottom, rgba(var(--primary-color-rgb), 1) 1px, rgba(var(--primary-color-rgb), 0.5) 1px, rgba(var(--primary-color-rgb), 0.5) calc(0.5rem + 1px), rgba(var(--primary-color-rgb), 0.6) calc(0.5rem + 1px), rgba(var(--primary-color-rgb), 0.6) calc(0.5rem + 2px), rgba(255, 255, 255, 0) calc(0.5rem + 2px));
  background: linear-gradient(360deg, rgba(var(--primary-color-rgb), 1) 1px, rgba(var(--primary-color-rgb), 0.5) 1px, rgba(var(--primary-color-rgb), 0.5) calc(0.5rem + 1px), rgba(var(--primary-color-rgb), 0.6) calc(0.5rem + 1px), rgba(var(--primary-color-rgb), 0.6) calc(0.5rem + 2px), rgba(255, 255, 255, 0) calc(0.5rem + 2px));
}

.entrybox_items {
  -webkit-flex-basis: 47%;
          flex-basis: 47%;
  border: 1px solid #fff;
  margin: 0 1.5%;
}

.entrybox_items a {
  display: block;
  padding: 2rem;
  background: rgba(var(--primary-color-rgb), 0.2);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.entrybox_items a::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  background: var(--primary-light-color);
  z-index: -2;
}
.entrybox_items a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.entrybox_items a:hover::after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  background: rgba(var(--secondary-color-rgb), 1);
}

.entrybox_items h5 {
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.entrybox_items h5 i {
  padding-left: 0.8rem;
}

.entrybox_items .entryLink img {
  width: 80%;
}

/*----- 利用規約 -----*/
#secTerms {
  background: #FFF;
}

.termWrapper {
  padding: 5rem;
  color: var(--common-text-color);
}

.term__items {
  line-height: 1.8;
  letter-spacing: 0.05rem;
  padding-left: 1rem;
  text-indent: -1.1rem;
  font-weight: 400;
}

.term__items i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-color);
}

.term__items + .term__items {
  margin-top: 1.2rem;
}

.termWrapper ul {
  padding: 1rem;
}

.termWrapper h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08rem;
  color: var(--primary-color);
  position: relative;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

.termWrapper h4::before,
.termWrapper h4::after {
  content: "／";
  height: 1.8rem;
  width: 1rem;
  color: var(--primary-color);
  font-weight: 100;
}

.termWrapper h4::before {
  left: 0;
  margin-right: 0.5rem;
}

.termWrapper h4::after {
  margin-left: 0.5rem;
}

.termWrapper p {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.termList,
.termPrivacy {
  margin-bottom: 5rem;
}

#secContact {
  background: var(--contact-bg-color);
}

#secContact .section__title {
  color: var(--contact-text-color);
}

.contactWrapper {
  margin: 0 auto;
  width: 80%;
  padding: 0 5rem 0;
}

.contactContents {
  text-align: center;
  letter-spacing: 0.05rem;
  font-family: "Noto Sans JP", sans-serif;
}
.contactContents dl + h4 {
  margin-top: 4rem;
}

.contactContents h4 {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  padding: 1rem 2rem;
  border: 1px solid var(--contact-text-color);
}

.contactContents dt {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08rem;
  font-weight: 700;
}
.contactContents dt > b {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
}

.contactContents dt > span {
  display: block;
  font-size: 1rem;
}

.contactContents li {
  margin-bottom: 2rem;
  font-weight: 400;
}

.contactContents li.address {
  letter-spacing: 0.2rem;
}

.contactContents li.tel,
.contactContents li.mail {
  font-size: 2.1rem;
  font-family: Oswald;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

.contactContents li.tel > div,
.contactContents li.mail > div {
  font-size: 1rem;
  margin: 1rem 0;
  color: var(--contact-text-color);
}

.contactContents li div li {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

footer {
  letter-spacing: 0.2rem;
  padding: 1rem;
  background: var(--secondary-color);
  background: var(--primary-light-color);
  color: var(--common-text-light-color);
}

footer p {
  text-align: center;
}

footer p:last-of-type {
  line-height: 1.25;
}

footer .ruby {
  font-size: 0.9em;
  letter-spacing: -0.1em;
}

/*----- テキストナビゲーション
-左から右に線が伸びる（下部）-----*/
#globalHeader__items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  display: block;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

#globalHeader__items li a::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*X方向0、Y方向1*/
  -webkit-transform-origin: left top;
          transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
#globalHeader__items li.current a::after,
#globalHeader__items li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/*----- スクロールダウン
-縦線が動いてスクロールを促す- -----*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  margin-top: 30px;
  /*全体の高さ*/
  height: 30px;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  /*線の形状*/
  width: 2px;
  height: 30px;
  background: #FFF;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 2s ease-in-out infinite;
          animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0.5;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 1;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0.5;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 1;
  }
}
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background: var(--secondary-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  width: 50px;
  height: 50px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.5rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

#page-top a:hover {
  background: var(--primary-light-color);
}
#page-top a:hover::before {
  opacity: 0;
}
#page-top a:hover::after {
  opacity: 0.75;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 500;
  /*はじめは非表示*/
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
#page-top i {
  margin: 0;
}

.banners {
  margin: 0 5rem 5rem;
}

.banners ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.banners ul li {
  width: calc(25% - 1rem);
  background: var(--common-bg-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.banners ul li a {
  padding: 1.5rem 0.8rem;
  display: block;
  width: 100%;
  color: var(--primary-color);
}

.banners ul li .ruby {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid !important;
}

.information {
  margin: 0 5rem 0;
  background: var(--white);
  padding: 2rem 2rem;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.information .linkInText {
  color: var(--primary-color);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.information .linkInText:hover {
  color: var(--secondary-color);
}
.information dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #CCCCCC;
  color: var(--common-text-dark-color);
}
.information dl:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.information dl[data-new=true] dd::before {
  content: "NEW";
  display: inline-block;
  background: var(--red);
  color: var(--white);
  margin-right: 0.5rem;
  padding: 0rem 1rem;
  font-size: 0.8rem;
  vertical-align: text-top;
  border-radius: 3px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}
.information dl dt {
  margin-right: 1rem;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  min-width: 13rem;
}
.information dl dt::after {
  content: "/";
  padding-left: 1rem;
}

/* ----- ボタン風リンク ----- */
.Btn-ish a {
  padding: 0.5rem 1rem;
  /*border: 1px solid var(--secondary-color);*/
  letter-spacing: 0.1rem;
  display: inline-block;
  width: 50%;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--secondary-color);
  color: #FFF;
  outline: none;
}

/* ----- modaal ----- */
.modaal-outer-wrapper .modaal-container {
  max-width: 640px !important;
}

/* ----- FS RESULT -----*/
.fsResult {
  margin: 0 5rem;
}

.fsResult .section__subtitle {
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}

.fsResult .section__subtitle h4 {
  text-align: center;
  font-family: Oswald;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
  color: var(--primary-color);
}

#imagelightbox {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2) !important;
}

#taikaiResultOutputArea {
  margin: 3rem 0;
}

.taikaiResultOutputTitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1rem;
  color: var(--primary-color);
}

.slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
}

.slick-slide {
  float: none;
  height: auto;
  /*	padding: 0 .5rem;*/
}
.slick-slide img {
  width: 100%;
  max-width: 100%;
}

.slick-slider {
  margin-bottom: 3rem;
}

.slick-slide > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  /*height: 100%;*/
  min-height: 8rem;
  padding: 0.5rem 1rem;
  color: var(--secondary-color);
  /*background-color: rgb(0 0 0 / 17%);*/
  background: var(--common-bg-color);
  border-radius: 0.5rem;
  box-sizing: border-box;
}

.wrap__image .slider .slick-slide > div {
  padding: 0;
  min-height: auto;
}

.slider .slick .slick-dots li button::before {
  color: var(--primary-color);
  font-size: 12px;
}
.slider .slick .slick-dots li.slick-active button::before {
  color: var(--primary-color);
}
.slider .slick-prev {
  left: 1rem;
}
.slider .slick-prev::before {
  content: "\f053";
}
.slider .slick-next {
  right: 1rem;
}
.slider .slick-next::before {
  content: "\f054";
}
.slider .slick-prev, .slider .slick-next {
  z-index: 100;
}
.slider .slick-prev::before, .slider .slick-next::before {
  font-size: 2rem;
  color: var(--secondary-color);
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}

.slick figure {
  position: relative;
}
.slick figure figcaption {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 1.25rem;
  line-height: 1.5;
  color: var(--secondary-color);
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif; */
}

a[data-slider-goto] {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0);
  border: 0;
  cursor: pointer;
  text-decoration: underline;
}

.gallery-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.gallery-list-item {
  width: 16.6666666667%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.gallery-list-item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.gallery-list-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.gallery-list-item a:hover img {
  opacity: 0.4;
}

.gallery-list-item[data-direction=row] img {
  height: 100%;
}

.gallery-list-item[data-direction=column] img {
  width: 100%;
}

#secBanners01 {
  background: #FFFFFF;
}

#secBanners01 .bannersItems {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 2rem;
}

#secBanners01 .bannersItems li {
  width: calc(16.6666666667% - 1rem);
  margin-right: 1rem;
  margin-bottom: 1rem;
}

#secBanners01 .bannersItems li:nth-child(6n),
#secBanners01 .bannersItems li:last-child {
  margin-right: 0;
}

#secBanners01 .bannersItems li img {
  border: 1px solid #CCC;
}

#secBanners01 .section__title {
  margin-left: -1rem;
  margin-right: -1rem;
}

#conceptTheFearture + #sponsors {
  padding-top: 0;
}

#sponsors .bannersItems {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: 2rem;
}
#sponsors .bannersItems li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
  margin: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}
#sponsors .bannersItems li > span,
#sponsors .bannersItems li a {
  display: block;
  border: 1px solid #eee;
  box-sizing: border-box;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease, border 0.3s ease;
  transition: opacity 0.3s ease, border 0.3s ease;
}
#sponsors .bannersItems li > span img,
#sponsors .bannersItems li a img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}
#sponsors .bannersItems li a:hover {
  opacity: 0.8;
  border: 1px solid rgba(var(--primary-color-rgb), 0.5);
}
#sponsors .sponsors01 .bannersItems {
  -webkit-justify-content: space-around;
          justify-content: space-around;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  padding: 0.5rem 0;
  position: relative;
}
#sponsors .sponsors01 .bannersItems::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 1rem);
  height: 100%;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  z-index: -1;
  pointer-events: none;
}
#sponsors .sponsors01 .bannersItems li {
  width: calc(50% - 1rem);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  /*&:nth-child(2n),
  &:last-child {
  	margin-right: 0;
  }*/
}
#sponsors .sponsors01 .bannersItems li > span,
#sponsors .sponsors01 .bannersItems li a {
  width: 100%;
  border-width: 50px 100px;
}
#sponsors .sponsors02 .bannersItems li {
  width: calc(25% - 1rem);
}
#sponsors .sponsors02 .bannersItems li > span,
#sponsors .sponsors02 .bannersItems li a {
  border-width: 5px;
}
#sponsors .sponsors03 .bannersItems {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
#sponsors .sponsors03 .bannersItems li {
  width: calc(16.6666666667% - 1rem);
}
#sponsors .sponsors03 .bannersItems li > span,
#sponsors .sponsors03 .bannersItems li a {
  color: #000;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
#sponsors .sponsors03 .bannersItems li > span span,
#sponsors .sponsors03 .bannersItems li a span {
  display: block;
  margin: auto;
  text-align: center;
}

#sponsors .section__title {
  margin-left: -1rem;
  margin-right: -1rem;
}

.dlLists01 dt {
  font-weight: bold;
}
.dlLists01 dt::before {
  content: "【";
}
.dlLists01 dt::after {
  content: "】";
}
.dlLists01 dt i {
  font-style: normal;
  margin-right: 0;
}
.dlLists01 dd {
  font-weight: 300;
}
.dlLists01 dd + dt {
  margin-top: 0.5rem;
}
.dlLists01 dd b {
  font-weight: 600;
}

.numberLists01 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.numberLists01 li {
  display: block;
  position: relative;
  padding-left: 3em;
}
.numberLists01 li > i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-style: normal;
}


#secAmbassadors .ambassadors .ambassador .profileNotes {
  font-size: 0.8rem;
  border-top: solid 1px #ccc;
  padding-top: 0.8rem;
}
#secAmbassadors .ambassadors .ambassador .profileNotes strong {
  font-size: 0.8rem;
  font-weight: bold;
}

#secMovie .movies {
  margin-left: -20px;
  margin-right: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
#secMovie .movies .movie {
  width: 50%;
  margin: 0 auto;
  padding: 0 20px;
}
#secMovie .movies .youtube {
  border-radius: 0.5rem;
}

.movie p {
  text-align: center;
  color: #000;
  line-height: 1.5;
  margin: 1rem auto;
}
.movie p b {
  display: table;
  font-size: 1rem;
  position: relative;
  margin: auto;
}
.movie p b::before, .movie p b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  width: 1px;
  height: 25px;
  background-color: currentColor;
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
.movie p b::before {
  left: -30px;
  -webkit-transform: skewX(-26deg);
          transform: skewX(-26deg);
}
.movie p b::after {
  right: -15px;
  -webkit-transform: skewX(-26deg) translateX(0%);
          transform: skewX(-26deg) translateX(0%);
}

/* for YouTube */
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lineWrap01 {
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 1.5rem 0;
}
.lineWrap01 b {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25em;
  color: var(--primary-color);
}
.lineWrap01 > p {
  margin: 1.5rem 0rem;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}
.lineWrap01 > p:last-of-type {
  margin-bottom: 0 !important;
}
.lineWrap01 blockquote {
  margin: 1.5rem 0rem;
  padding: 1.5rem;
  background: var(--white);
  line-height: 1.5;
  font-size: 0.9em;
  border: 1px solid var(--primary-color);
}
.lineWrap01 blockquote p {
  font-size: 0.9em !important;
  line-height: 1.8 !important;
  margin-bottom: 0 !important;
}

.figureGroup {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  gap: 10px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.figureGroup figure {
  display: block;
}
.figureGroup figcaption {
  font-size: 0.8rem;
  letter-spacing: -0.05em;
  word-break: break-all;
}
.figureGroup.row-cols-3 figure {
  width: calc((100% - 20px) / 3);
}

#fsresult {
  --primary-color: #009094;
  --secondary-color: #000;
}

#fsresult .fsResult .slick-slide > div {
  border-color: #009094;
}

#globalHeader {
  background: #fff !important;
}

#globalHeader::after {
  height: 100px;
  height: 2px;
  background-image: -webkit-radial-gradient(50% 100%, 49% 300px ellipse, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) calc(100% - min(5vw, 100px)), rgba(85, 51, 51, 0.5) calc(100% - min(3.5vw, 70px)), rgba(255, 255, 255, 0) calc(100% - min(0vw, 0px))), -webkit-radial-gradient(50% 100%, 50% 300px ellipse, rgba(255, 255, 255, 0), #fff calc(100% - min(4vw, 80px)), #aaa calc(100% - min(2vw, 40px)), #fff);
  background-image: radial-gradient(49% 300px ellipse at 50% 100%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) calc(100% - min(5vw, 100px)), rgba(85, 51, 51, 0.5) calc(100% - min(3.5vw, 70px)), rgba(255, 255, 255, 0) calc(100% - min(0vw, 0px))), radial-gradient(50% 300px ellipse at 50% 100%, rgba(255, 255, 255, 0), #fff calc(100% - min(4vw, 80px)), #aaa calc(100% - min(2vw, 40px)), #fff);
}

#globalHeader__specular:hover a,
#globalHeader__specular:hover .header_rubby {
  color: var(--white);
}

#homeMainVisual[data-inview=false]::before {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-filter: blur(1px);
          filter: blur(1px);
  opacity: 1;
}

#homeMainVisual[data-inview=false]::after {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-filter: blur(1px);
          filter: blur(1px);
  opacity: 0.5;
}

#homeMainVisual #sloganWrapper {
  z-index: 500;
}

.vegas-timer-progress {
  background: var(--primary-color) !important;
}

#globalHeader__items li a::after {
  background: var(--primary-color);
}

.globalHeader__Item a {
  color: var(--black);
}

#globalHeader__specular {
  background: var(--hd-entry-bg-color);
}

#globalHeader .header_rubby {
  color: var(--primary-color);
}

#globalHeader__specular .header_rubby {
  color: var(--white);
}

.infoBannarItem01 {
  background: var(--white);
  padding-top: 1px;
}

.infoBanners .infoBannarItem01 ul {
  background: transparent;
}

.infoBanners .infoBannarItem01 ul::before,
.infoBanners .infoBannarItem01 ul::after,
.infoBanners .infoBannarItem01 li a {
  background: rgba(var(--primary-color-rgb), 1);
}

.infoBanners .infoBannarItem01 li a {
  color: var(--white);
}

.infoBanners li .ruby {
  border-top-color: currentColor;
}

#homeMainVisual #slogan p {
  color: var(--white);
}

#homeMainVisual #slogan .sloganControlled {
  padding: min(4.4vw, 4.4rem) min(5vw, 5rem) min(4vw, 4rem) min(4.5vw, 4.5rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#homeMainVisual #slogan .sloganControlled > img:first-of-type {
  max-width: 500px;
  max-width: min(500px, 105% - 100px);
  margin: auto 0;
}

#homeMainVisual #slogan .sloganControlled > a {
  width: min(100px, 15vw);
  height: auto;
  z-index: 1002;
  -webkit-transform: translate(min(2.5vw, 2.5rem), min(2vw, 2rem));
          transform: translate(min(2.5vw, 2.5rem), min(2vw, 2rem));
}

.section__omote {
  color: var(--primary-color);
}

#conceptMainPhrase {
  background-image: url("../images/cocetp_bg.png");
}

.fsResult:empty {
  margin: 0 !important;
}

#postImages {
  margin-top: -3rem !important;
}

#secInfo {
  background: none;
}

/* #secInfo .section__subtitle {
  color: var(--black) !important;
} */
#secInfo .section__subtitle h4 {
  color: var(--black) !important;
}

#secConcept {
  padding-top: 0;
}

#featureWrapper .slick figure figcaption {
  margin: 5px;
  background: rgba(var(--primary-color-rgb), 0.9);
  color: var(--white);
  width: calc(100% - 10px);
}

#conceptTheFearture .txt {
  letter-spacing: -0.05em;
  line-height: 1.8;
}

.giftsNumer .gift .notes .figureGroup.floatL {
  float: left;
  width: 50%;
  padding: 0 10px 0 0;
  box-sizing: border-box;
}

.giftsNumer .gift > i:first-of-type,
.giftsNumer .gift::first-line {
  color: black;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.giftsNumer .gift::first-line {
  letter-spacing: -0.025em;
}

.entrybox_items a:hover::after {
  background: var(--orange);
}

#page-top a {
  background: var(--primary-color);
  border: 1px solid var(--white);
}

mark {
  background: none;
  color: var(--red);
  font-weight: bold;
  border-radius: 3px;
  border: 1px solid currentColor;
  display: inline-block;
  padding: 0 0.5em;
  font-size: 0.75em;
  vertical-align: text-bottom;
}

@media screen and (max-width: 1280px) {
  .infoBannarItem01 {
    background-color: #ccc;
  }
}
@media screen and (max-width: 810px) {
  #globalHeader__items {
    background-color: rgba(var(--primary-color-rgb), 0.98) !important;
  }
  #globalHeader .header_rubby {
    color: var(--white) !important;
    font-weight: 400 !important;
  }
  header.UpMove {
    mix-blend-mode: exclusion;
  }
  .btn-line,
  .btn-line::before, .btn-line::after {
    background-color: var(--white) !important;
    box-shadow: none !important;
  }
  .btn-line.open {
    background-color: transparent !important;
  }
}
@media screen and (max-width: 768px) {
  #homeMainVisual #slogan {
    position: static !important;
  }
  #homeMainVisual #slogan .sloganControlled > a {
    -webkit-transform: translate(min(20%, 2vw), min(20%, 1vw));
            transform: translate(min(20%, 2vw), min(20%, 1vw));
  }
}
/* .fsResult */
.fsResult.each__section:empty {
  padding: 0;
}/*# sourceMappingURL=main.css.map */


/* 大会アンバサダー */
#secAmbassadors {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#secAmbassadors::before, #secAmbassadors::after {
  position: absolute;
  top: 11.5rem;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 80%;
  height: 92%;
  pointer-events: none;
  -webkit-clip-path: polygon(0% 5vw, 5vw 5vw, 5vw 0%, 100% 0, 100% calc(100% - 5vw), calc(100% - 5vw) calc(100% - 5vw), calc(100% - 5vw) 100%, 0 100%);
          clip-path: polygon(0% 5vw, 5vw 5vw, 5vw 0%, 100% 0, 100% calc(100% - 5vw), calc(100% - 5vw) calc(100% - 5vw), calc(100% - 5vw) 100%, 0 100%);
}
#secAmbassadors::before {
  z-index: -1;
  border-left: 6px solid rgba(0, 144, 148, 0.2);
  border-right: 6px solid rgba(0, 144, 148, 0.2);
}
#secAmbassadors::after {
  z-index: -2;
  border-top: 6px solid rgba(0, 144, 148, 0.2);
  border-bottom: 6px solid rgba(0, 144, 148, 0.2);
}
#secAmbassadors h2 {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

#secAmbassadors .ambassadors {
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
}
#secAmbassadors .ambassadors .ambassador {
  width: 50%;
  padding: 2rem 4rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
  overflow: hidden;
}
#secAmbassadors .ambassadors .ambassador h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#secAmbassadors .ambassadors .ambassador h3 a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--primary-color);
}
#secAmbassadors .ambassadors .ambassador h3 a:hover {
  color: var(--orange);
}
#secAmbassadors .ambassadors .ambassador h3 span.iconWrap {
  margin: auto;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
}
#secAmbassadors .ambassadors .ambassador h3 span.iconWrap i.fab {
  margin: 0;
}
#secAmbassadors .ambassadors .ambassador p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  height: 100%;
  color: var(--common-text-color);
}
#secAmbassadors .ambassadors .ambassador figure {
  padding: 0 2rem;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  text-align: right;
}
#secAmbassadors .ambassadors .ambassador figure figcaption a {
  position: absolute;
  right: 0rem;
  bottom: -1rem;
  color: #fff;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /* background: #DE1414; */
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  white-space: nowrap;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  transition: ease .3s;
}
#secAmbassadors .ambassadors .ambassador figure figcaption a:hover {
  box-shadow: none;
  transform: translateX(3px) translateY(3px);
}
#secAmbassadors .ambassadors .ambassador figure figcaption a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 17%, rgba(255, 77, 64, 0) 44%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 17%, rgba(255, 77, 64, 0) 44%) no-repeat;
}
#secAmbassadors .ambassadors .ambassador figure figcaption a i.fab {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  vertical-align: 0.01em;
}
#secAmbassadors .ambassadors .ambassador figure img {
  display: block;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
#secAmbassadors .ambassadors .ambassador figure::before {
  position: absolute;
  display: block;
  content: "";
  width: 90%;
  height: 100%;
  margin: auto;
  top: 0;
  left: -100%;
  right: -100%;
  z-index: -1;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  background: #af1010;
  background: -webkit-linear-gradient(230deg, rgba(255, 255, 255, 0) 70%, #009094), -webkit-linear-gradient(230deg, #CB5231, #fff 60%);
  background: linear-gradient(-140deg, rgba(255, 255, 255, 0) 70%, #009094), linear-gradient(-140deg, #CB5231, #fff 60%);
  -webkit-transform: skewX(-26deg) translateX(0%) scale(0.9);
          transform: skewX(-26deg) translateX(0%) scale(0.9);
}

#secAmbassadors .ambassadors .application {
  width: 50%;
  padding: 2rem;
  margin: auto 0 0;
}

#secAmbassadors .ambassadors .application figure {
  width: 25%;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

#secAmbassadors .ambassadors .application figure:hover {
  opacity: .8;
}

#secAmbassadors .ambassadors .application h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

#secAmbassadors .ambassadors .application h3 a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#secAmbassadors .ambassadors .application h3 a:hover {
  color: var(--orange);
}

#secAmbassadors .ambassadors .application p {
  font-size: 0.85rem;
  color: #000;
}
/* 大会アンバサダーここまで */