@charset "UTF-8";
/* Scss Document */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    opacity: 0.7 !important;
    transition: 0.5s; }

img {
  max-width: 100%;
  width: 100%;
  vertical-align: top; }

html, body {
  font-size: 62.5%;
  font-family: fot-tsukuardgothic-std,"Hiragino Sans","ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75;
  color: #666666;
  font-feature-settings: "palt";
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  display: flex;
  flex-direction: column;
  min-height: 100vh; }
  body.add_overray {
    overflow: hidden; }

#wrapper {
  font-size: 1.6rem;
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    #wrapper {
      font-size: 1.4rem; } }

svg {
  fill: currentColor; }

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

.pc {
  display: block; }
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important; } }

.bold {
  font-weight: 700; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadein {
  opacity: 0.5;
  transform: translate(0, 40px);
  transition: all 500ms; }
  @media screen and (max-width: 768px) {
    .fadein {
      transform: translate(0, 30px); } }

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0); }

nav#toggle {
  background: #fff;
  height: 200px;
  position: fixed;
  z-index: 100000000;
  top: -50px;
  right: -50px;
  width: 200px;
  border-radius: 100%; }
  @media screen and (max-width: 768px) {
    nav#toggle {
      height: 100px;
      width: 100px;
      top: -20px;
      right: -25px; } }

#nav-toggle {
  position: fixed;
  top: 35px;
  right: 35px;
  height: 52px;
  cursor: pointer; }
  @media screen and (max-width: 768px) {
    #nav-toggle {
      top: 20px;
      height: 37px;
      right: 14px; } }
  #nav-toggle > div {
    position: relative;
    width: 50px;
    display: block; }
    @media screen and (max-width: 768px) {
      #nav-toggle > div {
        width: 30px; } }
  #nav-toggle p {
    margin-bottom: 10px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.1rem; }
    @media screen and (max-width: 768px) {
      #nav-toggle p {
        font-size: 1.1rem;
        margin-bottom: 5px;
        letter-spacing: normal; } }
  #nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #00b6ee;
    background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
    background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease; }
    #nav-toggle span:nth-child(1) {
      top: 0; }
    #nav-toggle span:nth-child(2) {
      top: 10px; }
      @media screen and (max-width: 768px) {
        #nav-toggle span:nth-child(2) {
          top: 8px; } }
    #nav-toggle span:nth-child(3) {
      top: 20px; }
      @media screen and (max-width: 768px) {
        #nav-toggle span:nth-child(3) {
          top: 16px; } }
  #nav-toggle:hover span:nth-child(1) {
    top: 2px; }
    @media screen and (max-width: 768px) {
      #nav-toggle:hover span:nth-child(1) {
        top: 2px; } }
  #nav-toggle:hover span:nth-child(3) {
    top: 18px; }

.open #nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg); }
.open #nav-toggle span:nth-child(2) {
  top: 10px;
  width: 0;
  left: 50%; }
.open #nav-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg); }

/* z-index */
#nav-toggle {
  z-index: 1000; }

#container {
  z-index: 900; }

#gloval-nav {
  background: #00b6ee;
  color: #fff;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  width: 100%;
  height: 500px;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease; }
  @media screen and (max-width: 768px) {
    #gloval-nav {
      top: 80px;
      width: 100%;
      font-size: 1.6rem; } }

#gloval-nav a {
  display: block;
  color: #fff;
  transition: color .6s ease;
  font-size: 1.8rem;
  text-decoration: none; }
  #gloval-nav a:hover {
    color: #666; }
  @media screen and (max-width: 768px) {
    #gloval-nav a {
      font-size: 1.6rem; } }
#gloval-nav ul {
  list-style: none;
  width: 100%; }
  #gloval-nav ul li {
    opacity: 0;
    transform: translateX(200px);
    transition: transform .6s ease, opacity .2s ease;
    padding: 10px 0 10px; }
    #gloval-nav ul li:nth-child(2) {
      transition-delay: .15s; }
    #gloval-nav ul li:nth-child(3) {
      transition-delay: .3s; }
    #gloval-nav ul li:nth-child(4) {
      transition-delay: .45s; }

/* open */
.open #gloval-nav {
  visibility: visible;
  opacity: 1; }
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity .9s ease; }

