@charset "utf-8";
/* ===================================================================
 style.css
======================================================================*/

@media (max-width: 1023px) {
  .c_show-pc { display: none !important; }
}
@media (min-width: 1024px) {
  .c_show-sp { display: none !important; }
}

/*----------------------------------------------------------
 main
------------------------------------------------------------*/
.lp-body {
  padding-left: 0;
  padding-right: 0;
}
.lp_main > :first-child { margin-top: 0; }
.lp_main > :last-child { margin-bottom: 0; }

.lp_main p, .lp_main li, .lp_main a,
.lp_main h2, .lp_main h3, .lp_main h4 {
  -webkit-font-smoothing: antialiased;
}

.lp_inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 1023px) {
  .lp_inner {
    padding: 0;
  }
}

/*----------------------------------------------------------
 section
------------------------------------------------------------*/
.lp_section {
  margin: 200px 0;
}
.lp_section.-bgGray {
  padding-top: 200px;
  padding-bottom: 200px;
  background: #f8f8f8;
}
.lp_section.-items {
  padding-top: 150px;
  padding-bottom: 150px;
  background: #f4f5f8;
}

.lp_section-child + .lp_section-child {
  margin-top: 200px;
}

@media (max-width: 1023px) {
  .lp_section {
    margin: 100px 0;
    padding: 0 20px;
  }
  .lp_section.-bgGray {
    padding: 80px 20px;
  }
  .lp_section-child + .lp_section-child {
    margin-top: 50px;
  }
  .lp_section.-items {
    padding: 80px 20px;
  }
}

/*----------------------------------------------------------
 context
------------------------------------------------------------*/
.lp_h2 {
  margin-bottom: 80px;
  font-size: 4.2rem;
  line-height: 1.8;
  font-weight: normal;
  font-family: EB Garamond,serif;
}
.lp_h2.-textCenter {
  text-align: center;
}

.lp_h3 {
  margin-bottom: 30px;
  font-size: 3.5rem;
  text-align: center;
  font-weight: normal;
  font-family: EB Garamond,serif;
}
.lp_h2 + .lp_h3 {
  margin-top: -20px;
}

.lp_text-release {
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
  font-family: EB Garamond,serif;
}
.lp_h3 + .lp_text-release {
  margin-top: -22px;
}

@media (max-width: 1023px) {
  .lp_h2 {
    font-size: 2.6rem;
  }
  .lp_h3 {
    font-size: 2.8rem;
  }
  .lp_text-release {
    font-size: 1.6rem;
  }
  .lp_h3 + .lp_text-release {
    margin-top: -15px;
  }
}

/*----------------------------------------------------------
 module
------------------------------------------------------------*/
.m_title {
  margin: 60px 0 30px;
  font-size: 3.2rem;
  font-weight: normal;
  font-family: EB Garamond,serif;
}
.m_comment {
  padding-left: 1em;
  text-indent: -1em;
}
.m_comment:before {
  content: "※";
}

@media (max-width: 1023px) {
  .m_title {
    margin: 30px 0 15px;
    font-size: 2rem;
    font-weight: bold;
  }
}

/* text
-------------------------------------------------*/
.m_text {
  max-width: 1200px;
  margin: 50px auto;
  font-size: 2rem;
  color: #333;
  line-height: 1.8;
}
.m_text + .m_text {
  margin-top: 2em;
}
.m_text.-center {
  text-align: center;
}

.m_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_img + .m_img {
  margin-top: 20px;
}
.m_img > div {
  width: calc(50% - 10px);
}

@media (max-width: 1023px) {
  .m_text {
    margin: 20px 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .m_img {
    margin-left: -20px;
    margin-right: -20px;
  }
  .m_img + .m_img {
    margin-top: 5px;
  }
  .m_img > div {
    width: calc( calc(100% - 5px) / 2);
  }
}

/* button
-------------------------------------------------*/
.m_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 250px;
  height: 58px;
  padding-right: 20px;
  background: #333;
  border: 1px solid #333;
  border-radius: 29px;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  font-family: Signa Corr Pro, sans-serif;
  transition: .3s;
}
.m_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 34px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: .3s;
}
.m_btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 33px;
  width: 16px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
  transition: .3s;
}

