@charset "UTF-8";
/* SCSS Document */
/*------------------------------------------------------------

common

------------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
body {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  counter-reset: item;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

.loaded {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.left {
  width: 30%;
}

.right {
  width: 70%;
}

.wht {
  color: #fff;
}

.bold {
  font-weight: bold;
}

.navy {
  color: #191970;
}

@media screen and (max-width: 480px) {
  .pc-br {
    display: none;
  }
}

.bg-wht {
  background: rgba(255, 255, 255, 0.5);
}

.bg-haniwa {
  background: url(../img/haniwa-bg.png);
  background-attachment: fixed;
  background-size: cover;
}

#page_top {
  position: fixed;
  background: #db7093;
  opacity: 0.6;
  right: 10px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 99;
}
#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
#page_top a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

/********************
loading effects
********************/
.loadingAnim {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.loadingAnim::before {
  line-height: 1;
  position: fixed;
  z-index: 99998;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  content: " ";
  transition: all 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0.1s;
  background: linear-gradient(-45deg, #ffffff 0%, #87cefa 100%);
  background: -webkit-linear-gradient(-45deg, #ffffff 0%, #87cefa 100%);
  top: 0;
}
.loadingAnim::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  content: "";
  background: url(../img/load.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 297px;
  z-index: 99998;
}
@media screen and (max-width: 480px) {
  .loadingAnim::after {
    width: 100px;
    height: 149px;
  }
}

.loaded .loadingAnim::before {
  opacity: 0;
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 250px;
  height: 1.25em;
  margin: auto;
  transition: all 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0s;
  text-align: center;
}
.loadingAnim_line::after {
  position: absolute;
  z-index: 99999;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto auto auto 0;
  content: " ";
  animation: loadingAnim 1s ease-in-out 0.1s infinite normal backwards;
  opacity: 0.5;
  background: #fff;
  will-change: transform, width;
}
.loadingAnim_line::before {
  /* font-family: 'Poppins', sans-serif;*/
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: "LOADING...";
  animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
  letter-spacing: 0.1em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}
.loaded .loadingAnim_line::after {
  animation: none;
}
.loaded .loadingAnim_line::before {
  animation: none;
  content: "";
}

/********************
animation setting
********************/
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    transform: translate(100%);
  }
}
@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #cba166;
  }
  50% {
    color: #333;
  }
  100% {
    opacity: 0.5;
    color: #fff;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
svg {
  display: block;
  vertical-align: bottom;
}

.top-image {
  position: relative;
  height: 100vh;
  background: #f4fff4;
}
@media screen and (max-width: 1024px) {
  .top-image {
    height: 50vh;
  }
}
@media screen and (max-width: 480px) {
  .top-image {
    height: 60vh;
  }
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 98;
}

.logo-image {
  width: 600px;
}
@media screen and (max-width: 480px) {
  .logo-image {
    width: 200px;
  }
}
.logo-image img {
  width: 100%;
}

.nav {
  position: fixed;
  width: 100%;
  /*display: flex;
  justify-content: flex-end;*/
  padding: 10px;
  border-top: solid 3px #990033;
  box-sizing: border-box;
  z-index: 99;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .nav {
    display: none;
  }
}

.gnav {
  width: 100%;
  /* max-width: 1280px; */
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.gnav li {
  padding: 0 10px;
  box-sizing: border-box;
}
.gnav li a {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  background-image: linear-gradient(to right, #990033 0%, #ff3333 51%, #ff3333 100%);
  background-size: 200% auto;
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border: solid 2px #fa8072;
  transition: 0.3s;
}
.gnav li a:hover {
  color: #ffe4e1;
  background-position: right center;
  transition: 0.3s;
}
.gnav li a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #990033;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.period {
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 98;
}
@media screen and (max-width: 480px) {
  .period {
    bottom: 0;
    right: 0;
    padding: 10px;
  }
}
.period p {
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .period p {
    font-size: 0.9em;
  }
}

.top-info {
  font-size: 1.2em !important;
}
@media screen and (max-width: 480px) {
  .top-info {
    font-size: 0.8em !important;
  }
}

.bgColor {
  background: url(../img/asa.png), rgba(255, 255, 255, 0.9);
  /*background: linear-gradient( 135deg, rgba(255,255,255,.7), rgba(245,245,245,.7)),
   url(../img/asa2.png);*/
  transition: 0.3s;
  box-shadow: 0 1px 2px #ccc;
}

.bgColor ul.gnav li a {
  padding: 0 5px;
  background: none;
  color: #000;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  transition: 0.3s;
  border: none;
  box-shadow: none;
}
.bgColor ul.gnav li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

#poster-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/slide_00.jpg);
  background-size: cover;
  background-position: center;
  z-index: 90;
}
@media screen and (max-width: 480px) {
  #poster-image {
    height: 40vh;
  }
}
#poster-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/vegas_bg05.png);
}