header {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 120px; }
  @media screen and (max-width: 768px) {
    header {
      height: 80px; } }
  header .head_logo a {
    position: absolute;
    left: 5%;
    top: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    max-width: 250px;
    width: 14.2%;
    font-size: 1.3rem;
    white-space: nowrap;
    transform: translateY(-50%); }
    @media screen and (max-width: 768px) {
      header .head_logo a {
        font-size: 1.1rem;
        width: 30%; } }
    header .head_logo a img {
      margin-left: 30px; }
      @media screen and (max-width: 768px) {
        header .head_logo a img {
          width: 100px;
          margin-left: 15px; } }
  header .head_sn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37%; }
    @media screen and (max-width: 768px) {
      header .head_sn {
        width: 70%; } }
    header .head_sn a dl {
      display: flex;
      flex-direction: column; }
      header .head_sn a dl dt {
        width: 80%;
        max-width: 212px;
        margin: 0 auto; }
        @media screen and (max-width: 768px) {
          header .head_sn a dl dt {
            width: 160px; } }
      header .head_sn a dl dd {
        width: 100%;
        max-width: 474px;
        margin: 0 auto; }
        @media screen and (max-width: 768px) {
          header .head_sn a dl dd {
            max-width: 350px;
            height: 15px; } }

.uc header {
  background: #fff; }
  .uc header .head_logo a {
    color: #666666; }
.uc nav#toggle {
  background: none; }
  @media screen and (max-width: 768px) {
    .uc nav#toggle {
      top: -30px;
      right: -30px; } }

.content_tit {
  margin-bottom: 50px;
  display: flex;
  align-items: baseline;
  line-height: 1; }
  @media screen and (max-width: 768px) {
    .content_tit {
      margin-bottom: 30px;
      display: block;
      text-align: center; } }
  .content_tit h2 {
    font-size: 6rem;
    line-height: 1.3;
    background: #00b6ee;
    background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
    background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 20px; }
    @media screen and (max-width: 768px) {
      .content_tit h2 {
        font-size: 4.2rem;
        margin-right: 0;
        margin-bottom: 10px; } }
  .content_tit p {
    font-size: 2rem;
    line-height: 1; }
    @media screen and (max-width: 768px) {
      .content_tit p {
        font-size: 1.5rem; } }

.link_box {
  border-radius: 50%;
  line-height: 1;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  position: relative; }
  @media screen and (max-width: 768px) {
    .link_box {
      width: 70%;
      max-width: 400px; } }
  .link_box::before {
    position: absolute;
    background: #00b6ee;
    background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
    background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
    border-radius: 200px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    top: -3px;
    left: -3px;
    content: ""; }
  .link_box a {
    display: block;
    padding: 15px;
    font-size: 2rem;
    position: relative;
    background: #fff;
    border-radius: 200px; }
    @media screen and (max-width: 768px) {
      .link_box a {
        font-size: 1.4rem; } }
    .link_box a:hover {
      color: #fff;
      background: none;
      font-weight: 700; }

#uc_main {
  margin-top: 120px;
  position: relative; }
  @media screen and (max-width: 768px) {
    #uc_main {
      margin-top: 80px; } }
  #uc_main figure {
    position: relative; }
    #uc_main figure::after {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      width: 100%;
      height: 100%;
      background: #00b6ee;
      background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
      background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
      background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
      background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
      background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
      mix-blend-mode: color; }
  #uc_main .circle {
    position: absolute;
    right: 5%;
    bottom: -50%;
    width: 20.8%;
    z-index: 2; }

