@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/* ==========================================================================//
//
// トップページ
//
// ========================================================================== */
/* loading
---------------------------------------------------------- */
#loaderBg {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 200;
  background: #fff;
}

/* ログインボタン
---------------------------------------------------------- */
.login_btn_wrap {
  position: fixed;
  z-index: 1;
  right: -20px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.login_btn_wrap.active {
  right: 0px;
  opacity: 1;
  visibility: visible;
  /* 751- */
}
@media all and (min-width: 751px) {
  .login_btn_wrap.active {
    right: 20px;
  }
}

.login_btn {
  background: #741626;
  display: block;
  color: #fff;
  padding: 14px 14px 14px 34px;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
  font-size: 12px;
  /* 751- */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .login_btn {
    padding: 20px 20px 20px 50px;
  }
}
.login_btn::after {
  position: absolute;
  content: "";
  background-image: url(../images/top/icon_pen.svg);
  width: 14px;
  height: 14px;
  background-size: cover;
  background-repeat: no-repeat;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* 751- */
}
@media all and (min-width: 751px) {
  .login_btn::after {
    width: 19px;
    height: 19px;
    left: 25px;
  }
}
@media (hover: hover) {
  .login_btn:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* 共通
---------------------------------------------------------- */
.section {
  margin-top: 70px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .section {
    margin-top: 140px;
  }
}

.sec_ttl_wrap {
  margin-bottom: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_ttl_wrap {
    margin-bottom: 45px;
  }
}

.sec_ttl {
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-weight: normal;
  font-size: 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_ttl {
    font-size: 50px;
  }
}
.sec_ttl.mini {
  font-size: 26px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_ttl.mini {
    font-size: 40px;
  }
}

.sub_text {
  margin-top: 8px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sub_text {
    margin-top: 15px;
  }
}

.like_btn .custom_like-btn {
  margin: 0;
  padding: 0 0 0 22px;
  position: relative;
  background-color: transparent;
  color: #202020;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  width: 100%;
  border: none;
  /* 751- */
  /* クリックする前 */
  /* クリックした時 */
  /* クリックした後 */
}
@media all and (min-width: 751px) {
  .like_btn .custom_like-btn {
    padding: 0 0 0 26px;
    font-size: 13px;
  }
}
.like_btn .custom_like-btn::before {
  position: absolute;
  content: "";
  background-image: url(../images/mypage/ico_like_no.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 17.85px;
  height: 15.52px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .like_btn .custom_like-btn::before {
    width: 19.98px;
    height: 17.37px;
    left: 0;
  }
}
.like_btn .custom_like-btn:not(.custom_like--liked) {
  cursor: pointer;
}
.like_btn .custom_like-btn:active::before, .like_btn .custom_like-btn:focus::before {
  background-image: url(../images/mypage/ico_like_on.svg);
}
.like_btn .custom_like-btn.custom_like--liked::before {
  background-image: url(../images/mypage/ico_like_on.svg);
}

/* ヘッダー
---------------------------------------------------------- */
header .logo.large a .logo_tate {
  opacity: 0;
}
header .logo.large a .logo_yoko {
  top: 38px;
  width: 291px;
  pointer-events: none;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  header .logo.large a .logo_yoko {
    opacity: 1;
    width: 645px;
    top: 40px;
    left: 45px;
  }
}
header .logo.large a .logo_yoko .copy {
  display: inline-block;
  margin-bottom: 14px;
  width: 85%;
  /* 751- */
}
@media all and (min-width: 751px) {
  header .logo.large a .logo_yoko .copy {
    margin-bottom: 18px;
    width: 60%;
  }
}

/* 天気
---------------------------------------------------------- */
.weather_wrap {
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  .weather_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    background: #fff;
    padding: 10px;
  }
}
@media all and (min-width: 751px) {
  .weather_wrap {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 1;
  }
}

.weather_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.weather_area .weather_info {
  font-size: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .weather_area .weather_info {
    font-size: 26px;
  }
}
.weather_area .weather_info i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.weather_area .weather_info i img {
  width: 21px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .weather_area .weather_info i img {
    width: 26px;
  }
}

.local_time {
  font-size: 12px;
  margin-top: 5px;
}
.local_time span {
  margin-left: 10px;
}

.weather_sp {
  width: 100%;
  height: auto;
  bottom: 0;
  position: absolute;
  z-index: 2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .weather_sp {
    display: none;
  }
}

/* メインビジュアル
---------------------------------------------------------- */
#mv {
  position: relative;
  padding-top: 137px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv {
    padding-top: 120px;
  }
}
#mv .gray_box {
  position: absolute;
  width: 40%;
  top: 0;
  right: 0;
}
#mv .gray_box::before {
  position: absolute;
  background-color: #F7F7F7;
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  display: block;
  padding-bottom: 120%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #mv .gray_box::before {
    padding-bottom: 66.6667%;
  }
}
#mv .mv_slider .splide-area {
  position: relative;
}
#mv .mv_slider .splide-main {
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main {
    padding: 0 5% 0 23%;
  }
}
#mv .mv_slider .splide-main .splide__track {
  overflow: visible;
}
#mv .mv_slider .splide-main .splide__track[aria-live=polite] .slide .slide-media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#mv .mv_slider .splide-main .splide__slide {
  position: relative;
}
#mv .mv_slider .splide-main .splide__slide .link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#mv .mv_slider .splide-main .slide .slide-media {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
}
#mv .mv_slider .splide-main .slide .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-transition: all 0.75s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.75s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
}
#mv .mv_slider .splide-main .slide .slide-content {
  padding: 20px 20px 35px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main .slide .slide-content {
    padding: 0;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 2;
    left: -23%;
    bottom: 20px;
    width: 70%;
  }
}
#mv .mv_slider .splide-main .slide .slide-content .category {
  display: inline-block;
  padding: 4px 10px;
  background-color: #202020;
  color: #fff;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 12px;
  margin-bottom: 12px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main .slide .slide-content .category {
    padding: 4px 15px;
    font-size: 16px;
  }
}
#mv .mv_slider .splide-main .slide .slide-content .info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  background-color: #fff;
  margin-left: 14px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main .slide .slide-content .info {
    margin: 5px 0 0 0;
    padding: 4px 15px 4px 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
#mv .mv_slider .splide-main .slide .slide-content .info .area {
  position: relative;
  padding-left: 18px;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 11px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main .slide .slide-content .info .area {
    padding-left: 22px;
    font-size: 13px;
  }
}
#mv .mv_slider .splide-main .slide .slide-content .info .area::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  width: 11px;
  height: 15px;
  background-image: url(../images/common/area_icon.svg);
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main .slide .slide-content .info .area::before {
    width: 14px;
    height: 19px;
  }
}
#mv .mv_slider .splide-main .slide .slide-content .info .like_btn {
  position: absolute;
  right: 20px;
  z-index: 2;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main .slide .slide-content .info .like_btn {
    position: relative;
    right: auto;
  }
}
#mv .mv_slider .splide-main .slide .slide-content .title {
  font-size: 15px;
  font-weight: 500;
  background-color: #fff;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-main .slide .slide-content .title {
    display: inline-block;
    font-size: 26px;
    padding: 8px 15px 8px 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#mv .mv_slider .splide-main .custom-pagination {
  position: absolute;
  right: 2.2%;
  bottom: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#mv .mv_slider .splide-main .custom-pagination .custom-page {
  border: none;
  background-color: #D3D3D3;
  width: 7px;
  height: 7px;
  margin-bottom: 140%;
  cursor: pointer;
}
#mv .mv_slider .splide-main .custom-pagination .custom-page.is-active {
  background-color: #202020;
}
#mv .mv_slider .splide-thumb {
  padding: 0 10px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #mv .mv_slider .splide-thumb {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36%;
    padding: 20px 0 0 20px;
    background-color: #fff;
  }
}
#mv .mv_slider .splide-thumb .splide__slide:nth-child(1) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
#mv .mv_slider .splide-thumb .splide__slide:nth-child(2) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#mv .mv_slider .splide-thumb .splide__slide:nth-child(3) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#mv .mv_slider .splide-thumb .splide__slide:nth-child(4) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
#mv .mv_slider .splide-thumb .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#mv .mv_slider .splide-thumb .thumb {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
}
#mv .mv_slider .splide-thumb .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.75s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.75s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  #mv .mv_slider .splide-thumb .thumb:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* ランキング
---------------------------------------------------------- */
#ranking .article_list {
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #ranking .article_list {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 65% 5% 30%;
    grid-template-columns: 65% 30%;
    -ms-grid-rows: auto 5% auto;
    grid-template-rows: auto auto;
    gap: 5% 5%;
  }
  #ranking .article_list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #ranking .article_list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #ranking .article_list > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  #ranking .article_list > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