.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .home-hero {
    height: 40vh;
  }
}
.home-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/vegas_bg05.png);
}

.top-logo {
  padding: 10px !important;
  margin-right: auto;
  width: 100%;
  max-width: 300px;
  opacity: 0;
}
.top-logo a {
  border: none !important;
  box-shadow: none !important;
}
.top-logo a::after {
  content: none !important;
}
.top-logo img {
  width: 100%;
}

.top-logo.logoShow {
  opacity: 1 !important;
}

#contents {
  width: 100%;
  background: url(../img/washi3.jpg);
}

/*------------------------------------------------------------

tab

------------------------------------------------------------*/
.tab-content {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.is-animating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
}

.content-pane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%) translateY(0%);
}

.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0%);
}

.is-exiting {
  opacity: 0;
  transform: translateX(0%);
}

.is-animating {
  transition: opacity 300ms ease-out, transform 400ms ease-out;
}

.tab-list {
  padding-top: 100px;
  /*background: #fff;*/
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .tab-list {
    width: 100%;
  }
}

.nav-tabs {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .nav-tabs {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .nav-tabs::after {
    content: "";
    display: block;
    width: 50%;
    height: 0;
  }
}

.nav-tabs li {
  font-size: 1.2em;
  margin: 0 10px;
  /*@include tab {
  	width: 33.3%;
  	box-sizing: border-box;
  	border: solid 1px #f5f5f5;
  }*/
}
@media screen and (max-width: 1024px) {
  .nav-tabs li {
    width: 25%;
    margin: 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 480px) {
  .nav-tabs li {
    width: 50%;
    margin: 0;
    box-sizing: border-box;
    border: solid 1px #f5f5f5;
  }
}

.nav-tabs li a {
  position: relative;
  font-size: 1em;
  line-height: 1.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-weight: bold;
  color: #fff;
  /*border: solid 1px #fff;*/
  background-image: linear-gradient(to bottom, #990033 0%, #ff3333 100%);
  height: 100%;
  min-width: 220px;
  box-sizing: border-box;
  box-shadow: 0px -5px 5px -4px #660000 inset;
  /*border-bottom: solid 3px #fff;*/
}
@media screen and (max-width: 1024px) {
  .nav-tabs li a {
    min-width: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 480px) {
  .nav-tabs li a {
    font-size: 0.9em;
    box-shadow: none !important;
  }
}

.nav-tabs li.active a {
  background: rgba(255, 255, 255, 0.5) !important;
  color: #b8860b !important;
  transition: 0.2s;
  box-shadow: 3px 0 0 #dcdcdc !important;
  /*border-bottom: solid 3px #ccc;*/
}
@media screen and (max-width: 480px) {
  .nav-tabs li.active a {
    background: #f5f5f5 !important;
    box-shadow: none !important;
  }
}

.active a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  margin-right: 0.2em;
  color: #b8860b;
}

/*------------------------------------------------------------

contents

------------------------------------------------------------*/
.shadow-inset {
  position: relative;
}
.shadow-inset::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: 5px 2px 10px 3px #000 inset;
  z-index: 3;
}

.poster-bg {
  background: url(../img/poster-bg2.jpg);
  background-size: contain;
}

.haniwa-bg {
  background: url(../img/haniwa-bg.jpg);
  background-size: 120%;
  background-position: top center;
}

.douga-bg {
  background: url(../img/douga-bg.jpg);
  /*background-attachment: fixed;*/
  background-size: 120%;
  background-position: top center;
}

.ttl-bg {
  position: relative;
  padding: 150px 0;
  /*background-attachment: fixed;*/
}
@media screen and (max-width: 480px) {
  .ttl-bg {
    padding: 50px 0;
    background-attachment: scroll;
  }
}
.ttl-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/vegas_bg05.png);
  z-index: 1;
}

h2.topttl {
  position: relative;
  font-size: 2.2em;
  padding: 30px 0;
  margin-bottom: 50px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}
@media screen and (max-width: 480px) {
  h2.topttl {
    font-size: 1.3em;
  }
}
h2.topttl::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #990033;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0%;
  margin: 0 auto;
}

h2.subttl {
  position: relative;
  font-size: 2.2em;
  line-height: 1.5em;
  padding-bottom: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
  z-index: 5;
  text-shadow: 1px 1px 5px #000;
}
@media screen and (max-width: 480px) {
  h2.subttl {
    font-size: 1.3em;
  }
}
h2.subttl::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #ff4500;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0%;
  margin: 0 auto;
  z-index: 4;
}

.h2sub {
  color: #f5f5f5;
  display: block;
  font-size: 0.8em;
}

