@import url('https://fonts.googleapis.com/css2?family=Rounded+Mplus+1c:wght@400;700&display=swap');

/*============
body
=============*/
body {
  font-family: heisei-maru-gothic-std, sans-serif;
  font-weight: bold;
  font-style: normal;
  background-color: #F3F3B4;
}

/* ヘッダー */
.contact-header {
  position: sticky;
  top: 0px;
  background-color: #F3F3B4;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 10000;
}

.contact-header__logoImg {
  width: 60px;
  margin: 0 auto;
}

.contact-header__text {
  padding: 30px;
}

.contact-header__textMain {
  color: #e6e6e6;
  text-align: center;
  font-size: 20px;
  font-family: 游明朝;
  letter-spacing: 10px;
}

.contact-header__mainImg {
  width: 90%;
  height: auto;
  margin: auto;
}

.dogrun-underline {
  margin: 10vh;
}

.dogrun-underline p {
  padding: 0.2rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
  font-size: 23px;
  text-align: center;
}

.dogrun-underline p span {
  background: linear-gradient(transparent 60%, #FFFE03 60%);
}

/* ドッグラン */
.section {
  padding: 0 20%;
}

.dogrun_priceTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 30px;
  font-weight: bold;
  margin-top: 15vh;
}

.dogrun_priceTitle::before,
.dogrun_priceTitle::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 70px;
  background-color: #000;
  transition: transform 1.2s ease;
  transform: scaleX(0);
  transform-origin: center;
}

.dogrun_priceTitle::before {
  margin-right: 15px;
  transform-origin: left;
}

.dogrun_priceTitle::after {
  margin-left: 15px;
  transform-origin: right;
}

.dogrun_priceTitle.animate-line::before,
.dogrun_priceTitle.animate-line::after {
  transform: scaleX(1);
}

.dogrun_price_imgBox {
  margin: 5vh auto 0;
  overflow: hidden;
}

.dogrun_price_imgBox img {
  border-radius: 10px;
}

.img-mask-box {
  width: 100%;
  overflow: hidden;
}

.img-mask-box img {
  -webkit-mask-image: linear-gradient(135deg, black 50%, transparent 50%);
  mask-image: linear-gradient(135deg, black 50%, transparent 50%);
  -webkit-mask-size: 200% 200%;
  mask-size: 200% 200%;
  -webkit-mask-position: right bottom;
  mask-position: right bottom;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.animate-mask {
  animation: revealDiagonalLTR 1.5s ease-out forwards;
}

@keyframes revealDiagonalLTR {
  from {
    -webkit-mask-position: right bottom;
    mask-position: right bottom;
  }
  to {
    -webkit-mask-position: left top;
    mask-position: left top;
  }
}

.dogrun_price_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2vw;
  width: 45vw;
  margin: -10vh auto 0;
  position: relative;
  z-index: 2;
}

.dogrun_price_content .column {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex: 1 1 calc(50% - 1vw);
  padding: 1.5vw;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: solid 3px #FFA000;
}

.fade-blur-diagonal {
  opacity: 0;
  filter: blur(8px);
  transform: translate(-30px, -30px); 
  transition:
    opacity 1.4s ease,
    filter 1.4s ease,
    transform 1.4s ease;
}

.fade-blur-diagonal.animate {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
}

.dogrun_orange {
  background-color: #FFA000;
  width: 150px;
  padding: 0.5vh;
  text-align: center;
  margin: auto;
  border-radius: 10vw;
  color: #ffffff;
  font-size: 1.2em;
}

.column p {
  text-align: center;
  font-size: 1.2em;
}

.column_dogrunText {
  margin-top: 4vh;
}

.column_yellowBox {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex: 1 1 calc(50% - 1vw);
  padding: 1.5vw;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: solid 3px #E3DC00;
  width: 40vw;
  margin: 5vh auto 0;
}

.dogrun_yellow {
  background-color: #E3DC00;
  width: 150px;
  padding: 0.5vh;
  text-align: center;
  margin: auto;
  border-radius: 10vw;
  color: #ffffff;
  font-size: 1.2em;
}

.column_dogrunText_yellowBox {
  text-align: center;
  margin-top: 3vh;
  font-size: 1.2em;
}

/* ドッグランドリー */
.doglaundry_explanation {
  margin: 10vh auto 0;
  color: #231815;
}

.doglaundry_explanation h3 {
  font-size: 1.3em;
}

.doglaundry_explanation p {
  margin-top: 2vh;
}

.doglaundry_explanation span {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.doglaundry_explanation span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.6em;
  background: #ffbc02cc;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
  z-index: -1;
}

.doglaundry_explanation span.animate::after {
  transform: scaleX(1);
}

.box-navy {
  background-color: #ffffff;
  padding: 5em 2em 2em;
  box-shadow: 0px 1px 5px rgb(0 0 0 / .1);
  position: relative;
  border: solid 1px #27286d;
  border-radius: 10px;
  margin: 5vh auto 0;
}

.luxury-veil {
  position: relative;
  overflow: hidden;
}

.luxury-veil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white; 
  z-index: 2;
  transform: translateY(0%);
  transition: transform 1.6s ease;
  pointer-events: none;
}

.luxury-veil.animate::before {
  transform: translateY(100%);
}

.box-navy .box-title {
  background-color: #27286d;
  font-size: 1em;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
}

.doglaundry_flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2vw;
  margin: 5vh auto 0;
}

.flexBox_pink {
  flex: 1 1 calc(50% - 1vw);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 5em 2em 2em;
  box-shadow: 0px 1px 5px rgb(0 0 0 / .1);
  position: relative;
  border: solid 1px #f01c86;
  border-radius: 10px;
}

