@charset "utf-8";
body{
font-family:  sans-serif;
font-weight: 300;
margin: 0;
letter-spacing: 0.05em;
overflow-x: hidden;
background-color: #fff7e9;
padding-top: 100px;
}

html{
font-size: 100%;
}

li{
list-style: none;
}

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

#header{
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: space-between;
    background-color: #ffffff;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

#header.logo{
    width: 100%;
max-width: 100px;
  padding: 0 20px;
  flex-shrink: 0;
}

.logo img{
  width: 130px;   
  height: auto;
  flex-shrink: 0;
  
}

#header .logo a{
    display: block;
}

#header .navi .menu {
display: flex;
align-items: center;
padding: 0 20px;
flex-wrap: nowrap;
gap: 60px;

}

#header .navi .menu li{
margin-left: 0;
  white-space: nowrap;
  font-size: clamp(12px, 2vw, 20px);
}

.logo.text .p{
position: absolute;
color: #ffffff;
top: 0;
left: 0;
font-size: 40px;
font-weight: 400;
}

.drawer{
    display: none;
}

.header-right{
    display: none;
}

@media (min-width: 481px) and (max-width: 768px){
#header{
display:flex;
align-items:center;
justify-content: space-between;
padding: 0 20px;
}
  
.logo img{
width: 110px;  
height: auto;
}
  
.navi{
display:none;
}

/* 右側：カート＋ハンバーガー */
.header-right{
margin-right: 15px;
display: flex;
flex-direction: row;   
align-items: center;
gap: 13px; 
}

.cart-link img{
width: 28px;
height: auto;
display:block;
}

.hamburger{
display:flex;
flex-direction: column;
gap: 6px;
background:none;
border:none;
cursor:pointer;
padding: 0;
}

.hamburger span{
width: 28px;
height: 2px;
background:#000;
display:block;
}}

@media (max-width: 480px) {
#header{
display:flex;
align-items:center;
justify-content: space-between;
padding: 0 20px;
}

.logo img{
width: 100px;   
height: auto;
}

.navi{
  display:none;
  }

/* 右側：カート＋ハンバーガー */
.header-right{
margin-right: 15px;
display: flex;
flex-direction: row;   
align-items: center;
gap: 13px;
}

.cart-link img{
width: 28px;
height: auto;
display:block;
}

.hamburger{
display:flex;
flex-direction: column;
gap: 6px;
background:none;
border:none;
cursor:pointer;
padding: 0;
}

.hamburger span{
width: 28px;
height: 2px;
background:#000;
display:block;
}}

@media (min-width: 481px) and (max-width: 768px){
/* ドロワー本体（左からスライド） */
.drawer{
position: fixed;
top: 0;
left: 0;
width: 78vw;          
max-width: 420px;
height: 100vh;
background: #fff;
transform: translateX(-105%);
transition: transform .25s ease;
z-index: 2000;
display: flex;
flex-direction: column;
padding: 22px 26px 18px;
box-shadow: 10px 0 30px rgba(0,0,0,.08);
}

/* ×ボタン（右上） */
.drawer-close{
align-self: flex-end;
border: none;
background: none;
font-size: 28px;
line-height: 1;
cursor: pointer;
padding: 4px 6px;
}
  
/* メニュー */
.drawer-nav{
margin-top: 10px;
display: flex;
flex-direction: column;
gap: 18px;
padding-top: 10px;
}

.drawer-nav a{
text-decoration: none;
color: #666;
font-size: 16px;
letter-spacing: .03em;
}

/* 下部（ロゴ＋コピーライト） */
.drawer-footer{
margin-top: auto;          
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding-top: 20px;
}

.drawer-logo{
width: 70px;
height: auto;
display: block;
}

.drawer-footer small{
color: #999;
font-size: 12px;
}
  
.drawer-overlay{
position: fixed;
inset: 0;
background: rgba(0,0,0,.18);
opacity: 0;
pointer-events: none;
transition: opacity .25s ease;
z-index: 1500;
}

/* 開いた状態 */
body.drawer-open .drawer{
transform: translateX(0);
}
body.drawer-open .drawer-overlay{
opacity: 1;
pointer-events: auto;
}}

