@charset "utf-8";@charset "UTF-8";
.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

/* ボックス */

.box01 {
    margin: 0 auto;
    padding-bottom: 5%;
    padding-top: 5%;
    text-align: center;
}

/* テキスト */
.text01 {
    font-size: 1.0em;
    line-height: 22px;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 3%;
    padding-top: 1%;
    text-align: center;
}

.text02 {
    font-size: 1.1em;
    line-height: 22px;
    width: 95%;
    margin: 0 auto;
    padding-top: 1%;
    text-align: center;
    font-weight: 600;
}

.font03 {
    font-size: 1.1em;
    line-height: 22px;
    width: 95%;
    margin: 0 auto;
    padding-top: 2%;
    text-align: center;
    font-weight: 500;
}

.text03 {
    font-size: 0.9em;
    line-height: 22px;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 2%;
    padding-top: 1%;
    text-align: center;
}

.font04 {
    font-size: 1.4em;
    line-height: 22px;
    width: 95%;
    margin: 0 auto;
    padding-top: 5%;
    text-align: center;
    font-weight: 500;
    padding-bottom: 8%;
    text-decoration: underline;
}

/* 商品説明*/

.product-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 900px;
    margin: 40px auto;
    padding: 32px;
}

.product-image img {
    width: 420px;
    height: auto;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info h1 {
    color: #0b2148;
    font-size: 2.5em;
    margin-bottom: 18px;
    line-height: 1.2;
    padding-top: 12%;
}

.product-description {
    color: #0b2148;
    font-size: 1.0em;
    margin-bottom: 28px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.2em;
    color: #0b2148;
    margin-bottom: 14px;
}

.product-price .tax {
    font-size: 0.8em;
    color: #0b2148;
}

.buy-btn {
    width: 120px;
    padding: 10px 0;
    font-size: 1.0em;
    color: #0b2148;
    background: transparent;
    border: 2px solid #0b2148;
    cursor: pointer;
}

.buy-btn:hover {
  background:#5d76a4;
  color: #fff;
}

/* コーディネートギャラリー */

.coordinate-gallery {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 3%;
}

.coordinate-item {
  width: 410px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coordinate-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.coordinate-image {
  width: 100%;
  height: auto;
  display: block;
}

.coordinate-details {
  width: 100%;
  padding: 1rem;
}

.coordinate-details table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
}

.coordinate-details th, .coordinate-details td {
  text-align: left;
  padding: 0.35rem 0.5rem;
  border: none;
  font-size: 1.0em;
}

.coordinate-details th {
    width: 35%;
    color: #202020;
    font-weight: 500;
    font-size: 1.0em;
}

.coordinate-details a {
    color: #008cba;
    text-decoration: underline;
    font-weight: normal;
    padding: 0% 0% 0% 15%;
    font-size: 1.1em;
}


/* レスポンシブ対応 */
@media (max-width: 1024px) {
.coordinate-gallery {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 3%;
}
.coordinate-item {
    width: 310px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
.coordinate-gallery {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 3%;
}
.coordinate-item {
    width: 300px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-image img {
    width: 320px;
    height: auto;
}
.product-info h1 {
    color: #0b2148;
    font-size: 1.5em;
    margin-bottom: 18px;
    line-height: 1.2;
    padding-top: 5%;
}
}

@media (max-width: 480px) {
.product-layout {
        display: block;
        gap: 48px;
        align-items: flex-start;
        max-width: 900px;
        margin: 40px auto;
        padding: 5%;
}
.coordinate-gallery {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 3%;
}
.coordinate-item {
    width: 420px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-image img {
        width: 420px;
        height: auto;
}

.box01 {
    margin: 0 auto;
    padding-bottom: 15%;
    padding-top: 10%;
    text-align: center;
}
.text03 {
    font-size: 0.9em;
    line-height: 22px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 2%;
    padding-top: 1%;
    text-align: justify;
}

.font03 {
    font-size: 1.1em;
    line-height: 22px;
    width: 90%;
    margin: 0 auto;
    padding-top: 2%;
    text-align: justify;
    font-weight: 500;
}

.font04 {
    font-size: 1.4em;
    line-height: 22px;
    width: 90%;
    margin: 0 auto;
    padding-top: 10%;
    text-align: justify;
    font-weight: 500;
    padding-bottom: 8%;
    text-decoration: underline;
}
}