#ranking .article_list.scroll_active .article {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#ranking .article_list .article {
  opacity: 0;
  /* 1081- */
  /* 751- */
}
@media all and (min-width: 1081px) {
  #ranking .article_list .article {
    width: auto;
  }
  #ranking .article_list .article:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  #ranking .article_list .article:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  #ranking .article_list .article:nth-child(3) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}
#ranking .article_list .article .thumbnail_wrap .label {
  padding: 8px 3px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #ranking .article_list .article .thumbnail_wrap .label {
    padding: 12px 1px;
  }
}
#ranking .article_list .article .thumbnail_wrap .label .date .day {
  font-size: 14px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #ranking .article_list .article .thumbnail_wrap .label .date .day {
    font-size: 32px;
  }
}
#ranking .article_list .article .thumbnail_wrap .label .date .month {
  font-size: 10px;
  padding-top: 6px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #ranking .article_list .article .thumbnail_wrap .label .date .month {
    font-size: 20px;
    padding-top: 12px;
  }
}
#ranking .article_list .article .thumbnail_wrap .label .category {
  padding-top: 15px;
  font-size: 10px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #ranking .article_list .article .thumbnail_wrap .label .category {
    padding-top: 40px;
    font-size: 20px;
  }
}
#ranking .article_list .article .thumbnail_wrap .label .category::before {
  width: 10px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #ranking .article_list .article .thumbnail_wrap .label .category::before {
    width: 27px;
  }
}
#ranking .article_list .article .text_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#ranking .article_list .article .text_wrap .rank {
  position: relative;
  width: 46px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 22px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #ranking .article_list .article .text_wrap .rank {
    font-size: 36px;
    width: 69px;
  }
}
#ranking .article_list .article .text_wrap .rank::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 20px;
  left: -5px;
  width: 42px;
  height: 1px;
  background-color: #202020;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  /* 751- */
}
@media all and (min-width: 751px) {
  #ranking .article_list .article .text_wrap .rank::before {
    top: 35px;
    width: 65px;
  }
}
#ranking .article_list .article .text_wrap .ttl_wrap .title {
  /* 751- */
}
@media all and (min-width: 751px) {
  #ranking .article_list .article .text_wrap .ttl_wrap .title {
    font-size: 18px;
  }
}
#ranking .article_list .article .text_wrap .ttl_wrap .tags {
  padding: 5px 40px 5px 0;
  font-size: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #ranking .article_list .article .text_wrap .ttl_wrap .tags {
    padding: 10px 50px 5px 0;
    font-size: 12px;
  }
}
@media all and (min-width: 751px) {
  #ranking .article_list .article:nth-child(2) .label, #ranking .article_list .article:nth-child(3) .label {
    padding: 10px 4px;
  }
  #ranking .article_list .article:nth-child(2) .label .date .day, #ranking .article_list .article:nth-child(3) .label .date .day {
    font-size: 15px;
  }
  #ranking .article_list .article:nth-child(2) .label .date .month, #ranking .article_list .article:nth-child(3) .label .date .month {
    padding-top: 6px;
    font-size: 11px;
  }
  #ranking .article_list .article:nth-child(2) .label .category, #ranking .article_list .article:nth-child(3) .label .category {
    padding-top: 20px;
    font-size: 11px;
  }
  #ranking .article_list .article:nth-child(2) .label .category::before, #ranking .article_list .article:nth-child(3) .label .category::before {
    width: 15px;
    top: 10px;
  }
  #ranking .article_list .article:nth-child(2) .text_wrap, #ranking .article_list .article:nth-child(3) .text_wrap {
    padding-right: 45px;
  }
  #ranking .article_list .article:nth-child(2) .text_wrap .rank, #ranking .article_list .article:nth-child(3) .text_wrap .rank {
    font-size: 20px;
    width: 40px;
  }
  #ranking .article_list .article:nth-child(2) .text_wrap .rank::before, #ranking .article_list .article:nth-child(3) .text_wrap .rank::before {
    top: 20px;
    width: 38px;
  }
  #ranking .article_list .article:nth-child(2) .text_wrap .ttl_wrap .title, #ranking .article_list .article:nth-child(3) .text_wrap .ttl_wrap .title {
    font-size: 14px;
  }
  #ranking .article_list .article:nth-child(2) .text_wrap .ttl_wrap .tags, #ranking .article_list .article:nth-child(3) .text_wrap .ttl_wrap .tags {
    padding: 3px 0 0 0;
    font-size: 11px;
  }
}

