@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@700&family=Palanquin+Dark:wght@700&display=swap');



/**************************************************/


/* all */
body {
  line-height: 1.8em;
  letter-spacing: 0.2em;
  /*background: #037bff;*/
  font-family: 'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.g-font6 {
  font-family: 'Cabin Sketch', cursive;
}

.g-font8 {
  font-family: 'Palanquin Dark', sans-serif;
}

.slideConts {
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  padding: 0 2% 0 2%;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

#cnt {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto 80px auto;
  /*padding: 70px 0 0 0;*/
}

.bg-blue {
  background: #3100ff;
}

/* page_top */
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 30px;
  bottom: -100px;
  /*background: #999;*/
  background: #037bff;
  /*opacity: 0.6;*/
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  letter-spacing: 0;
}

/*--------------------------------------
コンバージョンアップボタン 黄色（中央寄せ）
--------------------------------------*/
.button3,
a.button3,
button.button3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.button3-wrap {
  margin: 30px 0;
  text-align: center;
}

a.button3-c {
  font-size: 1.15rem;
  width: 100%;
  position: relative;
  padding: 0.25rem 2rem 0.9rem 2.1rem;
  color: #333;
  background: #fff100;
  -webkit-box-shadow: 0 5px 0 #2c9d60;
  box-shadow: 0 5px 0 #ccc100;
  display: flex;
  justify-content: center;
}

a.button3-c span {
  font-size: 0.8rem;
  position: absolute;
  top: -10px;
  /*left: calc(50% - 150px);*/
  display: block;
  /*width: 300px;*/
  padding: 0.2rem 0;
  color: #333;
  border: 2px solid #333;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.button3-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #333;
  background: #fff100;
  -webkit-box-shadow: 0 2px 0 #ccc100;
  box-shadow: 0 2px 0 #ccc100;
}

a.button3-c:hover:before {
  left: 2rem;
}

/* //all */


/**************************************************/


/* header */
/* nav */
#navbarSupportedContent {
  overflow-y: scroll !important;
  max-height: 85vh;
}

.navbar {
  background: rgba(0, 0, 0, 0.8);
}

.navbar-brand {
  font-weight: bold;
  letter-spacing: 0.2em;
}


.navbar-brand img {
  width: 100%;
}

.nav-item {
  margin: 0 1px 0 3px;
  padding: 0;

}

.nav-link {
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

.navbar-light .navbar-toggler {
  color: #333;
  border-color: transparent;
}

.material-icons {
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

/* menu-trigger */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  cursor: pointer;
}

.menu-trigger {
  position: relative;
  width: 35px;
  height: 30px;
  margin: 10px 0 10px 0;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 12px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

/* nav_current */
.navbar-light .navbar-nav .nav-link.current {
  color: #037bff;
}

.current {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  padding-top: 5px;
}

.current::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #037bff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  font-weight: bold;
}

.current::after {
  transform: scale(1, 1);
  font-weight: bold;
}

/* //header */


/**************************************************/


/* contents-top */
/* cover */
.cover {
  /* 画像ファイルの指定 */
  background-image: url(../img/test_cover9.jpg);

  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;

  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;

  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: scroll;

  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;

  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #222;
  width: 100vw;
  height: auto;
  min-height: 95vh;
  overflow: hidden;
  position: relative;
  z-index: -1;
  /*background-attachment: fixed;*/
}

.cover:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: auto;
  min-height: 95vh;
  z-index: -11;
}

.cover-inner {
  /*height: auto;*/
  min-height: 95vh;
  /*margin: auto;*/
  /*display: table;*/
  /*display: flex;
  justify-content: center;
  align-items: center;*/
}

.logo-cnt {
  top: 70px;
}

.logo-img {
  filter: drop-shadow(6px 4px 2px #fff) invert(100%);
  transition-property: filter;
}

.comment-cnt {
  top: 200px;
}

.comment-cnt-box {
  filter: drop-shadow(6px 4px 2px #111);
}

.comment-cnt-1 {
  font-size: 64px;
  font-weight: bold;
  line-height: 1.3em;
}

.comment-cnt-2 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2em;
}

.count-cnt {
  top: -30px;
}

.count {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2em;
}

/* fluffy */
.fluffy {
  top: -50px;
  left: -50px;
  animation: fluffy1 3s ease infinite;
  position: absolute;
  padding: 35px 0 0 0;
  width: 100px;
  height: 100px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: bold;
  background: #037bff;
  z-index: 1;
}

.fluffy .fa-angle-double-down {
  letter-spacing: 0em;
  font-size: 22px;
  font-weight: bold;
  background-color: #037bff;
}

@keyframes fluffy1 {
  0% {
    transform: translateY(0)
  }

  5% {
    transform: translateY(0)
  }

  10% {
    transform: translateY(0)
  }

  20% {
    transform: translateY(-15px)
  }

  25% {
    transform: translateY(0)
  }

  30% {
    transform: translateY(-15px)
  }

  50% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(0)
  }
}

