/* 
Theme Name: WanWan
Theme URI: https://wanwan-dog.com
Author: Your Name
Author URI: https://wanwan-dog.com
Description: A WordPress theme for a dog-related website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wanwan
*/

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500&family=Kiwi+Maru:wght@300;400;500&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
  background: #fff;
  color: #000;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* Base Styles */
:root {
  font-size: 0.6944444444vw;
  /* 10px = 1rem の設定 */
  /* Font */
  --font-family-base: "Kiwi Maru", serif;
  --font-family-accent: "vdl-penletter", serif;
  --orange: #FF7A30;
  --secondary-color: #FF9F5A;
  --text-color: #442005;
  --light-text: #666666;
  --background-color: #FFFBF3;
  --white: #FFFFFF;
  --line: #4CAF50;
  --instagram: #E1306C;
  --border-color: #EAEAEA;
  --border-radius: 4rem;
  --shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

body {
  font: 1.6rem var(--font-family-base);
  font-weight: 300;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

main {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
    /* スマホ用のスタイルを非表示にする */
  }
}
@media (max-width: 768px) {
  :root {
    font-size: 2.5641025641vw;
    /* 10px = 1rem の設定 */
  }
  .pc {
    display: none !important;
    /* PC用のスタイルを非表示にする */
  }
}
strong {
  font-weight: 500;
}

/* ===== アイコン ===== */
.svg {
  display: none;
  /* 余白を消す */
}

.icon-paws {
  display: inline-flex;
  fill: currentColor;
}

.section-paws {
  width: 16.8rem;
  height: 13.8rem;
  fill: #EFDAC2;
}
@media screen and (max-width: 768px) {
  .section-paws {
    width: 10rem;
    height: 8rem;
  }
}

.cta-line {
  fill: #06C755;
}

.cta-instagram {
  width: 1.4em;
  height: 1.4em;
  fill: #E1306C;
}

/* ===== レイアウト ===== */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.row {
  display: flex;
}
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}

.column {
  flex: 1;
  min-width: 300px;
  /* 最小幅を設定 */
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 1.6rem;
  }
}
/* ===== section-header ===== */
.section-header {
  width: 100%;
  height: 13.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .section-header {
    height: 8rem;
  }
}

.section-title {
  font-size: 3.6rem;
  color: #ff5d21;
  text-shadow: 0 0 4px white, 0 2px 2px white, 2px 0 2px white, -2px 0 2px white, 0 -2px 2px white;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #ff5d21;
  margin-left: 2.4rem;
}
.section-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #ff5d21;
  margin-right: 2.4rem;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
  .section-title::after {
    margin-left: 1.2rem;
  }
  .section-title::before {
    margin-right: 1.2rem;
  }
}

.section-paws {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* ===== cta ===== */
.hero-image img {
  width: 100%;
}

/* ===== cta ===== */
.cta__row {
  align-items: flex-end;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .cta__row {
    align-items: stretch;
  }
}
.cta__group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__btn {
  display: inline-flex;
  width: fit-content;
  background-color: var(--orange);
  color: var(--white);
  font-size: 3.2rem;
  text-decoration: none;
  align-items: center;
  gap: 1.2rem;
  padding: 0.4em 1.6em;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4rem;
}
@media (max-width: 768px) {
  .cta__btn {
    font-size: 2.4rem;
  }
}
.cta__btn .icon-paws {
  width: 0.8em;
  height: 0.8em;
}

.baloon {
  position: relative;
  height: 12rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .baloon {
    width: 100%;
  }
}
.baloon__inner {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.6rem 2rem;
  border-radius: 2rem;
  text-align: left;
}
.baloon.--line {
  border: 2px solid #06C755;
  border-radius: 2rem;
}
.baloon.--line::before {
  border-color: #06C755 transparent transparent;
}
.baloon.--line::after {
  border-color: #dff8ea transparent transparent;
}
.baloon.--line .baloon__inner {
  background-color: rgba(6, 199, 85, 0.0509803922);
}
.baloon.--line p {
  font-size: 2rem;
}
.baloon.--instagram {
  border-radius: 2rem;
  background: linear-gradient(180deg, rgb(116, 26, 250), rgb(255, 48, 196) 50%, rgb(255, 93, 33) 75%, rgb(255, 215, 53));
  padding: 2px;
}
.baloon.--instagram::before {
  border-color: rgb(255, 215, 53) transparent transparent;
}
.baloon.--instagram::after {
  border-color: rgb(255, 251, 236) transparent transparent;
}
.baloon.--instagram .baloon__inner {
  background: linear-gradient(180deg, rgb(243, 235, 255), rgb(255, 236, 250) 50%, rgb(255, 240, 234) 75%, rgb(255, 250, 230));
}
.baloon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 2rem 10px 0 10px;
  translate: -50% 100%;
}
.baloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  translate: -50% 100%;
}
.baloon strong {
  font-size: 2rem;
  color: var(--orange);
}
.baloon .cta-line,
.baloon .cta-instagram {
  width: 4rem;
  height: 4rem;
}