/* カテゴリー
---------------------------------------------------------- */
#category .tab_area .tabs {
  position: relative;
  /* 1081- */
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_area .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#category .tab_area .tabs .wide_img {
  display: none;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_area .tabs .wide_img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #category .tab_area .tabs .wide_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
    opacity: 0;
    -webkit-transition: opacity 0.75s ease;
    transition: opacity 0.75s ease;
  }
  #category .tab_area .tabs .wide_img img.active {
    opacity: 1;
    -webkit-animation-name: zoomIn;
            animation-name: zoomIn;
    -webkit-animation-duration: 7s;
            animation-duration: 7s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  @-webkit-keyframes zoomIn {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    to {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
  }
  @keyframes zoomIn {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    to {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
  }
}
#category .tab_area .tabs .tab {
  position: relative;
  cursor: pointer;
  margin: 2px 0;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_area .tabs .tab {
    width: 25%;
    margin: 0;
  }
}
#category .tab_area .tabs .tab .img {
  -webkit-transition: opacity 0.75s ease;
  transition: opacity 0.75s ease;
}
#category .tab_area .tabs .tab .label {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 216px;
  padding: 12px 20px;
  color: #fff;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 16px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_area .tabs .tab .label {
    width: 100%;
    max-width: 250px;
    padding: 22px 30px;
    font-size: 20px;
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
  }
}
#category .tab_area .tabs .tab .label.restaurant {
  background-color: #F08B00;
}
#category .tab_area .tabs .tab .label.landmark {
  background-color: #467FB7;
}
#category .tab_area .tabs .tab .label.shopping {
  background-color: #BC493A;
}
#category .tab_area .tabs .tab .label.culture {
  background-color: #1A892F;
}
#category .tab_area .tabs .tab .label::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/btn_arrow_white.svg);
  width: 6px;
  height: 9px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_area .tabs .tab .label::before {
    width: 8px;
    height: 12px;
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
  }
}
@media all and (min-width: 1081px) {
  #category .tab_area .tabs.hov .tab .img {
    opacity: 0;
  }
  #category .tab_area .tabs.hov .tab:not(.hov_target) .label {
    background-color: #F7F7F7;
    color: #8D8D8D;
  }
  #category .tab_area .tabs.hov .tab:not(.hov_target) .label::before {
    background-image: url(../images/common/btn_arrow_gray.svg);
  }
}
#category .tab_contents .tab_content {
  position: relative;
  display: none;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#category .tab_contents .tab_content.active {
  display: block;
  opacity: 0;
  -webkit-animation: appear 0.9s forwards ease-in-out;
          animation: appear 0.9s forwards ease-in-out;
}
@-webkit-keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#category .tab_contents .tab_content .ttl_area .inner {
  position: relative;
}
#category .tab_contents .tab_content .ttl_area .mask_img {
  position: absolute;
  width: 128px;
  top: 15px;
  right: -34px;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
  /* -750 */
  /* 751- */
}
@media all and (max-width: 750px) {
  #category .tab_contents .tab_content .ttl_area .mask_img {
    display: none;
  }
}
@media all and (min-width: 751px) {
  #category .tab_contents .tab_content .ttl_area .mask_img {
    width: 30%;
    max-width: 417px;
    top: 80px;
    left: 3%;
    z-index: 2;
  }
}
#category .tab_contents .tab_content .ttl_area .text_area {
  padding: 50px 0;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_contents .tab_content .ttl_area .text_area {
    padding: 100px 0 100px 40%;
  }
}
#category .tab_contents .tab_content .ttl_area .text_area .cate_ttl {
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 4px;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 27px;
  font-weight: normal;
  border-bottom: 2px solid;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_contents .tab_content .ttl_area .text_area .cate_ttl {
    margin-bottom: 50px;
    font-size: 45px;
  }
}
#category .tab_contents .tab_content .ttl_area .text_area .cate_ttl.restaurant {
  border-color: #F08B00;
}
#category .tab_contents .tab_content .ttl_area .text_area .cate_ttl.landmark {
  border-color: #467FB7;
}
#category .tab_contents .tab_content .ttl_area .text_area .cate_ttl.shopping {
  border-color: #BC493A;
}
#category .tab_contents .tab_content .ttl_area .text_area .cate_ttl.culture {
  border-color: #1A892F;
}
#category .tab_contents .tab_content .ttl_area .text_area p {
  /* 751- */
  /* 1081- */
}
@media all and (min-width: 751px) {
  #category .tab_contents .tab_content .ttl_area .text_area p {
    width: 70%;
  }
}
@media all and (min-width: 1081px) {
  #category .tab_contents .tab_content .ttl_area .text_area p {
    width: 100%;
  }
}
#category .tab_contents .tab_content .ttl_area .text_area .tags {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 11px;
  gap: 8px;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #category .tab_contents .tab_content .ttl_area .text_area .tags {
    margin-top: 30px;
    font-size: 12px;
    gap: 10px;
  }
}
#category .tab_contents .tab_content .ttl_area .text_area .tags a {
  /* 751- */
}
@media all and (min-width: 751px) {
  #category .tab_contents .tab_content .ttl_area .text_area .tags a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  #category .tab_contents .tab_content .ttl_area .text_area .tags a:hover {
    opacity: 0.6;
  }
}
#category .tab_contents .tab_content .post_area {
  position: relative;
  background-color: #F7F7F7;
  padding: 50px 0;
  /* 751- */
  /* 751- */
}
@media all and (min-width: 751px) {
  #category .tab_contents .tab_content .post_area {
    padding: 120px 0;
  }
}
@media all and (min-width: 751px) {
  #category .tab_contents .tab_content .post_area .article_list {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
  #category .tab_contents .tab_content .post_area .article_list .article {
    width: calc((100% - 50px) / 2);
  }
  #category .tab_contents .tab_content .post_area .article_list .article .thumbnail_wrap .label {
    padding: 15px 4px;
  }
  #category .tab_contents .tab_content .post_area .article_list .article .thumbnail_wrap .label .date {
    position: relative;
  }
  #category .tab_contents .tab_content .post_area .article_list .article .thumbnail_wrap .label .date .day {
    font-size: 33px;
  }
  #category .tab_contents .tab_content .post_area .article_list .article .thumbnail_wrap .label .date .my {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 15px;
  }
  #category .tab_contents .tab_content .post_area .article_list .article .thumbnail_wrap .label .date .my .month {
    font-size: 18px;
    line-height: 1;
    padding: 0;
  }
  #category .tab_contents .tab_content .post_area .article_list .article .thumbnail_wrap .label .date .my .year {
    font-size: 11px;
    padding: 0;
  }
  #category .tab_contents .tab_content .post_area .article_list .article .text_wrap .title {
    font-size: 16px;
  }
}
#category .tab_contents .tab_content .post_area .btn_area .btn {
  margin: 40px auto 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  #category .tab_contents .tab_content .post_area .btn_area .btn {
    margin-top: 70px;
  }
}