.haniwa-txt h2 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 30px 0 20px;
  padding: 5px 10px;
  border-bottom: dotted 1px #ccc;
  border-left: solid 3px #990033;
}
@media screen and (max-width: 480px) {
  .haniwa-txt h2 {
    font-size: 1.2em;
  }
}
.haniwa-txt h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.7em;
}
@media screen and (max-width: 480px) {
  .haniwa-txt h3 {
    font-size: 1em;
  }
}
.haniwa-txt p {
  font-size: 1.2em;
  line-height: 1.7em;
}
@media screen and (max-width: 480px) {
  .haniwa-txt p {
    font-size: 1em;
  }
}
.haniwa-txt dl {
  line-height: 1.6em;
}
.haniwa-txt dt {
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .haniwa-txt dt {
    font-size: 1em;
  }
}
.haniwa-txt dd {
  font-size: 1.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .haniwa-txt dd {
    font-size: 1em;
  }
}

.link-button {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  text-align: center;
  box-sizing: border-box;
}
.link-button a {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
  padding: 10px 40px;
  border-radius: 0;
  background: #ff8c00;
  transition: 0.3s;
}
.link-button a:hover {
  background: #ffd700;
}
@media screen and (max-width: 480px) {
  .link-button {
    margin-top: 100px;
    position: relative;
  }
}

.info-area {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 0;
  min-height: 200px;
}
@media screen and (max-width: 480px) {
  .info-area {
    padding: 50px 0;
  }
}

.top-text-box {
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 480px) {
  .top-text-box {
    padding: 20px;
  }
}
.top-text-box p {
  line-height: 1.6em;
}

.text-box {
  padding: 20px;
}
.text-box p {
  line-height: 1.6em;
}

.bg-video {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
}

.committee {
  text-align: right;
  margin-top: 50px;
}

/*------------------------------------------------------------

poster

------------------------------------------------------------*/
.poster-area {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .poster-area {
    padding: 50px 10px;
    box-sizing: border-box;
  }
}

.poster-flex {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.poster-flex::after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}

.poster-box {
  width: 30%;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .poster-box {
    width: 49%;
  }
}
.poster-box img {
  width: 100%;
}