@media (max-width: 480px) {
/* ドロワー本体（左からスライド） */
.drawer{
position: fixed;
top: 0;
left: 0;
width: 78vw;          
max-width: 420px;
height: 100vh;
background: #fff;
transform: translateX(-105%);
transition: transform .25s ease;
z-index: 2000;
display: flex;
flex-direction: column;
padding: 22px 26px 18px;
box-shadow: 10px 0 30px rgba(0,0,0,.08);
}

/* ×ボタン（右上） */
.drawer-close{
align-self: flex-end;
border: none;
background: none;
font-size: 28px;
line-height: 1;
cursor: pointer;
padding: 4px 6px;
}

/* メニュー */
.drawer-nav{
margin-top: 10px;
display: flex;
flex-direction: column;
gap: 18px;
padding-top: 10px;
}

.drawer-nav a{
text-decoration: none;
color: #666;
font-size: 16px;
letter-spacing: .03em;
}

/* 下部（ロゴ＋コピーライト） */
.drawer-footer{
margin-top: auto;         
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding-top: 20px;
}

.drawer-logo{
width: 70px;
height: auto;
display: block;
}

.drawer-footer small{
color: #999;
font-size: 12px;
}

.drawer-overlay{
position: fixed;
inset: 0;
background: rgba(0,0,0,.18);
opacity: 0;
pointer-events: none;
transition: opacity .25s ease;
z-index: 1500;
}

/* 開いた状態 */
body.drawer-open .drawer{
transform: translateX(0);
}
  
body.drawer-open .drawer-overlay{
opacity: 1;
pointer-events: auto;
}}

