@charset "UTF-8";
/* CSS Document */
.pc {
  display: none; }
  @media screen and (min-width: 768px) {
    .pc {
      display: block; } }

.sp {
  display: block; }
  @media screen and (min-width: 768px) {
    .sp {
      display: none; } }

.caution {
  color: #ff0000;
  text-align: center; }

html, body, header, footer, h1, h2, h3, h4, h5, h6, ul, li, dl, dt, dd, p, div, a, table, tr, td, th {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  font-feature-settings: "palt"; }

ul {
  list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease; }
  a:hover {
    opacity: 0.5; }
  a.anker {
    display: block;
    padding-top: 200px;
    margin-top: -200px; }

img {
  max-width: 100%; }

main {
  margin-top: 80px;
  overflow: hidden; }
  @media screen and (min-width: 768px) {
    main {
      margin-top: 180px; } }

header {
  /*チェックボックス等は非表示に*/
  /*アイコンのスペース*/
  /*ハンバーガーアイコンをCSSだけで表現*/
  /*閉じる用の薄黒カバー*/
  /*中身*/
  /*チェックが入ったらもろもろ表示*/ }
  header #nav-drawer {
    padding: 0px;
    width: 100%;
    background: #fff;
    z-index: 150;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    height: 80px;
    flex-wrap: wrap; }
    @media screen and (min-width: 768px) {
      header #nav-drawer {
        height: auto; } }
  header h1 {
    line-height: 0.5;
    display: inline-block;
    padding: 1vw;
    position: relative;
    z-index: 130;
    max-width: 50%;
    min-height: 80px;
    display: flex;
    align-items: center; }
    header h1 img {
      max-height: 70px;
      max-width: 100%; }
      @media screen and (min-width: 768px) {
        header h1 img {
          max-height: 120px; } }
    @media screen and (min-width: 768px) {
      header h1 {
        padding: 0;
        min-height: 120px;
        max-width: 30vw;
        z-index: 200; } }
  header .nav-unshown {
    display: none; }
  header #nav-open {
    position: fixed;
    top: 0;
    right: 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 20px;
    margin-top: 25px;
    background: rgba(255, 255, 255, 0);
    padding: 4px;
    z-index: 1640;
    cursor: pointer; }
    @media screen and (min-width: 768px) {
      header #nav-open {
        display: none; } }
    header #nav-open span {
      margin-top: 12px; }
    header #nav-open span, header #nav-open span:before, header #nav-open span:after {
      position: absolute;
      z-index: 1660;
      height: 4px;
      /*線の太さ*/
      width: 42px;
      /*長さ*/
      border-radius: 15px;
      background: #47CCBF;
      display: block;
      content: '';
      z-index: 200;
      transition: all 0.25s ease-in-out; }
    header #nav-open.scr span, header #nav-open.scr span:before, header #nav-open.scr span:after {
      position: absolute;
      width: 42px;
      /*長さ*/
      border-radius: 15px;
      background: #fff;
      display: block;
      content: '';
      z-index: 200; }
    header #nav-open span:before {
      bottom: 17px;
      right: 0;
      height: 4px;
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
    header #nav-open span:after {
      bottom: -17px;
      right: 0;
      height: 4px;
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
  header .close-text {
    display: none;
    position: relative;
    z-index: 151; }
  header .h1-pc {
    display: block;
    margin-left: 30px; }
    @media screen and (min-width: 768px) {
      header .h1-pc {
        margin-left: 0; } }
  header .h1-sp {
    display: none;
    margin-left: 30px; }
  header .nav-active .h1-pc {
    display: none; }
    @media screen and (min-width: 768px) {
      header .nav-active .h1-pc {
        display: block; } }
  header .nav-active .h1-sp {
    display: block; }
    @media screen and (min-width: 768px) {
      header .nav-active .h1-sp {
        display: none; } }
  header .nav-active #nav-open span {
    background: transparent; }
  header .nav-active #nav-open span:before, header .nav-active #nav-open span:after {
    bottom: 0;
    height: 4px; }
  header .nav-active #nav-open span:before {
    background: #fff;
    width: 42px;
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg); }
    @media screen and (min-width: 768px) {
      header .nav-active #nav-open span:before {
        background: #fff; } }
  header .nav-active #nav-open span:after {
    background: #fff;
    width: 42px;
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg); }
    @media screen and (min-width: 768px) {
      header .nav-active #nav-open span:after {
        background: #fff; } }
  header .nav-active .close-text {
    display: none;
    color: #323333;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 4px;
    margin-right: 20px;
    margin-top: -15px; }
    @media screen and (min-width: 768px) {
      header .nav-active .close-text {
        color: #fff; } }
  header #nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out; }
  header #nav-content {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 160;
    /*最前面に*/
    width: 100%;
    height: 100%;
    background: #47CCBF;
    transition: .2s ease-in-out;
    /*滑らかに表示*/
    transform: translate(0, -101%);
    /*左に隠しておく*/ }
    @media screen and (min-width: 768px) {
      header #nav-content {
        transform: translate(0, 0);
        position: relative;
        margin-top: -100px;
        background: #fff;
        overflow: visible; } }
    header #nav-content .splogo {
      margin-top: 30px;
      text-align: center; }
  header #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 0; }
  header #nav-input:checked ~ #nav-content {
    transform: translate(0, 0%); }
    @media screen and (min-width: 768px) {
      header #nav-input:checked ~ #nav-content {
        transform: translate(0, 0%);
        position: relative; } }
  header .menu {
    display: flex;
    justify-content: space-around;
    height: calc(100% - 80px);
    align-items: flex-start;
    margin-top: 30px;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 30px; }
    @media screen and (min-width: 768px) {
      header .menu {
        margin-top: 0;
        justify-content: flex-end;
        align-items: flex-end;
        height: auto;
        flex-direction: column-reverse;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #47CCBF; } }
    header .menu-content-sp {
      display: block; }
      @media screen and (min-width: 768px) {
        header .menu-content-sp {
          display: none; } }
      header .menu-content-sp-ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; }
        header .menu-content-sp-ul-li {
          width: calc((90vw - 60px) / 3);
          height: calc((90vw - 60px) / 3);
          margin-top: 1vw;
          position: relative; }
          header .menu-content-sp-ul-li-a {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 5px solid #fff;
            color: #fff; }
          header .menu-content-sp-ul-li .eat {
            background: #FF736A url("/images/header-bg-eat.svg") no-repeat center center; }
          header .menu-content-sp-ul-li .exp {
            background: #A174B2 url("/images/header-bg-exp.svg") no-repeat center center; }
          header .menu-content-sp-ul-li .play {
            background: #73C677 url("/images/header-bg-play.svg") no-repeat center center; }
          header .menu-content-sp-ul-li .buy {
            background: #29A6D8 url("/images/header-bg-buy.svg") no-repeat center center; }
          header .menu-content-sp-ul-li .beau {
            background: #E8C60D url("/images/header-bg-beau.svg") no-repeat center center; }
          header .menu-content-sp-ul-li .etc {
            background: #ccc; }
    header .menu-content {
      height: 33vh;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      order: 2; }
      @media screen and (min-width: 768px) {
        header .menu-content {
          height: 60px;
          position: relative;
          width: 100%;
          flex-direction: column-reverse;
          order: unset; } }
      header .menu-content-ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 100%;
        width: 100%; }
        @media screen and (min-width: 768px) {
          header .menu-content-ul {
            flex-direction: row;
            height: auto;
            position: absolute;
            bottom: 0;
            left: 0;
            height: 60px; } }
        header .menu-content-ul-li, header .menu-content-ullis {
          width: 100%;
          height: auto; }
          @media screen and (min-width: 768px) {
            header .menu-content-ul-li, header .menu-content-ullis {
              height: 60px;
              /*width:calc(100% / 7);*/
              width: calc(100% / 3);
              border: 1px solid #47CCBF; } }
          header .menu-content-ul-li-div, header .menu-content-ullis-div {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; }
            header .menu-content-ul-li-div-a, header .menu-content-ullis-div-a {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 100%;
              color: #fff;
              flex-direction: column;
              letter-spacing: 0.5vw;
              padding: 30px 0;
              border-top: 1px solid #fff;
              border-bottom: 1px solid #fff;
              margin-top: -1px; }
              @media screen and (min-width: 768px) {
                header .menu-content-ul-li-div-a, header .menu-content-ullis-div-a {
                  align-items: center;
                  justify-content: center;
                  height: 59px;
                  color: #4d4d4d;
                  /*font-size:1vw;*/
                  font-size: 16px;
                  letter-spacing: 0.1vw;
                  background: #fff;
                  padding: 0; }
                  header .menu-content-ul-li-div-a:hover, header .menu-content-ullis-div-a:hover {
                    color: #fff;
                    background: #47CCBF;
                    opacity: 1; } }
              header .menu-content-ul-li-div-a-span, header .menu-content-ullis-div-a-span {
                text-align: center;
                width: 100%;
                font-size: 4vw; }
            header .menu-content-ul-li-div .search, header .menu-content-ullis-div .search {
              height: 59px;
              position: relative; }
              header .menu-content-ul-li-div .search-area, header .menu-content-ullis-div .search-area {
                z-index: 15;
                display: none;
                width: 100%; }
              header .menu-content-ul-li-div .search-list, header .menu-content-ullis-div .search-list {
                width: 100%;
                position: absolute;
                top: 100%;
                z-index: 15;
                display: flex;
                flex-direction: column; }
                header .menu-content-ul-li-div .search-list-li, header .menu-content-ullis-div .search-list-li {
                  height: 30px;
                  width: 100%;
                  border: 1px solid #47CCBF; }
                  header .menu-content-ul-li-div .search-list-li-a, header .menu-content-ullis-div .search-list-li-a {
                    display: flex;
                    align-items: flex-start;
                    justify-content: flex-start;
                    width: 100%;
                    color: #fff;
                    flex-direction: column;
                    letter-spacing: 0.5vw; }
                    @media screen and (min-width: 768px) {
                      header .menu-content-ul-li-div .search-list-li-a, header .menu-content-ullis-div .search-list-li-a {
                        align-items: center;
                        justify-content: center;
                        height: 29px;
                        color: #4d4d4d;
                        font-size: 1vw;
                        letter-spacing: 0.1vw;
                        background: #fff; }
                        header .menu-content-ul-li-div .search-list-li-a:hover, header .menu-content-ullis-div .search-list-li-a:hover {
                          color: #fff;
                          background: #47CCBF;
                          opacity: 1; } }
    header .menu-etc {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      height: 20vh;
      order: 1; }
      @media screen and (min-width: 768px) {
        header .menu-etc {
          width: auto;
          height: 100px;
          flex-direction: row;
          padding: 10px 0;
          padding-right: 30px;
          border-bottom: none;
          order: unset; } }
      header .menu-etc-sp-btn {
        max-height: 16vh; }
      header .menu-etc-sns {
        display: flex;
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        order: 3; }
        @media screen and (min-width: 768px) {
          header .menu-etc-sns {
            display: none; } }
        header .menu-etc-sns-a {
          margin: 0 15px; }
          header .menu-etc-sns-a:first-of-type {
            width: 30%; }
      header .menu-etc-user {
        /*padding:12px 7vw;
        border-radius:5px;
        background:$green;
        color:#fff;
        border:1px solid #fff;
        font-size:3vw;
        letter-spacing:2px;
        @media screen and (min-width:768px){
            padding:12px 45px;
            font-size:1vw;
            margin-right:30px;
        }*/ }
        @media screen and (min-width: 768px) {
          header .menu-etc-user {
            margin-right: 20px;
            max-width: 240px;
            width: 20vw; } }
      header .menu-etc-shop {
        /*
        padding:12px 3vw;
        border-radius:5px;
        background:$green;
        color:#fff;
        border:1px solid #fff;
        font-size:3vw;
        letter-spacing:2px;
        @media screen and (min-width:768px){
            background:#fff;
            color:$green;
            border:1px solid $green;
            padding:12px 30px;
            font-size:1vw;
            margin-right:30px;
        }*/ }
        @media screen and (min-width: 768px) {
          header .menu-etc-shop {
            margin-right: 20px;
            max-width: 240px;
            width: 20vw; } }
      header .menu-etc-contact {
        display: none; }
        @media screen and (min-width: 768px) {
          header .menu-etc-contact {
            display: block;
            padding: 0; } }

footer {
  width: 100%;
  background-color: #47CCBF;
  border-top: 30px solid #29C9D8;
  padding: 100px 0 50px;
  color: #fff; }
  footer .wrap {
    width: 90%;
    max-width: 1222px;
    margin: auto; }
    footer .wrap .info {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      @media screen and (min-width: 768px) {
        footer .wrap .info {
          flex-direction: row; } }
      footer .wrap .info .title-sns .footer-logo {
        text-align: center; }
        @media screen and (min-width: 768px) {
          footer .wrap .info .title-sns .footer-logo {
            text-align: left; } }
      footer .wrap .info .title-sns .sns-ul {
        margin: auto;
        margin-top: 50px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 300px; }
      footer .wrap .info .contact {
        border: 2px solid #fff;
        border-radius: 25px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 1vw;
        margin-top: 30px; }
        @media screen and (min-width: 768px) {
          footer .wrap .info .contact {
            margin-top: 0; } }
        footer .wrap .info .contact-title {
          font-size: 3vw;
          padding-right: 2vw;
          white-space: nowrap; }
          @media screen and (min-width: 768px) {
            footer .wrap .info .contact-title {
              font-size: 1.5vw; } }
        footer .wrap .info .contact-ul {
          border-left: 2px solid #fff;
          padding: 0 2vw;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%; }
          footer .wrap .info .contact-ul-li {
            padding: 2vw 0;
            font-size: 2.8vw;
            width: 100%;
            display: flex;
            align-items: center;
            white-space: nowrap; }
            @media screen and (min-width: 768px) {
              footer .wrap .info .contact-ul-li {
                font-size: 1.5vw; } }
            footer .wrap .info .contact-ul-li-img {
              padding-right: 15px; }
              @media screen and (min-width: 768px) {
                footer .wrap .info .contact-ul-li-img {
                  padding-right: 30px; } }
            footer .wrap .info .contact-ul-li:first-of-type {
              border-bottom: 2px solid #fff; }
    footer .wrap .sponsor {
      text-align: center;
      margin-top: 70px; }
      footer .wrap .sponsor-title {
        font-size: 150%;
        line-height: 2em;
        box-sizing: border-box;
        padding: 0 4rem;
        border-radius: 1em;
        color: #fff;
        display: inline-block;
        border: 1px solid #fff; }
      footer .wrap .sponsor-ul {
        margin-top: 35px;
        display: flex;
        justify-content: space-between;
        flex-direction: column; }
        @media screen and (min-width: 768px) {
          footer .wrap .sponsor-ul {
            flex-direction: row; } }
        footer .wrap .sponsor-ul-li {
          width: 80%;
          margin: 10px auto; }
          @media screen and (min-width: 768px) {
            footer .wrap .sponsor-ul-li {
              width: 40%;
              margin: auto; } }
    footer .wrap .copyright {
      color: #fff;
      margin-top: 100px;
      text-align: center; }

.keyvisual {
  width: 100%;
  height: 50vw;
  max-height: 50vh;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666; }

#breadclumb .breadclumb-ul {
  line-height: 1.5;
  text-align: right;
  margin: 30px 0 50px;
  color: #47ccbf; }
  #breadclumb .breadclumb-ul-li {
    display: inline-block;
    font-size: 12px;
    margin-right: 2px; }
    @media screen and (min-width: 768px) {
      #breadclumb .breadclumb-ul-li {
        margin-right: 10px; } }
    #breadclumb .breadclumb-ul-li-img {
      width: 22px;
      margin-right: 5px; }
      @media screen and (min-width: 768px) {
        #breadclumb .breadclumb-ul-li-img {
          width: 30px;
          margin-right: 10px; } }
      #breadclumb .breadclumb-ul-li-img.arrow {
        width: 7px;
        vertical-align: inherit; }
        @media screen and (min-width: 768px) {
          #breadclumb .breadclumb-ul-li-img.arrow {
            width: 10px;
            margin-right: 0;
            vertical-align: bottom; } }

.sbtn {
  color: #fff;
  background: #47CCBF;
  border-radius: 25px;
  padding: 5px 25px; }
  .sbtn-arrow {
    margin-left: 10px; }

.partner {
  width: 100%;
  padding: 5px 0;
  margin: 100px 0;
  background-color: #47ccbf; }
  .partner-wrap {
    width: 94%;
    max-width: 1280px;
    margin: auto;
    position: relative; }
    .partner-wrap-title {
      position: relative;
      width: 100%;
      box-sizing: border-box;
      border: 10px solid #5cd6e1;
      background-color: #29c9d8;
      top: 0;
      right: 0;
      box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
      padding: 20px 30px;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .partner-wrap-title {
          position: absolute;
          width: 554px;
          top: -40px; } }
      .partner-wrap-title-h2 {
        border: 1px solid #fff;
        color: white;
        display: inline-block;
        font-size: 36px;
        width: 100%;
        text-align: center;
        padding: 13px 0; }
      .partner-wrap-title-p {
        color: #fff;
        font-size: 13px;
        margin-top: 20px;
        margin-bottom: 30px;
        text-align: center;
        line-height: 2em; }
        @media screen and (min-width: 768px) {
          .partner-wrap-title-p {
            font-size: 18px; } }
      .partner-wrap-title-a {
        border: 1px solid white;
        height: 2em;
        line-height: 2em;
        border-radius: 1em;
        display: inline-block;
        padding: 0 4em 0 2em;
        font-size: 17px;
        color: #fff;
        padding: 6px 55px 10px 25px;
        box-sizing: border-box;
        line-height: 100%;
        letter-spacing: 2px;
        position: relative; }