.pos-image {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.pos-image::before {
  content: "";
  display: block;
  padding-top: 140%;
}
.pos-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.pos-image img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.pos-txt {
  margin-top: 20px;
  text-align: center;
}
.pos-txt p {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.8em;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, 5px 4px 1px #ccc;
}
@media screen and (max-width: 480px) {
  .pos-txt p {
    font-size: 1.2em;
  }
}

/*------------------------------------------------

はにわ祭動画
------------------------------------------------*/
/*背景VIDEO */
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*ｔyoutube*/
.youtube {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .youtube {
    padding: 50px 10px;
    box-sizing: border-box;
  }
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  border-radius: 10px;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------------

footer

------------------------------------------------------------*/
footer {
  background: url(../img/asa2.png), linear-gradient(135deg, rgb(153, 0, 51), rgb(255, 51, 51));
  padding: 100px 0 20px 0;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 20px 0;
  }
}
footer br {
  display: none;
}
@media screen and (max-width: 480px) {
  footer br {
    display: block;
  }
}

.policy-footer-txt {
  line-height: 1.6em;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .policy-footer-txt {
    display: none;
  }
}
.policy-footer-txt a {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 1.5em;
}
@media screen and (max-width: 480px) {
  .copyright {
    padding: 50px 0 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .copyright span {
    display: block;
  }
}

/*------------------------------------------------------------

プレゼント概要

------------------------------------------------------------*/
.gift-area {
  font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .gift-area {
    padding: 50px 10px;
  }
}
@media screen and (max-width: 480px) {
  .gift-area {
    padding: 0 10px 20px 10px;
  }
}

.gift-txt {
  width: 100%;
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.gift-txt h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}
.gift-txt p {
  line-height: 1.6em;
}
.gift-txt ol {
  list-style-type: decimal;
  padding: 10px 20px;
}
.gift-txt ul {
  list-style-type: disc;
  padding: 10px 20px;
}
.gift-txt li {
  line-height: 1.8em;
}
.gift-txt li::marker {
  font-weight: bold;
}

.gift-period {
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px;
  color: #191970;
}
.gift-period span {
  font-size: 0.9em;
  font-weight: normal;
}

.gift-image-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gift-image-box {
  display: flex;
  flex-direction: column;
  width: 32%;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #f9f9f9;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
@media screen and (max-width: 480px) {
  .gift-image-box {
    width: 100%;
    min-height: auto;
    margin-bottom: 20px;
  }
}
.gift-image-box h3 {
  position: relative;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  padding: 1.2rem 0;
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .gift-image-box h3 {
    font-size: 1.2em;
    min-height: auto;
  }
}
.gift-image-box h3 span {
  display: block;
  line-height: 1.5em;
  font-size: 0.8em;
}
.gift-image-box h3:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #d8d8d8 transparent transparent transparent;
}
.gift-image-box h3:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.gift-image-box img {
  width: 100%;
}

.set-a {
  background: #e5edd5;
}

.set-b {
  background: #faf0e6;
}

.set-c {
  background: #f0fff0;
}

.gift-image-txt {
  margin-top: 10px;
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  min-height: 170px;
  box-sizing: border-box;
}
.gift-image-txt p {
  line-height: 1.6em;
}

.gift-image {
  min-height: 0%;
}

.oubo-btn {
  margin-top: 20px;
}

.c_btn {
  width: 100%;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 15px 25px;
  text-decoration: none;
  color: #FFF;
  background: #fd9535; /*色*/
  border-radius: 4px; /*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: bold;
  font-size: 1.2em;
  border: solid 2px #d27d00; /*線色*/
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .c_btn {
    padding: 10px 20px;
    font-size: 1.2em;
  }
}

.c_btn:active { /*押したとき*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/*------------------------------------------------------------

応募フォーム

------------------------------------------------------------*/
.input-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}

th.re_item {
  width: 300px;
}

.contact {
  width: 100%;
  background: rgba(255, 255, 255, 0.5) !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  box-sizing: border-box;
}
.contact tr {
  display: flex;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .contact tr {
    flex-wrap: wrap;
  }
}
.contact tr:nth-of-type(odd) {
  background: rgba(246, 247, 249, 0.5) !important;
}
.contact th {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .contact th {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .contact th.re_item {
    width: 100%;
  }
}
.contact td {
  padding: 10px;
}
.contact input {
  margin: 5px 0;
}

@media screen and (max-width: 480px) {
  .mfp_element_textarea {
    width: 100% !important;
    box-sizing: border-box;
  }
}

.note {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  line-height: 1.8em;
}

.policy {
  padding: 10px 0;
  font-weight: bold;
}

.thanks {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
}
.thanks h3 {
  font-size: 1.8em;
  padding: 5px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .thanks h3 {
    font-size: 1.3em;
  }
}

.thanks-txt {
  padding: 10px;
  line-height: 1.8em;
}
@media screen and (max-width: 480px) {
  .thanks-txt {
    box-sizing: border-box;
  }
}

.contact-tel {
  padding: 50px 0;
  text-align: center;
  line-height: 1.8em;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .contact-tel {
    margin-bottom: 50px;
  }
}
.contact-tel p {
  font-size: 1.2em;
}
@media screen and (max-width: 480px) {
  .contact-tel p {
    font-size: 1em;
  }
}

.tel-number {
  font-size: 2em !important;
  font-weight: bold;
  color: #4682b4;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .tel-number {
    font-size: 1.5em !important;
  }
}

/*------------------------------------------------------------

スマホナビ

------------------------------------------------------------*/
.sp-logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-logo {
    display: block;
    padding: 20px;
  }
}

nav.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    /*background: #fff;*/
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
  }
  nav.globalMenuSp ul {
    background: url(../img/asa2.png), linear-gradient(135deg, rgb(153, 0, 51), rgb(255, 51, 51));
    /*background: -webkit-linear-gradient(-45deg, #fa709a 0%, #fbb0c9 100%);*/
    margin: 0 auto;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #fff;*/
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    /*text-shadow: 1px 1px 0 #ccc;*/
    font-weight: bold;
    padding: 1em 0;
    font-size: 1.1em;
    border-bottom: dotted 1px #ccc;
  }
  nav.globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  nav.globalMenuSp.nav_active {
    transform: translateY(0%);
  }
}

@media screen and (max-width: 1024px) {
  p.psp {
    padding: 1em 0;
  }
}

.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px #fff;
    box-shadow: 1px 1px 1px #aaaaaa;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    text-shadow: 1px 1px 1px #aaaaaa;
    box-shadow: none;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
}

.sub-image {
  position: relative;
  height: 50vh;
}
@media screen and (max-width: 480px) {
  .sub-image {
    height: 25vh;
  }
}

.sub-bg1 {
  background: url(../img/sub-bg1.jpg);
  background-size: cover;
  background-position: center;
}
.sub-bg1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/vegas_bg05.png);
}

.sub-logo-image {
  width: 400px;
}
@media screen and (max-width: 480px) {
  .sub-logo-image {
    width: 150px;
  }
}
.sub-logo-image img {
  width: 100%;
}

.form-area {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .form-area {
    padding: 50px 0;
  }
}

@media screen and (max-width: 480px) {
  .policy-area {
    padding: 10px;
    box-sizing: border-box;
  }
}
.policy-area h3 {
  font-weight: bold;
  margin: 10px 0;
}
.policy-area p {
  line-height: 1.6em;
}/*# sourceMappingURL=style.css.map */