main {
  background: #c7db62;
  background: linear-gradient(45deg, #c7db62 0%, #00b6ee 100%); }
  main #main_txt {
    padding: 150px 0 100px;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    width: 80%; }
    @media screen and (max-width: 768px) {
      main #main_txt {
        padding: 100px 0 60px; } }
    main #main_txt .main_tit dt {
      margin-bottom: 30px;
      font-size: 2.2rem; }
      @media screen and (max-width: 768px) {
        main #main_txt .main_tit dt {
          font-size: 1.5rem;
          margin-bottom: 20px; } }
    main #main_txt .main_tit dd {
      margin-bottom: 40px;
      width: 610px; }
      @media screen and (max-width: 768px) {
        main #main_txt .main_tit dd {
          width: 85%;
          margin-bottom: 30px;
          max-width: 290px; } }
    main #main_txt .main_intro {
      padding-left: 150px;
      position: relative; }
      @media screen and (max-width: 768px) {
        main #main_txt .main_intro {
          padding: 0; } }
      main #main_txt .main_intro::before {
        content: url("../img/txt_enjoy.svg");
        width: 120px;
        position: absolute;
        top: 0;
        left: 0; }
        @media screen and (max-width: 768px) {
          main #main_txt .main_intro::before {
            content: none; } }
      main #main_txt .main_intro dt {
        font-size: 3.2rem;
        margin-bottom: 25px;
        line-height: 1.3; }
        @media screen and (max-width: 768px) {
          main #main_txt .main_intro dt {
            font-size: 2.2rem;
            margin-bottom: 20px; } }
      main #main_txt .main_intro dd {
        font-size: 1.8rem;
        line-height: 2.3; }
        @media screen and (max-width: 768px) {
          main #main_txt .main_intro dd {
            font-size: 1.5rem;
            line-height: 2; } }
  main #main_img {
    width: 100%; }
    main #main_img figure {
      position: relative;
      z-index: 1; }
      main #main_img figure .fuki {
        position: absolute;
        top: 54%;
        right: 29%;
        width: 13.2%;
        transform: translate(-50%, -50%);
        transition: .5s;
        z-index: 2; }
        main #main_img figure .fuki:hover {
          top: 55%; }
        @media screen and (max-width: 768px) {
          main #main_img figure .fuki {
            top: 48%;
            right: 12%;
            width: 30%; }
            main #main_img figure .fuki:hover {
              top: 49%; } }

#genre {
  background: #fff; }
  #genre.top_genre {
    margin-top: -75px;
    padding-top: 75px; }
  #genre.uc_genre {
    background: #c7db62;
    background: -webkit-linear-gradient(#c7db62 0%, #00b6ee 100%);
    background: -o-linear-gradient(#c7db62 0%, #00b6ee 100%);
    background: linear-gradient(#c7db62 0%, #00b6ee 100%);
    color: #fff;
    padding: 0;
    position: relative; }
    #genre.uc_genre::before {
      content: url("../img/bg_yama.svg");
      top: 0;
      left: 0;
      width: 100%;
      position: absolute; }
      @media screen and (max-width: 768px) {
        #genre.uc_genre::before {
          top: -1px; } }
    #genre.uc_genre::after {
      content: url("../img/bg_nami.svg");
      bottom: -10px;
      left: 0;
      width: 100%;
      position: absolute; }
      @media screen and (max-width: 768px) {
        #genre.uc_genre::after {
          bottom: -8px; } }
    #genre.uc_genre .content_tit h2 {
      color: #fff;
      background: none;
      -webkit-text-fill-color: inherit; }
    #genre.uc_genre .content_tit p {
      color: #fff; }
    #genre.uc_genre .content {
      padding: 80px 0 50px; }
      @media screen and (max-width: 768px) {
        #genre.uc_genre .content {
          padding: 50px 0 30px; } }
  #genre .content {
    padding-top: 100px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 768px) {
      #genre .content {
        padding-top: 60px; } }
    #genre .content ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start; }
      #genre .content ul li {
        width: 31.333333%;
        margin: 0 1% 40px; }
        @media screen and (max-width: 768px) {
          #genre .content ul li {
            width: 47%;
            margin: 0 auto 30px; } }
        #genre .content ul li a {
          display: block;
          cursor: pointer; }
        #genre .content ul li dl dt img {
          border-radius: 20px; }
        #genre .content ul li dl dd {
          font-size: 1.7rem;
          text-align: center;
          margin-top: 10px; }
          @media screen and (max-width: 768px) {
            #genre .content ul li dl dd {
              font-size: 1.4rem; } }

#movie .content {
  padding-top: 80px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 150px; }
  @media screen and (max-width: 768px) {
    #movie .content {
      padding-top: 40px;
      padding-bottom: 120px; } }
  #movie .content .movie_slide {
    margin: 0 10px;
    text-align: center; }
    #movie .content .movie_slide .iframe {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 56.25%;
      overflow: hidden;
      margin-bottom: 10px; }
      #movie .content .movie_slide .iframe iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 20px; }
  #movie .content .link_box {
    margin-top: 50px; }
    @media screen and (max-width: 768px) {
      #movie .content .link_box {
        margin-top: 30px; } }
  #movie .content .slick-prev {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: auto; }
    @media screen and (max-width: 768px) {
      #movie .content .slick-prev {
        left: -10px;
        width: 10px; } }
    #movie .content .slick-prev::before {
      content: url("../img/ico_left.svg");
      width: 42px; }
      @media screen and (max-width: 768px) {
        #movie .content .slick-prev::before {
          width: 10px; } }
  #movie .content .slick-next {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: auto; }
    @media screen and (max-width: 768px) {
      #movie .content .slick-next {
        right: -10px;
        width: 10px; } }
    #movie .content .slick-next::before {
      content: url("../img/ico_right.svg");
      width: 42px; }
      @media screen and (max-width: 768px) {
        #movie .content .slick-next::before {
          width: 10px; } }

