@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #cc6633;
  font-family: serif;
  background-color: #fff;
}

main {
  padding-top: 60px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #cc6633;
  text-decoration: none;
}

a:focus {
  outline: none;
}

p,
h1,
h2,
h3,
h4,
ul,
li {
  margin: 0;
  padding: 0;
}

/* ============================
  共通
============================ */
.section-title {
  font-size: 2rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.section-c {
  padding: 5rem 0;
  background: #f6f3ef;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
}

.btn--primary {
  letter-spacing: 0.1rem;
  background: #5a3e2b;
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 0.5rem 1rem #5a3e2b;
}

.wrapper {
  max-width: 67rem;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================
  Header
=========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 50;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.header .logo {
  max-width: 5rem;
  line-height: 0;
}

.header .logo a {
  display: block;
}

.header ul {
  display: flex;
}

.header li {
  font-size: 0.8rem;
  margin-left: 0.6rem;
}


/* ============================
  FV
============================ */
.fv {
  display: flex;
  flex-direction: column-reverse;
  background: #f8f6f2;
  padding-bottom: 4rem;
}

.fv__text {
  margin: 0 auto;
  text-align: center;
}

.fv__title {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.fv__lead {
  max-width: 14rem;
  line-height: 1.8;
  margin: 0 auto 2.8rem;
  color: #555;
}

.fv__text .btn {
  display: inline-block;
}

.fv__image {
  margin-bottom: 2.5rem;
}

.fv__image img {
  width: 100%;
}

/* ===========================
  Concept
=========================== */
#concept {
  padding: 6.5rem 0;
  text-align: left;
  line-height: 1.8;
}

.concept__phrase {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.concept__text {
  letter-spacing: 0.1em;
}

/* ===========================
  Features
=========================== */
.features {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.features__img {
  margin-bottom: 2rem;
}

.features__img img {
  object-fit: cover;
  width: 15rem;
  height: 10rem;
}

.features__list li {
  position: relative;
  padding-left: 1.8rem;
  padding-bottom: 0.8rem;
  font-weight: bold;
  line-height: 1.7;
}

.features__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #cc6633;
  font-weight: bold;
}

/* ============================
  Contents
============================ */
.contents__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.1rem;
}

.tea-card img {
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 12rem;
  padding-bottom: 1rem;
}

.tea-card h4 {
  font-size: 1.1rem;
  padding-bottom: 0.1rem;
}

.tea-card p {
  font-size: 0.9rem;
}

/* ===========================
  Price
=========================== */
.price__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price__image {
  width: 80%;
  padding-bottom: 3rem;
}

.price__image img {
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.price__info {
  text-align: center;
}

.price__amount {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1.8rem;
}

/* =========================
  Footer
========================= */
.footer {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  padding: 1.5rem 0;
  background: #333;
  color: #fff;
  text-align: center;
}

/* -------------------------------------
  PC用
------------------------------------- */
@media screen and (min-width: 768px) {

/* =======================
  共通
======================= */
  html {
    font-size: 110%;
  }

  .section-title {
    font-size: 2.5rem;
    padding-bottom: 3.4rem;
  }

  .section {
    padding: 6.5rem 0;
  }

/* ======================
  Header
====================== */
  .header .logo {
    max-width: 9rem;
  }

  .header li {
    font-size: 1rem;
    margin-left: 1rem;
  }

/* =======================
  FV
======================= */
  .fv {
    flex-direction: row;
    align-items: center;
    padding: 4.5rem 0;
  }

  .fv__text {
    width: 45%;
    max-width: 26rem;
    text-align: left;
    letter-spacing: 0.05em;
    padding-left: 20px;
  }

  .fv__title {
    font-size: 2rem;
  }

  .fv__lead {
    max-width: 20rem;
    margin: 0 0 2.5rem;
  }

  .fv__image {
    width: 55%;
    margin-bottom: 0;
  }

/* =======================
  Concept
======================= */
  #concept {
    text-align: center;
  }

  .concept__phrase {
    font-size: 1.4rem;
  }

/* ========================
  Features
======================== */
  .features {
    flex-direction: row;
  }

  .features__img {
    width: 55%;
    text-align: right;
    margin-bottom: 0;
  }

  .features__img img {
    width: 100%;
    height: 22rem;
  }

  .features__list {
    width: 45%;
    font-size: 1.2rem;
    padding-left: 6rem;
  }

/* =======================
  Contents
====================== */
  .contents__cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .tea-card img {
    height: 15rem;
    padding-bottom: 0.75rem;
  }

  .tea-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .tea-card p {
    font-size: 0.9rem;
  }

/* =======================
  Price
======================= */
  .price__inner {
    flex-direction: row;
  }

  .price__image {
    width: 50%;
    text-align: right;
    
  }

  .price__image img {
    width: 25rem;
    height: 20rem;
  }

  .price__info {
    width: 50%;
    text-align: left;
    padding-left: 6rem;
  }

  .price__volume {
    padding-bottom: 0.5rem;
  }

  .price__amount {
    font-size: 2rem;
  }
}