@charset "utf-8";


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
  #header {
    box-shadow: none;
    justify-content: flex-end;
    background: transparent;
    align-items: flex-end;
    position: fixed;
    flex-wrap: wrap;
    height: 8.5rem;
    transition: 0.3s;
  }
  #header.scroll {
    background: transparent;
    align-items: center;
    height: 8rem;
  }
  #h_logo {
    background: #ddd;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% + 3rem);
    left: -1.5rem;
    right: -1.5rem;
    visibility: visible;
    opacity: 1;
    height: auto;
    transition: 0.3s;
  }
  #header.scroll #h_logo {
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  #h_logo img {
    display: none;
  }
  #h_logo br {
    display: none;
  }
  #h_logo a {
    justify-content: center;
    font-size: 1.2rem;
    padding: .2em;
    font-weight: 500;
  }
}



/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */

#mv {
  position: relative;
  z-index: 4;
}
.mv_inner {
  position: relative;
  width: 100%;
}
.mv_logo {
  margin: 0;
  line-height: 0;
}
.mv_logo a {
  display: inline-block;
}
.mv_visual {
  position: relative;
}
.mv_slider {
  width: 100%;
}
.mv_slider .splide__track,
.mv_slider .splide__list,
.mv_slider .splide__slide {
  height: 100%;
}
.mv_slide {
  position: relative;
}
.mv_image_link {
  display: block;
  color: inherit;
}
.mv_image_link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}
.mv_slider .splide__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  z-index: 3;
  gap: 0.8rem;
}
.mv_slider .splide__pagination__page {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background 0.3s, transform 0.3s;
}
.mv_slider .splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.2);
}
.mv_slider.splide--fade > .splide__track > .splide__list > .splide__slide {
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.mv_img picture,
.mv_img img {
  display: block;
  width: 100%;
  height: 100%;
}
.mv_course {
  display: block;
  color: var(--textColor-black);
  text-decoration: none;
  transition: opacity 0.3s;
}
.mv_course:hover {
  opacity: 0.8;
}
.mv_course_label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.mv_course_tit {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.mv_course_arrow {
  flex-shrink: 0;
  line-height: 0;
}
.mv_course_arrow img {
  display: block;
  width: 4rem;
  height: auto;
}
.mv_news {
  display: flex;
  align-items: stretch;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.mv_news:hover {
  opacity: 0.9;
}
.mv_news_thumb {
  flex-shrink: 0;
  overflow: hidden;
  line-height: 0;
}
.mv_news_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv_news_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mainColor-red);
}
.mv_news_txt {
  display: block;
  line-height: 1.4;
  font-weight: 700;
}
.mv_news_more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.mv_news_more_ico {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
}
.mv_news_more_ico::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/arrow-white.svg") no-repeat center / contain;
}