#uc_tit .content {
  width: 90%;
  max-width: 1100px;
  padding: 100px 0 70px;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    #uc_tit .content {
      padding: 70px 0 60px; } }
  #uc_tit .content h2 {
    background: #00b6ee;
    background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
    background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
    background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 8rem;
    line-height: 1.3; }
    @media screen and (max-width: 1000px) {
      #uc_tit .content h2 {
        font-size: 6rem; } }
    @media screen and (max-width: 768px) {
      #uc_tit .content h2 {
        font-size: 3.6rem; } }
  #uc_tit .content .tit_sub {
    font-size: 2.1rem;
    line-height: 1;
    margin-top: 15px; }
    @media screen and (max-width: 768px) {
      #uc_tit .content .tit_sub {
        font-size: 1.6rem; } }
  #uc_tit .content .tit_intro {
    line-height: 2;
    margin-top: 35px; }
    @media screen and (max-width: 768px) {
      #uc_tit .content .tit_intro {
        margin-top: 25px; } }

#uc_spot .content {
  width: 90%;
  max-width: 1100px;
  padding: 0 0 70px;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    #uc_spot .content {
      padding: 0 0 60px; } }
  #uc_spot .content ul li {
    border-bottom: 2px solid #666666;
    padding: 50px 40px 60px; }
    @media screen and (max-width: 768px) {
      #uc_spot .content ul li {
        padding: 40px 5% 50px; } }
    #uc_spot .content ul li:first-child {
      border-top: 2px solid #666666; }
    #uc_spot .content ul li .spot_name {
      display: flex;
      align-items: center;
      line-height: 1.3;
      margin-bottom: 30px; }
      @media screen and (max-width: 768px) {
        #uc_spot .content ul li .spot_name {
          display: block;
          text-align: center; } }
      #uc_spot .content ul li .spot_name dt {
        border-radius: 200px;
        line-height: 1;
        text-align: center;
        margin: 0 20px 0 0;
        position: relative; }
        @media screen and (max-width: 768px) {
          #uc_spot .content ul li .spot_name dt {
            margin: 0 auto 15px;
            display: inline-block; } }
        #uc_spot .content ul li .spot_name dt::before {
          position: absolute;
          background: #00b6ee;
          background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
          background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
          background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
          background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
          background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
          border-radius: 200px;
          width: calc(100% + 6px);
          height: calc(100% + 6px);
          top: -3px;
          left: -3px;
          content: ""; }
        #uc_spot .content ul li .spot_name dt span {
          display: block;
          background: #fff;
          border-radius: 200px;
          padding: 15px 30px;
          position: relative;
          z-index: 2;
          font-size: 2rem; }
          @media screen and (max-width: 768px) {
            #uc_spot .content ul li .spot_name dt span {
              padding: 10px 30px;
              font-size: 1.6rem; } }
      #uc_spot .content ul li .spot_name dd {
        font-size: 3.6rem; }
        @media screen and (max-width: 768px) {
          #uc_spot .content ul li .spot_name dd {
            font-size: 2.2rem; } }
    #uc_spot .content ul li .spot_info {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px; }
      @media screen and (max-width: 768px) {
        #uc_spot .content ul li .spot_info {
          display: block; } }
      #uc_spot .content ul li .spot_info .spot_info_img {
        width: 52%;
        border-radius: 20px;
        overflow: hidden; }
        @media screen and (max-width: 768px) {
          #uc_spot .content ul li .spot_info .spot_info_img {
            width: 100%;
            margin-bottom: 30px; } }
      #uc_spot .content ul li .spot_info .spot_info_txt {
        width: 44%; }
        @media screen and (max-width: 768px) {
          #uc_spot .content ul li .spot_info .spot_info_txt {
            width: 100%; } }
        #uc_spot .content ul li .spot_info .spot_info_txt h3 {
          background: #00b6ee;
          background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
          background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
          background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
          background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
          background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-size: 2.4rem;
          margin-bottom: 20px;
          line-height: 1.3; }
          @media screen and (max-width: 768px) {
            #uc_spot .content ul li .spot_info .spot_info_txt h3 {
              font-size: 2rem; } }
        #uc_spot .content ul li .spot_info .spot_info_txt .spot_info_in {
          padding: 20px 0 30px;
          border-top: 2px solid #ccc;
          border-bottom: 2px solid #ccc; }
          #uc_spot .content ul li .spot_info .spot_info_txt .spot_info_in p {
            margin-bottom: 20px;
            line-height: 2; }
            #uc_spot .content ul li .spot_info .spot_info_txt .spot_info_in p a {
              color: #29abe2;
              text-decoration: underline; }
          #uc_spot .content ul li .spot_info .spot_info_txt .spot_info_in .link_box {
            margin: 0; }
            #uc_spot .content ul li .spot_info .spot_info_txt .spot_info_in .link_box a {
              padding: 10px;
              font-size: 1.4rem; }
        #uc_spot .content ul li .spot_info .spot_info_txt figure {
          display: flex;
          margin-bottom: 25px; }
          #uc_spot .content ul li .spot_info .spot_info_txt figure a {
            width: 30px;
            margin-right: 15px; }
    #uc_spot .content ul li .spot_com h3 {
      background: #00b6ee;
      background: -moz-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
      background: -webkit-gradient(linear, left center, right center, from(#c7db62), to(#00b6ee));
      background: -webkit-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
      background: -o-linear-gradient(left, #c7db62 0%, #00b6ee 100%);
      background: linear-gradient(to right, #c7db62 0%, #00b6ee 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 2.4rem;
      margin-bottom: 20px;
      line-height: 1.3; }
      @media screen and (max-width: 768px) {
        #uc_spot .content ul li .spot_com h3 {
          font-size: 2rem; } }
    #uc_spot .content ul li .spot_com p {
      line-height: 2;
      margin-bottom: 40px; }
    #uc_spot .content ul li .gmap {
      height: 0;
      overflow: hidden;
      padding-bottom: 56.25%;
      position: relative; }
      #uc_spot .content ul li .gmap iframe {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%; }

