@charset "UTF-8";
HTML {
  scroll-behavior: smooth;
  font-size: 62.5%; }

:root {
  /* デフォルト */
  --font-size-default: 14px;
  --font-size-headline: 18px;
  --font-size-mid-headline: 16px;
  --block-margin-default: 40px auto;
  --block-padding-default: 40px;
  --item-margin-default: 20px auto;
  --item-padding-default: 10px; }

@media screen and (min-width: 880px) {
  :root {
    /* タブレットビュー */
    --font-size-default: 14px;
    --font-size-headline: 20px;
    --font-size-mid-headline: 18px;
    --block-margin-default: 60px auto;
    --block-padding-default: 60px;
    --item-margin-default: 30px auto;
    --item-padding-default: 20px; } }
@media screen and (min-width: 1200px) {
  :root {
    /* デスクトップ */
    --font-size-default: 16px;
    --font-size-headline: 20px;
    --font-size-mid-headline: 18px;
    --block-margin-default: 80px auto;
    --block-padding-default: 60px;
    --item-margin-default: 30px auto;
    --item-padding-default: 20px; } }
body {
  font-size: var(--font-size-default);
  font-family: 'Montserrat', 'hiragino kaku gothic pro', 'Noto Sans JP', sans-serif;
  background-image: url("../images/common/bg_paper.jpg");
  color: #2B343C; }

.purple {
  color: #7754A0; }

.bg-purple {
  background-color: #7754A0; }

.bg-grad-purple {
  background: #ffc6cf;
  background: linear-gradient(90deg, #ffc6cf 0%, #9476cc 100%); }

.green {
  color: #5D9564; }

.bg-green {
  background-color: #5D9564; }

.bg-grad-green {
  background: #ffec9a;
  background: linear-gradient(90deg, #ffec9a 0%, #69a770 100%); }

.red {
  color: #B55656; }

.bg-red {
  background-color: #B55656; }

.bg-grad-red {
  background: #ffc99a;
  background: linear-gradient(90deg, #ffc99a 0%, #e87777 100%); }

.bg-white {
  background: #fff; }

.bg-navy {
  background: #373760; }

.wrap {
  width: 96%;
  max-width: 1230px;
  margin: auto; }

a {
  text-decoration: none;
  color: #B55656; }

.border {
  border: solid 1px;
  padding: 0 2px; }

.max-img {
  width: 100%;
  height: auto; }

.strong div {
  padding: 5px 0; }
  .strong div p {
    padding: 0 0 0 20px; }
    .strong div p:first-child {
      font-weight: 600;
      position: relative;
      color: #69a770; }
      .strong div p:first-child:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 10px;
        height: 100%;
        background: linear-gradient(0deg, #ffec9a 0%, #69a770 100%); }

.btn {
  position: relative;
  color: #2B343C;
  border-radius: 4rem;
  padding: 2rem;
  box-sizing: border-box;
  display: inline-block;
  min-width: 220px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  font-weight: 500;
  text-align: center;
  font-size: var(--font-size-mid-headline); }
  .btn i {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%); }

.link-btn {
  font-size: 80%;
  font-weight: 600;
  border-radius: 2rem;
  padding: 0 .75rem;
  background: #fff;
  display: inline-block; }

h2, h3 {
  line-height: 1.2; }

h2 {
  font-family: 'Montserrat', 'Kiwi Maru';
  font-size: 4rem; }
  @media (max-width: 480px) {
    h2 {
      font-size: 1.8rem;
      font-family: 'Montserrat', 'hiragino kaku gothic pro', 'Noto Sans JP', sans-serif; } }
  h2 p {
    font-size: 2.6rem;
    line-height: 1.4; }
    @media (max-width: 480px) {
      h2 p {
        font-size: 1.8rem; } }

p {
  line-height: 1.6; }

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

.l-m {
  margin: 4rem auto; }

.l-p {
  padding: 8rem 0; }
  @media (max-width: 480px) {
    .l-p {
      padding: 4rem 0; } }

.m-m {
  margin: 2rem auto; }

.m-p {
  margin: 2rem auto; }

.s-m {
  margin: 1rem auto; }

.txt-c {
  text-align: center; }

.rounded {
  border-radius: 4rem; }
  @media (max-width: 480px) {
    .rounded {
      border-radius: 2rem; } }

.side-by-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }

.animation {
  opacity: 1 !important;
  transform: scale(1) rotate(0) translateY(0) !important; }

.scroll-anim {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
  transition: 2s; }

.circle-photo {
  border-radius: 50%; }

.note {
  font-size: 90%;
  opacity: .6; }

figure {
  position: relative; }

figcaption {
  font-size: 80%;
  margin: 1rem 0 0;
  opacity: .8;
  line-height: 1.4; }
  figcaption.on-photo {
    position: absolute;
    left: 5px;
    top: 5px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 5px;
    margin: 0 !important; }

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(45deg); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes scale-anim {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); }
  100% {
    transform: scale(1); } }
/* show-hide btn*/
.inactive-btn i {
  transition-duration: .2s; }

.active-btn i {
  transform: rotate(180deg); }

.show-hide-btn {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.show-hide-contents {
  display: none;
  padding: 1rem 0 0; }

/*--------------
HEADER
--------------*/
header {
  position: fixed;
  z-index: 99;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  transition: 0.5s; }
  @media (max-width: 480px) {
    header {
      padding: 2rem 1rem 1rem 1rem; } }
  header #Just-North-of-Tokyo {
    width: 543px;
    height: auto;
    transition: 0.5s; }
    @media (max-width: 880px) {
      header #Just-North-of-Tokyo {
        width: 60vw !important;
        height: auto !important; } }
  header .g-nav {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    header .g-nav__list {
      display: flex;
      align-items: center; }
      @media (max-width: 1205px) {
        header .g-nav__list {
          flex-wrap: wrap;
          position: absolute;
          right: -100vw;
          top: 0;
          opacity: 0;
          width: 100%;
          height: 100vh;
          background: #2B343C;
          backdrop-filter: blur(6px);
          margin: 0 !important; }
          header .g-nav__list a {
            color: #fff !important;
            display: block; } }
      header .g-nav__list li {
        border-left: #ffffff solid 1px; }
        @media (max-width: 1205px) {
          header .g-nav__list li {
            width: 100%; } }
        header .g-nav__list li a {
          color: #fff;
          padding: 0 2rem; }
          @media (max-width: 1205px) {
            header .g-nav__list li a {
              padding: 2rem;
              text-align: center; } }
        header .g-nav__list li:first-child {
          border-left: none; }
        header .g-nav__list li:last-child {
          border-left: none; }

nav li.has-child ul {
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  background: #fff; }
  nav li.has-child ul a {
    color: #2B343C; }

nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1; }

/* ------------------
Global navigation button
------------------*/
@media (max-width: 1205px) {
  .active {
    opacity: 1 !important;
    visibility: visible;
    right: 0 !important;
    overflow: scroll; }

  #g-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.4rem !important;
    z-index: 99;
    transition: 0.5s; }
    #g-nav-btn div {
      width: 28px;
      height: 28px;
      position: relative;
      transition-duration: 1s; }
      #g-nav-btn div span {
        display: block;
        position: absolute;
        width: 28px;
        height: 2px;
        background: #ffffff;
        transition-duration: .2s; }
        #g-nav-btn div span:nth-child(1) {
          top: 4px; }
        #g-nav-btn div span:nth-child(2) {
          top: 50%;
          transform: translateY(-50%); }
        #g-nav-btn div span:nth-child(3) {
          bottom: 4px; }

  #g-nav-btn.active {
    transform: translateY(-50%); }
    #g-nav-btn.active span:nth-child(1) {
      top: 10px;
      transform: rotate(-45deg); }
    #g-nav-btn.active span:nth-child(2) {
      opacity: 0; }
    #g-nav-btn.active span:nth-child(3) {
      top: 10px;
      transform: rotate(45deg); } }
.lang {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: fixed;
  right: 0;
  z-index: 100; }
  .lang li {
    padding: 1rem 0; }
    .lang li a {
      font-size: 1.4rem; }
    .lang li .h-btn {
      margin: .5rem;
      padding: 0 1rem;
      background: #2B343C;
      color: #fff;
      border-radius: 1rem; }
      @media (max-width: 480px) {
        .lang li .h-btn {
          font-size: 1rem; } }
    .lang li:last-child {
      margin: 0 0 0 1rem; }
    .lang li:last-child {
      padding: 0; }
  .lang .translate p {
    text-align: center;
    color: #fff;
    font-size: 1rem; }
    @media (max-width: 480px) {
      .lang .translate p {
        display: none !important; } }

.gt-current-lang {
  color: #ccc !important; }
  @media (max-width: 1205px) {
    .gt-current-lang {
      padding: 4px !important; } }
  @media (max-width: 1205px) and (max-width: 480px) {
    .gt-current-lang {
      padding: 0 0 0 2px !important; }
      .gt-current-lang img {
        width: 26px !important; } }

  @media (max-width: 480px) {
    .gt-current-lang {
      font-size: 1.2rem; } }

.current {
  opacity: .3; }

/*--------------
MAIN VISUAL
--------------*/
.mv {
  overflow: hidden;
  position: relative; }
  .mv-wrap {
    width: 110%;
    height: 600px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-right-radius: 1000px 300px;
    border-bottom-left-radius: 1000px 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    @media (max-width: 880px) {
      .mv-wrap {
        height: 90vw;
        background-position: -90vw; } }
    .mv-wrap .ttl {
      position: absolute;
      top: 48%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media (max-width: 880px) {
        .mv-wrap .ttl {
          top: 52%; } }
      @media (max-width: 880px) {
        .mv-wrap .ttl img {
          top: 50%;
          width: 48vw; } }
      .mv-wrap .ttl h1 {
        text-align: center; }
    .mv-wrap .point {
      width: 200px;
      height: 200px;
      position: absolute;
      bottom: 5%;
      right: 10%;
      background: #B55656;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-weight: 600;
      font-size: 2.2rem;
      line-height: 1.2;
      animation: scale-anim 1s ease-in-out infinite;
      transition: 0.5s;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); }
      @media (max-width: 880px) {
        .mv-wrap .point {
          width: 24vw;
          height: 24vw;
          font-size: 2.7vw;
          right: 8%;
          bottom: 15%; } }
      .mv-wrap .point span {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        opacity: .5; }
  @media (max-width: 480px) {
    .mv #mv-feel {
      background-position: -230vw center; } }

/*--------------
INTRODUCTION
--------------*/
.intro h2 {
  font-size: var(--font-size-headline); }
.intro .img {
  margin: -20rem auto 0;
  width: 100%;
  max-width: 794px;
  position: relative;
  z-index: 1; }
  @media (max-width: 880px) {
    .intro .img {
      margin: -26vw auto 0; } }
  .intro .img img {
    width: 100%;
    height: auto; }
@media (max-width: 480px) {
  .intro.txt-c {
    text-align: left; } }

/*--------------
LAOUT
--------------*/
.contents ul li {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s; }
  .contents ul li .btn {
    position: relative; }
    .contents ul li .btn:before {
      content: '';
      background: #000;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
  .contents ul li:hover {
    transform: scale(1.05); }
    .contents ul li:hover .btn {
      transform: translateX(20px);
      animation: scale-anim .75s ease-in-out infinite; }
      .contents ul li:hover .btn:before {
        opacity: 0; }

/*--------------
LAOUT 1 2列
--------------*/
@media (max-width: 480px) {
  .p1 .btn, .p2 .btn {
    padding: 1rem;
    min-width: 120px; } }

.p1 ul a {
  width: 48%;
  width: calc(50% - 2rem); }
  @media (max-width: 480px) {
    .p1 ul a {
      width: calc(50% - .5rem); } }
  @media (max-width: 880px) {
    .p1 ul a div {
      padding: 10vw 0 0; } }
  .p1 ul a li {
    height: 80vw;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; }
    @media (max-width: 880px) {
      .p1 ul a li {
        background-size: 220%;
        align-items: flex-start; }
        .p1 ul a li .btn {
          margin: 20vw 0 0; } }
    .p1 ul a li img {
      display: block;
      margin: 0 auto 2rem;
      max-height: 200px;
      height: 20vw; }

@media (max-width: 880px) {
  #itinerary01 {
    background-position: -30vw -12vw;
    background-size: 260%; } }

@media (max-width: 880px) {
  #itinerary02 {
    background-position: 60vw center; } }

.right-rounded {
  border-radius: 4rem 0 0 4rem; }
  @media (max-width: 480px) {
    .right-rounded {
      border-radius: 2rem 0 0 2rem; } }

.left-rounded {
  border-radius: 0 4rem 4rem 0rem; }
  @media (max-width: 480px) {
    .left-rounded {
      border-radius: 0 2rem 2rem 0rem; } }

/*--------------
LAOUT 2 3列
--------------*/
.p2 {
  padding: 0 0 16rem;
  overflow: hidden;
  position: relative;
  background: url("../images/common/line_01.png") no-repeat center/contain; }
  .p2 .side-by-side {
    align-items: normal; }
  .p2 h2 {
    margin: 8rem auto 0;
    max-width: 630px; }
    @media (max-width: 480px) {
      .p2 h2 {
        margin: 0 auto 0; } }
    .p2 h2 span {
      margin: 0 1rem;
      background: linear-gradient(transparent 60%, #fff 0%);
      display: inline; }
  .p2 a {
    position: relative;
    z-index: 2;
    width: 30%;
    width: calc(33.33333% - 2rem);
    color: #fff;
    z-index: 3; }
    @media (max-width: 880px) {
      .p2 a {
        margin: 1rem auto;
        width: 100%; } }
    .p2 a:nth-child(2) {
      margin: 8rem 0 0; }
      @media (max-width: 880px) {
        .p2 a:nth-child(2) {
          margin: 1rem auto; } }
    .p2 a:nth-child(3) {
      margin: 16rem 0 0; }
      @media (max-width: 880px) {
        .p2 a:nth-child(3) {
          margin: 1rem auto; } }
    .p2 a li {
      padding: 4rem;
      box-sizing: border-box; }
      @media (max-width: 480px) {
        .p2 a li {
          padding: 3rem; } }
      .p2 a li .number {
        position: absolute;
        right: 4rem;
        font-size: clamp(14rem, 16vw, 22rem);
        top: 0;
        color: rgba(0, 0, 0, 0.1);
        font-weight: 500;
        line-height: 1; }
      .p2 a li h3 {
        font-size: 2.2rem;
        position: relative;
        z-index: 1; }
        .p2 a li h3 + p {
          font-size: 2rem; }
      .p2 a li .ttl {
        margin: 10rem 0 0;
        position: relative;
        z-index: 1; }
        @media (max-width: 880px) {
          .p2 a li .ttl {
            margin: 5vw 0 0; } }
        .p2 a li .ttl img {
          width: auto;
          height: 4vw;
          max-height: 54px;
          min-height: 30px; }
      .p2 a li p {
        position: relative;
        z-index: 1; }
  .p2 #photo01 {
    position: absolute;
    left: -140px;
    top: 0;
    width: 33vw;
    max-width: 478px;
    height: 33vw;
    max-height: 478px; }
    @media (max-width: 480px) {
      .p2 #photo01 {
        left: auto;
        right: -16vw;
        top: 24%;
        z-index: 3; } }
  .p2 #photo02 {
    position: absolute;
    right: -100px;
    top: 100px;
    width: 30vw;
    max-width: 404px;
    height: 30vw;
    max-height: 404px; }
    @media (max-width: 480px) {
      .p2 #photo02 {
        width: 40vw;
        height: 40vw;
        left: auto;
        right: -5vw;
        top: 86%;
        z-index: 3; } }
  .p2 #photo03 {
    position: absolute;
    left: 30%;
    bottom: 2%;
    width: 40vw;
    max-width: 282px;
    height: 40vw;
    max-height: 282px; }
    @media (max-width: 480px) {
      .p2 #photo03 {
        width: 26vw;
        height: 26vw;
        left: auto;
        right: -5vw;
        top: 57%;
        z-index: 3; } }

/*--------------
LAOUT 3 2列
--------------*/
.p3 .side-by-side .block {
  width: 50%; }
  .p3 .side-by-side .block:last-child {
    padding: 0 0 0 4rem;
    box-sizing: border-box; }
    @media (max-width: 480px) {
      .p3 .side-by-side .block:last-child {
        padding: 1rem 0 0 0; } }
  @media (max-width: 480px) {
    .p3 .side-by-side .block {
      width: 100%; } }
  .p3 .side-by-side .block img {
    width: 100%;
    height: auto; }

/*--------------
LAOUT 4 1列
--------------*/
.p4 .side-by-side {
  justify-content: center; }
  .p4 .side-by-side img {
    width: 100%;
    height: auto; }

/*--------------
BANNER
--------------*/
.bnr {
  padding: 4rem;
  border: solid 1px #707070;
  color: #2B343C;
  box-sizing: border-box; }
  @media (max-width: 880px) {
    .bnr {
      padding: 2rem;
      justify-content: center; } }
  .bnr img {
    width: 50%;
    height: auto; }
    @media (max-width: 480px) {
      .bnr img {
        width: 80%;
        margin: 0 0 1rem; } }
  .bnr p {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 600; }
    .bnr p i {
      margin: 0 0 0 4rem; }
      @media (max-width: 480px) {
        .bnr p i {
          margin: 0 0 0 1rem; } }

/*--------------
FOOTER
--------------*/
footer {
  color: #fff;
  text-align: center; }
  footer .ttl img {
    max-width: 200px;
    height: auto; }
  footer .side-by-side {
    justify-content: center; }
    footer .side-by-side li {
      border-left: solid 1px; }
      @media (max-width: 480px) {
        footer .side-by-side li {
          width: 100%;
          margin: 0 1rem;
          padding: 1rem;
          border-left: none;
          border-top: solid 1px rgba(255, 255, 255, 0.2); } }
      footer .side-by-side li a {
        padding: 0 2rem;
        color: #fff;
        box-sizing: border-box; }
        @media (max-width: 480px) {
          footer .side-by-side li a {
            display: block;
            width: 100%; } }
      footer .side-by-side li:last-child {
        border-left: none; }
      footer .side-by-side li:first-child {
        border-left: none; }
  footer .note {
    margin: 2rem 0;
    opacity: .6;
    font-size: clamp(1rem, 3vw, 1.2rem); }
  footer .copyright {
    opacity: .6;
    font-size: clamp(1rem, 3vw, 1.2rem); }

.winner .wrap {
  padding: 6rem 0;
  box-sizing: border-box;
  border-radius: 4rem; }
  @media (max-width: 480px) {
    .winner .wrap {
      padding: 3rem 0; } }
  @media (max-width: 480px) {
    .winner .wrap h2 {
      margin: 0 0 2rem;
      font-size: clamp(20px, 5vw, 28px); }
      .winner .wrap h2 p {
        margin: 0 0 1rem;
        font-size: 80%; } }
  .winner .wrap .ttl {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 2rem;
    position: relative; }
    .winner .wrap .ttl:after {
      content: '';
      position: absolute;
      height: 6px;
      width: 100%;
      left: 0;
      bottom: -1rem;
      background: linear-gradient(90deg, #ffec9a 0%, #69a770 100%); }
  .winner .wrap .username {
    text-align: center;
    margin: 1rem 0; }
  .winner .wrap .line {
    padding: 2rem 0; }
    @media (max-width: 480px) {
      .winner .wrap .line {
        padding: .1rem 0; } }
    .winner .wrap .line .winner-1st {
      padding: 2rem;
      max-width: 600px;
      margin: auto;
      background: #fff;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); }
  .winner .wrap .category-winner .side-by-side {
    align-items: normal; }
    .winner .wrap .category-winner .side-by-side div {
      width: 32%;
      background: #fff;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
      padding: 2rem;
      box-sizing: border-box; }
      @media (max-width: 480px) {
        .winner .wrap .category-winner .side-by-side div {
          margin: .5rem 0;
          width: 100%; } }

.sp-only {
  display: none; }
  @media (max-width: 480px) {
    .sp-only {
      display: block; } }