.fluffy::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 40px;
  bottom: -12px;
  border-right: 20px solid #037bff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-90deg);
}

.slideTopLogo {
  transform: translate(0, -800px);
  transition-delay: .9s;
  transition-duration: 1.4s;
}

.slideTopLogoIn {
  transform: translate(0, 0) !important;
}

.slideToptext {
  transform: translate(-800px, 0);
  transition-delay: .3s;
}

.slideToptextIn {
  transform: translate(0, 0) !important;
}

.slideTopTime {
  transform: translate(800px, 0);
  transition-delay: .9s;
}

.slideTopTimeIn {
  transform: translate(0, 0) !important;
}

/* //contents-top */


/**************************************************/


/* contents-message */
.contents-message-bgimg {
  margin: 40% 0 0 10%;
}

.title {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: .5s;
  /*color: #aa8f7b;*/
  color: #111;
}

.title p {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: .5s;
}

.title-visible,
.title-visible p {
  transform: translate(0, 0);
}

.sentence {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: .5s;
}

.sentence p {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition-delay: .5s;
}

.sentence-visible,
.sentence-visible p {
  transform: translate(0, 0);
}

.slideConceptConts {
  opacity: 0;
}

.slideConceptContsIn {
  animation-name: fadein;
  animation-duration: 2s;
  animation-iteration-count: 1;
  opacity: 1;
}

/* //contents-message */


/**************************************************/


/* contents-news */
.png1 {
  margin: 0;
  padding: 0;
  width: 100%;
  /*height: 30vh;*/
  /*left: 30%;*/
  /*background: url("../img/test_png1.png") center center repeat;*/
  position: absolute;
  overflow: hidden;
  height: 95vh;
}

.png1 img {
  margin: 0;
  padding: 0;
  width: 100%;
  margin-left: -50%;
}

.png2 {
  margin: 0;
  padding: 0;
  width: 100%;
  /*height: 30vh;*/
  /*left: 30%;*/
  /*background: url("../img/test_png1.png") center center repeat;*/
  position: absolute;
  overflow: hidden;
  height: 95vh;
}

.png2 img {
  margin: 0;
  padding: 0;
  width: 100%;
  margin-left: 50%;
}

.news-outline {
  outline: 10px solid #037bff;
}

.news-outline-cnt {
  opacity: 1 !important;
}

.news-outline-h1 {
  line-height: 1.2em;
}

.cocoa-p {
  font-size: .9em;
}

.cocoa-ol li {
  margin: 0 0 10px 20px;
  font-size: .9em;
}

.cocoa-ul li {
  margin: 0 0 10px 10px;
  font-size: .9em;
}

.news-ul {
  position: relative;
  font-size: .9em;
}

.news-li {
  line-height: 1.8;
  padding: 0 0 0 3.0em;
  margin: 0 0 2em 0;
  /*border-bottom: dashed 1px #048bff;*/
  border-left: solid .5em #037bff;
  list-style-type: none !important;
}

.news-li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  /*アイコン種類*/
  position: absolute;
  left: 0.5em;
  padding: 0 0 0 1.5em;
  /*左端からのアイコンまで*/
  /*color: #e50011;*/
  color: #037bff;
  /*アイコン色*/
}

.news-li:last-of-type {
  border-bottom: none;
}

.news-li-topic {
  line-height: 1.8;
  padding: 0 0 0 3.0em;
  margin: 0 0 2em 0;
  /*border-bottom: dashed 1px #048bff;*/
  border-left: solid .5em #037bff;
  list-style-type: none !important;
}

.news-li-topic:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  /*アイコン種類*/
  position: absolute;
  left: 0.5em;
  padding: 0 0 0 1.5em;
  /*左端からのアイコンまで*/
  /*color: #e50011;*/
  color: #037bff;
  /*アイコン色*/
}