.tab_outer {
  /* 751- */
}
@media all and (min-width: 751px) {
  .tab_outer {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
  }
}

.tab_inner {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .tab_inner {
    width: 100vw;
    margin-left: 0;
    margin-right: calc((100vw - 1260px) / -2);
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
  }
}

/* モデルコース
---------------------------------------------------------- */
#course .course_tab .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-bottom: 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 70px;
  }
}
#course .course_tab .tabs .tab {
  background-color: #F7F7F7;
  padding: 15px 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  /* 751- */
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tabs .tab {
    width: calc((100% - 14px) / 2);
    padding: 20px 45px;
    gap: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
#course .course_tab .tabs .tab .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  line-height: 1.05;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tabs .tab .num {
    font-size: 35px;
  }
}
#course .course_tab .tabs .tab .num .case {
  font-size: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tabs .tab .num .case {
    font-size: 18px;
  }
}
#course .course_tab .tabs .tab.active {
  background-color: #848484;
  color: #fff;
}
@media (min-width: 751px) and (hover: hover) {
  #course .course_tab .tabs .tab:hover {
    background-color: #d8d8d8;
  }
}
#course .course_tab .tab_contents .tab_content {
  display: none;
  overflow: hidden;
}
#course .course_tab .tab_contents .tab_content.active {
  display: block;
  opacity: 0;
  -webkit-animation: appear 0.9s forwards ease-in-out;
          animation: appear 0.9s forwards ease-in-out;
}
@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#course .course_tab .tab_contents .tab_content .splide .splide__track {
  overflow: visible;
}
#course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_img {
  width: 100%;
  aspect-ratio: 455/597;
}
#course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
#course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content {
  padding-top: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content {
    padding-top: 25px;
  }
}
#course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content .time {
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
}
#course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content .time .num {
  font-size: 17px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content .time .num {
    font-size: 26px;
  }
}
#course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content .time .suffix {
  font-size: 15px;
  padding-left: 6px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content .time .suffix {
    font-size: 22px;
    padding-left: 8px;
  }
}
#course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content .title {
  font-size: 12px;
  padding-top: 3px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tab_contents .tab_content .splide .splide__track .splide__slide .slide_content .title {
    font-size: 14px;
    padding-top: 8px;
  }
}
#course .course_tab .tab_contents .tab_content .splide-controller {
  margin-top: 40px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tab_contents .tab_content .splide-controller {
    margin-top: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#course .course_tab .tab_contents .tab_content .splide-controller .carousel-progress {
  background: #E0E0E0;
  width: 100%;
}
#course .course_tab .tab_contents .tab_content .splide-controller .carousel-progress .carousel-progress-bar {
  background: #202020;
  height: 2px;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  width: 0;
}
#course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow--prev, #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow--next {
    display: -ms-grid;
    display: grid;
    place-content: center;
    width: 58px;
    height: 58px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #202020;
    border-radius: 50%;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    /* 751- */
  }
  #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow--prev::after, #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow--next::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/common/btn_arrow.svg);
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    height: 12px;
    width: 8px;
  }
}
@media (min-width: 751px) and (min-width: 751px) and (hover: hover) {
  #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow--prev:hover, #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow--next:hover {
    background-color: #F7F7F7;
  }
}
@media all and (min-width: 751px) {
  #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow--prev::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
            transform: translateX(-50%) translateY(-50%) rotate(180deg);
  }
  #course .course_tab .tab_contents .tab_content .splide-controller .splide__arrows .splide__arrow:disabled {
    pointer-events: none;
    opacity: 0.5;
  }
}