@media only screen and (max-width: 767px) {
  #mv {
    padding-bottom: 3rem;
    padding-top: 6rem;
  }
  .mv_inner {
    display: flex;
    flex-direction: column;
  }
  .mv_side {
    padding: 2rem 1.5rem;
  }
  .mv_logo {
    text-align: center;
  }
  .mv_logo img {
    width: 11.8rem;
  }
  .mv_visual {
    position: relative;
  }
  .mv_slider .splide__pagination {
    bottom: 5.5rem;
  }
  .mv_img {
    position: relative;
    aspect-ratio: 430 / 270;
  }
  .mv_course {
    position: relative;
    z-index: 2;
    margin-top: -4rem;
    border-bottom: .2rem solid var(--mainColor-red);
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.92) 4rem,
      rgba(255, 255, 255, 0.92) 100%
    );
  }
  .mv_course_blur {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 4rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.92) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateZ(0);
    pointer-events: none;
  }
  .mv_course_inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 3.5rem 2rem;
    width: 100%;
  }
  .mv_course_label {
    font-size: 1.2rem;
  }
  .mv_course_head {
    flex: 1;
    min-width: 0;
  }
  .mv_news {
    margin: 3rem 2rem 0;
  }
  .mv_news_thumb {
    width: 12rem;
    height: 12rem;
  }
  .mv_news_body {
    flex: 1;
    padding: 1.2rem 2rem;
  }
  .mv_news_txt {
    font-size: 1.6rem;
  }
  .mv_news_more_ico {
    width: 1.6rem;
    height: 1.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  #mv {
    padding-top: 3.6rem;
  }
  .mv_inner {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  .mv_side {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 25%;
    padding-top: 3rem;
  }
  .mv_logo {
    text-align: center;
  }
  .mv_logo img {
    width: 52%;
  }
  .mv_visual {
    position: relative;
    width: 75%;
  }
  .mv_slider .splide__pagination {
    bottom: 2rem;
    justify-content: flex-end;
    padding-right: 4rem;
  }
  .mv_img {
    overflow: hidden;
  }
  .mv_img picture {
    text-align: right;
  }
  /* MOD: */
  .mv_img {
    overflow: hidden;
    aspect-ratio: 1920 / 1213;
  }
  .mv_img img {
    max-height: 110rem;
    width: auto;
    display: inline-block;
    border-radius: 3rem 0 0 3rem;
  }
  .mv_course {
    position: absolute;
    right: 0;
    bottom: 5rem;
    z-index: 2;
    width: 50%;
  }
  .mv_course_blur {
    display: none;
  }
  .mv_course_inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3.2rem;
    padding: 0 4rem 2.4rem 1.5rem;
    border-bottom: .2rem solid var(--mainColor-red);
  }
  .mv_course_head {
    flex: 1;
    min-width: 0;
  }
  .mv_course_label {
    font-size: 1.9rem;
    /* MOD: */
    color: #fff;
  }
  .mv_course_tit {
    font-size: 3rem;
    /* MOD: */
    color: #fff;
  }
  .mv_course_arrow img {
    width: 3.2rem;
  }
  .mv_news {
    position: absolute;
    left: 5rem;
    bottom: 3.3rem;
    z-index: 4;
    width: 42rem;
  }
  .mv_news_thumb {
    width: 15rem;
    height: 15rem;
  }
  .mv_news_body {
    flex: 1;
    padding: 3.6rem 2rem 1.6rem;
  }
  .mv_news_txt {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 992px) {
  .mv_side {
    padding-top: 6rem;
  }
  .mv_news {
    width: 52rem;
  }
  .mv_news_thumb {
    width: 20.5rem;
    height: 20.5rem;
  }
}

@media print, screen and (min-width: 1920px) {
  .mv_inner {
    max-width: 1920px;
    margin-right: 0;
    margin-left: auto;
  }
  .mv_news {
    width: 58rem;
  }
}
@media print, screen and (min-width: 2300px) {
  .mv_inner {
    max-width: 2300px;
  }
  .mv_visual {
    width: 63%;
  }
  .mv_side {
    width: 37%;
  }
  .mv_logo img {
    width: 30%;
  }
  .mv_news {
    width: 84rem;
    left: 8.5%;
  }
  .mv_news_thumb {
    width: 25rem;
    height: 25rem;
  }
  .mv_news_txt {
    font-size: 2.2rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   CONCEPT

--------------------------------------------------------------------------------------------- */

#concept {
  position: relative;
}
#concept .container {
  position: relative;
  z-index: 2;
}
.concept_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/top/concept_bg.jpg") no-repeat top right / auto;
  pointer-events: none;
}
.concept_label {
  color: var(--mainColor-red);
  line-height: 1;
  font-weight: 500;
}
.concept_tit {
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.5;
}
.concept_ph {
  position: relative;
}
.concept_ph_main,
.concept_ph_sub {
  margin: 0;
  line-height: 0;
}
.concept_ph_main img,
.concept_ph_sub img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
.concept_txt p {
  margin: 0;
  line-height: 2;
}
.concept_txt p + p {
  margin-top: 2rem;
}
.concept_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: #F1DADA;
  color: var(--mainColor-red);
  border-radius: 10rem;
  text-decoration: none;
  transition: opacity 0.3s;
  font-weight: 700;
}
.concept_btn:hover {
  opacity: 0.7;
}
.concept_btn::after {
  content: "";
  flex-shrink: 0;
  width: 1.82rem;
  height: 1.75rem;
  background: url("../img/arrow02.svg") no-repeat center / contain;
}