.news-li-topic:last-of-type {
  border-bottom: none;
}

.slideNewsContsL {
  margin: 0 auto 80px auto;
  transform: translate(-800px, 0);
}

.slideNewsContsLIn {
  transform: translate(0, 0) !important;
}

.slideNewsContsR {
  margin: 0 auto 80px auto;
  transform: translate(800px, 0);
  transition-delay: .3s;
}

.slideNewsContsRIn {
  transform: translate(0, 0) !important;
}

.slideNewsUnderL {
  margin: 0 auto 80px auto;
  transform: translate(-800px, 0);
  transition-delay: .3s;
}

.slideNewsUnderLIn {
  transform: translate(0, 0) !important;
}

.slideNewsUnderR {
  margin: 0 auto 80px auto;
  transform: translate(800px, 0);
}

.slideNewsUnderRIn {
  transform: translate(0, 0) !important;
}

/* //contents-news */


/**************************************************/


/* contents-eventdetails */
.contents-eventdetails {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  /*background: url("../img/test_cover2.jpg") center center repeat;*/
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #000;
  background-attachment: scroll;
}

.contents-eventdetails:before {
  margin: 0;
  padding: 0;
  /*width: 120%;*/
  /*height: 200vh;*/
  content: '';
  /*background-color: rgba(0, 0, 0, 0.3);*/
  background-size: cover;
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
}

.news-box {
  border-width: 10px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0);
  position: relative;
  display: inline-block;
  transition: all 0.7s ease-in-out;
}

.news-box-h1 {
  line-height: 1.2em;
}

.news-box-cnt {
  opacity: 1 !important;
}

.iframe-map {
  border: 0;
}

.news-box.newsboxshow {
  /*border-color: #037bff;*/
  opacity: 1;
}

.news-box:before,
.news-box:after {
  content: '';
  display: block;
  position: absolute;
  border-color: rgba(255, 255, 255, 0);
  box-sizing: border-box;
  border-style: solid;
  width: 0;
  height: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.7s;
}

.news-box.newsboxshow:before,
.news-box.newsboxshow:after {
  opacity: 1;
  /*border-color: #037bff;*/
}

.news-box:before {
  top: -40px;
  left: -40px;
  border-width: 10px 0 0 10px;
  z-index: 5;
}

.news-box:after {
  bottom: -40px;
  right: -40px;
  border-width: 0 10px 10px 0;
}

.news-box.newsboxshow:before,
.news-box.newsboxshow:after {
  width: calc(40px + 40px);
  height: calc(40px + 40px);
  /*border-color: #037bff;*/
}

.guideline-dd {
  width: 100%;
  background: #037bff;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 0 0 0 0;
  padding: 15px 30px 15px 30px;
  font-size: 16px;
}

.guideline-dt {
  padding: 20px 30px 40px 30px;
  font-size: .9em;
  font-weight: normal;
}

.table-size-chart {
  overflow: auto;
  white-space: nowrap;
}

.scroll-hint-icon {
  padding: 20px 10px 10px 10px;
  display: table;
}

.scroll-hint-text {
  margin: 15px 0 0 0;
  line-height: 1.4em;
}

/* //contents-eventdetails */


/**************************************************/


/* entry-cnt */
.entry-cnt-h1 {
  line-height: 1.2em;
}


/* //entry-cnt */


/**************************************************/


/* sns-cnt */
.container-slick {
  margin: 0 auto;
  padding: 40px;
  width: 80%;
}

.sns-cnt-h1 {
  line-height: 1.2em;
}

.slick-slide {
  text-align: center;
  background: none;
}

.insta-list {
  margin: 0;
  padding: 0;
}

.insta-list-box {
  display: flex;
  justify-content: center;
}

.square-content {
  display: inline-block;
  background: #ccc;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.square-content img {
  width: 100%;
}

/* //sns-cnt */


/**************************************************/


/* contents-course */
.contents-course {
  margin: 0;
  padding: 0;
  width: 100%;
  background: url("../img/test_cover11.png") center center repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #000;
  background-attachment: scroll;
}

.contents-course:before {
  margin: 0;
  padding: 0;
  /*width: 120%;*/
  /*height: 200vh;*/
  content: '';
  content: '';
  /*background-color: rgba(0,0,0,.3);*/
  background-size: cover;
  position: absolute;
  /*top: -5px;*/
  right: -5px;
  /*bottom: -5px;*/
  left: -5px;
}

