@charset "UTF-8";
/* Media query */
:root {
  --small-font-size: 2rem;
  --base-font-size: 2.2rem;
  --mid-font-size: 2.6rem;
}

@media only screen and (width <= 767px) {
  :root {
    --small-font-size: 2.5rem;
    --base-font-size: 3rem;
    --mid-font-size: 3rem;
  }
}
/* Basic settings */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-y: auto;
  font-size: 10px;
  line-height: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 10.58rem;
}
@media only screen and (width <= 767px) {
  html {
    scroll-padding-top: 9%;
  }
}
@media only screen and (width >= 1600px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (width <= 1600px) {
  html {
    font-size: 8px;
  }
}
@media only screen and (width <= 767px) {
  html {
    font-size: 5px;
  }
}

body {
  font-weight: 500;
  font-family: Montserrat, "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴシック ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media only screen and (width <= 767px) {
  body img {
    max-width: 100%;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  min-width: 1200px;
  height: 100%;
  padding-top: 8rem;
  overflow: hidden;
  color: #333;
  font-size: var(--mid-font-size);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media only screen and (width <= 767px) {
  #wrapper {
    min-width: 32rem;
  }
}

.container {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media print, screen and (width >= 768px) {
  .container {
    max-width: 142.8rem;
    margin: 0 auto;
  }
}
@media only screen and (width <= 767px) {
  .container {
    padding: 0 4rem;
  }
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ov_hover:hover img {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

/* page up */
.page_up {
  position: fixed;
  right: -550px;
  bottom: 120px;
  z-index: 999;
}
@media only screen and (width <= 767px) {
  .page_up {
    bottom: 10% !important;
    width: 12%;
  }
  .page_up a {
    display: block;
  }
}

/* Anchor tag settings */
a {
  color: #333;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Phone link adjustments */
}
a:hover {
  text-decoration: none;
}
a[href*="tel:"] {
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}
@media only screen and (width <= 767px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/* Clearfix utility */
.clearfix {
  display: inline-block;
  display: block;
  /* Compatibility for older browsers */
}
.clearfix::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
}
* html .clearfix {
  height: 1%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.6;
}

p, li, pre, td, th, dt, dd {
  line-height: 1.8;
}

/* titlte */
.c-heading-1 {
  margin-bottom: 3rem;
  color: #d2336c;
  font-weight: 600;
  font-size: 5rem;
  text-align: center;
}
.c-heading-1--white {
  color: white;
}
.c-heading-1--black {
  color: #333;
}
.c-heading-1--multi {
  background: #D33D46;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #D33D46), color-stop(50%, #D2336C), color-stop(70%, #E39036));
  background: linear-gradient(to right, #D33D46 30%, #D2336C 50%, #E39036 70%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* list */
.c-list-number {
  margin-bottom: 4rem;
}
.c-list-number__item {
  list-style-type: number;
  margin-left: 3rem;
  font-size: var(--base-font-size);
}

/* header */
.header {
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  min-width: 1200px;
  padding: 1rem 7rem;
  background: #fff;
}
@media only screen and (width <= 767px) {
  .header {
    min-width: 320px;
    padding: 2rem;
  }
}
.header__logo {
  font-weight: 600;
  font-size: 2vw;
  white-space: nowrap;
}
@media only screen and (width <= 767px) {
  .header__logo {
    font-size: 3vw;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__combo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 10rem;
  right: 0;
  -webkit-transform: translateX(-2rem);
          transform: translateX(-2rem);
  width: 49rem;
  margin: 0 auto;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  gap: 2rem;
}
@media only screen and (width <= 767px) {
  .header__combo {
    gap: 1rem;
    top: 9rem;
    width: 40rem;
  }
}
.header__combo.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header__combo-link {
  display: block;
}
.header__combo-link:hover {
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
}
.header__shop {
  position: relative;
}
.header__text {
  margin-right: 4rem;
  margin-left: 2rem;
  color: #d33d46;
  font-weight: 600;
  font-size: 1.5vw;
  white-space: nowrap;
}
.header__text a {
  color: #d33d46;
  text-decoration: none;
}
.header__text a:hover {
  text-decoration: underline;
}
@media only screen and (width <= 767px) {
  .header__text {
    margin-right: 2rem;
    margin-left: 3rem;
    font-size: 2.5vw;
    line-height: 1.3;
  }
}
.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* mv */
#mainvisual {
  background: url("../images/bg.jpg") no-repeat center top;
  background-size: cover;
}
#mainvisual .container {
  width: 70%;
}
@media only screen and (width <= 767px) {
  #mainvisual .container {
    width: 100%;
  }
}
@media only screen and (width <= 767px) {
  #mainvisual {
    background: none;
  }
}
#mainvisual .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (width >= 1600px) {
  #mainvisual .container {
    padding: 8rem 0;
  }
}
@media only screen and (width <= 1600px) {
  #mainvisual .container {
    padding: 8rem 0;
  }
}
@media only screen and (width <= 767px) {
  #mainvisual .container {
    min-height: auto;
    padding: 0;
  }
}