@media only screen and (max-width: 767px) {
  .concept_bg {
    background-size: 43rem auto;
  }
  .concept_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .concept_body {
    display: contents;
  }
  .concept_label {
    order: 1;
    align-self: flex-start;
    font-size: 1.2rem;
  }
  .concept_tit {
    order: 2;
    align-self: flex-start;
    margin-top: 1.6rem;
    font-size: 2.2rem;
  }
  .concept_visual {
    order: 3;
    width: 100%;
    margin-top: 3rem;
  }
  .concept_ph {
  }
  .concept_ph_sub {
    right: 0;
    width: 22rem;
    position: relative;
    margin-left: auto;
    margin-top: -6rem;
  }
  .concept_ph_main {
    width: 33.5rem;
  }
  .concept_ph_sub {
    width: 19.5rem;
  }
  .concept_ph_main img, .concept_ph_sub img {
    border-radius: 1rem;
  }
  .concept_txt {
    order: 4;
    width: 100%;
    margin-top: 3rem;
    font-size: 1.5rem;
  }
  .concept_btn {
    order: 5;
    width: 100%;
    max-width: 25rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    height: 6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .concept_bg {
    background-size: 68rem auto;
    top: -5.5rem;
  }
  .concept_inner {
    display: flex;
    align-items: center;
    gap: 8rem;
  }
  .concept_visual {
    flex: 1 1 0;
    min-width: 0;
  }
  .concept_ph {
    width: 100%;
    position: relative;
  }
  .concept_ph_main {
    margin-left: -20rem;
    width: 70rem;
  }
  .concept_ph_sub {
    right: 0;
    width: 42rem;
    position: relative;
    margin-left: auto;
    margin-top: -4rem;
  }
  .concept_body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .concept_label {
    font-size: 2rem;
  }
  .concept_tit {
    margin-top: 4rem;
    font-size: 3.8rem;
    margin-bottom: 6rem;
  }
  .concept_txt {
    font-size: 2rem;
  }
  .concept_btn {
    align-self: flex-start;
    margin-top: 4rem;
    padding: 2rem 4rem;
    font-size: 1.8rem;
    gap: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .concept_ph_main {
    margin-left: -20rem;
    width: 83rem;
  }
  .concept_ph_sub {
    width: 48.4rem;
    margin-top: -4rem;
  }
  .concept_tit {
    font-size: 4.4rem;
  }
} 
/* ---------------------------------------------------------------------------------------------

　   TRAVEL TIPS

--------------------------------------------------------------------------------------------- */
#travel-tips {
  padding-top: 0;
}
.travel_tips_head {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.travel_tips_tit img {
  display: block;
}
.travel_tips_lead {
  color: var(--mainColor-red);
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.travel_tips_list {
  display: grid;
}
.tips_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--mainColor-red);
  background: #fff;
  color: var(--mainColor-red);
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.tips_btn::after {
  content: "";
  position: absolute;
  background: var(--mainColor-red);
  border-bottom-right-radius: 0.4rem;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: background 0.3s;
}
.tips_btn:hover,
.tips_btn.is-current {
  background: var(--mainColor-red);
  color: #fff;
}
.tips_btn:hover::after,
.tips_btn.is-current::after {
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .travel_tips_head {
    flex-direction: column;
    gap: 0.8rem;
  }
  .travel_tips_tit img {
    width: 20rem;
  }
  .travel_tips_lead {
    font-size: 1.8rem;
  }
  .travel_tips_list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.4rem;
  }
  .travel_tips_list li .tips_btn {
    height: 5rem;
    padding: 1rem;
    border: none;
    border-right: 1px solid var(--mainColor-red);
    border-bottom: 1px solid var(--mainColor-red);
    font-size: 1.3rem;
  }
  .travel_tips_list li:nth-child(odd) .tips_btn {
    border-left: 1px solid var(--mainColor-red);
  }
  .travel_tips_list li:nth-child(-n+2) .tips_btn {
    border-top: 1px solid var(--mainColor-red);
  }
  .tips_btn::after {
    right: 0.3rem;
    bottom: 0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    border-bottom-right-radius: 0.3rem;
  }
}

@media print, screen and (min-width: 768px) {
  .travel_tips_tit img {
    width: 23.6rem;
  }
  .travel_tips_lead {
    font-size: 2.1rem;
  }
  .travel_tips_list {
    grid-template-columns: repeat(6, 1fr);
    margin-top: 3rem;
    gap: 1.2rem;
  }
  .tips_btn {
    height: 6rem;
    font-size: 1.8rem;
  }
  .tips_btn::after {
    right: 0.4rem;
    bottom: 0.4rem;
    width: 1.8rem;
    height: 1.8rem;
    border-bottom-right-radius: 0.5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TOPIC（TOP固有）

--------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------

　   TOPIC

--------------------------------------------------------------------------------------------- */

#topic {
  position: relative;
  background: var(--bgColor-ivory);
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  #topic .topic_tit {
    font-size: 3.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  #topic .topic_tit {
    writing-mode: vertical-rl;
    font-size: 5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TOUR（TOP固有）

--------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------

　   TOUR

--------------------------------------------------------------------------------------------- */

#tour {
  position: relative;
}
#tour:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  background: url("../img/mountain02.png") no-repeat center / 100%;
  z-index: 1;
}
#tour .container {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------------------------------------

　   MODEL COURSE（TOP固有）

--------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------

　   KEYWORDS（TOP固有）

--------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------

　   KEYWORDS

--------------------------------------------------------------------------------------------- */

#keywords {
  position: relative;
  padding: 6rem 0 0;
  z-index: 2;
}
#keywords .container {
  position: relative;
  z-index: 10;
}
.keywords_tit {
  margin: 0;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.keywords_search {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  padding: 0 2rem 0 2.4rem;
  border: 1px solid var(--textColor-black);
  border-radius: 10rem;
  background: #fff;
}
.keywords_search:focus-within {
  border-color: var(--mainColor-red);
}
.keywords_input {
  display: block;
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 1.6rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--textColor-black);
  line-height: 1.4;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.keywords_input:focus {
  border-color: transparent;
}
.keywords_search_btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--textColor-black);
  cursor: pointer;
  line-height: 0;
}
.keywords_sub_tit {
  margin: 0;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.keywords_ph {
  line-height: 0;
}
.keywords_ph picture,
.keywords_ph img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  #keywords {
    padding: 3.75rem 0 0;
  }
  .keywords_tit {
    font-size: 2rem;
  }
  .keywords_search {
    margin-top: 2.4rem;
    padding: 0 1.6rem 0 2rem;
  }
  .keywords_recommend {
    margin-top: 4rem;
  }
  .keywords_sub_tit {
    font-size: 2.2rem;
  }
  #keywords .keywords_list {
    margin-top: 2.4rem;
  }
  .keywords_ph {
    margin-bottom: -10rem;
  }
}

