/* reset css */
html {
  line-height: 1;
  color: #212529;
  touch-action: manipulation;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

ol,
ul,
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
  object-fit: cover;
}

svg {
  overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  color: inherit;
  background: transparent;
  border-radius: 0;
  appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

img,
a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
}

picture {
  display: contents;
}

video,
svg {
  width: 100%;
  height: auto;
}

summary {
  cursor: pointer;
}

/* =========================
   Variables
========================= */
:root {
  --font-family-jp: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-family-en: "Poppins", arial, sans-serif;
  --font-family-latin: "Poppins", arial, sans-serif;
  --color-main: #009140;
  --color-white: #fff;
  --text-brand: #009140;
  --text-secondary: #495057;
  --text-primary: #212529;
}

/* =========================
   共通コンポーネント
========================= */

.section__inner {
  max-width: 600px;
  margin: 0 auto;
  padding-inline: 16px;

  @media (768px <= width) {
    width: 100%;
    max-width: min(calc(1080px + 40px * 2), 100%);
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section__content {
  margin-top: 32px;
}

.section-header {
  --subtitle-color: var(--brand-text-color);
  --title-color: #212529;
}

.section-header--white {
  --subtitle-color: #fff;
  --title-color: #fff;
}

.section-header__subtitle {
  font-family: var(--font-family-latin);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
  color: var(--subtitle-color);

  @media (768px <= width) {
    font-size: 14px;
  }
}

.section-header__title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--title-color);

  @media (768px <= width) {
    font-size: 28px;
  }
}

.btn {
  display: grid;
  position: relative;
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
  padding-block: 10px;
  padding-inline: 37px;
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  color: var(--text-brand);
  background-color: var(--color-white);
  border: 2px solid currentcolor;
  border-radius: 100px;
  box-shadow: 0 6px 0 0 #004a28;
  transition: background-color 0.2s ease-in-out;
  place-items: center;
}

.btn:hover {
  background-color: #e9ecef;
}

/* =========================
   FV
========================= */

.fv {
  position: relative;
  margin-block-start: 74px;

  /* margin-block-start: 46px; */
  @media (768px <= width) {
    margin-block-start: 0;
  }
}

.fv__img {
  overflow: hidden;
  width: 100%;

  @media (768px <= width) {
    aspect-ratio: 1440 / 440;
  }
}

.fv__img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.fv__contents {
  padding-block-end: 16px;
  background-image: url("../../img/202604/kurihara-list/fv/fv_bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  @media (768px <= width) {
    padding-block-end: 37px;
  }
}

.fv__inner {
  display: grid;
  gap: 23px;
  margin-top: -24px;

  @media (768px <= width) {
    gap: 37px;
  }
}

.fv__buttons {
  display: flex;
  overflow: hidden;
  width: 100%;
  background: var(--color-white);
  background: var(--bg-base, #fff);
  border: var(--2, 2px) solid var(--color-main);
  border-radius: 12px;
  border-radius: var(--3, 8px);
  box-shadow: 0 2px 0 0 var(--button-primary-shadow, #004a28);

  @media (768px <= width) {
    width: 100%;
    max-width: 650px;
    margin-inline: auto;
  }
}

.fv__button {
  display: inline-flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-family: var(--font-family-jp);
  /* font-size: 14px;
  font-weight: var(--weight-medium, 500);
  line-height: 1.8; */
  color: var(--color-main);
  transition: background-color 0.2s ease-in-out;

  @media (768px <= width) {
    padding: 13px 10px;
    font-size: 16px;
  }
}

.fv__button:hover {
  background-color: #f1f3f5;
  color: var(--color-main);
}

.fv__button-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;

  @media (768px <= width) {
    font-size: 16px;
  }
}

.fv__button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  line-height: 1;
}

.fv__button-icon img {
  display: block;
  width: 16px;
}

.fv__buttons a + a {
  position: relative;
}

.fv__buttons a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 21px;
  background: #adb5bd;
  transform: translateY(-50%);
}