/* Youtube
---------------------------------------------------------- */
#clip .clip_wrap {
  /* 751- */
}
@media all and (min-width: 751px) {
  #clip .clip_wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#clip .clip_wrap .sec_ttl {
  /* 751- */
}
@media all and (min-width: 751px) {
  #clip .clip_wrap .sec_ttl {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
#clip .clip_wrap .sec_ttl_wrap {
  margin-bottom: 0;
}
#clip .clip_wrap .clip_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8.6px 0;
  margin: 25px 0 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #clip .clip_wrap .clip_list {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row: 2;
    grid-row: 2;
    gap: 0 10px;
    margin: 40px 0 0;
  }
}
#clip .clip_wrap .clip_list li {
  /* 751- */
}
@media all and (min-width: 751px) {
  #clip .clip_wrap .clip_list li {
    width: calc((100% - 20px) / 3);
  }
}
#clip .clip_wrap .clip_list li a {
  display: block;
  position: relative;
  /* 751- */
}
#clip .clip_wrap .clip_list li a::after {
  position: absolute;
  content: "";
  background-image: url(../images/top/ico_playbtn.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 47px;
  height: 32px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #clip .clip_wrap .clip_list li a::after {
    width: 61px;
    height: 43px;
  }
}
#clip .clip_wrap .clip_list li a .thumb {
  overflow: hidden;
}
#clip .clip_wrap .clip_list li a .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.778/1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.75s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.75s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 751px) and (hover: hover) {
  #clip .clip_wrap .clip_list li a:hover .thumb img {
    scale: 1.1;
  }
}
#clip .clip_wrap .btn_area {
  /* 751- */
}
@media all and (min-width: 751px) {
  #clip .clip_wrap .btn_area {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    justify-self: flex-end;
    width: min(200px, 100%);
  }
}
#clip .clip_wrap .btn_area .btn {
  margin: 0 0 0 auto;
}