@media print, screen and (min-width: 768px) {
  .keywords_tit {
    font-size: 3rem;
  }
  .keywords_search {
    margin-top: 4rem;
    padding: 0 3rem;
  }
  .keywords_input {
    padding: 2rem 0;
    font-size: 1.8rem;
  }
  .keywords_search_btn svg {
    width: 3rem;
    height: 3rem;
  }
  .keywords_recommend {
    margin-top: 8rem;
  }
  .keywords_sub_tit {
    font-size: 3.2rem;
  }
  #keywords .keywords_list {
    margin-top: 4rem;
    gap: 1.2rem;
  }
  .keywords_ph {
    margin-bottom: -16vw;
  }
}

/* ---------------------------------------------------------------------------------------------

　   News

--------------------------------------------------------------------------------------------- */

#news {
  position: relative;
  color: #fff;
}
#news .container {
  position: relative;
  z-index: 1;
}
.news_tit {
  margin: 0;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.news_more {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.3s;
}
.news_more:hover {
  opacity: 0.7;
}
.news_more img {
  display: block;
  width: 100%;
  height: auto;
}
.news_list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #fff;
}
.news_list li {
  border-bottom: 1px solid #fff;
}
.news_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.news_item:hover {
  opacity: 0.7;
}
.news_item_body {
  flex: 1;
  min-width: 0;
}
.news_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
.news_item_tit {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.news_item::after {
  content: "";
  flex-shrink: 0;
  align-self: center;
  width: 2.2rem;
  height: 3.3rem;
  background: url("../img/arrow-white02.svg") no-repeat center / contain;
}

@media only screen and (max-width: 767px) {
  #news {
    background: url("../img/ph_bg_image_sp.jpg") no-repeat center / cover;
    padding: 12rem 0 8rem;
  }
  .news_inner {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
  }
  .news_side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
  }
  .news_more {
    flex-shrink: 0;
    width: 8.4rem;
  }
  .news_item {
    padding: 3rem 1rem 3rem 0;
    gap: 2rem;
  }
  .news_item_tit {
    font-size: 1.8rem;
  }
  .news_meta time {
    font-size: 1.6rem;
  }
  .news_meta .news_cat {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  #news {
    padding: 24vw 0 16rem;
    background: url("../img/ph_bg_image.jpg") no-repeat center / cover;
  }
  .news_inner {
    display: flex;
    align-items: flex-start;
    gap: 8rem;
  }
  .news_side {
    /* flex: 0 0 28%; */
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 38.8235294%;
  }
  .news_more {
    width: 14.2rem;
  }
  .news_body {
    width: 78%;
  }
  .news_tit {
    font-size: 7rem;
  }
  .news_item {
    height: 25rem;
    padding: 3rem 3rem 3rem 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .news_meta {
    gap: 3rem;
  }
  .news_meta time {
    font-size: 2.2rem;
  }
  .news_meta .news_cat {
    font-size: 1.7rem;
  }
  .news_item_tit {
    margin-top: 4rem;
    font-size: 2.2rem;
  }
  .news_item::after {
    width: 2.2rem;
    height: 3.3rem;
  }
}