.fv__intro {
  padding: 16px 24px 24px;
  background: var(--color-white);
  border-radius: 16px;

  @media (768px <= width) {
    width: 100%;
    max-width: 709px;
    margin-inline: auto;
    padding-top: 17px;
  }
}

.fv__intro-text {
  padding-bottom: 1px;
  font-family: var(--font-family-jp);
  font-size: 14px;
  line-height: 220%;
  color: var(--text-primary);
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(transparent calc(100% - 1px), #e9d5bf 0);
  background-size:
    8px 100%,
    100% 2.2em;
  background-repeat: repeat, repeat;

  @media (768px <= width) {
    text-align: center;
    background: none;

    span {
      padding-bottom: 1px;
      background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(transparent calc(100% - 1px), #e9d5bf 0);
      background-size:
        8px 100%,
        100% 2.2em;
    }
  }
}

/* =========================
  recipe
========================= */

.recipe {
  padding-block: 48px;

  @media (768px <= width) {
    padding-top: 81px;
    padding-bottom: 80px;
  }
}

.recipe__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
}

.section-title-en {
  font-family: var(--font-family-latin);
  font-size: var(--size-xs, 12px);
  font-weight: var(--weight-bold, 700);
  font-style: normal;
  line-height: 140%;
  text-align: center;
  color: var(--color-main);

  @media (768px <= width) {
    font-size: 14px;
  }
}

.section-title-ja {
  margin-block-start: 12px;
  font-family: var(--font-family-jp);
  font-size: var(--size-xl, 20px);
  font-weight: var(--weight-bold, 700);
  font-style: normal;
  line-height: 140%;
  text-align: center;
  color: var(--text-primary);

  @media (768px <= width) {
    font-size: 24px;
  }
}

.recipe__featured {
  width: 100%;
  margin-block-start: 24px;
  position: relative;

  @media (768px <= width) {
    display: block;
    width: 100%;
    max-width: 528px;
    margin-inline: auto;
  }
}

.recipe__featured-new {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999999px;
  background: #e9444d;
  position: absolute;
  top: 16px;
  left: 16px;

  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  line-height: 150%; /* 24.098px */
  @media (768px <= width) {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
}

.recipe__image-featured img {
  border-radius: 16px;
}

.recipe__image img {
  border-radius: 8px;
}

.recipe__title-featured {
  margin-block-start: 12px;
  font-family: var(--font-family-jp);
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  color: var(--text-primary);
}

.recipe__title {
  margin-block-start: 8px;
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  color: var(--text-primary);
}

.recipe__cards {
  display: grid;
  gap: 32px 15px;
  grid-template-columns: 1fr 1fr;
  margin-block-start: 32px;

  @media (768px <= width) {
    gap: 32px 24px;
    grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
    width: 100%;
    max-width: 896px;
    margin-block-start: 48px;
    margin-inline: auto;
  }
}

/* =========================
interview
========================= */
.interview {
  overflow: hidden;
  position: relative;
  padding-block: 64px;
  background: #f4f1ea;
}

.interview__inner {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;

  @media (768px <= width) {
    width: 100%;
    max-width: min(calc(528px + 40px * 2), 100%);
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.interview__decoration-toaster {
  position: absolute;
  top: 43px;
  left: calc(50% - 177px);
  width: 73.805px;
  height: 60px;
}

.interview__decoration-bread {
  position: absolute;
  top: 48px;
  right: calc(50% - 187px);
  width: 96px;
  height: 54px;
}

.interview__youtube {
  width: 100%;
  margin-block: 23px 38px;

  @media (768px <= width) {
    margin-top: 40px;
    margin-bottom: 56px;
  }
}

.interview__youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 343 / 193.795;
  object-fit: cover;
}

.interview__article {
  display: flex;
  flex-direction: column;
  row-gap: 23px;
}

.interview__figure {
  margin-block-end: 24px;
}

.interview__figure-top img {
  border-radius: 8px;
}

.interview__figure img {
  border-radius: 8px;
}

.interview__head {
  margin-block: 16px;
  font-family: var(--font-family-jp);
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  line-height: 180%;
  color: var(--primitive-orange-700, #773807);
}

.interview__note {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.interview__text {
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 180%;
  color: var(--text-primary);
}

.interview-profile {
  margin-block-start: 37px;
  padding: 24px;
  background: var(--color-white);
  border-radius: 8px;

  @media (768px <= width) {
    margin-block-start: 55px;
  }
}

.interview-profile__head {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-block-end: 16px;
}

.interview-profile__image {
  width: 56px;
}

.interview-profile__image img {
  border-radius: 50%;
}

.interview-profile__meta {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.interview-profile__role {
  font-family: var(--font-family-jp);
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  color: var(--color-main);
}

.interview-profile__name {
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  color: var(--text-primary);

  .--small {
  font-family: var(--font-family-jp);
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  color: var(--text-primary);
  }
}

.interview-profile__text {
  font-family: var(--font-family-jp);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 180%;
  color: #000;
}

/* =========================
cta
========================= */
.cta {
  padding-block: 24.8px 71px;

  @media (768px <= width) {
    padding-top: 63px;
    padding-bottom: 62px;
  }
}

.cta__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
}

.cta__container {
  background-image: url("../../img/202604/kurihara-list/cta/cta-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;

  @media (768px <= width) {
    background-image: url("../../img/202604/kurihara-list/cta/cta-bg-pc.png");
  }
}

.cta__content {
  padding-block: 32px;
  padding-inline: 16px;

  @media (768px <= width) {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: calc(848px + 32px);
    margin-inline: auto;
    padding-top: 68px;
    padding-bottom: 63px;
  }
}

.cta__body {
  @media (768px <= width) {
    flex: 1 1 0;
    width: 100%;
    max-width: 476px;
    min-width: 0;
  }
}

.cta__logo {
  width: 172px;
  margin-inline: auto;

  @media (768px <= width) {
    width: 300px;
    margin-inline: 0;
  }
}

.cta__catch {
  margin-block: 40px 16px;
  font-family: var(--font-family-jp);
  font-size: var(--size-xl, 20px);
  font-weight: var(--weight-bold, 700);
  font-style: normal;
  line-height: 140%;
  text-align: center;
  text-shadow: 0 0 8px rgb(0 0 0 / 50%);
  color: var(--text-inverse, #fff);

  @media (768px <= width) {
    margin-top: 0;
    font-size: 24px;
    text-align: left;
  }
}

.cta__text {
  margin-block-end: 95px;
  font-family: var(--font-family-jp);
  font-size: var(--size-sm, 14px);
  font-weight: 400;
  font-style: normal;
  line-height: 220%;
  text-align: center;
  text-shadow: 0 0 4px #000;
  color: var(--text-inverse, #fff);

  @media (768px <= width) {
    margin-block-end: 15px;
    text-align: left;
  }
}

.cta__button a {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  max-width: 320px;
  margin-inline: auto;
  padding-inline: 16px;
  font-family: var(--font-family-jp);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-white);
  background: #773807;
  border-radius: 9999px;
  box-shadow: 0 6px 0 0 #361a05;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;

  @media (768px <= width) {
    width: 100%;
    max-width: 404px;
    margin-inline: 0;
  }
}

.cta__button a:hover {
  background: #552807;
}

.cta__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 28px;
  height: 28px;
  background-image: url("../../img/202604/kurihara-list/cta/icon-arrow.png");
  background-position: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

/* =========================
guide
========================= */
.guide {
  padding-block: 32px 64px;
  background: var(--bg-surface, #fff6e0);
}

.guide__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 16px;
}

.guide-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.guide-links__link {
  display: flex;
  position: relative;
  align-items: center;
  gap: 12px;
  padding: 24px 60px 24px 24px;
  background: #fff;
  border: 1px dashed var(--color-main);
  border-radius: 16px;
}

.guide-links__link img {
  width: 32px;
}

.guide-links__text {
  font-family: var(--font-family-jp);
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  color: var(--text-primary);
}

.guide-links__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/202604/kurihara-list/guide/icon-arrow.png");
  background-position: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  border-radius: 9999px;
  transform: translateY(-50%);
}
