@charset "utf-8";
/* CSS Document */

/* common */

img{max-width:100%;
    height:auto;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  line-height:170%;
  letter-spacing: 0.05em;
}

  h1{
    color: #033057;
    font-size:50px;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.1em;
    .sub-title{
      letter-spacing: 0.2em;
      text-indent: 0.2em;
      font-size: 14px;
      font-family: "Zen Kaku Gothic New", sans-serif;
      display: block;
      margin-top: 8px;
    }
  }

h2{
  color: #333;
  font-size: 25px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  .sub-title{
    color: #080808;
    letter-spacing: 0.2em;
    font-size: 13px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    display: block;
    margin-top: 8px;
  }
}

h3{
  color: #080808;
  font-size: 20px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  .sub-title{
    letter-spacing: 0.2em;
    font-size: 13px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-left: 20px;
  }
}

table{
  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.7;
  letter-spacing: 0.05em;
  th{
    font-weight: 400;
  }
}

/* button1 */

.btn-viewmore {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;

  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #033057;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

.btn-viewmore::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  
  width: 50px; 
  height: 3px;
  background-color: #033057; 
  border-radius: 1.5px;
  
  transition: width 0.4s ease;
}

.btn-viewmore:hover::after {
  width: 140px;
  pointer-events: none;
}

/* button2 */

.btn-container{
  border:1px solid #033057;
  width: fit-content;
  padding: 13px 20px;
  margin: 0 auto;
  transition: background-color 0.3s ease-out;
  p{
    font-size: 17px;
    color: #033057;
  }
}

.btn-container:hover{
  background-color: #f0f7ff;
}

/* header */

header{
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 1000;
  padding-bottom:20px;
}

header .container{
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  height: 100%;
  margin:0 auto;
  position: relative;
}

header .logo{
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}

header nav{
  position: absolute;
  right: 0;
  margin-bottom: 2.6px;
  color: #577ea1;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-weight: 200;
}

header ul{
  display: flex;
  gap: 30px;
}

/* footer */

footer{
  max-width: 100%;  
  height: 400px;
  background-color: #577ea1;
  padding: 37px 0 23px;
  p, li{color: #fff;}
}

footer .store-name{
  font-size: 25px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}

footer .container{
  max-width: 1200px;
  display: flex;
  height: 340px;
  margin: 0 auto;
  align-items: flex-end;
  position: relative;
}

footer .store-info{
  align-items: flex-start;
  height: 340px;
}

footer nav{
  font-size: 18px;
  font-weight: 100;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}

footer .logo{
  position: absolute;
  left: 50%;
  transform: translatex(-50%); 
}

footer .links{
  height: 340px;
  position: absolute;
  right:0;
}

footer .copyright{
  height:66px;
  position: relative;
  p{
    font-size: 12px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: absolute;
    bottom:5px;
  }
}

footer ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* top-page */

.hero{
  height:100vh;
  background-image: url(../img/photo_main-visual.jpg);
  background-size: cover;
  overflow: hidden;
  margin-bottom: 260px;
}

.hero .container{
  margin-top: 50vh;
  margin-left: 10vw;
}

.hero .brand-statement{
  color:#000;
  font-size: 24px;
  font-weight: 300;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
}

.top-brand{
  margin: 0 auto 260px;
  width: fit-content;
  img{
    display: block;
    margin: 0 auto 50px;
  }
}

.top-brand .container{
  margin-bottom: 40px;
  writing-mode: vertical-rl;
  .sub-title{
    margin-top: 0;
    margin-right: 8px;
  }
  p{
    font-size: 17px;
    line-height: 2;
    margin-right: 72px;
  }
}

.top-brand .button-container{
  text-align: center;
}

.top-marriage-rings{
  max-width: 1200px;
  height: 400px;
  margin: 0 auto 260px;
  display: flex;
  .container{
    max-width: 520px;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
  }
  p{
    margin-top: 50px;
  }
  .button-container{
    text-align: center;
    margin-top: auto;
}
}

.top-engagement-rings{
  max-width: 1200px;
  height: 400px;
  margin: 0 auto 260px;
  display: flex;
  .container{
    max-width: 520px;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
  }
  p{
    margin-top: 50px;
  }
  .button-container{
    text-align: center;
    margin-top: auto;
  }
}

.top-cta {
  width: 100%;
  height: 650px;
  padding:150px 0;
  background-image: url(../img/photo_cta_bg.jpg);
  margin-bottom: 260px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  h2, p, .sub-title, .btn-viewmore{
    color: #fff;
  }
  .btn-viewmore::after{
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);;
  }
}

.top-cta .container{
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
  gap: 10%;
}

.top-stores, .top-contact{
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  .button-container{
    text-align: center;
  }
}

/* brand */