/* Instagram
---------------------------------------------------------- */
.sec_instagram .sec_ttl_wrap {
  margin: 0;
}
.sec_instagram .grid_wrap {
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_instagram .grid_wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec_instagram .grid_wrap .ttl_area {
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_instagram .grid_wrap .ttl_area {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 20px;
  }
}
.sec_instagram .grid_wrap .ttl_area p {
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-weight: normal;
  font-size: 16px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_instagram .grid_wrap .ttl_area p {
    font-size: 20px;
  }
}
.sec_instagram .grid_wrap .post_area {
  margin: 25px 0 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_instagram .grid_wrap .post_area {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row: 2;
    grid-row: 2;
    margin: 40px 0 0;
  }
}
.sec_instagram .grid_wrap .post_area #sb_instagram {
  padding: 0 !important;
}
.sec_instagram .grid_wrap .post_area #sb_instagram #sbi_images {
  padding: 0;
}
.sec_instagram .grid_wrap .post_area .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2px;
}
.sec_instagram .grid_wrap .post_area .posts .post {
  position: relative;
  width: calc((100% - 4px) / 3);
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_instagram .grid_wrap .post_area .posts .post {
    width: calc((100% - 6px) / 4);
  }
}
.sec_instagram .grid_wrap .post_area .posts .post::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sec_instagram .grid_wrap .post_area .posts .post img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_instagram .grid_wrap .btn_area {
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_instagram .grid_wrap .btn_area {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    justify-self: flex-end;
    width: min(200px, 100%);
  }
}
.sec_instagram .grid_wrap .btn_area .btn {
  margin: 0 0 0 auto;
}

/* Location
---------------------------------------------------------- */
#location .intro {
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#location .intro .text {
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .intro .text {
    width: 60%;
  }
}
#location .intro .word_map {
  position: relative;
  max-width: 250px;
  margin: 30px auto 50px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .intro .word_map {
    width: 25%;
    max-width: none;
    margin: 0;
  }
}
#location .intro .word_map .arrow_line {
  position: absolute;
  bottom: -20%;
  right: 38%;
  width: 30%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .intro .word_map .arrow_line {
    bottom: -9%;
    right: 38%;
    width: 100%;
  }
}
#location .intro .word_map .arrow_line svg {
  width: 100%;
  height: auto;
}
#location .intro .word_map .arrow_line #arrow_line {
  stroke-dasharray: 1000; /* 長さに応じて調整 */
  stroke-dashoffset: -1000;
}
@-webkit-keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}
#location .intro .word_map .arrow_line::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/top/map_arrow_tip.svg);
  background-size: contain;
  width: 25%;
  height: 15%;
  bottom: 0;
  left: -10%;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .intro .word_map .arrow_line::before {
    width: 7%;
    height: 16%;
    bottom: 0;
    left: -2.4%;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
#location .intro .word_map .arrow_line.scroll_active #arrow_line {
  -webkit-animation: drawPath 1s ease-out forwards;
          animation: drawPath 1s ease-out forwards;
}
#location .intro .word_map .arrow_line.scroll_active::before {
  opacity: 1;
}
#location .area_map {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map {
    width: 100%;
    margin: 40px 0 0;
  }
}
#location .area_map .areas {
  font-size: 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  #location .area_map .areas {
    pointer-events: none;
  }
}
#location .area_map .road {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#location .area_map .illusts {
  pointer-events: none;
}
#location .area_map .illusts .illust {
  position: absolute;
  opacity: 0;
  margin-top: -1%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#location .area_map .illusts .illust.backpacker {
  width: 9%;
  top: 43%;
  left: 83%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.backpacker {
    top: 75%;
    left: 47%;
  }
}
#location .area_map .illusts .illust.tiger {
  width: 12%;
  top: 16%;
  left: 32%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.tiger {
    top: 24%;
    left: 33%;
  }
}
#location .area_map .illusts .illust.cart {
  width: 7%;
  top: 8%;
  left: 76%;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.cart {
    display: block;
    top: 11%;
  }
}
#location .area_map .illusts .illust.bike {
  width: 13%;
  top: 8%;
  left: 79%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.bike {
    width: 12%;
    top: 27%;
    left: 84%;
  }
}
#location .area_map .illusts .illust.bus {
  width: 9%;
  top: 45%;
  left: 41%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.bus {
    top: 57%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .illusts .illust.bus {
    width: 8%;
    top: 42%;
  }
}
#location .area_map .illusts .illust.bridge {
  width: 11%;
  top: 25%;
  left: 40%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.bridge {
    top: 33%;
  }
}
#location .area_map .illusts .illust.saigon {
  width: 8%;
  top: 26%;
  left: 33%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.saigon {
    width: 7%;
    top: 42%;
    left: 34%;
  }
}
#location .area_map .illusts .illust.fruit {
  width: 11%;
  top: 39%;
  left: 9%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.fruit {
    width: 10%;
    top: 56%;
    left: 7%;
  }
}
#location .area_map .illusts .illust.eatting {
  width: 11%;
  top: 55%;
  left: 67%;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.eatting {
    display: block;
    width: 9%;
    top: 86%;
    left: 64%;
  }
}
#location .area_map .illusts .illust.harumaki {
  width: 9%;
  top: 59%;
  left: 22%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.harumaki {
    width: 9%;
    top: 68%;
    left: 30%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .illusts .illust.harumaki {
    width: 7%;
    top: 54%;
  }
}
#location .area_map .illusts .illust.banhmi {
  width: 10%;
  top: 32%;
  left: 49%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.banhmi {
    width: 8%;
    top: 52%;
    left: 48%;
  }
}
#location .area_map .illusts .illust.four {
  width: 6%;
  top: 55%;
  left: 13%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.four {
    width: 9%;
    top: 66%;
    left: 19%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .illusts .illust.four {
    top: 52%;
  }
}
#location .area_map .illusts .illust.cathedral {
  width: 7%;
  top: 21%;
  left: 27%;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.cathedral {
    display: block;
    top: 30%;
    left: 28%;
  }
}
#location .area_map .illusts .illust.landmark81 {
  width: 13%;
  top: 1.4%;
  left: 48%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.landmark81 {
    width: 11%;
    top: 3.4%;
    left: 52%;
  }
}
#location .area_map .illusts .illust.tandinh {
  width: 7%;
  top: 7%;
  left: 23%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.tandinh {
    top: 11%;
    left: 22%;
  }
}
#location .area_map .illusts .illust.statue {
  width: 5%;
  top: 25%;
  left: 21%;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.statue {
    top: 34%;
    left: 24%;
  }
}
#location .area_map .illusts .illust.puppet {
  width: 11%;
  top: 17%;
  left: 8%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.puppet {
    top: 40%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .illusts .illust.puppet {
    top: 24%;
  }
}
#location .area_map .illusts .illust.coffee {
  width: 12%;
  top: 16%;
  left: 62%;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.coffee {
    display: block;
    width: 10%;
    top: 22%;
    left: 64%;
  }
}
#location .area_map .illusts .illust.icecoffee {
  width: 9%;
  top: 46%;
  left: 82%;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.icecoffee {
    display: block;
    top: 79%;
    left: 78%;
  }
}
#location .area_map .illusts .illust.couple {
  width: 11%;
  top: 39%;
  left: 60%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .illusts .illust.couple {
    width: 10%;
    top: 54%;
    left: 58%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .illusts .illust.couple {
    top: 34%;
  }
}
#location .area_map .illusts .illust.active {
  opacity: 1;
  margin-top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#location .area_map .area_names {
  pointer-events: none;
}
#location .area_map .area_names .area_name {
  width: auto;
  position: absolute;
  padding: 6px 8px;
  opacity: 0.9;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #location .area_map .area_names .area_name {
    padding: 15px 30px;
  }
}
#location .area_map .area_names .area_name a {
  display: block;
  position: relative;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 13px;
  padding: 0;
  color: #fff;
  /* 1081- */
}
@media all and (min-width: 1081px) {
  #location .area_map .area_names .area_name a {
    font-size: 24px;
  }
}
#location .area_map .area_names .district1 {
  background-color: #E6A616;
  top: 40%;
  left: 24%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .area_names .district1 {
    top: 55%;
    left: 19%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .area_names .district1 {
    top: 33%;
    left: 20%;
  }
}
#location .area_map .area_names .district3 {
  background-color: #788009;
  top: 26%;
  left: 9%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .area_names .district3 {
    top: 31%;
    left: 10%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .area_names .district3 {
    top: 16%;
    left: 4%;
  }
}
#location .area_map .area_names .binhtanh {
  background-color: #F47913;
  top: 4%;
  left: 32%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .area_names .binhtanh {
    left: 36%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .area_names .binhtanh {
    top: 1%;
    left: 29%;
  }
}
#location .area_map .area_names .thuduc {
  background-color: #EB4E2F;
  top: 24%;
  left: 64%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .area_names .thuduc {
    top: 42%;
    left: 51%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .area_names .thuduc {
    top: 19%;
  }
}
#location .area_map .area_names .district4 {
  background-color: #C15291;
  top: 58%;
  left: 32%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .area_names .district4 {
    top: 80%;
    left: 31%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .area_names .district4 {
    top: 51%;
    left: 30%;
  }
}
#location .area_map .area_names .district7 {
  background-color: #AD7946;
  top: 64%;
  left: 72%;
  /* 751- */
  /* -450 */
}
@media all and (min-width: 751px) {
  #location .area_map .area_names .district7 {
    top: 66%;
    left: 81%;
  }
}
@media all and (max-width: 450px) {
  #location .area_map .area_names .district7 {
    top: 57%;
    left: 67%;
  }
}
#location .area_map .area_names_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 25px 20px 0;
  gap: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #location .area_map .area_names_menu {
    display: none;
  }
}
#location .area_map .area_names_menu .area_name {
  width: calc((100% - 20px) / 2);
}
#location .area_map .area_names_menu .area_name a {
  display: block;
  position: relative;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 13px;
  padding: 0 0 6px;
}
#location .area_map .area_names_menu .area_name a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/btn_arrow.svg);
  width: 6px;
  height: 9px;
  right: 0;
  top: 10%;
}
#location .area_map .area_names_menu .district1 {
  border-bottom: 1px solid #ffde86;
}
#location .area_map .area_names_menu .district3 {
  border-bottom: 1px solid #c8cc27;
}
#location .area_map .area_names_menu .binhtanh {
  border-bottom: 1px solid #ff952b;
}
#location .area_map .area_names_menu .thuduc {
  border-bottom: 1px solid #ff7a64;
}
#location .area_map .area_names_menu .district4 {
  border-bottom: 1px solid #d870ab;
}
#location .area_map .area_names_menu .district7 {
  border-bottom: 1px solid #cf9c69;
}

