@charset "utf-8";
/* CSS Document */
body {
  background: #ffe100 url(images/bg_2024.png) no-repeat;
  background-size: 100%;
  color: #565656;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  transition: 0.2s linear;
}
ul, ol {
  margin: 1.5em;
}
.sp,.sp_ {
  display: none;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.green {
  color: #5b7e32;
}
.red {
  color: red;
}
.large {
  font-size: 150%;
}
.mt30 {
  margin-top: 30px;
}
.p30 {
  padding: 30px;
}
.box_pink {
  padding: 30px;
  background: #fcebed;
  border-radius: 8px;
}
.box_orange {
  margin-top: -50px;
  padding: 30px;
  background: #faf4d3;
  border-radius: 8px;
}
.btn a {
  display: inline-block;
  padding: 1em 2.5em;
  background: red;
  border-radius: 1.5em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.2s linear;
}
.btn a:hover {
  background: #f5d85f;
}
.btn_b a {
  display: inline-block;
  margin-top: 15px;
  padding: 1em 2.5em;
  background: #00afcc;
  border-radius: 1.5em;
  color: #f4eee0;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.5;
  transition: 0.2s linear;
}
.btn_b a:hover {
  background: #59493f;
}
.flex, .flex_ {
  display: flex;
}
.flexsb {
  justify-content: space-between;
}
.col-2 {
  width: 49%;
}
.col-3_1 {
  width: 33%;
}
.col-3_2 {
  width: 65%;
}
@media screen and (max-width:1180px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media screen and (max-width:768px) {
  .tb {
    display: none;
  }
  .sp_ {
    display: block;
  }
  .flex_ {
    display: block;
  }
  .flex_ .col-2, .flex_ .col-3_1, .flex_ .col-3_2 {
    width: 100%;
  }
  .large {
    margin: 0 !important;
    font-size: 120%;
  }
  .p30 {
    padding: 0;
  }
  .box_pink, .box_orange {
    padding: 15px;
  }
  .box_orange img {
    position: relative;
    z-index: 0;
  }
}
/*  エフェクト
  -------------------------------------------*/
.effect {
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(20px);
  transition: 1.0s ease-out;
}
.effect.d_02 {
  transition-delay: 0.2s;
}
.effect.d_04 {
  transition-delay: 0.4s;
}
.effect.d_06 {
  transition-delay: 0.6s;
}
.effect.d_08 {
  transition-delay: 0.8s;
}
.effect.start {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0px);
}
/*  トップへ戻るボタン
  -------------------------------------------*/
.to_top {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 800;
}
.to_top a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #00afcc;
  text-align: center;
}
.to_top a:hover {
  background-color: #6ab940;
}
/* Header
---------------------------------- */
#header {
  display: flex;
  justify-content: center;
  align-items: end;
}
header h1 {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}
/* Global-nav
---------------------------------- */
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}
/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 50;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #b5dfdf;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all .6s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
  background: url(images/bg_gnav.png) no-repeat 50% 100%;
  background-size: 100%;
  animation-name: gnavilistAnime;
  animation-duration: 1s;
  animation-delay: .2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnavilistAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
}
/* Sub-nav
---------------------------------- */
#sub_nav {
  padding: 30px;
  background: #e4007f;
}
#sub_nav ul {
  display: flex;
  justify-content: center;
  margin: 0;
}
#sub_nav ul li {
  list-style-type: none;
  margin-left: 0;
  margin-right: 15px;
}
#sub_nav ul li a {
  position: relative;
  display: block;
  padding: 1em 1em 1em 1.25em;
  background: #fff;
  border-radius: 7px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
}
#sub_nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  /*線になる丸の形状*/
  width: 100%;
  height: 0;
  background: #898989;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center bottom;
}
@media screen and (max-width:768px) {
  #sub_nav {
    padding: 15px 0 15px 15px;
  }
  #sub_nav ul {}
  #sub_nav ul li a {
    padding: 0.5em;
  }
}
/* Footer
---------------------------------- */
footer {
  background: #59493f;
  color: #f4eee0;
  text-align: center;
}
/* 見出し・段落
---------------------------------- */
h2 {
  text-align: center;
}
section p {
  margin: 0.5em 0;
  line-height: 1.7;
  letter-spacing: 1px;
}
/* 賞品
---------------------------------- */
#shohin {
  margin: 0 auto;
  padding: 30px 0 50px;
  background: linear-gradient(70deg, #e28053aa, #ffeda9aa);
  text-align: center;
}
#shohin h2 {
  position: relative;
  z-index: 50;
}
.shohin_group {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: -50px auto 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 5px 5px 5px #999;
}
.shohin_group::before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 229px;
  background: url(images/bg_shohin_before.png) no-repeat;
  background-size: 100%;
}
.shohin_group::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 229px;
  background: url(images/bg_shohin_after.png) no-repeat 50% 100%;
  background-size: 100%;
}
.shohin_group .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
justify-content: center;
  padding: 30px 60px 30px 30px;
  z-index: 10;
}
.shohin_group .inner .first {
  width: 40%;
}
.shohin_group .inner .col {
  width: 60%;
}
.shohin_group .inner p.second {
  text-align: left;
}
.shohin_group .inner p.third {
  width: 55%;
  margin-right: 15px;
}
.shohin_group .inner p.tokubetsu {
  width: 45%;
}
@media screen and (max-width:820px) {
  .shohin_group {
    width: 95%;
  }
  .shohin_group::before, .shohin_group::after {
    height: 19vw;
  }
  .shohin_group .inner {
    padding: 50px 30px 30px;
  }
  .shohin_group .inner .first {
    width: 37%;
  }
  .shohin_group .inner .col {
    width: 60%;
    margin-left: 3%;
  }
  .shohin_group .inner p.second {
    width: 85%;
  }
  .shohin_group .inner .col .flex_ {
    margin-left: -3%;
  }
}
@media screen and (max-width:768px) {
  .shohin_group .inner {
    display: block;
    padding: 50px 15px 15px;
  }
  .shohin_group .inner .first {
    width: 100%;
  }
  .shohin_group .inner .col {
    width: 100%;
    margin-left: 0;
  }
  .shohin_group .inner p.second {
    width: 100%;
  }
  .shohin_group .inner .col .flex_ {
    margin-left: 0;
  }
  .shohin_group .inner p.third {
    width: 85%;
    margin-right: 0;
  }
  .shohin_group .inner p.tokubetsu {
    width: 80%;
  }
}
/* 当選発表
---------------------------------- */
#tosen {
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  background: linear-gradient(70deg, #cd0008, #7e0000);
}
#tosen .inner {
  position: relative;
  padding: 30px 0;
  border-top: 3px solid #c9a900;
  border-bottom: 3px solid #c9a900;
}
#tosen .shitei {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
#tosen .shitei h2 {
  position: relative;
  display: inline-block;
  padding: 0.5em 2.5em;
  background: linear-gradient(70deg, #c9a900, #cc9900);
  border-radius: 1.5em;
  color: #fff;
  font-size: 20px;
  letter-spacing: 1.5px;
  z-index: 10;
}
#tosen .shitei .inner {
  position: relative;
  margin-top: -1.5em;
  padding: 35px 20px 20px;
  background: #fff;
  border-radius: 12px;
  border: 5px solid #c9a900;
  font-size: 15px;
  text-align: left;
  letter-spacing: 1.5px;
}
@media screen and (max-width:810px) {
  #tosen .shitei .inner {
    margin: -30px auto 0;
    width: 95%;
  }
}
/* 応募方法
---------------------------------- */
#oubo {
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
  background: #fff;
  text-align: center;
}
#oubo .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#oubo h2 {
  padding: 10px;
  background: #f6ab00;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.5em;
}
.oubo_group {
  padding: 30px;
  background: #fff;
  border: 3px solid #f6ab00;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width:1080px) {
  #oubo .inner {
    width: 95%;
    margin: 0 auto;
  }
  .oubo_group {
    padding: 15px;
  }
  .oubo_group h3 {
    position: relative;
    z-index: 5;
  }
}
/* お問い合わせ
---------------------------------- */
#contact {
  margin: 0 auto;
  background: #fff url(images/bg_footer.png) no-repeat 50% 100%;
  background-size: 100%;
  padding: 50px 0 15%;
  text-align: center;
}
#contact .address {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 50px;
  background: #f0f0f0;
  border-radius: 8px;
  text-align: left;
}
#contact #form {
  padding-top: 30px;
}
#contactform {
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 50px;
  text-align: left;
}
#contactform .col {
  width: 49%;
}
#contactform .btn_contact {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
#contactform table {
  border-collapse: separate;
  border-spacing: 0 15px;
}
#contactform th {
  width: 9em;
  padding: 0.5em 1em;
  background: #00afcc;
  border-radius: 5px;
  color: #fff;
}
#contactform td {
  width: calc(100% - 9em);
  padding: 0 1em;
}
#contactform input[type="text"], #contactform textarea {
  width: 100%;
  padding: 0.5em;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
}
#contactform .hissu {
  color: #ffe57a;
}
.policy {
  padding: 15px;
  background: #fafafa;
  border: 1px solid #eee;
  font-size: 13px;
}
.btn_contact {
  align-items: center;
  margin-top: 30px;
  background: #f4eee0;
  border-radius: 5px;
}
.btn_contact > p {
  width: 50%;
  margin: 0;
  padding: 0;
}
.btn_contact > p:nth-of-type(2) input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em 0;
  background: #00afcc;
  border-radius: 5px;
  color: #f4eee0;
  font-size: 18px;
}
@media screen and (max-width:1080px) {
  #contact .address {
    padding: 25px;
  }
  #contactform {
    padding: 0;
  }
}
@media screen and (max-width:810px) {
  #contactform .col {
    width: 100%;
  }
  #contactform th, #contactform td {
    display: block;
    width: 100%;
  }
  #contactform td {
    padding: 0;
  }
  .btn_contact > p {
    width: 100%;
  }
  .btn_contact > p:nth-of-type(1) {
    padding: 15px;
    font-size: 14px;
  }
}
@media screen and (max-width:768px) {
  #contact .address > div {
    width: 100%;
  }
}