.brand-intro{
  padding-top: 180px;
  margin-bottom: 150px;
  h1{
    margin: 0 auto 130px;
    text-align: center;
  }
  p{
    text-align: center;
  }
}

.palladium-features{
  background-color: #eaf5ff;
  padding: 80px 0;
  margin-bottom: 260px;
}

.palladium-features .container{
  display: flex;
  flex-direction: column;
  gap: 60px;
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}

.feature-item h3{
  margin-bottom: 20px;
}

.brand-concept{
  max-width: 1200px;
  margin:0 auto 260px;
}

.brand-concept .container{
  display: flex;
  align-items: center;
  margin-bottom: 150px;
  p{
    margin-left: auto;
  }
}

.brand-concept .brand-statement{
  color:#000;
  font-size: 24px;
  font-weight: 300;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
  width: fit-content;
  margin: 0 auto 260px;
}


/* marriage-rings engagement-rings common */

.s-marriage-rings, .s-engagement-rings{
  max-width: 1200px;
  margin:0 auto;
}

.marriage-rings-intro, .engagement-rings-intro{
  padding-top: 180px;
  margin-bottom: 180px;
  h1{
    margin: 0 auto 130px;
    text-align: center;
  }
  p{
    text-align: center;
  }
}

.s-marriage-rings, .s-engagement-rings{
  .product-list{
    display: flex;
    flex-direction: column;
    gap: 140px;
    margin:0 auto 260px;
    max-width: 1000px;
  }
  .product-item{
    display: flex;
  }
   .product-text{
    width: 570px;
    margin: auto 0 auto 130px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    h3{
      margin-bottom: 20px;
    }
   }
}

/* stores */

.stores-intro{
  padding-top: 180px;
  margin-bottom: 200px;
  h1{
    margin: 0 auto 130px;
    text-align: center;
  }
  p{
    text-align: center;
  }
}

.flagship-store{
  max-width: 1200px;
  margin: 0 auto 130px;
}

.flagship-store .container{
  display: flex;
  margin-bottom: 100px;
}

.flagship-store .store-info{
  width: 45%;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
}

.store-table{
  margin-top: auto;
  width: 100%;
  td{
    padding-left: 5%;
  }
  td,th{
    padding-bottom:10px;
  }
  tr:last-child th, tr:last-child td{
    padding-bottom: 0;
  }
}

.store-btn{
  display: block;
  width: fit-content;
  margin: 0 auto 130px;
}

.authorized-dealers{
  background-color: #eaf5ff;
  padding: 80px 0;
  margin-bottom: 260px;
}

.authorized-dealers .container{
  display: flex;
  flex-direction: column;
  gap:30px;
  width: fit-content;
  margin: 0 auto;
  h2{
    margin-bottom: 20px;
  }
}

.dealer-item{
  display: flex;
  flex-direction: column;
  gap:10px;

}

.dealer-area{
  font-size: 18px;
  margin-bottom: 5px;
}

/* contact */

.contact-intro{
  padding-top: 180px;
  margin-bottom: 150px;
  h1{
    margin: 0 auto 130px;
    text-align: center;
  }
  p{
    text-align: center;
  }
}

.s-contact-form{
  margin-bottom: 260px;
}

.contact-form{
  max-width: 500px;
  margin:0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;

  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  line-height:170%;
  letter-spacing: 0.05em;

  input, textarea{
    color: #080808;
    font-size: 16px;
    font-weight: 300px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 170%;
    letter-spacing: 0.05em;

    padding: 3px 10px;
  }
}

.radio-group{
  display: flex;
  flex-direction: column;
  gap:5px;
}

.form-item{
  display: flex;
  flex-direction: column;
}

.field-title{
  margin-bottom: 10px;
  font-size: 17px;
  .required{
    color: #e85a5a;
    margin-left: 3px;
    font-size: 20px;
  }
}

.send-btn{
  margin: 20px 0px 55px;
}

.s-contact-form .caution{
  text-align: center;
  font-size: 14px;
}

/* privacy-policy */

.s-privacy-policy{
  padding-top: 180px;
}

.s-privacy-policy .heading{
  margin: 0 auto 130px;
  text-align: center;
}

.s-privacy-policy .container{
  max-width: 760px;
  margin:0 auto 260px;
}

.s-privacy-policy .passage{
  font-size: 14px;
  line-height: 1.7;
}

/* company */

.s-company{

  padding-top: 180px;
  max-width: 1200px;
  margin: 0 auto 260px;
  h1{
    margin:0 auto 130px;
    text-align: center;
  }
}

.company-table{
  width: max-content;
  margin: 0 auto;
  td{
    padding-left: 140px;
  }
  td,th{
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
  }
  tr:first-child th, tr:first-child td{
    padding-top: 0;
  }  
  tr:last-child th, tr:last-child td{
    padding-bottom: 0;
    border-bottom: none;
  }
}