/* ジャーナル
---------------------------------------------------------- */
@media all and (min-width: 901px) {
  #journal .journal_wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 105px 1fr;
    grid-template-rows: 105px 1fr;
    -ms-grid-columns: 1fr 66%;
    grid-template-columns: 1fr 66%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  #journal .journal_wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #journal .journal_wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  #journal .journal_wrap > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  #journal .journal_wrap > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media all and (min-width: 901px) {
  #journal .journal_wrap .sec_ttl {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
#journal .journal_wrap .journal_list {
  border-top: 1px solid #E0E0E0;
}
@media all and (min-width: 901px) {
  #journal .journal_wrap .journal_list {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    max-width: 800px;
  }
}
#journal .journal_wrap .journal_list .journal {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}
@media all and (min-width: 901px) {
  #journal .journal_wrap .journal_list .journal {
    position: relative;
    padding: 30px 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media (min-width: 901px) and (hover: hover) {
  #journal .journal_wrap .journal_list .journal:hover {
    padding-left: 20px;
  }
}
#journal .journal_wrap .journal_list .journal .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  font-family: "Cardo", serif;
  letter-spacing: 0.01em;
  font-size: 12px;
  margin-bottom: 7px;
  /* 751- */
}
@media all and (min-width: 751px) {
  #journal .journal_wrap .journal_list .journal .date {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
#journal .journal_wrap .journal_list .journal .date .my {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
@media all and (min-width: 901px) {
  #journal .journal_wrap .btn_area {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
#journal .journal_wrap .btn_area .btn {
  margin: 40px auto 0;
}
@media all and (min-width: 901px) {
  #journal .journal_wrap .btn_area .btn {
    margin: 0;
  }
}
/*# sourceMappingURL=top.css.map */