/* ===== news ===== */
.news__header {
  text-align: center;
  margin: 2rem auto;
  color: var(--orange);
  text-shadow: 0 0 4px white, 0 2px 2px white, 2px 0 2px white, -2px 0 2px white, 0 -2px 2px white;
  font-size: 2.4rem;
}
.news__header h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .news__header {
    font-size: 1.6rem;
  }
  .news__header h3 {
    font-size: 2.4rem;
  }
}

/* ===== concept ===== */
.concept__box {
  width: 100%;
  margin: 4rem auto;
  padding: 6.4rem 8rem;
  background-color: #fff3e5;
  border-radius: var(--border-radius);
  display: flex;
  gap: 4rem;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .concept__box {
    padding: 1.6rem 0.8rem 4rem;
    gap: 2rem;
  }
  .concept__box .concept__title {
    font-size: 2.4rem;
    text-align: center;
  }
  .concept__box .concept__img {
    padding: 6rem 6rem 0;
  }
}
.concept__box .bg-text,
.concept__box .bg-paws {
  position: absolute;
  z-index: 1;
}
.concept__box .bg-text {
  font-family: "caveat", cursive;
  transform: rotate(-12.4deg);
  transform-origin: 0 0;
  font-size: 6rem;
  color: #ffcbae;
  left: 2rem;
  top: 3.2rem;
}
.concept__box .bg-paws {
  width: 40rem;
  height: 38rem;
  top: 3.2rem;
  right: 8rem;
  fill: rgba(255, 255, 255, 0.3);
}
.concept__img, .concept__title, .concept__text {
  z-index: 2;
}
.concept__title {
  font-size: 3.6rem;
  color: var(--orange);
  text-shadow: 0 0 4px white, 0 2px 2px white, 2px 0 2px white, -2px 0 2px white, 0 -2px 2px white;
  margin-bottom: 2rem;
}
.concept__text {
  font-size: 1.6rem;
}
.concept__text p {
  background-image: linear-gradient(180deg, var(--text-color) 1px, transparent 1px);
  background-size: 100% 2.8em;
  line-height: 2.8em;
  padding-bottom: 1px;
}
.concept__img img {
  width: 28.7rem;
  height: 28.7rem;
}
@media (max-width: 768px) {
  .concept__img img {
    width: 20rem;
    height: 20rem;
  }
}

/* ===== price ===== */
.price {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price__content {
  width: 100%;
  max-width: 100rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price__content h3 {
  color: var(--orange);
  text-shadow: 0 0 4px white, 0 2px 2px white, 2px 0 2px white, -2px 0 2px white, 0 -2px 2px white;
  font-size: 3.2rem;
}
.price__content small {
  width: 100%;
  text-align: right;
}
.price__table {
  width: 100%;
  margin: 2rem auto;
  border-spacing: 0;
  border-collapse: separate;
}
.price__table th, .price__table td {
  border-top: 2px solid #ffcbae;
  border-left: 2px solid #ffcbae;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .price__table th, .price__table td {
    font-size: 1.6rem !important;
  }
}
.price__table th {
  font-size: 2.4rem;
  padding: 2rem 0;
}
.price__table tr:nth-child(even) th {
  background: white;
}
.price__table td {
  font-size: 3.6rem;
  padding: 2rem 0;
  background: #FCFCFC;
}
.price__table td span {
  display: block;
  width: fit-content;
  font-size: 2.4rem;
  color: var(--white);
  background-color: var(--orange);
  border-radius: 4rem;
  padding: 0.4rem 1.6rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .price__table td span {
    font-size: 1.2rem;
  }
}
.price__table tr:nth-child(even) td {
  background: white;
}
.price__table th:last-child,
.price__table td:last-child {
  border-right: 2px solid #ffcbae;
}
.price__table tr:last-child th,
.price__table .price__table tr:last-child td {
  border-bottom: 2px solid #ffcbae;
}
.price__table tr:first-child :first-child {
  border-top-left-radius: 4rem;
}
.price__table tr:first-child :last-child {
  border-top-right-radius: 4rem;
}
.price__table tr:last-child :first-child {
  border-bottom-left-radius: 4rem;
}
.price__table tr:last-child :last-child {
  border-bottom-right-radius: 4rem;
}
.price__table tr:not(:first-child) th,
.price__table tr:not(:first-child) td {
  border-top: none;
}

.campaign {
  margin-bottom: 4rem;
}
.campaign__title {
  text-align: center;
  font-size: 2.4rem;
  margin: 2rem 0;
}
.campaign__title .icon-paws {
  width: 1.4em;
  height: 1.4em;
  margin: 0 0.8rem -0.6rem;
}
@media (max-width: 768px) {
  .campaign__title {
    font-size: 2rem;
  }
}
.campaign__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .campaign__content {
    flex-direction: column;
  }
}
.campaign__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.campaign__item img {
  width: 20rem;
  height: 20rem;
}
.campaign__item p {
  text-align: center;
}