.m_btn:hover {
  background: #fff;
  color: #333;
}
.m_btn:hover:after {
  border-color: #333;
}
.m_btn:hover:before {
  background: #333;
}

@media (max-width: 1023px) {
  
}

/* column
-------------------------------------------------*/
.m_column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_column.-reverse {
  flex-direction: row-reverse;
}
.m_column + .m_column {
  margin-top: 80px;
}
.m_column .m_column-img {
  width: 45%;
}
.m_column .m_column-context {
  width: 55%;
}
.m_column:not(.-reverse) .m_column-context {
  /* max-width: 640px; */
  padding-left: 50px;
}
.m_column.-reverse .m_column-context {
  padding-right: 50px;
}
.m_column-context > p {
  margin: 0;

}

@media (max-width: 1023px) {
  .m_column {
    display: block;
  }
  .m_column .m_column-img {
    width: 100%;
  }
  .m_column .m_column-context {
    width: 100%;
    padding: 0 !important;
    margin-top: 50px;
  }
}

/* items
-------------------------------------------------*/
.m_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}
.m_gallery:after {
  content: "";
  width: calc(calc(100% - 30px) / 4);
}
.m_gallery > li {
  width: calc(calc(100% - 30px) / 4);
  margin-bottom: 10px;
}

@media (max-width: 1023px) {
  .m_gallery {
    margin-top: 30px;
  }
  .m_gallery:after {
    content: none;
  }
  .m_gallery > li {
    width: calc(calc(100% - 10px) / 2);
  }
}

/* items
-------------------------------------------------*/
.m_items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.m_items + .m_items {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #666;
}
.m_items.-reverse {
  flex-direction: row-reverse;
}
.m_items-img {
  width: 45.139%;
  max-width: 650px;
}
.m_items-context {
  width: 51.389%;
  max-width: 740px;
}
.m_items.-reverse .m_items-context {
  padding-left: 20px;
}

.m_items-context-head {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.m_items-name {
  font-size: 3.4rem;
  line-height: 1.5;
  font-weight: normal;
  font-family: EB Garamond,serif;
}
.m_items-price {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.m_items-number {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #666;
  line-height: 1.5;
}

.m_items-spec {
   margin-bottom: 50px;
}
.m_items-spec > li {
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.5;
  text-indent: -1em;
}
.m_items-spec > li:before {
  content: "■";
}
.m_items-spec > li + li {
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .m_items {
    display: block;
  }
  .m_items + .m_items {
    margin-top: 50px;
    padding-top: 50px;
  }
  .m_items-img {
    max-width: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .m_items-context {
    width: 100%;
  }
  .m_items-name {
    font-size: 2.4rem;
  }
  .m_items-price {
    font-size: 1.6rem;
  }
  .m_items-number {
    font-size: 1.2rem;
  }
  .m_items-btn .m_btn {
    width: 100%;
    padding: 0;
  }
}

/* line up
-------------------------------------------------*/
.m_lineup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.m_lineup.-col3 {
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.m_lineup > li {
  padding-bottom: 20px;
}
.m_lineup.-col3 > li {
  width: calc( calc(100% - 60px) / 3);
  padding-bottom: 20px;
}
.m_lineup-img {
  margin-bottom: 20px;
}
.m_lineup-context {
  text-align: center;
}
.m_lineup-name {
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: EB Garamond,serif;
}
.m_lineup-price {
  margin-top: 5px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
}
.m_lineup-btn {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .m_lineup {
    display: block;
  }
  .m_lineup > li {
    width: 100%;
    padding-bottom: 0;
  }
  .m_lineup > li + li {
    margin-top: 50px;
  }
  .m_lineup-price {
    font-size: 1.4rem;
  }
}

/* reserve
-------------------------------------------------*/
.m_reserve {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 100px 0;
  padding-top: 100px;
  border-top: 1px solid #eee;
}
.m_reserve > div {
  width: 49%;
}
.m_reserve-title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}
.m_reserve-text {
  font-size: 1.4rem;
}
@media (max-width: 1023px) {
  .m_reserve {
    display: block;
    margin: 50px 0;
    padding-top: 50px;
  }
  .m_reserve > div {
    width: 100%;
  }
  .m_reserve-title {
    font-size: 1.8rem;
  }
  .m_reserve-img {
    margin-top: 30px;
  }
}