.flexBox_pink .box-title {
  background-color: #f01c86;
  font-size: 1em;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
}

.flexBox_pink p {
  margin-top: 3vh;
}

.medal_pink {
  display: flex;
  align-items: center;
}

.medal_pink img {
  width: 4.5vw;
}

.medal_pink h4 {
  font-size: 1.1em;
  color: #f01c86;
  margin-left: 1em;
}

.flexBox_blue {
  flex: 1 1 calc(50% - 1vw);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 5em 2em 2em;
  box-shadow: 0px 1px 5px rgb(0 0 0 / .1);
  position: relative;
  border: solid 1px #16b2f0;
  border-radius: 10px;
}

.flexBox_blue .box-title {
  background-color: #16b2f0;
  font-size: 1em;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
}

.flexBox_blue p {
  margin-top: 3vh;
}

.medal_blue {
  display: flex;
  align-items: center;
}

.medal_blue img {
  width: 4.5vw;
}

.medal_blue h4 {
  font-size: 1.1em;
  color: #16b2f0;
  margin-left: 1em;
}

.example {
  background-color: #ffffff;
  margin: 5vh auto 0;
  border: solid 1px #000640;
  border-radius: 10px;
  box-shadow: 0px 1px 5px rgb(0 0 0 / .1);
}

.example img {
  margin: auto;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* お客様へのお願い */
.fashionable-box2 {
  margin: 2em 25px;
  padding: 1em;
  background-color: #ffecec;
  border: dashed 3px #e66d6d;
  box-shadow: 0 0 0 10px #ffecec, 0 0 0 25px #e66d6d;
  border-radius: 3px;
  width: 50vw;
  margin: 25vh auto 20vh;
}

.fade-in {
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-in.show {
  opacity: 1;
  transform: scale(1);
}

.Precautions_title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 3vh;
}

.Precautions_title span {
  background: linear-gradient(transparent 60%, #ff9b9bd8 60%);
}

ul{
  padding-left: 10px;
}

/* ---------- ▼ タブレット大（iPad Airなど） ---------- */
@media (max-width: 1024px) and (min-width: 769px) {
  .dogrun-underline p {
    font-size: 20px;
  }

  .dogrun-underline {
    margin: 8vh auto;
  }
}

/* ---------- ▼ タブレット小（iPad miniなど） ---------- */
@media (max-width: 768px) and (min-width: 481px) {
  .dogrun-underline p {
    font-size: 18px;
  }

  .dogrun-underline {
    margin: 7vh auto;
  }
}

/* ---------- ▼ スマホ ---------- */
@media (max-width: 480px) {
  .dogrun-underline p {
    font-size: 16px;
  }

  .dogrun-underline {
    margin: 6vh auto;
  }
}

/* ---------- ▼ タブレット大（1024px以下） ---------- */
@media (max-width: 1024px) {
  .section {
    padding: 0 10%;
  }

  .dogrun_price_content {
    flex-direction: column;
    width: 70vw;
    margin: -3vh auto 0;
  }

  .dogrun_price_content .column {
    width: 100%;
    margin-bottom: 3vh;
  }

  .dogrun_priceTitle {
    margin-top: 10vh;
  }

  .column_yellowBox {
    width: 70vw;
    margin: 2vh auto 0;
  }

  .doglaundry_flexBox {
    flex-direction: column;
    width: 80vw;
  }

  .flexBox_pink,
  .flexBox_blue {
    width: 100%;
    margin-bottom: 3vh;
  }

  .medal_pink img,
  .medal_blue img {
    width: 7vw;
  }

  .example {
    width: 80vw;
    margin: 1vh auto 0;
  }

  .fashionable-box2 {
    width: 80vw;
    margin: 10vh auto;
  }

  .doglaundry_explanation {
    margin: 7vh auto 0;
  }
}

/* ---------- ▼ スマホ・小型タブレット（768px以下） ---------- */
@media (max-width: 768px) {
  .section {
    padding: 0 5%;
  }

  .dogrun_priceTitle {
    font-size: 24px;
    margin-top: 8vh;
  }

  .dogrun_price_imgBox img {
    width: 100%;
  }

  .dogrun_orange,
  .dogrun_yellow {
    width: 100px;
    font-size: 1em;
  }

  .column p,
  .column_dogrunText,
  .column_dogrunText_yellowBox {
    font-size: 1em;
  }

  .box-title {
    font-size: 0.9em;
  }

  .doglaundry_flexBox {
    width: 90vw;
  }

  .medal_pink img,
  .medal_blue img {
    width: 10vw;
  }

  .medal_pink h4,
  .medal_blue h4 {
    font-size: 1em;
  }

  .example {
    width: 90vw;
  }

  .Precautions_title {
    font-size: 18px;
  }

  .fashionable-box2 {
    padding: 1em;
    box-shadow: none;
  }
}

/* ---------- ▼ スマホ（480px以下） ---------- */
@media (max-width: 480px) {
  .dogrun_priceTitle {
    font-size: 19px;
  }

  .dogrun_price_content {
    width: 85vw;
  }

  .column_yellowBox {
    width: 85vw;
  }

  
  .doglaundry_explanation {
    margin: 5vh auto 0;
  }

  .doglaundry_explanation h3 {
    font-size: 1.1em;
  }

  .box-title {
    font-size: 0.85em;
    padding: 8px;
  }

  .medal_pink img,
  .medal_blue img {
    width: 12vw;
  }

  .fashionable-box2 {
    width: 90vw;
    font-size: 14px;
  }

  .Precautions_title {
    font-size: 16px;
  }
  
}

@media (max-width: 360px) {
  .text-box{
  padding-top: 2rem;
}
}