h4 {
  color: white;
  background: #ffcbae;
  width: fit-content;
  display: inline-flex;
  padding: 0.8rem 2rem;
  border-radius: 4rem;
  font-weight: 300;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  h4 {
    padding: 0.4rem 1.6rem;
  }
}

/* ===== feature ===== */
.feature__list {
  display: flex;
  flex-direction: column;
  width: 90%;
  gap: 4rem;
}
@media (max-width: 768px) {
  .feature__list {
    width: 100%;
  }
}
.feature__item {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .feature__item {
    gap: 2rem;
  }
}
.feature__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .feature__content {
    flex-direction: column;
  }
}
.feature__title {
  font-size: 2.4rem;
  font-family: "vdl-penletter", serif;
}
.feature__title .icon-paws {
  width: 1.4em;
  height: 1.4em;
  margin: 0 2rem -0.6rem 0.4rem;
}
.feature__image {
  width: 45%;
}
@media (max-width: 768px) {
  .feature__image {
    width: 100%;
  }
}
.feature__text {
  font-size: 1.6rem;
}

.feature-other {
  max-width: 93rem;
  margin: 0 auto;
}
.feature-other p {
  font-size: 2.4rem;
}
.feature-other__list {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.feature-other__item {
  color: white;
  background: #ffcbae;
  width: fit-content;
  display: inline-flex;
  padding: 0.8rem 2rem;
  border-radius: 4rem;
  font-weight: 300;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .feature-other {
    font-size: 1.6rem;
  }
  .feature-other__list {
    gap: 0.4rem;
  }
  .feature-other__item {
    font-size: 1.6rem;
    padding: 0.4rem 1.2rem;
  }
}

/* ===== faq ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-list__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.faq-answer,
.faq-question {
  padding-left: 4rem;
  position: relative;
}

.faq-question {
  font-size: 2.4rem;
}
.faq-question::before {
  display: inline-flex;
  content: "Q";
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: -0.5rem;
  width: 3.6rem;
  height: 3.6rem;
  color: white;
  background-color: var(--orange);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

/* ===== contact ===== */
.contact-content {
  width: 100%;
  display: grid;
  grid-template-columns: 10rem 1fr 38rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 5rem 1fr;
    gap: 1.2rem;
  }
  .contact-content img {
    width:12rem;
    height: auto;
  }
  .contact-content .cta__btn {
    font-size: 2.4rem;
    margin: 0 auto;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.contact-content__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contact-content__logo {
  width: 10rem;
  height: 10rem;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-content__logo {
    width: 5rem;
    height: 5rem;
  }
  .contact-content__logo .icon-line,
  .contact-content__logo .icon-instagram {
    width: 2.4rem !important;
    height: 2.4rem !important;
  }
}
.contact-content__logo .icon-line,
.contact-content__logo .icon-instagram {
  width: 4.8rem;
  height: 4.8rem;
  fill: var(--white);
}
.contact-content__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 2.4rem;
  padding-top: 1.2rem;
}
.contact-content__text h3 {
  width: 100%;
  color: var(--orange);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-content__text {
    font-size: 1.6rem;
    padding-top: 0.8rem;
    align-items: flex-end;
  }
}

/* ===== access ===== */
.access__info {
  font-size: 2.4rem;
  margin-bottom: 3.2rem;
}
.access__map {
  width: 80rem;
  aspect-ratio: 2/1;
  margin-bottom: 4rem;
}
.access__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .access__info {
    font-size: 1.6rem;
  }
  .access__map {
    width: 100%;
    height: 20rem;
    aspect-ratio: 16/9;
  }
}

/* ===== footer ===== */
.footer {
  width: 100%;
  background-color: #F2BDA0;
  padding: 2rem;
  text-align: center;
}

.footer p {
  margin: 0;
}

/* ===== スクロール時のフェードインアニメーション ===== */
.fadein {
  /* アニメーションの命令 */
  animation: scrollAnime linear;
  animation-timeline: view();
  animation-range: entry;
}

@keyframes scrollAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}