@media (max-width: 899px) and (min-width: 768px) {
  .news_body {
    width: 61.1764706%;
  }
}

@media screen and (min-width: 992px) {
  .news_tit {
    font-size: 8rem;
  }
} 

/* ---------------------------------------------------------------------------------------------

　   Instagram

--------------------------------------------------------------------------------------------- */

#instagram .container > picture img {
  display: block;
  width: 100%;
  height: auto;
}
.insta_head {
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta_tit,
.insta_sub_tit {
  margin: 0;
  line-height: 0;
}
.insta_tit img,
.insta_sub_tit img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  #instagram {
    padding: 3rem 0;
  }
  .insta_head {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 3rem;
  }
  .insta_tit img {
    width: 20rem;
  }
  .insta_sub_tit img {
    width: 28rem;
  }
}

@media print, screen and (min-width: 768px) {
  #instagram {
    padding: 6rem 0;
  }
  .insta_head {
    flex-direction: row;
    margin-bottom: 6rem;
  }
  .insta_tit img {
    width: 31rem;
  }
  .insta_sub_tit img {
    width: 42rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

/*
#mv_slider-slide01 .mv_course {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin-top: 0;
}
*/
@media only screen and (max-width: 767px) {
  .mv_visual {
    overflow: hidden;
    transition: height 0.5s ease;
  }
}