#uc_movie .content {
  width: 90%;
  max-width: 1100px;
  padding: 0 0 150px;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    #uc_movie .content {
      padding: 0 0 120px; } }
  #uc_movie .content .iframe_fam {
    width: 100%;
    max-width: 600px;
    margin: 0 auto; }
  #uc_movie .content .iframe {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden; }
    #uc_movie .content .iframe iframe {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 20px; }
  #uc_movie .content .link_box {
    margin-top: 50px; }
    @media screen and (max-width: 768px) {
      #uc_movie .content .link_box {
        margin-top: 40px; } }

#info {
  border-top: 1px solid #e6e6e6; }
  #info .content {
    padding: 40px 0;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      #info .content {
        display: block;
        text-align: center; } }
    @media screen and (max-width: 768px) {
      #info .content .sitename {
        margin-bottom: 20px; } }
    #info .content .sitename dt {
      width: 212px; }
      @media screen and (max-width: 768px) {
        #info .content .sitename dt {
          width: 160px;
          margin: 0 auto; } }
    #info .content .sitename dd {
      width: 472px; }
      @media screen and (max-width: 768px) {
        #info .content .sitename dd {
          width: 90%;
          max-width: 350px;
          margin: 0 auto; } }
    #info .content .present {
      display: flex;
      align-items: center; }
      @media screen and (max-width: 768px) {
        #info .content .present {
          display: block; } }
      #info .content .present dt {
        font-size: 1.4rem;
        margin-right: 20px; }
        @media screen and (max-width: 768px) {
          #info .content .present dt {
            text-align: center;
            margin-bottom: 5px;
            font-size: 1rem; } }
      #info .content .present dd {
        width: 207px; }
        @media screen and (max-width: 768px) {
          #info .content .present dd {
            width: 160px;
            margin: 0 auto; } }

footer {
  background: #333;
  padding: 10px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  color: #fff; }
  @media screen and (max-width: 768px) {
    footer {
      font-size: 1.2rem; } }

/*# sourceMappingURL=style.css.map */