.course-h1 {
  line-height: 1.2em;
}

.slideCourseConts {
  opacity: 0;
}

.slideCourseContsIn {
  animation-name: fadein;
  animation-duration: 2s;
  animation-iteration-count: 1;
  opacity: 1;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slideCourseL img {
  border: 10px solid #037bff;
}

.slideCourseL {
  margin: 0 auto 80px auto;
  transform: translate(-800px, 0);
}

.slideCourseLIn {
  transform: translate(0, 0) !important;
}

.slideCourseR {
  margin: 0 auto 80px auto;
  transform: translate(800px, 0);
}

.slideCourseRIn {
  transform: translate(0, 0) !important;
}

/* //contents-course */


/**************************************************/


/* contents-result */
.result-h1 {
  line-height: 1.2em;
}

.result-btn {
  position: relative;
  overflow: hidden;
}

.result-btn:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url("../img/test_cover18.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.result-btn:hover:after {
  opacity: .8;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.result-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  height: 100%;
  text-decoration: none;
  color: #fff
}

.result-btn-text {
  position: absolute;
  color: #111;
  left: 30px;
}

.arrow-right {
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #111;
  border-right: 2px solid #111;
  transform: skew(45deg);
}

/* //contents-result */


/**************************************************/


/* contents-sponsor */
.sponsor-h1 {
  line-height: 1.2em;
}

.catch {
  display: flex;
  align-items: center;
  width: 100%;
}

.catch:before,
.catch:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  /* 線の太さを変えたいときはここを変える */
  /*background: #000;*/
  /* 線の色を変えたいときはここを変える */
  margin: 0 10px 0 10px;
  /* 文字と線の余白用 なくても良い */
}

.sponsor-cnt {
  margin: 0;
  padding: 0;
  width: 100%;
  background: url("../img/test_cover13.jpg") center center repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #000;
  background-attachment: scroll;
}

.sponsor-cnt:before {
  margin: 0;
  padding: 0;
  /*width: 120%;*/
  /*height: 200vh;*/
  content: '';
  content: '';
  background-color: rgba(0, 0, 0, 0.0);
  background-size: cover;
  /*background: inherit;
  -webkit-filter: blur(7px);
  -moz-filter: blur(7px);
  -ms-filter: blur(7px);
  -o-filter: blur(7px);
  filter: blur(7px);*/
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
}

.sponsorContsMain {
  opacity: 1 !important;
}

.sponsorContsSub {
  opacity: 1 !important;
}

.slideSponsorMainL {
  margin: 0 auto 80px auto;
  transform: translate(-800px, 0);
}

.slideSponsorMainLIn {
  transform: translate(0, 0) !important;
}

.slideSponsorMainR {
  margin: 0 auto 80px auto;
  transform: translate(800px, 0);
}

.slideSponsorMainRIn {
  transform: translate(0, 0) !important;
}

.slideSponsorSubL {
  margin: 0 auto 80px auto;
  transform: translate(-800px, 0);
}

.slideSponsorSubLIn {
  transform: translate(0, 0) !important;
}

.slideSponsorSubR {
  margin: 0 auto 80px auto;
  transform: translate(800px, 0);
}

.slideSponsorSubRIn {
  transform: translate(0, 0) !important;
}

/* //contents-sponsor */


/**************************************************/


/* contents-access */
.access-h1 {
  line-height: 1.2em;
}

.access-cnt {
  opacity: 1 !important;
}

.slideAccessConts {
  opacity: 0;
}

.slideAccessContsIn {
  animation-name: fadeinaccess;
  animation-duration: 2s;
  animation-iteration-count: 1;
  opacity: 1;
}