/* content */
.box1 {
  padding: 10rem 0 12rem;
}
.box1__title {
  margin-bottom: 8rem;
  font-size: var(--mid-font-size);
  text-align: center;
}
.box1__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 13rem;
}
@media only screen and (width <= 767px) {
  .box1__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
}
.box1__photo {
  display: block;
  min-width: 54.5rem;
  margin-right: 4rem;
}
@media only screen and (width <= 767px) {
  .box1__photo {
    min-width: 100%;
    margin-bottom: 3rem;
  }
  .box1__photo img {
    width: 100%;
  }
}
.box1__text {
  font-weight: 600;
  font-size: var(--base-font-size);
}
@media only screen and (width <= 767px) {
  .box1 {
    padding: 7rem 0;
  }
}

.box2 {
  padding: 10rem 0 12rem;
  background: rgb(211, 61, 70);
  background: -webkit-gradient(linear, left top, right top, from(rgb(211, 61, 70)), color-stop(50%, rgb(210, 51, 108)), to(rgb(227, 144, 54)));
  background: linear-gradient(90deg, rgb(211, 61, 70) 0%, rgb(210, 51, 108) 50%, rgb(227, 144, 54) 100%);
}
@media only screen and (width <= 767px) {
  .box2 {
    padding: 7rem 0;
  }
}
.box2__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 13rem;
}
@media only screen and (width <= 767px) {
  .box2__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
}
.box2__text {
  color: #fff;
  font-weight: 500;
  font-size: var(--mid-font-size);
}
@media only screen and (width <= 767px) {
  .box2__inner {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.box2__photo {
  min-width: 52.4rem;
  margin-left: 3rem;
}
@media only screen and (width <= 767px) {
  .box2__photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 3rem;
    margin-left: 0;
  }
  .box2__photo img {
    width: 100%;
  }
}

.box3 {
  padding: 10rem 0 12rem;
}
.box3__content {
  width: 93.5rem;
  margin: 0 auto;
}
.box3__content picture {
  display: block;
  margin-bottom: 5rem;
}
@media only screen and (width <= 767px) {
  .box3__content picture {
    margin-bottom: 3rem;
  }
}
@media only screen and (width <= 767px) {
  .box3__content {
    width: 100%;
  }
}
.box3__text {
  margin-bottom: 4rem;
}
.box3__text:last-child {
  margin-bottom: 0;
}
@media only screen and (width <= 767px) {
  .box3 {
    padding: 7rem 0;
  }
}

.box4 {
  padding: 10rem 0;
  background: #e1e1e1;
}
@media only screen and (width <= 767px) {
  .box4 {
    padding: 7rem 0;
  }
}
.box4__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (width <= 767px) {
  .box4__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.box4__item {
  width: 33.3333333333%;
  padding: 2.8rem;
  background: #fff;
}
@media only screen and (width <= 767px) {
  .box4__item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
        grid-template-areas: "title photo" "text photo";
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
  .box4__item:nth-child(even) {
        grid-template-areas: "photo title" "photo text";
  }
  .box4__item:nth-child(even) picture {
    margin-right: 2rem;
    margin-left: 0;
  }
}
.box4__heading {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.2;
  word-break: break-all;
}
@media only screen and (width <= 767px) {
  .box4__heading {
    -ms-grid-row-align: end;
        align-self: end;
    grid-area: title;
    margin-bottom: 2rem;
  }
}
.box4 picture {
  display: block;
  margin-bottom: 1rem;
}
@media only screen and (width <= 767px) {
  .box4 picture {
    display: block;
    grid-area: photo;
    -ms-grid-column-align: center;
        justify-self: center;
    margin-left: 2rem;
  }
}
.box4__text {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  font-size: var(--small-font-size);
  line-height: 1.5;
}
.box4__text span {
  color: #d33d46;
}
@media only screen and (width <= 767px) {
  .box4__text {
    grid-area: text;
  }
}
@media only screen and (width <= 767px){
  .box4__heading {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .box4__item:nth-child(even) > .box4__heading {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .box4 picture {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
  }
  .box4__item:nth-child(even) > picture {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .box4__text {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .box4__item:nth-child(even) > .box4__text {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}

.box5 {
  padding: 10rem 0 12rem;
}
@media only screen and (width <= 767px) {
  .box5 {
    padding: 7rem 0;
  }
}
.box5 .c-heading-1 {
  margin-bottom: 7rem;
}
.box5__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12rem;
}
@media only screen and (width <= 767px) {
  .box5__content {
    margin-bottom: 7rem;
  }
}
.box5__content:last-child {
  margin-bottom: 0;
}
.box5__content--col4 {
  gap: 2rem;
}
@media only screen and (width <= 767px) {
  .box5__content--col4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.box5__content--col4 .box5__item {
  width: 25%;
}
@media only screen and (width <= 767px) {
  .box5__content--col4 .box5__item {
    width: calc(50% - 1rem);
  }
}
.box5__content--col2 {
  gap: 2rem;
}
.box5__content--col2 .box5__item {
  width: 45.2rem;
}
.box5__content--col2 .box5__item .box5__text {
  font-size: var(--mid-font-size);
}
@media only screen and (width <= 767px) {
  .box5__content--col2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .box5__content--col2 .box5__item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .box5__content--col2 .box5__item img {
    width: 100%;
  }
  .box5__content--col2 .box5__item:last-child {
    margin-bottom: 0;
  }
}
.box5__content picture {
  display: block;
  margin-bottom: 1rem;
}
.box5__text {
  font-size: var(--small-font-size);
}
.box5__text1 {
  margin-top: 4rem;
  font-size: var(--mid-font-size);
  text-align: center;
}
.box5__title {
  margin-top: 5rem;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
}

.box6 {
  padding: 10rem 0;
  background: #e1e1e1;
}
.box6 .pop {
  position: absolute;
  top: -4rem;
  left: -2rem;
  z-index: 2;
  width: 13rem;
}
@media only screen and (width <= 767px) {
  .box6 .pop {
    width: 10rem;
  }
}
@media only screen and (width <= 767px) {
  .box6 {
    padding: 7rem 0;
  }
}
.box6 .c-heading-1 {
  margin-bottom: 9rem;
}
.box6__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 1rem;
}
@media only screen and (width <= 767px) {
  .box6__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
}
.box6__title {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.3;
  text-align: center;
}
@media only screen and (width <= 767px) {
  .box6__title {
    margin-bottom: 0;
    font-size: 3rem;
  }
}
.box6__price {
  background: #D33D46;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #D33D46), color-stop(50%, #D2336C), color-stop(70%, #E39036));
  background: linear-gradient(to right, #D33D46 30%, #D2336C 50%, #E39036 70%);
  -webkit-background-clip: text;
          background-clip: text;
  font-weight: 600;
  font-size: 4.2rem;
  text-align: center;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.box6__price--old {
  background: none;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #999;
  font-size: 2.4rem;
  margin-top: 1rem;
}
.box6 a {
  display: block;
  position: relative;
  width: 33.3333333333%;
  padding: 2.8rem;
  background: #fff;
  text-decoration: none;
}
.box6 a:hover {
  -webkit-transform: translateY(-3rem);
          transform: translateY(-3rem);
}
@media only screen and (width <= 767px) {
  .box6 a {
    width: calc(50% - 1.5rem);
    margin-bottom: 3rem;
    padding: 2rem;
  }
}
.box6__heading {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.2;
}
.box6 picture {
  display: block;
  margin-bottom: 1rem;
}
.box6__text {
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
}

.box7 {
  padding: 12rem 0;
}
@media only screen and (width <= 767px) {
  .box7 {
    padding: 7rem 0;
  }
}
.box7__content {
  padding: 0 12rem;
}
@media only screen and (width <= 767px) {
  .box7__content {
    padding: 0;
  }
}
.box7__title {
  margin-bottom: 4rem;
  font-weight: 600;
  font-size: 3.4rem;
}
.box7__text {
  margin-bottom: 20rem;
  font-size: 2.4rem;
}
@media only screen and (width <= 767px) {
  .box7__text {
    margin-bottom: 15rem;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social__link {
  display: block;
}
.social__link:hover {
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
}
@media only screen and (width <= 767px) {
  .social {
    width: 42rem;
    margin: 0 auto;
    gap: 2rem;
  }
}

/* footer */
.footer {
  padding: 5.5rem 0;
  background: rgb(211, 61, 70);
  background: -webkit-gradient(linear, left top, right top, from(rgb(211, 61, 70)), color-stop(50%, rgb(210, 51, 108)), to(rgb(227, 144, 54)));
  background: linear-gradient(90deg, rgb(211, 61, 70) 0%, rgb(210, 51, 108) 50%, rgb(227, 144, 54) 100%);
}
@media only screen and (width <= 767px) {
  .footer {
    padding: 3rem 0;
  }
}

.f-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (width <= 767px) {
  .f-menu {
    gap: 5rem;
  }
}
.f-menu__link {
  color: #fff;
  font-size: 3.6rem;
  text-decoration: none;
}
@media only screen and (width <= 767px) {
  .f-menu__link {
    font-size: 2.5rem;
  }
}