@charset "UTF-8";

/*
  # base
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: calc(100/var(--base-vw)*1vw*16);
  height: auto;
}

body {
  color: #000;
  font-family: "M PLUS 2", serif;
}

p,
h1,
h2 {
  font-size: inherit;
  overflow-wrap: break-word;
}

img,
svg {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  :root {
    /* base */
    --base-vw: 375;
  }
}

@media (min-width: 769px) {
  :root {
    /* base */
    --base-vw: 1520;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*
  # main
---------------------------------------------- */
.wrap {
  width: calc(100% - 2.5rem);
  height: calc(100vh - 2.5rem);
  height: calc(100svh - 2.5rem);
  margin: 1.25rem;
  padding-block: 60px 70px;
  background: url('../img/bg.jpg') no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 26px;
}

@media (max-width: 768px) {
  .wrap {
    width: calc(100% - 1.25rem);
    height: calc(100vh - 1.25rem);
    height: calc(100svh - 1.25rem);
    margin: .625rem;
    padding: 2.5rem 1.875rem 2.5rem;
    background-position: left bottom;
  }
}

.header-logo {
  width: min(420px, calc(420rem / 16));
  margin-inline: auto;
}

@media (max-width: 768px) {
  .header-logo {
    width: min(345px, calc(230rem / 16));
  }
}

.main-headline {
  margin-bottom: min(76px, calc(76rem / 16));
  color: #fff;
}

@media (max-width: 768px) {
  .main-headline {
    margin-bottom: min(54px, calc(54rem / 16));
  }
}

.main-headline span {
  display: block;
  text-align: center;
}

.main-headline .ja {
  margin-bottom: 16px;
  font-size: min(44px, calc(44rem / 16));
  line-height: 1.5;
  font-weight: 500;
}

.main-headline .en {
  font-family: "Geologica", serif;
  font-size: min(18px, calc(18rem / 16));
  font-weight: 400;
}

@media (max-width: 768px) {
  .main-headline .ja {
    font-size: min(48px, calc(32rem / 16));
  }

  .main-headline .en {
    font-size: min(21px, calc(14rem / 16));
    line-height: 1.5;
  }
}

/*
  # maintenance
---------------------------------------------- */
.maintenance {
  margin-bottom: min(76px, calc(76rem / 16));
  color: #fff;
}

@media (max-width: 768px) {
  .maintenance {
    margin-bottom: min(54px, calc(54rem / 16));
  }
}

.maintenance-text {
  display: block;
  text-align: center;
  font-size: min(44px, calc(44rem / 16));
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 768px) {
  .maintenance-text {
    font-size: min(48px, calc(32rem / 16));
  }
}

/*
  # button-wrap
---------------------------------------------- */
.button-wrap {
  width: min(580px, calc(580rem / 16));
  margin-inline: auto;
}

@media (max-width: 768px) {
  .button-wrap {
    width: min(440px, calc(294rem/16));
  }
}

.button {
  width: 100%;
  position: relative;
  border-radius: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px min(18px, calc(18rem / 16)) 12px min(96px, calc(96rem / 16));
}

.button.--food {
  margin-bottom: 8px;
  background: #4D8017;
}

.button.--recipe {
  background: #EC941C;
}

.button::before {
  content: '';
  display: inline-block;
  position: absolute;
  pointer-events: none;
}

.button.--food::before {
  left: 4px;
  bottom: 12px;
  width: min(78px, calc(78rem / 16));
  height: min(62px, calc(62rem / 16));
  background: url('../img/icon-food.svg') no-repeat center/contain;
}

.button.--recipe::before {
  left: 0;
  bottom: 8px;
  width: min(80px, calc(80rem / 16));
  height: min(64px, calc(64rem / 16));
  background: url('../img/icon-recipe.svg') no-repeat center/contain;
}

.button .button-text .ja,
.button .button-text .en {
  display: block;
  color: #fff;
  text-align: left;
}

.button .button-text .ja {
  font-size: min(28px, calc(28rem / 16));
  font-weight: 700;
}

.button .button-text .en {
  font-size: min(20px, calc(20rem / 16));
  font-family: "Geologica", serif;
}

.button .arrow {
  width: min(44px, calc(44rem / 16));
  height: min(44px, calc(44rem / 16));
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}

.button .arrow svg {
  width: min(19px, calc(19rem / 16));
  margin-left: 2px;
}

@media (max-width: 768px) {
  .button {
    padding: 5px calc(10rem/16) 7px calc(48rem/16);
    border-radius: 60px;
  }

  .button.--food::before {
    left: 0;
    bottom: 3px;
  }

  .button.--recipe::before {
    bottom: 0;
  }

  .button.--food::before,
  .button.--recipe::before {
    width: min(60px, calc(40rem/16));
    height: min(60px, calc(40rem/16));
  }

  .button .button-text .ja {
    font-size: min(20px, calc(14rem / 16));
  }

  .button .button-text .en {
    font-size: min(15px, calc(10rem / 16));
  }

  .button .arrow {
    width: min(32px, calc(22rem/16));
    height: min(32px, calc(22rem/16));
  }

  .button .arrow svg {
    width: min(15px, calc(10rem/16));
  }
}

.footer small {
  display: block;
  color: #fff;
  font-family: "Geologica", serif;
  font-size: min(14px, calc(14rem / 16));
  font-weight: 200;
  text-align: center;
}

@media (max-width: 768px) {
  .footer small {
    font-size: min(15px, calc(10rem / 16));
  }
}