.banner {
  position: relative;
  min-height: 70vw;
  max-height: 600px;
  margin: 0 auto;
  background-image: url("../image/dog.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* ロゴ */
.banner-logo {
  position: absolute;
  top: 3%;
  left: 0;
  width:70%;
}

/* コピー全体 */
.banner-copy {
  position: absolute;
  left: 5%;
  bottom: 4%;
  padding: 2% 3%;
  border-radius: 10px;
  color: #fff;
  width: min(90%, 700px);
}

.banner-copy h2 {
  font-size: clamp(24px, 4vw, 50px);
  margin-bottom: 0;
}

.banner-copy p {
  font-size: clamp(18px, 3vw, 30px);
  margin-bottom: 10px;
}

.banner-price{
  font-size: clamp(18px, 3vw, 30px);
}

.yen{
  font-size: clamp(20px, 3.2vw, 35px);
  letter-spacing: -0.2em;
}

.count-number{
  font-size: clamp(28px, 5vw, 50px);
  letter-spacing: -0.08em;
}

.count-text{
  font-size: clamp(18px, 3vw, 30px);
  letter-spacing: 0.01em;
}

.price-number{
  font-size: clamp(28px, 5vw, 50px);
}

.price-tax{
  font-size: clamp(18px, 3vw, 30px);
}

.banner-btn {
  display: inline-block;
  padding: 0.5em 2em;
  background: #ffffff;
  color: #555;
  border-radius: 30px;
  text-decoration: none;
  font-size: clamp(14px, 2.5vw, 25px);
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px #555;
}

.banner-btn:hover{
  box-shadow: 0 2px 5px #becedd;
  transform: translateY(2px);
}

.banner-towel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(120px, 20%, 300px);
}

@media (min-width: 481px) and (max-width: 768px){
.banner {
  position: relative;
  height: 600px;
  margin: 0 auto;
  background-image: url("../image/dog.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.banner-logo {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 70%;
}

.banner-copy {
  position: absolute;
  left: 10px;
  bottom: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
}

.banner-copy h2 {
  font-size: 35px;
  margin-bottom: 0px;
}

.banner-copy p {
  font-size: 25px;
  margin-bottom: 10px;
}

.banner-price{
    font-size: 20px; 
    font-weight: normal;    
}

.yen{
    font-size: 35px;
    letter-spacing: -0.3em;
}

.count-number{
font-size: 40px;
letter-spacing: -0.1em;
}

.count-text{
font-size: 25px;
letter-spacing: 0.01em;
}

.price-number{
    font-size: 40px;
}

.price-tax{
    font-size: 25px;
}

.banner-btn {
  display: inline-block;
  padding: 5px 40px;
  background: #ffffff;
  color: #555;
  border-radius: 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
 margin-top: 5px;
 margin-bottom: 10px;
 box-shadow: 0 4px 10px #555;
}

.banner-btn:hover{
    box-shadow: 0 2px 5px #becedd;
    transform: translateY(2px);
}
  
.banner-towel{
  position:absolute;
  right:0;
  bottom:0;
  width:40%;
  max-width:150px;
}}

@media (max-width: 480px) {
.banner {
  position: relative;
  height: 450px;
  margin: 0 auto;
  background-image: url("../image/dog.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.banner-logo {
  position: absolute;
  top: 10px;
  left: -5px;
  width: 75%;
}

.banner-copy {
  position: absolute;
  left: 5px;
  bottom: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
}

.banner-copy h2 {
  font-size: 25px;
  margin-bottom: 0px;
}

.banner-copy p {
  font-size: 20px;
  margin-bottom: 10px;
}

.banner-price{
    font-size: 20px; 
    font-weight: normal;
}

.yen{
    font-size: 20px;
    letter-spacing: -0.4em;
}

.count-number{
font-size: 30px;
letter-spacing: -0.15em;
}

.count-text{
font-size: 20px;
letter-spacing: 0.01em;
}

.price-number{
    font-size: 30px;
}
  
.price-tax{
    font-size: 16px;
}

.banner-btn {
  display: inline-block;
  padding: 5px 40px;
  background: #ffffff;
  color: #555;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
 margin-top: 0px;
 margin-bottom: 0px;
 box-shadow: 0 4px 10px #555;
}

.banner-btn:hover{
    box-shadow: 0 2px 5px #becedd;
    transform: translateY(2px);
}

.banner-towel{
  position:absolute;
  right:0;
  bottom:0;
  width:30%;
  max-width:110px;
}}

.trouble{
   padding: 130px 0;
}

.trouble-inner{
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .trouble-image{
    width: 40%;
}

.trouble-image img{
width: 100%;
height: auto;
display: block;
}

.trouble-text{
width: 50%;
   background-color: #FFF1D3;
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 90px 60px;
    text-align: center;
  color:#380000;
}

.trouble-text h2{
  font-size: clamp(30px, 3vw, 40px);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.trouble-text ul{
list-style: none;
 padding: 10px 10px;
}

.trouble-text li{
    font-size: 20px;
    margin-bottom: 10px;
}

.commitment{
  background-color: #FFF1D3;
  color: #380000;
}

.commitment-title{
  font-size: clamp(22px, 2.5vw, 30px);
  text-align: center;
  padding: clamp(50px, 8vw, 100px) 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.feature{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1150px;
  margin: 0 auto 30px;
  row-gap: clamp(30px, 5vw, 50px);
  column-gap: clamp(20px, 4vw, 40px);
  padding: 0 10px;
  box-sizing: border-box;
}

.feature-item{
  text-align: center;
}

.feature-img{
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-left: 5px solid #ffffff;
  border-top: 6px solid #ffffff;
  box-sizing: border-box;
}

.feature-item h3{
  font-size: clamp(20px, 2vw, 28px);
  margin: clamp(12px, 2vw, 20px);
  line-height: 1.3;
}

.feature-item p{
  font-size: clamp(16px, 1.5vw, 18px);
  margin-bottom: 0;
  line-height: 1.5;
}

.feature-item .price{
  font-size: clamp(18px, 1.8vw, 20px);
  margin-bottom: clamp(20px, 4vw, 40px);
}

.paws-img{
width: 40%;             
margin: 20px 0 -100px -60px;      
transform: scaleX(-1);
}

.voice{
  padding: 3% 8%;
  color: #3e3e3e;
}

.voice-title{
  font-size: clamp(24px, 4vw, 40px);
  text-align: center;
  margin-bottom: 8%;
  letter-spacing: 0.2em;
  color: #756e6e;
}

.voice-title span{
  display: block;
  font-size: clamp(14px, 2.2vw, 25px);
  text-align: center;
  letter-spacing: 0.05em;
}

.voice-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  margin-bottom: 6%;
  flex-wrap: wrap;
}

.voice-item.reverse{
  flex-direction: row-reverse;
}

.voice-img{
  width: 28%;
  min-width: 180px;
  text-align: center;
}

.voice-img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.voice-img p.name{
  font-size: clamp(14px, 1.8vw, 18px);
  text-align: center;
  margin-top: 6%;
}

.voice-text{
  width: 58%;
  min-width: 280px;
  padding: 2em;
  box-shadow: 0 4px 4px #ff27270d, 0 2px 3px -2px rgb(0 0 0 / 1%);
  background-image:
    linear-gradient(transparent calc(100% - 1px), #e6edf3 50%, #e6edf3),
    linear-gradient(90deg, transparent calc(100% - 1px), #e6edf3 50%, #e6edf3);
  background-size: 15px 15px;
  background-repeat: repeat;
  background-color: #ffffff;
  color: #333333;
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0.08em;
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (min-width: 481px) and (max-width: 768px){
.commitment{
background-color: #ffffff;
}

.feature{  grid-template-columns: 1fr;  /* 1列にする */
gap: 50px;
}

.commitment-title{
font-size: 25px;
padding: 70px;
}

.feature-img{
width: 60%;
}

.feature-item h3{
font-size: 30px;
margin: 20px;
}}

@media (max-width: 480px) {
.commitment{
background-color: #ffffff;
}

.feature{  grid-template-columns: 1fr;  /* 1列にする */
gap: 50px;
}

.commitment-title{
font-size: 20px;
padding: 70px;
}

.feature-img{
width: 60%;
}

.feature-item h3{
font-size: 23px;
margin: 15px;
}

.feature-item p{
font-size: 16px;
margin-bottom: 0px;
}
  
.feature-item .price{
font-size:20px;
margin-bottom: 40px;
 }

.paws-img{
width: 35%;             
margin-top: 20px;      
margin-left: -80px;
margin-bottom: -100px;
transform: scaleX(-1);
}

.voice{
padding: 20px 160px;
color: #3e3e3e;
 }

.voice-title{
    font-size: 40px;
    text-align: center;
    justify-content: center;
    margin-bottom: 100px;
    letter-spacing: 0.2em;
    color: #756e6e;
 }

 .voice-title span{
    font-size: 25px;
    text-align: center;
    display: block;
    letter-spacing: 0.05em;
 }

 .voice-item{
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
margin-bottom: 70px;
 }
 
.voice-item.reverse{
flex-direction: row-reverse;
}

 .voice-img img{
width: 300px;
height: 300px;
  border-radius: 50%;  
}
 
 .voice-img p.name{
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
 }

 .voice-text {
    width: 615px;
    padding: 2em 2em;
    box-shadow: 0 4px 4px #ff27270d, 0 2px 3px -2px rgb(0 0 0 / 1%);
    background-image: linear-gradient(transparent calc(100% - 1px), #e6edf3 50%, #e6edf3), linear-gradient(90deg, transparent calc(100% - 1px), #e6edf3 50%, #e6edf3);
    background-size: 15px 15px;
    background-repeat: repeat;
    background-color: #ffffff;
    color: #333333;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-all;
}}

@media (min-width: 481px) and (max-width: 768px){
.paws-img{
  width: 30%;
  display: block;
  margin-left: auto;
  margin-right: -40px; 
  transform: scaleX(-1);
}

.voice{
    padding: 4% 6%;
  }

  .voice-title{
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 10%;
  }

  .voice-title span{
    font-size: clamp(14px, 2.5vw, 20px);
  }

  .voice-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 8%;
    align-items: stretch;
  }

  .voice-item.reverse{
    flex-direction: column;
  }

  .voice-img{
    display: flex;
    align-items: center;
    gap: 5%;
    order: 1;
    width: 100%;
  }

  .voice-img img{
    width: 30%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .voice-img p.name{
    white-space: nowrap;
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.4;
    margin: 0;
  }

  .voice-item.reverse .voice-img{
    flex-direction: row;
  }

  .voice-item.reverse .voice-img p.name{
    text-align: right;
  }

  .voice-item:not(.reverse) .voice-img{
    flex-direction: row-reverse;
  }

 .voice-item:not(.reverse) .voice-img p.name{
  text-align: left;
  margin-right: 0;
}

  .voice-text{
    width: 100%;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    padding: 1.5em;
    letter-spacing: 0.05em;
    word-break: normal;
    order: 2;
  }}

@media (max-width: 480px) {
.paws-img{
width: 35%;
display: block;
margin-left: auto;
margin-right: -30px;  
transform: scaleX(-1);
}
  
 .voice{
    padding: 6% 5%;
  }

  .voice-title{
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 12%;
  }

  .voice-title span{
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .voice-item{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10%;
    align-items: stretch;
  }

  .voice-item.reverse{
    flex-direction: column;
  }

  .voice-img{
    display: flex;
    align-items: center;
    gap: 10px;
    order: 1;
    width: 100%;
  }

.voice-img img{
  width: 26%;
  max-width: 100px;
  height: auto;          
  aspect-ratio: 1 / 1;   
  object-fit: cover;     
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

  .voice-img p.name{
    white-space: nowrap;
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.4;
    margin: 0;
  }

  .voice-item.reverse .voice-img{
    flex-direction: row;
  }

  .voice-item.reverse .voice-img p.name{
    text-align: right;
  }

  .voice-item:not(.reverse) .voice-img{
    flex-direction: row-reverse;
  }

 .voice-item:not(.reverse) .voice-img p.name{
  text-align: left;
  margin-right: 0;
}


.voice-text{
    width: 100%;
    font-size: clamp(13px, 3.4vw, 15px);
    line-height: 1.8;
    padding: 1.2em;
    letter-spacing: 0.04em;
    word-break: normal;
    order: 2;
}}

.product-details{
  width: 100%;
  max-width: 900px;
  margin: clamp(60px, 8vw, 30px) auto 0;
  padding: 20px;
  box-sizing: border-box;
}

.product-title{
  font-size: clamp(24px, 4vw, 40px);
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
  color: #000;
  font-weight: bold;
  white-space: nowrap;
}

.product-table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000000;
  background-color: rgb(255, 255, 255 ,0.7);
  max-width: 700px;
  margin: 0 auto;
}

.sp-only{
  display: none;
}

.product-table th,
.product-table td{
  border: 1px solid #000000;
  padding: clamp(8px, 1.5vw, 12px) clamp(10px, 2vw, 15px);
  font-size: clamp(14px, 1.8vw, 20px);
  color: #000;
  text-align: center;
  white-space: nowrap;
}

.product-table th{
  width: 30%;
  font-weight: normal;
}

.product-caution{
  width: 100%;
  background-color: #fff;
  padding: clamp(20px, 4vw, 30px) clamp(20px, 5vw, 40px);
  margin: clamp(80px, 10vw, 150px) auto 0;
  box-sizing: border-box;
  border-radius: 50px;
  max-width: 800px;
}

@media (min-width: 481px) and (max-width: 768px){
.product-details{
width: 100%;
max-width: 600px;
margin: 50px auto 0;
padding: 20px;
}

.product-title{
font-size: 30px;
text-align: center;
margin-bottom: 40px;
color: #000;
font-weight: bold;
}
  
.product-table{
width: 90%;
max-width: 600px;
margin: 0 auto;
}

.product-table th,
.product-table td{
font-size: 16px;
padding: 10px 12px;
}

.product-table th{
width: 35%;
}}

@media (max-width: 480px) {
.product-details{
width: 100%;
max-width: 500px;
margin: 20px auto 0;
padding: 20px;
}

.product-title{
font-size: 27px;
text-align: center;
margin-bottom: 40px;
color: #000;
font-weight: bold;
}
  
.product-table{
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }

.product-table th,
.product-table td{
font-size: 15px;
padding: 10px 12px;
}

.product-table th{
width: 35%;
}
  
.sp-only{
display: inline;
}}

.caution-title{
  font-size: clamp(20px, 2.5vw, 30px);
  text-align: center;
  margin-bottom: clamp(16px, 3vw, 30px);
  color: #000;
  font-weight: bold;
  white-space: nowrap;
}

.caution-list{
  padding: 0;
  margin: 0;
  text-align: center;
}

.caution-list li{
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (min-width: 481px) and (max-width: 768px){
.caution-title{
font-size: 25px;
}

.caution-list li{
font-size: 15px;
line-height: 1.2;
margin-bottom: 10px;
}

.product-caution{
width: 100%;
background-color: #fff;
padding: 20px 10px;
margin:90px auto 0;
box-sizing: border-box;
border-radius: 40px;
max-width: 800px;}
}

@media (max-width: 480px) {
.caution-title{
font-size: 25px;
}

.caution-list li{
font-size: 15px;
line-height: 1.2;
margin-bottom: 10px;
}

.product-caution{
margin:80px auto 0;
}}

.catchphrase{
  font-size: clamp(18px, 3vw, 30px);
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 12%;
  color: #6d767e;
}

.cv-btn-container{
    text-align: center;
 margin-top: 40px;
 margin-bottom: 10px;
 width: 100%;
}

.cv-btn-container{
  text-align: center;
  margin-top: clamp(20px, 4vw, 40px);
  margin-bottom: 10px;
  width: 100%;
}

.cv-btn{
  display: inline-block;
  padding: clamp(8px, 1.5vw, 10px) clamp(24px, 4vw, 50px);
  background: #af8585;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: normal;
  box-shadow: 0 4px 10px #555;
  white-space: nowrap;
}

.cv-btn:hover{
  box-shadow: 0 2px 5px #f5faff;
  transform: translateY(2px);
}

.cv-btn::after{
  width: 10px;
  height: 10px;
  margin-left: 10px;
  content: ">";
}

@media (min-width: 481px) and (max-width: 768px){
.catchphrase{
font-size: 20px;
padding-top: 80px;
}}

@media (max-width: 480px) {
.catchphrase{
font-size: 18px;
padding-top: 80px;
letter-spacing: 0.05em;
}}

@media (min-width: 481px) and (max-width: 768px){
.cv-btn{
font-size: 23px;
}}

@media (max-width: 480px) {
.cv-btn-container{
text-align: center;
margin-top: 30px;
width: 100%;
} 

.cv-btn{
font-size: 20px;
}}

.footer{
background-color: #ffffff;
padding: 70px 0 ;
margin-top: 300px;
position: relative;
font-family: "M PLUS Rounded 1c", sans-serif;
}

.footer-inner{
max-width: none;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 60px;
}

.footer-logo{
text-align: left;
margin-left: -20px;
}

.footer-info{
font-size: 15px;
}

@media (max-width: 480px){
.footer{
padding: 40px 20px;
margin-top: 200px;
}
  
.footer-inner{
display: flex;
flex-direction: column;   
align-items: center;      
text-align: center;
gap: 20px;
}

.footer-logo{
width: 120px; 
}

.footer-info{
font-size: 14px;
line-height: 1.6;
}}

@media (min-width: 481px) and (max-width: 768px) {
.trouble{
background:#fbf3e7;
padding: 50px 0;   
  }
 
.trouble-inner{
max-width: 100%;
margin: 0 auto;
display: flex ;
flex-direction: column;
align-items: stretch;
}

.trouble-text{
order: 1;
width: 90% ;
background:#fdeecf;
padding: 60px 30px;
text-align:center;
margin: 0;         
}

.trouble-image{
order: 2;
width: 60%;
margin: 0 0 0 auto;     
}

.trouble-image img{
width: 90%;
height: auto;
display: block;
margin-top: -30px;
}

.trouble-text h2{
margin: 0 0 22px;
font-size: 30px;
line-height: 1.6;
letter-spacing: .04em;
color:#4b2a1b;
font-weight: 700;
}

.trouble-text ul{
list-style:none;
margin: 0;
padding: 0;
}

.trouble-text li{
margin: 10px 0;
font-size: 20px;
line-height: 1.3;
color:#4b2a1b;
}}

@media (max-width: 480px) {
.trouble{
background:#fbf3e7;
padding: 50px 0;   
}

/* ★縦flexにして順番を変える */
.trouble-inner{
max-width: 100%;
margin: 0 auto;
display: flex ;
flex-direction: column;
align-items: stretch;
}
  
.trouble-text{
order: 1;
width: 90% ;
background:#fdeecf;
padding: 60px 30px;
text-align:center;
margin: 0;         
}

.trouble-image{
order: 2;
width: 60%;
margin-left: auto; /* 右寄せ */  
}

.trouble-image img{
width: 90%;
height: auto;
display: block;
margin-top: -30px;
}

.trouble-text h2{
margin: 0 0 22px;
font-size: 25px;
line-height: 1.6;
letter-spacing: .04em;
color:#4b2a1b;
font-weight: 700;
}

.trouble-text ul{
list-style:none;
margin: 0;
padding: 0;
}

.trouble-text li{
margin: 10px 0;
font-size:  17px;
line-height: 1.3;
color:#4b2a1b;
font-weight: bold;
}}

.coming-page{
  background-color: #fff;
  padding-top: 0;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 */
  min-height: 100dvh; 
  color:#948888 ;     /* 画面いっぱい */
}

.coming-soon {
  text-align: center;
}

.coming-soon img {
  margin-bottom: 20px;
}

.coming-page p{
  font-size: 20px;
}

.coming-page a{
  font-size: 20px;
  color:#948888 ;     /* 画面いっぱい */
}

@media (max-width: 480px) {
  .coming-soon img {
  margin-bottom: 10px;
  width: 120px;
}

.coming-page h1{
  font-size: 25px;
}

.coming-page p{
  font-size: 15px;
}

.coming-page a{
  font-size: 15px;
  color:#948888 ;     /* 画面いっぱい */
}}
