@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Times New Roman", serif;
}

/*  固定ナビ  */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #7a1f1f; 
    z-index: 1000;
}
.nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 10px 0;
    gap: 50px;
}
.nav a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease;
}
.nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 100%;
    transition: all 0.3s ease;
}
.nav a:hover::before {
    border-color: #fff;
    transition: all 0.3s ease;
}
.nav a.active {
    font-weight: bold;
}


.main-visual {
    position: relative;
    width: 140%;
    height: 400px;
    margin-bottom: -140px;
    background-image: url("img/背景\ \(2\).png");
    background-size: cover;
    z-index: 1;
}


.main-visual .heels {
    position: absolute;
    width: 45%;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    z-index: 2;
}

/*  collection  */

.collection {
    position: relative;
    padding: 300px 0px;
    text-align: center;
    margin-bottom: 150px;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 100px;
    margin: 0 auto;
    position: relative;
}
.photo-grid img {
    width: 120%;
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}
.photo-grid img.show {
    opacity: 1;
    transform: translateY(0);
}
.collection h2 {
    font-size: 2rem;
    margin-top: -40%;
    margin-left: 70%;
}
.photo-grid h2 {
    grid-column: 1 / 3;
}
.move-right {
    margin-top: -40%;
}


/*  all coat  */

.allcoat-section {
    background-color: #7a1f1f;
    padding-top: 100px;
    width: 140%;
    padding-bottom: 300px;
    text-align: center;
    color: #fff;
    margin-top: -60%;
    overflow: hidden;
}
.allcoat-section h2 {
    font-size: 40px;
    margin-bottom: 100px;
}

.coat-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 300px;
    
}
.coat-box {
    position: relative;
    width: 450px;
    height: 700px;
}
.coat-bg {
    width: 100%;
    height: 100%;
    background-color: #f8f2e8;
    overflow: hidden;
    position: relative;
}
.coat-inner {
    width: 240%;
    margin-left: -260px;
    margin-top: -140px;
    display: block;
}
.model-img {
    position: absolute;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    z-index: 5;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.coat-box:hover .model-img {
    transform: translateX(-50%) translateY(-10px);
    opacity: 1;
}


/*  ranking  */

.ranking-section {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}
.ranking-section h2 {
    font-size: 40px;
    margin-bottom: 100px;
    padding-left: 200px;
    
}
.ranking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 60px;
    justify-content: center;
    align-items: center;
   width: 110%;
   gap: 60px ;
}


.item-img {
    width: 100%;
    transition: transform 0.4s ease;
    gap: 30px;
}
.img-wrapper:hover .item-img {
    transform: scale(1.05);
}

.heart-icon {
    margin-left: 65%;
    margin-bottom: 5%;
    width: 24px;
}
.name , .price {
    display: block;
    text-align: left;
    margin-left: 30%;
}

/*  concept  */

.concept {
    background-color: #7a1f1f;
    width: 140%;
    color: #fff;
    text-align: center;
    padding: 100px 0px;
}
.concept h2 {
    font-size: 40px;
    margin-bottom: 100px;
}
.concept-img img {
    width: 80%;
    height: 400px;
    object-fit: cover;
}
.concept-text {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 100px;
    margin-bottom: 50px;
}
.viewmore {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    letter-spacing: 4px;
    transition: color 0.3s ease;
}

.viewmore::before,
.viewmore::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s ease;
}

/* 上の線 */
.viewmore::before {
  top: -16px;
  left: -10px;
}

/* 下の線 */
.viewmore::after {
  bottom: -10px;
  right: -10px;
}

/* 縦線（左右） */
.viewmore span::before,
.viewmore span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background-color: #fff;
  transition: all 0.4s ease;
}

/* 左線 */
.viewmore span::before {
  top: 0;
  left: -10px;
}

/* 右線 */
.viewmore span::after {
  bottom: 0;
  right: -10px;
}

/* ホバーした時に四角が完成 */
.viewmore:hover::before,
.viewmore:hover::after {
  width: calc(100% + 20px);
}

.viewmore:hover span::before,
.viewmore:hover span::after {
    width: calc(100% + 20px);
}

/*  footer  */

.footer {
    display:flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 120px;
    gap: 40px;
}
.footer-menu {
    list-style: none;

}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    text-decoration: none;
    color: #7a1f1f;
    transition: opacity 0.3s ease;
}
.footer-menu a:hover {
    opacity: 0.6;
}
.footer-center h3 {
    color: #7a1f1f;
}
.sns-icons a img {
    width: 32px;
    margin: 0 8px;
    transition: opacity 0.3s ease;
}
.sns-icons a:hover img {
    opacity: 0.6;
}
.footer-right h3 {
    color: #7a1f1f;
}
.footer-left {
    text-align: left;
}

.mail-form {
  display: inline-flex;
  align-items: center;
  border: 1px solid #8b0000;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
}

/* 入力欄 */
.mail-form input {
  border: none;
  padding: 10px 15px;
  width: 200px;
  outline: none;
  color: #8b0000;
  font-size: 14px;
}

.mail-form input::placeholder {
  color: #c77;
  letter-spacing: 0.5px;
}

/* 登録ボタン */
.mail-form button {
  border: none;
  background-color: #8b0000;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ホバー時 */
.mail-form button:hover {
  opacity: 0.8;
}

.footer-copy {
    font-size: 12px;
    margin-top: -40px;
   width: 100%;
    white-space: nowrap;
    display: block;
    text-align: center;
    margin: 0 0 0 300px;
}

@media screen and (min-width: 375px) and (max-width: 480px) {
    .main-visual {
        width: 150%;
        height: 300px;
    }
    .allcoat-section {
        padding: 23px;
        padding-top: 60px;
    }
    .coat-container {
        margin-bottom: 240px;
    }
    .coat-box {
        width: 80%;
    }
    .ranking-section h2 {
        margin-left: 10px;
    }
    .ranking-grid {
        grid-template-columns: 1fr;
        margin-left: 80px;
    }
    .concept {
        padding: 23px;
        padding-top: 60px;
    }
    .viewmore {
        margin-bottom: 60px;
    }
    .footer-copy {
        margin: 0 0 0 200px;
        }
}
@media screen and (min-width: 480px) and (max-width: 600px) {
    .main-visual {
        margin-bottom: -100px;
    }    
    .footer-copy {
        margin: 0 0 0 250px;
    }
}
@media screen and (min-width: 600px) and (max-width: 768px) {
    .main-visual {
        margin-bottom: 20px;
    }
    .collection {
        margin-bottom: 200px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
    .main-visual {
        margin-bottom: -100px;
        height: 500px;
    }
    .main-visual .heels {
        width: 35%;
    }
    .collection {
        margin-bottom: 500px;
    }
    .collection h2 {
        padding-top: 80px;
    }
    .move-right {
        margin-left: 100px;
    }
    .coat-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .coat-box {
        position: relative;
        width: 90%;
        margin: 0 auto;
    }
    .coat-bg {
        margin: 0 auto;
    }
    .ranking-grid {
    margin: 0 130px;
    justify-content: center;
    align-items: center;
}

.ranking-section h2 {
    margin-left: 200px;
}
}


@media screen and (min-width: 1020px) and (max-width: 1200px) {
    .main-visual {
        margin-bottom: 40px;
        height: 600px;
    }
    .main-visual .heels {
        width: 35%;
    }
    .photo-grid {
        gap: 230px;
    }
    .collection {
        margin-bottom: 500px;
    }
    .collection h2 {
        padding-top: 00px;
    }
    .move-right {
        margin-left: 100px;
        margin-top: -400px;
    }
    .move-left {
        margin-top: -400px;
    }
    .coat-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .coat-box {
        position: relative;
        width: 90%;
        height: 1000px;
        margin: 0 auto;
    }
    .ranking-grid {
    margin: 0 150px;
    justify-content: center;
    align-items: center;
}

.ranking-section h2 {
    margin-left: 200px;
}
.concept-img img {
    height: 600px;
}
}

@media screen and (min-width: 1200px) and (max-width: 1440px) {
    .main-visual {
        margin-bottom: 80px;
        height: 700px;
    }
    .main-visual .heels {
        width: 35%;
    }
    .photo-grid {
        gap: 230px;
    }
    .collection {
        margin-bottom: 800px;
    }
    .collection h2 {
        font-size: 2rem;
    }
    .move-right {
        margin-left: 100px;
        margin-top: -500px;  
    }
    .move-left {
        margin-top: -400px;
    }
    .coat-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .coat-box {
        position: relative;
        width: 90%;
        height: 1000px;
        margin: 0 auto;
    }
    .ranking-grid {
    margin: 0 240px;
    justify-content: center;
    align-items: center;
}

.ranking-section h2 {
    margin-left: 500px;
}
.concept-img img {
    height: 600px;
}
}

@media screen and (min-width: 1440px) and (max-width: 1920px) {
    .main-visual {
        margin-bottom: 300px;
        height: 700px;
    }
    .main-visual .heels {
        width: 35%;
    }
    .photo-grid {
        gap: 230px;
    }
    .collection {
        margin-bottom: 1000px;
    }
    .collection h2 {
        font-size: 2rem;
    }
    .move-right {
        margin-left: 100px;
        margin-top: -500px;  
    }
    .move-left {
        margin-top: -400px;
    }
    .coat-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .coat-box {
        position: relative;
        width: 100%;
        height: 1500px;
    }
    .coat-bg {
    width: 90%;
    height: 100%;
    background-color: #f8f2e8;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.coat-inner {
    width: 240%;
    margin-left: -500px;
    margin-top: -300px;
    display: block;
}
.model-img {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    z-index: 5;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.coat-box:hover .model-img {
    transform: translateX(-50%) translateY(-10px);
    opacity: 1;
}


    .ranking-grid {
    margin: 0 300px;
    justify-content: center;
    align-items: center;
    gap: 140px;
}

.ranking-section h2 {
    margin-left: 500px;
}
.concept-img img {
    height: 800px;
}
.footer-copy {
    margin: 0 0 0 1000px;
    font-size: 1.3rem;
}
}