@keyframes fadeinaccess {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* //contents-access */


/**************************************************/


/* contents-terms */
.contents-terms {
  margin: 0;
  padding: 0;
  width: 100%;
  /*background: url("../img/test_cover22.jpg") center center repeat;*/
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #000;
  background-attachment: scroll;
}

.contents-terms:before {
  margin: 0;
  padding: 0;
  /*width: 120%;*/
  /*height: 200vh;*/
  content: '';
  /*background-color: rgba(0, 0, 0, .3);*/
  background-size: cover;
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
}

.terms-h1 {
  line-height: 1.2em;
}

.terms-box {
  opacity: 1 !important;
}

.terms-cnt {
  font-size: .9em;
}

/* //contents-terms */


/**************************************************/


/* contents-contact */
.contact-h1 {
  line-height: 1.2em;
}

.contact-box {
  opacity: 1 !important;
}

.contact-cnt {
  font-size: .9em;
}

/* faq balloon */
/* 吹き出し本体 */
.balloon-left {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  color: #333;
  background-color: #fff;
  margin-left: 0;
  margin-bottom: 30px;
  border: 2px solid #333;
  font-size: .9em;
  /* 左に余白を設ける */
}

/* 画像 - 絶対配置で左上に配置 */
.balloon-left .icon {
  position: absolute;
  left: -80px;
  top: 0;
  font-size: 45px;
  color: #fff;
}

/* 三角アイコン */
.balloon-left::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 20px;
  border-right: 15px solid #333;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.balloon-left::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -12px;
  top: 20px;
  border-right: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/* 吹き出し本体 */
.balloon-right {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  color: #ffffff;
  background-color: #037bff;
  margin-right: 0;
  margin-bottom: 70px;
  font-size: .9em;
  /* 右に余白を設ける */
}

/* 画像 - 絶対配置で右上に配置 */
.balloon-right .icon {
  position: absolute;
  right: -80px;
  top: 0;
  font-size: 45px;
  color: #fff;
}

/* 三角アイコン */
.balloon-right::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 20px;
  border-left: 15px solid #037bff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;

}

/* //faq balloon */
/* //contents-contact */


/**************************************************/


/* contents-sns */
.sns-h1 {
  line-height: 1.2em;
}

.facebook-box {
  outline: 10px solid #037bff;
}

.twitter-box {
  outline: 10px solid #037bff;
}

/* //contents-sns */


/**************************************************/


/* footer */
footer {
  margin: -100px 0 100px 0;
  padding: 0;
  letter-spacing: 0.1em;
}

/* //footer */


/******************************************************************************************/


@media screen and (max-width: 768px) {

  /* contents-top */
  .comment-cnt {
    top: 200px;
  }

  .comment-cnt-box {
    filter: drop-shadow(6px 4px 2px #111);
  }

  .comment-cnt-1 {
    font-size: 46px;
    font-weight: bold;
    line-height: 1.3em;
  }

  .comment-cnt-2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2em;
  }

  .count-cnt {
    top: -20px;
  }

  .count {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2em;
  }

  /* //contents-top */


  /**************************************************/


  /* sns-cnt */
  /* 768px以下に適用されるCSS（タブレット用） */
  .square-content {
    display: inline-block;
    background: #ccc;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* //sns-cnt */
}


/******************************************************************************************/


@media screen and (max-width: 480px) {

  .navbar-nav-bottom {
    padding-bottom: 50px;
  }

  /* contents-top */
  .comment-cnt {
    top: 130px;
  }

  .comment-cnt-box {
    filter: drop-shadow(6px 4px 2px #111);
  }

  .comment-cnt-1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3em;
  }

  .comment-cnt-2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2em;
  }

  .count-cnt {
    top: -40px;
  }

  .count {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2em;
  }

  /* //contents-top */


  /**************************************************/


  /* contents-eventdetails */
  .guideline-dd {
    width: 100%;
    background: #037bff;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin: 0 0 0 0;
    padding: 15px 30px 15px 30px;
    font-size: 16px;
  }

  .guideline-dt {
    padding: 20px 15px 40px 15px;
    font-size: .9em;
    font-weight: normal;
  }

  /* //contents-eventdetails */


  /**************************************************/


  /* sns-cnt */
  /* 480px以下に適用されるCSS（スマホ用） */
  .square-content {
    display: inline-block;
    background: #ccc;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* //sns-cnt */


  /**************************************************/


  /* contents-faq */
  /* faq balloon */
  /* 吹き出し本体 */
  .balloon-left {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    color: #333;
    background-color: #fff;
    margin-left: 80px;
    margin-bottom: 30px;
    border: 2px solid #333;
    font-size: .9em;
    /* 左に余白を設ける */
  }

  /* 吹き出し本体 */
  .balloon-right {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    background-color: #037bff;
    margin-right: 80px;
    margin-bottom: 70px;
    font-size: .9em;
    /* 右に余白を設ける */
  }

  /* //faq balloon */
  /* //contents-faq */


  /**************************************************/


  /* contents-sns */
  .fb-container {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    background: #ccc;
  }

  .fb-page {
    display: block !important;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    height: 450px;
  }

  /* //contents-sns */

}