@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Monda:wght@400;700&family=Noto+Sans+JP:wght@100..900&display=swap");
@media print,
screen and (min-width: 992px) {
  .no_pc {
    display: none !important;
  }
}

@media print,
screen and (max-width: 992px) {
  .no_sp {
    display: none !important;
  }
}

@media print,
screen and (min-width: 1200px) {
  .container_width {
    max-width: 960px !important;
  }
}

@media print,
screen and (min-width: 1200px) {
  .container_topics {
    max-width: 1220px !important;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
}

@media print,
screen and (min-width: 992px) {
  body {
    background-image: url(../images/bg_lp_pc.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

@media print,
screen and (max-width: 992px) {
  body {
    background-color: #000000;
  }
}

body.over_hidden {
  overflow: hidden;
}

body .start_logo {
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 5000;
}

body .start_logo p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 6000;
}

body .start_logo .start_brown {
  position: fixed;
  top: 300%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6C5F5F;
  z-index: 7000;
  transition: 1s;
}

body .start_logo .start_brown.is_brown {
  top: 0;
}

body .start_logo .start_brown::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 60px solid #6C5F5F;
  border-left: 100vw solid transparent;
  z-index: 1;
}

body header {
  padding: 120px 0 0;
  background-color: #6C5F5F;
}

@media print,
screen and (max-width: 992px) {
  body header {
    padding: 50px 0 0;
  }
}

body header .header_sp_logo {
  text-align: center;
}

@media print,
screen and (min-width: 992px) {
  body header .header_sp_logo {
    display: none;
  }
}

body header .header_sp_logo>img {
  width: 200px;
}

body header .h_section_list {
  position: relative;
  text-align: center;
}

@media print,
screen and (max-width: 992px) {
  body header .h_section_list {
    position: fixed;
    right: -100%;
    top: 0;
    width: 90%;
    height: 100vh;
    z-index: 10;
    transition: 0.7s;
    background-color: #333333;
    visibility: hidden;
    overflow: hidden;
  }

  body header .h_section_list.is_visible {
    visibility: visible;
    right: 0;
  }
}

body header .h_section_list>img {
  max-width: 100%;
}

@media print,
screen and (min-width: 992px) {
  body header .h_section_list>img {
    transition: 1s;
    transform: translateY(100vh);
  }

  body header .h_section_list>img.is_logo {
    transform: translate(0);
  }
}

@media print,
screen and (max-width: 992px) {
  body header .h_section_list>img {
    display: none;
  }
}

body header .h_section_list .header_list {
  position: absolute;
  top: 50%;
}

@media print,
screen and (min-width: 992px) {
  body header .h_section_list .header_list {
    text-align: left;
    right: 0;
    transform: translateY(100vh);
    width: 265px;
    transition: 1s;
  }

  body header .h_section_list .header_list.is_list {
    transform: translateY(-50%);
  }
}

@media print,
screen and (max-width: 992px) {
  body header .h_section_list .header_list {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

body header .h_section_list .header_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

body header .h_section_list .header_list ul li a {
  display: flex;
  overflow: hidden;
  position: relative;
  font-family: "Monda", sans-serif;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1rem;
  margin: 25px 0;
}

@media print,
screen and (min-width: 992px) {
  body header .h_section_list .header_list ul li a {
    padding-left: 90px;
  }
}

@media print,
screen and (max-width: 992px) {
  body header .h_section_list .header_list ul li a {
    margin: 30px 0;
  }
}

@media print,
screen and (min-width: 992px) {
  body header .h_section_list .header_list ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    display: inline-block;
    width: 70px;
    height: 1px;
    border-top: solid 1px #9F8888;
    transition: 0.7s;
  }
}

body header .h_section_list .header_list ul li a span {
  white-space-collapse: collapse;
  text-wrap: nowrap;
}

body header .h_section_list .header_list ul li a span:nth-child(1) {
  min-width: 100%;
  transition-duration: 0.6s;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

body header .h_section_list .header_list ul li a span:nth-child(2) {
  position: absolute;
  left: 90px;
  top: 5%;
  -webkit-transform: translateY(105%);
  transform: translateY(105%);
  transition-duration: 0.4s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.115, 0.405, 0.24, 1);
}

@media print,
screen and (max-width: 992px) {
  body header .h_section_list .header_list ul li a span:nth-child(2) {
    left: 50%;
    transform: translate(-50%, 105%);
  }
}

body header .h_section_list .header_list ul li a:hover::before {
  border-top: solid 1px #FFFFFF;
}

body header .h_section_list .header_list ul li a:hover span:nth-child(1) {
  transform: translateY(-105%);
}

body header .h_section_list .header_list ul li a:hover span:nth-child(2) {
  transform: translateY(0);
}

@media print,
screen and (max-width: 992px) {
  body header .h_section_list .header_list ul li a:hover span:nth-child(2) {
    transform: translate(-50%, 0);
  }
}

body header .header_watch_box {
  position: relative;
  transform: translateY(20%);
  z-index: 2;
}

@media print,
screen and (min-width: 992px) {
  body header .header_watch_box {
    text-align: center;
    transform: translateY(45%);
  }
}

@media print,
screen and (max-width: 992px) {
  body header .header_watch_box {
    transform: none;
    margin-right: calc(-50vw + 50%);
    margin-left: calc(-50vw + 50%);
  }
}

body header .header_watch_box h1 {
  position: absolute;
  top: 0;
  left: 2%;
  transform: translateY(-15%);
  font-family: "Monda", sans-serif;
  color: #FFFFFF;
  letter-spacing: 0.3rem;
  line-height: 1.5;
  font-size: 4rem;
  font-weight: bold;
}

@media print,
screen and (min-width: 992px) {
  body header .header_watch_box h1 {
    transition: 1s;
    transform: translateY(100vh);
    text-align: left;
  }

  body header .header_watch_box h1.is_title {
    transform: translateY(-85%);
  }
}

@media print,
screen and (max-width: 992px) {
  body header .header_watch_box h1 {
    position: relative;
    font-size: 2.6rem;
    left: 0%;
    transform: translateY(10%);
    line-height: 1.3;
    margin: 0 20px;
  }
}

@media print,
screen and (min-width: 992px) {
  body header .header_watch_box img {
    width: 85%;
    margin: 0 auto;
  }
}

body header .h_menu {
  position: fixed;
  right: 5px;
  top: 5px;
  z-index: 90;
}

body header .h_menu>a {
  display: block;
  position: relative;
  top: 0px;
  left: 0px;
  width: 55px;
  height: 55px;
}

body header .h_menu>a span {
  display: block;
  position: absolute;
  transition: 0.5s;
  top: 45%;
  left: 0%;
}

body header .h_menu>a span::before {
  content: "";
  display: block;
  position: absolute;
  transition: 0.5s;
  top: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #FFFFFF;
}

body header .h_menu>a span::after {
  content: "";
  display: block;
  position: absolute;
  transition: 0.5s;
  top: 5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #FFFFFF;
}

body header .h_menu>a.is_open span {
  width: 0;
}

body header .h_menu>a.is_open span::before {
  transform: rotate(45deg);
  top: 5px;
  width: 35px;
}

body header .h_menu>a.is_open span::after {
  transform: rotate(-45deg);
  top: 5px;
  width: 35px;
}

body .black_btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000000;
  z-index: 100;
  display: none;
}

body .black_btn.is_black {
  display: block;
  opacity: 0.7;
}

body main .concept_box {
  text-align: center;
  padding: 320px 0 150px;
  color: #FFFFFF;
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 90%), transparent;
  z-index: 2;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box {
    padding: 80px 0 120px;
    background: transparent;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 70%), url(../images/bg_lp_sp.png);
    background-size: contain;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

@media print,
screen and (min-width: 992px) {
  body main .concept_box .concept_bg_top>div>div:first-of-type>div {
    position: absolute;
    left: 4%;
    width: 320px;
  }

  body main .concept_box .concept_bg_top>div>div:first-of-type>div img {
    display: block;
    height: auto;
    width: 100%;
  }

  body main .concept_box .concept_bg_top>div>div:last-of-type>div {
    position: absolute;
    right: 4%;
    margin-top: 80px;
    width: 300px;
  }

  body main .concept_box .concept_bg_top>div>div:last-of-type>div img {
    display: block;
    height: auto;
    width: 100%;
  }
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_bg_top>div {
    justify-content: space-between;
  }

  body main .concept_box .concept_bg_top>div>div:last-of-type img {
    margin-top: 80px;
  }
}

body main .concept_box .concept_txt_box {
  margin-top: 300px;
  margin-bottom: 50px;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_txt_box {
    margin-top: 50px;
  }
}

body main .concept_box .concept_txt_box h1 {
  font-weight: bold;
  font-size: 4rem;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.3rem;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_txt_box h1 {
    font-size: 2rem;
  }
}

body main .concept_box .concept_txt_box h4 {
  font-size: 1.4rem;
  margin: 3rem 0 2rem;
  line-height: 1.8;
  letter-spacing: 0.5rem;
  font-weight: 100;
  color: #FFFFFF;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_txt_box h4 {
    font-size: 1.1rem;
    letter-spacing: 0.3rem;
    line-height: 2;
    font-weight: bold;
  }
}

body main .concept_box .concept_txt_box p {
  font-size: 1rem;
  line-height: 2.8;
  letter-spacing: 0.1rem;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_txt_box p {
    text-align: left;
    line-height: 2;
  }
}

body main .concept_box .concept_bg_bottom>div {
  position: absolute;
}

body main .concept_box .concept_bg_bottom>div:first-of-type {
  left: 15%;
  width: 400px;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_bg_bottom>div:first-of-type {
    left: 5%;
    width: 200px;
  }
}

body main .concept_box .concept_bg_bottom>div:first-of-type img {
  display: block;
  height: auto;
  width: 100%;
}

body main .concept_box .concept_bg_bottom>div:last-of-type {
  right: 15%;
  width: 370px;
  margin-top: 70px;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_bg_bottom>div:last-of-type {
    right: 5%;
    width: 300px;
    margin-top: 160px;
  }
}

body main .concept_box .concept_bg_bottom>div:last-of-type img {
  display: block;
  height: auto;
  width: 100%;
}

body main .concept_box .concept_store_box {
  margin-top: 500px;
}

body main .concept_box .concept_store_box>div {
  border: 4px solid #332D2C;
  padding: 60px 30px 50px;
  text-align: left;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_store_box>div {
    padding: 30px 20px 30px;
  }
}

body main .concept_box .concept_store_box>div>div {
  align-items: center;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_store_box>div>div {
    text-align: center;
  }
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_store_box>div>div img {
    width: 200px;
  }
}

body main .concept_box .concept_store_box>div>div h3 {
  font-size: 1.4rem;
  position: relative;
  vertical-align: middle;
  margin-bottom: 2rem;
  padding-left: 1rem;
  letter-spacing: 0.5rem;
  font-weight: 100;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_store_box>div>div h3 {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}

body main .concept_box .concept_store_box>div>div h3::before {
  content: "FROM THE STORE";
  font-family: "Monda", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  vertical-align: middle;
  color: #332D2C;
  z-index: -1;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_store_box>div>div h3::before {
    font-size: 2rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

body main .concept_box .concept_store_box>div>div p {
  margin-bottom: 0;
  line-height: 2;
  font-weight: 100;
  letter-spacing: 0.1rem;
}

@media print,
screen and (max-width: 992px) {
  body main .concept_box .concept_store_box>div>div p {
    text-align: left;
  }
}

body main .concept_box .concept_store_box>div>div p span {
  font-size: 0.9rem;
}

body main .topic_box {
  background-color: #6C5F5F;
  padding: 180px 0;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box {
    padding: 90px 0;
  }
}

body main .topic_box>div {
  justify-content: space-between;
}

@media print,
screen and (min-width: 992px) {
  body main .topic_box>div .topic_txt_box {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    align-items: center;
  }
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div .topic_txt_box {
    text-align: center;
  }
}

body main .topic_box>div .topic_txt_box h1 {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 4rem;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.3rem;
  margin: 0;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div .topic_txt_box h1 {
    font-size: 2rem;
  }
}

body main .topic_box>div .topic_txt_box span {
  display: inline-block;
  margin-top: 40px;
  color: #FFFFFF;
  letter-spacing: 0.3rem;
  font-size: 1.1rem;
  font-weight: 100;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div .topic_txt_box span {
    margin-top: 20px;
  }
}

body main .topic_box>div img {
  filter: drop-shadow(1px 3px 5px #837676);
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div img {
    width: 200px;
    margin: 30px 0;
  }
}

body main .topic_box>div h3 {
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  color: #FFFFFF;
  font-weight: 300;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div h3 {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

body main .topic_box>div p {
  margin: 50px 0 0;
  color: #FFFFFF;
  line-height: 2.2;
  letter-spacing: 0.1rem;
  font-weight: 100;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div p {
    margin: 30px 0;
  }
}

body main .topic_box>div a {
  display: block;
  text-align: right;
  text-decoration: none;
  padding: 20px 0;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.1rem;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  margin-top: 50px;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div a {
    text-align: center;
    margin-top: 0;
  }
}

body main .topic_box>div a span {
  display: inline-block;
  color: #FFFFFF;
  transform: translate(20%);
  transition: 0.5s;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div a span {
    display: block;
    transform: translate(0);
  }
}

body main .topic_box>div a span::after {
  content: "→";
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 3rem;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div a span::after {
    position: absolute;
    right: 0;
  }
}

body main .topic_box>div a .line_container {
  width: 100%;
  height: 1px;
  background-color: #9F8888;
  position: absolute;
  left: 0;
  transition: width 0.5s ease;
}

body main .topic_box>div a .line_container.top {
  top: 0;
}

body main .topic_box>div a .line_container.bottom {
  bottom: 0;
}

body main .topic_box>div a .line_container>.line {
  width: 0;
  height: 100%;
  background-color: #FFFFFF;
  transition: width 0.5s ease;
}

@media print,
screen and (max-width: 992px) {
  body main .topic_box>div a:hover {
    opacity: 0.7;
  }
}

body main .topic_box>div a:hover span {
  transform: translate(0);
}

body main .topic_box>div a:hover .line_container>.line {
  width: 100%;
}

body main .recommend_box {
  padding: 180px 0 230px;
  color: #FFFFFF;
  position: relative;
  background-color: transparent;
  z-index: 2;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box {
    padding: 100px 0 100px;
    background: url(../images/bg_lp_sp.png);
    background-size: contain;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

body main .recommend_box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #6C5F5F;
  z-index: -1;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box::after {
    height: 70%;
  }
}

body main .recommend_box .recommend_title {
  text-align: left;
  font-weight: bold;
  font-size: 4rem;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.3rem;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box .recommend_title {
    font-size: 2rem;
    text-align: center;
    letter-spacing: normal;
  }
}

body main .recommend_box .recommend_subtitle {
  display: block;
  margin: 2rem 0 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box .recommend_subtitle {
    text-align: center;
    margin: 1.5rem 0 2.5rem;
  }
}

body main .recommend_box .recommend_txt {
  font-weight: 100;
  letter-spacing: 0.1rem;
  line-height: 2;
}

body main .recommend_box ul {
  padding: 0;
  margin: 50px 0 0;
  list-style: none;
  justify-content: space-between;
}

body main .recommend_box ul li {
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media print,
screen and (min-width: 992px) {
  body main .recommend_box ul li {
    width: 30%;
    display: flex;
    flex-direction: column;
  }
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li {
    text-align: center;
  }

  body main .recommend_box ul li:not(:last-child) {
    margin-bottom: 3rem;
  }
}

body main .recommend_box ul li>.recommend_img {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  transition: 0.5s;
  overflow: hidden;
  filter: drop-shadow(1px 3px 5px #837676);
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.recommend_img {
    margin: 0 auto;
    width: 300px;
  }
}

body main .recommend_box ul li>.recommend_img.reco_01 {
  background-image: url(../images/recommend_img_01_main.png);
}

body main .recommend_box ul li>.recommend_img.reco_01:hover {
  background-image: url(../images/recommend_img_01.png);
}

body main .recommend_box ul li>.recommend_img.reco_02 {
  background-image: url(../images/recommend_img_02_main.png);
}

body main .recommend_box ul li>.recommend_img.reco_02:hover {
  background-image: url(../images/recommend_img_02.png);
}

body main .recommend_box ul li>.recommend_img.reco_03 {
  background-image: url(../images/recommend_img_03_main.png);
}

body main .recommend_box ul li>.recommend_img.reco_03:hover {
  background-image: url(../images/recommend_img_03.png);
}

body main .recommend_box ul li>.recommend_img::before {
  content: "";
  display: block;
  padding-top: 150%;
  filter: drop-shadow(1px 3px 5px #837676);
}

body main .recommend_box ul li>p {
  font-size: 1.1rem;
  font-weight: 100;
  letter-spacing: 0.1rem;
  margin: 30px 0;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>p {
    text-align: left;
  }
}

body main .recommend_box ul li>a {
  display: block;
  text-align: right;
  text-decoration: none;
  padding: 20px 0;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.1rem;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

@media print,
screen and (min-width: 992px) {
  body main .recommend_box ul li>a {
    margin-top: auto;
  }
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>a {
    text-align: center;
  }
}

body main .recommend_box ul li>a span {
  display: inline-block;
  color: #FFFFFF;
  transform: translate(20%);
  transition: 0.5s;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>a span {
    display: block;
    transform: translate(0);
  }
}

body main .recommend_box ul li>a span::after {
  content: "→";
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 4rem;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>a span::after {
    position: absolute;
    right: 0;
  }
}

body main .recommend_box ul li>a .line_container {
  width: 100%;
  height: 1px;
  background-color: #9F8888;
  position: absolute;
  left: 0;
  transition: width 0.5s ease;
}

body main .recommend_box ul li>a .line_container.top {
  top: 0;
}

body main .recommend_box ul li>a .line_container.bottom {
  bottom: 0;
}

body main .recommend_box ul li>a .line_container>.line {
  width: 0;
  height: 100%;
  background-color: #FFFFFF;
  transition: width 0.5s ease;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>a:hover {
    opacity: 0.7;
  }
}

body main .recommend_box ul li>a:hover span {
  transform: translate(0);
}

body main .recommend_box ul li>a:hover .line_container>.line {
  width: 100%;
}

body main .recommend_box ul li>.reco_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #6C5F5F;
  width: 70%;
  max-height: 80vh;
  overflow: scroll;
  z-index: 110;
  transition: 0.7s;
  opacity: 0;
  visibility: hidden;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal {
    width: 90%;
  }
}

body main .recommend_box ul li>.reco_modal.is_open_modal {
  opacity: 1;
  visibility: visible;
}

body main .recommend_box ul li>.reco_modal .modal_close {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #333333;
  font-size: 24px;
  text-decoration: none;
  color: #FFFFFF;
  padding: 0px 10px 5px;
  z-index: 120;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal .modal_close {
    top: 10px;
    right: 15px;
  }
}

body main .recommend_box ul li>.reco_modal>div {
  position: relative;
  padding: 50px 50px;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div {
    padding: 20px 15px 20px;
  }
}

body main .recommend_box ul li>.reco_modal>div img {
  filter: drop-shadow(1px 3px 5px #837676);
}

body main .recommend_box ul li>.reco_modal>div h1 {
  color: #000000;
  font-size: 1.6rem;
  color: #FFFFFF;
  letter-spacing: 0.3rem;
  line-height: 1.7;
  font-weight: 400;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div h1 {
    text-align: left;
    font-size: 1.1rem;
  }
}

body main .recommend_box ul li>.reco_modal>div h5 {
  font-size: 1rem;
  font-weight: 100;
  letter-spacing: 0.1rem;
  margin: 30px 0;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div h5 {
    text-align: left;
    font-size: 0.9rem;
  }
}

body main .recommend_box ul li>.reco_modal>div p {
  background-color: #FFFFFF;
  color: #333333;
  margin-bottom: 0;
  padding: 30px 40px;
  letter-spacing: 0.1rem;
  line-height: 1.7;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div p {
    text-align: left;
    font-size: 0.9rem;
    padding: 20px 20px;
  }
}

body main .recommend_box ul li>.reco_modal>div h6 {
  text-align: right;
  margin: 25px 0 0;
  letter-spacing: 0.1rem;
  font-size: 1rem;
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn {
  display: block;
  text-align: right;
  text-decoration: none;
  padding: 20px 0;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.1rem;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  margin-top: 30px;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div .modal_more_btn {
    text-align: center;
    margin-top: 30px;
  }
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn span {
  display: inline-block;
  color: #FFFFFF;
  transform: translate(20%);
  transition: 0.5s;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div .modal_more_btn span {
    display: block;
    transform: translate(0);
  }
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn span::after {
  content: "→";
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 3rem;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div .modal_more_btn span::after {
    position: absolute;
    right: 0;
  }
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn .line_container {
  width: 100%;
  height: 1px;
  background-color: #9F8888;
  position: absolute;
  left: 0;
  transition: width 0.5s ease;
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn .line_container.top {
  top: 0;
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn .line_container.bottom {
  bottom: 0;
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn .line_container>.line {
  width: 0;
  height: 100%;
  background-color: #FFFFFF;
  transition: width 0.5s ease;
}

@media print,
screen and (max-width: 992px) {
  body main .recommend_box ul li>.reco_modal>div .modal_more_btn:hover {
    opacity: 0.7;
  }
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn:hover span {
  transform: translate(0);
}

body main .recommend_box ul li>.reco_modal>div .modal_more_btn:hover .line_container>.line {
  width: 100%;
}

body main .information_box {
  padding: 150px 0 150px;
  color: #FFFFFF;
  position: relative;
  min-height: 100vh;
  background-color: transparent;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box {
    padding: 80px 0 120px;
    background: url(../images/bg_lp_sp.png);
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

body main .information_box h1 {
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.3rem;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box h1 {
    font-size: 2rem;
  }
}

body main .information_box h5 {
  text-align: center;
  display: block;
  margin: 2rem 0 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box h5 {
    margin: 1.5rem 0 2rem;
  }
}

body main .information_box .information_link {
  text-decoration: none;
  transition: 0.5s;
  display: none;
}

body main .information_box .information_link.is_hidden {
  opacity: 0;
  display: none;
  height: 0;
  margin: 0;
}

body main .information_box .information_link.is_visible {
  display: block;
}

body main .information_box .information_link .information_flex {
  text-decoration: none;
  color: #FFFFFF;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_link .information_flex {
    align-items: end;
    padding: 30px 0;
  }
}

@media print,
screen and (min-width: 992px) {
  body main .information_box .information_link .information_flex>.colum_info {
    padding: 0;
  }

  body main .information_box .information_link .information_flex>.colum_info:first-child {
    width: 20%;
  }

  body main .information_box .information_link .information_flex>.colum_info:nth-child(2) {
    width: 70%;
  }

  body main .information_box .information_link .information_flex>.colum_info:nth-child(3) {
    width: 3%;
    transition: 0.5s;
    transform: translate(20px);
  }
}

body main .information_box .information_link .information_flex>.colum_info img {
  filter: drop-shadow(1px 3px 5px #837676);
}

body main .information_box .information_link .information_flex>.colum_info .date {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  color: #9F8888;
  display: inline-block;
  margin-bottom: 20px;
  transition: 0.5s;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_link .information_flex>.colum_info .date {
    text-align: left;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
}

body main .information_box .information_link .information_flex>.colum_info h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_link .information_flex>.colum_info h3 {
    font-size: 1rem;
  }
}

body main .information_box .information_link .information_flex>.colum_info .arrow {
  display: block;
  text-align: right;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_link .information_flex>.colum_info .arrow {
    margin-top: 10px;
  }
}

body main .information_box .information_link .information_flex .line_container {
  width: 100%;
  height: 1px;
  background-color: #9F8888;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.5s ease;
  padding: 0;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_link .information_flex .line_container {
    width: 95vw;
    left: 50%;
    transform: translate(-50%);
  }
}

body main .information_box .information_link .information_flex .line_container.top {
  top: 0;
}

body main .information_box .information_link .information_flex .line_container.bottom {
  bottom: 0;
}

body main .information_box .information_link .information_flex .line_container>.line {
  width: 0;
  height: 100%;
  background-color: #FFFFFF;
  transition: width 0.5s ease;
}

body main .information_box .information_link:hover .information_flex>.colum_info .date {
  color: #FFFFFF;
}

body main .information_box .information_link:hover .colum_info:nth-child(3) {
  transform: translate(0px);
}

body main .information_box .information_link:hover .line_container>.line {
  width: 100%;
}

body main .information_box .information_more_btn {
  text-align: center;
}

body main .information_box .information_more_btn a {
  display: inline-block;
  text-decoration: none;
  margin-top: 60px;
  padding: 20px 0px;
  width: 300px;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.1rem;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_more_btn a {
    padding: 20px 0;
    width: 300px;
  }
}

body main .information_box .information_more_btn a span {
  display: inline-block;
  color: #FFFFFF;
  transition: 0.5s;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_more_btn a span {
    display: block;
    transform: translate(0);
  }
}

body main .information_box .information_more_btn a span::after {
  content: "+";
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  right: 5%;
  transition: 0.5s;
}

body main .information_box .information_more_btn a.more_js_btn.is_click span::after {
  content: "ー";
}

body main .information_box .information_more_btn a.more_js_btn.is_click:hover span::after {
  transform: translate(0);
}

body main .information_box .information_more_btn a .line_container {
  width: 100%;
  height: 1px;
  background-color: #9F8888;
  position: absolute;
  left: 0;
  transition: width 0.5s ease;
}

body main .information_box .information_more_btn a .line_container.top {
  top: 0;
}

body main .information_box .information_more_btn a .line_container.bottom {
  bottom: 0;
}

body main .information_box .information_more_btn a .line_container>.line {
  width: 0;
  height: 100%;
  background-color: #FFFFFF;
  transition: width 0.5s ease;
}

@media print,
screen and (max-width: 992px) {
  body main .information_box .information_more_btn a:hover {
    opacity: 0.7;
  }
}

body main .information_box .information_more_btn a:hover span::after {
  transform: rotate(90deg);
}

body main .information_box .information_more_btn a:hover .line_container>.line {
  width: 100%;
}

body main .access_box {
  padding: 100px 0 0px;
  color: #FFFFFF;
  position: relative;
  background-color: #6C5F5F;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box {
    padding: 80px 0 0;
  }
}

@media print,
screen and (min-width: 992px) {
  body main .access_box .access_flex .access_sticky {
    top: 10px;
    position: -webkit-sticky;
    position: sticky;
  }
}

body main .access_box .access_flex .access_sticky h1 {
  text-align: left;
  font-weight: bold;
  font-size: 4rem;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.3rem;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_flex .access_sticky h1 {
    font-size: 2rem;
    text-align: center;
  }
}

body main .access_box .access_flex .access_sticky h5 {
  display: block;
  margin: 2rem 0 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_flex .access_sticky h5 {
    text-align: center;
    margin: 1.5rem 0 2.5rem;
  }
}

body main .access_box .access_flex h3 {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Monda", sans-serif;
  letter-spacing: 0.1rem;
  margin-bottom: 60px;
  line-height: 1.5;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_flex h3 {
    font-size: 1.5rem;
  }
}

body main .access_box .access_flex p {
  font-weight: 100;
  line-height: 2;
  margin: 30px 0;
  letter-spacing: 0.1rem;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_flex p {
    font-size: 0.9rem;
  }
}

body main .access_box .access_flex p.open_flex {
  align-items: center;
}

body main .access_box .access_flex p.open_flex span {
  display: block;
}

@media print,
screen and (min-width: 992px) {
  body main .access_box .access_flex p.open_flex span:last-of-type {
    border-left: 1px solid #FFFFFF;
    margin-left: 20px;
    padding-left: 20px;
  }
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_flex p.open_flex span:last-of-type {
    margin-top: 10px;
  }
}

body main .access_box .access_flex p>a {
  color: #FFFFFF;
  transition: 0.5s;
}

body main .access_box .access_flex p>a:hover {
  opacity: 0.7;
}

body main .access_box .access_flex iframe {
  width: 100%;
  height: 350px;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_flex iframe {
    height: 250px;
  }
}

body main .access_box .access_copyright {
  justify-content: space-between;
  border-top: 1px solid #9F8888;
  margin-top: 50px;
  padding: 30px 0;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_copyright {
    text-align: center;
  }
}

body main .access_box .access_copyright a {
  display: inline-block;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: 0.5s;
  font-weight: 100;
}

@media print,
screen and (max-width: 992px) {
  body main .access_box .access_copyright a {
    margin-bottom: 30px;
  }
}

body main .access_box .access_copyright a::after {
  content: "→";
  display: inline-block;
  transform: translateX(5px) rotate(-45deg);
}

body main .access_box .access_copyright a:hover {
  opacity: 0.7;
}

body main .access_box .access_copyright p {
  margin-bottom: 0;
  color: #9F8888;
  font-size: 0.8rem;
}

/* body main .information_box .information_link .information_flex>.colum_info:first-child {
  aspect-ratio: 192/128;
  overflow: hidden;
}

body main .information_box .information_link .information_flex>.colum_info:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */